.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: -moz-fit-content;
  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;
}

.enquire-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.enquire-row span {
  margin-bottom: 0.5rem;
}
.enquire-row input, .enquire-row textarea {
  padding: 0.5rem;
}

input[type=submit] {
  background-color: #FF8E43;
  border: 0;
}

@media (min-width: 1200px) {
  p {
    font-size: 1rem !important;
  }
}

.tab-section ul.nav {
  gap: 1rem;
}
.tab-section .nav-link {
  background-color: rgba(255, 255, 255, 0.15);
}
.tab-section .nav-link.active {
  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%);
}
.tab-section .nav-link.active:hover {
  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%);
}
.tab-section .nav-link:focus, .tab-section .nav-link:focus-within {
  color: white;
}
.tab-section .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.itinerary-section {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 993px) {
  .itinerary-section {
    flex-direction: row-reverse;
  }
}
@media (min-width: 993px) {
  .itinerary-section .tab-content {
    width: 66.6666666667%;
  }
}
.itinerary-section .row {
  display: block;
  margin: 0;
}
.itinerary-section .row > div {
  padding: 0;
}
.itinerary-section .box {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.itinerary-section .box .outer {
  width: 100%;
  display: block;
}
.itinerary-section .box .outer:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
}
.itinerary-section .box .outer:before {
  padding-top: 67.4418604651%;
}
.itinerary-section .box > div:nth-child(2) p, .itinerary-section .box > div:nth-child(2) h4 {
  margin: 0;
}
.itinerary-section .box > div:nth-child(2) h4 {
  margin-bottom: 2rem;
  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%) !important;
  display: table;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
@media (min-width: 1361px) {
  .itinerary-section .box:not(.ads-box) {
    margin-bottom: 0;
  }
}
.itinerary-section .main-box {
  margin-bottom: 3rem;
  width: 100%;
}
.itinerary-section .main-box .outer {
  width: 100%;
  z-index: -1;
}
.itinerary-section .main-box .outer:before {
  padding-top: 130%;
}
@media (min-width: 577px) {
  .itinerary-section .main-box .outer:before {
    padding-top: 110%;
  }
}
@media (min-width: 993px) {
  .itinerary-section .main-box {
    display: table !important;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.itinerary-section .main-box > div:nth-child(2) {
  position: absolute;
  padding: 1.5rem;
  bottom: 0;
  top: auto;
  text-align: left;
}
.itinerary-section .main-box > div:nth-child(2) h1 {
  max-width: 265px;
}
.itinerary-section .row {
  padding: 0;
}
@media (min-width: 769px) {
  .itinerary-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .itinerary-section .row > div {
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 1361px) {
  .itinerary-section .row {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
  }
  .itinerary-section .row > div {
    display: flex;
    gap: 3rem;
    width: 100%;
  }
  .itinerary-section .row > div:nth-child(1) {
    margin-right: 3rem;
  }
  .itinerary-section .row > div .box {
    width: calc(50% - 1.5rem);
  }
  .itinerary-section .row.main-box > div {
    display: block;
  }
}
@media (min-width: 1601px) {
  .itinerary-section .row > div .box > div:nth-child(2) {
    text-align: left;
  }
}

.ads-box .outer:before {
  padding-top: 56.25% !important;
}
.ads-box .outer:after {
  display: none;
}
.ads-box.ads-for-sale {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  padding: 1.5rem;
}
.ads-box.ads-for-sale .outer:before {
  padding-top: 67.4418604651%;
}

.itinerary-text {
  transition: all 0.3s ease-in-out;
  white-space: pre-line;
  cursor: pointer;
}

.calling-artist .outer:before {
  padding-top: 100% !important;
}/*# sourceMappingURL=itinerary.css.map */