@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

body {
  font-family: "IBM Plex Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.banner h1,
.banner h2,
.banner h3,
b,
strong {
  font-weight: 500;
  font-style: normal;
}

.dark,
.dark p,
.dark td {
  color: #fff;
  line-height: 1.6;
}

.box-text a:not(.button),
.box-text h1,
.box-text h2,
.box-text h3,
.box-text h4,
.box-text h5,
.box-text h6,
.box-text p {
  margin: 0;
}

.icon-box-img img,
.icon-box-img svg {
  padding: 0;
}

.title {
  position: relative;
}

.title h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 20px;
  color: var(--fs-color-primary);
  text-transform: uppercase;
}

.title p {
  margin-bottom: 0;
}

.main-btn {
  margin: 0;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  text-transform: none;
  min-width: 160px;
}

.main-btn::before {
  content: "";
  display: block;
  background-color: var(--fs-color-primary);
  position: absolute;
  left: -2px;
  top: 0;
  right: -2px;
  bottom: 0;
  z-index: -1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.45s
    cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:
    transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.main-btn:hover,
.main-btn:focus {
  border-color: #fff;
  background-color: #fff;
  color: var(--fs-color-primary);
  opacity: 0.9;
}

.main-btn:hover:before,
.main-btn:focus:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  background-color: var(--shop-color-button);
  color: var(--shop-color-button-text);
}

.slider.flickity-enabled button.flickity-prev-next-button {
  border-radius: 99px;
  width: 2rem;
  height: 2rem;
  top: 50%;
  bottom: unset;
  transform: translateY(-50%) !important;
  border: 0;
  border: 1px solid rgb(229, 231, 235);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
  margin-top: unset;
  background-color: #fff;
  min-height: unset;
}

.slider.flickity-enabled
  button.flickity-prev-next-button
  svg.flickity-button-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent !important;
  border-color: transparent !important;
  fill: #242424 !important;
}

.slider.flickity-enabled
  button.flickity-prev-next-button
  svg.flickity-button-icon
  path {
  fill: #242424 !important;
}

#top-bar .nav > li.html {
  font-size: 14px;
}

#masthead .button {
  margin: 0;
  height: 44px;
  font-size: 16px;
  line-height: 44px;
  text-transform: none;
  min-width: 160px;
}

#masthead .nav > li {
  margin: 0 15px;
}

#masthead .nav > li > a {
  font-size: 16px;
  text-transform: none;
}

.wpcf7-spinner {
  display: none;
}

/* home */
.home2 {
  background-color: rgb(243, 238, 232);
  padding: 100px 0 70px;
}

.home2 h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--fs-color-primary);
}

.home2 h3 {
  font-size: 48px;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}

.home2 .img {
  border-radius: 12px;
  overflow: hidden;
}

.home2 .open-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home3 {
  background-color: rgb(249, 246, 242);
  padding: 100px 0 70px;
}

.home3 h2 {
  font-size: 48px;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}

.tab-cus .nav li {
  flex-basis: 16.6%;
  max-width: 16.6%;
  margin: 0 !important;
}

.tab-cus .nav li a {
  text-align: center;
  display: block;
  color: var(--fs-color-primary);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0;
}

.tab-cus .tab-panels {
  padding-top: 30px;
}

.tabbed-content .nav {
  z-index: 1;
}

.tabbed-content .nav::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d9d9d9;
  z-index: -1;
}

.row-branch {
  animation: widthCol 0.7s linear;
}

@-webkit-keyframes widthCol {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes widthCol {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .row-branch > .col {
    padding: 0 30px 30px;
  }
}

.home3 .icon-box {
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) -0.52%,
    rgba(255, 255, 255, 0.81) 18.73%,
    #fff 50.64%,
    rgba(255, 255, 255, 0.8) 78.96%,
    rgba(255, 255, 255, 0.2) 99.91%
  );
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 8px;
  padding-top: 40px;
}

.home3 .icon-box.testimonial-box {
  display: flex;
  flex-direction: column;
}

.home3 .icon-box-text {
  order: 1;
}

.home3 .icon-box-img {
  order: 2;
}

.home3 .icon-box p {
  max-width: 655px;
  margin: 0 auto;
  text-align: center;
  color: rgb(68, 68, 68);
  font-size: 16px;
  font-style: normal;
}

.home3 .icon-box-img img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}

.home3 .banner {
  border-radius: 24px;
  overflow: hidden;
}

/* BRANCHES */
.product-gallery-custom {
  position: relative;
}

.product-gallery-custom .box-image {
  border-radius: 15px;
  overflow: hidden;
}

.product-gallery-custom .large-4 > a:first-child {
  margin-bottom: 20px;
  display: block;
}

.product-gallery-custom .button {
  margin: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 44px;
  right: 24px;
  color: #000;
  text-transform: none;
  border-radius: 99px;
  font-size: 16px;
  gap: 8px;
  font-weight: 400;
}

h1.branch-title {
  font-weight: 300;
  margin-top: 0;
}

.branch-address {
  font-size: 1rem;
  font-weight: 500;
  color: #131313;
}

.branch-address a {
  color: #131313;
}

.branch-address svg {
  width: 20px;
  height: 20px;
}

.branch-utilities {
  background-color: #fff9ea;
  border-radius: 16px;
  padding: 3rem 3.625rem;
  text-align: center;
}

.main-title {
  font-size: 48px;
  margin: 24px 0;
}

.utilities-list {
  display: flex;
  margin-top: 2.9375rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.utility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.utility-icon {
  height: 3rem;
}

.utility-icon img {
  height: 100%;
  filter: opacity(0.5) drop-shadow(0 0 0 yellow);
}

.utility-name {
  width: 4.375rem;
  margin-top: 1.5rem;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.space-item .box-image {
  border-radius: 12px;
  overflow: hidden;
}

.space-item .info {
  padding-top: 10px;
}

.space-item .info h3 {
  margin-bottom: 0;
}

.space-item .info p {
  margin-bottom: 0;
}

.branch-room-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch-room-title h2 {
  width: auto;
}

.price-filter {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-filter .active {
  display: none;
}

.price-filter a {
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  padding: 0.625rem 0.875rem;
  font-weight: 400;
  height: 2.25rem;
  border-radius: 60px;
  color: rgb(19, 19, 19);
  font-size: 1rem;
  line-height: 100%;
  border: 1px solid rgb(0, 0, 0);
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
}

.branch-roooms {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* branch-item */
.branch-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s;
  position: relative;
}

.branch-item .box-image {
  border-radius: 12px;
  overflow: hidden;
}

.branch-item .box-text {
  padding-top: 10px;
  padding-bottom: 0;
}

.branch-item .box-text h3 {
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
}

.branch-item .box-text h3 a {
  color: #000;
}

.branch-item .branch-address {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  /* margin-top: 1rem; */
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  min-height: 2rem;
}

.branch-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b-price-label {
  color: rgb(128, 128, 128);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.branch-price {
  font-size: 16px;
  color: #131313;
  font-weight: 500;
  position: relative;
}

.branch-meta a.btn {
  font-weight: 500;
  font-size: 1rem;
  border-radius: 60px;
  color: #fff;
  height: 2.75rem;
  background-color: var(--primary-color);
  width: 7.1875rem;
  border: none;
  line-height: 2.75rem;
  display: block;
  text-align: center;
}

.branch-area {
  z-index: 99;
  position: absolute;
  background-color: #fff;
  color: #000;
  border-radius: 4px;
  padding: 4px 10px;
  right: 5px;
  top: 5px;
}

.branch-list {
  margin-bottom: 24px;
}

.branch-item2 .box-image {
  border-radius: 24px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.branch-item2 .post-title {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 24px;
  line-height: normal;
  height: 63px;
}

.branch-item2 .post-title a {
  color: #444;
}

.branch-item2 .branch-address svg {
  position: relative;
  top: 4px;
}

.branch-item2 .branch-address {
  color: #444;
  font-size: 14px;
  font-weight: 400;
}

.branch-item2 .branch-price {
  gap: 5px;
  border-radius: 100px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100%;
  width: 252px;
  height: 46px;
  margin: -23px auto 15px;
  color: var(--fs-color-primary);
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.branch-item2 .box-text {
  padding: 0;
}

.branch-box-home-icon {
  position: absolute;
  bottom: 30px;
  left: 6%;
  z-index: 22;
  color: #fff !important;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  gap: 5px;
  background: #0009;
  padding: 2px 8px;
}

.branch-box-home-icon:nth-child(2) {
  left: auto;
  right: 6%;
}

.branch-area2 {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* room-details */
.room-details {
  background-color: #f2f2f2;
  padding: 40px 0;
}

.room-gallery .box-image {
  border-radius: 12px;
  overflow: hidden;
}

h1.room-title {
  font-weight: 300;
}

.room-utilities .utilities-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d9d9d9;
  padding-top: 24px;
  margin-top: 0;
}

.room-utilities .utility-item {
  flex-basis: 33.333%;
  max-width: 33.333%;
  padding-bottom: 20px;
  flex-direction: unset;
  align-items: center;
}

.room-utilities .utility-icon {
  min-width: 1.8125rem;
  max-height: 1.8125rem;
}

.room-utilities .utility-icon img {
  filter: opacity(0.5) drop-shadow(0 0 0 yellow);
}

.room-utilities .utility-name {
  width: 100%;
  font-size: 16px;
  margin: 0;
  margin-left: 15px;
  text-align: left;
}

.price-group {
  width: 100%;
  background-color: rgb(255, 255, 255);
  text-align: center;
  padding: 30px 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
  border-radius: 16px;
}

.price-group .price-info {
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(218, 218, 218);
}

.price-group .price-info .price-info--item {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.price-group .price-info .price-info--item.large {
  font-size: 20px;
  font-weight: 700;
}

.price-info--cap {
  max-width: 60%;
}

.price-info--value {
  position: relative;
  left: 13px;
}

span.price_unit {
  font-size: 10px;
  font-weight: 400;
  margin-left: 7px;
}

/* room-item */
.room-item {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s;
  position: relative;
  padding: 24px;
  border: 1px solid rgb(221, 223, 226);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 2px 0px;
  margin-bottom: 24px;
}

.room-item .utilities-list {
  border: 0;
  padding: 0;
}

.room-item .utility-item {
  flex-basis: 100%;
  max-width: 100%;
}

.room-item h3 {
  font-size: 24px;
}

.room-item .room-price > span:first-child {
  color: rgb(128, 128, 128);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.room-item .room-price > .price {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.room-item a.btn {
  font-weight: 500;
  font-size: 1rem;
  border-radius: 60px;
  color: #fff;
  height: 2.75rem;
  background-color: var(--primary-color);
  border: none;
  line-height: 2.75rem;
  display: block;
  text-align: center;
}

.room-item .image-cover {
  padding-top: 62% !important;
}

.room-item2 {
  border: 1px solid rgb(221, 223, 226);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 2px 0px;
  background-color: #fff;
}

.room-item2 .image-cover {
  padding-top: 68% !important;
}

.room-item2 .box-text {
  padding: 15px;
}

.room-item2 h3 {
  margin-bottom: 0;
  font-size: 24px;
  margin-bottom: 15px;
}

.room-item2 h3 a {
  color: #131313;
}

.room-item2 .room-utilities .utilities-list {
  padding-top: 15px;
  border-top: 1px solid #d9d9d9;
}

.room-item2 .room-utilities .utility-item {
  flex-basis: 50%;
  max-width: 50%;
  padding-bottom: 15px;
}

.room-item2 .room-price {
  font-size: 16px;
  color: #131313;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}

.room-item2 .room-price > span:first-child {
  color: rgb(128, 128, 128);
  font-size: 14px;
  display: block;
  margin-bottom: 0;
  font-weight: 400;
}

.room-item2 a.btn {
  font-weight: 500;
  font-size: 1rem;
  border-radius: 60px;
  color: #fff;
  height: 2.75rem;
  background-color: var(--primary-color);
  border: none;
  line-height: 2.75rem;
  display: block;
  text-align: center;
}

/* booking */
#page-booking {
  background-color: #f9f6f2;
  padding-top: 30px;
}

#page-booking .main-title {
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 24px;
}

.room-item3 .room-utilities .utility-item {
  flex-basis: 20%;
  max-width: 20%;
  padding-bottom: 0;
}

.room-item3 .room-utilities .utility-name {
  margin-left: 6px;
  font-size: 14px;
}

.room-item3 .room-utilities .utility-icon {
  min-width: 20px;
  max-height: 20px;
}

.room-item3 .room-utilities .utilities-list {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 8px;
}

.room-item3 {
  background-color: #f8f8f6;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #eeede8;
  margin-bottom: 12px;
}

.room-item3 .col {
  padding-bottom: 0;
}

.option-item-lb,
.option-item-pr {
  font-size: 16px;
  font-weight: 500;
  color: #745e00;
}

.option-item-pr {
  color: var(--fs-color-primary);
}

button.choose-room {
  background-color: var(--fs-color-primary);
  margin: 0;
  border-radius: 99px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  margin-left: 24px;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option-item:last-of-type {
  margin-top: 8px;
}

ul.branch-filter {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 48px;
}

ul.branch-filter li {
  margin: 0;
  margin-right: 2rem;
  flex: 0 1 auto;
  margin-top: 2rem;
}

ul.branch-filter li a {
  background-color: #eee8d1;
  padding: 10px 16px;
  font-size: 18px;
  color: #745e00;
  font-weight: 500;
  border-radius: 99px;
}

ul.branch-filter li.active a {
  background-color: #745e00;
  color: #fff;
}

#booking-summary {
  background-color: #fafaf8;
  border: 1px solid #eeede8;
  border-radius: 16px;
  overflow: hidden;
}

#booking-summary > h3 {
  padding: 24px;
  border-bottom: 1px solid #eeede8;
  margin-bottom: 0;
}

#booking-content {
}

.booking-room {
  border-top: 1px solid #c9c7c0;
}

.booking-room > h4 {
  background-color: #f5f1e3;
  padding: 12px 24px;
  font-size: 16px;
}

.booking-option {
  padding: 0 24px;
}

.booking-option .t-title {
  font-size: 14px;
  margin: 0;
}

.qty-box button {
  margin: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  min-height: unset;
  line-height: 1px;
  border: 1px solid #745e00;
  border-radius: 99px;
  color: #745e00;
}

.qty-box .qty {
  width: 30px;
  display: inline-block;
  text-align: center;
  color: #745e00;
  font-size: 16px;
  font-weight: 700;
}

.t-price {
  font-weight: 600;
  color: var(--fs-color-primary);
}

.option-total {
  margin-bottom: 0;
}

.booking-option {
  position: relative;
}

.booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #c9c7c0;
  padding-bottom: 8px;
  padding-top: 4px;
}

button.remove-item {
  margin: 0;
  padding: 0;
  min-height: unset;
  min-width: unset;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a46360;
  color: #a46360;
  border-radius: 99px;
  position: absolute;
  top: 0;
  right: 24px;
}

.room-total {
  display: none;
}

#booking-content .empty {
  padding: 24px;
}

#grand-total {
  margin: 0;
  padding: 24px 24px 12px;
  color: var(--fs-color-primary);
}

.booking-options .booking-option:nth-child(2) {
  padding-top: 8px;
}

.booking-options .booking-option:nth-child(2) .remove-item {
  top: 8px;
}

.option-total {
  color: var(--fs-color-primary);
  font-weight: 500;
}

#booking-submit,
#booking-confirm,
#booking-back {
  background-color: var(--fs-color-primary);
  border-radius: 99px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  width: calc(100% - 48px);
  margin: 0 auto 24px;
  display: block;
}

#booking-back {
  width: fit-content;
  margin: 0;
}

#booking-form {
  background-color: #f8f8f6;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eeede8;
  margin-bottom: 12px;
}

#booking-form input,
#booking-form textarea {
  border-radius: 99px;
  box-shadow: none;
  height: 45px;
  margin-bottom: 0;
}

#booking-form textarea {
  border-radius: 16px;
}

span.error {
  font-size: 14px;
  color: #a46360;
  margin-left: 5px;
}

.phase2 button.remove-item,
.phase2 .qty-box button {
  display: none;
}

.phase2 .qty-box .qty::before {
  content: "Số lượng: ";
}

.phase2 .qty-box .qty {
  display: inline;
}

#booking-btn {
  background-color: var(--fs-color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  height: 45px;
  display: block;
  line-height: 45px;
  border-radius: 99px;
  margin-top: 24px;
}

.contact-section > .section-content > .row > .col > .col-inner {
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 62px 42px;
}

.contact-section .contact-address-col .section-heading-title--small {
  color: var(--secondary-color);
}

.contact-form-col form .form-title {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 450;
  line-height: normal;
}

.contact-form-col form .form-desc {
  color: #4f4f4f;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 23px;
}

.contact-form-col form input,
.contact-form-col form textarea {
  margin-bottom: 20px;
}

.contact-form-col .wpcf7-submit {
  margin-bottom: 0;
}

.contact-form-col textarea,
.contact-form-col input:not([type="submit"]) {
  background-color: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  box-shadow: none;
  color: #666;
  font-size: 16px;
  max-width: 100%;
  padding: 10px 20px;
  transition:
    color 0.3s,
    border 0.3s,
    background 0.3s,
    opacity 0.3s;
  vertical-align: middle;
  width: 100%;
  height: 50px;
}

.search-box {
  position: absolute;
  bottom: 100px;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
}

.box-search {
  background: #ffffff;
  border: 1px solid #eee6dd;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 24px;
}

.box-search .col {
  padding-bottom: 0;
}

.box-search * {
  margin: 0;
}

.form-item {
  position: relative;
}

.form-item label {
  color: #575757;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  left: 12px;
}

.form-item select,
.form-item input {
  height: 42px;
  box-shadow:
    0 -1px 0 0 hsla(54, 8%, 75%, 0.27),
    0 1px 0 0 hsla(54, 8%, 75%, 0.27),
    inset 0 0 0 0 rgba(0, 0, 0, 0.08),
    0 0 0 1px hsla(54, 8%, 75%, 0.27);
  padding: 12px 30px 0 12px;
  font-size: 13.5px;
  font-weight: 500;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.sf-providers-container:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22%3E%3Cpath fill=%22%23CBAD24%22 d=%22M12%2016.5L5%209.5L6.5%208L12%2013.5L17.5%208L19%209.5Z%22/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: " ";
  cursor: pointer;
  display: block;
  height: 24px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  width: 24px;
  margin: 6px 6px 9px -24px;
  right: 0;
}

#find-room-btn {
  font-weight: 500;
  font-size: 1rem;
  border-radius: 60px;
  color: #fff;
  height: 2.75rem;
  background-color: var(--primary-color);
  width: 100%;
  border: none;
  line-height: 2.75rem;
  display: block;
  text-align: center;
}

.home1 {
  position: relative;
}

#footer p {
  margin-bottom: 8px;
}

@media only screen and (max-width: 48em) {
}
