<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Copyright (c) 2017.
 */

/**
 * Created by Brendan on 22-May-17.
 *
 * Frontend CSS
 *
 * @Package     Graphedia Bookings Plugin
 * @Version     1.0
 */
div.booking-form {
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.ui-datepicker {
  max-width: 100%;
}

.booking-form #datepicker .ui-datepicker {
  max-width: 100%;
}

table.ui-datepicker-calendar tbody td.highlight &gt; a {
  background-color: #e7b334;
  background-image: none;
  color: #fff;
  border: 0;
}

table.ui-datepicker-calendar tbody td.highlight.ui-datepicker-current-day &gt; a {
  background-color: green !important;
  background-image: none;
  color: #fff;
  border: 0;
}

/* #time_slots .btn-primary.active:after {
  font-family: FontAwesome;
  content: " \f00c";
} */

#time_slots .btn-primary.active {
  background-color: green !important;
  border-color: green !important;
}

.btn-primary {
  background-color: #cf0f0f !important;
  border-color: #cf0f0f !important;
  color: #fff !important;
  padding: 5px;
}

.btn-success {
  background-color: #5089d3 !important;
  border-color: #5089d3 !important;
  color: #fff !important;
  padding: 5px;
}

.input-group-coupon-field input[type="text"] {
  min-height: 42px;
}

.input-group-coupon-field .input-group-btn .btn {
  margin-top: 0;
}

.input-label-title {
  display: block;
  width: 100%;
}

.input-label-price {
  display: block;
  width: 100%;
  font-weight: 400;
}

.input-group-addon {
  min-width: 70px;
}

#room-type-select {
  margin-top: 15px;
  display: none;
}

.coupon-msg {
  margin-top: 5px;
}

.strike {
  text-decoration: line-through;
}

#main-form .form-group {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;

  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#main-form .form-control:not(.room-type) {
  width: 60px !important;
}

#main-form #total {
  margin-top: 15px;
}

.has-padding {
  padding-left: 15px;
}

.flash-msg {
  animation: pulse 2s infinite;
  padding: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.flash-msg.error {
  background-color: red;
  color: #fff;
}

.flash-msg.success {
  background-color: green;
  color: #fff;
}

.pulse {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  border-radius: 50%;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.map-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#santa-map {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .modal {
    top: 50px;
  }
}

@media only screen and (max-width: 768px) {
  #countdown {
    font-size: 35px;
    line-height: 50px;
  }
  #countdown-title {
    font-size: 35px;
    line-height: 50px;
  }
  #countdown .cd-text {
    font-size: 15px !important;
  }
}

#countdown-wrapper {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  width: 80%;
  margin: auto;
}
#countdown {
  width: 100%;
  font-size: 85px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  text-align: center;
  line-height: 125px;
}
#countdown-title {
  font-size: 85px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  text-align: center;
  margin-bottom: 15px;
  line-height: 125px;
  width: 100%;
}
#countdown .cd-text {
  font-size: 30px;
}

.details-wrapper {
  margin-bottom: 30px;
}
</pre></body></html>