.flex   { display: flex;  }
.fd-c   { flex-direction: column; }
.ai-c   { align-items: center;  }
.fd-rr  { flex-direction: row-reverse; }
.jc-sb  { justify-content: space-between; }
.jc-e   { justify-content: flex-end; }
.jc-s   { justify-content: flex-start; }

ul { list-style: none; padding: 0;}
.vs_checkBox {
    cursor: pointer;
    width: 100%;
}
.vs_checkBox *{
  box-sizing: border-box;
}
.vs_checkBox .vs_round:before, .vs_checkBox .vs_block:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 50%;
}
.lSSlideOuter { direction: ltr; }
.vs_checkBox .vs_block:before {
  border-radius: 3px;
  background: #FFFFFF;
}

.vs_checkBox .vs_round, .vs_checkBox .vs_block {
  color: #555;
  font-family: Montserrat,  sans-serif;
  position: relative;
  border-radius: 15px 0px 0px 15px;
  display: block;
  padding: 4px;
  padding-right: 36px;
  background: #FFFFFF;
  border-radius: 4px;
  line-height: 20px;
  text-align: right;
}

.vs_checkBox .vs_block {
  color: #fff;
  background: transparent;
}

.vs_round p{ margin: 0; }
.vs_checkBox input:checked + .vs_round:before {
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
}

.vs_checkBox input:checked + .vs_block:before {
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 130%;
    background-color: #000;
}


.vs_checkBox input:checked + .vs_round { 
  color: white;
  background: #343434;
  border: 1px solid #000000;
  box-sizing: border-box;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

/*---------------*/
.sw_wrap_prices {
  direction: rtl;
  margin: 10px -10px;
  flex-wrap: wrap;
 /*justify-content: space-around;*/
}
.sw_wrap_prices .sw_btns {
  margin: auto 0;
}
.sw_wrap_prices .sw_btns button {
  padding: 9px 15px;
  color: white;
  width: 115px;
}

.price_sett { text-align: right; }
.price_title, .price_val span { font-weight: bold; }
.card_price {
  width: calc(33% - 17px);
  margin: 10px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 15px;
  color: black;
}
.sw_popup {  display: none;  }

.banner-content .sw_container { 
  width: 100%; 
  max-width: 960px; 
  margin: 10px auto 0;
  opacity: 0;
}
.banner-content .sw_container.active {opacity: 1;} 
.sw_booking {
  display: block;
  position: relative;
  margin-top: 50px;
}
.sw_tabs {
  list-style: none;
  display: flex;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid white;
  flex-direction: row-reverse;
}
.sw_tabs li a {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: white;
  border-bottom: 10px solid transparent;
  padding: 0 30px;
}
.sw_tabs li a.sw_active, .sw_tabs li a:hover {
  border-bottom: 10px solid white;
}
.sw_rooms {
  position: relative;
  /*height: 150px;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.sw_to_mobile .vs_checkBox, .sw_from_mobile .vs_checkBox {
  color: black;
  border-bottom: 1px solid #ccc;
  margin: 5px 20px;
  padding-bottom: 5px;
  width: auto;
}
.sw_to_mobile .vs_checkBox:nth-last-child(1), .sw_from_mobile .vs_checkBox:nth-last-child(1) { border-bottom: none; }
.list_select .list {
  overflow: scroll;
  max-height: calc(100vh - 270px);
}
.sw_rooms .sw_room {
  position: relative;
  height: 100px;
  border-radius: 6px;
  border: 2px solid white;
  width: 24%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.sw_rooms .sw_room:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.sw_rooms .sw_room.sw_active { color: #000; }
.sw_rooms .sw_room.sw_active:before { background: white; }
.sw_rooms .sw_room span{ 
  position: relative;  
}
.sw_content:not(.sw_wrap_prices) {
  position: relative;
  border-radius: 6px;
  margin-top: 20px;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.6);
}
.sw_flex {
  display: flex;
  justify-content: space-between;
  padding: 25px 30px;
  flex-direction: row-reverse;
}
.sw_flex > div { border-right: 1px solid #fff; }
.sw_flex > div:nth-last-child(1) { border: none }
.sw_flex .sw_rooms {
  width: 40%;
  display: block;
  text-align: right;
  padding-right: 30px;

}
#sw_form { padding: 30px; }
.room_list {
  width: 40%;
  padding-right: 30px;
  border-right: 1px solid #fff;
}
.room_list li {
  width: 100%;
  margin: 2px 0;
  
}

.room_list ul {
  max-height: 300px;
  overflow-y: auto;
  padding-left: 5px;
  margin-left: -5px;
}

.sw_room_price {
  font-weight: 700;
}
.sw_content .h4 {
  font-size: 20px;
  line-height: 19px;
  direction: rtl;
  text-align: right;
}
.sw_data {
  padding: 0 30px;
  width: 30%;
  border-right: 1px solid #fff;
}
.sw_data label {
  display: block;
  width: 100%;
  text-align: right;
  padding: 5px 0;
  direction: rtl;
}
.sw_data select {
  width: 100%;
  height: 26px;
  background: white;
  border: 1px solid black;
  border-radius: 4px;
  color: black !important;
}
.sw_data .vs_checkBox, .sw_calendar .vs_checkBox{ width:  max-content }

.hero-banner .banner-bg , .hero-banner , .hero-banner .bg-video { height: 100vh; min-height: 1050px}

.sw_calendar {
  width: 35%;
}

.sw_calendar .event-container {
  padding: 0;
}
.sw_calendar .close {
  right: 7px;
  top: 7px;
  width: 15px;
  height: 15px;
}
.sw_calendar .event {
  background: transparent;
}
.sw_seldate {
  text-align: right; 
}
.sw_checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
}
.sw_checkbox label input {
  border: 1px solid black;
  border-radius: 4px;
  font-weight: normal;
  margin: 0 10px;
}
.sw_btns {
  margin: 15px auto;
  width: max-content;
}
.sw_content button {
  background: #000000;
  border: 1px solid #FFFFFF;
  box-shadow: 0 0 1px 1px #000;
  box-sizing: border-box;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  padding: 9px 50px;
}
.sw_datepicker {
  padding-left: 30px;
}

.calendar   { direction: ltr; }
.calendar header  { direction: rtl; }
.calendar .month  {
  display: flex;
  text-align: right;
  font-size: 24px !important;
}
.calendar .year { font-size: 26px !important; margin-top: -2px;}
.calendar .day {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 3px;
  line-height: normal;
  color: black;
}
.calendar table { 
  margin: 0 -10px 20px;
  width: calc(100% + 20px);
  border-spacing: 10px;
  border-collapse: initial;
}
.calendar .day.pastDay {
    color: #CBD1D2;
}
.calendar td { padding: 2px 0; }
.calendar thead td { color: white }
.calendar tr td:last-child .day  { background-color: #9f9f9f; color:#CBD1D2 }
.calendar .day.has-event:after {
    content: '';
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: black;
    color: black;
}

.calendar .day.today {
  background: #9f9f9f;
  border-color: #9f9f9f;
  color: white;
}
.calendar .day.active, .calendar .day.today.active  {
  background: black;
  border-color: black;
  color: white;
}

.calendar .simple-calendar-btn.btn-next {
  right: auto;
  left: 40px;
}
.hero-banner .banner-content {
  top: 110px !important;
}
/*.banner-content, .hero-banner { height: 100vh; }*/
.banner-content .sw_fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: none;
  flex-direction: column;
  justify-content: center;
}
.banner-content  .sw_fade.active {display: flex;}
.sw_popup { 
  width: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -25%;
  z-index: 9999;
  background: white; 
  text-align: center;
  padding: 30px 0;
  display: none;
  border-radius: 16px;
}
.sw_popup .h1 {
  font-size: 36px;
  display: block;
}
.sw_close {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #f1f1f1;
  border-radius: 4px;
  position: absolute;
  z-index: 10000;
  top: 15px;
  right: 15px;
}
.vs_select .h4_select, .title-list_select {
  color: white;
  direction: rtl;
  text-align: right;
  margin: 5px;
  font-weight: normal;
}
.vs_select .vs_block, .vs_select .month, .vs_select .year {
  color: black;
}
.vs_select .sw_datepicker { padding: 0; }
.title_select > .option { color: black; margin: 0;}
.title_select {
  position: relative;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid black;
  color: black;
  text-align: right;
}
.title_select:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url(../images/arrow_select.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.list_select .title-list_select {  
  font-weight: bold;
  color: black;
  direction: rtl;
  text-align: right;
  margin-right: 10px;
}

.list_select .close-list_select {  
  position: absolute;
  left: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
  color: #555;
  font-size: 30px;
  line-height: 12px;
}

.list_select {  
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 280px;
  max-height: calc(100vh - 200px);
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px 0px #000;
  z-index: 1000;
} 


.list_select .vs_checkBox input:checked + .vs_round:before {
  background-image: url(../images/check_black.svg);
}
.list_select .vs_checkBox input:checked + .vs_round { 
  color: #555;
  background: white;
  border: none;
  box-sizing: border-box;
  box-shadow: none;
}
.vs_select_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vh;
  height: 100vh;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.sw_btns_mobile { margin-top: 15px; }
.sw_btns_mobile button {
  background: #fff;
  color: black;
  border: 1px solid #000;
  box-shadow: 0 0 1px 1px #fff;
  box-sizing: border-box;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  padding: 9px 50px;
}
  
.calendar .event-container .close {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 7px;
  right: 7px;
  cursor: pointer;
  z-index: 1;
}
.calendar .event-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 5px;
  height: auto;
  background: #343434;
  border: 1px solid #000000;
  box-shadow: 0px 4px 12px rgb(0 0 0 / 25%);
}
.calendar .event-container .event-date, .calendar .event-container .event-hour { display: none; }
.calendar .event-container .event {
  background: transparent;
  margin: 0;
  padding: 10px;
}
.sw_calendar_mobile.sw_calendar {
  width: auto;
} 
.sw_content_mobile, .sw_rooms_mobile, .sw_tabs_mobile, .sw_calendar_mobile, .sw_dates_mobile, .sw_btns_mobile , .sw_from_mobile, .sw_to_mobile  { display: none; }
.room_not_found {
  color: black;
  font-size: 18px;
  font-weight: bold;
}
.lSAction > a {
  border: 2px solid #9c9c9c;
  border-radius: 50%;
}
.lSPager  a { background-color: #9c9c9c !important; }
.lSPager .active a { background-color: #fff !important; }
.lSAction > a { transform: scale(1.3); }
.lSAction > .lSPrev { transform: scale(1.3) rotate(-180deg); }
.lSAction > a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 9px;
    width: 8px;
    height: 8px;
    color: #9c9c9c;
    border-style: solid;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg);
    transform-origin: center center;
}


@media (min-width: 768px) {
  #nav .primary-menu > li > a { flex-wrap: nowrap; white-space: nowrap; }
}

@media (min-width: 1200px) {
  #nav .primary-menu li { margin-right: 20px !important; }
}


@media only screen and (max-width: 430px) {
  .calendar thead td { color: black }
  .sw_content:not(.sw_wrap_prices), .sw_rooms, .sw_tabs, .lSSlideOuter { display: none; }
  .sw_content_mobile, .sw_rooms_mobile, .sw_tabs_mobile, .sw_calendar_mobile, .sw_btns_mobile, .sw_from_mobile, .sw_to_mobile  { display: block; }
  .sw_container { margin-top: -50px; }
  .card_price { width: 100%; }
}
.vs_checkBox .vs_round  { position: relative; }
.room_img {
    width: 65px;
    height: 65px;
    float: left;
    object-fit: cover;
    position: relative;
}

.span_room_img {
  position:relative;
  display: inline-block;
  float: left;
}

.span_room_img::before {
  position: absolute;
  left: 0;
  width: 65px;
  height: 65px;
  background: #000;
  opacity: .3;
  content: '';
  z-index: 1;
}

.span_room_img::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' xmlns:xlink='http://www.w3.org/1999/xlink' enable-background='new 0 0 32 32' id='Glyph' version='1.1' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M27.414,24.586l-5.077-5.077C23.386,17.928,24,16.035,24,14c0-5.514-4.486-10-10-10S4,8.486,4,14 s4.486,10,10,10c2.035,0,3.928-0.614,5.509-1.663l5.077,5.077c0.78,0.781,2.048,0.781,2.828,0 C28.195,26.633,28.195,25.367,27.414,24.586z M7,14c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7S7,17.86,7,14z' id='XMLID_223_'/%3E%3C/svg%3E");
  content: '';
  z-index: 2;
} 
.title_select .span_room_img { display: none }


/* The Modal (background) */
.is_modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.is_modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.is_modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.m_close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.m_close:hover,
.m_close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .is_modal-content {
    width: 100%;
  }
}