@font-face {
  font-family: "Raleway-Regular";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"),
    url("../fonts/Raleway-Regular.woff") format("woff"),
    url("../fonts/Raleway-Regular.otf") format("otf"),
    url("../fonts/Raleway-Regular.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway-Bold";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"),
    url("../fonts/Raleway-Bold.woff") format("woff"),
    url("../fonts/Raleway-Bold.otf") format("otf"),
    url("../fonts/Raleway-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway-Medium";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"),
    url("../fonts/Raleway-Medium.woff") format("woff"),
    url("../fonts/Raleway-Medium.otf") format("otf"),
    url("../fonts/Raleway-Medium.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: "#FF3300";
  --border-color: "#999999";
  --white-bg: "#fff";
  --gray-text: "#999999";
  --gray-bg: "#f9f9f9";
}

/* Common css */
@media screen and (min-width: 1500px) {
  .container {
    max-width: 1300px;
  }
}

.page-sections .page-sections__links .page-sections__link__label {
  font-family: "Raleway-Bold";
}

/*p {
  font-family: "Raleway-Regular";
}
*/
h1 {
  font-family: "El Messiri", sans-serif;
  font-weight: 600;
  font-size: 28px;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "El Messiri", sans-serif;
  font-weight: 600;
}

.gray-text {
  color: #999999 !important;
}

.primary-text {
  color: orange;
}

.form-control {
  font-size: 14px;
  height: fit-content;
  -webkit-box-flex: 1;
  text-overflow: ellipsis;
}

input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.custom-checkbox {
  margin-bottom: 1px;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox label.checkbox {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 5px;
  margin-bottom: 0;
}

.custom-checkbox label.checkbox .check-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 24px;
}

.find-holday {
  background-color: #f9f9f9;
  padding-top: 38px;
  padding-bottom: 60px;
  margin-bottom: 30px;
}

.custom-checkbox label.checkbox .check-box svg {
  width: 100%;
  height: auto;
}

.custom-checkbox label.checkbox .check-box svg.checked {
  display: none;
}

.custom-checkbox input:checked+label.checkbox .check-box svg.unchecked {
  display: none;
}

.custom-checkbox input:checked+label.checkbox .check-box svg.checked {
  display: block;
}

.custom-checkbox label.checkbox .checkbox-label {
  font-family: "Raleway-Regular";
  font-size: inherit;
  font-size: 14px;
}

.custom-checkbox input:checked+label.checkbox {
  background: rgba(255, 51, 0, 0.125);
}

select {
  background-image: url(../images/down-arrow.svg);
  background-size: 18px 8px;
  background-position: center right 4px;
  background-repeat: no-repeat;
  padding: 8px 24px 8px 15px !important;
}

.heading-text {
  margin: 0px 0px 24px;
  font-style: normal;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
}

.custom-dropdown {
  width: 100%;
  position: relative;
}

.custom-dropdown .dropdown-toggle span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  max-width: 147px;
}

.custom-dropdown .dropdown-toggle::after {
  display: none;
}

.custom-dropdown .dropdown-toggle {
  position: relative;
  font-size: 14px;
  padding: 13px 11px;
  border: 1px solid #999999;
  border-radius: 4px;
  padding-right: 20px;
  width: 100%;
  background-color: #ffffff;
  height: 49px;
}

.custom-dropdown .dropdown-toggle .drop-icno {
  max-width: 24px;
  height: auto;
  width: 22px;
  /* font-size: 1.5rem; */
}

.custom-dropdown .dropdown-toggle .drop-icnos {
  max-width: 24px;
  height: 20px;
  width: 20px;
  /* font-size: 1.5rem; */
}

.custom-dropdown .dropdown-toggle .drop-icnos-class {
  max-width: 24px;
  height: 17px;
  width: 13px;
  /* font-size: 1.5rem; */
}

.custom-dropdown .dropdown-toggle .down-arrow {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%) rotate(0);
  transition: all 0.5s ease;
}

.custom-dropdown .dropdown-toggle .down-arrow.rotate {
  transform: translateY(-50%) rotate(180deg);
}

.custom-dropdown .dropdown-menu {
  width: 100%;
  padding: 22px 8px;
  max-height: 300px;
  overflow: auto;
}

.custom-dropdown .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  border-radius: 5px;
  line-height: 1.3;
  font-size: 14px;
  text-decoration: none;
  word-break: break-word;
  white-space: normal;
}

label.custom-dropdown .dropdown-menu .dropdown-item.active {
  background-color: rgba(255, 51, 0, 0.08) !important;
}

.custom-dropdown .dropdown-menu .dropdown-item.active,
.custom-dropdown .dropdown-menu .dropdown-item:active {
  background-color: transparent;
  color: #000;
}

.custom-dropdown .dropdown-menu .dropdown-item:focus,
.custom-dropdown .dropdown-menu .dropdown-item:hover {
  background: #FF330020 !important;
  color: #000;
}

.room-list-wrapper .room-item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000000de;
}

.room-header p {
  margin-bottom: 0;
}

.room-header {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

    .room-header .room-text{
        font-size: 18px !important;
    }

    .room-header .room-text,
    .text-small {
        font-size: 14px;
        color: #333333;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }

.room-text {
  font-size: 18px;
  color: #333333;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.room-item .counts-wrapper {
  display: grid;
  grid-template-columns: auto auto;
  gap: 18px;
}

.count-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80px;
  width: 100%;
  margin-top: 8px;
}

.c-wrapper {
  min-width: 80px;
  width: 100%;
  flex-shrink: 0;
}

.count-wrapper p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
}

.count-wrapper .minus-btn.disabled,
.count-wrapper .plus-btn.disabled {
  opacity: 0.5;
}

.count-wrapper .minus-btn,
.count-wrapper .plus-btn {
  width: 24px;
  height: 24px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-size: 40px;
}

.child-age {
  max-width: 90px;
  /* margin-top: 20px; */
}

.dropdown-menu.room-box {
  position: absolute;
  top: 100%;
  width: 300px !important;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  padding: 22px 8px;
  max-height: 580px;
  overflow: auto;
}

.counts-wrapper .count-wrapper .minus-btn,
.counts-wrapper .count-wrapper .plus-btn {
  border: 1px solid rgb(153, 153, 153);
}

.guest-wrapper {
  padding: 0px 5px;
}

.guest-wrapper .room-btn {
  border-radius: 5px;
  box-shadow: none;
  display: inline-block;
  font-family: "Raleway-Regular";
  font-weight: 500;
  font-size: 16px;
  border: none;
  padding: 14px 23px;
  color: rgb(255, 255, 255);
  min-width: 64px;
  background-color: #ff3300;
  margin-top: 10px;
}

.guest-wrapper .room-btn:hover {
  text-decoration: none;
}

.departure-box {
  width: 17.5%;
}

.destination-box {
  width: 24.15%;
}

.date-box {
  width: 19.33%;
}

.class-box {
  width: 15.83%;
}

.guests-box {
  width: 15.83%;
}

.find-btn {
  width: 7.3%;
  align-self: flex-end;
}

.checkbox-container {
  max-height: 140px;
  /* Adjust this value as needed */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.show-more-btn {
  display: block;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  border: 0;
  color: #ff3300;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-family: "Raleway-Regular";
  font-weight: 500;
}

.show-more-btn svg {
  width: 24px;
  height: auto;
  transform: rotate(0);
}

.show-more-btn.show svg {
  transform: rotate(180deg);
}

.show-less {
  max-height: none;
}

.theme-btn {
  margin-top: 20px;
  min-width: 64px;
  line-height: 130%;
  background-color: #ff3300 !important;
  color: #ffffff !important;
  /* padding: 14px 23px; */
  padding: 0;
  /* line-height: 1.5; */
  font-weight: 500;
  border-radius: 5px;
  height: 49px;
  width: 100%;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  font-family: "Raleway-Regular";
}

/* Error Message */
.error-box {
  position: absolute;
  border: 1px solid #ee8369;
  z-index: 99;
  background-color: #ee8369;
  top: 100%;
  width: 100%;
  left: 0;
  transform: translateY(13px);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
}

.error-box.show {
  opacity: 1;
  visibility: visible;
}

.error-box p {
  color: #fff;
  font-size: 16px;
  line-height: 19px;
}

.error-box p::before {
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  background-color: #ee8369;
  top: -9px;
  left: 50%;
  border-top: #ee8369 solid 1px;
  border-left: #ee8369 solid 1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 9;
}

@media screen and (max-width: 1280px) {
  .departure-box {
    width: 20%;
  }

  .destination-box,
  .date-box {
    width: 25%;
  }

  .class-box {
    width: 30%;
  }
}

@media screen and (max-width: 991px) {

  .departure-box,
  .destination-box,
  .date-box,
  .class-box,
  .guests-box,
  .find-btn {
    width: 33.33%;
  }

  .dropdown-menu.room-box {
    left: 0;
    transform: none;
  }

   
}

.text-bold {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: bold;
  font-family: "Raleway-bold";
  margin-left: 1px;
}

@media screen and (max-width: 767px) {

  .departure-box,
  .destination-box,
  .date-box,
  .class-box,
  .guests-box,
  .find-btn {
    width: 50%;
  }
}

@media screen and (max-width: 575px) {
  .date-box {
    width: 100%;
  }

  .dropdown-menu.room-box {
    width: 270px;
  }

  .find-btn {
    width: 100%;
  }
}

.btn:focus {
  outline: none;
}


.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-text {
  background-color: #ff3300;
  border: 1px solid #999999;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-overlays {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
  display: none;
}

.custom-overlays.show {
  display: block;
}

.custom-overlays+.dropdown-menu {
  z-index: 4;
}

.daterangepicker table tr:first-child th:not(.prev):first-child {
  position: relative;
}

.daterangepicker table tr:first-child th:not(.prev):first-child::before {
  position: absolute;
  content: ‘’;
  display: block;
  top: 9px;
  left: 10px;
  color: #fff;
  border: solid #999999;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  padding: 5px;
  transform: rotate(135deg);
  opacity: 0.5;
}

.custom-dropdown .dropdown-toggle.date-drop {
  padding: 0 14px;
}

.custom-dropdown .dropdown-toggle.date-drop input#dateInput {
  padding: 13px 0 !important;
  background-color: transparent;
  font-size: 14px;
  margin-right: -14px;
}

.custom-dropdown .dropdown-toggle.date-drop input#dateInput + .down-arrow{
    pointer-events: none;
}

    @media screen and (max-width: 425px) {
        .daterangepicker {
    left: 16px !important;
    width: calc(100% - 30px);
  }

  .daterangepicker .drp-calendar {
    max-width: 100%;
  }
}

.custom-dropdown .dropdown-menu {
  top: 100%;
  margin-top: 3px;
}

.section-index {
  position: relative;
  z-index: 999;
}

.remove-class-checkbox {
    display: none !important;
}

.srch-btn-wrapper a {
    margin-top: 20px;
    min-width: 64px;
    line-height: 130%;
    background-color: #ff3300 !important;
    color: #ffffff !important;
    padding: 0;
    font-weight: 500;
    border-radius: 5px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px !important;
}

