﻿.dropdown {
    position: relative;
    width: 200px;
}
.dropdown-toggle-btn {
    padding: 0 5px 5px 0;
    border: 2px solid #C0F3A8;
    border-top-width: 0px;
    border-right-width: 0;
    border-left-width: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chevron {
    transition: transform 0.3s ease;
}
.selected-value {
    color: #4B7A5B;
    font-size: 14px;
    font-weight: 500;
}
.dropdown-toggle-btn i {
    color: #4B7A5B;
}
.dropdown-toggle-btn {
    background: transparent;
}
.dropdown > input{
    height: 0;
    padding: 0;
    border: 0;
    display: none;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #F9FEF7;
    display: none;
    flex-direction: column;
    z-index: 10;
    overflow: hidden;
    border: 0;
}
.dropdown-menu{
    padding: 0px;
}
.dropdown {
    font-family: Proxima Nova Rg;
    width: 100%;
    display: grid;
}
.dropdown-menu .single-item {
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 1px solid #2F9652;
    padding: 13px 16px;
    font-size: 12px;
}
.dropdown-menu {
    border-radius: 0;
    box-shadow: 1px 1px 8px -4px #127232;
    max-height: 180px;
    overflow: scroll;
}

.show {
    display: flex;
}
.rotate {
    transform: rotate(180deg);
}
.pac-container {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    font-size: 14px;
    overflow: hidden;
}

.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #2F9652;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-query {
    font-size: 16px;
    color: #333;
}