.fcf-vue-datepicker .datepicker-inline .datepicker {
  border: none; }

.fcf-vue-datepicker .datepicker {
  width: 100%;
  border-radius: 0; }
  .fcf-vue-datepicker .datepicker .datepicker--nav-title span {
    display: inline-block;
    margin-left: 3px;
    font-size: .8em;
    color: #898989; }
  .fcf-vue-datepicker .datepicker .datepicker--cells-months {
    height: auto; }
  .fcf-vue-datepicker .datepicker .datepicker--cell {
    padding: 10px;
    border-radius: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center; }
    .fcf-vue-datepicker .datepicker .datepicker--cell > span,
    .fcf-vue-datepicker .datepicker .datepicker--cell > small {
      display: block; }
    .fcf-vue-datepicker .datepicker .datepicker--cell > small {
      font-size: 70%;
      color: #2ac17b; }
    .fcf-vue-datepicker .datepicker .datepicker--cell.-focus-, .fcf-vue-datepicker .datepicker .datepicker--cell.-current- {
      background-color: #f1f2f4; }
    .fcf-vue-datepicker .datepicker .datepicker--cell.-selected- {
      background-color: #25a8d4; }
      .fcf-vue-datepicker .datepicker .datepicker--cell.-selected- > small {
        color: #dfe259; }
    .fcf-vue-datepicker .datepicker .datepicker--cell.-disabled, .fcf-vue-datepicker .datepicker .datepicker--cell:hover.-disabled- {
      background-color: transparent;
      color: #898989; }

.fcf-vue-datepicker-container {
  position: relative; }
  .fcf-vue-datepicker-container .loading-wrapper {
    width: 102%;
    height: 102%;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-color: rgba(255, 255, 255, 0.8); }
  .fcf-vue-datepicker-container .fl-button.fcf-vue-datepicker-clear {
    border-top: 1px solid #e1e1e1;
    border-width: 1px;
    text-transform: uppercase;
    border-radius: 0; }
    .fcf-vue-datepicker-container .fl-button.fcf-vue-datepicker-clear:hover {
      border-top: 1px solid #e1e1e1; }

.fcf-vue-datepicker-calendar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 14px;
  font-family: "Roboto", serif; }
  .fcf-vue-datepicker-calendar .month {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 33.3333%;
    padding: 1em;
    font-size: 1em;
    line-height: 1.2;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: all .1s;
    transition: all .1s; }
    .fcf-vue-datepicker-calendar .month.disabled {
      color: #e1e1e1;
      cursor: not-allowed; }
      .fcf-vue-datepicker-calendar .month.disabled:hover {
        color: #e1e1e1;
        background-color: transparent; }
    .fcf-vue-datepicker-calendar .month:hover {
      background-color: #e9e9e9;
      color: #25a8d4; }
    .fcf-vue-datepicker-calendar .month.selected {
      background-color: #25a8d4;
      color: #fff; }
      .fcf-vue-datepicker-calendar .month.selected .savings {
        color: #dfe259; }
  .fcf-vue-datepicker-calendar .savings {
    margin-top: 5px;
    font-size: 0.7em;
    text-align: center;
    text-transform: uppercase;
    color: #2ac17b; }

.fcf-dates-disclaimer {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 10 !important;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 0.8em;
  text-align: center;
  background-color: rgba(17, 17, 17, 0.7);
  -webkit-transition: all .5s;
  transition: all .5s; }
  .fcf-dates-disclaimer h3,
  .fcf-dates-disclaimer p {
    color: #fff;
    line-height: 1.3; }
  .fcf-dates-disclaimer h3 {
    font-size: 1.3em;
    margin-top: 0; }
  .fcf-dates-disclaimer.fade-enter-active, .fcf-dates-disclaimer.fade-leave-active {
    opacity: 1; }
  .fcf-dates-disclaimer.fade-enter, .fcf-dates-disclaimer.fade-leave-to {
    opacity: 0; }
  .fcf-dates-disclaimer .fcf-dates-disclaimer-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 1em;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
