html {
  overflow-y: overlay;
}

body {
  font-family: 'Roboto', sans-serif;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contain-sides-padding-zero {
  padding-left:0;
  padding-right:0;
}

.custom-card {
  flex-direction: row;
}

.custom-card:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;  
}

.contain-sides-padding{
  padding-left:1rem;
  padding-right:1rem;
}
.contain {
  max-width: 1084px;
}

.card-alignment {
  padding-left: 5px;
}

.card-title-alignment {
  padding-left: 0px;
}

#search-input {
  font-size: 14px;
  min-width: 500px;
  height: 42px;
  border-radius: 2px;
  border: solid 1px #8c99af;
  background-color: #fff;
  bottom: 50px;
  padding: 10px 13px 10px 13px;
  background-image: url(/icons/icon_Search.svg);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
  background-origin: content-box;
}

#search-input::-webkit-input-placeholder {
    color: #b9c2d3;
    font-size: 14px;
    line-height: 1.21;

}
#search-input:-moz-placeholder {
    color: #b9c2d3;
    font-size: 14px;
    line-height: 1.21;
}
#search-input::-moz-placeholder {
    color: #b9c2d3;
    font-size: 14px;
    line-height: 1.21;
}
#search-input:-ms-input-placeholder {
    color: #b9c2d3;
    font-size: 14px;
    line-height: 1.21;
}

.btn {
  outline:none;
}

.no-padding {
  padding:0;
}

.section-padding-bottom {
  padding-bottom:50px;
}

.card-margin {
  margin-top: 10px;
}

.btn-ic:focus, .btn-ic:active {
  box-shadow:none !important; outline:none!important;
}


.box-sh{
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out; 
}
.box-sh:hover{
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}


/* custom checkbox */
label.check{
  margin-bottom:7px;
}

label.payment-check {
  margin-bottom: 11px;
}

.checkbox-custom {
  display: none;
}
.checkbox-custom-label {
  display: flex;
  cursor: pointer;
  user-select:none;
  font-size:13px;
  line-height: 18px;
  align-items: center;
}
.checkbox-custom-label:before{
  content: ' ';
  display: inline-block;  
  color:#fff;
  border-radius: 3px;
  width:16px;
  height:16px;
  
  text-align:center;  
  background-color:transparent;
  border: 2px solid #1E2023; 

  line-height:14px;  
  padding-right:10px;
  margin-right: 10px;
}
.checkbox-custom:checked + .checkbox-custom-label:before {
  content:' ';
  display: inline-block;
  
  background-color: #455A64;
  border: 2px solid #455A64; 
  background-image: url(/icons/icons_White/iconWhite_Checkbox_Selected.svg);
  background-repeat:no-repeat;
  background-position: center;

  height:16px;
  width:16px;

  background-size: 12px 12px ;
  
}

/*custom checkbox ends here */

/*custom radio begins here */

.radio-custom {
  display: none;
}
.radio-custom-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select:none;
  font-size:13px;
  line-height: 1.15;
  position: relative;
}
.radio-custom-label:before{
  content: ' ';
  display: inline-block;  
  color:#fff;
  border-radius: 3px;
  width:16px;
  height:16px;
  
  text-align:center;  
  background-color:transparent;
  border: 2px solid #454950; 

  line-height:14px;  
  margin-right:10px;
}
.radio-custom:checked + .radio-custom-label:before {
  content:' ';
  display: inline-block;
  
  border: 2px solid #fd4700; 
  background-repeat:no-repeat;
  background-position: center;

  height:16px;
  width:16px;
  
}

.radio-custom:checked + .radio-custom-label:after {
  content: ' ';
  width: 8px;
  height: 8px;
  background-color: #455A64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 4px;
  bottom: 5px;
}

/* custom radio ends here */

.amenity img{
  height:24px;
  width:24px;
  display:inline-block !important;
  margin-bottom:12px;
}

.card {
  border:none;
}


.error-div {
  background-color:
  #fff;
  border-radius: 4px;
  padding: 10px;
  width: 808px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.unavailable_dates_diff {
  margin-bottom: 20px;
}

.error-border {
  border: 1px solid #F00;
  border-radius: 4px;
  padding: 15px;
  background-color: rgb(255,217,217);
  color: #f00;
}

.error-message {
  font-weight: bold;
  margin: 0px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.21;
  text-align: left;
  color: #ff0000;
}

.advice {
  font-weight: normal;
  padding-left: 20px;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: normal;
  text-align: left;
  color: #2c2f33;
  padding-top: 4px;
}

.error_message_holder {
  width: 100%;
  height: 80px;
  padding: 0px 20px;
  background-color: #0C83D9;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.error_message_left {
  display: flex;
}

.error_info_icon {
  margin-right: 15px;
  width: 24px;
}

.error_message {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.error_message_btn {
  border: unset;
  border-radius: 4px;
  background-color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  color: #0C83D9;
  padding: 8.5px 20px;
}

.error_message_btn:focus {
  outline: unset;
}

/* TOOLTIP CSS */

.t-tip__next:hover {
  cursor: pointer;
}


.t-tip__in:hover {
  cursor: pointer;
}

.t-tip {
  display: none;
  float: right;
}

.t-tip__text {
  background-color: #2c2f33;
  color: #fff;
  text-align: justify;
  padding: 15px;
  border-radius: 4px;
  z-index: 10;
  font-size: 13px;
  line-height: 1.15;
  max-width: 385px;
  display:inline-block;
  position: absolute;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: max-content;
  white-space: normal;
   /* fix for safari*/
  width: -webkit-max-content;
  min-width: -webkit-max-content;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;  
}

.restricted_text_holder .t-tip__text { 
  top: calc(100% + 10px);
  right: 0px;
}

.roomrate .image .t-tip__text {
  position: fixed;
}

.t-tip__text:hover {
  display: none;
}

.t-tip__next:hover + .t-tip {
  display: inline-block;
}

.rate_plan[data-has-loyalty="true"] .t-tip__next:hover + .t-tip {
  display: block;
  position: absolute;
  z-index: 1;
  right: 20px;
}

.rate_plan[data-has-loyalty="true"] .t-tip__next + .t-tip .t-tip__text:hover {
  display: block !important;
}

.rate_plan[data-has-loyalty="true"] .restricted_text_holder .t-tip__text {
  top: -15px;
  right: 0px !important;
}

.rate_plan[data-has-loyalty="true"] .restricted_text_holder .los_restricted .t-tip__text {
  right: 60px !important;
}

.t-tip__in:hover  .t-tip { 
  display: inline-block;
}

.t-tip__text__date-holder {
  min-width: 150px;
}

.t-tip__text__date {
  display: inline-block;
  white-space: nowrap;
}

.t-tip__text__price {
  white-space: nowrap;
  display: inline-block;
  margin-left: auto;
} 

.price-date-container {
  display: flex;
  justify-content: space-between;
  min-width: 205px;
  line-height: 1.54;
}

/* .single-room-popup-padding {
  padding-right: 25px;
} */

/* TOOLTIP CSS ENDS HERE */

/* Share Icons */

.icon-share__text {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.17;
  text-align: right;
  color: #8c99af;
  margin-right: 10px;
}

.icon-share__link {
  display: inline-block;
  cursor:pointer;
}

.icon-share__holder__rating {
  margin-left: 40px;
  width: 100px;
  display: flex;  
  align-items: flex-end;
}


.icon-share__link__text {
  position: absolute;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.13;
  text-align: right;
  color: var(--white);
  right: 82px;
  top: 6px;
}

.icon-share__review {
  margin-right: 10px;
}

.icon-share__review__text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.13;
    text-align: right;
    color: #003580;
}




/* Tripadvisor popup */
.TA_selfserveprop {
  display: none;
  position: absolute;
  right: -225px;
  top: -12px;
}


.socialWidgetContainer a  {
  display: flex;
  align-items: center;
}

.icon-share__holder__rating  {
  padding: 0px;
  width: auti;
  cursor: pointer;
}

.TA_socialButtonBubbles  {
  padding-left: 9px;
  padding-top: 6px;
}

.TA_socialButtonBubbles .icon-share__holder__rating::before  {
  display: none;
}

.icon-share__holder__rating .socialWidget.cx_brand_refresh1 .socialWidgetCore.green {
  background-color: unset;
  width: 20px;
  height: 13px;
  margin-right: 3px;
}

.icon-share__holder__rating .socialWidget.cx_brand_refresh1 .socialWidgetCore.green img {
  width: 20px;
  padding: 0;
}

.icon-share__holder__rating .socialWidget.cx_brand_refresh1 .socialWidgetCallout .borderBox {
  background-color: unset;
  border: 0;
}

#information-popup p {
 text-decoration: none;
 color: #2c2f33;
 font-family: 'Roboto', sans-serif;
}

#information-popup a:hover {
 text-decoration: none;
}

#information-popup img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

#information-popup .information-popup-content {
  height: 100%;
}

#children-not-allowed .close , #select-hotel .close , #session-expired .close {  
  position: absolute;
  right: 0;
  padding: 10px;
}

#information-popup .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 8px;
  z-index: 10;
  opacity: 0.85;
  transition: all 0.2s ease-in;
}

#information-popup .modal-content {
  border: 0;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

#information-popup .modal-dialog.square .modal-content {
  max-height: 700px;
  aspect-ratio: 1 / 1;
}

#information-popup .modal-dialog.horizontal .modal-content {
  max-width: 800px;
  aspect-ratio: 4 / 3;
}

#information-popup .modal-dialog.vertical .modal-content {
  height: 700px;
}

#information-popup .close:hover {
  opacity: 1;
}

#information-popup .close:focus {
  opacity: 1;
  outline: none;
}

#information-popup .close span {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#information-popup .modal-close-icon svg {
  width: 16px;
  height: 16px;
}

#information-popup .modal-close-icon svg path {
  fill: #ffffff;
}

#loyalty-info-modal .modal-dialog {
  max-width: 500px;
}

#loyalty-info-modal .modal-content{
  padding:25px 30px;
  text-align: left;
  font: normal normal normal 14px/19px 'Roboto', sans-serif;
  letter-spacing: 0px;
  color: #2C2F33;
}

#loyalty-info-modal .modal-content .title {
  text-align: left;
  font: normal normal bold 16px/21px 'Roboto', sans-serif;
  letter-spacing: 0px;
  color: #273240;
  margin-bottom:20px;
}

#loyalty-info-modal .modal-content .price-tag {
  text-align: left;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  letter-spacing: 0px;
  color: #FFFFFF;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 15px;
  margin-bottom: 20px;
}

#loyalty-info-modal .modal-content .price-tag.public-price-tag {
  text-align: left;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  letter-spacing: 0px;
  color: #FFFFFF;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: #273240;
}

#loyalty-info-modal .modal-content .loyalty-desc {
  margin-top: 20px;
  margin-bottom: 0px;
  text-align: left;
  font: normal normal normal 14px/19px 'Roboto', sans-serif;
  letter-spacing: 0px;
  color: #2C2F33;
}

#loyalty-info-modal .modal-content hr {
  width: 100%;
  height: 1px;
  border-top:1px solid #D8DDE8;
  margin: 20px 0;
}
 
#children-not-allowed .close img , #select-hotel .close img , #session-expired .close img , #privacy-modal .close img {  
  height: 17px;
  width: 17px;
}

#privacy-modal .cancel-popup__contain {
  padding: 30px;
}

#children-not-allowed  h5 , #select-hotel h5 ,  #session-expired h5 {
  font-size: 18px;
}

#select-hotel   .cancel-popup__contain > div:nth-child(2) {
   width: 100%;
}

#select-hotel h5  {
  margin-bottom: 30px;
}

#children-not-allowed  p ,  #select-hotel p , #session-expired p , #information-popup p {
  font-size: 14px;
}

#children-not-allowed  .btn , #select-hotel .btn , #session-expired .btn {
  float: right;
}


#session-expired .close , #select-hotel .close , #session-expired .close {  
  position: absolute;
  right: 0;
  padding: 10px;
}

#session-expired .close img , #select-hotel .close img{  
  height: 17px;
  width: 17px;
}

#session-expired  h5 , #select-hotel h5 {
  font-size: 18px;
}

#select-hotel   .cancel-popup__contain > div:nth-child(2) {
   width: 100%;
}

#select-hotel h5  {
  margin-bottom: 30px;
}

#session-expired  p ,  #select-hotel p {
  font-size: 14px;
}


.session-expired__contain {
  padding-bottom: 0px;
}

.session-expired-button-holder {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
  padding-right: 30px;
}

#session-expired .modal-content {
  width: 560px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


#session-expired div {
  width: 100%;
}

#session-expired h5 {
  color:  #273240;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

#session-expired p {
  width: 286px;
  color: #fff;
  text-align: center;
  /*background-color: #FEC437;*/
  font-size: 17px;
  margin: 0 auto;
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
}

#session-expired p:hover {
  opacity: 0.8;
}



#rateplan-modal {
  min-width: 500px;
  min-height: 90vh;
}

.popup-button {
  background-color: transparent;
  border: none;
}

.close_icon {
  width: 24px;
  height: 24px;
}

.close {
  opacity: 1;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.custom-modal {
  border:none;
  background: transparent;
}

.bg-white.w-100 {
  margin-top: unset;
}

.breadcrumb {
  margin-bottom: 20px;
  padding-left: 0px;
  padding-right: 0px;
  gap: 4px;
}

.different-currency {
  font-size: 14px;
  margin-top: 10px;
  font-weight: normal;
  text-transform: initial;
  background-color: #fff;
  padding: 10px 10px 10px 30px;
  text-align: left;
  position: relative;
  border-radius: 3px;
  color: black;
}

.different-currency-img {
  position: absolute;
  top:12px;
  left:10px;
}

.different-currency-conf {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 700;
  text-transform: initial;
  max-width: 400px
}

.bold {
  font-weight: bold;
  display: block;
}


/* IMAGE GALLERY*/

.room-image-container {
  height: 197px;
  width: 246px;
  min-width: 246px;
  position: relative;
  background-color: var(--be-image-placeholder-background, #ededed);
  border-radius: 4px;
  overflow: hidden;
}

.room-image-container img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.room-gallery-opener {
position: absolute;
height: 100%;
width: 100%;
z-index: 10;
cursor: pointer; 
}

.room-gallery-opener-mobile {
display: none;
}

/* Modal fullscreen */


.hotel-image-container {
  width: 100%;
  position: relative;
  background-color: var(--be-image-placeholder-background, #ededed);
  border-radius: 4px;
  overflow: hidden;
  height: 341px;
}

.hotel-image-container .loader-container {
  top: 0;
  max-height: unset;
}

.hotel-image-container img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Modals ajustments */
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  max-height: none;
  height: 100%;
  margin: 0;
}

#single-room-ajax .gallery-contain-left.gallery-contain-left-ajax{
  height: 322px;
  width: 100%;
  min-width: 510px !important;
  max-width: 510px !important;
}

#single-rateplan-ajax .gallery-contain-left.gallery-contain-left-ajax{
  height: 322px;
  width: 100%;
  min-width: 510px !important;
  max-width: 510px !important;
}

#singlerate-landing-page.hotel-image-container{
  height: 322px;
  width: 100%;
  min-width: 510px !important;
  max-width: 510px !important;
}

#single-room-ajax .info.info-ajax{
  width: 100%;  
  min-width: unset;
  padding: 20px 20px;
}

#single-rateplan-ajax .info.info-ajax{
  width: 100%;  
  min-width: unset;
  padding: 20px 20px;
}

.room-dialog-ajax, .rateplan-dialog-ajax{
  max-width: 1084px !important;
}

#single-room-ajax .single-room-content,
#room-landing-page .single-room-content{
  display: flex;
  width: 100%;
  gap: 30px;
}

#single-rateplan-ajax {
  display: flex;
  flex-direction: column;
}

#single-rateplan-ajax .mobile-galery{
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 0 30px;
  margin-bottom: 30px;
}

#single-rateplan-ajax .rateplan-book {
  background-color: transparent;
  border-radius: 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row;
  gap: 15px 30px;
  margin-bottom: 30px;
}

#single-rateplan-ajax #guarantees-penalties-component {
  margin: 0 30px;
  border-top: 1px solid #EAEDF2;
}

.custom-arrow-left__icon,.custom-arrow-right__icon{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.load-wrapp {
  margin: 0 auto;
  width: 174px;
  margin-top: 156px;
  transform: scale(0.8, 0.8);
}

/* CANCEL MODAL CSS */

#information-popup .modal-dialog.square {
  max-width: 700px;
}

#information-popup .modal-dialog.horizontal {
  max-width: 800px;
}

#modal-failed .modal-dialog {
  max-width: 620px;
}

#modal-failed .close-button-error {
  position: absolute;
  transform: translateY(-100%);
  top: -15px;
  right: 5px;
}

#modal-failed .close-button-error svg {
  width: 16px;
  height: 16px;
}

#modal-failed .close-button-error svg path {
  fill: #ffffff;
}

.modal-open {
  overflow: hidden;
  /* height: 100vh; */
}

#modal-loader .modal-content{ 
  background:#EAEDF2;
  }
  
  
.close_icon {
  width: 32px;
  height: 32px;
}

.popup-button {
  color: #ffffff;
  text-shadow: none;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  opacity: 1;
  z-index: 1;
}

.popup-link {
  color: inherit;
}
  
.cancel-popup__contain {
  padding: 30px 30px;
  display: flex;
}

.cancel-popup__holder {
  margin-right: 15px;
}

.cancel-popup__header {
  font-size: 18px;
  margin-bottom: 20px;
  color: #2C2F33;
  font-weight: 700;
}

.cancel-popup__description {
  font-size: 14px;
}

.cancel-popup-button, .try-again-button {
  min-width: 130px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.15;
  text-align: center;
  padding: 10px 20px;
  border-radius: var(--button-border-radius-lg, 12px);
  text-transform: uppercase;
  line-height: 21px;
  min-height: 48px;
}

#modal-failed .try-again-button:hover {
  text-decoration: none;
  -webkit-box-shadow: inset 0px -5px 0px 40px rgba(0,0,0,0.1);
  -moz-box-shadow: inset 0px -5px 0px 40px rgba(0,0,0,0.1);
  box-shadow: inset 0px -5px 0px 40px rgba(0,0,0,0.1);
}

a.try-again-button {
  display: flex;
  align-items: center;
}

.cancel-popup-button {
  margin-left: 10px;
}

.stayDown {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.white-bg {
  position: relative;
}

.no-results { 
  padding-top:100px;
  padding-bottom:100px;
  text-align:center;
  flex-direction: column;
}

.no-results-img{
  height:128px;
  fill:#C2CBDA;
  width:128px;
}
.no-results-text {
  margin-top:30px;
  margin-bottom: 0px;
  color:#8C99AF;
  font-size: 16px;
}
.no-results-descr{
  margin-top:0px;
  color:#8C99AF;
  font-size: 13px;
  max-width:200px;
  margin-left:auto;
  margin-right:auto;
}

.s-none {
  display: none;
}

.arrow-icon-rotated {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);  
}

/* Partial Payment Modal */

#partial-payment-modal {
  padding: 30px;
}

.partial-payment-header {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  color: #2c2f33;
  margin-bottom: 30px;
}

.partial-payment-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  text-align: left;
  color: #2c2f33;
  margin-bottom: 40px;  
}

.partial-payment-content {
  max-width: 746px;
}

.partial-payment-contain {
  display: flex;
  justify-content: center;
}

.mobile-galery {
  display: inline-flex;
  width: 100%;
}

/* MAP MODAL CSS */

.popup-button {
  color: #ffffff;
  text-shadow: none;
  position: fixed;
  top: 20px;
  right: 20px;
}

.popup-button:hover {
  color: #ffffff;
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}

.close_icon {
  width: 24px;
  height: 24px;
}

.close {
  opacity: 1;
}

select option {
    font-family: 'Roboto', sans-serif;
}

#map-modal {
  height:640px!important; 
  /*width: 900px!important;*/
}
.map-title{
  position: absolute;
  width: 100%;    
  text-align: center;
  top: -50px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.card-text-mobile {
  display: none;
}

.card-text-desktop {
  display: block;
}

.modal-backdrop.show {
  opacity: 0.8;
}


.partial-payment-text-bottom {
  margin-bottom: 0px;
}

#modal-payment-loader .loading-container{
  padding: 50px 0 40px 0;
}

.loader-container.modal-loader{
  position:unset;
  height: auto;
  display: flex;
}
.loader-container.modal-loader .search-loading-message{
  display:none;
}

#modal-payment-loader .text-container{
  padding: 0 60px 40px 60px;
}
#modal-payment-loader .loader-dots {
  position: initial;
  transform: unset;
}
#modal-payment-loader .loader-dots {
  position: initial;
  transform: unset;
}

.payment-modal-title {
  font-size: 18px;
  text-align: center;
}

.payment-modal-text {
  font-size: 14px;
  text-align: center;
}

.icon-share__review__phone {
  display: none;
}

.restriction-tooltip {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-top: 5px;
  min-width: 250px;
}

.single-restriction {
  flex-direction: column;
  min-height: 54px;
}

.tooltip-yes{
  text-transform: lowercase;
}

.tooltip-yes:first-letter {
  text-transform: capitalize;
}

.tooltip-no{
  text-transform: lowercase;
}

.tooltip-no:first-letter {
  text-transform: capitalize;
}

.body-overlay-mobile {
  display: none;
  width: 100vw;
  height: 100vh;
  opacity: 0.75;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background-color: #2c2f33;
  position: fixed;
  top: 0; 
  z-index: 0;
}

.meals_included_icon {
  margin-left: 0px;
  margin-right: 12px;
}

.amenity-room-tooltip {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.amenity-tooltip-box {
  margin-left: 5px;
}

.extra_price {
  margin-bottom: 0px;
  text-align: center;
  color: #53ac2a;
  font-size: 19px;
  font-weight: bold;
}

.extra_price_description {
  font-size: 11px;
  text-align: center;
}

.extra_price_description:first-letter {
  text-transform: capitalize;
}

.extra_line {
  width: 100%;
}

.btn:hover {
  color: #ffffff;
}

.incorect-age {
  display: none;
  max-width: 80px;
  font-size: 12px;
  font-weight: bold;
}

.incorect-age div {
  display: flex;
}

.see-map-text {
  text-decoration: underline;
}

.image-placeholder {
  width: 100%;
  height: 350px;
  flex-shrink: 0;
}

.image-step-placeholder {
  display: none;
}

.image-hotel-placeholder {
  display: block;
}

.cancel-popup__buttons  {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.ajax-gallery-images {
  position: relative
}



.grid-images-ajax {
  margin-left:0px;
  margin-right: 9px;
  margin-bottom: 0px;
  width: 92px;
  height: 63px;
  margin-top: 13px;
}

.grid-images-ajax-last {
  margin-right: 0px;
  margin-bottom: 0px;
}

.grid-image-ajax {
  width: 100%;
  height: 100%;
}

.image-overlay-ajax {
  background-color: rgba(0 ,0, 0, 0.7);
  color: white;
  position: absolute;
  width: 92px;
  height: 63px;
  z-index: 2;
  border-radius: 4px;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;  
}

footer {
  padding: 20px;
  color: #ffffff;
  background-color: #4d4d4d;
  font-size: 12px;
  line-height: 1.3;
  margin-top: auto;
}

.footer, .footer-container, .footer-content {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  flex-direction: row;
  justify-content: center;
}

.footer-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.footer-container {
  max-width: 1084px;
}

.copyright-info, .footer-contact-info {
  width: fit-content;
  display: flex;
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.copyright-info {
  display: inline;
}

.footer-contact-info {
  padding-left: 20px;
  border-left: 1px solid #636363;
}

.footer-credits {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer-credits .powered-by {
  font-size: 12px;
  width: max-content;
  margin-top: 2px;
}

.omnibees-logo {
  height: 24px;
}

.footer-contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.footer-contact-info div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.footer-contact-info a {
  color: #ffffff
}

.footer-contact-info a:hover, .footer-contact-info a:focus {
  text-decoration: underline;
}

.footer-contact-info svg path {
  fill: #ffffff;
}

.border-unset {
  border: none;
}

.terms-content {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #2c2f33;
}

.cancelation_policy .t-tip__text, .property-service-popup-modal .t-tip__text, .rate_name .t-tip__text, .service-name .t-tip__text {
  min-width: 100px;
  max-width: 385px;
}

#session_timeout .modal-content {
  width: 560px;
  /*height: 443px;*/
  border-radius: 4px;
}

#session_timeout .close {
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
}

#session_timeout .close img {
  padding-top: 10px;
  padding-right: 10px;
}  

.modal_session_top {
  /*height: 217px;*/
  padding: 28px 180px 20px 70px;
  background-color: #eaf4fc;
  border-radius: 4px 4px 0px 0px;
}

.modal_session_top img {
  width: 299px;
  height: 161px;
}

.modal_session_bottom {
  padding: 25px 29px 37px 30px;
  text-align: center;
}

.modal_session_title {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  color: #273240;
  line-height: 27px;
  margin-bottom: 11px;
}

.modal_session_text {
  font-size: 14px;
  margin-bottom: 30px;
  color: #273240;
}

.modal_session_button {
  border-radius: 24px;
  font-size: 15px;
  font-weight: bold;
  padding: 13px 35px 15px 34px;
  /*width: 203px;*/
  height: 48px;
  line-height: 20px;
}

/*SINGLE HOTEL SEARCH BAR */
.single_hotel_search_bar #autocomplete {
  display: none;
}

/*.single_hotel_search_bar #calendar_dates, .single_hotel_search_bar #guests, .single_hotel_search_bar #promo_code {
  width: 150px;
}*/

.single_hotel_search_bar #calendar_dates, .single_hotel_search_bar #guests {
  width: 220px;
}

.single_hotel_search_bar form[name="hotel_search"], .single_hotel_search_bar form[name="index_form"]{
  width: 100%;
  justify-content: center;
}



/* NEXT PAGE LOADER */


#room-modal {
  background-color: #fff;
  min-width: 300px;
  min-height: 90vh;
  width: auto;
  border-radius: 4px;
}

#room-modal #single-room-ajax.container, #single-rateplan-ajax.container {
  height: 90vh;
  max-width: 1084px;
  padding: 30px 0px 0px 0px;
}


.single-room-header, #single-rateplan-ajax .single-rateplan-header {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 30px;
  margin-bottom: 20px;
}

.modal-close-button{
  cursor: pointer;
}

.single-room-body {
  height: 94%;
  overflow-y: scroll;
}
.single-room-body, #single-rateplan-body {
  width: 100%;
  padding: 0px 20px 0px 30px;
  overflow-x: hidden;
}
#single-rateplan-body {
  flex: 1;
  padding: 0;
}

#share-close-modal{
  display:flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: nowrap;
  cursor: pointer;
}

/* room-main-info component*/
#single-room-ajax .info.info-ajax{
  background-color: unset !important;
  padding:unset;
}

.room-info {
  position: relative;
}

#room-technical-info.view-icons{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#room-technical-info .view-bed-type{
  flex-basis: 50%;
  padding: 0px 10px 10px 0px;
  display:flex;
  flex-direction: row;
  align-items: flex-start;
}

#room-technical-info .room-bed-name{
  text-align: left;
}

#room-technical-info .room-technical-info-tooltip-list{
  padding-left: 17px;
  margin-bottom: unset;
}


.more-views:hover  + .see-more-views-tooltip {
  display: block;
}

.more-rooms:hover  + .see-more-rooms-tooltip {
  display: block;
}

.see-more-tooltip {
  background-color: #2c2f33;
  color: #fff;
  text-align: justify;
  padding: 15px;
  border-radius: 4px;
  z-index: 10;
  font-size: 13px;
  line-height: 1.15;
  max-width: 385px;
  display: none;
  position: absolute;
  top: 25px;
  left: 25px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: max-content;
  width: -webkit-max-content;
  min-width: -webkit-max-content;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.room-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #273240;
  margin-bottom: 0px;
}

/* Room-Main-Amenities component*/
#room-main-amenities .main-amenities-room{
  display: flex;
  flex-direction: row;
  gap: 9px;
  margin-top: 20px;
  padding-bottom: 20px;
  justify-content: center;
}

#room-main-amenities .amenities-room-icons{
  display:flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  background-color: #F6F7F9;
  border-radius: 4px;
  width: 94px;
  height: 84px;
  text-align: center;
}

#room-main-amenities .amenity-room{
  margin: 10px 0px !important;
  width: 24px;
  height: 24px;
  margin: unset;
}

#room-main-amenities .amenity-room-name{
  font: 400 12px/14.06px 'Roboto', sans-serif;
  margin-bottom: 12px;
}


/*Room All Amenities component*/

#amenities-component.amenity-group-wrap{
  width: 100%;
  border-top: solid 1px #e6e6e6;
  grid-template-columns: unset;
  grid-template-rows: auto auto auto auto !important;
  grid-row-gap: 20px;
  padding: 20px 0px 20px 0px;
  grid-column-gap: unset;
}



#amenities-component .amenity-group-single{
  border-bottom: solid 1px #e6e6e6;
  width: 100%;
}

#amenities-component .amenity-group-single:last-child{
  border-bottom: unset;
}

#amenities-component .amenity-group{
  display: flex;
  flex-direction: column;
  height: auto;
}



#amenities-component .amenity-items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
    padding-bottom: 10px;
}


#amenities-component .amenity-category{
  display:flex;
  flex-direction: row;
  padding-top:10px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.31;
  color: #2c2f33;
  background-image: none;
  margin-bottom: 11px;
  align-items: center;
}

#amenities-component .amenity-group .amenity-category{
    padding-top: unset;
    border-top: unset;
}

#amenities-component .amenity-item{
  margin: 0px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 16.41px;
  color: #2c2f33;
}

#amenities-component .amenity-item::before{
  content: "✓";
  font-size: 16px;
  color: #454950;
  margin-right: 10px;
  }

#amenities-component .amenities{
  display: flex;
  align-items: center;
  justify-content: center;
}

#amenities-component .amenity-icon{
  height:24px;
  margin-bottom:11px;
}

#amenities-component .amenity{
  width:10%;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  align-self: flex-start;
}


.next-step-loader {
  position: relative;
  display: none;
  justify-content: center;
  top: 268px;
}

.gooey {
  position: absolute;
  /*top: 100px;*/
  /*left: 50%;*/
  width: 209px;
  height: 42px;
  background: #fff;
  filter: contrast(20);
}

.gooey-modal {
  /*z-index: -1;*/
  top: 100px;
  left: 20px;
}


.gooey .dot {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 12px;
  left: 15px;
  filter: blur(4px);
  background: #000;
  border-radius: 50%;
  transform: translateX(0);
  animation: dot 2.8s infinite;
  margin-top: 0px;
}
.gooey .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}
.gooey .dots span {
  display: block;
  float: left;
  width: 22px;
  height: 22px;
  margin-left: 25px;
  filter: blur(4px);
  background: #000;
  border-radius: 50%;
}

.search-loading-message {
  color: #273240;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  margin-top: unset;
  line-height: 30px;
  position: absolute;
  top: calc(50% + 40px);
}

#room-modal .search-loading-message {
  display: none;
}

/* #room-modal .gooey {
    left: 148px;
    top: 50%;
} */

#room-modal .gooey {
  left: 0px;
  right: 0px;
  margin: auto;
  top: 50%;
  bottom: 50%;
}

#rateplan-modal .gooey, #partial-payments-info .gooey {
  left: 0px;
  right: 0px;
  margin: auto;
  top: unset;
  bottom: 50%;
}

#rateplan-modal .search-loading-message, #partial-payments-info .search-loading-message {
  position: absolute;
  bottom: 50%;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: 0px;
}

@-moz-keyframes dot {
  50% {
    transform: translateX(151px);
  }
}
@-webkit-keyframes dot {
  50% {
    transform: translateX(151px);
  }
}
@-o-keyframes dot {
  50% {
    transform: translateX(151px);
  }
}
@keyframes dot {
  50% {
    transform: translateX(151px);
  }
}
@-moz-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@-webkit-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@-o-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}

/*
#session-expired {
  display: block;
  opacity: 1;
}
*/

.partial-payments-modal {
  min-width: 514px;
  max-width: 514px;
  min-height: 187px;
}

#partial-payments-info {
  padding: 30px;
  min-width: 514px;
  max-width: 514px;
  min-height: 187px;
}

.partial-payments-header {
  font-size: 22px;
  line-height: 27px;
  font-weight: bold;
  color: #273240;
  padding-bottom: 3px;
}

.partial-payment-group {
  padding-top: 30px;
}

.partial-payment-group-text {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #273240;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 11px;
}

.partial-payment-group-green-text {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  color: #53AC2A;
  margin-bottom: 5px;
  min-width: max-content;
}

.partial-payment-group-images {
  display: flex;
  flex-wrap: wrap;
}

.partial-payment-group-images img {
  margin-right: 10px;
  width: 48px;
}

.searchbar-fieldset {
  display: flex;
  flex-direction: column;
  position: relative;
}

.searchbar-fieldset .search-icon, .searchbar-fieldset .calendar-icon {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.searchbar-fieldset .search-icon {
  right: 10px;
}

.searchbar-fieldset .calendar-icon {
  display: none;
}

.searchbar-fieldset .search-icon svg path {
  stroke: #454950;
}

.searchbar-fieldset .calendar-icon svg path {
  fill: #454950;
}

.mobile-see-all-button {
  display: none;
}

#single-room-ajax .room-modal-title, #rateplan-name-modal {
  font: 700 24px/28.13px 'Roboto', sans-serif;
  margin-bottom: unset;
}

#room-technical-info .room-bed-name{
  font: 400 14px/16.41px 'Roboto', sans-serif;
}

#text-toggle-component .short-text,
#text-toggle-component .full-text{
  font: 400 14px/20px 'Roboto', sans-serif;
}

#text-toggle-component .see-more-text{
  font: 400 14px/20px 'Roboto', sans-serif;
  color:#4B8CF4;
}

#rateplan-modal-header .hotel_text {
  height: 16px;
}

#rateplan-name-modal {
  margin-bottom: 4px;
}

#rateplan-hotel-label img {
  margin-right: 5px;
}

.rateplan-info-title {
  font: 700 16px/14px 'Roboto', sans-serif;
}

#rateplan-resume {
  margin-bottom: 30px;
}

#rateplan-stay-period, .rateplan-info-title {
  margin-bottom: 20px;
}

#rateplan-stay-period ul {
  padding: 0 1rem;
  font-size: 14px;
  margin-bottom: 30px;
  list-style: disc;
}

.cancelation_policy_holder, .dot-rate-included, .meals_included-ajax {
  width: fit-content;
}

#rateplan-download-pdf {
	text-decoration: none;
  display: inline-block;
}

#rateplan-download-pdf button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  background: #FFF;
  border: 1px solid #B9C2D3;
  border-radius: 12px;
}

/* COMPONENTE POLICY */
#guarantees-penalties-component .policy-title {
  font: 500 16px/1.21 'Roboto', sans-serif;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
	color: #273240;
	margin-bottom: 12px; 
	margin-top: 28px;
}

#guarantees-penalties-component .guarantee-policy:last-child {
	border-bottom: unset;
	padding-bottom: 0;
}

#guarantees-penalties-component .policy-description{
	font-size: 14px;
}

#guarantees-penalties-component .guarantee-policy {
    border-bottom: 1px solid #EAEDF2;
    padding-bottom: 0;
}

#guarantees-penalties-component .hotel_offer_politica {
  font-weight: bold;
  font-size: 16px;
  color: #2C2F33;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

/* MEDIA QUERY FOR FOTORAMA ARROWS */
@media (min-width: 992px) and (max-width: 1300px) {

  #single-room-ajax .gallery-contain-left.gallery-contain-left-ajax{
    height: 235px;
    width: 100%;
    min-width: 510px !important;
    margin-right: unset;
  }

  #single-rateplan-ajax .gallery-contain-left.gallery-contain-left-ajax[data-is-package="false"] {
    height: 235px;
    width: 100%;
    min-width: 510px !important;
    max-width: 510px !important;
  }
}

@media screen and (max-width: 1279px) {
  .footer-container {
    max-width: 500px;
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-contact-info {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid #636363;
    padding-left: 0;
    border-left: 0;
  }

  .copyright-info, .footer-credits {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-credits .powered-by {
    font-size: 10px;
  }

  .omnibees-logo {
    height: unset;
  }

  #single-room-ajax .gallery-contain-left.gallery-contain-left-ajax{
    height: 235px;
    width: 100%;
    min-width: 510px !important;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .contain {
    max-width: 992px;
  }
  .card-alignment {
    margin: auto;
    padding-left: 0px;
  }

  .incentives_title {
    margin-left: 10px;
  }

  .header-search-bar .contain {
    max-width: calc(100% - 30px);
  }

   .header-search-bar .contain .row {
      align-items: center;
      justify-content: center;
  }

  .section2 #hotels  {
    width: 232px;
  }

  #advanced-search  {
    width: auto;
    margin-left: 0px;
    padding-left: 15px;
  }

  /*email icon and stars to be in the same row*/

  .icon-share__holder__rating  {
    margin-left : 0px;
    position: relative;
    top: -11px;
  }

  #hotel_stars  {
    min-width: 105px;
    width: 105px;
  }

  #single-rateplan-ajax .gallery-contain-left-ajax {
    margin-right: unset;
  }

}


@media (max-height: 830px) {
  #information-popup .modal-dialog.vertical .modal-content {
    max-height: 600px;
  }
}

@media (max-width: 992px) {

  .contain {
    max-width: 992px;
  }

  #index_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-see-all-button {
    display: block;
  }

  .desktop-see-all-button {
    display: none;
  }

  .title-holder hr, .card-title hr {
    display: none;
  }

  .title-holder {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 15px !important;
    margin-bottom: 0 !important;
    max-width: 500px;
    margin: auto;
  }

  .searchbar-fieldset .search-icon, .searchbar-fieldset .calendar-icon {
    left: 10px;
  }

  .searchbar-fieldset .calendar-icon {
    display: flex;
  }


  .hotel-search-wrap {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    z-index: 20;
    overflow: hidden;
    bottom:0px;
  }

  .hotel-search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    background: #ffffff;
}

  .hotel-search-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
  }

  .hotel-search-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--default-text-color, #2C2F33);
  }

  .mobile-search-close-button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

  .hotel-search-close-icon {
    line-height: 1;
  }

  .hotel-search-body {
    position: absolute;
    padding: 15px 15px 20px 15px;
    overflow: auto;
    top: 122px;
    bottom:0px;
    
}

  .hotel-search-container {
    display: flex;
    flex-direction: column;
  }

  .hotel-search-container div {
    padding: 15px 0;
  }

  .hotel-search-body #mobile-hotels {
    padding: 15px;
    width: 100%;
    border: 1px solid #2C2F33;
    border-radius: 2px;
    line-height: 1;
    margin-bottom: 20px !important;
  }

  .hotel-search-body #mobile-hotels:focus {
    outline: none;
  }

  .hotel-search-body .no-results {
    display: none;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #8C99AF;
    padding: 10px 20px;
    font-style: italic;
  }

  .hotel-search-body .all-hotels, .hotel-search-body .hotels-folder {
    font-weight: 500;
    line-height: 21px;
  }

  .hotel-search-body .hotel {
    font-size: 14px;
    line-height: 19px;
  }

  .hotel-search-field {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hotel-search-field .input-overlay {
    display: block;
    content: '';
    bottom: 18px;
    right: 50px;
  }

  .search-field-icon {
    position: absolute;
    left: 25px;
    pointer-events: none;
}

  .clear-search-field-icon {
    display: flex;
    position: absolute;
    right: 24px;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
  }

  .clear-search-field-icon.hidden {
    display: none;
  }

  .clear-search-field-icon-svg svg {
    width: 12px;
    height: 12px;
  }

  #mobile-hotels {
    width: 100%;
    min-height: 48px;
    height: auto;
    padding-left: 47px !important;
    margin-bottom: 0 !important;
    border: 1px solid #9c9c9c;
    border-radius: 2px;
    padding: 10px 12px;
    padding-right: 35px;
    background-image: none !important;
    text-indent: 1px;
    text-overflow: '';
    font-size: 14px;
    line-height: 1.21;
    letter-spacing: normal;
    color: var(--default-text-color, #2C2F33);
    outline: none;
  }

  #mobile-hotels:focus, #mobile-hotels:active, #mobile-hotels:focus-within {
    border: 1px solid #2C2F33;
  }
  
  #modal-payment-loader .text-container{
    padding: 0 20px 40px 20px;
  }
  .incorect-age-popup {
    display: none !important;
  }

  #modal-failed .modal-dialog {
      margin: 0 40px;
  }

  #children-not-allowed .d-flex {
    flex-direction: column;
  }

  #children-not-allowed .inner-content {
    display: flex;
    flex-direction: column;
  }

  #children-not-allowed .inner-content h5, #children-not-allowed .inner-content p {
    text-align: center;
  }

  #children-not-allowed .btn {
    float: unset;
    display: flex;
    margin: 20px auto 0 auto;
    justify-content: center;
  }

  #information-popup .modal-dialog {
    margin: auto;
  }

  #information-popup .modal-content {
    border-radius: 0;
  }

  #information-popup .close {
    background: #B2B1B0;
    border-radius: 50px;
  }

  #information-popup .modal-dialog.vertical .modal-content {
    height: unset;
  }

  #information-popup .modal-dialog {
    max-width: 500px;
  }

  .card-padding-width {
    padding: 0 !important;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .15);
    border-radius: 8px;
    background: #ffffff;
    border: unset;
}

  .mobile-card-row {
    padding: 20px 15px 30px 15px;
    gap: 0 15px;
  }

  .custom-card {
    flex-direction: column;
    max-height: unset;
    max-width: 256px;
  } 

  .card-title {
    font-size: 14px;
  }

  .mobile-see-all-button .see-all-button {
    background: transparent;
    border: none;
    border-radius: unset;
    font-size: 14px;
    padding: unset;
    color: #0092e4;
    text-transform: none;
    text-decoration: underline;
    margin-top: 0 !important;
    font-weight: 500;
  }

  .mobile-card-row {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .mobile-card-row::-webkit-scrollbar {
    display: none;
  }

  .mobile-card-row {
    -ms-overflow-style:none;
  }


  .card-text-desktop {
    display: none;
  }

  .card-text-mobile {
    display: block;
  }

  .card-holder {
    padding: 0;
  }

  .title-holder {
    padding: 0;
  }

  .error-div{
    width:100%;
  }

  .contain-sides-padding{
    padding-left:10px;
    padding-right:10px;
  }
  
  .checkbox-custom-label {
    color: white;
  }

  .incentives_title {
    margin-left: 0px;
    font-size: 22px;
  }
  

  .checkbox-custom-label:before {  
    background-color:#FFFFFF;
    border: 2px solid #b9c2d3; 
  }

  .filter_header p {
    display:none;
  }


  .row {
    margin-left: 0px;
    margin-right: 0px;
  }

  .breadcrumb {
    display: none;
    padding-left: 15px;
  }

  /* css for mobile scrolling through cards */
  .card-padding-width {
    min-width: 276px;
  }

  #incentives .card-padding-width {
    flex: 0 0 85.1%;
    max-width: 500px;
  }

  .card-alignment {
    flex-wrap: wrap;
    padding-left: 15px;
  }

  .card-title-alignment {
    padding-left: 0px;
    margin-bottom: 0 !important;
    font-size: 22px !important;
    line-height: 26px !important;
  }

  .breadcrumb {
    display: none;
  }

  .room-image-container {
    max-height: 182px;
    width: 100%;
    border-radius: 4px 4px 0px 0px;
  }

  .mobile-galery {
    display: block;
  }

  /* Adjustments for modals */

  #modal-room{
    padding-right: unset;
  }

  #single-room-ajax .single-room-content,
  #room-landing-page .single-room-content {
    display: flex;
    flex-direction: column;
  }

  #single-rateplan-ajax .mobile-galery{
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  #single-room-ajax .gallery-contain-left.gallery-contain-left-ajax{
    height: 235px;
    width: 100%;
    min-width: unset !important;
  }

  #single-rateplan-ajax .gallery-contain-left.gallery-contain-left-ajax{
    height: 235px;
    width: 100%;
    min-width: unset !important;
    max-width: unset !important;
  }

  #singlerate-landing-page.hotel-image-container{
    height: 235px;
    width: 100%;
    min-width: unset !important;
    max-width: unset !important;
  }

  #single-rateplan-ajax .rateplan-book{
    margin-top: unset;
    width: 100%;
  }

  #single-rateplan-ajax #guarantees-penalties-component {
    margin: 0 20px;
  }

  .close_icon {
    width: 20px!important;
    height: 20px!important;
  }

  .gallery-popup-container {
    margin: 0;
  }



  .col-paddless {
    padding-left: 0;
    padding-right: 0;
  }

  .load-wrapp {
    height: 194px;
    padding-top: 0px;
  }

  /* Tooltips disabled for phone and tablet */

  .t-tip__next:hover + .t-tip {
    display: none;
  }

  .t-tip__in:hover  .t-tip{ 
    display: none;
  }


  #map-modal {
    height: 100vh!important;
    width: unset!important;
  }

  .map-phone-container {
    margin: 0;
  }

  .map-button-desktop {
    display: none;
  }

  .map-modal-elipse {
    background: #B2B1B0;
    position: fixed;
    top: 19px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 10;
  }

  .responsive_close_icon {
    width: 17px!important;
    height: 17px!important;
  }

  #room-modal {
    min-width: 300px;
    background-color: #fff;
    min-height: 100vh;
  }
  #single-rateplan-ajax.container {
    min-height: 100vh;
    padding: 16px 0 0;
  }
  .rateplan-dialog-ajax {
    margin: 0;
  }

  .modal-dialog {
    max-width: unset;
  }

  #session-expired .modal-dialog {
    margin: 0px;
  }

  .contain-hotel {
    margin-top: 0px;
    background: #ffffff;
    padding: 15px;
    width: unset;
  }

  .section3 {
    padding-top: 20px;
    /*background: #EAEDF2;*/
  }

  .icon-share__review__phone {
    display: none;
    float: right;
    margin-right: 0px!important;
  }

  .icon-share__link__text__phone {
    right: 5px!important;
  }

  .TA_selfserveprop {
    right: 0px;
    top: 41px;
    z-index: 6;
  }

  .image-placeholder {
    height: 250px;
  }

  .single_hotel_search_bar #calendar_dates, .single_hotel_search_bar #guests {
    width: 100%;
  }

  .modal-open .modal {
    /*padding: 0px 39px 0px 40px;*/
    padding: 0px !important;
  }

  .modal-content {
    width: 100%;
    border: unset;
  }

  #session-expired .modal-content {
    margin: 0px 20px;
  }

  .modal_session_top {
    padding: 20px 80px 20px 0px;
    text-align: center;
  }

  .modal_session_top img {
    width: 215px;
    height: 116px;
  }

  .modal_session_bottom {
    padding: 20px 25px 20px 26px;
  }

  .modal_session_title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .modal_session_text {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 19px;
  }

  .modal_session_button {
    width: 236px;
    height: 45px;
    padding: unset;
  }

  .error_message_holder {
    padding: 10px 20px;
  }



  /* NEXT PAGE LOADER */

  .next-step-loader {
    position: relative;
    display: none;
    justify-content: center;
    top: 171px;
  }

  .gooey {
    position: absolute;
    /*top: 100px;*/
    /*left: 50%;*/
    width: 142px;
    height: 40px;
    background: #fff;
    filter: contrast(20);
  }

  .gooey-modal {
    left: calc(50% - 80px);
  }

  #room-modal .search-loading-message {
    display: none;
  }

  #room-modal .gooey {
    left: calc(50% - 82px);
    top: 50%;
  }

  .image-step2-mobile .gooey-modal {
    display: none;
  }

  .gooey .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 2.8s infinite;
    margin-top: 0px;
  }

  .gooey .dots {
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: dots 2.8s infinite;
  }
  .gooey .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 18px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
  }

  .search-loading-message {
    color: #273240;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    margin-top: 20px;
    line-height: 22px;
  }

  @-moz-keyframes dot {
    50% {
      transform: translateX(96px);
    }
  }
  @-webkit-keyframes dot {
    50% {
      transform: translateX(96px);
    }
  }
  @-o-keyframes dot {
    50% {
      transform: translateX(96px);
    }
  }
  @keyframes dot {
    50% {
      transform: translateX(96px);
    }
  }
  @-moz-keyframes dots {
    50% {
      transform: translateX(-31px);
    }
  }
  @-webkit-keyframes dots {
    50% {
      transform: translateX(-31px);
    }
  }
  @-o-keyframes dots {
    50% {
      transform: translateX(-31px);
    }
  }
  @keyframes dots {
    50% {
      transform: translateX(-31px);
    }
  }


  .partial-payments-modal {
    min-width: 200px;
  }
  
  #partial-payments-info {
    padding: 22px 20px 20px 20px;
    min-width: 200px;
  }
  
  .partial-payments-header {
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
    color: #273240;
    padding-bottom: 3px;
  }
  
  .partial-payment-group {
    padding-top: 30px;
  }
  
  .partial-payment-group-text {
    font-size: 11px;
    line-height: 14px;
    font-weight: 400;
    color: #273240;
    display: flex;
    align-items: baseline;
  }
  
  .partial-payment-group-green-text {
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    color: #53AC2A;
    margin-right: 10px;
  }

  body.search_bar_open {
    overflow: hidden;
    height: 100vh;
  }

  #singlerate-landing-page.hotel-image-container{
    height: 235px;
  }

  #room-modal{
    border-radius: unset; 
  }

  #modal-room .modal-dialog{
    margin: unset;
    padding: unset;
  }

  #room-modal #single-room-ajax.container{
    height: 100%;
    width: 100%;
    max-width: unset;
  }

  #single-room-ajax .single-room-body{
    height: 94%;
    width: 100%;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  #single-room-ajax .gallery-contain-left.gallery-contain-left-ajax {
    max-width: unset !important;
  }

  #room-main-amenities .main-amenities-room{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: unset;
    justify-content: center;
    padding: 20px 20px !important;
    margin-top: unset;
    flex: 1 1 45%;
  }
  
  #room-main-amenities .amenities-room-icons{
    flex-direction: row;
    width: 100%;
    height: 24px;
    text-align: left;
    background-color: unset;
    gap: 10px;

  }
  
  #room-main-amenities .amenity-room{
    margin: unset !important;
    width: 24px;
    height: 24px;
    margin: unset;
  }
  
  #room-main-amenities .amenity-room-name{
    font: 400 12px/14.06px 'Roboto', sans-serif;
    margin-bottom: unset;
  }
  
  #room-modal #single-room-ajax.container{
    padding:unset;
  }

  .single-room-header{
    padding: 20px 15px;
    margin-bottom: unset;
  }

  #room-main-amenities .view-bed-type{
    padding-bottom: 15px !important;
    gap: unset;
  }

  #room-main-amenities .amenities-header{
    font: 700 16px/18.75px 'Roboto', sans-serif;
    margin: 10px 20px 0px 20px;
  }

  #room-modal-header-mobile.room-modal-title{
    font: 400 20px/23.44px 'Roboto', sans-serif;
  }

  #single-room-ajax.room-modal-title{
    font: 700 20px/23.44px 'Roboto', sans-serif;
  }

  #single-room-ajax #room-name-share{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  #amenities-component.amenity-group-wrap{
    padding-top: unset;
    margin: unset;
    width: 100%;
  }

  #amenities-component .amenity-items{
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding-top: 20px;
  }

  #amenities-component .amenity-group{
    margin-bottom:unset !important;  
  }

  #amenities-component .amenity-group-single{
    border-bottom: solid 1px #e6e6e6;
    padding: 20px 0px;
  }

  #amenities-component .amenity-category{
    margin-bottom:unset;
  }

  #amenities-component .amenity-item{
    font: 400 14px/16.41px 'Roboto', sans-serif;
  }

  #single-room-ajax .single-room-content, 
  #room-landing-page .single-room-content{
    gap: 20px;
  }

  #room-landing-page .room-info,
  #single-room-ajax .room-info{
    padding: 0px 20px 20px 20px !important;
  }

  #single-room-ajax{
    position:relative;
  }

  #single-room-ajax .single-room-header{
    position:fixed;
    background-color: #fff;
    width: 100%;
    z-index: 1000;
  }

  #single-room-ajax .single-room-body{
    padding-top: 66.5px;
  }

  #single-room-ajax .room-modal-title{
    margin-bottom: unset;
  }

  #amenities-component-holder{
    padding: 0px 20px;
  }

  #room-technical-info.view-icons{
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: unset;
  }

  #guarantees-penalties-component .policy-title {
    background-image: url(/icons/arrow_v4.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    background-origin: content-box;
    cursor: pointer;
  }

#guarantees-penalties-component .policy-description {
    display: none;
  }


#guarantees-penalties-component .guarantee-policy:last-child {
    border-bottom: 1px solid #EAEDF2;
    padding-bottom: 0;
}

  #amenities-component .amenity-group-single:last-child {
    border-bottom: solid 1px #e6e6e6;
  }

  #guarantees-penalties-component .policy-description {
    display: none;
  }

  #guarantees-penalties-component .policy-title {
    background-image: url(/icons/arrow_v4.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    background-origin: content-box;
    cursor: pointer;
  }

  #guarantees-penalties-component .guarantee-policy:last-child {
    padding-bottom: 10px;
  }

  #guarantees-penalties-component .hotel_offer_politica {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    padding-right: 20px;
  }

  .see-more-views-tooltip{
    left: -15px
  }

}

@media (max-width: 576px) {
  
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }

  .contain {
    max-width: 576px;
  }

  .mobile-galery {
    display: block
  }

  /* css for mobile scrolling through cards */
  .card-padding-width {
    min-width: 276px;
  }

  #search-input {
    min-width:290px; 
  }

  .icon-share__holder__rating {
    margin-left: 0px;
  }

  .icon-share__link__text {
    right: 24px;
  }

  .contain-hotel {
    max-width: 576px;
    width: auto;
    margin: 0px 10px;
    padding: 15px 15px;
    background-color: #ffffff;
  }

  .icon-share__link {
    margin: 0px;
  }

  .icon-share__review__text {
    display: none;
  }

  #rateplan-modal {
    min-width: 300px;
    height: 90vh;
  }

  #modal-failed .cancel-popup__contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 30px 30px;
  }

  #modal-failed a.try-again-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cancel-popup__holder {
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0px;
  }

  .cancel-popup__header {
    text-align: center;
    margin-bottom: 10px;
  }

  .cancel-popup__description {
    text-align: center;
  }

  .cancel-popup__buttons  {
    flex-direction: column;
    margin-top: 20px;
  }

  .cancel-popup-button {
    margin-left: 0px;
    margin-top: 20px;
  }

  .dates {
    font-size: 11px!important;
  }

  .hotel-image-container{
		border-radius: 0px !important
	}

	.default-desktop-image-gallery.be-slide{
		border-radius: 0px !important
	}

	.be-slider.default-desktop-image-gallery{
		border-radius: 0px !important
	}

	.be-slide:not(.gallery-grid img){
		border-radius: 0px !important
	}

	img.loaded:not(.gallery-grid img):not(.room-image-container){
		border-radius: 0px !important
	}

  /* Modal ajax room rate package modal to remove padding from image*/

  .popup-mobile-info{
    padding: 0px 15px;
  }

  #single-room-ajax .popup-mobile-info{
    padding: unset;
  }
  /* LP infos */
  .offer_guarantees_penalties {
		padding: 0px 15px;
	}

  #room-technical-info .view-bed-type{
    padding-bottom: 15px !important;
    gap: unset;
    padding-right: 10px;
  }

}


@media screen and (max-width: 400px) {
  .copyright-info, .footer-contact-info {
    display: flex;
    flex-direction: column;
  }
}
