body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

a,
a:hover {
  text-decoration: unset;
}

/* CSS */
.btn-primary-custom {
  background-color: initial;
  background-image: linear-gradient(-180deg, #00d775, #00bd68);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  overflow: hidden;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  border: 0;
}

.btn-primary-custom:hover {
  background: #00bd68;
}

.btn-secondary-custom {
  background-color: initial;
  background-image: linear-gradient(-180deg, #ff7e31, #e62c03);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  overflow: hidden;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  border: 0;
}

.btn-secondary-custom:hover {
  background: #ff7e31;
}

.btn-floating {
  background-color: initial;
  background-image: linear-gradient(-180deg, #ff7e31, #e62c03);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: #ffffff;
  cursor: pointer;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  overflow: hidden;
  padding: 5px;
  pointer-events: auto;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  border: 0;
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 999;
}

.btn-floating:hover {
  background: #e62c03;
}

.btn-cart {
  cursor: pointer;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  border: 0;
  position: relative;
  border-radius: 4px;
}
.btn-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
}

/* ----------------------------------------------- */

label {
  font-weight: 600;
  color: #101010;
  font-size: 14px;
}

.banner_section {
  /* background-image: linear-gradient(to right, #000000ab, #000000c7),
    url(../images/lulung_banner.jpg); */
  background-size: 100%;
  background-position: center;
}

.banner_content_col {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.904);
  display: flex;
  padding: 10px 20px;
}

.banner_content_image {
  height: 70px;
  object-fit: contain;
  margin-right: 20px;
}

.header_logo {
  height: 60px;
  object-fit: contain;
}

/* ------------------------------------------- */

/* ========================================= */
.rooms_wrapper {
  padding: 15px;
  background: white;
  box-shadow: 0px 0px 10px lightgrey;
  margin-top: 10px;
  border-radius: 5px;
}
.rooms_wrapper .title {
  font-size: 18px;
  font-weight: 600;
  color: #015b60;
  margin-top: 0px;
  margin-bottom: 2px;
}

.rooms_wrapper .priceTag {
  margin-top: 0px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #cb381f;
  font-size: 22px;
}

.room_image {
  width: 100px;
}

.rooms_detail_wrapper {
  padding-top: 8px;
  padding-bottom: 6px;
  background: #f5f5f5;
  margin-top: 6px;
  margin-bottom: 6px;
}

.rooms_detail_wrapper label {
  font-weight: 700;
}

/* Footer */
.footer {
  text-align: center;
  font-size: initial;
  background-color: #0c0c0c;
  padding: 5px;
  color: #dfdfdf;
}

/* ------------------------------ */
.offcanvas-cart-table th,
.offcanvas-cart-table td {
  padding: 4px 8px;
}

/* ------------------------------------ */
.spinner_wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #0f0f0fe0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 70.4px;
  height: 70.4px;
  --clr: rgb(247, 197, 159);
  --clr-alpha: rgb(247, 197, 159, 0.1);
  animation: spinner 1.6s infinite ease;
  transform-style: preserve-3d;
}

.spinner > div {
  background-color: var(--clr-alpha);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 3.5px solid var(--clr);
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-35.2px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(35.2px);
}

@keyframes spinner {
  0% {
    transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
  }

  50% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
  }

  100% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
  }
}
