@import "helpers";

.a-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-right: 15px;
    padding-top: 1px;
    border: solid 1px #E5E5E5;
    border-radius: 100%;
    @include transicao(0.4s ease-in-out);

    svg{
        visibility: hidden;
        pointer-events:none;
        opacity: 0;
        transition: visibility 0s 0.3s, opacity 0.3s linear;
    }
}

#con-bannerCat {
    display: none;

    @media (min-width: 768px) {
        display: block;
    }

    #bannertopoCenter{
        display: block;
        width: 100%;

        .seq1 {
            img {
                display: block;
                width: 100%;
                max-width: 1920px;
            }
        }
    }
}

#con-principal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1578px;
    margin: 0 auto;

    .page-head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 16px;
        padding-top: 40px;
        padding-bottom: 60px;

        @media(max-width:1199px){
            padding-bottom: 50px;
            flex-direction: column;
            justify-content: flex-start;
        }

        .column{
            display: flex;
            flex-direction: column;
            width: calc(33.3% - 16px);

            @media(max-width:1199px){
                width: 100%;
            }

            .box-breadcrumb{
                display: block;
                width: 100%;

                .conteudo{
                    display: flex;
                    width: 100%;
                    color: #5A5A5A;
                    font: normal 12px $fontRegular;
                    line-height: 17px;
                    flex-wrap: wrap;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 10px;

                    @media(max-width:1199px){
                        justify-content: center;
                    }

                    a{
                        display: block;
                        outline: 0px;
                        text-transform: uppercase;
                    }
                }
            }

            .page-title{
                display: block;
                margin: 0px;
                color: $textoDark;
                font: normal 32px $fontRegular;
                line-height: 44px;
                text-align: center;
                text-transform: uppercase;
            }

            .encontrados{
                display: block;
                margin: 0px;
                color: $textoDark;
                font: normal 14px $fontRegular;
                line-height: 20px;
                text-align: right;

                @media(max-width:1199px){
                    text-align: center;
                }
            }
        }
    }    

    .box-principal{
        display: block;
        width: calc(100% - 327px);
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 87px;

        @media(max-width:1199px){
            width: 100%;
            padding-left: 0px;
            border-left: 0px;
        }

        .box-header{
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            width: 100%;
            margin-bottom: 50px;

            @media(max-width:1199px){
                margin-bottom: 30px;
            }

            @media(max-width:767px){
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .box-filtros-escolihdos{
                display: block;
                flex-grow: 1;

                .pagina-titulo{
                    display: none;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 24px $fontSemibold;
                    line-height: 28px;

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

                    @media(max-width:767px){
                        text-align: center;
                    }
                }
            }

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

                @media(max-width:767px){
                    width: 100%;
                }

                .control-filters{
                    display: none;
                    outline: 0;
                    margin-right: 20px;
                    color: $textoDark;
                    font: normal 14px $fontRegular;
                    line-height: 20px;
                    gap: 15px;
                    align-items: center;
                    justify-content: flex-start;

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

                .con-ordenacao {
                    position: relative;
                    display: flex;
                    width: auto;
                    padding-top: 5px;
                    padding-bottom: 5px;
                    align-items: flex-start;
                    justify-content: flex-end;
                    margin-left: 15px;

                    .title {
                        display: flex;
                        align-items: center;
                        cursor: pointer;
                        color: $textoDark;
                        font: normal 14px $fontRegular;
                        line-height: 20px;
                        gap: 15px;
                    }

                    .options {
                        position: absolute;
                        z-index: 100;
                        display: block;
                        width: 215px;
                        top: 100%;
                        right: 0;
                        background-color: $light;
                        -webkit-box-shadow: 0px 15px 30px 0px rgba(0,0,0,0.25);
                        -moz-box-shadow: 0px 15px 30px 0px rgba(0,0,0,0.25);
                        box-shadow: 0px 15px 30px 0px rgba(0,0,0,0.25);
                        visibility: hidden;
                        pointer-events: none;
                        opacity: 0;
                        transition: visibility 0s 0.3s, opacity 0.3s linear;

                        li {
                            display: block;
                            width: 100%;

                            a {
                                position: relative;
                                display: flex;
                                padding: 7px 35px;
                                outline: 0px;
                                align-items: center;
                                justify-content: flex-start;
                                @include transicao(0.3s ease-in-out);

                                p{
                                    display: block;
                                    margin: 0px;
                                    color: $textoDark;
                                    font: normal 14px $fontMedium;
                                    line-height: 18px;
                                    @include transicao(0.4s ease-in-out);
                                }

                                &.selected{
                                    .a-icon{
                                        border-color: $highlight;

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

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

                            &:first-of-type{
                                a{
                                    padding-top: 20px;
                                }
                            }
                            &:last-of-type{
                                a{
                                    padding-bottom: 20px;
                                }
                            }
                        }
                    }

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

        }

        .ls-produtos {
            display: block;
            width: auto;
            margin-left: -10px;
            margin-right: -10px;

            .item{
                text-align: left;
            }

            &.prevent-load{
                display: block;
            }
        }
    }
}

.section-categoria{
    padding: 0px;
    padding-bottom: 118px;
    background-color: transparent;
    @include transicao(0.4s ease-in-out);
    
    &.pt{
        padding-top: 80px;
    }

    @media(max-width:991px){
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .conteudo{
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1578px;
        margin: 0 auto;

        .section-head{
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            width: 100%;
            gap: 15px;
            margin-bottom: 20px;

            .titles{
                display: flex;
                flex-direction: column;
                gap: 3px;

                .title{
                    display: block;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 22px $fontRegular;
                    line-height: 30px;
                }

                .subtitle{
                    display: block;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 14px $fontRegular;
                    line-height: 20px;
                    letter-spacing: 0.23rem;
                }
            }

            .btn-section{
                outline: 0px;
                display: block;
                padding: 18px 25px;
                background-color: $light;
                color: $textoDark;
                font: normal 14px $fontRegular;
                line-height: 19px;
                text-align: center;
                border: solid 1px $highlight;
                @include transicao(0.4s ease-in-out);

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

                &:hover,&:focus{
                    color: #FFFFFF;
                    background-color: $highlight;
                }
            }

            &.centered{
                justify-content: center;

                .titles{
                    align-items: center;
                }

                .btn-section{
                    display: none;
                }
            }
        }
    }

    .container-lista-produtos{
        .ls-produtos {
            position:relative;
            padding-left: 0px;
            padding-right: 0px;

            .item {
                display: block;
                width:100%;
                max-width: 100%;
                padding: 0px;
                margin-bottom: 0px;
            }
        }

        .icon-produto-cat{
            position: absolute;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            top: 50%;
            transform: translateY(-50%);

            @media(max-width:767px){
                display: none !important;
            }


            &.icon-produto-prev{
                left: -35px;

                @media(max-width:1650px){
                    left: -15px;
                }
            }

            &.icon-produto-next{
                right: -35px;

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

.ls-produtos {
    .item {
        position: relative;
        display: inline-block;
        float: none;
        margin-bottom: 30px;
        margin-right: -4px;
        padding: 10px;
        text-align:left;
        vertical-align: top;
        @include transicao(0.2s ease-in-out);

        .box-produto-cores{
            display: flex;
            width: 100%;
            flex-wrap: wrap;
            align-items:center;
            justify-content:center;

            .cor{
                overflow: hidden;
                display: block;
                outline: 0px;
                width: 26px;
                height: 26px;
                margin: 5px;
                border-radius: 100%;
                border: solid 1px #b7b7b7;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                display: flex;
                align-items: center;
                justify-content: center;

                img{
                    display: block;
                    width: 20px;
                    height: 20px;
                    border-radius: 100%;
                }
            }
        }

        .aimg {
            aspect-ratio: 385 / 510;
            position: relative;
            display: block;
            width: 100%;
            max-width: $maxI;
            margin: 0 auto;
            background-color: transparent;

            .loading {
                position: absolute;
                overflow: hidden;
                display: none;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background-color: rgba(255,255,255, 0.8);
                background-image: url("../img/loading.gif");
                background-repeat: no-repeat;
                background-position: center;
            }

            img {
                aspect-ratio: 385 / 510;
                object-fit: cover;
                display: block;
                width: 100%;
            }

            .vlPromo {
                position: absolute;
                z-index: 11;
                display: none;
                width: 100%;
                max-width: 62px;
                padding: 2px 5px;
                top: 0px;
                right: 0px;
                color: $textoDark;
                font: normal 12px $fontSemibold;
                text-align: center;
                border: solid 1px $highlight;
                background-color: $light;
            }

            .tag-esgotado{
                position: absolute;
                z-index: 11;
                display: none;
                width: 100%;
                max-width: 62px;
                padding: 2px 5px;
                top: 0px;
                left: 0px;
                color: $textoDark;
                font: normal 12px $fontSemibold;
                text-align: center;
                border: solid 1px $highlight;
                background-color: $light;
            }

            .tag-lancamentos{
                position: absolute;
                z-index: 11;
                display: block;
                width: 100%;
                max-width: 62px;
                padding: 2px 5px;
                top: 0px;
                right: 0px;
                color: $textoDark;
                font: normal 12px $fontSemibold;
                text-align: center;
                border: solid 1px $highlight;
                background-color: $light;
            }

            .btn-comprar{
                position: absolute;
                display: block;
                width: 100%;
                margin: 0px;
                padding: 13px;
                left: 0px;
                bottom: 0px;
                color: $textoDark;
                font: normal 14px $fontMedium;
                line-height: 21px;
                text-align: center;
                background-color: rgba($light, 0.85);
                visibility: hidden;
                pointer-events: none;
                opacity: 0;
                transition: visibility 0s 0.3s, opacity 0.3s linear, background-color 0.4s ease-in-out;

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

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

        .box-item{
            display: block;
            width: 100%;
            max-width: $maxI;
            margin: 0 auto;
            padding: 20px 10px;

            .desc {
                min-height: 30px;
                color: #9A9A9A;
                font: {
                    family: $fontRegular;
                    size: 14px;
                    weight: normal;
                }
                text-align: center;
                line-height: 19px;

                a {
                    display: -webkit-box;
                    outline: 0px;
                    width: 100%;
                    font: inherit;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;  
                    overflow: hidden;
                    @include transicao(0.4s ease-in-out);
                    text-wrap: nowrap;
                }
            }

            .preco{
                display: flex;
                width: 100%;
                align-items: center;
                justify-content: center;
                gap: 15px;

                .vlDe{
                    display: block;
                    margin: 0px;
                    color: #9A9A9A;
                    font: normal 15px $fontRegular;
                    line-height: 20px;
                    text-decoration: line-through;
                }

                .vlPor,.esgotado{
                    display: block;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 18px $fontRegular;
                    line-height: 25px;
                }
            }

            .precoParc{
                display: block;
                margin: 0px;
                color: #9A9A9A;
                font: normal 14px $fontRegular;
                line-height: 20px;
                text-align: center;

                #emphasis-price{
                    color: #000;
                }
            }
        }

        &.lancamento{ 
            .aimg{
                .vlPromo{
                    top: 30px;
                }
            }
        }

        &.esgotado{ 
            .aimg{
                .tag-esgotado{
                    display: block;
                }
            }
        }

        &:hover,&:focus{
            .btn-comprar{
                visibility: visible;
                pointer-events: initial;
                opacity: 1;
                transition: opacity 0.3s linear, background-color 0.4s ease-in-out;
            }
        }
    }
}

.filtros-escolhidos {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;

    @media(max-width:767px){
        flex-direction: column;
        margin-bottom: 30px;
        align-items: center;
        justify-content: center;
    }

    .filtros-titulo{
        display: block;
        margin: 0px;
        margin-right: 25px;
        color: $textoDark;
        font: normal 14px $fontRegular;
        line-height: 20px;

        @media(max-width:767px){
            margin-right: 0px;
            margin-bottom: 10px;
        }
    }

    .control-filtros{
        display: flex;
        /*width: calc(100% - 115px);*/
        width: auto;
        padding: 0px;
        list-style: none;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;

        @media(max-width:767px){
            justify-content: center;
        }

        .item{
            display: block;
            margin: 0px 15px 0px 0px;
            @include transicao(0.4s ease-in-out);
            background-color: #F0F0F0;

            .link-filtro {
                display: flex;
                align-items: center;
                padding: 3px;
                font-size: 12px;
                position: relative;
                color: #787875;
                font: normal 12px $fontRegular;
                line-height: 17px;
                gap: 3px;

                .title {
                    display: block;
                }

                .value {
                    display: block;
                    // font-family: $fontBold;

                    &:after{
                        position: absolute;
                        @include sprite();
                        content: "";
                        width: 5px;
                        height: 5px;
                        top: -4px;
                        right: -6px;
                        background-position: -457px -69px;
                    }
                }

                img {
                    max-width: 15px;
                }
            }

            &.remover-todos {
                background-color: transparent;
                border: none;
                margin: 0px;

                .link-filtro {
                    display: block;
                    color: $textoDark;
                    font: normal 14px $fontRegular;
                    line-height: 20px;
                    text-decoration: underline;
                }
            }
        }
    }
}

#mobile-filtros{
    .box-filtros{
        .box-header,
        .box-footer{
            display:none;
        }
    }
}

@media(max-width:1199px){
    #mobile-filtros{
        position: fixed;
        z-index: 2000;
        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: $backgroundModal;
        }
    
        .box-filtros {
            background-color: $light;
            border: none;
            box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
            display: block;
            position: absolute;
            left: 0px;
            top: 0px;
            z-index: 130;
            width: 100%;
            height: 100%;
            max-width: 375px;
            font-size: 12px;
    
            .box-header{
                display: flex;
                width: 100%;
                padding:20px 25px;
                align-items: center;
                justify-content: space-between;
    
                p{
                    display: block;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 18px $fontMedium;
                    line-height: 22px;
                    letter-spacing: 0.01em;
                }
    
                .box-close{
                    outline: 0px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 24px;
                    height: 24px;
                }
            }
    
            .box-content{
                overflow-y: auto;
                display: flex;
                width: 100%;
                padding: 15px 25px;
                height: calc(100vh - 119px);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;

                .title-content{
                    display: none;
                }
            }
    
            .box-footer{
                display: block;
                width: 100%;
                border-top: solid 1px $borders;
    
                .btn-remover{
                    display: block;
                    outline: 0px;
                    width: 100%;
                    padding: 15px 10px;
                    color: $textoDark;
                    font: normal 15px $fontBold;
                    text-align: center;
                }
            }
        }
    
        &.ativo{
            visibility: visible;
            opacity: 1; 
            transition: opacity 0.3s linear;
        }
    }
}

#prd-precos, .prd-precos{
    display: block;
    width: 100%;
    margin-bottom: 30px;

    .precoSemPromocao,.precoComPromocao{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        width: 100%;

        .precoDeValor{
            display: block;
            margin: 0px;
            margin-right: 13px;
            color: #5A5A5A;
            font: normal 15px $fontRegular;
            line-height: 21px;
            text-decoration: line-through;
        }

        .precoPorValor{
            display: block;
            margin: 0px;
            color: $textoDark;
            font: normal 22px $fontRegular;
            line-height: 30px;
            margin-bottom: 7px;
        }

        .precoParc{
            display: block;
            width: 100%;
            margin: 0px;
            color: #5A5A5A;
            font: normal 15px $fontRegular;
            line-height: 20px;

            span{
                font-style: normal;
                // font-family: $fontBold;
            }
        }

        .descontoPix{
            display: block;
            width: 100%;
            margin: 0px;
            color: #5A5A5A;
            font: normal 15px $fontRegular;
            line-height: 20px;

            span{
                font-style: normal;
                // font-family: $fontBold;
            }
        }

        .condicao-pagamento {
            display: flex;
            align-items: center;
            gap: 5px;
            width: 100%;
            margin: 5px 0;

            .icon {
                width: 18px;
                display: flex;
                align-items: center;

                svg {
                    fill: #5A5A5A;
                }
            }
        }
    }
}

#prd-cor,
.prd-cor {
    display: block;
    width: 100%;
    margin-bottom: 20px;

    .box-cores{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;

        label, span {
            position: relative;
            overflow: hidden;
            display: block;
            cursor: pointer;
            width: 34px;
            height: 34px;
            margin: 0px;
            padding: 1px;
            border-radius: 100%;
            border: 1px solid transparent;

            img{
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 100%;
                object-fit: cover;
            }
            
            &.active {
                border-color: $highlight;
            }
        }

        .iconCor {
            cursor: default;
            opacity: 0.6;

            &:before {
                content: "X";
                display: block;
                font-size: 24px;
                font-weight: bold;
                height: 100%;
                left: 1px;
                line-height: 1.2;
                position: absolute;
                text-align: center;
                top: 0px;
                width: 100%;
            }
        }

        input {
            position: absolute;
            overflow: hidden;
            height: 0;
            width: 0;
            visibility: hidden;
        }
    }
}

#prd-tam,
.prd-tam {
    display: flex;
    flex-direction: column;
    width: 100%;

    .prd-tam-list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        max-width: 450px;

        .prd-form-title{
            width: 100%;
        }

        .container-tam{
            display: flex;
            flex-grow: 1;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
            
            &.has-table{
                max-width: calc(100% - 223px);
                padding-right: 20px;
            }

            .item{
                position: relative;
                display: block;
                width: 26px;
                height: 26px;
                padding: 1px;
                border-radius: 100%;
                border: 1px solid transparent;
                background-color: $light;

                label{
                    position: absolute;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: calc(100% - 1px);
                    height: calc(100% - 1px);
                    left: 1px;
                    top: 1px;
                    color: $textoDark;
                    font: normal 12px $fontBold;
                    line-height: 15px;
                    letter-spacing: 0.02em;
                    border-radius: 100%;
                    background-color: #EEEEEE;
                }

                input{
                    display: none;
                }

                &.bloqueado{
                    overflow: hidden;
                    opacity: 0.5;
                    background-color: $medium;

                    &:before{
                        position: absolute;
                        z-index: 50;
                        display: block;
                        content: "";
                        width: 1px;
                        height: 42px;
                        top: 50%;
                        left: 50%;
                        margin-top: -21px;
                        background-color: $error;
                        -webkit-transform: rotate(45deg);
                        -moz-transform: rotate(45deg);
                        -o-transform: rotate(45deg);
                    }
                }

                &.ativo{
                    border-color: $highlight;
                }
            }
        }

        .prd-guia{
            padding-left: 20px;
            border-left: 1px solid #CCCCCC;
        }

        .selecione{
            display: block;
            margin: 0px;
            color: $textoDark;
            font: normal 11px $fontRegular;
        }
    }

    // span {
    //     display: block;
    //     color: $textoDark;
    //     font-size: 12px;
    //     font-family: $fontRegular;
    //     float: right;
    //     margin-bottom: 10px;
    //     margin-top: -20px;
    //     text-decoration: underline;
    // }
}

.prd-form-title{
    display: block;
    margin: 0px;
    margin-bottom: 10px;
    color: $textoDark;
    font: normal 12px $fontBold;
    line-height: 15px;
    letter-spacing: 0.02em;
}

.tooltipDisponibilidade {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    padding: 5px;
    margin-left: 2px;
    color: $textoLight;
    font: normal 12px $fontRegular;
    background: $success;
    text-align: center;
    border: none;
    border-radius: 0px;

    &.danger {
        background-color: $error;
    }

    .seta {
        background: transparent;
        border: 5px solid $borders;
        border-width: 5px 5px 0px 0px;
        display: inline-block;
        height: 10px;
        left: 23px;
        position: absolute;
        top: -5px;
        transform: rotate(-45deg);
        width: 10px;
        display:none;
    }
}

#grade {
    &.grade-tradicional{
        margin-top: 30px;
        .tbGrade {
            .skuCell {
                height: 45px;
                overflow: hidden;
                padding: 4px;
                position: relative;
                width: 45px;

                .semEstoque {
                    background: $medium;
                    color: $textoLight;
                    display: block;
                    font-size: 9px;
                    height: 45px;
                    left: 4px;
                    padding-top: 9px;
                    position: absolute;
                    text-align: center;
                    top: 4px;
                    width: 45px;
                }
            }
            .skuCor {
                height: 45px;
                width: 45px;

                img {
                    border-right: 1px solid $borders;
                    height: 45px;
                    width: 45px;
                }
            }
            .skuTam {
                font-family: $fontRegular;
                font-size: 14px;
                font-weight: bold;
                line-height: 44px;
                text-align: center;
                &:first-child {
                    border-width: 0px 1px 0px 0px;
                }
                &:last-child {
                    border-width: 1px 1px 1px 0px;
                }
            }
            .skuInput {
                border: 1px solid $borders;
                height: 45px;
                text-align: center;
                width: 45px;
            }
            tfoot {
                display: none;
            }
        }
    }

    &.grade-accordion{
        overflow: hidden;
        margin-bottom: 30px;

        .cor{
            display: block;
            width: 100%;
            margin-bottom: 10px;

            .box-cor{
                display: block;
                width: 100%;

                .amostra{
                    position: relative;
                    display: flex;
                    outline: 0px;
                    width: 100%;
                    padding: 20px;
                    align-items: center;
                    justify-content: space-between;
                    background-color: $light;
                    border: solid 1px $borders;

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

                        .cor-image{
                            position: relative;
                            display: block;
                            width: 24px;
                            height: 24px;
                            padding: 3px;
                            border: solid 1px #EFEFEF;
                            border-radius: 100%;
                            @include transicao(0.4s ease-in-out);

                            img{
                                display: block;
                                width: 100%;
                                height: 100%;
                                border-radius: 100%;
                            }
                        }

                        .cor-titulo {
                            display: block;
                            width:calc(100% - 24px);
                            margin: 0px;
                            padding-left: 10px;
                            color: $textoDark;
                            font: normal 15px $fontRegular;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
                    }

                    &:after{
                        @include sprite();
                        display: block;
                        content: "";
                        width: 10px;
                        height: 5px;
                        background-position: -453px -52px;
                        @include transicao(0.4s ease-in-out);
                    }

                    &:hover,&:focus{
                        .box-cor-info{
                            .cor-image{
                                border-color: $dark;
                            }
                        }
                    }
                }


                .tamanhos{
                    display: none;
                    width: 100%;
                    overflow: hidden;

                    .header{
                        display: flex;
                        width: 100%;
                        align-items: center;
                        justify-content: flex-start;

                        .tamanho,.quantidade{
                            display: block;
                            width: 100%;
                            margin: 0px;
                            padding: 5px 0px;
                            color: $textoMedium;
                            font: normal 12px $fontRegular;
                        }

                        .tamanho{
                            max-width: 42px;
                            margin-right: 2px;
                        }

                        .quantidade{
                            width: calc(100% - 121px);
                            text-align: center;
                        }
                    }

                    .item{
                        display: flex;
                        width: 100%;
                        align-items: stretch;
                        justify-content: flex-start;

                        &.bloqueado {
                            .avise-me {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                width: 100%;
                                color: #5f5f5f;
                                background: #f9f9f9;
                                font: normal 13px $fontRegular;
                                text-align: center;

                                a:hover {
                                    text-decoration: underline;
                                }
                            }
                        }

                        .tamanho{
                            display: flex;
                            margin: 0px;
                            width: 68px;
                            height: 42px;
                            color: $textoDark;
                            font: normal 15px $fontRegular;
                            border: solid 1px $borders;
                            border-top-width: 0px;
                            border-top-right: 0px;
                            align-items: center; 
                            justify-content: center;
                        }

                        .box-skuInput{
                            position: relative;
                            display: flex;
                            width: calc(100% - 68px);
                            border: solid 1px $borders;
                            border-top-width: 0px;
                            border-left-width: 0px;
                            align-items: stretch;
                            justify-content: center;

                            .skuInput{
                                display: flex;
                                outline: 0px;
                                width: calc(100% - 90px);
                                padding: 0px 10px;
                                color: $textoDark;
                                font: normal 15px $fontRegular;
                                text-align: center;
                                box-shadow: none;
                                border: none;
                                border-radius: 0px;
                                box-shadow: none;
                                background-color: transparent;

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

                                &:disabled {
                                    color: #999;
                                }
                            }
                            .skuInput::-webkit-outer-spin-button,
                            .skuInput::-webkit-inner-spin-button {
                                -webkit-appearance: none;
                                margin: 0;
                            }

                            .skuInput[type=number] {
                                -moz-appearance:textfield;
                            }

                            .controle-input{
                                .btn-ctrl{
                                    position: absolute;
                                    display: flex;
                                    outline: 0px;
                                    width: 42px;
                                    height: 41px;
                                    top: 0px;
                                    background-color: #EEEEEE;
                                    align-items: center;
                                    justify-content: center;

                                    &:before{
                                        @include sprite();
                                        display: block;
                                        content: "";
                                        width: 15px;
                                        height: 15px;
                                    }

                                    &.ctrl-menos{
                                        left: 0px;
                                        &:before{
                                            background-position: -386px -40px;
                                        }
                                    }

                                    &.ctrl-mais{
                                        right: 0px;
                                        &:before{
                                            background-position: -412px -40px;
                                        }
                                    }
                                }
                            }
                        }

                        .tooltipDisponibilidade {
                            display: flex;
                            width: 160px;
                            min-height: 42px;
                            padding: 5px;
                            color: $textoDark;
                            font: normal 13px $fontMedium;
                            background: $light;
                            text-align: center;
                            border: solid 1px $borders;
                            border-radius: 0px;
                            align-items: center;
                            justify-content: center;

                            &.danger {
                                color: #790000;
                            }

                            .seta {
                                display:none;
                            }

                            a.grade-avisame {
                                &:hover {
                                    text-decoration: underline;
                                }
                            }
                        }

                        &:last-of-type{
                            p,.skuInput{
                                border-bottom-width: 1px;
                            }
                        }
                    }
                }
            }

            .box-total{
                display: flex;
                width: auto;
                margin-top: -4px;
                min-width: 344px;
                padding: 13px 15px;
                align-items: center;
                justify-content: space-between;
                background-color: #FFFFFF;
                border: solid 1px #EFEFEF;

                @media(max-width:575px){
                    width: 100%;
                }

                .titulo{
                    display: block;
                    margin: 0px;
                    margin-right: 10px;
                    color: $textoDark;
                    font: normal 13px $fontLight;
                    letter-spacing: 0.01em;
                }

                .valores{
                    display: flex;
                    align-items: center;

                    .itens{
                        display: block;
                        margin: 0px;
                        margin-right: 15px;
                        color: $textoDark;
                        font: normal 13px $fontLight;
                        letter-spacing: 0.01em;
                    }

                    .valor{
                        display: block;
                        margin: 0px;
                        color: $textoDark;
                        font: normal 17px $fontMedium;
                        letter-spacing: 0.05em;
                    }
                }
            }

            &.ativa {
                .box-cor{
                    .amostra {
                        .box-cor-info{
                            .cor-image{
                                border-color: $dark;
                            }
                        }

                        &:after{
                            transform: rotate(180deg);
                        }
                    }
                }
            }

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

        .prd-guia{
            display: block;
            outline: 0px;
            margin-top: 15px;
            color: $textoDark;
            font: normal 15px $fontRegular;
            text-align:center;

            &:before{
                @include sprite();
                content: "";
                width: 26px;
                height: 12px;
                margin-top: -2px;
                margin-right: 15px;
                vertical-align: middle;
                background-position: -90px -85px;
            }
        }

        .subtotais{
            display: block;
            width: 100%;
            max-width: 260px;
            margin-top: 40px;

            @media(max-width:991px){
                margin-top: 20px;
            }

            li{
                display: flex;
                width: 100%;
                align-items:center;

                p{
                    display: block;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 15px $fontRegular;

                    span{
                        margin-left: 10px;
                        color: $textoDark;
                        font: normal 18px $fontBold;
                    }
                }
            }
        }

        .tbGrade {
            .skuCell {
                height: 45px;
                overflow: hidden;
                padding: 4px;
                position: relative;
                width: 45px;

                .semEstoque {
                    background: $medium;
                    color: white;
                    display: block;
                    font-size: 9px;
                    height: 45px;
                    left: 4px;
                    padding-top: 9px;
                    position: absolute;
                    text-align: center;
                    top: 4px;
                    width: 45px;
                }
            }
            .skuCor {
                height: 45px;
                width: 45px;

                img {
                    border-right: 1px solid $borders;
                    height: 45px;
                    width: 45px;
                }
            }
            .skuTam {
                font-family: $fontRegular;
                font-size: 14px;
                font-weight: bold;
                line-height: 44px;
                text-align: center;
                &:first-child {
                    border-width: 0px 1px 0px 0px;
                }
                &:last-child {
                    border-width: 1px 1px 1px 0px;
                }
            }
            .skuInput {
                border: 1px solid $borders;
                height: 45px;
                text-align: center;
                width: 45px;
            }
            tfoot {
                display: none;
            }
        }
    }
}

.prd-guia{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 185px;
    padding: 11px 20px;
    color: $textoDark;
    font: normal 14px $fontRegular;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    border: solid 1px $highlight;
}

.btAddFavoritos, .btRemFavoritos, .btAddFavoritos-deslogado{
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0px;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0px;
}

.product-description{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;

    .description-title{
        display: block;
        margin: 0px;
        margin-bottom: 20px;
        color: $textoDark;
        font: normal 14px $fontBold;
        line-height: 24px;
    }

    .description{
        overflow: hidden;
        display: flex;
        width: 100%;
        white-space: pre-line;
        color: $textoDark;
        font: normal 14px $fontRegular;
        line-height: 24px;
    }
}