@use "helpers";

#sc-topo{
    position: sticky;
    z-index: 2000;
    width: auto;
    top: 0px;
    left: 0px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;

    &.scrolling{
    }
}

#he-login {
    display: none;
}

.hint-search{
    position: absolute;
    background-color: helpers.$light;
    border: solid 1px helpers.$borders;
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.05);
    top: 100%;
    width: 100%;
    /*max-width: 400px;*/
    // padding: 10px;
    z-index: 1000;
    left: 0;
    pointer-events: none;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s;

    ul{
        padding: 0;
        display: block;
        max-height: calc(100vh - 247px);
        overflow-y: auto;

        li{
            display: block;
            background-color: #FFFFFF;

            &:nth-child(odd){
                background-color: #F8F8F8;
            }

            a{
                display: flex;
                align-items: stretch;
                align-content: flex-start;
                padding: 12px 20px;

                @media(max-width:575px){
                    padding: 12px;
                }
            }

            .foto{
                background: url(../img/icon-img.png) center no-repeat;
                background-size: 22px;
                width: 52px;
                height: 52px;
                position: relative;

                .img{
                    position: absolute;
                    top: 0px;
                    right: 0px;
                    bottom: 0px;
                    left: 0px;
                    background-position: center;
                    background-size: contain;
                    background-repeat: no-repeat;
                }
            }

            .description{
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                width: calc(100% - 52px);
                padding-left: 10px;
                gap: 8px;

                .vlTitulo{
                    display: block;
                    margin: 0px;
                    color: helpers.$textoDark;
                    font: normal 14px helpers.$fontRegular;
                    line-height: 17px;
                    letter-spacing: 0.01em;
                }

                .vlItem{
                    display: block;
                    margin: 0px;
                    color: helpers.$highlight;
                    font: normal 14px helpers.$fontMedium;
                    line-height: 17px;
                }
            }

            &:last-of-type{
                margin-bottom: 0px;
            }
        }
    }

    .total-produtos{
        display: none;
        margin: 20px 0px;
        color: helpers.$textoDark;
        font: normal 15px helpers.$fontRegular;
        text-align: center;
    }

    .btn-hint{
        display: block;
        outline: 0px;
        width: 100%;
        padding: 23px 10px;
        margin: 0 auto;
        color: helpers.$highlight;
        font: normal 12px helpers.$fontMedium;
        line-height: 14px;
        letter-spacing: 0.02em;
        text-align: center;
        border: none;
        background-color: transparent;
    }

    &.visible{
        pointer-events: all;
        transform: translateY(0);
        opacity: 1;
    }
}

#he-topo {
    position: relative;
    z-index: 10;
    display: block;
    background-color: white;

    .conteudo{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1275px;
        margin: 0 auto;
        padding-right: 46px;

        @media (max-width: 1275px) {
            padding-right: 0;
        }

        .logo-content{
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 15px;

            .control-menu{
                outline: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 26px;
                height: 26px;
                
                @media(min-width:992px){
                    display: none;
                }
            }

            .logo{
                display: block;
                outline: 0px;
                width: 100%;
                max-width: helpers.$logoWidth;
                padding-top: 10px;
                padding-bottom: 10px;
    
                img{
                    aspect-ratio: 115 / 80;
                    object-fit: cover;
                    display: block;
                    width: 100%;
                }
            }
        }

        .col-pesquisa {
            display: flex;
            width: 100%;
            justify-content: center;

            .control-search{
                display: none;
                margin-right: 20px;

                @media(max-width:991px){
                    display: flex;
                }

                .btn-search{
                    outline: 0px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 26px;
                    height: 26px;
                }
            }

            .pesquise{
                position: relative;
                display: block;
                width: 100%;
                max-width: 375px;

                @media(max-width:1320px){
                    margin-right: 20px;
                }

                @media(max-width:991px){
                    display: none;
                }

                #he-search{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 100%;
                    padding-left: 13px;
                    padding-right: 13px;
                    background-color: #F0F0F0;
                    border-radius: 5px;

                    .he-bt-search {
                        display: block;
                        outline: 0px;
                        width: 26px;
                        height: 26px;
                        border: none;
                        border-radius: 0px;
                        box-shadow: none;
                        background-color: transparent;
                    }

                    .he-input-search {
                        display: block;
                        outline: 0px;
                        width: calc(100% - 23px);
                        padding: 10px 0px;
                        color: helpers.$textoMedium;
                        font: normal 15px helpers.$fontRegular;
                        text-indent: 13px;
                        border: none;
                        background-color: transparent;
                        box-shadow: none;

                        &:hover,&:focus{
                            outline: 0px;
                        }

                        &::placeholder{
                            color: helpers.$highlight;
                        }
                    }
                }

                &:hover,&:focus{
                    #he-search{
                        .he-bt-search{
                            svg{
                                path{
                                    stroke-width: 2;
                                }
                            }
                        }
                    }
                }
            }
        }


        .col-perfil{
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 15px;

            .item{
                padding-top: 10px;
                padding-bottom: 10px;
            }

            .informations{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 30px;
                margin-right: 25px;

                @media(max-width:1320px){
                    gap: 20px;
                }

                @media(max-width:1199px){
                    display: none;
                }

                .text{
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 6px;

                    span {
                        display: block;
                        margin: 0px;
                        color: helpers.$textoLight;
                        font: normal 12px helpers.$fontMedium;
                        line-height: 14px;
                        letter-spacing: 0.05em;
                    }

                    &:hover,&:focus{
                        svg{
                            path{
                                stroke-width: 2;
                            }
                        }

                        span{
                            text-decoration: underline;
                        }
                    }
                }
            }

            .minha-conta{
                position: relative;
                display: block;
                width: auto;
                margin-right: 20px;

                @media(max-width:991px){
                    display: none;
                }

                .btn-perfil{
                    outline: 0px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 26px;
                    height: 26px;
                }

                .opcoes{
                    position: absolute;
                    display: block;
                    width: 190px;
                    top: 100%;
                    left: 50%;
                    padding: 20px;
                    transform: translateX(-50%);
                    background-color: helpers.$light;
                    border: solid 1px helpers.$borders;
                    visibility: hidden;
                    pointer-events: none;
                    opacity: 0;
                    transition: visibility 0s 0.3s, opacity 0.3s linear;

                    .opt{
                        display: block;
                        outline: 0px;
                        padding: 15px 10px;
                        margin-bottom: 10px;
                        color: helpers.$highlight;
                        font: normal 12px helpers.$fontBold;
                        text-align: center;
                        border: solid 1px helpers.$highlight;
                        @include helpers.transicao(0.4s ease-in-out);

                        &.sair,&.cadastro{
                            color: helpers.$textoLight !important;
                            background-color: helpers.$highlight;
                        }

                        &:last-of-type{
                            margin-bottom: 0px;
                        }

                        
                    }
                }

                &:hover,&:focus,&.ativo{
                    .btn-perfil{
                        svg{
                            path{
                                stroke-width: 2;
                            }
                        }
                    }

                    .opcoes{
                        visibility: visible;
                        pointer-events: initial;
                        opacity: 1;
                        transition: opacity 0.3s linear;
                    }
                }
            }

            .lista-desejo{
                display: block;
                width: auto;
                margin-right: 20px;

                @media(max-width:991px){
                    display: none;
                }

                .btn-lista-desejo{
                    display: block;
                    outline: 0px;
                }

                &:hover,&:focus{
                    .btn-lista-desejo{
                        svg{
                            path{
                                stroke-width: 2;
                            }
                        }
                    }
                }
            }

            .meu-carrinho{
                position: relative;
                display: block;
                width: auto;

                @media(max-width:991px){
                    margin-right: 15px;
                }

                a{
                    position: relative;
                    display: flex;
                    outline: 0px;
                    width: 100%;
                    align-items: center;
                    justify-content: flex-start;

                    .icon{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 26px;
                        height: 26px;
                    }

                    .qtd{
                        position: absolute;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 18px;
                        height: 18px;
                        right: -13px;
                        bottom: -5px;
                        padding-top: 1px;
                        border-radius: 100%;
                        background-color: #6D212C;
                        color: white;
                        font: normal 11px helpers.$fontMedium;
                        line-height: 13px;
                    }

                    .loader{
                        display: none;
                    }
                }

                &:hover,&:focus{
                    a{
                        .icon{
                            svg{
                                path{
                                    stroke-width: 2;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

#he-nav {
    /*position: relative;*/
    background-color: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

    @media(max-width:991px){
        display: none;
    }

    nav {
        text-align:center;
        padding-left: 0px;
        padding-right: 0px;

        .container-nivel{
            display: flex;
            margin: 0px;
            flex-direction: row;
            align-items: center;
            justify-content: center;

            .nav-overlay{
                position: absolute;
                display: block;
                content: "";
                width: 100vw;
                height: 100vh;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                background-color: helpers.$backgroundModal;
                visibility: hidden;
                pointer-events: none;
                opacity: 0;
                transition: visibility 0s 0.3s, opacity 0.3s linear;

                &.ativo{
                    visibility: visible;
                    pointer-events: initial;
                    opacity: 1;
                    transition: opacity 0.3s linear;
                }
            }

            .li-1{
                display: block;
                width: auto;
                border: none;
                background-color: transparent;

                & > a{
                    display: block;
                    outline: 0px;
                    width: auto;
                    color: black;
                    font: normal 15px helpers.$fontRegular;
                    line-height: 18px;
                    text-align: center;
                    padding: 14px 18px;
                    margin: 0px;

                    @media(max-width:1560px){
                        padding-left: 10px;
                        padding-right: 10px;
                    }

                    .chevron{
                        display: none;
                    }

                    &:hover,&:focus{
                        text-decoration: underline;
                    }
                }

                &.sub-nivel{
                    position: relative;
                    & > a{
                        position: relative;
                    }
                }

                .ul-2{
                    position: absolute;
                    z-index: 110;
                    display: flex;
                    align-items: flex-start;
                    flex-wrap: wrap;
                    min-width: 235px;
                    visibility: hidden;
                    opacity: 0;
                    top: 100%;
                    left: 0px;
                    margin: 0px;
                    padding: 10px 0px;
                    text-align: left;
                    background-color: #FFFFFF;
                    @include helpers.transicao(0.3s);
                    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
                    border: 1px solid #eee;

                    .conteudo-ul {
                        .parent-level, .btn-back {
                            display: none;
                        }
                    }

                    .li-2{
                        z-index: 10;
                        display: block;
                        width: 100%;

                        .url-2{
                            display: block;
                            padding: 7px 30px;
                            color: #707070;
                            font: normal 14px helpers.$fontRegular;

                            &:hover,&:focus{
                                text-decoration: underline;
                            }
                        }

                        .ul-3{
                            position: absolute;
                            background: white;
                            min-height: calc(100% + 2px);
                            width: 100%;
                            top: -1px;
                            left: 0;
                            padding: 10px 0px;
                            visibility: hidden;
                            opacity: 0;
                            @include helpers.transicao(0.3s);
                            border-left: 1px solid #eee;
                            z-index: -1;
                            border: 1px solid #eee;

                            .li-3{
                                display:block;
                                width: 100%;

                                a{
                                    display: block;
                                    outline: 0px;
                                    padding: 7px 30px;
                                    color: #707070;
                                    font: normal 14px helpers.$fontRegular;

                                    &:hover,&:focus{
                                        text-decoration: underline;
                                    }

                                    &.ver-tudo{
                                        max-width: 130px;
                                        margin-top: 15px;
                                        margin-left: 20px;
                                        color: #373737;
                                        font: normal 12px helpers.$fontBold;
                                        text-align: center;
                                        border: solid 1px #A4A4A4;
                                    }
                                }
                            }
                        }

                        &.sub-nivel {
                            &:hover {
                                .ul-3 {
                                    visibility: visible;
                                    opacity: 1;
                                    transform: translateX(100%);
                                }
                            }
                        }
                    }

                    .box-ul-2{
                        display: block;
                        width: 100%;

                        .box-menu-itens{
                            display: block;
                            width: 100%;
                        }
                    }
                }

                &.open{
                    & > .ul-2{
                        max-height: 385px;
                    }
                }

                &:hover,&:focus{
                    @media(min-width:768px){
                        .ul-2 {
                            visibility: visible;
                            opacity: 1;
                            -webkit-box-shadow: 0px 5px 18px -8px rgba(0,0,0,0.2);
                            -moz-box-shadow: 0px 5px 18px -8px rgba(0,0,0,0.2);
                            box-shadow: 0px 5px 18px -8px rgba(0,0,0,0.2);
                        }
                    }
                }
            }
        }
    }
}

#he-itens{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    visibility: hidden;
    pointer-events:none;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;

    .box-overlay{
        position: absolute;
        z-index: 1;
        cursor: pointer;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: helpers.$backgroundModal;
    }

    .box-itens {
        background-color: helpers.$light;
        border: none;
        box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
        position: absolute;
        display: flex;
        flex-direction: column;
        right: 0px;
        top: 0px;
        z-index: 130;
        width: 100%;
        height: 100%;
        max-width: 615px;
        font-size: 12px;

        .box-itens-header{
            width: 100%;
        }

        .lista{
            .lista-itens {
                position: relative;
                padding: 0px;

                .item {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    width: 100%;
                    padding: 12px 0px;
                    border-bottom: 1px solid #EEEEEE;

                    .image-content{
                        display: flex;
                        flex-direction: column;
                        width: 100%;
                        max-width: 80px;
                        gap: 5px;

                        .img {
                            display: flex;
                            width: 80px;
                            height: 80px;
    
                            img {
                                display: block;
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }

                        .prod-referencia{
                            display: block;
                            margin: 0px;
                            color: #565656;
                            font: normal 10px helpers.$fontRegular;
                            line-height: 12px;
                            letter-spacing: 0.04em;
                            word-wrap: break-word;
                        }
                    }

                    .info {
                        display: flex;
                        flex-direction: column;
                        width: calc(100% - 80px);
                        padding-left: 20px;
                        gap: 25px;

                        .title-content{
                            display: flex;
                            align-items: flex-start;
                            justify-content: flex-start;
                            width: 100%;
                            gap: 5px;

                            .prod-titulo{
                                display: block;
                                width: calc(100% - 24px);
                                margin: 0px;
                                color: helpers.$textoDark;
                                font: normal 14px helpers.$fontRegular;
                                line-height: 17px;
                            }

                            .item-remover{
                                outline: 0px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                width: 24px;
                                height: 24px;
                            }
                        }

                        .informations-content{
                            display: flex;
                            align-items: center;
                            justify-content: flex-start;
                            width: 100%;
                            gap: 20px;

                            .box-qtd{
                                display: flex;

                                .prod-qtd{
                                    display: flex;
                                    align-items: center;
                                    justify-content: flex-start;
                                    gap: 10px;

                                    .add,
                                    .remove{
                                        outline: 0px;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        width: 24px;
                                        height: 24px;
                                        border: 1px solid #DEDEDE;
                                    }   
                                }

                                span {
                                    display: block;
                                    margin: 0px;
                                    color: helpers.$textoDark;
                                    font: normal 12px helpers.$fontMedium;
                                    line-height: 14px;
                                    letter-spacing: 0.04em;
                                }
                            }

                            .prod-sku{
                                .prod-preco{
                                    display: block;
                                    margin: 0px;
                                    color: helpers.$highlight;
                                    font: normal 12px helpers.$fontBold;
                                    line-height: 14px;
                                    letter-spacing: 0.04em;
                                }
                            }
                        }

                        .box-informacoes{
                            display: flex;
                            width: 100%;
                            align-items: stretch;
                            justify-content: space-between;

                            .box-qtd{
                                display: block;
                                width: 100%;
                                max-width: 57px;

                                .prod-qtd{
                                    display: flex;
                                    width: 100%;
                                    height: 100%;
                                    flex-direction: column;
                                    align-items: center;
                                    justify-content: center;

                                    span{
                                        margin: 2px 0px;
                                        color: helpers.$textoDark;
                                        font: normal 15px helpers.$fontRegular;
                                        text-align: center;
                                    }

                                    .add{
                                        display: flex;
                                        width: 36px;
                                        height: 36px;
                                        background-color: helpers.$medium;
                                        align-items: center;
                                        justify-content: center;

                                        &:before{
                                            @include helpers.sprite();
                                            content: "";
                                            width: 12px;
                                            height: 6px;
                                            background-position: -386px -5px;
                                        }
                                    }

                                    .remove{
                                        display: flex;
                                        width: 36px;
                                        height: 36px;
                                        background-color: helpers.$medium;
                                        align-items: center;
                                        justify-content: center;

                                        &:before{
                                            @include helpers.sprite();
                                            content: "";
                                            width: 12px;
                                            height: 6px;
                                            background-position: -386px -21px;
                                        }
                                    }

                                }
                            }

                            .conteudo{
                                display: block;
                                width: calc(100% - 57px - 42px);
                                padding: 5px 0px;

                                .prod-titulo {
                                    display: block;
                                    margin: 0px;
                                    margin-bottom: 2px;
                                    color: helpers.$textoDark;
                                    font: normal 15px helpers.$fontRegular;
                                }
                                .prod-referencia{
                                    display: block;
                                    margin: 0px;
                                    margin-bottom: 18px;
                                    color: helpers.$textoMedium;
                                    font: normal 12px helpers.$fontRegular;
                                }

                                .dados{
                                    display: block;
                                    width: 100%;

                                    .prod-sku{
                                        display: block;

                                        .box-tam{
                                            display: flex;
                                            margin-right: 10px;
                                            align-items: center;
                                            justify-content: flex-start;

                                            .box-titulo{
                                                display: block;
                                                margin: 0px;
                                                margin-right: 5px;
                                                color: helpers.$textoDark;
                                                font: normal 12px helpers.$fontMedium;
                                            }

                                            span{
                                                display: block;
                                                margin: 0px;
                                                color: helpers.$textoDark;
                                                font: normal 12px helpers.$fontRegular;
                                            }
                                        }

                                        .box-cor{
                                            display: flex;
                                            align-items: center;
                                            justify-content: flex-start;

                                            .box-titulo{
                                                display: block;
                                                margin: 0px;
                                                margin-right: 5px;
                                                color: helpers.$textoDark;
                                                font: normal 12px helpers.$fontMedium;
                                            }

                                            span{
                                                display: block;
                                                margin: 0px;
                                                color: helpers.$textoDark;
                                                font: normal 12px helpers.$fontRegular;
                                            }
                                        }
                                    }

                                    .prod-preco{
                                        display: block;
                                        margin: 0px;
                                        color: helpers.$textoDark;
                                        font: normal 15px helpers.$fontBold;
                                    }
                                }
                            }

                            .item-remover{
                                position: relative;
                                display: flex;
                                outline: 0px;
                                width: 42px;
                                align-items: center;
                                justify-content: center;
                                background-color: helpers.$medium;

                                &:before{
                                    @include helpers.sprite();
                                    display: block;
                                    content: "";
                                    width: 20px;
                                    height: 20px;
                                    background-position: -335px -6px;
                                }
                            }
                        }
                    }

                    &:last-of-type{
                        border-bottom-width: 0px;
                    }
                }
            }

            .lista-vazia{
                position: absolute;
                display: flex;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
                align-items: center;
                justify-content: center;

                .msg-carrinho-vazio{
                    display: block;
                    width: 100%;

                    &:before{
                        display: block;
                        content: "";
                        width: 173px;
                        height: 178px;
                        margin: 0 auto;
                        margin-bottom: 15px;
                        background-image: url(../img/shopping-bag-empty.png);
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }

                    p{
                        display: block;
                        margin: 0px;
                        color: helpers.$textoDark;
                        font: normal 14px helpers.$fontRegular;
                        text-align: center;
                    }
                }
            }
        }

        .valores{
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            max-width: 445px;
            margin: 0 auto;
            margin-top: 30px;

            @media(max-width:575px){
                margin-top: 15px;
                max-width: 100%;
                padding: 0px 30px;
            }

            .cupom-subtotal,.prod-subtotal{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                width: 100%;

                .vl-subtotal,
                .txt-subtotal{
                    display: block;
                    margin: 0px;
                    color: helpers.$highlight;
                    font: normal 18px helpers.$fontBold;
                    line-height: 21px;
                    letter-spacing: 0.02em;
                }

                .txt-subtotal{
                    margin-right: 10px;
                }
            }
        }

        .box-itens-footer{
            width: 100%;
        }
    }

    &.ativo{
        visibility: visible;
        pointer-events:initial;
        opacity: 1;
        transition: opacity 0.3s linear;
    }
}

#he-menu{
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    visibility: hidden;
    pointer-events:none;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;

    .box-overlay{
        position: absolute;
        z-index: 1;
        cursor: pointer;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: helpers.$backgroundModal;
    }

    .box-menu {
        background-color: helpers.$light;
        box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
        position: absolute;
        display: flex;
        flex-direction: column;
        left: 0px;
        top: 0px;
        z-index: 130;
        width: 100%;
        height: 100%;
        max-width: 615px;
        font-size: 12px;

        .box-header{
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            width: 100%;
            gap: 10px;
            padding: 30px 35px;

            @media(max-width:575px){
                padding: 15px;
            }

            .options-content{
                display: flex;
                flex-direction: column;
                gap: 15px;

                .option{
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 10px;

                    span{
                        display: block;
                        margin: 0px;
                        color: helpers.$highlight;
                        font: normal 14px helpers.$fontRegular;
                        line-height: 17px;
                    }
                }
            }

            .btn-close{
                outline: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 26px;
                height: 26px;
            }
        }

        .box-content{
            overflow-y: auto;
            display: flex;
            flex-grow: 1;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            width: 100%;
            padding: 0px;

            .menu{
                display: block;
                width: 100%;

                .li-1{
                    display: block;
                    width: 100%;

                    .url-1,& > a{
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        outline: 0px;
                        padding: 12px 35px;
                        color: helpers.$textoDark;
                        font: normal 15px helpers.$fontRegular;
                        line-height: 18px;

                        @media(max-width:575px){
                            padding-left: 15px;
                            padding-right: 15px;
                        }
                    }

                    .ul-2{
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        top: 0px;
                        left: 0px;
                        background-color: #FFFFFF;
                        visibility: hidden;
                        pointer-events:none;
                        opacity: 0;
                        transition: visibility 0s 0.3s, opacity 0.3s linear;

                        .li-2{
                            display: block;
                            width: 100%;

                            .url-2{
                                display: block;
                                outline: 0px;
                                padding: 11px 35px;
                                color: black;
                                font: normal 15px helpers.$fontLight;
                                line-height: 18px;
                            }

                            .ul-3{
                                display: flex;
                                flex-direction: column;
                                width: 100%;

                                a{
                                    display: block;
                                    outline: 0px;
                                    padding: 5px 0px;
                                    padding-left: 55px;
                                    color: helpers.$textoDark;
                                    font: normal 15px helpers.$fontRegular;
                                    line-height: 18px;
                                }
                            }
                        }

                        .conteudo-ul{
                            display: flex;
                            flex-direction: column;
                            width: 100%;
                            height: 100%;

                            .btn-back{
                                outline: 0px;
                                display: flex;
                                align-items: center;
                                justify-content: flex-start;
                                gap: 12px;
                                padding: 27px 35px;;
    
                                span {
                                    display: block;
                                    margin: 0px;
                                    color: helpers.$textoDark;
                                    font: normal 15px helpers.$fontRegular;
                                    line-height: 18px;
                                }
                            }
    
                            .parent-level{
                                display: flex;
                                flex-direction: column;
                                width: 100%;
                                gap: 20px;
                                padding: 0px 35px;
    
                                .title{
                                    display: block;
                                    margin: 0px;
                                    color: helpers.$highlight;
                                    font: normal 15px helpers.$fontBold;
                                    line-height: 18px;
                                }
    
                                .see-all{
                                    display: flex;
                                    align-items: center;
                                    justify-content: flex-start;
                                    gap: 13px;
    
                                    span{
                                        display: block;
                                        margin: 0px;
                                        color: helpers.$textoDark;
                                        font: normal 15px helpers.$fontRegular;
                                        line-height: 18px;
                                    }
                                }
                            }

                            .box-li2{
                                display: flex;
                                flex-direction: column;
                                flex-grow: 1;
                                width: 100%;
                                overflow-y: auto;
                                padding-top: 20px;
                            }
                            
                            .box-banner{
                                display: none;
                            }
                        }

                        &.active{
                            visibility: visible;
                            pointer-events:initial;
                            opacity: 1;
                            transition: opacity 0.3s linear;
                        }
                    }
                }
            }
        }

        .box-footer{
            display: flex;
            align-items: stretch;
            justify-content: center;
            width: 100%;

            .text{
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                width: 100%;
                padding: 25px 10px;
                background-color: #E5E5E5;
                
                span{
                    display: block;
                    margin: 0px;
                    color: helpers.$highlight;
                    font: normal 12px helpers.$fontBold;
                    line-height: 14px;
                }

                &:first-of-type{
                    background-color: #F0F0F0;
                }
            }
        }
    }

    &.ativo{
        visibility: visible;
        pointer-events:initial;
        opacity: 1;
        transition: opacity 0.3s linear;
    }
}

#he-desejo{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;

    .box-overlay{
        position: absolute;
        z-index: 1;
        cursor: pointer;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: helpers.$backgroundModal;
    }

    .box-section {
        background-color: helpers.$light;
        border: none;
        box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 130;
        width: 100%;
        height: 100%;
        max-width: 615px;
        font-size: 12px;

        .section-header{
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .lista{
            .lista-loading{
                position: absolute;
                z-index:1;
                display: none;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
                align-items: center;
                justify-content: center;
                background-color: rgba(255,255,255,0.6);

                img{
                    display: block;
                    width: 100%;
                    max-width: 30px;
                }
            }

            .lista-itens {
                overflow-x: hidden;
                position: relative;
                padding: 0px;
                height: 100%;

                .item {
                    display: flex;
                    align-items: stretch;
                    justify-content: flex-start;
                    width: 100%;
                    padding: 12px 0px;
                    border-bottom: solid 1px #EEEEEE;

                    .product-image{
                        display: flex;
                        align-items: stretch;
                        justify-content: flex-start;
                        width: 120px;

                        .product-check{
                            cursor: pointer;
                            display: flex;
                            width: 40px;
                            align-items: center;
                            justify-content: center;

                            .icon{
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                width: 20px;
                                height: 20px;
                                padding-right: 1px;
                                padding-bottom: 1px;
                                background-color: #F5F5F5;
                                border: 1px solid #DDDDDD;
                            }
                        }

                        .img {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            outline: 0px;
                            width: 80px;
                            height: 80px;
    
                            img {
                                display: block;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }
                    }

                    .info {
                        display: flex;
                        align-items: stretch;
                        justify-content: space-between;
                        width: calc(100% - 120px);
                        padding-left: 10px;

                        .info-content{
                            display: flex;
                            flex-direction: column;
                            width: calc(100% - 42px);
                            padding-right: 10px;
                            gap: 10px;

                            .conteudo{
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                outline: 0px;
                                width: 100%;
                                gap: 10px;
    
                                .prod-titulo{
                                    display: block;
                                    margin: 0px;
                                    color:helpers.$textoDark;
                                    font: normal 14px helpers.$fontRegular;
                                    line-height: 18px;
                                    letter-spacing: 0.05em;
                                }
    
                                .prod-referencia{
                                    display: block;
                                    margin: 0px;
                                    color:helpers.$textoDark;
                                    font: normal 10px helpers.$fontRegular;
                                    line-height: 12px;
                                    letter-spacing: 0.04em;
                                }
                            }

                            .product-options{
                                display: none;
                                align-items: center;
                                justify-content: flex-start;
                                width: 100%;
                                gap: 5px;

                                select{
                                    outline: 0px;
                                    display:block;
                                    flex-grow: 1;
                                    padding: 5px;
                                    color: helpers.$textoDark;
                                    font: normal 12px helpers.$fontRegular;
                                    line-height: 15px;
                                    background-color: #FFFFFF;
                                    border-radius: 0px;
                                    border: solid 1px #DDDDDD;
                                    box-shadow: none;
                                }

                                .sizes-content{
                                    display: flex;
                                    flex-direction: column;
                                    width: 50%;
                                }
                            }
                        }


                        .item-remover{
                            outline: 0px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 42px;
                        }
                    }

                    &.checked{
                        background-color: rgba(helpers.$highlight, 0.1);
                        
                        .product-image{
                            .product-check{
                                .icon{
                                    background-color: helpers.$highlight;
                                    border: 1px solid helpers.$highlight;
                                }
                            }
                        }

                        .info{
                            .info-content{
                                .product-options{
                                    display: flex;
                                }
                            }
                        }
                    }

                    &:last-of-type {
                        margin-bottom: 0px;
                        border-bottom-width: 0px;
                    }
                }
            }

            .lista-vazia{
                position: absolute;
                display: flex;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
                padding: 15px;
                align-items: center;
                justify-content: center;

                .msgLista{
                    display: block;
                    margin: 0px;
                    color: helpers.$textoDark;
                    font: normal 12px helpers.$fontBold;
                    text-align: center;

                    &:before{
                        display: block;
                        content: "";
                        width: 173px;
                        height: 178px;
                        margin: 0 auto;
                        margin-bottom: 15px;
                        background-image: url(../img/shopping-bag-empty.png);
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }
            }
        }

        .section-rodape {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
    }

    &.ativo{
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s linear;
    }
}

#sidebar-add-pedido-by-favoritos{
    background-color: #FFFFFF;
    border: none;
    bottom: 0;
    box-shadow: 2px 2px 3px helpers.$backgroundModal;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    max-width: 615px;
    position: fixed;
    right: 0px;
    width: 100%;
    top: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events:none;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;

    &.active{
        visibility: visible;
        pointer-events:initial;
        opacity: 1;
        transition: opacity 0.3s linear;
    }

    .header{
        width: 100%;
    }

    .body{
        flex-grow: 1;
        overflow-y: auto;
        padding: 10px 30px;

        .form-group{
            margin-bottom: 20px;

            label{
                display: block;
                margin: 0px;
                margin-bottom: 10px;
                color: helpers.$textoDark;
                font: normal 15px helpers.$fontBold;
            }

            .form-control{
                display: block;
                outline: 0px;
                width: 100%;
                height: auto;
                padding: 15px 10px;
                color: helpers.$textoDark;
                font: normal 15px helpers.$fontRegular;
                border: solid 1px helpers.$borders;
                border-radius: 0px;
                box-shadow: none;
            }

            &:last-of-type{
                margin-bottom: 0px;
            }
        }
    }

    .footer{
        width: 100%;
    }
}

#mod-search{
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: calc(100% - 65px);
    bottom: 0px;
    right: 0px;
    visibility: hidden;
    pointer-events:none;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;

    .box-overlay{
        position: absolute;
        z-index: 1;
        cursor: pointer;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: helpers.$light;
    }

    .box-content {
        display: block;
        position: absolute;
        z-index: 130;
        width: 100%;
        max-width: 615px;
        top: 30px;
        left: 50%;
        padding: 0px 15px;
        transform: translateX(-50%);
        font-size: 12px;

        @media(max-width:615px){
            top: 15px;
        }

        .mobile-busca{
            position: relative;
            display: block;
            width: 100%;

            .he-search{
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                width: 100%;
                padding: 0px 15px;
                background-color: #F0F0F0;
                border-radius: 5px;

                .he-bt-search{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    outline: 0px;
                    width: 26px;
                    height: 26px;
                    border: none;
                    box-shadow: none;
                    background-color: transparent;
                }

                .he-input-search{
                    flex-grow: 1;
                    display: block;
                    outline: 0px;
                    width: auto;
                    padding: 15px 10px;
                    border:none;
                    box-shadow: none;
                    color: helpers.$highlight;
                    font: normal 13px helpers.$fontMedium;
                    line-height: 16px;
                    background-color: transparent;
                }

                .ctrl-mod{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    outline: 0px;
                    width: 20px;
                    height: 20px;
                }
            }

            .hint-search{
                width: 100%;
                height: calc(100vh - 173px);
                transform: translateY(20px);
            }
        }
    }

    &.ativo{
        visibility: visible;
        pointer-events:initial;
        opacity: 1;
        transition: opacity 0.3s linear;
    }
}