.location-dropdown {
    width: 374px;
    max-width: 100%;
    position: relative;
}

.dropdown-btn {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    width: 100%;
    background: #FFF;
    color: var(--black);
}

.location-dropdown-btn {
    border: 1px solid var(--pahoehoe);
    padding-left: 16px;
    padding-right: 8px;
}

.dropdown-btn .chev-down {
    display: flex;
}
.dropdown-btn.active .chev-down {
    display: none;
}
.dropdown-btn .chev-up {
    display: none;
}
.dropdown-btn.active .chev-up {
    display: flex;
}

.dropdown-content {
    display: none;
    width: 100%;
    z-index: 3;
}

.location-dropdown .dropdown-content {
    position: absolute;
    background-color: var(--white) !important;
}

.location-dropdown-item {
    border-bottom: 1px solid var(--pahoehoe);
    border-left: 1px solid var(--pahoehoe);
    border-right: 1px solid var(--pahoehoe);
    color: inherit;
    text-decoration: none;
    background-color: var(--white);
}

.location-dropdown-item.active {
    color: var(--pahoehoe);
}

.location-dropdown-item:hover {
    color: inherit;
    background: #C4C4C4;
    opacity: inherit;
}

@media only screen and (max-width: 991px) {
    .location-dropdown-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .location-dropdown-block {
        width: 374px;
        max-width: 100%;
    }

}