
/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body, html {
  height: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*---------------------------------------------*/
a {
  line-height: 1;
  color: #666666;
  margin: 0px;
  text-decoration: none;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: underline;
}

a.underline {
  text-decoration: underline;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
  margin: 0px;
}

p {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul, li {
  margin: 0px;
  list-style-type: none;
}


/*---------------------------------------------*/
input, textarea {
  outline: none;
  border: none;
  resize: none;
}

.form-input-wrap textarea:focus, .form-input-wrap input:focus, .select2-container input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #c0c0c0;}
input:-moz-placeholder { color: #c0c0c0;}
input::-moz-placeholder { color: #c0c0c0;}
input:-ms-input-placeholder { color: #c0c0c0;}

textarea::-webkit-input-placeholder { color: #c0c0c0;}
textarea:-moz-placeholder { color: #c0c0c0;}
textarea::-moz-placeholder { color: #c0c0c0;}
textarea:-ms-input-placeholder { color: #c0c0c0;}

label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover:not([disabled]):not(.disabled) {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*---------------------------------------------*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}


/*//////////////////////////////////////////////////////////////////
[ Top-Level Container ]*/

.container {
  width: 100%;
  min-height: 100vh;
  padding: 10px;
  background: #d867c6;
  background: -webkit-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -o-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -moz-linear-gradient(45deg, #c77ff2, #e8519e);
  background: linear-gradient(45deg, #c77ff2, #e8519e);
}

.container.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}


/*==================================================================
[ Form ]*/

.form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header {
  width: 100%;
  display: block;
  font-size: 26px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

.header * {
  margin: 10px 0px;
}

.footer {
  margin-top: 2em;
  width: 100%;
  display: block;
  font-size: 26px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

.footer p {
  margin-top: 10px;
  word-wrap: break-word;
}

.footer p span {
  word-wrap: normal;
  display: inline-block;
}

.light {
  opacity: 0.6;
}


.form-section {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.block {
  display: block;
  width: 100%;
}

.form label a {
  text-decoration: underline;
}

/*------------------------------------------------------------------
[ Banner ]*/
.banner {
  border-radius: 16px;
  border: solid 1px #888888;
  padding: 12px 10px;
  background-color: #9ce5fa;
  color: #333333;
  margin: 10px auto 20px auto;
  font-size: 15px;
  text-align: center;
}

.banner h3 {
  margin-bottom: 4px;
}

.banner .body {
  margin-top: 4px;
  font-size: 82%;
}

/*------------------------------------------------------------------
[ Errors ]*/

.errors-wrap {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -10px;
}

.errors {
  position: absolute;
  color: #FF0000;
  text-align: center;
}


/*------------------------------------------------------------------
[ Input ]*/

.form-input-wrap {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  margin-bottom: 10px
}

.form-half-width {
  width: calc((100% - 40px) / 2);
}

.form-section-label {
  font-size: 13px;
  font-weight: bold;
  color: #111111;
  line-height: 1.5;
  text-transform: uppercase;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 8px;
}

.form-input-label {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  text-transform: uppercase;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 8px;
}

.form-input {
  display: block;
  width: 100%;
  background: transparent;
  font-size: 18px;
  background: #FFFFFF;
  color: #333333;
  line-height: 1.2;
  padding: 0 20px;
}

input.form-input {
  height: 45px;
}

textarea.form-input {
  min-height: 162px;
  padding-top: 19px;
  padding-bottom: 15px;
}

.form-input[disabled] {
  background-color: #eeeeee;
}

/*---------------------------------------------*/

.form-input-label-wrap {
  font-size: 13px;
  line-height: 1.5;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

#not-you {
  position: absolute;
  top: -2px;
  right: 5px;
  color: #000099;
}

/*---------------------------------------------*/


#progressbar {
    margin-bottom: 30px;
    overflow: hidden;

    text-align: center;
    position: relative;
    padding-top: 25px;
    padding-bottom: 20px;
    max-width: 810px;
    margin: 0 auto;
    background: #ffffff;
    z-index: 1;
}

#progressbar li {
    list-style-type: none;
}

#progressbar li div {
    color: #99a2a8;
    font-size: 9px;
    width: calc(100%/4);
    float: left;
    position: relative;
    font: 500 13px/1 sans-serif;
}

#progressbar li div:before {
    content: "1";
    font: 14px sans-serif;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: block;
    background: #eaf0f4;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

#progressbar li:nth-child(2) div:before {
    content: "2";
}

#progressbar li:nth-child(3) div:before {
    content: "3";
}

#progressbar li:nth-child(4) div:before {
    content: "4";
}

#progressbar li div:after {
    content: '';
    width: 100%;
    height: 10px;
    background: #eaf0f4;
    position: absolute;
    left: -50%;
    top: 19px;
    z-index: -1;
}

#progressbar span.tail {
    content: '';
    width: 100%;
    height: 10px;
    background: #eaf0f4;
    position: absolute;
    left: 87%;
    top: 44px;
    z-index: -1;
}

#progressbar li.current div {
    color: #347ec7;
}

#progressbar li.current div:before, #progressbar li.current div:after {
    background: #347ec7;
    color: white;
}

#progressbar li.done div {
    color: #44a944;
}

#progressbar li.done div:before, #progressbar li.done div:after {
    background: #44a944;
    color: white;
}

/*---------------------------------------------*/

.form-input-focus {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid;
  border-color: #d867c6;
  border-color: -webkit-linear-gradient(45deg, #c77ff2, #e8519e);
  border-color: -o-linear-gradient(45deg, #c77ff2, #e8519e);
  border-color: -moz-linear-gradient(45deg, #c77ff2, #e8519e);
  border-color: linear-gradient(45deg, #c77ff2, #e8519e);

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.form-input:focus + .form-input-focus {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}



/*------------------------------------------------------------------
[ Button ]*/
.form-button-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.form-button {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  height: 55px;
  border-radius: 20px;
  background: #d867c6;
  background: -webkit-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -o-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -moz-linear-gradient(45deg, #c77ff2, #e8519e);
  background: linear-gradient(45deg, #c77ff2, #e8519e);
  position: relative;
  z-index: 1;
}

.form-button::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333333;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

/* can use disabled prop, or .disabled class */
.form-button[disabled]::before, .form-button.disabled::before {
  background: #999999;
}

.form-button:not([disabled]):not(.disabled):hover::before {
  opacity: 0;
}

/*------------------------------------------------------------------
[ Radio Button ]*/

.form-radio-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 13px 5px 14px 5px;
  border: 1px solid transparent;
}

.form-radio-compact {
  width: 180px;
  padding: 8px 35px;
  margin-top: -5px;
}

.form-radio {
  white-space: nowrap;
}

.form-radio input {
  height: 100%;
  vertical-align: middle;
  padding: 10px 5px;
}

.form-radio label {
  display: inline;
  margin-left: 2px;
  color: #444444;
}

.form-radio input:checked+label {
  font-weight: 700;
  font-size: 95%;
}

/*------------------------------------------------------------------
[ Checkbox ]*/

.form-checkbox {
  padding-top: 5px;
  padding-bottom: 10px;
  white-space: nowrap;
}

.form-checkbox input {
  vertical-align: top;
  margin-top: 3px;
}

.form-checkbox label {
  display: inline-block;
  white-space: normal;
  margin-left: 2px;
  color: #444444;
}

.form-checkbox input:checked+label {
  font-weight: 700;
  font-size: 95%;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.form-input-validate {
  position: relative;
}

.form-input-validate-alert .form-input-focus {
  box-shadow: 0 5px 20px 0px rgba(250, 66, 81, 0.1);
  -moz-box-shadow: 0 5px 20px 0px rgba(250, 66, 81, 0.1);
  -webkit-box-shadow: 0 5px 20px 0px rgba(250, 66, 81, 0.1);
  -o-box-shadow: 0 5px 20px 0px rgba(250, 66, 81, 0.1);
  -ms-box-shadow: 0 5px 20px 0px rgba(250, 66, 81, 0.1);
}

.form-input-validate-alert::before {
  content: "";
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #fa4251;
  border-radius: 2px;
  top: -1px;
  left: -1px;
  pointer-events: none;
}

.form-input-validate-hide-btn {
  font-size: 15px;
  color: #fa4251;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  top: 0px;
  right: 10px;
}

.form-input-validate-ok::after {
  content: "\2713";
  font-size: 15px;
  color: #00ad5f;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  top: 0px;
  right: 10px;
}

.no-ok-checkmark .form-input-validate-hide-btn {
  display: none;
}

.no-ok-checkmark.form-input-validate-ok::after {
  display: none;
}

.form-radio-validate-alert {
  border: 1px solid #fa4251;
}


/*------------------------------------------------------------------
[ Select Dropdowns ]*/

.form-input-wrap select {
  min-height: 45px;
  border: none !important;
}

.select2-container--default .select2-selection--single {
  border: none !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  width: 100%;
  background: transparent;
  font-size: 18px;
  color: #333333;
  padding: 3px 20px !important;
  max-width: 80vw;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #c0c0c0;
}

.select2-selection__rendered {
    line-height: 41px !important;
}
.select2-container .select2-selection--single {
    height: 45px !important;
}
.select2-selection__arrow {
    height: 44px !important;
}


/*------------------------------------------------------------------
[ Reservation ]*/

.reservation-details {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.reservation-details dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: 100%;
  overflow: visible;
}
.reservation-details dl dt {
  flex: 0 0 40%;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: right;
  font-weight: bold;
  font-size: 90%;
  margin-top: 1px;
}
.reservation-details dl dd {
  flex: 0 0 45%;
  margin-left: 15px;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
}

.reservation-details .arrival-time {
  font-size: 90%;
  font-style: italic;
  margin-left: 10px;
}

.reservation-details .rate del {
  color: #999999;
}

.reservation-details .rate ins {
  color: #00aa00;
  text-decoration: none;
}

.reservation-details .rate .discount {
  font-size: 90%;
  color: #00aa00;
}

.reservation-details .rate-additional {
  font-size: 85%;
  font-style: italic;
}


.actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  flex-flow: row wrap;
  justify-content: center;

  margin-top: 25px;
}

.actions button {
  border-radius: 20px;
  padding: 12px 12px;
  background-color: #0061c1;
  color: white;
  width: 230px;
  min-width: 230px;
  margin: 0px 10px 10px 10px;
  font-size: 14px;

  z-index: 1;
  text-align: center;
  position: relative;
}

#book-again {
}

#cancel-reservation {
  background-color: #895506;
}

a.booking-phone, a.booking-email {
  white-space: nowrap;
}

.confirm-info {
  margin-top: 30px;
}

/*------------------------------------------------------------------
[ Time Slot Search ]*/
#messages {
  margin-top: 25px;
}

.message {
  border-radius: 16px;
  border: solid 1px #888888;
  padding: 12px 12px;
  background-color: #eaffd6;
  color: #333333;
  margin: 10px auto;
  font-size: 16px;
  text-align: center;
}

.message a {
  text-decoration: underline;
}

.message.info {
  background-color: #eaffd6;
}

.message.warning {
  background-color: #fffed6;
}

.message.alert, .message.error {
  background-color: #ffc9a9;
}

#reservation-request {
  font-size: 14px;
  text-align: center;
  margin: 30px auto 10px auto;

  border-radius: 16px;
  padding: 12px 12px;
  background-color: #e2f2f5;
  color: #333333;
}

#time-slots .section-title {
  font-size: 22px;
  color: #333333;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
}

#time-slots .section-subtitle {
  font-size: 15px;
  color: #666666;
  text-align: center;
  margin-top: -9px;
  margin-bottom: 5px;
}

#time-slots .section-additional {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 5px;
}

.section-time-slots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  flex-flow: row wrap;
  justify-content: center;
}

.time-slot {
  border-radius: 20px;
  padding: 12px 12px;
  background-color: #0061c1;
  color: white;
  width: 230px;
  min-width: 230px;
  margin: 10px 10px;

  z-index: 1;
  text-align: center;
  position: relative;
}

.time-slot .time {
  font-size: 16px;
  margin-bottom: 2px;
}

.time-slot .duration {
  font-size: 13px;
}

/*------------- Support for hover ------------*/
.time-slot::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;

  background: #d867c6;
  background: -webkit-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -o-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -moz-linear-gradient(45deg, #c77ff2, #e8519e);
  background: linear-gradient(45deg, #c77ff2, #e8519e);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.time-slot:hover::before {
  opacity: 1;
}

/*----------------------------------------------------------------- */
#debug-links {
  margin-top: 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

#debug-links a {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  white-space: nowrap;
}

.test-note {
  font-size: 75%;
  color: orange;
  position: absolute;
  margin-top: 23px;
  margin-left: 150px;
}

.faq {
  margin-top: 32px;
  margin-bottom: 10px;
}

/*------------------------------------------------------------------
[ Overlay and Modal ]*/
#overlay {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0);
  background-color: rgb(0,0,0, 0.4);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal {
  background-color: #fefefe;
  margin: 10px auto;
  top: -5%;
  padding: 20px;
  border: 1px solid #888;
  width: 400px;
  max-width: 95%;
  position: relative;
}

.modal h3 {
  text-align: center;
  margin: 20px 40px 0px 40px;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

.modal .close:hover, .modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/*------------------------------------------------------------------
[ Spinner ]*/

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
         transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.spinner {
    height: 100vh;
    opacity: 1;
    position: relative;
    transition: opacity linear 0.1s;
}

.spinner::before {
    animation: 2s linear infinite spinner;
    border: solid 3px #eee;
    border-bottom-color: #EF6565;
    border-radius: 50%;
    content: "";
    height: 40px;
    left: 50%;
    opacity: inherit;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    transform-origin: center;
    width: 40px;
    will-change: transform;
}

/*------------------------------------------------------------------
[ Rate Modal ]*/

.more-info {
  font-size: 14px;
  margin-top: 15px;
}

.rate-info {
  transition: max-height 0.4s ease-out;
  max-height: 0;
  overflow: hidden;
}

.rate-info.show {
  max-height: 350px;
  margin-top: 10px;
  overflow-y: scroll;
}

.rate-info h4 {
  margin: 12px 0px 3px 0px;
}
.rate-info > h4:nth-child(1) {
  margin-top: 0px;
}

.rate-info p {
  margin-bottom: 5px;
}

.rate-info a {
  font-weight: bold;
}

.rates .rate {
  display: block;
  border-radius: 20px;
  padding: 12px 12px;
  background-color: #0061c1;
  color: white;
  width: 325px;
  min-width: 325px;
  margin: 10px auto;

  z-index: 1;
  text-align: center;
  position: relative;

  font-size: 14px;
}

.rates .rate::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;

  background: #d867c6;
  background: -webkit-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -o-linear-gradient(45deg, #c77ff2, #e8519e);
  background: -moz-linear-gradient(45deg, #c77ff2, #e8519e);
  background: linear-gradient(45deg, #c77ff2, #e8519e);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.rates .rate:hover:not(.disabled)::before {
  opacity: 1;
}

.rates .rate.disabled {
  background-color: #999999 !important;
}

.rates .rate .title {
  font-size: 16px;
  font-weight: bold;
  margin-right: 4px;
}

.rates .rate .description {
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: 5px;
}

.rates .rate del {
  color: #dddddd;
}

.rates .rate ins {
  color: #6bff6b;
  text-decoration: none;
}

.rates .rate .discount {
  font-size: 12px;
  color: #6bff6b;
  margin-top: -3px;
}

.rates .rate .no-discount {
  font-size: 12px;
  font-weight: 500;
  color: #ff6666;
  margin-top: 3px;
}

.rates .rate .additional {
  font-size: 12px;
  font-style: italic;
  margin-top: 5px;
}

.rates .rate[data-rate-type*=individual] {
  background-color: #0061c1;
}

.rates .rate[data-rate-type*=group] {
  background-color: #009c71;
}

.rates .rate[data-rate-type*=special] {
  background-color: #7342bb;
}

/*------------------------------------------------------------------
[ Responsive ]*/

.container-wrap {
  width: 900px;
  background: #fff;
  border-radius: 2px;
  padding: 45px 65px 58px 65px;
  margin: auto;
}

@media (max-width: 768px) {
  .container-wrap {
    padding: 45px 25px 58px 25px;
  }
}

@media (max-width: 576px) {
  .container-wrap {
    padding: 45px 15px 58px 15px;
  }

  .form-half-width {
    width: 100%;
  }

  .reservation-details dl dt {
    flex: 0 0 25%;
  }
  .reservation-details dl dd {
    flex: 0 0 65%;
  }
}


/*------------------------------------------------------------------
[ Checkout / payment forms ]*/

.checkout-form {
  min-width: 350px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;

  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 30px 40px;
}

.checkout-form input {
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  font-size: 16px;
  width: 100%;
  background: white;
}

.checkout-form button {
  background: #5469d4;
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 0 0 4px 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
.checkout-form button:hover {
  filter: contrast(115%);
}
.checkout-form button:disabled {
  opacity: 0.5;
  cursor: default;
}

.checkout-form .hidden {
  display: none;
}


/*------------------------------------------------------------------
[ Stripe ]*/

#payment-form .result-message {
  line-height: 22px;
  font-size: 16px;
}

#payment-form .result-message a {
  color: rgb(89, 111, 214);
  font-weight: 600;
  text-decoration: none;
}

#payment-form-error {
  color: rgb(105, 115, 134);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}

#payment-card {
  border-radius: 4px 4px 0 0 ;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  width: 100%;
  background: white;
}

/* spinner/processing state, errors */
#payment-form .loading-spinner,
#payment-form .loading-spinner:before,
#payment-form .loading-spinner:after {
  border-radius: 50%;
}
#payment-form .loading-spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
#payment-form .loading-spinner:before,
#payment-form .loading-spinner:after {
  position: absolute;
  content: "";
}
#payment-form .loading-spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
#payment-form .loading-spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
