﻿.custom-dropdown {
    position: relative;
    font-family: Proxima Nova Rg;
}
.dropdown-header {
    cursor: pointer;
    padding: 0;
    position: relative;
}
.dropdown-header > i{
    position: absolute;
    top: 4px;
    right: 0px;
}
.dropdown-header > input {
    pointer-events: none;
    width: 100%;
    color: #4B7A5B;
    padding-right: 20px;
}
.dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #F9FEF7;
    display: none;
    flex-direction: column;
    z-index: 10;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: 1px 1px 8px -4px #127232;
    max-height: 180px;
    overflow: scroll;
}
input:disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}
.custom-checkbox input:disabled + .checkmark,
.custom-checkbox input:disabled + .checkmark + text {
    opacity: 0.1;
    pointer-events: none;
}
.dropdown-options label {
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 1px solid #2F9652;
    padding: 13px 16px;
    font-size: 12px;
}
.custom-checkbox:hover {
    background: #0E5927;
    color: white;
    font-weight: 700;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
}
.custom-checkbox input[type="checkbox"] {
    display: none;
}
.chevron {
    transition: transform 0.3s ease;
}
.rotate {
    transform: rotate(180deg);
}
.checkmark {
    height: 20px;
    width: 20px;
    border: 2px solid #0E5927;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}
.checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    height: 12px;
    width: 12px;
    background-color: #29B758;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.custom-checkbox input:checked + .checkmark::after {
    display: block;
    opacity: 1;
}
.custom-checkbox:hover .checkmark {
    border: 2px solid white;
}