/* Custom Dropdown Styling */
@media (max-width: 767px) {
    /* Mobile styles */
    .dropdown {
      width: 100%;
      margin: 0;
    }
  }
  
  @media (min-width: 768px) {
    /* Tablet and up styles */
    .dropdown {
      width: 100%;
      max-width: 600px;
    }
  }
  
  .dropdown {
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
  }
  
  .dropdown__switch:checked + .dropdown__options-filter .dropdown__select {
    transform: scaleY(1);
  }
  
  .dropdown__switch:checked + .dropdown__options-filter .dropdown__filter:after {
    transform: rotate(-135deg);
  }
  
  .dropdown__options-filter {
    width: 100%;
    cursor: pointer;
  }
  
  .dropdown__filter {
    position: relative;
    display: flex;
    padding: 20px;
    color: #595959;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    transition: .3s;
  }
  
  .dropdown__filter:focus {
    border: 1px solid #918FF4;
    outline: none;
    box-shadow: 0 0 5px 3px #918FF4;
  }
  
  .dropdown__filter::after {
    position: absolute;
    top: 45%;
    right: 20px;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #595959;
    border-bottom: 2px solid #595959;
    transform: rotate(45deg) translateX(-45%);
    transition: .2s ease-in-out;
  }
  
  .dropdown__select {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    box-shadow: 0 5px 10px 0 rgba(152, 152, 152, 0.6);
    transform: scaleY(0);
    transform-origin: top;
    font-weight: 300;
    transition: .2s ease-in-out;
    z-index: 10;
  }
  
  .dropdown__select-option {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #d6d6d6;
    transition: .3s;
  }
  
  .dropdown__select-option:last-of-type {
    border-bottom: 0;
  }
  
  .dropdown__select-option:hover {
    background-color: #f9f9f9;
  }

  .dropdown ul {
    list-style: none;
    
  }