.normal-btn, .danger-btn, .info-btn, .success-btn, .warning-btn, .secondary-white-btn, .fouth-btn, .third-btn, .secondary-btn, .primary-btn {
  text-decoration: none;
  padding: 1rem 2rem 1rem 2rem;
  font-size: 1rem;
  color: white;
  border-radius: 0;
  border: 0;
}

.primary-btn {
  color: #fff;
  background-color: #FF8E43;
}

.secondary-btn {
  color: #FF8E43;
  background-color: #fff;
}

.third-btn {
  color: #FF8E43;
  background-color: #000;
}

.fouth-btn {
  color: #FF8E43;
  background-color: #eeeeee;
}

.secondary-white-btn {
  color: #fff;
  background-color: #fff;
}

.warning-btn {
  color: #fff;
  background-color: #D69E2E;
}

.success-btn {
  color: #fff;
  background-color: #38A169;
}

.info-btn {
  color: #fff;
  background-color: #5A67D8;
}

.danger-btn {
  color: #fff;
  background-color: #E53E3E;
}

.master-hamburger-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 111.41px;
  height: 111.41px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  z-index: 1200;
  cursor: pointer;
}
.master-hamburger-container .master-ham-btn {
  display: grid;
  grid-row-gap: 0.5rem;
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
  transition: all 0.7s ease;
}
.master-hamburger-container .master-ham-btn #ham-1 {
  transform: translateX(30%);
}
.master-hamburger-container .master-ham-btn #ham-1, .master-hamburger-container .master-ham-btn #ham-3 {
  width: 13px;
  transition: all 0.7s ease;
}
.master-hamburger-container .master-ham-btn #ham-3 {
  transform: translateX(100%);
}
.master-hamburger-container .master-ham-btn:hover > #ham-1 {
  transform: translateX(100%);
  transition: all 0.7s ease;
}
.master-hamburger-container .master-ham-btn:hover > #ham-3 {
  transform: translateX(30%);
  transition: all 0.7s ease;
}
.master-hamburger-container .master-ham {
  width: 30px;
  height: 3px;
  background-color: #000;
}
.master-hamburger-container .master-ham-text {
  margin-top: 0.2rem;
}

.master-btn-active {
  transform: rotate(0) !important;
  transition: all 0.7s ease;
}

.master-ham-1-active {
  width: 100% !important;
  transform: translate(0) !important;
  transform: rotate(45deg) translate(10px, 10px) !important;
  transition: all 0.7s ease;
}

.master-ham-2-active {
  display: none;
}

.master-ham-3-active {
  width: 100% !important;
  transform: translate(0) !important;
  transform: rotate(-45deg) translate(3px, -3px) !important;
  transition: all 0.7s ease;
}

.small-text {
  font-size: 0.875rem;
}

.rmat-btn, .secondary-btn, .btn, .btn-hollow,
.rmat-btn:hover, .btn:hover {
  padding: 0.75rem 1.75rem;
  border: 0;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, rgba(255, 142, 67, 0.9) 0%, rgba(255, 160, 96, 0.9) 48%, rgba(255, 181, 131, 0.9) 100%);
  border-radius: 6px;
  text-transform: none;
}
.rmat-btn:first-letter, .secondary-btn:first-letter, .btn:first-letter, .btn-hollow:first-letter,
.rmat-btn:hover:first-letter, .btn:hover:first-letter {
  text-transform: uppercase;
}

.btn-hollow {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.secondary-btn {
  background: white;
  color: black;
  border: 1px solid black;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.numeric-pager input {
  font-size: 1.25rem;
  font-weight: bold;
}
.numeric-pager span,
.numeric-pager a {
  background: white;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  font-weight: bold;
}
.numeric-pager > a {
  font-weight: normal;
}
.numeric-pager input[type=submit] {
  background: linear-gradient(90deg, rgba(255, 142, 67, 0.9) 0%, rgba(255, 160, 96, 0.9) 48%, rgba(255, 181, 131, 0.9) 100%);
  color: white;
  border-radius: 6px;
  border: 0;
  min-height: 40px;
  padding: 0 1rem;
}

.truncate {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-line;
  transition: all 0.3s ease-in-out;
}

.navCart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navCart i {
  font-size: 1.125rem;
}

.cart-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(100%, 400px);
  background: white;
  z-index: 1000;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
}
.cart-modal.open {
  transform: translateX(0);
}
.cart-modal .cart-modal-content {
  position: relative;
  height: 100%;
}
.cart-modal .cart-modal-content .cart-modal-content-title {
  display: flex;
  justify-content: space-between;
}
.cart-modal .cart-modal-content #cartModalClose {
  cursor: pointer;
}
.cart-modal .cart-modal-content .cart-modal-inventories {
  display: grid;
  gap: 1rem;
  overflow-y: scroll;
  max-height: 800px;
  padding-right: 1rem;
}
.cart-modal .cart-modal-content .cart-modal-inventories::-webkit-scrollbar {
  width: 3px;
  background-color: rgba(0, 0, 0, 0.01);
}
.cart-modal .cart-modal-content .cart-modal-inventories::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.cart-modal .cart-modal-content .cart-modal-inventories .cart-modal-inventory {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.cart-modal .cart-modal-content .cart-modal-inventories .cart-modal-inventory .outer {
  width: 100px;
  height: 100px;
  min-width: 100px;
}
.cart-modal .cart-modal-content .cart-modal-inventories .cart-modal-inventory > div:not(.outer) {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}
.cart-modal .cart-modal-content .cart-modal-inventories .cart-modal-inventory > div:not(.outer) > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
.cart-modal .cart-modal-content .cart-modal-inventories .cart-modal-inventory > div:not(.outer) > div:nth-child(2) > a {
  padding: 0.5rem 0.65rem;
  width: fit-content;
  display: flex;
  margin-left: auto;
}
.cart-modal .cart-modal-content .cart-modal-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.cart-modal .cart-modal-content .cart-modal-footer .flex {
  justify-content: space-between;
}
.cart-modal .cart-modal-content .cart-modal-footer a {
  width: 100%;
}

.form-control, .form-select {
  padding: 1rem;
}

.form-check-label {
  display: flex;
  flex-direction: column;
}
.form-check-label a {
  font-weight: bold;
}

/* Customize */
/* Branding */
.branding {
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.b-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.ih-logo {
  position: relative;
}

.ih-logo::before {
  content: "";
  background-image: url(../img/logo/Inn-Hotels-Official-white.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100px;
  height: 36px;
  position: absolute;
  z-index: 99;
}

.ih-logo::after {
  content: "";
  background: #fff;
  width: 120px;
  height: 36px;
  position: absolute;
  z-index: 90;
  left: -10px;
}

.childlogo {
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 1;
}

.childlogo img {
  width: 60px;
}

.childlogo li {
  list-style: none;
  margin-right: 2em;
}

.childlogo li:last-of-type {
  margin-right: 0;
}

.childlogo::before {
  position: absolute;
  content: "";
  width: 95%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
}

/* Footer area */
footer {
  background: transparent;
  padding-top: 3em;
  padding-bottom: 3em;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 992px) {
  footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.footer-detail {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
}

.f-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.f-member img {
  width: 150px;
}

.f {
  display: flex;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  padding-left: 1.5em;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.f-findus {
  margin-left: 0;
  border-left: 0;
  padding-left: 0;
}

.f:last-of-type {
  border-right: 0;
  margin-right: 0;
}

.f-t:first-of-type {
  grid-column: span 2;
}

.f-c a, .f-contact span a, .f-findus-guide {
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
}

.f-social-ic {
  margin-top: 0.5em;
  height: 35px;
  display: flex;
}

.f-social-icon {
  width: 40px;
  height: 40px;
  margin-right: 1em;
  overflow: hidden;
}

.f-social-icon i {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-size: 1.5em;
}

.f-social-icon span {
  position: absolute;
  font-size: 0;
  width: 0;
  height: 0;
  opacity: 0;
  background: rgb(59, 89, 152);
  color: rgb(255, 255, 255);
  padding: 0.5em;
  margin-top: 0.5em;
}

.f-social-twitter span, .f-social-twitter .ic-tooltip::before {
  background: rgb(56, 161, 243);
}

.f-social-tripadvisor span, .f-social-tripadvisor .ic-tooltip::before {
  background: rgb(0, 175, 135);
}

.f-social-instagram span, .f-social-instagram .ic-tooltip::before {
  background: rgb(193, 53, 132);
}

.f-social-linkedin span, .f-social-linkedin .ic-tooltip::before {
  background: rgb(0, 119, 181);
}

.f-social-facebook span, .f-social-facebook .ic-tooltip::before {
  background: rgb(59, 89, 152);
}

.f-social-icon:hover .ic-tooltip {
  font-size: 1em;
  width: auto;
  height: auto;
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.ic-tooltip::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  transform: rotate(45deg);
  top: -5px;
  background: rgb(59, 89, 152);
}

.f-social-icon .fa-linkedin-in:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 119, 181);
  z-index: -1;
  transform: translateY(-100%);
}

.f-social-icon .fa-twitter:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(56, 161, 243);
  z-index: -1;
  transform: translateY(-100%);
}

.f-social-icon .fa-tripadvisor:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 175, 135);
  z-index: -1;
  transform: translateY(-100%);
}

.f-social-icon .fa-instagram:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(193, 53, 132);
  z-index: -1;
  transform: translateY(-100%);
}

.f-social-icon .fa-facebook-f:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(59, 89, 152);
  z-index: -1;
  transform: translateY(-100%);
}

.f-social-icon:hover {
  text-decoration: none;
}

.f-social-icon:hover i {
  transition: all 0.3s ease-in-out;
  color: rgb(255, 255, 255);
}

.f-social-icon:hover i:after {
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

.f-social-ic a {
  margin-right: 1em;
}

.f-social-ic a:last-of-type {
  margin-right: 0;
}

.rights-certificate {
  text-align: center;
}

.f-cert img {
  width: 100px;
}

hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.f-ic::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.5em;
}

.f-address::before {
  content: "\f015";
}

.f-email:before {
  content: "\f0e0";
}

.f-tollfree:before {
  content: "\f6b6";
  padding-right: 0.4em;
}

.f-phone:before {
  content: "\f879";
}

.f-sales:before {
  content: "\f590";
}

.f-weddings:before {
  content: "\f70b";
}

.f-ic {
  position: relative;
}

.tooltip {
  opacity: 0;
  width: fit-content;
  position: absolute;
  left: 75%;
  bottom: 0;
  background: white;
  color: black;
  z-index: 2;
  padding: 0.2em;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.f-ic:hover .tooltip {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.tooltip:before {
  content: "";
  width: 5px;
  height: 5px;
  background: white;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  left: -10px;
  top: 50%;
}

.f-copyrights {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
}

.f-terms a {
  margin-right: 0.5em;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Lato", sans-serif;
  font-weight: normal;
}

.f-ic {
  color: rgba(255, 255, 255, 0.6);
}

.f-findus-guide:hover {
  color: rgba(255, 255, 255, 0.6);
}

.f-findus-guide::before {
  content: "\f56d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.5em;
}

.f-subscription input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0;
}
@media (min-width: 375px) {
  .f-subscription input {
    min-width: 300px;
  }
}
.f-subscription input[type=submit], .f-subscription input[type=button] {
  border: 0;
  background: transparent;
  color: white;
  text-transform: none;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 142, 67, 0.9) 0%, rgba(255, 160, 96, 0.9) 48%, rgba(255, 181, 131, 0.9) 100%);
  font-weight: 600;
}
.f-subscription input[type=submit]:first-letter, .f-subscription input[type=button]:first-letter {
  text-transform: capitalize;
}
.f-subscription #SubscribePanel .flex:nth-child(1) > div:nth-child(1) {
  margin-right: 1rem;
}
.f-subscription #SubscribePanel .flex:nth-child(2) {
  flex-direction: column;
}
.f-subscription #SubscribePanel .flex input {
  min-width: auto;
}

@media only screen and (min-width: 1181px) {
  .childlogo::before {
    width: 85%;
  }
}
@media only screen and (max-width: 980px) {
  .childlogo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: initial;
  }
  .childlogo li {
    margin-right: 0;
  }
  .childlogo::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 860px) {
  .f {
    padding-left: 1em;
  }
  .f:first-of-type {
    padding-left: 0;
  }
}
@media only screen and (max-width: 779px) {
  .f-detail {
    grid-template-columns: 1fr;
    justify-items: initial;
  }
  .f {
    margin-bottom: 1em;
    padding-left: 0;
    border: none;
  }
  .f-findus, .f-link {
    margin-right: 1em;
    padding-left: 0;
    border: none;
  }
}
@media only screen and (max-width: 540px) {
  .f-copyrights {
    display: block;
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 430px) {
  .childlogo {
    grid-template-columns: repeat(4, 1fr);
  }
  .f-detail {
    display: block;
    margin: 0 auto;
  }
  .f {
    padding-left: 0;
    border: none;
  }
}
@media only screen and (max-width: 330px) {
  .childlogo {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .nav-area-item a {
    font-size: 1em;
  }
}
.partners-container {
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem !important;
}

.footer-logo-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  gap: clamp(1.5rem, 0.8rem + 3.5vw, 5rem);
  align-items: center;
}
@media (min-width: 576px) {
  .footer-logo-container {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}
@media (min-width: 992px) {
  .footer-logo-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) {
  .footer-logo-container {
    grid-template-columns: repeat(6, 1fr);
  }
}
.footer-logo-container .footer-logo:nth-child(2) img {
  min-width: 100px;
  max-height: 140px;
}
.footer-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*# sourceMappingURL=footer.css.map */
