/* css/payment.css */
.payment-in-progress::after,
.payment-state::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  user-select: none;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 100;
}
.payment-info {
  display: none;
}
.payment-in-progress .payment-info,
.payment-state {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.payment-state .title {
  z-index: 102;
}

/* css/svg_map.css */
.map svg,
.map img {
  width: 100%;
  height: auto;
}
.map {
  margin: auto;
  line-height: 0;
  overflow: hidden;
}
.map.has-plot-plan {
  position: relative;
}
.map.has-plot-plan svg {
  position: absolute;
  left: 0;
  top: 0;
}
.map .p {
  fill: transparent;
  stroke-linecap: round;
}
.map .p.active {
  fill: #ffffff00;
  stroke: #ffffff00;
  cursor: pointer;
}
.map .p.available {
  stroke: var(--available-stroke, #74fb5c);
  fill: var(--available-fill, #74fb5c84);
  animation: var(--available-animation, pulse) 2s infinite;
}
.map .p.unavailable {
  stroke: var(--unavailable-stroke, transparent);
  fill: var(--unavailable-fill, #e13d0bba);
  animation: var(--unavailable-animation, none) 2s infinite;
}
.map .p.alternative {
  stroke: var(--alternative-stroke, transparent);
  fill: var(--alternative-fill, #e1cf0bba);
  animation: var(--alternative-animation, none) 2s infinite;
}
.map .p.is-selected {
  animation: none;
  stroke: #74fb5c;
  stroke-width: 3px;
}
.map .p.active:hover {
  stroke: #023fe8c4;
  stroke-width: 3px;
}
.map .loading-indicator-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.map svg + .loading-indicator-wrapper {
  display: none;
}
.map-wrapper {
  --detail-arrow: 10px;
  --detail-margin: 1rem;
  --container-margin: 3rem;
  --section-padding: 0rem;
}
.map-wrapper .map-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.map-wrapper .map-filter .select {
  margin-right: 2rem;
}
@media screen and (max-width: 769px) {
  .map-wrapper {
    --detail-margin: 10px;
    --container-margin: 0rem;
    --section-padding: 1.5rem;
  }
  .map-wrapper .map-filter {
    flex-direction: column;
    align-items: center;
  }
  .map-wrapper .map-filter .select {
    margin-right: 0rem;
    margin-bottom: 2rem;
    min-width: 100%;
  }
  .map-wrapper .map-filter .select select {
    min-width: 100%;
  }
}
.map-wrapper .table.map-selection {
  margin: auto;
}
.map-wrapper .table.map-selection td {
  vertical-align: middle;
}
@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.01);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* css/gallery.css */
.gallery img {
  object-fit: cover;
}
.gallery .indicator {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}
.gallery .indicator span {
  display: block;
  width: 8px;
  height: 8px;
  background: white;
  opacity: 0.6;
  border-radius: 100%;
  margin: 0 2px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.gallery .indicator span:first-child {
  opacity: 1;
}

/* css/pricing.css */
@media screen and (max-width: 768px) {
  .pricing th:nth-child(3),
  .pricing td:nth-child(3),
  .pricing th:nth-child(4),
  .pricing td:nth-child(4),
  .pricing th:nth-child(5),
  .pricing td:nth-child(5) {
    display: none;
  }
}

/* css/guests.css */
.people form {
  display: flex;
  flex-direction: column;
}
.people form select {
  min-width: 100%;
}
.field.is-danger .input.datepicker-input {
  border-color: #f14668;
}

/* css/media.css */
@media screen and (max-width: 768px) {
  .media {
    flex-direction: column;
    align-items: center !important;
  }
  .media .media-left {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
.hide-empty:has(.is-empty):not(:has(.has-product)) {
  display: none !important;
}

/* css/form.css */
@media screen and (max-width: 768px) {
  .field.is-grouped {
    flex-direction: column;
    margin-bottom: 0;
  }
  .field.is-grouped .control {
    margin-right: 0;
    margin-bottom: .25rem !important;
    width: 100%;
  }
  .input.date-picker + input {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .input.date-picker {
    display: none;
  }
}
.button.phx-click-loading {
  transition-duration: 300ms;
  color: transparent !important;
  pointer-events: none;
  background-color: #3e8ed0 !important;
}
.button.phx-click-loading::after {
  border-color: transparent transparent #fff #fff !important;
  position: absolute;
  left: calc(50% - (1em * .5));
  top: calc(50% - (1em * .5));
  -webkit-animation: spinAround .5s infinite linear;
  animation: spinAround .5s infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 9999px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
}
.guests-table .header {
  display: flex;
}
.vehicles-table .header th:last-child {
  width: 50px;
}
@media screen and (max-width: 769px) {
  .vehicles-table .header {
    display: none;
  }
  .vehicles-table tr {
    display: flex;
    flex-direction: column;
  }
}
.select.is-empty select {
  color: rgba(122, 122, 122, 0.7);
}
.alternatives {
  display: flex;
  justify-content: flex-end;
}
.has-custom-date-selection {
  padding: 1rem;
  background: #eff6fa;
  border-radius: 4px;
}
.has-custom-date-selection .custom-date-selection {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.has-custom-date-selection .custom-date-selection .input {
  width: auto;
}
.field.has-dates {
  position: relative;
}
.field.has-dates input {
  text-align: center;
}
.field.has-dates .divider {
  position: absolute;
  left: calc(50% - 0.5rem);
  background: linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.85) 10%, rgba(255, 255, 255, 0.85) 90%, transparent 100%);
  z-index: 99;
  width: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1px;
  bottom: 1px;
}
@media screen and (max-width: 769px) {
  .field.has-dates .divider {
    margin-bottom: 0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .field.has-dates .control {
    max-width: 7.15rem;
  }
  .field.has-dates {
    max-width: calc(2 * 7.15rem);
  }
}

/* css/door.css */
.unlock-accommodation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
button.unlock-door {
  display: flex;
  flex-direction: column;
  height: 10rem;
  width: 10rem;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100%;
  transition-duration: 200ms;
}
button.unlock-door .icon .mdi::before {
  transition: font-size 300ms ease-in-out, opacity 200ms;
  color: white;
}
button.unlock-door.is-loading::after {
  width: 3rem;
  height: 3rem;
  left: calc(50% - (3em * .5));
  top: calc(50% - (3em * .5));
  border-width: 4px;
}
button.unlock-door.is-loading .icon .mdi::before {
  opacity: 0;
}
button.unlock-door.is-open {
  background-color: #48c78e;
  pointer-events: none;
}
button.unlock-door.is-open .icon .mdi::before {
  font-size: 80px;
}
button.unlock-door.is-closed {
  background-color: #3e8ed0;
}
button.unlock-door.is-error {
  background-color: #d03e4d;
  border-color: #c74848;
}

/* css/popup.css */
.popup.details {
  position: absolute;
  top: calc(var(--detail-y));
  left: calc(var(--detail-margin) + var(--container-margin));
  width: calc(100% - 2 * var(--container-margin) - 2 * var(--detail-margin));
  z-index: 10;
}
.popup.details.is-full-width {
  --detail-arrow: 10px;
  --detail-margin: 0rem;
  --container-margin: 0rem;
  --section-padding: 6rem;
  --detail-x: 0px;
  right: 0;
  left: 0;
}
.popup.details::before {
  content: " ";
  width: 0;
  height: 0;
  border-left: var(--detail-arrow) solid transparent;
  border-right: var(--detail-arrow) solid transparent;
  border-bottom: var(--detail-arrow) solid white;
  position: absolute;
  top: calc(var(--detail-arrow) * -1 + 1px);
  left: calc(var(--detail-x) - var(--detail-arrow) - var(--detail-margin) + var(--section-padding));
}
.popup.details .delete {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
}

/* css/payment_modalities.css */
.payment-modality .box {
  transition-duration: 400ms;
  transition-property: background-color;
}
.payment-modality .checkbox {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 2rem;
  background: white;
  border-radius: 100%;
  border: 2px solid #3e8ed0;
}
.payment-modality .checkbox svg {
  opacity: 0;
  transition-duration: 400ms;
  transition-property: opacity;
}
.payment-modality .loader {
  position: absolute;
}
.payment-modality.is-selected .loader {
  display: none;
}
.payment-modality.is-selected .box .checkbox svg {
  opacity: 1;
}
.payment-modality .name {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}
.payment-modality .price {
  display: block;
  font-weight: 200;
  font-size: 3rem;
}
.payment-modality .info {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
  transition-duration: 400ms;
  transition-property: max-height;
  max-height: 0;
  overflow: hidden;
}
.payment-modality .box {
  background-color: #eff5fb;
  color: #296fa8;
}
.payment-modality.is-selected .box .info {
  max-height: 250px;
}

/* css/scheduler.css */
.scheduler {
  max-width: 100%;
  max-height: 300px;
  height: calc((1 + var(--scheduler-rows)) * var(--scheduler-cell-height) + var(--scheduler-cell-height));
  overflow: scroll;
  position: relative;
  display: flex;
  flex-direction: row;
  margin-top: 0.5rem;
}
.scheduler .scheduler-header {
  position: sticky;
  top: 0;
  height: var(--scheduler-cell-height);
  display: flex;
  background: white;
  margin-left: calc(var(--scheduler-cell-width) / -2);
  text-align: center;
}
.scheduler .scheduler-header .date {
  width: var(--scheduler-cell-width);
  min-width: var(--scheduler-cell-width);
  max-width: var(--scheduler-cell-width);
  overflow: hidden;
}
.scheduler .scheduler-header .date.selected {
  font-weight: bold;
}
.scheduler .scheduler-body {
  height: calc((1 + var(--scheduler-rows)) * var(--scheduler-cell-height));
}
.scheduler .names {
  position: sticky;
  left: 0;
  z-index: 1;
  background: white;
  padding-top: var(--scheduler-cell-height);
}
.scheduler .names .name {
  height: var(--scheduler-cell-height);
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  background: white;
}
.scheduler svg .background {
  height: calc(c);
}
.scheduler svg .background {
  fill: #e1e1e1;
}
.scheduler svg .available {
  fill: #58d35c;
  cursor: pointer;
}
.scheduler svg .line {
  fill: white;
  pointer-events: none;
}
.scheduler + .legend {
  margin-top: 0.5rem;
}
.scheduler + .legend .available,
.scheduler + .legend .unavailable {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.scheduler + .legend .available::before,
.scheduler + .legend .unavailable::before {
  content: " ";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background: #58d35c;
}
.scheduler + .legend .unavailable::before {
  background: #e1e1e1;
}

/* css/total_overlay.css */
body.with-gastmanager-overlay {
  padding-bottom: 57px;
}
.gastmanager-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid rgba(185, 184, 184, 0.5);
  z-index: 100;
  padding: 0.25rem;
}
.gastmanager {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  width: 100%;
}
.gastmanager-total {
  font-weight: bold;
  color: #787878;
  font-size: 0.9rem;
  cursor: pointer;
}
.gastmanager-selected {
  color: #363636;
  font-size: 1.1rem;
  cursor: pointer;
}
@media screen and (max-width: 430px) {
  body.with-gastmanager-overlay {
    padding-bottom: 105px;
  }
  .gastmanager {
    flex-direction: column;
  }
}

/* vendor/baguettebox.css */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, .8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, .6);
  font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
  transition:
    left .4s ease,
    transform .4s ease,
    -webkit-transform .4s ease,
    -moz-transform .4s ease;
}
#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .4s ease-out;
}
@-webkit-keyframes bounceFromRight {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
}
@keyframes bounceFromRight {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
}
@-webkit-keyframes bounceFromLeft {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
}
@keyframes bounceFromLeft {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
}
.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}
.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, .5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}
.baguetteBox-button:focus,
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, .9);
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}
.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

/* vendor/datepicker.css */
.datepicker {
  display: none;
}
.datepicker.active {
  display: block;
}
.datepicker-dropdown {
  left: 0;
  padding-top: 4px;
  position: absolute;
  top: 0;
  z-index: 20;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-bottom: 4px;
  padding-top: 0;
}
.datepicker-picker {
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
}
.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px hsla(0, 0%, 4%, .1), 0 0 0 1px hsla(0, 0%, 4%, .1);
}
.datepicker-picker span {
  -webkit-touch-callout: none;
  border: 0;
  border-radius: 4px;
  cursor: default;
  display: block;
  flex: 1;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker-main {
  padding: 2px;
}
.datepicker-footer {
  background-color: #f5f5f5;
  box-shadow: inset 0 1px 1px hsla(0, 0%, 4%, .1);
}
.datepicker-controls,
.datepicker-grid,
.datepicker-view,
.datepicker-view .days-of-week {
  display: flex;
}
.datepicker-grid {
  flex-wrap: wrap;
}
.datepicker-view .days .datepicker-cell,
.datepicker-view .dow {
  flex-basis: 14.2857142857%;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}
.datepicker-cell,
.datepicker-view .week {
  height: 2.25rem;
  line-height: 2.25rem;
}
.datepicker-title {
  background-color: #f5f5f5;
  box-shadow: inset 0 -1px 1px hsla(0, 0%, 4%, .1);
  font-weight: 700;
  padding: .375rem .75rem;
  text-align: center;
}
.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: 700;
}
.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}
.datepicker-header .datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 .125em hsla(0, 0%, 100%, .25);
}
.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}
.datepicker-header .datepicker-controls .button[disabled] {
  box-shadow: none;
}
.datepicker-footer .datepicker-controls .button {
  border-radius: 2px;
  font-size: .75rem;
  margin: calc(.375rem - 1px) .375rem;
  width: 100%;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .next-btn,
.datepicker-controls .prev-btn {
  padding-left: .375rem;
  padding-right: .375rem;
  width: 2.25rem;
}
.datepicker-controls .next-btn.disabled,
.datepicker-controls .prev-btn.disabled {
  visibility: hidden;
}
.datepicker-view .dow {
  font-size: .875rem;
  font-weight: 700;
  height: 1.5rem;
  line-height: 1.5rem;
}
.datepicker-view .week {
  color: #b5b5b5;
  font-size: .75rem;
  width: 2.25rem;
}
@media (max-width:22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
}
.datepicker-grid {
  width: 15.75rem;
}
@media (max-width:22.5rem) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125rem;
  }
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: #e8e8e8;
}
.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #485fc7;
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: #dbdbdb;
}
.datepicker-cell.next:not(.disabled),
.datepicker-cell.prev:not(.disabled) {
  color: #7a7a7a;
}
.datepicker-cell.next.selected,
.datepicker-cell.prev.selected {
  color: #e6e6e6;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  background-color: #f5f5f5;
  border-radius: 0;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #eee;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}
.datepicker-cell.today:not(.selected) {
  background-color: #00d1b2;
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #00c4a7;
}
.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: #b5b5b5;
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #afafaf;
}
.datepicker-cell.range-start {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  background-color: #dbdbdb;
  border-radius: 0;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d5d5d5;
}
.datepicker-cell.range.disabled {
  color: #c2c2c2;
}
.datepicker-cell.range.focused {
  background-color: #cfcfcf;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4.5rem;
  line-height: 4.5rem;
}
.datepicker-input.in-edit {
  border-color: #3a51bb;
}
.datepicker-input.in-edit:active,
.datepicker-input.in-edit:focus {
  box-shadow: 0 0 .25em .25em rgba(58, 81, 187, .2);
}
