

::-webkit-scrollbar {
  width: 5px;
  display: none;
}
@media only screen and (min-width: 500px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

/* Track */
::-webkit-scrollbar-track {
  background:transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.399); 
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0c002a; 
}
.Playfair_Display{
  font-family: "Playfair Display", serif;
}
.menu-link{
  transition: .3s;
  padding: 0;
}

.menu-link:hover ,.menu-active{
  color: #B8B7BA;
 
}
.main_color{
  background-color: #133686;
}
.sign-button{
  background-color: #133686;
  color: white;
  transition: .6s;
}
.sign-button:hover{
  background-color: white;
  color:#133686;
}
.location-filter{
    max-height:250px;
    overflow-y:scroll;

}
.location-filter::-webkit-scrollbar {
    display: none;
  }
  .child-search-filter{
    position: absolute;
    top:35%;
    left:-230px;
    width: 230px;
    /* max-height: 170px;
    overflow-y:scroll; */
    
  }

  @media only screen and (max-width: 770px) {
    .child-search-filter{
     /* width: 100%; */
      top:87%;
      left:0;
      /* max-height: 170px;
      overflow-y:scroll; */
      
    }
  } 

  @media screen and (max-width: 500px) {
    .custom-flex-sidebar {
      display: none; /* Hide sidebar on small screens */
    }
  .child-search-filter::-webkit-scrollbar{
   display: none;
  } }


  .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .loader {
    border: 5px solid #ffffff; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-bottom: 5px solid #000407;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  .tourExclusion{
    list-style: none; /* Remove default list style */
    padding: 0; /* Remove default padding */
  }
 
  .tourExclusion li {
    position: relative; /* Make the ::before pseudo-element position relative to the list item */
    padding-left: 30px; /* Add some left padding for the icon */
  }

  /* Define the style for the icon using ::before pseudo-element */
  .tourExclusion li::before {
    content: " \2717"; /* Unicode character for a Font Awesome icon (adjust as needed) */
    font-family: 'Font Awesome 6 Free'; /* Specify the Font Awesome font family */
    color: #02c61da5; /* Color of the icon */
    font-size: 18px; /* Size of the icon */
    position: absolute; /* Position the icon absolutely */
    left: 0; /* Align the icon to the left */
    top: 50%; /* Center the icon vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
  }
  .whatsInThisTour{
    list-style: none; /* Remove default list style */
    padding: 0; /* Remove default padding */
  }
  .whatsInThisTour li {
    position: relative; /* Make the ::before pseudo-element position relative to the list item */
    padding-left: 30px; /* Add some left padding for the icon */
  }

  /* Define the style for the icon using ::before pseudo-element */
  .whatsInThisTour li::before {
    content: " \2713"; /* Unicode character for a Font Awesome icon (adjust as needed) */
    font-family: 'Font Awesome 6 Free'; /* Specify the Font Awesome font family */
    color: #0071f1b0; /* Color of the icon */
    font-size: 18px; /* Size of the icon */
    position: absolute; /* Position the icon absolutely */
    left: 0; /* Align the icon to the left */
    top: 20px; /* Center the icon vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
  }
  .check-tour-option{
   min-width:20px;
   height:20px;
   border-radius: 30px;
   border: 2px solid #004899b0;
   margin:0px 10px;
   display: flex;
   justify-content: center;
   align-items: center;
  }
  .show-all-option{
    color:blueviolet;
    text-decoration:underline;
    cursor: pointer;
    margin: 0px 10px;
  }
  .show-all-option:hover{
    color:rgb(0, 16, 68);
    text-decoration:underline
  }
  .option-select{
    border: 3px solid #9a9a9a25;
    border-radius: 20px;
    
  }
  .circle-select-option{
    width:20px;
    height:20px;
    border: 1px solid #9f9f9f85;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }
  .circle-select-option div{
    width:10px;
    height:10px;
    background-color: #00020823;
    border: 1px solid #9f9f9f85;
    border-radius: 10px;
  }
  body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f03c;
  /* background-color: #f0f0f03c; */
}



.dark-blue {
  background-color: #b6b6b619;
  color: #0382d1f3;
 

  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.dark-blue option {
  font-size: 14px;
  color: #000203f3;
}

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  /* chating style */
  .chat-window {
  
    margin: 10px;
    padding: 10px;
   
    border-radius: 8px;
    
  }
  
  .user-message {
    background-color: #0015b4;
    color: #fff;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 20%;
    max-width: 75%;
  }
  
  .other-message {
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 20%;
    max-width: 75%;
  }
  .image-with-arrow {
    position: relative;
    display: inline-block; /* or use "block" if you want it to occupy full width */
  }
  .image-with-arrow:hover  .arrow{
    display: inline-block;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    left:-15px; /* adjust the value as per your design */
    width: 0;
    height: 0;
    border-top: 10px solid  transparent; /* adjust the size as per your design */
    border-bottom: 10px solid #ffffff; /* adjust the size as per your design */
    
    border-right: 10px solid transparent; /* adjust the color as per your design */
    transform: translateY(20%);
    display: none;
  }
  .chat-form {
    display: flex;
    margin-top: 10px;
  }
  
  .chat-form input {
    flex: 1;
    padding: 8px;
  }
  
  .chat-form button {
    background-color: #2ecc71;
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .scrollable-div{

    overflow-y: auto;
    background-color:rgb(255, 255, 255);
    transform: rotate(180deg);
 }
 .scrollable-div-inside {
    transform: rotate(-180deg);
 }
  .scrollable-div::-webkit-scrollbar {
    width: 5px; /* Set the width of the scrollbar */
    background-color: #F5F5F5; /* Set the background color of the scrollbar */
    position: absolute;
    right: 0;
 }
  
  .dashboard-flex {
    display: flex;
    width: 100%;
  }
  
  .dashboard-sidebar {
    /* Adjust based on your sidebar design */
    width: 20%;
    background-color: #f0f0f0; /* Example background color */
  }
  @media (max-width: 768px) {
    .dashboard-sidebar {
      display: none;
    }
  }
  .dashboard-main-content {
    flex-grow: 1;
    padding: 20px; /* Adjust padding as needed */
  }
  
  .dashboard-tabs {
    /* Styling for the Tabs component */
  }
  
  .dashboard-tablist {
    display: flex;
    justify-content: center; 
    padding: 0;
  }
  
  .dashboard-tab {
    list-style: none;
  }
  
  .dashboard-tab-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 10px 20px;
  }
  
  .dashboard-tab-content {
    margin-top: 20px;
  }
  
  .dashboard-tab-panel {
    display: none;
  }
  
  .active-tab-panel {
    display: block;
  }
  
  .list-position-outside{
    list-style-position: outside;
    list-style-type: circle;
  }
  .list-position-outside li{
    color: #210000;
    list-style-type: circle;

  }
  /* invoice design */
  .invoice-container {
    max-width: 800px;
    margin: 0 auto;
  }
  .invoice-header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .invoice-details {
    font-size: 18px;
    
  }
  .table-invoice{
    border: 1px solid rgba(0, 24, 51, 0.845);
    background-color: #012541e4;  
    /* border-radius: 10px 10px 0 0; */
  }
  .table-invoice table{
  width: 100%;
   
  }
  .table-invoice .thead td{
    padding: 15px 20px;
    color: white;
    background-color:#133686;
    }
  .table-invoice td{
    border: 1px solid rgba(0, 41, 76, 0.831);
    padding: 15px 20px;
    background-color: white;
    }
 .home-content > *{
  color: white;
  text-align: center;
 }
.border-filter{
  border-bottom: 1px solid lightgray;
}
@media screen and (min-width: 100px) {
  .home-content h3{
    font-size: 30px;
  }
   .home-content h2{
      font-size: 35px;
   }
   .home-content h1{
    font-size: 40px;
  }
}
@media screen and (min-width: 600px) {
  .home-content h3{
    font-size: 40px;
  }
   .home-content h2{
      font-size: 50px;
   }
   .home-content h1{
    font-size: 60px;
  }
}
@media screen and (min-width: 950px) {
  .home-content h3{
    font-size: 70px;
  }
   .home-content h2{
      font-size: 80px;
   }
   .home-content h1{
    font-size: 90px;
  }
  .border-filter{
    border-bottom: none;
    border-right: 1px solid lightgray;
  }
}

 /* input Range */



.slider {
  position: relative;
  width: 200px;
}

.slider__track,
.slider__range,
.slider__left-value,
.slider__right-value {
  position: absolute;
}

.slider__track,
.slider__range {
  border-radius: 30px;
  height: 5px;
}

.slider__track {
  background-color: #ffffff;
  width: 100%;
  z-index: 1;
}

.slider__range {
  background-color: #133686;
  z-index: 2;
}

.slider__left-value,
.slider__right-value {
  color: #dee2e6;
  font-size: 12px;
  margin-top: 10px;
}

.slider__left-value {
  left: 6px;
}

.slider__right-value {
  right: -4px;
}

/* Removing the default appearance */
.thumb,
.thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.thumb {
  pointer-events: none;
  position: absolute;
  height: 0;
  width: 200px;
  outline: none;
}

.thumb--left {
  z-index: 3;
}

.thumb--right {
  z-index: 4;
}

/* For Chrome browsers */
.thumb::-webkit-slider-thumb {
  background-color: #01193ce7;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px #002e5c;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}

/* For Firefox browsers */
.thumb::-moz-range-thumb {
  background-color: #f1f5f7;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px #ced4da;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
/* .search-bottom{
  box-shadow:2px 2px #3554d1;
  transition: .3s;
}
.search-bottom:hover{
  box-shadow:2px 2px #051036;
  
} */

.login-input >input{
   border: 1px solid #070d1bc0;
   padding: 15px;
   border-radius: 5px;
   transition: .1s;
}
.login-input >textarea{
  border: 1px solid #070d1b8f;
  padding: 15px;
  border-radius: 5px;
}
.login-input >select{
  border: 1px solid #070d1b8f;
  padding: 15px;
  border-radius: 5px;
}
.login-input >*:focus {
  border: 2px solid #070d1b;
}


.image-slider {
  width:100%
}
.image-slider {
  height:40vh
}
.image-slider1{
  height:700px
}
.about-gallary{
  height:200px
}
@media screen and (min-width: 576px) {
  .image-slider {
    height:60vh
  }
  .image-slider1 {
    height:600px
  }
  .about-gallary{
    height:200px
  }
}
@media screen and (min-width: 768px) {
  .image-slider {
    height:70vh
  }
  .image-slider1 {
    height:70vh
  }
  .about-gallary{
    height:300px
  }
}
@media screen and (min-width: 992px) {
  .image-slider {
    height:80vh
  }
  .image-slider1 {
    height:80vh
  }
  .about-gallary{
    height:350px
  }
}
@media screen and (min-width: 1200px) {
  .image-slider {
    height:100vh
  }
  .image-slider1 {
    height:100vh
  }
  .about-gallary{
    height:500px
  }
}


.fade-img {
  position: absolute;
  transition: opacity 2s ease-in-out;
}

.visible {
  opacity: 1;
}

.hidden {
  opacity: 0;
}
.search-filter-botton{
  background-color: #133686;
  transition: .3s;
  border-radius:0px 0px 5px 5px;
}

@media screen and (min-width: 100px) {
  .header-filter-h{
    height:100vh
  }
}
@media screen and (min-width: 990px) {
  .search-filter-botton{
    border-radius:100px
  }
  .header-filter-h{
    height:230px
  }
}
.search-filter-botton:hover{
  background-color: #002e5c;
}
.show-password-icon{
  top:50%;
  right:20px;
  transform:translate(0,-50%);
  cursor:pointer;
  transition: .3s; 
  position: absolute;
  font-size: 20px;
}
.show-password-icon:hover{
  color: #133686;
}
.notification-recent{
  position: fixed;
  padding: 10px;
  background-color: #000c14c0;
  top: 100px;
  right: 30px;
  border: 1px solid wheat;
  border-radius: 5px;
  width: 250px;
  z-index: 200;
  transition: opacity 1s ease-in-out;
}
.notification-recent a{
  color: #006ff6;
  transition: .3s;
 
}
.notification-recent a:hover{
  color: #81dd00;
}
.notification-icon-close{
  position:absolute;
  color: white;
  padding: 2px;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  font-size: 9px;
  border: 2px solid white;
  font-weight: bold;
  transition: .3s;
}
.notification-icon-close:hover{
  color: #000407;
  background-color: white;
}
.cursor-not-allowed{
  cursor:not-allowed;
}