@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --mainColor: #f7654a;
  --orangColor: #f8f9fa;
  --lightColor: #8fbec4;
  --shadow: rgba(145, 158, 171, 0.2) 0px 4px 5px -1px,
    rgba(145, 158, 171, 0.14) 0px 4px 5px 0px,
    rgba(145, 158, 171, 0.12) 0px 4px 5px 0px;
  --font-family: "Kanit", sans-serif;
  --dancingFont: "Dancing Script", cursive;
  --ratingColor: #ffc908;
  --eeeColor: #eee;
}
body,
html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(250, 244, 244);
}

::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 20px;
}

.dancingFont {
  font-family: var(--dancingFont);
}
.mainColor,
.textMainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}
.bgSecondColor {
  background-color: var(--orangColor);
}
.textOrange {
  color: var(--orangColor);
}
.bgOrange {
  background-color: var(--orangColor);
}
.lightColor,
.textLightColor {
  color: var(--lightColor);
}

.bgLightColor {
  background-color: var(--lightColor);
}
.bgEEE {
  background-color: var(--eeeColor);
}

.ratingColor {
  color: var(--ratingColor);
}
.bg-azura {
  background-color: rgba(203, 229, 229, 0.679);
}

.mainBtn {
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  border: unset;
  padding: 5px 10px;

  &:hover {
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
  }
}
.secBtn {
  background-color: #fff;
  /* color: #fff; */
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 5px 10px;

  &:hover {
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
  }
}

a,
a:hover {
  text-decoration: none;
  color: #000;
  transition: 0.8s all;
}

.font-sm {
  font-size: 12px;
}
.cPointer {
  cursor: pointer;
}

/* header ---> banner */
.icons ul li a i{
  transition: all 0.5s;
}
.icons ul li a i:hover {
  color: #000;
  transform: scale(1.5);
}


@media screen and (max-width: 992px) {
  #banner .contactInfo {
    flex-grow: 1;
  }
}
@media screen and (max-width: 767px) {
  #banner .booking {
    flex-grow: 1;
  }
}

/* navbar */

.navbar {
  --bs-navbar-padding-y: 0;
}
.navbar-brand {
  width: 70px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--mainColor);
}
.searchIcon i {
  transition: all 0.8s;
}
.searchIcon:hover i {
  transform: scale(1.5);
}

/* main section */

main {
  padding-top: 100px;

  
  & .desc select {
    width: 150px !important;
  }

  & .desc select:focus {
    outline: 0;
    border: 0;
  }

  & .mainContent {
    min-height: calc(100vh - 100px);
    width: 100%;
    position: absolute;
    top: 15%;
  }

  /* & .mainContent .desc::after {
    content: "";
    border: 1px solid #ccccccb7;
    margin-left: 12px;
  } */

  /* & .carousel-control-prev {
    left: 70%;
  }
  & .carousel-control-next {
    left: 80%;
  } */

  & .carousel-control-next,
  & .carousel-control-prev {
    top: 50%;
    margin-inline: 30px;
    width: fit-content;
    height: fit-content;
  }
  & .carousel-control-next-icon,
  & .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 15px;
    background-color: #000000c4;
    background-size: 70% 70%;
  }

  & form{
    width: 60%;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%);
  }

  @media screen and (min-width: 992px) and (max-width: 1250px) {
    & .mainContent .desc {
      flex-direction: column;
    }
    & .mainContent .desc i {
      text-align: center;
    }
  }

  @media screen and (max-width: 992px) {
    /* & .carousel-control-prev {
      left: 60%;
    } */

    & .desc h6 {
      text-align: start;
      width: 100px;
    }
  }
}

#offer {
  & figure img {
    transition: 0.8s all;
  }
  & figure img:hover {
    transform: scale(1.3);
  }
}

/* spacial box for icon */
.icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  color: var(--mainColor);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.icon:hover {
  color: #fff;
  background-color: var(--mainColor);
}
.box .sDiv,
.trend.sDiv {
  background-color: #fff;
}
.sDiv,
.sDiv span {
  transition: 0.8s all;
}
.sDiv span:first-child,
.box a:hover {
  color: var(--mainColor);
}
.sDiv:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.sDiv:hover span {
  color: #fff;
}

.boxDesc figure {
  height: 300px;
}

.destinationCart img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.destinationCart::before {
  content: " 3 Tour";
  width: 70px;
  height: 25px;
  border-radius: 10px;
  padding-left: 15px;
  background-color: var(--mainColor);
  position: absolute;
  top: 68%;
  left: 45px;
  z-index: 1000;
}

.controls button {
  transition: 0.8s all;
  position: relative;
}
.controls button::after {
  content: "";
  border: 8px solid;
  border-color: var(--mainColor) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  display: none;
}

.controls button:hover,
.controls button:focus {
  background-color: #fff;
  box-shadow: var(--shadow);
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.controls button:hover::after,
.controls button:focus::after {
  display: block;
}

.imgLayer {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
}
.imgLayer div:first-child {
  background-color: orange;
}

.trend {
  position: absolute;
  top: -35px;
  right: 10px;
}

.Btn {
  background-color: #fff;
  color: var(--mainColor);
}
.Btn:hover {
  background-color: var(--mainColor);
  color: #fff;
  border: 1px solid #fff;
}

.container-fluid.bannerSec {
  background-image: url("../images/banner.png");
  background-position: 50%;
  background-size: cover;
  height: 400px;
  font-size: 110px;
}

.layerSec {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translate(-50%, 2%);
}

@media screen and (max-width: 767px) {
  .container-fluid.bannerSec {
    font-size: 50px;
  }
  .layerSec h3 {
    font-size: 16px;
  }
  .layerSec p {
    font-size: 16px;
  }
}

.cart {
  background-color: #fff;
}
.cart i,
.cart a {
  color: var(--mainColor);
}

.cart p {
  color: #aaa;
}
.cart:hover {
  background: linear-gradient(150deg, #f7654aa8, #f7654a);

  & i,
  & h3,
  & a,
  & p {
    color: #fff;
  }
}

.blogCart .imageLayer {
  position: absolute;
  width: 180px;
  height: 40px;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  transition: all 0.8s;
  overflow: hidden;
}
.blogCart .imageLayer figure {
  width: 25%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
  border: 3px solid #fff;
}

.blogCart .imageLayer figcaption {
  transform: translateX(-200%);
  transition: all 1s;
  padding-left: 5px;

  /* opacity: 0; */
}

.blogCart .image:hover {
  & .imageLayer {
    background-color: #fff;
  }

  & .imageLayer figcaption {
    /* opacity: 1; */
    transform: translateX(0);
  }
}

.headCart figure img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
@media screen and (max-width: 500px) {
  .headCart svg {
    width: 30px;
  }

  .headCart figure h3,
  .headCart figure p,
  .headCart + div p {
    font-size: 13px;
  }
}

.headContact .contactPhoto {
  transform: rotate(-20deg) translate(-25px, -35px);
}

@media screen and (max-width: 700px) {
  .headContact .photoBox {
    display: none;
  }
}

.social-links .icon:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.contactLink a {
  color: #6c756c;
}
footer a:hover,
.contactLink a:hover {
  color: var(--mainColor);
}

.form-control:focus {
  color: var(--mainColor);
  border-color: var(--mainColor);
  box-shadow: 0 0 0 0.25rem #f7644a21;
}

/* section banner  */
.banner figure {
  background: linear-gradient(150deg, #00000093 40%, #00000018 70%),
    url("../images/banner.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  transition: all 1s;
  margin: -15px -10px -15px -15px;
}
.banner figcaption {
  top: 80%;
  left: 50%;
  transform: translate(-50%, -80%);
}

.banner figure:hover {
  background: linear-gradient(150deg, #00000018, #00000018),
    url("../images/banner.png");
}

/* about */
.imgBox .upImg {
  top: 40%;
}
.imgBox .upImg img {
  position: relative;
  left: 25%;
  z-index: 33;
}
.imgBox .upImg div {
  background-color: #ffffffd8;
  width: 30%;
  top: 40%;
  left: 20%;
  z-index: 333;
}

@media screen and (max-width: 992px) {
  .imgRow {
    flex-direction: column-reverse;
  }
}

.imgRow .icon {
  margin-left: -10px;
}

.ytp-impression-link,
.ytp-chrome-top {
  display: none;
}

.ytubeIcon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.feedback .carousel-indicators {
  position: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-block: 50px;
}

.feedback #carouselExampleIndicators .row .col-lg-4 {
  background: linear-gradient(to left, #000000bd, #0000008c);
}
.feedback .carousel-indicators .active {
  box-shadow: 7px 7px 2px 0px #f7654abf;
  opacity: 1;
}

.feedback .carousel-indicators [data-bs-target] {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  transform: rotate(45deg);
  border: 0;
  transition: all 1.6s ease;

  background-size: cover;
  background-position: 50%;
  margin: -25px;

  &:hover {
    transform: rotate(0) scale(1.3);
  }
}
.feedback .carousel-indicators [data-bs-target]:first-child {
  background-image: url("../images/post-1.jpg");
}
.feedback .carousel-indicators [data-bs-target]:nth-child(2) {
  background-image: url("../images/post-2.jpg");
}
.feedback .carousel-indicators [data-bs-target]:nth-child(3) {
  background-image: url("../images/post-3.jpg");
}
@media screen and (max-width: 992px) {
  .feedback #carouselExampleIndicators .row {
    flex-direction: column-reverse;
  }
  .feedback .carousel-indicators {
    flex-direction: row;
  }
}
.feedback .carousel-item {
  background: #eee url(../images/11.png);
  background-position: 0% 120%;
  background-repeat: no-repeat;
  padding-block: 50px;
}
.feedback .carousel-item .userImg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.instaLayer {
  background-color: #00000050;
  position: absolute;
  inset: 0;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  transition: all 1s;
}

.logoSlider .instaBox:hover .instaLayer {
  transform: translateY(0);
}

.counterSec {
  background: #000000eb url("../images/banner.png") no-repeat;
  background-size: cover;
  padding-block: 100px;
}

.tourDetailsNav .nav-link {
  color: #000;
}
.tourDetailsNav .nav-item:hover,
.tourDetailsNav .nav-item:focus {
  background-color: #eee;
  color: var(--mainColor);
}

.tourDetails .figBox figure {
  height: 350px;
}
@media (min-width: 992px) {
  .tourDetails .figBox {
    flex: 1;
    transition: all 1s;
  }
  .tourDetails .figBox:hover {
    flex: 2;
  }
}
.tourDetails figure:hover .figureLayer {
  transform: translateY(0%);
}
.tourDetails figure .figureLayer {
  position: absolute;
  top: 15px;
  left: 15px;
  transform: translateY(-200%);
  transition: 0.8s all;
}
.tourDetails figure .figureLayer span {
  background-color: #0000009f;
}

::marker,
::selection {
  color: var(--mainColor);
  /* background-color: rgba(0, 0, 0, 0.6); */
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--mainColor);
  height: 16px;
  width: 16px;
}

.heightFit {
  height: fit-content;
}

.tourDetails .confidence ul li i {
  width: 20px;
  margin-right: 10px;
  color: var(--mainColor);
  margin-bottom: 15px;
  font-size: 19px;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .tourDetails h4 {
    font-size: 16px;
  }
  .tourDetails .confidence {
    & li {
      font-size: 14px;
    }
  }
  .tourDetails .recentNews {
    & h5 {
      font-size: 13px;
    }
  }
}

#tourPlanning .counterBox {
  width: 50px;
  height: 50px;
}
#reviews .circlechart .danger-stroke {
  stroke: var(--mainColor);
}
#reviews .circle-chart__percent {
  display: none;
}
#reviews .circle-chart__subline {
  font-size: 10px;
}
#reviews .circlechart::after {
  content: "Overall Rating";
  position: absolute;
  top: 35%;
  left: 25%;
  transform: translate(-25%, -35%);
  color: var(--mainColor);
}

#reviews .progress {
  height: 13px;
}
#reviews .clientImg {
  width: 120px;
  height: 120px;
}

@media screen and (max-width: 767px) {
  #reviews .circlechart::after {
    left: 10%;
    transform: translate(-10%, -35%);
  }
}

.tourDetailsNav {
  position: sticky;
  top: 100px;
  z-index: 999999;
}
#shotGallery figure img {
  transition: 1s all;
}
#shotGallery figure img:hover {
  transform: scale(1.3);
}

#team .teamBox .icons-card {
  position: absolute;
  background-color: var(--mainColor);
  top: 35%;
  left: 10px;
  transform: translate(-20%, -50%);
  border-radius: 10px;
}
#team .teamBox .icons-card a {
  color: white;
  padding: 5px;
}
#team .teamBox .icons-card li:hover {
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-wp {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  position: unset;
  width: 60px !important;
  height: 60px !important;
  display: inline-flex;
  font-size: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  color: #0d0d25;
  background: #ffffff;
  box-shadow: -20px 20px 60px #d4d4d4, 20px -20px 60px #ffffff;
  padding-top: 1px;
  padding-right: 2px;
  transition: 0.3s;
  color: var(--mainColor) !important;
}

.swiper-button-next {
  box-shadow: 20px 20px 60px #d4d4d4, -20px -20px 60px #ffffff;
  padding-left: 3px;
}

.swiper-button-prev:hover {
  box-shadow: inset 5px 5px 20px #d4d4d4, inset -5px -5px 20px #ffffff;
  color: var(--mainColor);
}

.swiper-button-next:hover {
  box-shadow: inset -5px 5px 20px #d4d4d4, inset 5px -5px 20px #ffffff;
  color: var(--mainColor);
}

.swiper-pagination {
  padding: 10px 20px;
  display: inline-block;
  border-radius: 60px;
  background: linear-gradient(145deg, #bfbebe54, #dcd6d6d6);
  box-shadow: 25px 28px 55px #d4d4d4, -28px -28px 55px #ffffff;
  max-width: fit-content;
  left: 50% !important;
  transform: translate(-50%, 0);
  bottom: 60px !important;
  color: #000;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0px 10px !important;
  border-radius: 10px;
  transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
}

.swiper-pagination-bullet-active {
  background: var(--mainColor) !important;
  width: 30px !important;
  height: 10px !important;
  border-radius: 5px !important;
}

@media only screen and (min-width: 300px) and (max-width: 500px) {
  .swiper-pagination {
    width: 70% !important;
    bottom: 40px !important;
  }
}





/* contact us */
.contact .contact-info {
  height: 200px;
}

.catagories ul li:hover {
  color: var(--mainColor);
}


.discount .splash::after {
  content: "free 50%";
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
}

.signUp .spanLine::before {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #bbb;
  position: absolute;
  top: 20px;
  left: 50px;
}

/* .populerTag .pTags a{
  width: 100px;
  width: fit-content;
  margin-bottom: 10px;
} */

.pagination a:focus,
.pagination a:hover:not(:focus) {
  background-color: var(--mainColor);
  color: white;
}

/* help center */
.headSec {
  height: 70vh;
}
.searchBox {
  width: 60%;
}
.searchBtn {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-2%, -50%);
}

@media screen and (max-width: 600px) {
  .searchBox {
    width: 95%;
  }
}

.termsHeader li {
  transition: all 0.3s;
  border-radius: 5px;
  cursor: pointer;

  &:hover {
    border-left: 3px solid var(--mainColor);
    background-color: #fff;
    color: var(--mainColor);
  }
}

/* tour destination */

.tourDestinationCard .card_data {
  position: absolute;
  margin-inline: auto;
  bottom: 2px;
  left: 10%;
  width: 80%;
  padding: 0 10px 10px 0;
  /* opacity: 0;
  transition: opacity 1s 1s; */
}
.tourDestinationCard .card_data h2::after {
  content: "";
  border: 20px solid;
  border-color: var(--mainColor) transparent transparent var(--mainColor);
  position: absolute;
  top: 0;
  right: -40px;
}

.tourDestinationCard .tourLayer {
  position: absolute;
  top: 15px;
  right: 15px;
}

/* user profile */
.userProfile figure + ul li {
  margin-block: 5px;
  background-color: var(--mainColor);
  border-radius: 10px;
  transition: all 0.8s;
}
.userProfile figure + ul li:hover ,
.userProfile figure + ul li:focus {
  background-color: #204764;
  margin-left: 25px;
  border-radius: 10px;
}


/* calender 'tour details */

#calender-popup{
  
  @import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
  
  :root {
    --text-color: #1d1d1d;
  }
 & .container {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  & .calendar {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
  }
  & .calendar .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ccc;
  }
  & .calendar .header .month {
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color);
  }
  & .calendar .header .btns {
    display: flex;
    gap: 10px;
  }
  & .calendar .header .btns .btn {
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;   
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  & .calendar .header .btns .btn:hover {
    background: var(--mainColor);
    transform: scale(1.05);
  }
  & .calendar .weekdays {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  & .calendar .weekdays .day {
    width: calc(100% / 7 - 10px);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }
  & .calendar .days {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  & .calendar .days .day {
    width: calc(100% / 7 - 10px);
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s;
    user-select: none;
    /* box-shadow: var(--shadow); */
  }
  /* & .calendar .days .day:not(.next):not(.prev):hover {
    color: #fff;
    background: var(--mainColor);
    transform: scale(1.05);
  } */
  /* & .calendar .days .day.next,
  & .calendar .days .day.prev {
    color: #f11616;
  } */
  & .calendar .days .day.today {
    color: #fff;
    background: #ccc;
    /* background: #0D6EFD; */
    transition: all 1s;

  }
  & .calendar .days .day.avaliable {
    color: #000;
    border: #00000030 solid 1px;
    /* background: #198754; */
    transition: all 1s;
  }
  & .calendar .days .day.avaliable:hover ,
  & .calendar .days .day.today:hover {
    color: #fff;
    background: var(--mainColor);
    transform: scale(1.1);
  }
  & .calendar .days .day.unavaliable {
    color: #fff;
    background: #DC3545;
  }
 
}



/* sign up */

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(2, 0, 0, 0.6);
  z-index: 9999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.9;
}

.login-register-popup.active {
  visibility: visible;
  opacity: 1;
}

.login-register-popup {
  background: #ffffff;
  position: absolute;
  position: fixed;
  top: 58%;
  left: 50%;
  width: 65%;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  max-height: calc(100% - 15%);
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9999998;
  -webkit-box-shadow: 0px 2px 69px #97a1b238;
  box-shadow: 0px 2px 69px #97a1b238;
  border-radius: 10px;
}

.login-register-popup-wrap .shape-thumb {
  position: absolute;
  top: -44px;
  left: -9px;
  z-index: 8;
}

.login-form-wrap {
  background: #ffffff;
  margin: 20px 50px 20px 80px;
  padding: 20px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 5;
  -webkit-box-shadow: -1px 12px 21px #071c5526;
  box-shadow: -1px 12px 21px #071c5526;
}
.login-form-wrap:after {
  content: "";
  position: absolute;
  left: -27px;
  right: 0;
  top: 5%;
  bottom: 0;
  height: 90%;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.95;
}
.login-form-wrap h4 {
  font-weight: 700;
  margin-bottom: 40px;
}
.login-form-wrap .single-input-wrap {
  position: relative;
}
.login-form-wrap .single-input-wrap input {
  font-weight: 200;
  margin-bottom: 10px;
}

.login-form-wrap .single-input-wrap .single-input-title {
  font-weight: 400;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 3px;
  height: 79%;
  width: 45px;
  text-align: center;
  border-left: 1px solid #cfd3de;
  font-weight: 200;
}
.login-form-wrap .single-input-wrap .btn {
  margin-top: 20px;
  height: 40px;
}

.login-form-wrap .social-wrap p {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .login-register-popup {
    width: 100%;
  }
  .login-form-wrap {
    margin: 10px;
  }
}


/* make trip */
.pointer,
input,
input + label {
  cursor: pointer;
}

#makeTrip figcaption {
  transform: translateY(0%);
  overflow: hidden;
}

#makeTrip figure i {
  transform: translateX(300%);
  transition: all 1s;
}

#makeTrip figure img {
  transition: all 1s;
}
#makeTrip figure:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  #makeTrip figcaption {
    justify-content: center;
  }
  #makeTrip figcaption h3 {
    font-size: 40px;
  }
}

#makeTrip #main input[type="radio"],
#makeTrip #main input[type="checkbox"],
#makeTrip input[name="date_approximate_start"] {
  visibility: hidden;
}
#makeTrip figure:hover i,
#makeTrip input:checked + label figure i,
#makeTrip input:checked + label figure figcaption {
  transform: translateY(0);
}

#makeTrip input[type="radio"]:checked + label,
#makeTrip input[type="radio"]:checked {
  accent-color: var(--mainColor);
  color: var(--mainColor);
}

#makeTrip #secondSec button,
#makeTrip #lastSec button {
  margin-inline: 5px;
}

#makeTrip input:not([type="range"]) {
  border: #dee2e6 1px solid;
  width: unset;
}

#makeTrip #lastSec textarea {
  outline: 0;
  width: 100%;
}

#makeTrip input.w-20 {
  width: 20px;
}
