.swal-text {
    text-align: center;
}

.dropdown {
    width: 100%;
    background-color: transparent;
}

@media (min-width: 768px) {
    .dropdown {
        display: inline-block;
    }
}

.dropdown__switch:checked+.dropdown__options-filter .dropdown__select {
    transform: scaleY(1);
}

.dropdown__switch:checked+.dropdown__options-filter .dropdown__filter:after {
    transform: rotate(-180deg);
}

.dropdown__options-filter {
    cursor: pointer;
}

.dropdown__filter {
    position: relative;
    display: flex;
    padding: 7px 42px 7px 20px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #4d4d4d;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    margin: 0;
    list-style: none;
}

.dropdown__filter:focus {
    border: 1px solid #fff;
    outline: none;
}

.dropdown__filter::after {
    background: url(../img/drop-b.png) no-repeat;
    position: absolute;
    top: 10px;
    right: 15px;
    content: "";
    width: 16px;
    height: 14px;
    transition: 0.2s ease-in-out;
}
.dropdown__select {
    border: 1px solid #4d4d4d;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    font-weight: 300;
    transition: 0.2s ease-in-out;
    padding: 0;
    z-index: 10;
}

.dropdown__select-option {
    padding: 10px 10px;
    background-color: #000;
    border-bottom: 1px solid #4d4d4d;
    transition: 0.3s;
}

.dropdown__select-option:last-of-type {
    border-bottom: 0;
}

.dropdown__select-option:hover {
    background-color: #1c1b1b;
}
