.product-slider-main-wrapper .swiper-wrapper .swiper-slide {
    display: flex
}

.pagination .page-link, .sorting-block-list {
    cursor: pointer;
}

/* dropdown list */
.dropdown {
    position: relative;
    background: white;
}

.dropdown-list {
    position: absolute;
    width: 100%;
    background: white;
    z-index: 1;
    max-height: 30rem;
    overflow-y: auto;
    border-radius: 0.6rem;
    border: 1px solid rgba(46,46,46,.2);
    top:calc(100% + 1rem)
}
.input-wrapper.dropdown .dropdown-list{
    display: none;
}
.input-wrapper.dropdown.active .dropdown-list{
    display: block;
}
.dropdown-list li {
    background: white;
    display: none;
    width: 100%;
    cursor: pointer;
    transition-duration: .3s;
    list-style: none;
    user-select: none;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 1rem 1.5rem;
}
@media (max-width: 767px){
    .dropdown-list li{
        font-size: 1.2rem;
        padding: 1rem;
    }
    .dropdown-list{
        max-height: 20rem;
    }
}
.dropdown.active .dropdown-list li {
    display: block;
}

.dropdown-list li:hover {
    background-color: #00B598;
    color: white;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2), 0 1px 2px rgba(0, 0, 0, .12) !important;
}

.dropdown.active .dropdown-list li {
    border-bottom:1px solid rgba(0, 0, 0, 0.15);
}
.dropdown.active .dropdown-list li:last-child{
    border-bottom: none;
}
.brands-item .img-wrapper {
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.7rem;
}

.brands-item .brand-icon {
    max-height: 9rem;
}

.checkout .custom-radio input, .filter-block .custom-checkbox input, .filter-block-reset {
    position: absolute;
    opacity: 0;
    display: block;
}

.error-box {
    color: red;
}

.text-decoration-none {
    text-decoration: none;
}

.d-none {
    display: none;
}

.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.gray-block:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(255, 251, 246, .5);
    z-index: 2;
    left: 0;
    top: 0
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background-color: #a4a8ae;
}

.ml-3{
    margin-left: 3rem;
}