.ginput_container_select select,
.ginput_address_country select {
    display: none;
}

.dropdown-container {
    position: relative;
}

.dropdown-select {
    line-height: 1.4;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0.589844L6 5.16984L10.59 0.589844L12 1.99984L6 7.99984L0 1.99984L1.41 0.589844Z' fill='black'/%3E%3C/svg%3E");
    background-position: calc(100% - 22px) center;
    background-repeat: no-repeat;
    font-weight: 400;
    font-size: 16px;
}

.active .dropdown-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.59 7.41016L6 2.83016L1.41 7.41016L1.23266e-07 6.00016L6 0.000155878L12 6.00016L10.59 7.41016Z' fill='black'/%3E%3C/svg%3E");
}

.dropdown-select:before {
    float: right;
    transition: 0.3s ease;
}

.active .dropdown-select:before {
    transform: rotate(180deg);
}

.dropdown-select-ul {
    display: none !important;
    z-index: 100;
    position: absolute;
    background: #fff;
    width: 100%;
    max-height: 50rem;
    overflow: scroll;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
    margin-top: 10px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.18);
}

.dropdown-select-ul li {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    color: var(--black60);
    border-bottom: 1px solid #D1D2D3;
    padding: 14px 25px 10px 25px !important;
}

.dropdown-select-ul li:hover {
    background: #F8F8F8;
    color: var(--black);
}

.dropdown-select-ul li:last-child {
    border: 0;
}

.dropdown-select-ul li[data-value=""] {
    display: none !important;
}

.dropdown-select-ul li.selected,
.dropdown-select-ul li.optgroup {
    cursor: default;
}

.dropdown-select-ul li.optgroup {
    width: 92%;
    padding-right: 0.7rem;
    margin: 0 4%;
    border-bottom: 1px solid;
    font-size: 90%;
    text-align: right;
}


.active .dropdown-select-ul {
    display: block !important;
    animation-fill-mode: both;
    animation-duration: 0.3s;
    animation-name: fadeIn;
}



.no-js .custom-select {
    display: block;
}

.no-js .dropdown-select,
.no-js .dropdown-select-ul {
    display: none;
}

.dropdown-select {
    line-height: 45px;
    background-color: #fff;
    height: 56px;
    padding: 5px 14px;
    border-radius: 6px;
    border: 1px solid rgba(163, 165, 168, 1);
    margin-bottom: 0;
    color: var(--black40);
}

.dropdown-container.selected .dropdown-select {
    color: var(--black);
}

.dropdown-select:hover,
.dropdown-select:focus {}

.active .dropdown-select {}

.dropdown-select-ul li:hover,
.dropdown-select-ul li:focus {}

.dropdown-select-ul li.selected {}

.dropdown-select-ul li.optgroup {}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 567px) {
    .dropdown-select {
        font-size: 14px;height:49px;line-height:49px;padding:0 14px;
    }

    .dropdown-select-ul li {
        font-size: 14px;
        line-height: 21px;
        padding: 14px 15px 10px 15px !important;
    }
}