﻿.preferred_food_type .wrapper,
.room_type .wrapper{
  display: inline-flex;
  background: #fff;
  height: auto;
  width: auto;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
/*  padding: 20px 15px;*/
/*  box-shadow: 5px 5px 30px rgba(0,0,0,0.2);*/
}
.preferred_food_type .wrapper .option,
.room_type .wrapper .option{
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.preferred_food_type .wrapper .option .dot,
.room_type .wrapper .option .dot{
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.preferred_food_type .wrapper .option .dot::before,
.room_type .wrapper .option .dot::before{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #00827a;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
  border-color: #e4e4e4;
  background: #00827a;
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
  background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
  opacity: 1;
  transform: scale(1);
}
.preferred_food_type .wrapper .option span,
.room_type .wrapper .option span{
  font-size: 14px;
  color: #808080;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
  color: #fff;
}
.error{
  color: #ff4e4e;
}

.hide{
  display: none !important;
}
.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  transition: 0.2s;
 
}

.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  
}

.mt-100{
    margin-top:100px;
}
.card-block{
  border: 1px solid #dfd8d8;
  margin-bottom: 20px;
  padding: 10px;
  box-shadow: 0px 0px 6px -2px #999;
}
.card-block-title{
  margin-top: -20px;
  background: #fff;
  display: inline-block;
  width: auto;
}
.select2-container{
  width: 100% !important;
}
.custom-toggle .form-check-input{
  float: none !important;
}

/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .preferred_food_type .wrapper .option,
    .room_type .wrapper .option{
      margin-left: 3px !important;
      padding: 0px 3px !important;
    }
}

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .preferred_food_type .wrapper .option,
    .room_type .wrapper .option{
      margin-left: 3px !important;
      padding: 0px 3px !important;
    }
}

/* Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .preferred_food_type .wrapper .option,
    .room_type .wrapper .option{
      margin-left: 3px !important;
      padding: 0px 3px !important;
    }

}

.hand-image{
  height: 30px;
  width: 30px;
  margin-right: 4px;
}

.booking-id-input-field{
  width: 16.66666667%;
  float: left;
}

.booking-label{
  margin-top: 5px !important;
  margin-bottom: 0px !important;
  padding-right: 3px;
}

#verify-mobile-number{
  width: 33.3%;
}

#currency-radios label {
  cursor: pointer;
  position: relative;
}

#currency-radios label + label {
  margin-left: 5px;
}

#currency-radios input[type="radio"] {
  opacity: 0; /* hidden but still tabable */
  position: absolute;
}

#currency-radios input[type="radio"] + span.display-currnecy-span {
  color: #B3CEFB;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-weight: 600;
  font-size: 11px;
  background: #fff;
  color: #444;
  box-shadow: 0px 0px 5px #0000005c;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 30px;
}

#currency-radios input[type="radio"]:checked + span.display-currnecy-span {
  color: #D9E7FD;
  background-color: #00827A;
}

#currency-radios input[type="radio"]:focus + span.display-currnecy-span {
  color: #fff;
}

#currency-radios label:hover::before {
  content: attr(for);
  text-transform: capitalize;
  font-size: 11px;
  position: absolute;
  top: 170%;
  left: 0;
  right: 0;
  opacity: 0.75;
  background-color: #323232;
  color: #fff;  
  padding: 4px;
  border-radius: 3px;
  display: block;
}

#currency-radios {
  text-align: center;
  margin 0 auto;
}
.currency-icon-span{
  position: absolute;
  top: 36%;
  left: 44%;
}

.no-wrap-cell{
  white-space: nowrap;
}
.selected-currency, .bulk-selected-currency {
  background-color: #00827A !important;
  color: #fff;
  box-shadow: 0px 0px 2px 1px #88888885 !important;
}
.currency-display-table th{
  text-align: center !important;
}
ul.custom-checkboxes {
    list-style: none;
    padding: 0px 20px;
}
ul.custom-checkboxes li{
  display: inline;
}
ul.custom-checkboxes li label{
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid rgba(139, 139, 139, .3);
    color: #adadad;
    border-radius: 25px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}

ul.custom-checkboxes li label {
    padding: 8px 8px;
    cursor: pointer;
}

ul.custom-checkboxes li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "+";
    transition: transform .3s ease-in-out;
}

ul.custom-checkboxes li input[type="checkbox"]:checked + label::before {
    content: "\2714";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.custom-checkboxes li input[type="checkbox"]:checked + label {
    border: 2px solid #c9d0d0;
    background-color: #00827a;
    color: #fff;
    transition: all .2s;
}

ul.custom-checkboxes li input[type="checkbox"] {
  display: absolute;
}
ul.custom-checkboxes li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
ul.custom-checkboxes li input[type="checkbox"]:focus + label {
  border: 2px solid #bbb;
}
#hotel-booking-form{
  padding: 20px;
}
.img{
  max-width: 100% !important;
}
.text-highlight{
  padding: 15px 10px;
  border: 1px solid #999;
  box-shadow: 0px 0px 3px 0px #c8c8c8;
  line-height: 28px;
}
.tax-details{
  font-size: 12px;
}
.clickable-div{
  cursor: pointer;
}
.image-divider{
  height: auto;
  width: 5px;
  background-color: #333a36;

}