.fluffypillow {
  position: relative;
}

.fp-container .scr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}

.fp-open-button {
    position: absolute;
    background: none;
    border: 1px solid #ccc;
    right: 1px;
    bottom: 1px;
    height: 32px;
    border-radius: 4px;
}
.fp-open-button img {
    height: 100%;
}

.fp-container .active {
  background: lightblue;
  border-radius: 0px;
}

.fp-description { 
  display: none;
  font-weight: 700;
  padding: 5px 0;
}

.fp-errors {
  background: #FF7878;
  color: white;
  padding: 4px 0;
  display: none;
}

.fp-container {
  font-size: 0.9em;
  font-family: sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 1em;
  box-shadow: 2px 2px 2px 2px rgba( 0, 0, 0, 0.4 );
  z-index: 9999;
  position: absolute;
  width: 300px;
  background: #fff;
}

.fp-option {
  border-radius: 4px;
  background: #fff;
  margin: 2px;
  padding: 2px;
  cursor: pointer;
}

.fp-save {
  text-transform: uppercase;
  float: right;
  margin: 4px 4px 0 0;
  display: inline;
}

.fp-clock, .fp-calendar {
  width: 36%;
  padding: 8px 0;
  margin: 6px 5px 5px 5px;
  border-radius: 4px;
  background: white;
  border: 1px solid #c0c0c0;
  display: inline-block;
}
.fp-clock {
    width: 33%;
}

.fp-calendar {
  text-align: left;
}

.fp-clock {
  margin-right: 0;
}

/* Calendar */
.fp-cal-container {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 300px;
  height: 255px;
  position: absolute;
  bottom: -255px;
  background: #fff;
  box-shadow: 2px 4px 2px 2px rgba( 0, 0, 0, 0.4 );
  color: #000;
}

.fp-cal-container table, th, tr, td {
  border: 0;
  margin: 0;
  padding: 0;
}
.fp-cal-container table {
  font-size: inherit;
  width: 100%;
  padding: 0;
}
.fp-cal-container table thead th {
    text-align: center;
}
.fp-cal-nav {
  padding: 10px 10px 10px 10px;
  text-align: center;
  font-size: 18px;
  margin: 10px;
}
.fp-cal-right {
  float: right;
  cursor: pointer;
}
.fp-cal-left {
  float: left;
  cursor: pointer;
}
.fp-cal-day-label {
  width: 14%;
}
.fp-cal-date {
  vertical-align: middle;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.fp-cal-date.fp-not-in-month {
    opacity: 0.6;
}
.btn-primary {
  padding: 4px 8px;
  font-size: 14px;
  line-height: 20px;
}
.fp-cal-date.active, 
.fp-button {
  border-radius: 4px;
  color: #ffffff;
  background-color: #006dcc;
}

.fp-button {
    padding: 9px 10px;
    border: none;
    margin: 2px;
}

.fp-cal-date.fp-disabled {
  color: #a0a0a0;
  cursor: default;
}
