/*===== DropwDown =====*/
.dropdown {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .dropdown_head_text{
    transition: all 0.3s ease;
  }
  
  .dropdown_button {
    position: relative;
    transition: 0.3s;
  }
  
  .dropdown_button:hover {
    background: var(--drop-down-hover-color);
  }
  
  .dropdown.open > .dropdown_button {
    background: var(--primary-color);
    color: var(--text-bright-color);
  }
  
  .dropdown.open .casual_input_style span{
    color: var(--text-bright-color);
  }
  
  .dropdown .dropdown_button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 .5rem;
    width: 16rem;
    height: 1.8rem;
    border-radius: 4px;
    color: var(--text-secondary-color);
    border: 0;
    cursor: pointer;
    font-family: 'Inter';
  }
  
  .dropdown .dropdown_button #icon {
    margin-left: auto;
  }
  
  .menu {
    position: absolute;
    top: 2.2rem;
    left: 0;
    width: 100%;
    opacity: 0;
    max-height: 7.2rem;
    visibility: hidden;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 0;
    translate: 0 -10px;
    box-shadow: 0px 0px 20px rgba(30, 30, 30, 0.1);
    transition: 0.4s;
  }
  
  .menu .dropdown_button {
    border: 0;
    width: 100%;
    height: 3rem;
    border-radius: 0;
  }
  
  .noicon_menu{
    top: 1.5rem;
  }
  
  .noicon_menu .dropdown_button{
    height: 1.8rem;
  }
  
  .menu .dropdown_button:hover {
    background: var(--drop-down-hover-color);
  }

  .dropdown_selector{
    cursor: pointer;
  }
  
  .dropdown.open .menu {
    opacity: 1;
    translate: 0;
    visibility: visible;
    z-index: 9999;
  }
  
  .dropdown .material-symbols-outlined{
    font-size: 1.5rem;
  }
  
  .dropdown_head_button .material-symbols-outlined{
    margin-left: auto;
  }
  
  .element_container_top{
   justify-content: space-between; 
  }


.dropdown_input{
    display: block;
    width: 100%;

    background: rgba(34, 40, 54, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    padding: .5rem;
    height: 2.25rem;

    font-family: 'Inter';

    transition: all 0.3s ease;
}

.dropdown_input:hover{
    background: rgba(61, 139, 221, 1);
    cursor: pointer;
}

