.menu-btn__burger,
.menu-btn__burger::before,
.menu-btn__burger::after {
    background-color: var(--white);
}

.full-page-header .container-1920{
    background-image: url("../images/header/header-nostri-vini.jpg");
}

.products{
    background-color: var(--gray-light);
    position: relative;
}

.product-filter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #BBB79D;
}

.products-main{
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 150px;
}

.products-main .product-card{
    margin-bottom: 24px;
    position: relative;
}

.products-main .product-card a{
    text-decoration: none;
    display: block;
}

.products-main .product-card a picture img{
    position: relative;
    width: 235px;
}

.product-card-simbol{
    position: absolute;
    top: 0;
    right: 10%;
}

.product-card-simbol img {
    animation: rotation 25s infinite linear;
    -webkit-animation: rotation 25s infinite linear;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.product-marquee-wrap{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
}

.select-none{
    display: none !important;
}

.product-filter-select{
    display: flex;
    position: relative;
}

/* The container must be positioned relative: */
.custom-select {
    background: #FFFFFF;
    position: relative;
    cursor: pointer;
    z-index: 3;
    min-width: 290px;
    border-radius: 40px;
}

.select-selected{
    padding: 20px 100px 20px 80px;
    border-radius: 40px;
    position: relative;
    z-index: 9;
}

.select-custom-button .fas{
    display: none;
}

.select-custom-button .fas.active{
    display: block;
}

.select-custom-button{
    position: absolute;
    top: 0;
    right: 0;
    height: 66px;
    width: 66px;
    border: 1px solid #BBB79D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-select:hover .select-custom-button{
    background-color: #BBB79D;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    cursor: pointer;
}

.select-items div{
    padding: 20px 0;
}

.select-items div:not(:last-child){
    border-bottom: 1px solid var(--olive);
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: var(--white);
    top: 110%;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 0 0 40px 40px;
    padding: 0 20px;
    box-shadow: 0 6px 2px -2px rgba(0, 0, 0, 0.4);
}

.select-items div:hover{
    background-color: #BBB79D;
    color: white;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    color: var(--olive);
}

@media (max-width: 1500px){
    .product-card-simbol{
        right: 0;
    }
}

@media (max-width: 992px){
    .product-card a{
        background-color: var(--white);
        padding: 20px;
    }

    .product-marquee-wrap{
        display: none;
    }

    .products-main {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px){
    .product-filter{
        flex-direction: column;
    }

    .custom-select {
        min-width: unset;
        border: 1px solid var(--olive);
        width: 100%;
    }

    .custom-select.select-full-width .select-custom-button{
        background-color: var(--white);
        border: 1px solid var(--olive);
        z-index: 10;
    }

    .custom-select.select-full-width .select-selected{
        background-color: var(--olive);
    }

    .select-selected{
        padding: 10px 50px 10px 20px;
    }

    .select-items div{
        padding: 10px;
    }

    .product-filter{
        padding: 20px 0 0 0;
        border: none;
    }

    .product-filter .filter-name{
        margin-bottom: 20px;
    }

    .products-main{
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .select-custom-button{
        width: 46px;
        height: 46px;
        border: none;
        background-color: var(--olive);
    }

    .select-custom-button i{
        font-size: 12px;
    }

    .product-card-simbol{
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        top: 10%;
        width: 165px;
    }

    .product-card-simbol img{
        width: 150%;
    }

    .product-filter-select{
        width: 100%;
    }

}

@media (max-width: 560px){
    .select-custom.open{
        position: absolute;
        width: 100%;
        z-index: 10;
        left: 0;
        margin: 0;
    }
}

/* new select */

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    display: inline-block;
}
.custom-select-trigger {
    position: relative;
    display: block;
    color: black;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: background-color .25s ease;
    -o-transition: background-color .25s ease;
    transition: background-color .25s ease;
    padding: 20px 100px 20px 80px;
    border-radius: 40px;
}

.custom-select-trigger:hover {
    background-color: rgba(255,255,255,.025);
}

.custom-options {
    position: absolute;
    display: block;
    top: 110%;
    left: 0;
    right: 0;
    min-width: 100%;
    background: white;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    border-radius: 0 0 40px 40px;
    box-shadow: 0 6px 2px -2px rgba(0, 0, 0, 0.4);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    color: black;
    line-height: 40px;
    cursor: pointer;
    border-bottom: 1px solid var(--olive);
    font-size: 16px;
    padding: 20px;
}

.custom-option:hover {
    background-color: var(--olive);
}

.custom-option:last-child {
    border-bottom: 0;
    border-radius: 0 0 40px 40px;
}

@media(max-width: 767px) {
    .custom-select-trigger,
    .custom-option{
        padding: 10px 50px;
    }

    .custom-select.select-full-width .select-custom-button{
        background-color: var(--white);
        border: 1px solid var(--olive);
        z-index: 10;
    }

    .custom-select.select-full-width .custom-select-trigger{
        background-color: var(--olive);
    }
}

@media(max-width: 560px){
    .custom-select-trigger,
    .custom-option{
        padding: 10px 30px;
    }

    .custom-select-trigger{
        padding: 10px 50px;
    }
    .products-main .product-card {
        margin-bottom: 12px;
    }
}


