.nav__list__more li a {
    color: #000 !important;
}

.navigation {
    position: relative;

}

.navigation .nav__hidden {
    display: none;
}

.navigation .nav__list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navigation .nav__list li {
    transition: 0.25s;
}

.navigation .nav__list>li {
    /* flex-grow: 1;*/
}

.navigation .nav__list>li>a {
    padding: 15px;
    white-space: nowrap;
}

.navigation .nav__list>li a {
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.25s;
}

.navigation .nav__list>li a:hover {
    color:#00a150;
}

.navigation .nav__list .nav__item__more button {
    padding: 15px;
    white-space: nowrap;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.navigation .nav__list .nav__item__more svg {
    width: 20px;
    height: 20px;
    transition: 0.25s;
}

.navigation.nav__active .nav__list .nav__item__more svg {
    transform: rotate(90deg);
}

.navigation .nav__list__more {
    list-style: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    display: none;
    max-width: 100%;
    min-width: 10em;
    margin: 0;
    padding: 5px 0;
    border-radius: 5px;
    box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.15);
    -webkit-animation: nav-dropdown-animation 0.2s;
    animation: nav-dropdown-animation 0.2s;
    background-color: #ffffff;
    z-index: 99999;
}

.navigation .nav__list__more li {
    padding: 10px 15px;
}

.navigation.nav__active .nav__list__more {
    display: block;
}

@-webkit-keyframes nav-dropdown-animation {
    0% {
        opacity: 0;
        transform: translateY(-1em);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nav-dropdown-animation {
    0% {
        opacity: 0;
        transform: translateY(-1em);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#toast-container>div{
    width: 350px;
}
input{
    padding: 6px;
}