/* ================================================================================================================== */
/* Main CSS Adjustments
/* ================================================================================================================== */

body {
  background-color: #f9f9f9;
}

.navbar {
  box-shadow: rgba(0, 0, 0, 0.16) 2px 3px 20px 0px!important;
}

/* Custom tooltip */

.tooltips {
  position: relative;
  display: inline;
}

.tooltips span {
  font-size: 12px !important;
  font-family: "Nunito Sans" !important;
  position: absolute;
  color: #FFFFFF !important;
  background: #95c0e3;
  padding:10px 10px;
  width:200px;
  text-align: center;
  visibility: hidden;
  border-radius: 13px;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: transform .3s, opacity .6s, margin-left .2s, margin-top .2s;
}

.tooltips > span img{max-width:140px;}

.tooltips[tooltip-position="top"] span{
  margin-left:10px;
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.tooltips[tooltip-position="bottom"] span{
  -ms-transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.tooltips[tooltip-position="left"] span{
  margin-top:30px;
  -ms-transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.tooltips[tooltip-position="right"] span{
  margin-top:30px;
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.tooltips span:after {
  content: '';
  position: absolute;
  width: 0; height: 0;
}

.tooltips[tooltip-position="top"] span:after{
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-top: 8px solid #95c0e3;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.tooltips[tooltip-position="bottom"] span:after{
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  border-bottom: 8px solid #95c0e3;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.tooltips[tooltip-position="left"] span:after{
  top: 50%;
  left: 100%;
  margin-top: -8px;
  border-left: 8px solid #95c0e3;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.tooltips[tooltip-position="right"] span:after{
  top: 50%;
  right: 100%;
  margin-top: -8px;
  border-right: 8px solid #95c0e3;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.tooltips:hover span {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  filter: alpha(opacity=100);
}

.tooltips .price-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: fit-content;
  margin: 0 auto;
}

.tooltips.price-tootlips span {
  width: 135px;
}

.tooltips[tooltip-position="top"]:hover span{
  bottom: 30px;
  left: 50%;
  margin-left: -100px;
}

.tooltips[tooltip-position="bottom"]:hover span{
  top: 30px;
  left: 50%;
  margin-left: -100px;
}

.tooltips.price-tootlips[tooltip-position="top"]:hover span{
  bottom: 30px;
  left: 50%;
  margin-left: -68px;
}

.tooltips.price-tootlips[tooltip-position="bottom"]:hover span{
  top: 30px;
  left: 50%;
  margin-left: -68px;
}


.tooltips[tooltip-position="left"]:hover span{
  right: 100%;
  top: 50%;
  margin-top: -15px;
  margin-right: 15px;
}

.tooltips[tooltip-position="right"]:hover span{
  left: 100%;
  top: 10%;
  margin-top: -15px;
  margin-left: 15px;
}

/* Calendar custom css */

.fullday-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 !important;
}

.fullday-switch-checkbox {
  display: flex;
  align-items: center;
}

.fullday-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fullday-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0f0f0;
  box-shadow: inset 4px 4px 5px 0 rgb(0,0,0,0.15);
  -webkit-transition: .4s;
  transition: .4s;
}

.fullday-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  -webkit-transition: .4s;
  transition: .4s;
}

.fullday-switch input:checked + .slider {
  background-color: #187AED;
}

.fullday-switch input:focus + .slider {
  box-shadow: 0 0 1px #187AED;
}

.fullday-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.fullday-switch .slider.round {
  border-radius: 34px;
}

.fullday-switch .slider.round:before {
  border-radius: 50%;
}

.mobile-bookspace {
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
  position: relative;
  margin-top: -30px;
  box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.16);
}

.photo-wrapper {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 2px 2px 12px 0px rgba(0,0,0,0.16);
}

.photo-grid {
  display: grid;
  gap: 10px;
}

.photo-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.photo-grid-3 {
  grid-template-columns: 50% 25% 25%;
}


.photo-grid-5,
.photo-grid-4 {
  grid-template-columns: 50% 25% 25%;
  grid-auto-rows: 50% 50%;
}

.photo-grid-5 > a:nth-child(1),
.photo-grid-4 > a:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.photo-grid-4 > a:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.photo-grid-5 > a:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.photo-grid-5 > a:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.photo-grid-5 > a:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.photo-grid-5 > a:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.photo-grid-4 > a:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.photo-grid-4 > a:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.photo-wrapper img:hover {
  transform: scale(1.01);
}

.title-section .container,
.photos-section .container,
.room-detail-content .container {
  width: 100%;
  max-width: 1300px;
}

.room-card {
  padding: 32px 40px;
  border-radius: 24px;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.16);
  background-color: white;
  position: relative;
}

.room-features {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-features li {
  list-style: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.room-features li:first {
  justify-content: space-between;
}

.room-features li:first-child span.instrument {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
  flex: 1;
}

.room-features .room-features__icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  margin-right: 8px;
  margin-bottom: 4px;
}

.room-features .room-features__icon img {
  width: 70%;
}

.photos-section .show-btn,
.room-features .room-features__more {
  white-space: nowrap;
  background-color: white;
  color: #0777e9;
  border: 1px solid #0777e9;
  margin: 0;
  text-transform: capitalize;
  padding: 0.4em 1em;
  cursor: pointer;
}

#photoModal .modal-content {
  background-color: transparent;
}

#photoModal .modal-header {
  position: absolute;
  right: 0;
  z-index: 11;
}

#photoModal .modal-header button{
  background-color: white;
}

#photoModal .modal-dialog {
  width: 100%;
  max-width: 1000px;
}

#photoModal .modal-body{
  height: 550px;
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
}

.photos-section .show-all-btn {
  position: absolute;
  bottom: 20px;
  right: 35px;
  font-size: 14px;
  height: 30px;
  padding: 0px 16px;
  cursor: pointer;
  z-index: 100;
}

.room-user-info {
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: space-between;
}

.room-user-info > div {
  display: flex;
  align-items: center;
}

.room-user-info > div #professional-icon {
  margin-left: 10px;
  margin-bottom: 4px;
}

.room-user-info a:hover {
  color: var(--BlueDark);
}

.room-user-info__avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid var(--White);
  margin-right: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.24);
}

.top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 16px;
  flex-wrap: wrap;
}

.top-info .sharing-icons,
.top-info a {
  border-radius: 24px;
  box-shadow: 2px 2px 10px 0 rgb(0, 0, 0, 0.12);
  border: solid 0.5px #efefef;
  color: black;
  font-size: 15px;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  position: relative;
  top: 0;
  left: 0;
  height: 40px;
  transition: 300ms all ease;
  padding: 10px 24px;
}

.top-info .review-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  padding: unset;
}

.top-info .star {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3px;
}

.top-info .sharing-icons,
.top-info a:hover {
  background-color: var(--WhiteDark);
}

.top-info .top-instruments {
  max-width: 550px;
  display: flex;
}

.top-info .right-buttons {
  position: relative;
  padding-right: 55px;
}

.top-info .right-buttons.disabled a,
.top-info .right-buttons.disabled .sharing-icons {
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.3;
  background-color: #c6c5c5;
}

.top-info .left-wrapper {
  display: flex;
  gap: 20px;
}

.top-info .right-wrapper {
  display: flex;
}

.top-info a.top-info__country {
  display: flex;
  padding: 0px 24px;
}

.top-info a.top-info__country  i {
  width: 20px;
  height: 18px;
  background-size: cover;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
}

.top-info a.top-info__country.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: #efefef;
  color: #c9c9c9;
}

.top-info a.top-info__country.disabled i {
  opacity: 0.3;
}

.top-info a.top-info__country p {
  margin-bottom: 0px;
}

.top-info a .rating-container {
  position: relative;
}

.room-modal {
  border-radius: 25px;
  overflow: hidden;
  display: none;
  align-items: center;
}

.room-modal .modal-dialog {
  top: 40% !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}


#bookingModal .modal-dialog {
  top: 0 !important;
  -ms-transform: translate(0,0) !important;
  transform: translate(0,0) !important;
}

#bookingModal .modal-dialog .modal-body {
  padding: 20px;
  padding-top: 0;
}

#bookingModal .room-detail-right {
  padding: 0;
  margin: 0;
}

.datepicker-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dededec4;
  z-index: 9999999;
  display: none;
}

.price-and-date {
  font-weight: 600;
  font-size: 16px;
}

.room-modal .modal-content {
  padding-top: 0;
  border-radius: 25px;
  overflow: hidden;
}

.room-modal .modal-content p {
  padding: 0;
  font-size: 16px;
}

.room-modal .modal-content .modal-body {
  padding-top: 0;
}

.room-modal .modal-header {
  border-bottom: none;
}

.room-modal .modal-header .close {
  width: 33px;
  height: 33px;
  border: solid 0.8px #187ae5;
  color: #187ae5;
  border-radius: 50%;
  opacity: 1 !important;
}

.sharing-icons {
  position: absolute !important;
  right: 0;
  top: 0;
  left: auto !important;
  width: 42px;
  padding: 0 !important;
  overflow: hidden;
  display: flex !important;
  justify-content: space-between !important;
  transition: 0.3s all;
  flex-wrap: wrap;
  z-index: 12;
  justify-content: flex-start !important;
}

.sharing-icons a,
.sharing-icons button {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center;
  margin: 0 !important;
  justify-content: center;
  padding: 0 !important;
  transition: 0.3s all;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  opacity: 0;
  z-index: 0;
  box-shadow: none !important;
}

.sharing-icons a img,
.sharing-icons button img {
  width: 48%;
}

.sharing-icons .bg-linkedin:hover {
  box-shadow: 1px 4px 9px 0px #0000008f;
  background-color: #017ab9;
}

.sharing-icons .bg-reddit:hover {
  box-shadow: 1px 4px 9px 0px #0000008f;
  background-color: #ff4500;
}

.sharing-icons .bg-email:hover {
  box-shadow: 1px 4px 9px 0px #0000008f;
  background-color: #f04726;
}

.sharing-icons .bg-whatsapp:hover {
  box-shadow: 1px 4px 9px 0px #0000008f;
  background-color: #24d366;
}

.sharing-icons .bg-twitter:hover {
  box-shadow: 1px 4px 9px 0px #0000008f;
  background-color: #1ca1f1;
}

.sharing-icons .bg-facebook:hover {
  box-shadow: 1px 4px 9px 0px #0000008f;
  background-color: #3478eb;
}

.sharing-icons input {
  display: none;
}

.sharing-icons .toggle-button {
  padding: 3px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  right: 0;
  width: 40px;
  height: 40px;
  top: 0;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s all;
  background-color: var(--White);
}

.sharing-icons .toggle-button:hover {
  background-color : var(--WhiteDark);
}

.sharing-icons .toggle-button .material-symbols-outlined {
  font-size: 22px;
}

.sharing-icons.opened .toggle-button svg {
  fill: white;
}

.sharing-icons.opened {
  width: 323px;
  max-width: 88vw;
  padding-right: 50px;
  background-color: #95c0e3;
}

.sharing-icons.opened a,
.sharing-icons.opened button {
  opacity: 1;
}

#mapModal .modal-body #map {
  min-height: 400px;
}

#mapModal .modal-body,
#reviewModal .modal-body {
  padding-right: 30px !important;
}

#review-list-carousel .room-detail-review-card {
  padding: 10px 65px 30px 65px !important;
}

#review-list-carousel .slick-prev {
  left: 0;
}

#review-list-carousel .slick-next {
  right: 0;
}

#review-list-carousel .review-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #187ae5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#review-list-carousel .review-btn.next img {
  transform: rotateZ(180deg);
}

#review-list-carousel .review-btn img {
  width: 35%;
}

#review-list-carousel .review-btn::before {
  display: none;
}

.back-to-search-link{
  text-transform: uppercase;
  color: rgba(0,0,0,0.36);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-right: 16px;
  line-height: 10px;
}
.back-to-search-link i{
  margin-right: 5px;
  font-size: 18px;
  max-width: 18px;
  vertical-align: bottom;
  margin-bottom: -2px;
}
.room-nav-buttons .btn-material {
  padding: 12px 32px;
  margin-left: 12px;
  margin-bottom: 0;
}

.booking-sapce-detail{
  padding-bottom: 36px;
  font-size: 16px;
}
.booking-sapce-detail h6{
  color: #1d2129;
  font-size: 1.250em;
  margin: 0 0 6px;
  font-weight: 800;
}
.booking-sapce-detail h6 a{
  color: #1d2129;
}
.booking-sapce-detail h6 a:hover{
  color: #187AED;
}
.booking-sapce-detail h6 span{
  font-weight: normal;
}
.booking-sapce-detail h4 {
  font-size: 3.250em;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  margin-top: 0px;
}
.booking-sapce-detail h4 span{
  display: inline-block;
  max-width: 94%;
}
.room-detail-fav{
  position: absolute;
  right: 0;
  top: 20px;
  font-size:30px;
  color: #f0f0f0;
  cursor: pointer;
}
.room-detail-fav:hover{
  color: #f0f0f0;
}
.room-detail-fav.active {
    color:#fb3b5b;
}

.booking-sapce-detail .rating-container{
  margin-bottom: 8px;
  display: inline;
  float: none;
}

.booking-sapce-detail > span{
  display: block;
  font-size: 0.938em;
  font-weight: 600;
  line-height: 14px;
  clear: both;
  padding-bottom: 10px;
  padding-top: 6px;
}
.booking-sapce-detail .location{
  font-size: 16px;
  font-weight: 700;
  color: rgba(0,0,0,0.89);
  margin-right: 16px;
}

.booking-sapce-detail .location .material-icons{
  vertical-align: bottom;
  margin-right: 8px;
  color: rgba(0,0,0,0.89);
}

.booking-sapce-detail > span.room-detail-place-name{
  padding: 8px 0 4px;
  font-size: 1.250em;
  font-weight: 800;  
}
.booking-sapce-key-detail{
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.room-detail-left-inner,.room-detail-right{
  padding: 32px 0;
}
.room-rules-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}
.room-rules-wrap a {
  background: white;
  border-radius: 40px;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.15);
  border: solid 0.5px #efefef;
  color: black;
  padding: 5px 25px;
  margin-right: 10px;
  display: flex;
  font-size: 15px;
  align-items: center;
  cursor: pointer;
}
.room-rules-wrap a img {
  margin-right: 10px;
}
.room-key-detail {
  padding-bottom: 0px;
}
.room-key-detail-list li {
  float: left;
  list-style: outside none none;
  padding-right: 38px;
}
.room-key-detail-list li:last-child{
  padding-right: 0;
}
.room-key-detail-list li label {
  color: #b4b5b6;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.card-feature-text{
  font-size: 1em;
}
.card-extra-feature-icon,.card-person-icon{
  margin-right: 4px;
}
.room-review-comment{
  clear: both;
  padding-top: 10px;
}
.review-user-pic {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--White);
  margin-right: 12px;
  box-shadow: 1px 1px 10px rgba(0,0,0, 0.16);
}
.review-list .review-message {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 205px;
}
.review-message.none {
  color: var(--TertiaryText);
}
.room-reviews-user-detail h6,
.room-review-comment p {
  color: #595959;
  font-weight: normal !important;
}
.room-key-detail-list li p {
  color: #1d2129;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0;
}
.room-key-detail h4,.room-detail-left-inner h4,.room-location-map h4,.room-review-comment h4{
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
  font-family: "Nunito Sans";
  color: var(--Primary);
}

.room-detail-left-inner p, .room-rules, .room-cancellation {
  font-size: 15px;
  line-height: 1.7em;
  font-family: "Nunito Sans";
  letter-spacing: 0.15px;
  margin-bottom: 0px;
}
.show-more,#showmore{
  font-size: 1em;
  color: #187AED;
}
.room-detail-left-inner p .collapse.in{
  display: inline-block;
}
.room-features-list{
  margin-left: 4px;
}
.room-features-list li,.room-rent-rules-list li{
  float: left;
  width: 30%;
  font-size: 1em;
  font-weight: 600;
  padding-bottom: 18px;
  margin:0 10px;
}
.room-rent-rules-list{
  margin-left: 14px;
}
.room-rent-rules-list li{
  padding-bottom: 10px;
  width:73%;
  margin:0;
  line-height:1.6em;
}
.room-location-map.room-detail-left-inner {
  padding: 30px 0;
}
.room-location-map {
  overflow: hidden;
  border-radius: 24px;
  background-color: #f8f8f8;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  outline: 1px solid var(--TertiaryAccent);
}

.room-location-map.disabled .room-map{
  pointer-events: none;
}

.room-location-map .disabled {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #cbcaca63;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.room-location-map .location {
  color: #595959;
  font-weight: bold;
}
.room-map {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.room-map #map {
  min-height: 400px;
  background: #f5f5f5;
}
.room-location-map .leaflet-container-default{
    min-height:198px !important;
}
.room-location-map p{
  margin-bottom: 16px;
  color: rgba(0,0,0,0.89);
}
.room-location-map .location{

}
.room-location-map .location .material-icons {
    vertical-align: bottom;
    margin-right: 4px;
    max-width: 24px;
}
.room-detail-reviews h4 .rating-container{
  margin-left: 10px;
  margin-top: -1px;
}
.room-detail-reviews {
  padding-top: 0px;
}
.room-review-user-detail{
  margin-bottom: 12px;
  min-width: 215px;
  display: flex;
  align-items: center;
}
.room-review-user-detail a {
  font-size: 16px;
  display: flex;
  align-items: center;
  font-family: "Nunito Sans";
  margin: 0;
}
.room-review-user-detail a > p {
  color: var(--Black);
  transition: 0.3s all ease;
}
.room-review-user-detail a > p {
  margin: 0px;
  margin-top: 3px;
}
.room-review-user-detail a:hover p {
  color: var(--Primary);
}
.room-reviews-user-image{
  margin-right: 22px;
}
.room-reviews-user-image.review{
  height: 36px;
  width: 36px;
  border-radius: 18px;
  text-align: center;
  line-height: 36px;
  color: #fff;
}
.room-detail-reviews > h4{
  width: 100%;
  margin-bottom: 64px;
}
.room-detail-reviews .mt-btn-secondary {
  width: 100%;
  border-radius: 12px;
}
.review-list {
  display: flex;
  gap: 32px;
}

.room-detail-review-card {
  padding: 20px 24px;
  background: var(--WhiteDark);
  border-radius: 24px;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
}

.room-reviews-user-detail h6{
  margin:4px 0;
  font-size: 1em;
}
.top-info .filled-stars .star,
.room-detail-review-card .filled-stars .star,
.review-button .star {
  color: #FFC700 !important;
}
.top-info .star .glyphicon,
.room-detail-review-card .star .glyphicon {
  font-size: 20px;
}
.room-detail-reviews .open-review {
  position: absolute;
  top: 20px;
  right: 20px;
}
.room-reviews-user-detail p{
  margin-bottom: 0;
  font-size: 1em;
  color: #b4b5b6;
  font-weight: 500;
  line-height: 18px;
}
.room-review-comment small {
  color: #908d8d;
  margin-top: 9px;
  display: block;
  margin-left: 8px;
}
.room-review-comment p {
  margin-top: 12px;
  margin-bottom: 0;
}
.input-group.date {
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-detail-right-date .input-group .form-control{
  color: var(--Black);
  font-size: 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: none;
  text-align: center;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 16px;
    cursor: pointer;
    height: 36px;
    width: 100%;
    border: 1px solid var(--Primary);
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.date-input-wrapper:hover{
  background: var(--WhiteDark);
}
.room-detail-right .btn-book {
  width: 100%;
}
.room-detail-right-date .input-group .caret{
  position: absolute;
  margin-left: 115px;
  top: 16px;
  z-index: 9;
  opacity: 0;
}
.room-detail-right-inner.party-size-details label{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.room-choose-time-slot label {
  color: #b4b5b6;
  font-size: 12px;
  font-weight: 500;
}
.room-choose-time-slot label i {
  color: #0777e9;
  font-size: 16px;
  margin-left: 5px;
}
.room-choose-slot-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.room-choose-slot-list h4{
    font-family: "Nunito Sans";
    color: var(--Red);
    font-size: 14px !important;
    text-align: center;
    font-weight: 600;
    background: #F5F6FA;
    border-radius: 12px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.12);
    padding: 14px;
    margin-top: 24px;
    margin-bottom: 0px;
    border: 1px solid var(--Red);
}
.room-choose-slot-list li {
  list-style: none;
  width: calc((100% - 12px) / 3);
  margin: 0;
}
.room-choose-slot-list li label {
  background-color: var(--White);
  border: 1px solid var(--TertiaryAccent);
  padding: 10px 6px;
  text-align: center;
  color: var(--SecondaryText);
  position: relative;
  font-weight: 600;
  z-index: 0;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  border-radius: 12px;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-choose-slot-list li label.no-slots{
  pointer-events: none;
  background-color: #f4f4f4;
  color: #b0adad;
}
.room-choose-slot-list li label:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  color: var(--Primary);
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s ease;
  border-color: var(--Primary);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
}
 .room-choose-slot-list li label.active:after {
  width: 100%;
}
.room-choose-slot-list li label.active{
  color: var(--Primary);
  border-color: var(--Primary);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  font-weight: 700;
}
@media (min-width:991px) {
  .room-choose-slot-list li label:hover  {
    color: var(--Primary);
    border-color: var(--Primary);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);    
    font-weight: 700;
  }
}
.booking-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
  width: 100%;
}
.request-book-btn{
  background-color: #1d212a;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  margin-bottom: 10px;
}
.full-day-checker {
  display: flex;
  align-items: center;
}
.add-fav-btn,.add-fav-btn.active:hover{
  background-color: #fcfafe;
  border: 2px solid #f1e8fb;
  color: #c29bef;
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 12px 22px;
  cursor: pointer;
}
.add-fav-btn i{
  color: #741bd9;
  padding-right: 10px;
}
.add-fav-btn.active:hover i{
    color:#741bd9;
}
.add-fav-btn:hover i,.add-fav-btn.active i{
  color: #fff;
}
.request-book-btn:hover,.add-fav-btn:hover,.add-fav-btn.active {
  background-color: #187AED;
  color: #fff;
  text-decoration: none;
}
.room-key-detail-list p{
    color: #1D2129;
    font-size: 1em;
    font-weight: 600;
    line-height: 18px;
    clear: both;
    margin-bottom:6px;
}
.room-key-detail-list p .fa{margin:0 6px 0 60px}
.room-key-detail-list p .fa:first-of-type{margin-left:0}
.room-key-detail-list small {
    font-size: 100%;
}
.room-cancel-policy.room-detail-left-inner{
    padding-top:30px;
}
.ui-datepicker{
  margin-left: -120px;
  margin-top: 15px;
  z-index: 999999999999 !important;
  border-radius: 27px;
  box-shadow: 2px 2px 12px 0 rgba(0,0,0,0.16);
  background-color: white;
  position: relative;
  border: none;
  border: none !important;
  padding: 14px 24px;
  width: 285px;
}

.ui-datepicker .ui-datepicker-calendar th, .ui-datepicker .ui-datepicker-calendar td {
  padding: 5px 0 !important;
  border-radius: 50% !important;
}

.ui-datepicker .ui-datepicker-next:before {
  border: 1px solid #0777e9;
  color: #0777e9;
  border-radius: 50%;
  width: 20px;
  min-width: 20px;
  padding: 6px 7px;
  height: 20px;
}

.ui-datepicker .ui-datepicker-prev:before {
  border: 1px solid #0777e9;
  color: #0777e9;
  border-radius: 50%;
  width: 20px;
  min-width: 20px;
  padding: 6px 7px;
  height: 20px;
  margin-left: 2px;
}

.modal-backdrop{
  z-index: 99999;
}
.search-book-amount-total {
  margin-bottom: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-book-amount-total label {
  font-size: 18px;
  margin: 0;
  color: var(--Black);
  font-weight: 400;
  text-wrap: nowrap;
}
.search-book-amount-total span {
  font-size: 20px;
  color: var(--Black);
  font-weight: 700;
}
.search-book-amount-total.orange {
    border-left: 4px solid #ffab4a;
    padding-left: 8px;
}
.booking-divider {
  height: 1px;
  width: 100%;
  background: var(--TertiaryAccent);
  margin: 20px 0px;
}
.amount-line {
  height: 1px;
  width: 100%;
  background: rgba(24, 122, 237, 0.33);
  margin: 0px 12px;
}
.dropup div.dropdown-menu{
  top: 36px;
}
h5#errorname {
    color: rgb(242, 75, 75);
}
.capacity-input{
  display: inline-block;
}
.room-rent-rules ul{
  padding-left: 2em;
}
.room-rent-rules li{
  list-style: disc;
}
span.blue-text:before{
  content: '';
  position: absolute;
  left: -18px;
  background: url(../images/fastbook.png) left no-repeat;
  height: 30px;
  width: 30px;
  background-size: 100%;
}
.request-book-btn{
  background: none;
  border: medium none;
  color: #187AED;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  text-align: right;
  width: auto;  
}
.request-book-btn:hover {
  background: none;
  color: #017faf;
}
.full-slot-check-title {
  color: var(--SecondaryText);
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-right: 12px;
  white-space: nowrap;
}
.checkbox span{
  font-size: 12px;
}
.checkbox label{
  padding: 0;
}

@media (min-width: 992px) and (max-width: 1199px) { 
  .booking-sapce-detail h4{
    font-size: 2em;
  }
  span.blue-text,.room-detail-fav{
    top: 5px;
  }
}
@media (max-width:991px) {
  .booking-sapce-detail h4{
    font-size: 2em;
  }
  span.blue-text,.room-detail-fav{
    top: 5px;
  }  
  .checkbox.pull-right{
    float: none !important;
  }
}
@media (max-width:767px) {
  .booking-sapce-detail{
    font-size: 11px;
  }
  .room-detail-left-inner {
      font-size: 13px;
  }
  .top-info .left-wrapper {
    max-width: 100%;
  }
  .top-info .top-instruments {
    max-width: 100%;
    flex: 1;
  }
  .top-info .sharing-icons, .top-info a {
    padding: 10px;
    font-size: 14px;
  }
  .room-detail-left-inner, .room-detail-right {
    padding: 15px 0;
  }
  .room-location-map {
    margin: 15px 0;
  }
  .room-user-info {
    justify-content: center;
  }
  .room-card {padding: 30px;}
  .host-info-card {
    padding: 18px;
  }
}
@media (max-width: 1140px) {
  .review-list .room-detail-review-card:nth-child(2) {
    display: none;
  }
}
@media (max-width:767px) {
  .booking-sapce-detail h4{
    font-size: 2.25em;
  }
  .room-nav-container {
    flex-direction: column;
    align-items: start!important;
  }
  .room-nav-buttons {
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .room-nav-buttons .btn-material {
    margin-left: 0px;
  }
  .room-detail-desc.room-detail-left-inner{
    padding-top: 0;
  }
  .room-detail-fav{
    top: -20px;
    font-size: 18px;
  }
  .room-detail-right-inner.party-size-details{
    margin-bottom: 12px;
    padding-top: 12px;
  }
  .search-book-amount-total{
    margin-top: 12px;
  }
  .booking-sapce-detail h4 span{
    max-width: 100%;
  }
  span.blue-text:before{
    width: 18px;
    height: 18px;
  }
  span.blue-text{
    right: 20px;
    top: -20px;
  }
  .top-title {
    flex-direction: column;
    gap: 0px!important;
  }
  .top-info {
    flex-direction: column;
    gap: 18px;
  }
  .room-nav-buttons {
    justify-content: center!important;
  }
}
@media (max-width:479px) {
  .booking-sapce-detail h6{
    max-width: 86%;
  }
  .card-block h4 .fa:hover {
     color: #f0f0f0;
  } 
  .room-detail-fav.active {color: #187AED;}
  .room-detail-fav, span.blue-text {top:-25px;}
  .room-detail-section .box-align {float: left;}
  .ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
    left: calc((100vw - 300px)/2) !important;
    margin-left: 0 !important;
    top: 25vh !important;
  }
  .room-card {
    padding: 25px 18px;
  }
  .room-rules-wrap a {
    font-size: 14px;
    padding: 5px 15px;
  }
  .room-detail-left-inner, .room-detail-right {
    padding: 15px 0;
  }
  .room-location-map {
    margin: 15px 0;
  }
}

#btn-coupon-apply1,
#btn-coupon-apply {
  margin-bottom: 0;
  width: 100%;
  height: 40px;
  max-width: 111px;
}

/* ======================================== */
/* Photos section */

/* main photos carousel (owl) */
.photos-section .owl-photos-holder{
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.photos-section .owl-carousel.owl-photos{
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.5s ease-in, transform 0.35s ease-out ;
}

.photos-section .owl-carousel.owl-photos.owl-loaded{
    transform: translateY(0px);
    opacity: 1;
    height: 100%;
}

.photos-section .owl-carousel.owl-photos .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    height: 100%;
}

.photos-section .owl-carousel.owl-photos .owl-stage-outer{
    overflow: visible;
    height: 100%;
}

.photos-section .owl-carousel.owl-photos .owl-item img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-width: 1px;
    max-width: initial;
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Owl navigation */

.photos-section .owl-navigation {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.photos-section .owl-navigation.owl-navigation-show {
    opacity: 1;
}

.photos-section .owl-navigation > div {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.photos-section .owl-navigation .owl-navigation-area-prev{
    width: 15%;
    left: 0;
}

.photos-section .owl-navigation .owl-navigation-area-next{
    width: 15%;
    right: 0;
    left: unset;
}

.photos-section .owl-navigation .owl-navigation-area-prev .owl-navigation-btn{
    opacity: 1;
    margin-left: -60px;
}

.photos-section .owl-navigation .owl-navigation-area-next .owl-navigation-btn{
    opacity: 1;
    margin-right: -60px;
}

.photos-section .owl-navigation .owl-navigation-btn{
    background-color: white;
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,.07);
    box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,.07);
    border-radius: 10000px;
    padding: 7px;
    line-height: 1px;
    z-index: 10;
    pointer-events: auto;
    transition: all 0.5s ease;
}

.photos-section .owl-navigation .owl-navigation-btn i.material-icons{
    color: #187aed;
    max-width: 24px;
}

/* Owl dots / only on mobile */

.photos-section .owl-theme .owl-dots .owl-dot span{
    background: #eee;
    width: 10px;
    height: 5px;
}

.photos-section .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #187aed;
}

@media (max-width: 767px){
    .photos-section .photos-section > .container{
        padding: 0;
    }
    /* .photos-section .owl-photos-holder{
        height: 248px;
    }
    .photos-section .owl-carousel.owl-photos .owl-item img {
        height: 200px;
    } */
}

/* Full screen photos */
.photos-section .photos-window{
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 32px;
    z-index: 1000;
    transition: all 0.5s ease;
    background: rgba(255,255,255,0.98);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
}

.photos-section .photos-window.show-photos{
    visibility: visible;
    opacity: 1;
}

.photos-section .photos-window .clear{
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 50;
}

.photos-section .photos-window .clear .material-icons{
    color: rgba(0,0,0,0.54);
    background: white;
    border-radius: 100px;
    padding: 10px;
    -webkit-box-shadow: 0 0px 6px rgba(0,0,0,0.1);
    box-shadow: 0 0px 6px rgba(0,0,0,0.1);
}

.photos-section .photos-window .owl-carousel.owl-photos-window,
.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer,
.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer > .owl-stage,
.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer > .owl-stage > .owl-item,
.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer > .owl-stage > .owl-item > div,
.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer > .owl-stage > .owl-item > div a{
    height: 100%;
}

.photos-section .photos-window .owl-carousel.owl-photos-window .owl-item > div {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer > .owl-stage > .owl-item > div a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.photos-section .photos-window .owl-carousel.owl-photos-window .owl-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.photos-section .photos-window .owl-carousel.owl-photos-window .owl-item .spinner {
    width: 50px;
    height: 50px;
    opacity: 0.2;
    margin: 0;
    z-index: 1;
    position: absolute;
}

.photos-section .photos-window .owl-carousel.owl-photos-window > .owl-stage-outer > .owl-stage{

}
.photos-section .photos-window .owl-carousel.owl-photos-window .owl-dots{
    margin-top: 7px;
}

@media (max-width: 767px){
    .photos-section .photos-window{
        padding: 0;
        padding-bottom: 32px;
    }
    .photos-section .photos-window .owl-carousel.owl-photos-window .owl-item img {
        height: auto;
        width: auto;
        max-height: 100%;
        max-width: 100%;
    }
}


/* Photos section */
/* ======================================== */
/* Title section */

.title-section h1{
    font-size: 28px;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
    hyphens: auto;
    margin-bottom: 0px;
}

@media (max-width: 767px){
    .title-section{
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .title-section h1{
        font-size: 28px;
        padding-right: 0;
    }
}

.title-section .title-subline{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
}

.title-section .title-subline .location{
    font-size: 20px;
    position: relative;
    padding-left: 32px;
    font-weight: 400;
    color: rgba(0,0,0,0.54);
}
.title-section .title-subline .location .material-icons{
    height: 24px;
    width: 24px;
    left: 0;
    vertical-align: bottom;
    margin-bottom: -1px;
    position: absolute;
}
.title-section .title-subline .stars{
    margin-left: 32px;
    font-size: 18px;
    width: 130px;
    height: 27px;
}

.title-section .title-subline .stars .rating{
    opacity: 0;
}

.title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;s
}

.title-section .title-subline .stars .rating-container{
    opacity: 1;
}

.room-right-content .send_request a {
  color: white;
}

.wall_mediaItem {
    width: 100%;
    height: auto;
    min-height: 250px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    background-color: #ffffff;
    text-align: center;
}
.wall_mediaEmbedDiv {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.flex-left-children {
  display: flex;
}


/* New Room Edit CSS */
.room-edit  {
  margin-top: 60px;
  background: linear-gradient(224deg, #f9f9f9, white);
}

.room-edit .border-wrapper {
  padding: 35px;
  border: 2px solid #efefef;
  border-radius: 30px;
  background-color: white;
  margin-bottom: 60px;
}

.room-edit .border-wrapper .form-no {
  font-size: 27px;
  color: #d4d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  border: 2px solid #d4d3d3;
  margin-right: 16px;
  height: 40px;
}

.room-edit input[type="text"],
.room-edit input[type="number"],
textarea {
  min-height: 55px;
  border: none !important;
  box-shadow: inset 3px 3px 5px 0 rgb(0, 0, 0, 0.17) !important;
  border-radius: 10px !important;
  background-color: #f5f6fa !important;
  font-family: 'Roboto Slab';
  padding: 0 25px;
  font-size: 20px;
  color: #707070 !important;
}

textarea {
  min-height: 150px;
  font-size: 16px !important;
  padding: 25px !important;
}

.room-edit .bootstrap-select {
  min-height: 55px;
  border-radius: 40px;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.15);
  border: solid 0.5px #efefef;
  min-width: 130px;
}

.room-edit .bootstrap-select > .dropdown-toggle, 
.room-edit .bootstrap-select > .dropdown-toggle.bs-placeholder {
  min-height: 55px;
  border: none;
  padding: 0 35px;
  font-family: 'Roboto Slab';
  font-size: 20px;
  color: #707070;
}

.room-edit .bootstrap-select.btn-group .dropdown-toggle .caret {
  right: 30px;
}

.room-edit .bootstrap-select.btn-group .dropdown-menu li {
  margin-bottom: 0 !important;
}

.room-edit .bootstrap-select.btn-group .dropdown-menu li a {
  display: block;
  width: 100%;
}

.room-edit .room-features li {
  margin-bottom: 30px;
  font-family: 'Roboto Slab';
  font-size: 20px;
  color: #707070;
}

.room-edit .room-features li:last-child {
  margin-bottom: 20px;
}

.room-edit .room-features li hr {
  width: 100%;
}

.room-edit .room-features li .row {
  width: 100%;
}

.room-edit .row {
  flex-wrap: wrap;
}

.room-edit .grey-card-container {
  display: flex;
}

.room-edit .grey-card-container > div {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.room-edit .room-features li label {
  margin-top: 6px;
  margin-bottom: 10px;
}

.room-edit .room-features li .checkbox-label {
  font-family: 'Roboto Slab';
  font-size: 20px;
  color: #707070;
}

.room-edit .room-features li input[type="checkbox"] {
  width: 17px;
  height: 17px;
  box-shadow: inset 3px 3px 5px 0 rgb(0, 0, 0, 0.17);
  border: none !important;
}

.room-edit .room-features .room-private {
  display: flex;
  align-items: center;
}

.room-edit span.info {
  display: flex;
  color: black;
  font-family: "Nunito Sans";
}

.room-edit span.info .info__icon {
  min-width: 15px;
  height: 15px;
  background: #0777e9;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-top: 4px;
}

.room-edit #form_field_size {
  margin-right: 15px;
  max-width: 160px;
}

.room-edit .max-capacity {
  max-width: 400px;
}

.room-edit .form-title {
  font-family: 'Roboto Slab';
  font-size: 24px;
  font-weight: 500;
  color: black;
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 15px;
}

.room-edit .grey-card {
  border-radius: 10px;
  background-color: #f5f6fa;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-edit .policy-selector {
  max-width: 200px;
  margin-bottom: 30px;
}

.room-edit .form-error {
  font-size: 16px !important;
  font-family: "Nunito Sans" !important;
  font-weight: 400 !important;
}

.room-edit .date-placeholder {
  border: 1px solid #0777e9;
  border-radius: 30px;
  text-align: center;
  width: 150px;
  height: 35px;
  font-size: 20px;
}

.room-edit .edit-schedule {
  background-color: white;
  box-shadow: 6px 6px 20px 0 rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 20px 30px;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.room-edit .edit-schedule h3 {
  margin-bottom: 20px;
}

.room-card.disabled {
  pointer-events: none;
  background-color: #efefef;
}

.room-card.disabled * {
  color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}

.room-card.disabled button {
  background-color: #dbdbdb;
}

.room-detail-right .form-group-sm {
  display: flex;
  align-items: center;
  margin-right: -15px;
}

.room-detail-right {
  padding-bottom: 0px;
}

.room-detail-right .form-group-sm input {
  height: 40px !important;
  border-radius: 20px !important;
  background-color: #f0f0f0;
  box-shadow: inset 4px 4px 5px 0 rgba(0, 0, 0, 0.15);
  border: none;
  min-height: 0 !important;
}

.top-steps {
  display: flex;
}

.top-steps .step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
  width: 60px;
}

.top-steps .step .step-circle {
  width: 35px;
  height: 35px;
  border: 2px solid #d7d7d7;;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d7d7d7;;
  font-size: 20px;
  position: relative;
}

.top-steps .step:not(:first-child) .step-circle::before {
  width: 66px;
  height: 2px;
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  background-color: #d7d7d7;
}

.top-steps .step .step-title {
  font-size: 12px;
  margin-top: 5px;
  color: #d7d7d7;
}


@media (max-width: 767px){
  .form-step-1-mobile {
    margin-top: 60px;
  }
}

.host-panel-flex.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1330px;

}

.top-steps .step.active .step-circle::before {
  background-color: #187ae5;
}
.top-steps .step.active .step-circle {
  color: #187ae5;
  border-color: #187ae5;
}
.top-steps .step.active .step-title {
  color: black;
}
.room-edit .border-wrapper.active {
  border-color: #187ae5;
}
.room-edit .border-wrapper.active .form-no {
  color: #187ae5;
  border-color: #187ae5;
}

.room-edit-panel {
  padding-bottom: 15px;
  position: fixed;
  top: 78px;
  width: 100%;
  z-index: 2;
}

.add-room-images-placeholder {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 300px;
  height: 100%;
}

.room-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-nav-back {
  display: flex;
  align-items: center;
}

.top-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-title.wrapped {
  align-items: flex-start;
}

.room-nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  z-index: 10000;
}

.room-btn-container {
  position: relative;
  display: inline-block;
}

/* Onboarding Section and Nav Buttons */

.onboarding-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100vh; 
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 9999;
  padding: 0px 16px;
}

.onboarding-modal {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  background-color: #FFFFFF;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  padding: 32px 40px;
}

.onboarding-info .material-symbols-outlined {
  font-size: 22px;
  margin-top: 2px;
}

.onboarding-modal h1 {
  font-size: 28px;
  margin: 0px;
  color: var(--Primary);
  font-weight: 400;
}

.popup-divider {
  width: 100%;
  height: 1px;
  background-color: var(--TertiaryAccent);
  margin: 16px 0;
}

.onboarding-modal p {
  font-family: "Nunito Sans";
  font-size: 18px;
  margin-bottom: 0px;
}

.onboarding-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.onboarding-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.5em;
}

.onboarding-exit {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  color: #d4d3d3;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #187AED;
  width: 40px;
  height: 40px;
  transition: 0.3s all ease;
}

.onboarding-exit:hover {
  background: var(--WhiteDark);
}

.onboarding-exit i {
  color: #187AED;
}

.onboarding-info {
  width: 200px;
  position: absolute;
  top: 100%; 
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

.onboarding-text-1 {
  display: flex;
  margin-top: 133px;
  margin-left: 150px;
}

.onboarding-text-1 span {
  margin-right: 8px;
  position: relative;
}

.onboarding-text-1 p {
  min-width: 200px;
  position: relative;
}

.onboarding-text-2 {
  display: flex;
  margin-top: 58px;
  margin-left: 150px;
}

.onboarding-text-2 span {
  margin-right: 8px;
  position: relative;
}

.onboarding-text-2 p {
  min-width: 215px;
  position: relative;
}

.onboarding-arrow-1 {
  position: absolute;
  top: 15px;
  left: 35px;
  width: 100px; 
  height: 145px;
}

.onboarding-arrow-2 {
  position: absolute;
  top: 15px;
  left: 60px;
  width: 75px; 
  height: 70px;
}

.onboarding-text-long {
  display: none;
  z-index: 9999;
}

@media (max-width: 1450px){
  .onboarding-text-2 {
    margin-top: 55px;
  }
  .onboarding-text-2 p {
    min-width: 175px;
  }
}

@media (max-width: 767px){
  .onboarding-arrow-1 {
    display: none;
  }
  .onboarding-arrow-2 {
    display: none;
  }
  .onboarding-text-1 {
    display: none;
  }
  .onboarding-text-2 {
    display: none;
  }
  .onboarding-text-long {
    display: flex;
  }
  .onboarding-text-long p{
    margin-bottom: 0px;
  }
  .onboarding-info {
    width: 100%;
    font-size: 16px;
    position: static;
  }
  .back-to-search-link{
    margin-bottom: 16px;
  }
}

@media (max-width: 548px) {
  .onboarding-modal {
    padding: 8px 28px;
    max-height: 180px;
  }
  .onboarding-modal h1 {
    font-size: 24px;
  }
  .onboarding-modal p {
    font-size: 16px;
  }
  .room-nav-buttons {
    gap: 12px;
  }
  .room-nav-buttons .btn-material {
    padding: 12px;
  }
  .onboarding-exit {
    width: 30px;
    height: 30px;
  }
  .onboarding-exit .material-icons {
    font-size: 20px;
  }
}

@media (max-height: 769px) {
  .onboarding-modal {
    margin-top: 128px;
  }
}

.room-nav-container .info__icon {
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  background: #0777e9;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-top: 4px;
}

.unsaved-changes {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; 
  bottom: 18px;
  right: 18px;
  background-color: var(--Red); 
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.36);
  z-index: 1000;
}

.unsaved-changes-content {
  font-family: "Nunito Sans";
  font-size: 14px;
  color: #FFFFFF;
}

.unsaved-changes p:first-of-type {
  margin-bottom: 4px;
}

.unsaved-changes p:last-child {
  margin-bottom: 0px;
}

.close-info-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 19px;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--White);
  color: var(--Black);
  border-radius: 64px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--Red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.28);
}

.upon_request_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.currency-icon {
  font-size: 26px;
  color: #363636;
  pointer-events: none;
  user-select: none;
}

.currency-field {
  width: 100%;
}

.soundproof-container {
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items: normal!important;
}

.soundproof-container > div {
  display:flex;
  align-items: center;
}

.room-nav-buttons .mt-btn-secondary, .room-nav-buttons .mt-btn-danger {
  font-size: 14px;
  height: 35px;
  padding: 0px 20px;
  font-weight: 500;
}

.room-nav-container .mt-btn-tertiary {
  font-size: 14px;
  height: 30px;
  padding: 0px 16px;
  gap: 8px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.16)!important;
}

.room-nav-container .mt-btn-tertiary .material-symbols-outlined {
  font-size: 18px;
} 

.room-nav-buttons .mt-btn-admin {
  border-radius: 50%;
  padding: 0px;
  min-width: 40px;
  width: 40px;
  height: 40px;
}

.room-header-container {
  margin: 15px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.room-header-wrapper {
  display: flex;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
  margin-top: 35px;
}

.favorite-icon {
  font-variation-settings: 'FILL' 0;
  color: var(--Red);
  transition: all 0.3s ease;
}

.favorite-icon.active {
  font-variation-settings: 'FILL' 1;
}

.btn-favorite:hover .favorite-icon {
  font-variation-settings: 'FILL' 1;
}

.btn-favorite {
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  width: 40px!important;
  height: 40px!important;
  padding: 0px!important;
}

.btn-favorite .material-symbols-outlined {
  font-size: 22px;
  margin-top: 2px;
  margin-left: 2px;
}

.room-info-container {
  background-color: var(--White);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.room-info-section {
  padding-bottom: 0px;
}

.card-divider {
  background-color: var(--TertiaryAccent);
  margin: 10px 0px;
  width: 100%;
  height: 1px;
}

.review-divider {
  background-color: var(--TertiaryAccent);
  margin: 24px 0px;
  width: 100%;
  height: 1px;
}

.room-info-container .card-divider {
  margin: 9px 0px;
}

.section-divider {
  background-color: var(--TertiaryAccent);
  margin-top: 16px;
  margin-bottom: 24px;
  width: 100%;
  height: 1px;
}

.room-map-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-map-section .material-symbols-outlined {
  color: var(--SecondaryText);
}

.location-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--SecondaryText);
  margin-left: 8px;
}

.location-icon {
  display: flex;
  gap: 6px;
}

.user-rating-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-rating-date {
  color: var(--SecondaryText);
  font-style: italic;
}

.no-reviews-text {
  text-align: center;
  color: var(--SecondaryText)!important;
  text-transform: unset!important;
}

.room-review-comment h4 {
  text-transform: unset!important;
  color: var(--Black)!important;
  margin-bottom: 0px;
}

.review-bar {
  padding: 8px 16px!important;
  margin-right: 14px;
}

.review-bar .rating-container {
  pointer-events: none;
}

.room-detail-review-card .mt-btn-secondary {
  height: 37px;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
}

.promo-code-error {
    font-family: "Nunito Sans";
    color: var(--Red);
    font-size: 13px !important;
    text-align: center;
    background: #F5F6FA;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.12);
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid;
}

.promo-code-success {
    font-family: "Nunito Sans";
    color: #49a82f;
    font-size: 13px !important;
    text-align: center;
    background: #F5F6FA;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.12);
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid;
}

.booking-form-row .mt-text-input {
  max-width: 175px;
}

.no-slots-error {
  margin-top: 0px!important;
  width: 100%;
}

.upon-request-container p {
  text-align: center;
  font-weight: 500;
}

.host-info-card {
  display: flex;
  gap: 32px;
  padding: 12px 40px;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  background: var(--White);
  box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.16);
  margin-top: 32px;
}

.host-name p {
  margin-bottom: 0px;
}

.host-name .material-symbols-outlined {
  font-size: 24px;
}

.host-name {
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--Black);
  align-items: center;
  transition: 0.3s ease all;
}

.host-name:hover {
  color: var(--Primary);
}

.host-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
  transition: 0.3s ease all;
}

.host-avatar:hover {
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.36);
}

.instrument-icon img {
  width: 20px;
  min-width: 20px;
  margin-right: 10px;
  margin-bottom: 2px;
}


/* TEMPORARY POPUP SECTION */

.instruments-popup-section, .reviews-popup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--White);
  max-width: 500px;
  width: 100%;
  border: 2px solid #EFEFEF;
  box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.24);
  border-radius: 24px;
  padding: 32px 40px;
  z-index: 100000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; /* Add transitions */
}

.popup-header {
  display: flex;
  justify-content: space-between; 
  width: 100%;
  align-items: center;  
}

.popup-header h3 {
  font-family: "Roboto Slab";
  font-size: 28px;
  font-weight: 400;
  color: var(--Primary);
  margin: 0px;
}

.instruments-popup-section p, .reviews-popup-section p {
  font-family: "Nunito Sans";
  font-size: 16px;
  color: var(--Black);
  font-weight: 400;
}

.popup-close {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--Primary);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background: var(--White);
}

.popup-header .material-symbols-outlined {
  font-size: 22px;
}

.popup-close:hover {
  background: var(--WhiteDark);
}

.popup-divider {
  width: 100%;
  height: 1px;
  background: var(--TertiaryAccent);
  margin: 16px 0px;
}

.popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  opacity: 0; 
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.instruments-popup-section.active, .reviews-popup-section.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.instruments-popup-section .instruments-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
  max-height: 70vh;
  overflow-y: auto;
}

.instruments-popup-section .info-instrument {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--White);
  box-shadow: none;
  border: 1px solid var(--SecondaryAccent);
  padding: 8px 16px;
  border-radius: 20px;
  height: 36px;
  transition: 0.3s;
  width: calc(50% - 8px);
  max-width: 250px;
}

.instruments-popup-section .info-instrument p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  color: var(--Black);
  font-weight: 400;
  margin-bottom: 0px;
}

.instruments-popup-section .info-instrument:hover {
  background: var(--WhiteDark);
}

.top-instruments.no-instruments {
  cursor: default;
  pointer-events: none;
}

.reviews-popup-section .reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 70vh;
  overflow-y: auto;
  width: 100%;
}

.reviews-popup-section .room-detail-review-card {
  border: 1px solid var(--TertiaryAccent);
  box-shadow: unset;
}

.reviews-popup-section {
  max-width: 700px!important;
}

.no-reviews {
  display: none!important;
}

.rating-loading .material-icons,
.single-star .material-icons,
.user-rating-info .material-icons,
.review-bar .material-icons,
.filled-stars .star,
.rating-container .star,
.review-button .star {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.review-button {
  margin-right: 16px;
}

/* Photo modal styling */
.photos-fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photos-fullscreen-modal.active {
  display: flex;
  opacity: 1;
}
.photos-carousel-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photos-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-slide.active {
  display: flex;
  opacity: 1;
}

.photo-slide-image {
  width: 950px;
  height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.photos-navigation {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 10;
  margin: auto;
  width: fit-content;
}

.photos-navigation-prev,
.photos-navigation-next {
  background-color: var(--White);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.24);
  user-select: none;
}

.photos-navigation-prev:hover,
.photos-navigation-next:hover {
  background-color: var(--WhiteDark);
}

.photos-navigation-next .material-symbols-outlined, .photos-navigation-prev .material-symbols-outlined {
  font-size: 24px;
}

.photos-navigation-next .material-symbols-outlined {
  margin-left: 2px;
}

.photos-navigation-prev .material-symbols-outlined {
  margin-left: 8px;
}

.photos-counter {
  background-color: rgba(0, 0, 0, 0.75);
  color: var(--White);
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.24);
}

.photo-modal-close-x {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 1001;
  cursor: pointer;
}

.photo-modal-close-x .material-symbols-outlined {
  font-size: 48px;
  color: var(--SecondaryAccent);
  transition: 0.3s ease all;
}

.photo-modal-close-x .material-symbols-outlined:hover {
  color: var(--White);
}

@media (max-width: 900px) {
  .photo-slide-image {
    width: 600px;
    height: 450px;
  }
}

@media (max-width: 767px) {
  .owl-carousel .owl-item {
    width: 100%;
    display: block;
  }
  
  .owl-photos .owl-stage {
    display: flex;
  }
  
  .owl-navigation.hidden-sm.hidden-xs {
    display: block !important;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .owl-navigation-area-prev,
  .owl-navigation-area-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
  }
  
  .owl-navigation-area-prev {
    left: 10px;
  }
  
  .owl-navigation-area-next {
    right: 10px;
  }
  
  .owl-navigation-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .owl-navigation-btn .material-icons {
    font-size: 24px;
    color: #333;
  }

  .instruments-popup-section, .reviews-popup-section {
    width: calc(100% - 32px);
  }

  .room-header-wrapper {
    margin-top: 16px;
  }

  .top-title h1 {
    text-align: center;
  }

  .upon_request_container {
    width: 100%;
  }

  .top-title {
    align-items: center!important;
  }
}

.price-and-date .mt-btn-primary {
  border-radius: 12px;
}

.request-text {
  text-align: center;
  font-size: 16px;
}

.upon_request_container a {
  width: 100%;
}

.upon_request_container .booking-divider {
  margin-top: 16px;
}

.request-text {
  margin: 0px;
  line-height: 160%;
  font-weight: 500;
}

.no-reviews-text {
  text-align: center;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: "Nunito Sans";
  font-weight: 600;
}

.edit-schedule .mt-btn-danger-dark,
.edit-schedule .mt-btn-primary { 
  margin: auto;
}

.cancellation-seerules {
    display: flex;
    align-items: center;
}

.cancellation-seerules .material-symbols-outlined {
  margin-bottom: 3px;
  color: var(--Red);
  margin-right: 8px;
}

.promo-code-row {
  display: flex;
  align-items: flex-end;
}

.capacity-allday-row {
  display: flex;
  align-items: center;
}

.room-detail-total .search-space-bottom-list {
  padding: 0px;
}

.mobile-date-picker {
  border-radius: 12px;
  border: 1px solid var(--Primary);
  margin-bottom: 16px;
}

.cancellation-text {
    margin-left: 5px;
}

.place-description {
  margin-left: 8px;
  margin-top: 16px;
  color: var(--SecondaryText);
}