/* Roboto Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Playfair Font */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
:root {
  --primaryColor: #13357b;
  --secondaryColor: hsl(0, 0%, 100%);
  --blackColor: #0b0b0b;
  --whiteColor: hsl(0, 0%, 100%);
  --iconColor: #595959;
  --grayColor: #b1b1b1;
  --yellowColor: #ffb700;

  --lightBlueColor: #1d5fe2;
  --blueBlack: #041422;

  --playfairFont: "Playfair Display", serif;
}

.backgroundBlue {
  background-color: var(--primaryColor) !important;
}
.w155px {
  width: 155px;
}

.linkFontSize {
  font-size: 15px !important;
  font-weight: 300 !important;
}

.primaryBtn {
  outline: none;
  border: 1px solid var(--secondaryColor);
  background-color: transparent;
  padding: 5px 15px;
  border-radius: 2px;
  color: var(--whiteColor);
  font-size: 15px !important;
  font-weight: 300 !important;
  transition: all 0.2s ease-in-out;
}

.primaryBtn:hover {
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  font-weight: 500 !important;
}

.overlayPara {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
  color: var(--secondaryColor);
}

.social {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}

button:active {
  transform: scale(0.95);
}

button:focus {
  outline: none;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  transition: all 0.3s;
  background-color: rgb(6 21 37);
}

.header-fade {
  background-color: var(
    --primaryColor
  ) !important; /* Adjust the opacity as needed */
}

.ghost {
  border-radius: 20px;
  border: 1px solid var(--secondaryColor);
  background-color: transparent;
  color: var(--secondaryColor);
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}
.ghost:hover {
  background-color: var(--secondaryColor);
  color: var(--lightBlueColor);
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) all;
}

.ghost:active {
  transform: scale(0.65);
}
.loginForm {
  background-color: var(--secondaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  height: 100%;
}

.signUpInputBox,
.signInInputBox {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
  outline: none;
}

.clientLoginMainDivContainer {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 480px;
}

.clientformContainer {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}

.clientLoginMainDivContainer.right-panel-active .sign-in-container {
  transform: translateX(100%);
}

.sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}

.clientLoginMainDivContainer.right-panel-active .sign-up-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

@keyframes show {
  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}

.clientLoginMainDivContainer.right-panel-active .overlay-container {
  transform: translateX(-100%);
}

.overlayDiv {
  background: -webkit-linear-gradient(to right, #00c6fb, #356fcc) !important;
  background: linear-gradient(to right, #00c6fb, #356fcc) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 0 0 !important;
  color: #ffffff !important;
  position: relative !important;
  left: -100% !important;
  height: 100% !important;
  width: 200% !important;
  transform: translateX(0) !important;
  transition: transform 0.6s ease-in-out !important;
}

.clientLoginMainDivContainer.right-panel-active .overlayDiv {
  transform: translateX(50%) !important;
}

.overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.overlay-left {
  transform: translateX(-20%);
}

.clientLoginMainDivContainer.right-panel-active .overlay-left {
  transform: translateX(0);
}

.overlay-right {
  right: 0;
  transform: translateX(0);
}

.clientLoginMainDivContainer.right-panel-active .overlay-right {
  transform: translateX(20%);
}

.social-container {
  margin: 20px 0;
}

.social-container a {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
}

@media screen and (max-width: 768px) {
  .clientLoginMainDivContainer {
    width: 100%;
  }

  .form-container {
    width: 100%;
  }

  .overlay-container {
    width: 100%;
  }

  .overlayDiv {
    width: 100%;
  }

  .overlay-panel {
    width: 100%;
  }

  .overlay-left,
  .overlay-right {
    transform: translateX(0);
  }

  .clientLoginMainDivContainer.right-panel-active .overlay {
    transform: translateX(0);
  }

  .clientLoginMainDivContainer.right-panel-active .sign-up-container,
  .clientLoginMainDivContainer.right-panel-active .sign-in-container {
    transform: translateX(0);
    opacity: 1;
  }
}

.wrapperSignInForm,
.mobileWrapperSignInForm,
.signInFormPasswordDiv,
.mobilePasswordWrapper {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
:where(.OTPmainDiv, .OTPform, .mobileOTPform, .mobileOTPmainDiv) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.OTPform {
  row-gap: 20px;
}
.mobileOTPmainDiv,
.OTPmainDiv {
  /* padding: 30px 20px; */
  border-radius: 12px;
  row-gap: 20px;
  width: 100%;
  /* box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 20%); */
}

/* .OTPmainDiv header {
  height: 65px;
  width: 65px;
  background: #4070f4;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
} */
.OTPmainDiv h4 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
}
.OTPform .OTPInputField {
  flex-direction: row;
  column-gap: 20px;
  display: flex;
}
.mobileOTPform .OTPInputField {
  flex-direction: row;
  column-gap: 20px;
  display: flex;
}
.sideBarIcon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: #6a6a6a;
  align-items: center;
  justify-content: center;
}
.OTPInputField input {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}
.OTPInputField input:focus {
  box-shadow: 0 0px 10px rgb(175 174 174);
  border: 1px solid var(--lightBlueColor);
}
.OTPInputField input::-webkit-inner-spin-button,
.OTPInputField input::-webkit-outer-spin-button {
  display: none;
}
.BtnVerifyOTP {
  margin-top: 25px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 9px 0;
  cursor: pointer;
  border-radius: 6px;
  pointer-events: none;
  background: #89a8e9;
  transition: all 0.2s ease;
}
.BtnVerifyOTP.active {
  background: var(--primaryColor);
  pointer-events: auto;
}
.BtnVerifyOTP:hover {
  background-color: #2e5cb9 !important;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) all;
}
.signInFormPasswordDiv {
  display: none;
  /* Add styles for the password input form */
}
.signUpForm {
  font-size: 14px !important;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.OTPTimerDiv {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin: 20px 0 0 0;
}
.timeCountDown {
  font-size: 14px;
  color: var(--lightBlueColor);
}
.btnRestartTime {
  border: none;
  font-size: 14px;
  background-color: transparent;
}
.btnRestartTime:hover {
  text-decoration: underline;
}
.forgetPasswordBtn {
  display: flex;
  margin: 20px 0 0 0;
  justify-content: end;
}
.forgetPasswordBtn button {
  padding: 7px 20px;
  font-weight: 500;
  font-size: 14px;
  color: var(--primaryColor);
  background: transparent;
  border: 1px solid var(--lightBlueColor);
  border-radius: 3px;
  transition: 0.3s ease all;
}

.forgetPasswordBtn button:hover {
  color: var(--secondaryColor);
  background: var(--primaryColor);
  border: 1px solid white;
}
.forgetPasswordText {
  color: var(--lightBlueColor);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signInBtn {
  display: inline-flex;
  border: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--secondaryColor);
  background-color: var(--primaryColor);
}
.signInBtn:hover {
  background-color: #2e5cb9 !important;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) all;
}
.hrOrLine hr {
  width: 150px;
}
.hrOrLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}
.googleIcon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  border: 1px solid var(--primaryColor);
  font-size: 19px;
  border-radius: 50px;
  color: var(--primaryColor);
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease all;
}
.googleIcon:hover {
  color: var(--secondaryColor);
  background-color: var(--primaryColor);
}

.footerBg {
  margin-top: 150px;
  background-color: rgba(19, 54, 123, 0.25) !important;
}

.footerBgImage {
  background-image: url(../Img/Footer_BackgroundImage.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  color: var(--primaryColor);
  padding: 10px;
}
.fontSize25 {
  font-size: 25px;
}
.fontSize20 {
  font-size: 20px;
}
.fontSize14 {
  font-size: 14px;
}

.footerHeader {
  font-size: 20px;
  font-weight: 500;
  color: var(--blackColor);
}
.footerBgImage .container ul {
  list-style-type: none;
  padding-left: 0;
}
.viewProfile a {
  color: var(--lightBlueColor);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.menuIconBtn {
  width: 50px;
  border: none;
  background-color: transparent;
  color: var(--secondaryColor);
  font-size: 25px;
}
.offcanvas-header {
  padding: 10px 20px !important;
  background-color: var(--secondaryColor);
  box-shadow: 0 2px 10px #00000069;
  z-index: 55;
  position: sticky;
}
.offcanvasHeaderG {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profileDiv {
  width: 100%;
  background-color: var(--secondaryColor);
  position: relative;
}
.sideBarTitle,
.accountDeatils {
  padding: 0;
  display: flex;
  column-gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.sideBarLink {
  color: gray;
  font-size: 14px;
  padding: 5px 0px 5px 45px !important;
  text-decoration: none;
}
.logOutBtn {
  display: inline-flex;
  column-gap: 10px;
  align-items: center;
  color: #fe4444 !important;
}
.logOutBtn:hover {
  text-decoration: none !important;
  color: #fe4444 !important;
  background-color: #d93a3a36 !important;
}
.logOutIcon {
  width: 15px;
}
.sideBarLink:hover {
  background-color: #80808036;
  color: #0d6efd;
  border-radius: 5px;
}
.sideBarIcon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: #6a6a6a;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--lightBlueColor);
}
/* Holiday Package Style Start */
.hotelBody {
  position: relative;
  min-height: 220px;
}
.hotelBodyBG {
  background-image: linear-gradient(0deg, #15457b, #051423);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.holidayPackageTitleDiv {
  display: flex;
  flex-direction: column;
  /* justify-content: end; */
  height: 100%;
}
.holidayPackageTitle {
  font-size: 30px;
  color: white;
  font-family: var(--playfairFont);
}

.holidayPackageSubTitle {
  font-size: 16px;
  color: white;
}
.holidayPackageSearchFormDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: -50px;
}
.holidaySearchPackageSearchFormDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: -10px;
}

.holidayPackageSearchForm {
  background: var(--secondaryColor);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #00000061;
}
.searchBtn {
  border: none;
  border-radius: 75px;
  color: var(--secondaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  background-color: var(--primaryColor);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.2s ease all;
}
.addAmount {
  padding: 7px 20px;
  border-radius: 5px;
  color: var(--secondaryColor);
  z-index: 1;
  background: #13357b;
  position: relative;
  font-size: 16px;
  transition: all 250ms;
  overflow: hidden;
}
.searchBtn:hover {
  background-color: var(--lightBlueColor);
}
.rightSideBorder {
  border-right: 2px solid var(--primaryColor);
}
.form-control {
  border: none !important;
  text-transform: capitalize;
  background-color: transparent;
}
.form-control:focus {
  color: var(--blackColor);
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent !important;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--primaryColor) !important;
  transform: scale(0.86) translateY(-1.5rem) translateX(1rem) !important;
}

/* Holiday Package Style End */

.positionBottomClear {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0 0 0;
}
.holidaySearchPositionBottomClear {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 0 0;
}
.imageShowingDiv {
  row-gap: 20px;
  padding: 0;
}
.packagesTitle {
  font-size: 30px;
  font-family: var(--playfairFont);
  color: var(--primaryColor);
}
.packagesSubTitle {
  font-size: 18px;
}
.holidayPackagesThemeImage {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 375px;
}

.holidayPackagesThemeImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
/* .holidayPackagesImageOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
} */
.holidayPackagesThemeImage img {
  transition: all 0.3s;
}

.holidayPackagesContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #00000066;
  transition: all 0.3s;
}
.holidayPackagesContent:hover {
  background: transparent;
}
.holidayPackagesThemeImage:hover img {
  /* background: transparent; */
  transform: scale(1.1);
}
.holidayPackagesContent div {
  font-size: 28px;
  font-family: var(--playfairFont);
  color: var(--secondaryColor);
}
.holidayPackagesContent button {
  border: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 30px;
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  border-radius: 5px;
  transition: 0.2s all;
}

.history {
  height: 212px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  row-gap: 15px;
  padding: 10px 25px;
  transition: 0.3s all;
  border: 0.5px solid rgba(221, 221, 221, 0.823);
}
.history:hover {
  box-shadow: 0px 0px 13px #00000052;
}
.holidayTripIcon {
  width: 23%;
  display: flex;
  justify-content: center;
  height: 82px;
}
.holidayTripIconTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.holidayTripIconTitle p {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--primaryColor);
  font-family: var(--playfairFont);
}
.holidayTripIconSubTitle {
  font-size: 13px;
  text-align: center;
}
.holidayStayConnectedArticle {
  background-color: #f9f9f9;
  padding: 50px 0;
}
.holidayStayConnected {
  min-height: 450px;
  padding: 30px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../Img/Map.svg);
}
.stayConnectedFormTitle {
  font-family: var(--playfairFont);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--primaryColor);
  margin: 0 0 20px 0;
}
.stayConnectedForm {
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}
.stayConnectedFormBtn {
  border: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 30px;
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  border-radius: 5px;
  transition: 0.2s all;
  width: 100%;
}
.leftSideHolidayStayConnected {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  row-gap: 25px;
}
.leftSideHolidayTitle {
  font-size: 28px;
  font-family: "Playfair Display";
  color: var(--primaryColor);
  font-weight: 500;
}
.mobileIcon {
  border: 1px solid var(--primaryColor);
  /* padding: 10px; */
  border-radius: 50px;
  width: 40px;
  background-color: var(--secondaryColor);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
.mobileIcon:hover {
  color: var(--secondaryColor);
  background-color: var(--primaryColor);
}
.mobileNumberDiv a,
.mailIdDiv a {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: var(--blackColor);
}

/* Input box Ui Start */
.stayConnectedInputBox {
  position: relative;
}

.stayConnectedInputBox input {
  font-size: 100%;
  padding: 0.5em 0.5em 0.5em 1em;
  outline: none;
  border: 2px solid rgb(200, 200, 200);
  background-color: var(--secondaryColor);
  border-radius: 5px;
  width: 100%;
}

.stayConnectedInputBox label {
  font-size: 100%;
  position: absolute;
  left: 0;
  padding: 0.5em;
  margin-left: 0.5em;
  pointer-events: none;
  transition: all 0.3s ease;
  color: rgb(100, 100, 100);
}

.stayConnectedInputBox :is(input:focus, input:valid) ~ label {
  transform: translateY(-65%) translateX(0.5em) scale(0.9);
  margin: 0em;
  color: var(--lightBlueColor);
  padding: 0 0.8em;
  background-color: var(--secondaryColor);
}

.stayConnectedInputBox :is(input:focus, input:valid) {
  border-color: var(--lightBlueColor);
}
/* Input box Ui End */

/* DropDown Ui Start */

.select-menu {
  width: 100%;
}
.select-menu .select-btn {
  display: flex;
  /* height: 55px; */
  background: #fff;
  padding: 9.5px 8px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  border: 2px solid rgb(200, 200, 200);
  cursor: pointer;
  justify-content: space-between;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
}
.select-btn i {
  color: var(--lightBlueColor);
  font-size: 18px;
  transition: 0.3s;
}
.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu .options {
  position: absolute;
  width: 320px;
  padding: 0px;
  margin: 10px 0 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: none;
  height: fit-content;
  max-height: 200px;
  overflow-y: scroll;
}
.select-menu.active .options {
  display: flex;
  padding: 10px 5px;
  flex-direction: column;
  z-index: 5;
  box-shadow: 0 0 10px #00000054;
}
.options .option {
  display: flex;
  column-gap: 5px;
  cursor: pointer;
  padding: 7px 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.options .option:hover {
  background: #f2f2f2;
  border-radius: 0px;
}

.option .option-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--grayColor);
}
.dropDownFlagImgIcon {
  width: 30px;
  height: 15px;
  background-color: var(--primaryColor);
}
.dropDownCountryName {
  font-weight: 400;
  color: var(--blackColor);
  font-size: 13px;
}
.sBtn-text {
  font-size: 14px;
}
/* DropDown Ui End */

/* Offer Banner Ui Start */
.bannerSubTitle {
  font-size: 14px;
  font-weight: 400;
}
.bannerTitle {
  font-size: 20px;
  font-weight: 700;
}
.offersBtn {
  border: none;
  font-size: 14px;
  /* font-weight: 400; */
  letter-spacing: 0.5px;
  padding: 7px 15px;
  background-color: var(--lightBlueColor);
  color: var(--secondaryColor);
  border-radius: 5px;
  transition: 0.2s all;
}
.offersBtn:hover {
  background-color: var(--primaryColor);
}
/* Offer Banner Ui End */

/* Image Swiper Ui Start */

.imageSlider {
  width: 100%;
  margin: 35px 0;
  height: 350px;
}

.slider {
  margin: 0 0 0 50px;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

.slider .image-items {
  height: 100%;
  column-gap: 35px;
}

.slider .image-items .image {
  height: 100%;
  margin-right: 0 !important;
}

.slider .image-items .image img {
  height: 100%;
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.arrowButton {
  position: absolute !important;
  top: 50% !important;
  color: black !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background-color: white !important;
  padding: 10px !important;
}

.arrowButton.left {
  left: 0 !important;
}

.arrowButton.right {
  right: 0 !important;
}

/* Define styles for the swiper button */
.swiper-button-prev,
.swiper-button-next {
  color: var(--grayColor);
  font-size: 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  /* position: relative; */
}

.swiper-button-prev::after {
  content: "\f053";
  font-family: "fontawesome";
  font-size: 12px;
  color: var(--grayColor);
}
.swiper-button-next::after {
  content: "\f054";
  font-family: "fontawesome";
  font-size: 12px;
  color: var(--grayColor);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--secondaryColor) !important;
  background-color: var(--primaryColor) !important;
  transition: 0.3s all;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--secondaryColor);
}

/* .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\f053";
  font-family: "fontawesome";
  font-size: 12px;
  color: var(--grayColor);
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\f054";
  font-family: "c";
  font-size: 12px;
  color: var(--grayColor);
}
.swiper-button-prev:hover {
  color: var(--secondaryColor);
  transition: 0.3s all;
  background-color: var(--primaryColor);
} */

/* .arrowButton::after {
	font-size: 20px !important;
} */

@media only screen and (max-width: 868px) {
  .slider {
    margin: 0 5px;
  }
  .swiper-wrapper {
    column-gap: 0px !important;
  }
}
.sideBarTitle {
  padding: 0;
  display: flex;
  column-gap: 10px;
  font-size: 14px;
}
.sideBarIcon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: #6a6a6a;
}

.custom-active-slide {
  /* width: 450px !important; Width for the active slide */
  transition: all 0.3s ease-in-out;
}

.effect-2 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.effect-2 .effect-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.effect-2 .effect-img img {
  position: relative;
  width: 100%;
  height: auto;
  transform: scale(1.2);
  bottom: -25px;
  transition: 0.5s;
}

.effect-2:hover .effect-img img {
  bottom: 0;
}
.form-group {
  margin-bottom: 0 !important;
}
.effect-2 .effect-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  top: 50%;
  /* left: 0; */
  text-align: center;
  background: rgb(0 0 0 / 40%);
  opacity: 0;
  transition: 0.5s;
}

.effect-2:hover .effect-text {
  top: 0;
  opacity: 1;
}

.effect-2 .effect-text p {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 20px;
}

.effect-2 .effect-btn {
  position: absolute;
  width: 100%;
  padding: 15px 7.5px;
  left: 0;
  bottom: 0;
}

.effect-2 .effect-text h2 {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 15px 0;
}

.effect-2 .effect-btn .btn {
  position: relative;
  display: inline-block;
  height: 35px;
  padding: 7px 15px;
  margin: 0 7.5px;
  color: #333333;
  background: #ffffff;
}
.borderBlue {
  color: var(--primaryColor);
  border-bottom: 2px solid var(--primaryColor) !important;
}
.effect-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.discoverBtn {
  border: none;
  color: var(--primaryColor);
  width: 70%;
  padding: 10px 0px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  transition: 0.2s ease all;
  text-decoration: none;
}
.discoverBtn:hover {
  color: var(--secondaryColor);
  background-color: var(--lightBlueColor);
}

.flightsCityNameTitle {
  font-size: 16px;
  font-weight: 700;
}
.flightsCityDateTime {
  font-size: 14px;
  font-weight: 400;
  color: gray;
}

.hoverEffect:hover img {
  transform: scale(1.05);
  transition: all ease 0.4s;
}

.slider-wrapper {
  position: relative;
}
.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 36px;
  width: 36px;
  z-index: 5;
  color: var(--primaryColor);
  display: flex;
  cursor: pointer;
  font-size: 14px;
  background: var(--secondaryColor);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-100%);
  box-shadow: 0px 2px 8px 0px rgba(26, 26, 26, 0.16);
}
/* .slider-wrapper .slide-button:hover {
  background: #404040;
} */
.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}
.slider-wrapper .slide-button#next-slide {
  right: 0;
}
.slider-wrapper .flightsList {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 25px;
  font-size: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 25px 10px;
}
.slider-wrapper .flightsList::-webkit-scrollbar {
  display: none;
}
.slider-wrapper .flightsList .image-item {
  width: 250px;
  height: 200px;
  object-fit: cover;
}

.container .slider-scrollbar {
  display: none;
}
.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}
.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}
.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}
.slider-scrollbar .scrollbar-thumb:active {
  cursor: grab;
  height: 8px;
  top: -2px;
}
.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}
.internationalFlightsLocation,
.domesticFlightsLocation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.internationalFlightsListWrapper,
.domesticFlightsListWrapper {
  display: flex;
  /* padding: 0 35px; */
  /*  height: 50vh;*/
  align-items: center;
  justify-content: center;
  /* background: #343F4F; */
}
.internationalFlightsList {
  display: flex;
  /* max-width: 1200px; */
  position: relative;
  height: 100%;
  padding: 0;
}
.internationalFlightsList i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343f4f;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.internationalFlightsList i:active {
  transform: translateY(-50%) scale(0.9);
}
.internationalFlightsList i:hover {
  background: #f2f2f2;
}
.internationalFlightsList i:first-child {
  left: 0;
  z-index: 555;
  display: none;
}
.internationalFlightsList i:last-child {
  right: 0;
}
.internationalFlightsList .flightsImages {
  font-size: 0px;
  padding: 15px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.internationalFlightsListImage {
  padding: 0;
  display: flex;
  column-gap: 30px;
  height: 100%;
}
.flightListData {
  width: 250px;
  height: 100%;
}
.flightsImages.dragging {
  cursor: grab;
  scroll-behavior: auto;
}
.flightsImages.dragging .flightsImageView {
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.flightsImages .flightsImageView {
  height: 340px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: 100%;
  height: 100%;
}
.flightsImages .flightsImageView:first-child {
  margin-left: 0px;
}

.holidayCityClear {
  position: absolute;
  top: 5px;
  right: 50px;
  color: gray;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .flightsImages .flightsImageView {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 550px) {
  .flightsImages .flightsImageView {
    width: 100%;
  }
}
/* Image Swiper Ui End */

/* CheckBox Ui Start */
/* .checkbox-wrapper-46 {
  display: flex;
  justify-content: space-between;
}
.checkbox-wrapper-46 div {
  font-size: 15px;
  font-weight: 300;
  color: var(--grayColor);
}
.checkbox-wrapper-46 input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.checkbox-wrapper-46 .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098a9;
  transition: all 0.2s ease;
}
.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #506eec;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.checkbox-wrapper-46 .cbx span:last-child {
  padding-left: 8px;
  font-size: 15px;
}
.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: #506eec;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
  background: #506eec;
  border-color: #506eec;
  animation: wave-46 0.4s ease;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
} */
/* CheckBox Ui End */

.errorMessage {
  position: absolute;
}
.holidayBreadCrumbs {
  color: var(--primaryColor);
}
.holidayBreadCrumbs a {
  color: gray;
}

/* Default styles  */
/* Add your default styles here  */

/* Media query for screens smaller than 576px (e.g., smartphones)  */
@media (max-width: 575px) {
  /* Adjust styles for smaller screens here  */
  .rightSideBorder {
    border-right: 0px;
  }
  .holidayPackageTitle {
    font-size: 20px !important;
    color: white !important;
    font-family: var(--playfairFont) !important;
  }
  .holidaySearchPackageSearchFormDiv {
    bottom: -90px !important;
  }
  .holidayPackageSearchFormDiv {
    bottom: -90px;
  }
  .errorMessage {
    position: static;
  }
  .holidaySearchPositionBottomClear {
    margin: 75px 0 0 0;
  }
  .form-floating > label {
    display: none;
  }
  .OffersTitle {
    font-size: 22px;
  }
}

/* Media query for screens between 576px and 767px (e.g., tablets)  */
@media (min-width: 576px) and (max-width: 767px) {
  /* Adjust styles for tablets here  */
  .rightSideBorder {
    border-right: 0px;
  }
  .holidayPackageTitle {
    font-size: 30px !important;
    color: white !important;
    font-family: var(--playfairFont) !important;
  }
  .holidayPackageSearchFormDiv {
    bottom: -90px;
  }
  .holidaySearchPackageSearchFormDiv {
    bottom: -90px !important;
  }
  .errorMessage {
    position: static;
  }
  .holidaySearchPositionBottomClear {
    margin: 75px 0 0 0;
  }
  .form-floating > label {
    display: none;
  }
}

/* Media query for screens between 768px and 991px (e.g., small laptops)  */
@media (min-width: 768px) and (max-width: 991px) {
  /* Adjust styles for small laptops here  */
  .holidayPackageTitle {
    font-size: 30px;
  }
  .hotelBody {
    min-height: 200px !important;
  }
}

/* Media query for screens between 992px and 1199px (e.g., medium laptops)  */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Adjust styles for medium laptops here  */
}

/* Media query for screens larger than 1200px (e.g., large laptops and desktops)  */
@media (min-width: 1200px) {
  /* Adjust styles for large laptops and desktops here  */
}
