﻿
body {
    font-family: "Roboto", sans-serif;
}

.filtered-list {
    color: #242424;
    background-color: white;
}

    .filtered-list header {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 26px 30px 14px;
        z-index: 10;
    }

        .filtered-list header h1.title {
            font-weight: bold;
            line-height: 43px;
            margin: 0;
        }

        .filtered-list header .toggle {
            display: flex;
            gap: 10px;
        }

            .filtered-list header .toggle .mobile-icon:first-child {
                margin-right: 20px;
            }

            .filtered-list header .toggle .mobile-icon {
                width: 22px;
                height: 22px;
            }

            .filtered-list header .toggle .single-column {
                border: 2px solid #242424;
                border-radius: 5%;
            }

                .filtered-list header .toggle .single-column.active {
                    border: 2px solid #c30000;
                }

            .filtered-list header .toggle .two-column {
                display: flex;
                justify-content: space-between;
            }

                .filtered-list header .toggle .two-column div {
                    width: 10px;
                    border: 2px solid #242424;
                    border-radius: 5%;
                }

                .filtered-list header .toggle .two-column.active div {
                    border: 2px solid #c30000;
                }


            .filtered-list header .toggle .mobile-icon svg.filter {
                width: 100%;
                height: 100%;
            }

            .filtered-list header .toggle .order-by {
                display: none;
            }

    .filtered-list .list-wrapper {
        width: 100%;
        display: flex;
        z-index: 1;
    }

        .filtered-list .list-wrapper .inner-list-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

            .filtered-list .list-wrapper .inner-list-wrapper .no-products-message + h2 {
                margin: 0 15px 30px 15px;
                font-weight: bold;
            }

            .filtered-list .list-wrapper .inner-list-wrapper .no-products-message {
                margin-bottom: 50px;
                padding: 0 15px;
            }

                .filtered-list .list-wrapper .inner-list-wrapper .no-products-message h2 {
                    font-size: 24px;
                    font-weight: 500;
                    text-align: center;
                    margin-bottom: 5px;
                    margin-top: 0;
                }

                .filtered-list .list-wrapper .inner-list-wrapper .no-products-message p {
                    font-size: 20px;
                    text-align: center;
                }

            .filtered-list .list-wrapper .inner-list-wrapper .loading-gif {
                width: 100%;
                display: flex;
                justify-content: center;
                margin-top: -30px;
                margin-bottom: 60px;
            }

                .filtered-list .list-wrapper .inner-list-wrapper .loading-gif svg {
                    width: 57px;
                    height: 56px;
                }

            .filtered-list .list-wrapper .inner-list-wrapper.loading::before, .filtered-list .list-wrapper.loading::before {
                background-color: #fff;
                width: 100%;
                height: 100%;
                position: absolute;
                z-index: 99;
                opacity: 0.6;
                content: " ";
                cursor: wait;
            }

        .filtered-list .list-wrapper .filter {
            display: none;
        }


        .filtered-list .list-wrapper .list {
            display: grid;
            grid-template-columns: 1fr;
            row-gap: 30px;
            padding: 0 14px;
            margin-bottom: 60px;
        }

        .filtered-list .list-wrapper .inner-list-wrapper.two-columns .list {
            grid-template-columns: calc(50% - 7.5px) calc(50% - 7.5px);
            column-gap: 15px;
        }

            .filtered-list .list-wrapper .inner-list-wrapper.two-columns .list .product-thumbnail .animation .countdown {
                position: relative;
            }
        /*variantes escondidas em mobile com duas colunas*/
        .filtered-list .list-wrapper .inner-list-wrapper.two-columns .product-thumbnail .toggle {
            display: none;
        }

    .filtered-list .mobile-modal.open {
        opacity: 1;
        z-index: 10000;
        transition: opacity 400ms ease-in, z-index 0ms ease-in 0ms;
    }

        .filtered-list .mobile-modal.open .modal-wrapper {
            transform: translateX(0);
        }

    .filtered-list .mobile-modal {
        position: fixed;
        inset: 0;
        width: 100vw;
        background-color: rgba(0,0,0,0.4);
        opacity: 0;
        z-index: -1;
        overflow: hidden;
        transition: opacity 400ms ease-in, z-index 0ms ease-in 400ms;
    }

        .filtered-list .mobile-modal .modal-wrapper {
            width: 100%;
            max-width: calc((291 / 375) * 100vw);
            height: 100%;
            background-color: white;
            margin-left: auto;
            padding: 0 30px 0 20px;
            overflow: scroll;
            transition: all 600ms cubic-bezier(0.550,0.085,0.000,0.990);
            transform: translateX(100%);
        }

            .filtered-list .mobile-modal .modal-wrapper .close-button {
                position: relative;
                width: 26px;
                height: 26px;
                margin: 24px -5px 20px auto;
            }

                .filtered-list .mobile-modal .modal-wrapper .close-button .line {
                    position: absolute;
                    top: 50%;
                    width: 100%;
                    border: 1px solid #242424;
                    border-radius: 50%;
                }

                    .filtered-list .mobile-modal .modal-wrapper .close-button .line:first-of-type {
                        transform: rotateZ(135deg);
                    }

                    .filtered-list .mobile-modal .modal-wrapper .close-button .line:last-of-type {
                        transform: rotateZ(-135deg);
                    }

    .filtered-list .order-by .toggle,
    .filtered-list .filter .item .toggle {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 1px;
        padding-right: 4px;
        margin-bottom: 22px;
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
    }

        .filtered-list .order-by .toggle svg.arrow,
        .filtered-list .filter .item .toggle svg.arrow {
            max-width: 8px;
            height: 15px;
        }

            .filtered-list .filter .item .toggle svg.arrow:hover {
                stroke: #C30000;
            }

    .filtered-list .order-by .options {
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 13px;
    }

        .filtered-list .order-by .options .option {
            font-size: 14px;
            font-weight: 400;
            line-height: 17px;
            margin: 0;
            text-decoration: none;
        }

    .filtered-list .filter {
        padding: 0 !important;
    }

        .filtered-list .filter .item {
            width: 100%;
        }

            .filtered-list .filter .item .toggle {
                margin: 26px 0 22px 0 !important;
                transition: all 500ms ease-in-out;
            }

            .filtered-list .filter .item .checkboxes.color label.black:after {
                content: url(/images/iconCheckBlack.svg) !important;
            }

        .filtered-list .filter .buttons {
            width: 100%;
            display: flex;
            justify-content: center;
            column-gap: 9px;
            padding: 20px 0;
        }

            .filtered-list .filter .buttons button {
                width: 120px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: none;
                color: inherit;
                border: none;
                padding: 0;
                font: inherit;
                cursor: pointer;
                outline: inherit;
            }

                .filtered-list .filter .buttons button[type="reset"] {
                    color: #242424;
                    border: 1px solid #242424;
                }

                .filtered-list .filter .buttons button[type="submit"] {
                    color: white;
                    background: #242424;
                }

    .filtered-list .check {
        margin-bottom: 5px;
    }

    .filtered-list input.slb-checkbox[type="checkbox"] + label {
        font-size: 14px;
        line-height: initial;
        padding-left: 40px;
        font-weight: normal;
    }

    .filtered-list input.slb-checkbox[type="checkbox"]:checked + label {
        font-weight: bold;
    }

    .filtered-list input.slb-checkbox[type="checkbox"] + label:hover {
        color: #C30000;
    }

    .filtered-list .collapsible {
        border-bottom: 1px solid #E8E8E8;
        margin: 0;
    }

        .filtered-list .collapsible .toggle {
            transition: margin 250ms ease-in-out;
            cursor: pointer;
        }

            .filtered-list .collapsible .toggle svg {
                transition: transform 250ms ease-in-out;
            }

        .filtered-list .collapsible:not(.open) .toggle {
            margin-bottom: 0;
        }

        .filtered-list header .toggle .order-by .toggle:hover,
        .filtered-list .collapsible .toggle:hover svg {
            color: #C30000;
            stroke: #C30000;
        }


        .filtered-list .collapsible:not(.open) .toggle svg {
            -webkit-transform: rotate(90deg) !important;
            -moz-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
        }

        .filtered-list .collapsible:not(.open) .collapse-wrapper {
            overflow-y: hidden;
            max-height: 0px;
            pointer-events: none;
            transition: all 500ms ease-in-out;
        }

        .filtered-list .collapsible.open {
            padding-bottom: 29px;
        }

            .filtered-list .collapsible.open .collapse-wrapper {
                overflow-y: hidden;
                pointer-events: all;
                transition: all 500ms ease-in-out;
            }



@media (min-width: 768px) {
    .filtered-list header {
        padding: 29px 0 30px 43px;
    }

        .filtered-list header .toggle .mobile-icon {
            display: none;
        }

        .filtered-list header > .toggle {
            position: absolute;
            top: 43px;
            right: 40px;
        }

        .filtered-list header .toggle .order-by {
            display: block;
            padding: 0 0 29px 47px !important;
            border: none !important;
            background: white;
            max-width: 265px;
        }

            .filtered-list header .toggle .order-by .toggle {
                max-width: 200px;
                margin-left: auto;
                font-size: 14px;
                line-height: 17px;
                cursor: pointer;
                float: right;
                padding-right: 18px;
            }

                .filtered-list header .toggle .order-by .toggle svg {
                    width: 5px;
                    height: 8px;
                }

            .filtered-list header .toggle .order-by .options {
                padding-right: 18px;
            }

                .filtered-list header .toggle .order-by .options .option {
                    text-align: right;
                }

    .filtered-list .list-wrapper .filter {
        width: 100%;
        max-width: min(calc((359 / 1366) * 100vw), 420px);
        display: flex;
        flex-direction: column;
        padding: 0px 36px 34px 43px !important;
    }

    .filtered-list .list-wrapper .inner-list-wrapper {
        max-width: min(calc((1007 / 1366) * 100vw), 1179px);
    }


        .filtered-list .list-wrapper .inner-list-wrapper .loading-gif {
            margin-top: -40px;
            margin-bottom: 70px;
        }

        .filtered-list .list-wrapper .inner-list-wrapper .no-products-message {
            padding: 0 calc(90/1366 * 100vw);
            padding-top: 25px;
        }

            .filtered-list .list-wrapper .inner-list-wrapper .no-products-message + h2 {
                margin-bottom: 50px;
            }

    .filtered-list .list-wrapper .list {
        column-gap: 24px;
        padding: 0;
        padding-right: 55px;
        margin-bottom: 70px;
        grid-template-columns: 50% 50%;
    }
}

@media (min-width: 1200px) {
    .filtered-list .list-wrapper .list {
        grid-template-columns: 33% 33% 33%;
    }
}
