

::-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; 
}

.location-filter{
    max-height:250px;
    overflow-y:scroll;

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

  @media only screen and (max-width: 770px) {
    .child-search-filter{
     
      top:101%;
      left:0;
      /* max-height: 170px;
      overflow-y:scroll; */
      
    }
  }
  .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;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  