@use "sass:map";
@use "helpers";

/*
* Utilizar, quando a loja não possuir o novo padrão de variaveis SASS
*/
/*$fontRegular: $fontOne; 
$fontBold: $fontTwo;
$fontLight: $fontThree;
$fontMedium: $fontFour;
$fontBlack: $fontOne;
$fontSemibold: $fontOne;*/  

body,html{
    background-color: map.get(helpers.$palletCheckout, medium); 
}

.btn-default,
.btn-success{
    display: block;
    cursor: pointer;
    outline: 0px;
    width: 100%;
    height: auto;
    padding: 10px;
    font: normal 15px helpers.$fontRegular;
    text-align: center;
    box-shadow: none !important;
    border-radius: 4px;
    background-image: none;
    @include helpers.transicao(0.4s ease-in-out);
}
.btn-default{
    color: map.get(helpers.$palletCheckout, btnDefaultText);
    background-color: map.get(helpers.$palletCheckout, btnDefaultBg);
    &:hover,&:focus{
        background-color: map.get(helpers.$palletCheckout, btnDefaultBgHover);
    }
}
.btn-success{
    color: map.get(helpers.$palletCheckout, btnSuccessText) !important;
    background-color: map.get(helpers.$palletCheckout, btnSuccessBg);
    &:hover,&:focus{
        background-color: map.get(helpers.$palletCheckout, btnSuccessBgHover);
    }
}

#he-topo-checkout {
    background-color: map.get(helpers.$checkout, backgroundColorHeTopoCheckout);
    height: 60px;

    .logo-topo {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: flex-start;

        img {
            width: 100%;
            max-width: helpers.$logoWidth;

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

    .atendimento {
        color: map.get(helpers.$checkout, colorAtendimento);
        display: block;
        margin-top: 20px;
        text-align: center;
        font-size: 11px;

        @media (min-width: 768px) {
            text-align: right;
        }

        .ico-fone {
            @include helpers.sprite();
            background-position: -4px -85px;
            height: 15px;
            width: 15px;
            margin-right: 5px;
            margin-bottom: -3px;
        }

        strong{
            color: helpers.$textoMedium;
            font-size: 12px;
        }
    }
}

#sc-rodape {
    height: 40px;
}

#checkout{
    counter-reset: steps;
    display: flex;
    gap: 12px;
    margin: 20px auto;
    max-width: 900px;
    min-height: calc(100vh - 100px);
    width: 100%;

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

    .checkout-card{
        position: relative;
        min-height: 80px;
        margin-bottom: 15px;
        background-color: map.get(helpers.$palletCheckout, light);
        border-radius: map.get(helpers.$palletCheckout, borderRadius);
        border:solid 1px map.get(helpers.$palletCheckout, borders);

        .card-header{
            display: flex;
            z-index: 1;
            padding: 5px 10px;
            align-items: center;
            background-color: map.get(helpers.$palletCheckout, light);
            border-color: map.get(helpers.$palletCheckout, borders);

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

            .btn {
                outline: 0px;
                box-shadow: none;
                border: none;
                color: map.get(helpers.$palletCheckout, textoDark);
                font: normal 15px helpers.$fontBold;
                font-weight: normal;
            }

            .step{
                display: flex;
                width: 20px;
                height: 20px;
                color: map.get(helpers.$palletCheckout, stepColor);
                font: normal 11px helpers.$fontBold;
                border: none;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                counter-increment: steps;
                background-color: map.get(helpers.$palletCheckout, stepBackground);

                &:before{
                    content: counter(steps);
                }
            }

            .title{
                align-items: center;
                display: flex;
                flex-grow: 1;
                height: 20px;
                margin: 0px;
                padding: 0 10px;
                color: map.get(helpers.$palletCheckout, textMedium);
                font: normal 12px helpers.$fontBold;
            }

            .menu{
                align-self: stretch;
                border-left: solid 1px map.get(helpers.$palletCheckout, borders);
                display: flex;
                margin-bottom: -5px;
                margin-right: -10px;
                margin-top: -6px;
                padding: 0;

                a{
                    align-items: center;
                    color: map.get(helpers.$palletCheckout, textDark);
                    display: flex;
                    font: normal 13px helpers.$fontBold;
                    height: 100%;
                    justify-content: center;
                    outline: 0px;
                    padding: 0 10px;

                    &:hover {
                        background-color: map.get(helpers.$palletCheckout, borders);
                    }
                }
            }
        }

        .card-content{
            color: map.get(helpers.$palletCheckout, textDark);
            display: block;
            font: normal 13px helpers.$fontRegular;
            margin: 0px;
            padding: 12px;
            transition: all 0.5s;
            z-index: 1;

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

            h2{
                font-size: 16px;
                font-family: helpers.$fontMedium;
                margin-bottom: 10px;
            }

            p{
                display: block;
                margin: 0px;
            }
        }
    }

    .checkout-msg-error{
        color: map.get(helpers.$palletCheckout, textDark);
        position: fixed;
        top: 5px;
        right: 10px;
        z-index: 2000;
        white-space: normal;

        li{
            cursor: pointer;
            padding: 12px 12px 12px 4em;
            margin-bottom: 10px;
            list-style-position: inside;
            list-style-type: decimal-leading-zero;

            &:last-child{
                margin-bottom: 0px;
            }

            &:after {
                align-items: center;
                background-color: #999;
                color: #fff;
                content: 'x';
                display: flex;
                height: 1.3em;
                justify-content: center;
                position: absolute;
                right: -0.5em;
                top: -0.5em;
                width: 1.3em;
            }
            
            &.alert-danger {
                &:after {
                    background-color: #DE5D6C;
                }
            }
        }

        &:empty{
            display: none;
        }
    }

    .left {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        overflow-x: hidden;

        > .content {
            display: flex;
            flex-direction: column;
        }
    }

    .right {
        min-width: 320px;
        width: 320px;

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

    .btn-step {
        align-items: center;
        background-color: map.get(helpers.$palletCheckout, btnCupomBg);
        border-radius: map.get(helpers.$palletCheckout, borderRadius);
        box-shadow: none;
        color: map.get(helpers.$palletCheckout, textDark);
        cursor: pointer;
        display: none;
        font: normal 15px helpers.$fontRegular;
        justify-content: center;
        margin: 0px auto;
        outline: 0px;
        padding: 10px;
        @include helpers.transicao(0.4s ease-in-out);
        width: 200px;

        &:hover,&:focus{
            background-color: map.get(helpers.$palletCheckout, success);
            color: map.get(helpers.$palletCheckout, textLight);
        }

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

    &.pedido-ok {
        .btn-step {
            display: flex;
        }
    }

    #checkout-block-summary{
        .card-content{
            @media(max-width:767px){
                padding-left: 0px;
                padding-right: 0px;
            }

            .order-item{
                @media(max-width:767px){
                    border-left-width: 0px;
                    border-right-width: 0px;
                }
            }
        }

        .summary-totals{
            position: relative;
            margin-top: 30px;

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

            .summary-container{
                display: block;
                width: 100%;

                .item{
                    display: flex;
                    width: 100%;
                    padding-bottom: 10px;
                    margin-bottom: 10px;
                    border-bottom: solid 1px map.get(helpers.$palletCheckout, borders);
                    align-items: center;
                    justify-content: space-between;

                    p{
                        display: block;
                        width: 50%;
                        margin: 0px;
                        color: map.get(helpers.$palletCheckout, textDark);
                        font: normal 15px helpers.$fontRegular;

                        &:last-of-type{
                            text-align: right;
                            font-family: helpers.$fontBold;
                        }
                    }

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

            table{
                width: 100%;
                color: map.get(helpers.$palletCheckout, textDark);
                font: normal 15px helpers.$fontRegular;

                tr{
                    margin-bottom: 10px;

                    td{
                        display: block;
                        margin-bottom: 10px;

                        &:last-of-type{
                            font-family: helpers.$fontBold;
                            text-align: right;
                        }
                    }

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

                .summary-cupom{
                    color: map.get(helpers.$palletCheckout, textDark);
                    font-style: italic;

                    [data-replace="cupom-calculated"]{
                        &:before{
                            content:'-';
                        }
                    }
                }
            }

            &.loading{
                > .checkout-loader{
                    display: block;
                    margin-top: 0;
                }
                > .summary-container{
                    pointer-events: none;
                    opacity: 0.5;
                    filter: blur(1.5px);
                }
            }
        }
    }

    #checkout-block-account{
        #account-content{
            .client-name{
                display: flex;
                text-transform: capitalize;
                align-items: center;
                justify-content: flex-start;
    
                &:before{
                    display: block;
                    content: "";
                    width: 14px;
                    height: 18px;
                    margin-top: -2px;
                    margin-right: 10px;
                    background-image: url(../img/icones/icon1.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }
    
                span{
                    margin-left: 5px;
                }
            }
            .client-email{
            }
        }

        #access-content{
            position: relative;
            overflow-y: auto;
            display: flex;
            min-height: 0px;
            padding: 15px;
            flex-grow: 1;
            font-family: helpers.$fontRegular;
    
            .content-login,
            .content-senha,
            .content-cadastro,
            .content-cadastro-done{
                width: 100%;
            }
    
            .titulo{
                display: block;
                color: map.get(helpers.$palletCheckout, textDark);
                font: normal 17px helpers.$fontRegular;
                margin: 10px 0px;
            }
    
            .subtitulo{
                display: block;
                color: map.get(helpers.$palletCheckout, textMedium);
                font: normal 14px helpers.$fontRegular;
                margin: 0px;
                margin-bottom: 20px;
            }
    
            .content-form{
                display: block;
                width: 100%;
                margin: 0 auto;
                margin-bottom: 20px;
            }
    
            .form-titulo{
                display: block;
                color: map.get(helpers.$palletCheckout, textoDark);
                font-size: 14px;
                margin: 0px;
                margin-bottom: 20px;
            }
    
            .form-input,
            .form-control{
                display: block;
                outline: 0px;
                width: 100%;
                height: auto;
                margin-bottom: 10px;
                padding: 10px;
                color: map.get(helpers.$palletCheckout, textDark);
                font: normal 15px helpers.$fontRegular;
                text-align: center;
                box-shadow: none;
                border-radius: map.get(helpers.$palletCheckout, borderRadius);
                border: 1px solid map.get(helpers.$palletCheckout, borders);
                background-color: map.get(helpers.$palletCheckout, light);
    
                &.error{
                    border-color: map.get(helpers.$palletCheckout, error);
                    box-shadow: inset 0px 0px 2px map.get(helpers.$palletCheckout, error);
    
                    &:after{
                        content: 'Erro';
                    }
                }
            }
    
            .msgError{
                position: static;
                display: block;
                z-index: 10;
                float: left;
                width: 20px;
                max-height: 18px;
                padding: 0;
                top: 0;
                color: map.get(helpers.$palletCheckout, error);
    
                span{
                    position: absolute;
                    display: none;
                    width: calc(100% - 30px);
                    min-height: calc(100% - 28px);
                    margin-top: 0;
                    padding: 2px 10px;
                    top: 18px;
                    border-radius: map.get(helpers.$palletCheckout, borderRadius);
                    font-size: 10px;
                }
    
                &:empty{
                    display: none;
                }
    
                &:before{
                    display: inline-block;
                    cursor: pointer;
                    content: '';
                    width: 20px;
                    height: 18px;
                    background-image: url(../img/sprite.png);
                    background-position: -2px -291px;
                    background-repeat: no-repeat;
                }
    
                &:hover{
                    span{
                        display: block;
                    }
                }
            }
    
            .g-recaptcha{
                display: flex;
                margin: 10px 0px;
                align-items: center;
                justify-content: center;
            }
    
            .btn-submit{
                display: block;
                outline: 0px;
                width: 100%;
                padding: 10px;
                margin: 5px auto 10px auto;
                color: map.get(helpers.$palletCheckout, textLight);
                font: normal 13px helpers.$fontMedium;
                text-align: center;
                box-shadow: none;
                border: none;
                border-radius: map.get(helpers.$palletCheckout, borderRadius);
                background-color: map.get(helpers.$palletCheckout, highlight);
                @include helpers.transicao(0.4s ease-in-out);
    
                &:hover,&:focus{
                    background-color: map.get(helpers.$palletCheckout, success);
                }
            }
    
            .btn-form{
                display: block;
                margin-bottom: 20px;
                color: map.get(helpers.$palletCheckout, textDark);
                font: normal 15px helpers.$fontRegular;
                text-align: center;
                text-decoration: underline;
            }

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

                .arrow{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 25px;
                    height: 25px;
                    background-color: map.get(helpers.$palletCheckout, medium);
                    border-radius: 10px;
                }
            }
    
            .box-cadastro{
                display: block;
                margin-left: -15px;
                margin-right: -15px;
                margin-bottom: -15px;
                padding: 30px 15px;
                background-color: map.get(helpers.$palletCheckout, medium);
    
                .titulo{
                    display: block;
                    margin: 0px;
                    margin-bottom: 20px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 15px helpers.$fontRegular;
                    text-align: center;
                }
    
                .opcoes{
                    display: flex;
                    width: 100%;
                    align-items: center;
                    justify-content: center;
    
                    .btn-cadastro{
                        display: block;
                        width: 100%;
                        max-width: 190px;
                        padding: 10px;
                        color: map.get(helpers.$palletCheckout, textLight);
                        font: normal 13px helpers.$fontMedium;
                        text-align: center;
                        border-radius: map.get(helpers.$palletCheckout, borderRadius);
                        background-color: map.get(helpers.$palletCheckout, highlight);
                        @include helpers.transicao(0.4s ease-in-out);
    
                        &:last-of-type{
                            margin-left: 15px;
                        }
    
                        &:hover,&:focus{
                            background-color: map.get(helpers.$palletCheckout, success);
                        }
                    }
                }
            }
    
            .msg-error{
                /*            display: block;
                            margin: 10px 0;
                            margin-bottom: 15px;
                            color: map-get($palletCheckout, error);
                            font-size: 14px;
                            font-weight: bold;
                            text-align: center;*/
    
                a{
                    span{
                        text-decoration: underline;
                    }
                }
    
                &:empty{
                    display: none;
                }
            }
    
            .content-login{
                .titulo-redes{
                    display: block;
                    margin: 0px;
                    margin-top: 20px;
                    margin-bottom: 20px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    text-align: center;
                    font: normal 15px helpers.$fontMedium;
                }
    
                .redes-login{
                    position: relative;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
    
                    .item{
                        position: relative;
                        overflow: hidden;
                        display: block;
                        width: 100%;
                        max-width: 190px;
    
                        .btn-facebook{
                            pointer-events: none;
                            position: relative;
                            display: block;
                            outline: 0px;
                            z-index: 2;
                            width: 100%;
                            padding: 10px;
                            color: map.get(helpers.$palletCheckout, textDark);
                            font: normal 13px helpers.$fontRegular;
                            text-align: center;
                            border-radius: map.get(helpers.$palletCheckout, borderRadius);
                            border: solid 1px map.get(helpers.$palletCheckout, borders);
                            background-color: map.get(helpers.$palletCheckout, light);
    
                            &:before{
                                display: inline-block;
                                content: "";
                                width: 24px;
                                height: 24px;
                                margin-right: 10px;
                                vertical-align: middle;
                                background-image: url(../img/login/icon-facebook.svg);
                                background-size: contain;
                                background-repeat: no-repeat;
                                background-position: center;
                            }
                        }
                        .fb-login-button{
                            position: absolute;
                            z-index: 1;
                            opacity: 0;
                            width: 100%;
                            height: 100%;
                            left: 0px;
                            top: 0px;
                        }
    
                        .fb-reset{
                            background: none;
                            border: 0;
                            border-spacing: 0;
                            color: map.get(helpers.$palletCheckout, textDark);
                            cursor: auto;
                            direction: ltr;
                            font-family: helpers.$fontRegular;
                            font-size: 11px;
                            font-style: normal;
                            font-variant: normal;
                            font-weight: normal;
                            letter-spacing: normal;
                            line-height: 1;
                            margin: 0;
                            overflow: visible;
                            padding: 0;
                            text-align: left;
                            text-decoration: none;
                            text-indent: 0;
                            text-shadow: none;
                            text-transform: none;
                            visibility: visible;
                            white-space: normal;
                            word-spacing: normal;
                        }
    
                        .btn-google{
                            pointer-events: none;
                            position: relative;
                            outline: 0px;
                            z-index: 2;
                            display: block;
                            width: 100%;
                            padding: 10px;
                            color: map.get(helpers.$palletCheckout, textDark);
                            font: normal 13px helpers.$fontRegular;
                            text-align: center;
                            border: solid 1px map.get(helpers.$palletCheckout, borders);
                            background-color: transparent;
    
                            &:before{
                                display: inline-block;
                                content: "";
                                width: 24px;
                                height: 24px;
                                margin-right: 10px;
                                vertical-align: middle;
                                background-image: url(../img/login/icon-google.svg);
                                background-size: contain;
                                background-repeat: no-repeat;
                                background-position: center;
                            }
                        }
    
                        .g-signin2{
                            position: absolute;
                            z-index: 1;
                            opacity: 0;
                            width: 100%;
                            height: 100%;
                            left: 0px;
                            top: 0px;
                        }
    
                        &:last-of-type{
                            margin-left: 15px;
                        }
                    }
                }
            }
    
            .content-senha{
                .content-sending{
                    display: none;
                    margin: 20px;
                    text-align: center;
    
                    .loading{
                        margin-top: 20px;
                    }
                }
    
                .content-sended{
                    display: none;
                    margin: 20px;
                    text-align: center;
                }
    
                &.sending{
                    .btn-form-login,
                    .btn-form-cadastro,
                    .content-form{
                        display: none;
                    }
                    .content-sending{
                        display: block;
                    }
                }
    
                &.sended{
                    .btn-form-cadastro,
                    .content-form{
                        display: none;
                    }
                    .content-sended{
                        display: block;
                    }
                }
            }
    
            .content-cadastro{
                .content-form{
                    max-width: 590px;
    
                    .step-nav{
                        display: flex;
                        width: 100%;
                        margin: 50px 0px;
                        align-items: center;
                        justify-content: center;
    
                        @media(max-width:767px){
                            margin: 20px 0px;
                        }
    
                        @media(max-width:575px){
                            flex-direction: column;
                        }
    
                        .option{
                            display: flex;
                            outline: 0px;
                            margin-left: 55px;
                            box-shadow: none;
                            align-items: center;
                            justify-content: center;
    
                            @media(max-width:695px){
                                margin-left: 30px;
                            }
    
                            @media(max-width:575px){
                                width: 100%;
                                max-width: 170px;
                                margin-left: 0px;
                                margin-bottom: 10px;
                            }
    
                            .number{
                                display: flex;
                                width: 35px;
                                height: 35px;
                                color: map.get(helpers.$palletCheckout, textMedium);
                                font: normal 15px helpers.$fontRegular;
                                align-items: center;
                                justify-content: center;
                                border-radius: 100%;
                                background-color: map.get(helpers.$palletCheckout, medium);
                            }
    
                            .titulo{
                                display: block;
                                width: calc(100% - 35px);
                                margin: 0px;
                                padding-left: 10px;
                                color: map.get(helpers.$palletCheckout, textMedium);
                                font: normal 15px helpers.$fontRegular;
                            }
    
                            &:first-of-type{
                                margin-left: 0px;
    
                                @media(max-width:575px){
                                    margin-bottom: 0px;
                                }
                            }
    
                            &.ativo{
                                .number,.titulo{
                                    color: map.get(helpers.$palletCheckout, textDark);
                                }
                            }
                            &.concluido{
                                .number{
                                    color: map.get(helpers.$palletCheckout, textLight);
                                    background-color: map.get(helpers.$palletCheckout, success);
                                }
                            }
                        }
                    }
                }
    
                #con-titulo {
                    margin-bottom: 10px;
    
                    h1 {
                        color: map.get(helpers.$palletCheckout, textDark);
                        margin: 0;
                        font-size: 18px;
                        font-family: helpers.$fontMedium;
                        font-weight: normal;
                    }
    
                    p {
                        color: map.get(helpers.$palletCheckout, textMedium);
                        margin: 0;
                        font-size: 12px;
                        font-family: helpers.$fontMedium;
                    }
                }
    
                .content-campos {
                    padding-bottom: 50px;
    
                    .box {
                        header {
                            margin-bottom: 15px;
    
                            h2 {
                                color: map.get(helpers.$palletCheckout, textDark);
                                font: normal 16px helpers.$fontBold;
                                text-transform: uppercase;
                            }
                            span {
                                color: map.get(helpers.$palletCheckout, textMedium);
                                font-size: 12px;
                                font-family: helpers.$fontMedium;
                            }
                        }
    
                        label {
                            position: relative;
                            text-indent: 0px;
                            margin-bottom: 0px;
                            color: map.get(helpers.$palletCheckout, textMedium);
                            font: normal 15px helpers.$fontRegular;
                        }
    
                        .form-control {
                            display: block;
                            outline: 0px;
                            width: 100%;
                            height: auto;
                            margin-bottom: 10px;
                            padding: 10px;
                            color: map.get(helpers.$palletCheckout, textDark);
                            font-family: helpers.$fontRegular;
                            font-size: 15px;
                            text-align: left;
                            box-shadow: none;
                            border-radius: map.get(helpers.$palletCheckout, borderRadius);
                            border: 1px solid map.get(helpers.$palletCheckout, borders);
                            background-color: map.get(helpers.$palletCheckout, light);
                        }
                    }
    
                    .next-step, .btn-cadastro{
                        display: block;
                        outline: 0px;
                        width: 100%;
                        padding: 10px;
                        margin-top: 10px;
                        color: map.get(helpers.$palletCheckout, textLight);
                        font: normal 13px helpers.$fontMedium;
                        text-align: center;
                        border: none;
                        border-radius: map.get(helpers.$palletCheckout, borderRadius);
                        background-color: map.get(helpers.$palletCheckout, highlight);
                        @include helpers.transicao(0.4s ease-in-out);
    
                        &:hover,&:focus{
                            background-color: map.get(helpers.$palletCheckout, success);
                        }
                    }
    
                    .box-sucesso{
                        display: block;
                        width: 100%;
                        padding: 20px 15px;
    
                        .sucesso-imagem{
                            display: block;
                            width: 100%;
                            max-width: 95px;
                            margin: 0 auto;
                            margin-bottom: 10px;
                        }
    
                        .titulo,.texto,.contador{
                            display: block;
                            margin: 0px;
                            margin-bottom: 10px;
                            color: map.get(helpers.$palletCheckout, textDark);
                            text-align: center;
                        }
    
                        .titulo{
                            font: normal 24px helpers.$fontRegular;
                        }
    
                        .texto{
                            font: normal 15px helpers.$fontRegular;
                        }
    
                        .contador{
                            width: 100%;
                            max-width: 40px;
                            padding: 10px;
                            margin: 0 auto;
                            font: normal 15px helpers.$fontRegular;
                            border-radius: 4px;
                            background-color: map.get(helpers.$palletCheckout, medium);
                        }
                    }
    
                    /*                #btCadastro,.btCadastro {
                                        display: block;
                                        width: 100%;
                                        max-width: 410px;
                                        padding: 10px;
                                        margin: 20px auto 0 auto;
                                        color: map-get($palletCheckout, textDark);
                                        font: normal 13px $fontBold;
                                        text-align: center;
                                        border: none;
                                        border-radius: map-get($palletCheckout, borderRadius);
                                        background-color: map-get($palletCheckout, highlight);
                                        transition: all 0.4s ease-in-out;
                    
                                        &:hover, &:focus{
                                            color: map-get($palletCheckout, textLight);
                                            background-color: map-get($palletCheckout, success);
                                        }
                                    }*/
                }
            }
            
            .content-cadastro-done{
                .box-sucesso{
                    display: block;
                    padding: 20px 15px;
                    text-align: center;
                    width: 100%;
    
                    .sucesso-imagem{
                        display: block;
                        width: 100%;
                        max-width: 95px;
                        margin: 0 auto;
                        margin-bottom: 10px;
                    }
    
                    .titulo,.texto,.contador{
                        display: block;
                        margin: 0px;
                        margin-bottom: 10px;
                        color: map.get(helpers.$palletCheckout, textDark);
                    }
    
                    .titulo{
                        font: normal 24px helpers.$fontRegular;
                    }
    
                    .texto{
                        font: normal 15px helpers.$fontRegular;
                    }
    
                    .contador{
                        width: 100%;
                        max-width: 40px;
                        padding: 10px;
                        margin: 0 auto;
                        font: normal 15px helpers.$fontRegular;
                        border-radius: 4px;
                        background-color: map.get(helpers.$palletCheckout, medium);
                    }
                }
            }
        }

        #content-form-login {
            align-items: center;
            display: flex;
            flex-direction: column;
            margin: 0;
            width: 100%;

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

            #frmLoginEmail,
            #frmLoginSenha {
                display: flex;
                flex-direction: column;
                width: 100%;

                .frm-texto{
                    color: helpers.$textoDark; 
                    display: block;
                    font-family: helpers.$fontRegular;
                    line-height: 120%;
                    margin: 0px;
                    text-align: left;
                }

                .email-group,
                .password-group {
                    display: flex;
                    flex-wrap: wrap;
                    margin: 12px 0;
                    width: 100%;

                    input[type="submit"] {
                        background-color: helpers.$highlight;
                        border-radius: 0px;
                        border: none;
                        color:helpers.$textoLight;
                        display: block;
                        font: normal 13px helpers.$fontRegular;
                        line-height: 13px;
                        margin: 0;
                        outline: 0px;
                        padding: 10px;
                        @include helpers.transicao(0.4s ease-in-out);
                        width: 120px;

                        &:hover,&:focus {
                            background-color: helpers.$success;
                        }

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

                    input[type="text"] {
                        @media (max-width: 767px) {
                            height: 40px;
                            margin-bottom: 10px;
                        }
                    }
                }

                .msg {
                    display: none;
                    width: 100%;

                    &.msg-erro {
                        background-color: helpers.$error;
                        color: helpers.$textoLight;
                        margin: 8px 0;
                        padding: 16px 8px;
                    }

                    &.msg-sucesso {
                        background-color: helpers.$success;
                        color: helpers.$textoLight;
                        margin: 8px 0;
                        padding: 16px 8px;
                    }

                    &.show {
                        display: block;
                    }
                }

                .btn-login {
                    cursor: pointer;
                    text-decoration: underline;
                }

                input[type="text"], input[type="password"] {
                    border-radius: 0px;
                    border: 1px solid #E5E5E5;
                    box-shadow: none;
                    color: helpers.$textoDark;
                    display: block;
                    flex-grow: 1;
                    font: normal 13px helpers.$fontRegular;
                    line-height: 13px;
                    margin: 0px;
                    outline: 0px;
                    padding: 0 10px;
                    text-align: lewt;

                    &:focus{
                        outline: 0px;
                    }
                }

            }

            #frmLoginEmail {
                .btn-login-no {
                    display: none;
                    margin: auto;
                }
            }
            
            #frmLoginSenha {
                display: none;
                
                .btn-email-show,
                .btn-login-no {
                    cursor: pointer;
                    margin: auto;
                }
            }
        }
    }

    #checkout-block-address{
        [data-replace="address-state"]{
            text-transform: uppercase;
        }
    }

    #checkout-block-freight{
        .freight-item-empty{
            border-color: #5979a7;
            color: map.get(helpers.$palletCheckout, textMedium);
            margin-top: 20px;
            padding: 10px;

            &:before {
                background-color: #5979a7;
            }
        }

        .freight-item{
            position: relative;
            display: flex;
            cursor: pointer;
            padding: 10px 0px;
            margin-bottom: 5px;
            border: none;
            align-items: center;

            .freight-select{
                display: block;
                content: "";
                width: 16px;
                height: 16px;
                top: 50%;
                left: 0px;
                margin-right: 10px;
                transform: translateY(-50%);
                background-image: url(../img/icones/icon2.svg);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            .freight-container{
                display: flex;
                width: calc(100% - 26px);
                padding: 10px 20px;
                align-items:center;
                border-radius: 4px;
                border: solid 1px map.get(helpers.$palletCheckout, borders);
                background-color: map.get(helpers.$palletCheckout, light);
                @include helpers.transicao(0.4s ease-in-out);

                .freight-item-content{
                    flex-grow: 1;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 12px helpers.$fontRegular;
                    padding-right: 10px;

                    [data-replace="freight-name"]{
                        color: map.get(helpers.$palletCheckout, textDark);
                        font-size: 15px;
                        font-family: helpers.$fontBold;
                    }

                    [data-replace="freight-desc"]{
                        font-size: 13px;

                        &:before{
                            display: inline-block;
                            content: "";
                            width: 1px;
                            height: 15px;
                            margin-left: 5px;
                            margin-right: 5px;
                            vertical-align: middle;
                            background-color: map.get(helpers.$palletCheckout, textMedium);
                        }
                    }

                    .freight-delivery-date{
                        display: flex;
                        align-items: center;
                        justify-content: flex-start;

                        [data-replace="freight-delivery-date"]{
                            color: map.get(helpers.$palletCheckout, textDark);
                            margin-left: 5px;
                        }
                    }
                }

                .freight-price{
                    display: block;
                    margin: 0px;
                    color: map.get(helpers.$palletCheckout, textDark);
                    font: normal 15px helpers.$fontBold;
                }
            }

            &:hover,&:focus{
                .freight-container{
                    background-color: map.get(helpers.$palletCheckout, medium);
                }
            }

            &.checked{
                .freight-select{
                    background-image: url(../img/icones/icon3.svg);
                }

                .freight-container{
                    border-color: map.get(helpers.$palletCheckout, borders);
                    background-color: map.get(helpers.$palletCheckout, medium);
                }

                &:hover,&:focus{
                    .freight-container{
                        border-color: transparent;
                    }
                }
            }

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

        #listaTransportadora,
        #stTransportadora{
            margin-bottom: 40px;
            margin-top: -10px;
            padding-left: 50px;
            padding-right: 10px;
        }
    }

    #checkout-block-representative{
        .titulo{
            display: block;
            margin: 0px;
            margin-bottom: 15px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
        }

        .form-control{
            display: block;
            outline: 0px;
            width: 100%;
            height: auto;
            padding: 10px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
            border-radius: 4px;
            border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
            background-color: map.get(helpers.$palletCheckout, light);
            box-shadow: none;
        }
    }

    #checkout-block-lote{
        .titulo{
            display: block;
            margin: 0px;
            margin-bottom: 15px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
        }

        .form-control{
            display: block;
            outline: 0px;
            width: 100%;
            height: auto;
            padding: 10px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
            border-radius: map.get(helpers.$palletCheckout, borderRadius);
            border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
            background-color: map.get(helpers.$palletCheckout, light);
            box-shadow: none;
        }
    }

    #checkout-block-cupom{

        .cupom-content{
            position: relative;

            .step-1{
                display: flex;
                align-items: center;

                .icon{
                    display: block;
                    content: "";
                    width: 30px;
                    height: 30px;
                    min-width: 30px;
                    background-image: url(../img/icones/icon5.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                .info{
                    display: flex;
                    padding-left: 10px;
                    flex-grow: 1;
                    align-content: center;
                    flex-direction: column;

                    a{
                        cursor: pointer;
                        font-size: 11px;
                        text-decoration: underline;
                    }
                }

            }

            .step-2{
                display: none;

                #CUPOMADDFrm{
                    display: flex;
                    width: 100%;

                    .cupom-form-container{
                        display: block;
                        width: 100%;
                        max-width: 265px;
                        margin: 0 auto;

                        .titulo{
                            display: block;
                            margin: 0px;
                            margin-bottom: 7px;
                            color: map.get(helpers.$palletCheckout, textDark);
                            font: normal 15px helpers.$fontRegular;
                            text-align: center;
                        }

                        .cupom-input-container{
                            display: flex;
                            width: 100%;
                            align-items: center;
                            justify-content: center;

                            input{
                                display: block;
                                outline: 0px;
                                width: calc(100% - 100px);
                                height: auto;
                                padding: 10px;
                                color: map.get(helpers.$palletCheckout, textMedium);
                                font: normal 15px helpers.$fontRegular;
                                border-radius: map.get(helpers.$palletCheckout, borderRadius);
                                border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
                                background-color: map.get(helpers.$palletCheckout, light);
                                box-shadow: none;
                            }

                            .btn-save{
                                display: block;
                                outline: 0px;
                                width: 100%;
                                max-width: 93px;
                                padding: 10px;
                                margin-left: 10px;
                                color: map.get(helpers.$palletCheckout, textDark);
                                font: normal 15px helpers.$fontRegular;
                                text-align: center;
                                border-radius: map.get(helpers.$palletCheckout, borderRadius);
                                box-shadow: none;
                                background-color: map.get(helpers.$palletCheckout, btnCupomBg);
                                @include helpers.transicao(0.4s ease-in-out);

                                &:hover,&:focus{
                                    color: map.get(helpers.$palletCheckout, textLight);
                                    background-color: map.get(helpers.$palletCheckout, success);
                                }
                            }
                        }

                        .msg{
                            overflow: hidden;
                            display: block;
                            color: map.get(helpers.$palletCheckout, error);
                            font: normal 12px helpers.$fontRegular;
                            max-height: 50px;
                            transition: all 0.7s;

                            &:empty{
                                max-height: 0;
                            }
                        }
                    }
                }
            }

            .step-3{
                display: none;
                align-items: center;

                .icon{
                    display: block;
                    content: "";
                    width: 30px;
                    height: 30px;
                    min-width: 30px;
                    background-image: url(../img/icones/icon5.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                .info{
                    display: flex;
                    flex-grow: 1;
                    padding-left: 10px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 15px helpers.$fontRegular;
                    align-content: center;
                    flex-direction: column;

                    .cupom-string, [data-replace="cupom-calculated"]{
                        color: map.get(helpers.$palletCheckout, textDark);
                        font-family: helpers.$fontBold;
                    }

                    a{
                        outline: 0px;
                        cursor: pointer;
                        font-size: 13px;
                        text-decoration: underline;
                    }
                }

            }

        }

        .checkout-loader{
            transform: scale(0.6) translateX(-90%) translateY(-90%);
        }

        &.step-2{
            .step-1{
                display: none;
            }
            .step-2{
                display: flex;
            }
        }

        &.step-3{
            .step-1{
                display: none;
            }
            .step-3{
                display: flex;
            }
        }
    }

    #checkout-block-buyer{
        display: none;

        .form-input,
        .form-control{
            background-color: map.get(helpers.$palletCheckout, light);
            border-radius: map.get(helpers.$palletCheckout, borderRadius);
            border: 1px solid map.get(helpers.$palletCheckout, borders);
            box-shadow: none;
            color: map.get(helpers.$palletCheckout, textDark);
            display: block;
            font: normal 15px helpers.$fontRegular;
            height: auto;
            margin-bottom: 10px;
            outline: 0px;
            padding: 10px;
            text-align: left;
            width: 100%;

            &.error{
                border-color: map.get(helpers.$palletCheckout, error);
                box-shadow: inset 0px 0px 2px map.get(helpers.$palletCheckout, error);

                &:after{
                    content: 'Erro';
                }
            }
        }

        input[type="submit"] {
            background-color: helpers.$highlight;
            border-radius: 0px;
            border: none;
            color:helpers.$textoLight;
            display: block;
            font: normal 13px helpers.$fontRegular;
            line-height: 13px;
            margin: 0;
            outline: 0px;
            padding: 10px;
            @include helpers.transicao(0.4s ease-in-out);
            width: 100%;

            &:hover,&:focus {
                background-color: helpers.$success;
            }
        }
    }
    
    #checkout-block-payment{

        display: none;

        .titulo{
            display: block;
            margin: 0px;
            margin-bottom: 15px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
        }

        .payment-list{
            display: flex;
            margin: 15px 0 0 0;
            flex-direction: column;

            &.style-1{
                .payment-item{
                    .content{
                        .payment-item-list{
                            .payment-gateway{
                                width: 50%;
                                padding: 5px;

                                .gateway-name{
                                    text-align: center;
                                }
                                .gateway-installments{
                                    text-align: center;
                                }
                            }
                        }
                    }
                }
            }
            &.style-2{
                .payment-item{
                    .content{
                        .payment-item-list{
                            .payment-gateway{
                                display: flex;
                                width: 100%;
                                padding: 7px 15px;
                                margin-bottom: 5px;
                                border-radius: map.get(helpers.$palletCheckout, borderRadius);
                                border: solid 1px map.get(helpers.$palletCheckout, borders);
                                align-items: center;
                                @include helpers.transicao(0.4s ease-in-out);

                                .info{
                                    position: relative;
                                    display: flex;
                                    padding: 0 10px;
                                    padding-right: 35px;
                                    flex-grow: 1;
                                    flex-direction: column;

                                    &:after{
                                        position: absolute;
                                        display: block;
                                        content: "";
                                        width: 15px;
                                        height: 14px;
                                        top: 50%;
                                        right: 10px;
                                        transform: translateY(-50%);
                                        background-image: url(../img/icones/icon7.svg);
                                        background-size: contain;
                                        background-repeat: no-repeat;
                                        background-position: center;
                                    }

                                    .gateway-name{
                                        display: block;
                                        margin: 0px;
                                        margin-bottom: 2px;
                                        color: map.get(helpers.$palletCheckout, textDark);
                                        font: normal 15px helpers.$fontBold;
                                        text-align: left;
                                    }

                                    .gateway-installments{
                                        display: block;
                                        margin: 0px;
                                        color: map.get(helpers.$palletCheckout, textMedium);
                                        font: normal 12px helpers.$fontRegular;
                                        text-align: left;
                                    }
                                }

                                &:hover,&:focus{
                                    background-color: map.get(helpers.$palletCheckout, medium);
                                }

                                &:last-of-type{
                                    margin-bottom: 0px;
                                }
                            }
                        }
                    }
                }
            }
            &.style-3{
                .payment-item{
                    .content{
                        .payment-item-list{
                            .payment-gateway{
                                display: flex;
                                width: 20%;
                                padding: 5px;

                                .logo{
                                    width: 54px;
                                    height: 38px;
                                }
                                .info{
                                    display: none;
                                }
                            }
                        }
                    }
                }
            }
        }

        .payment-item{
            cursor: pointer;
            margin-bottom: 5px;
            border-radius: 4px;
            border: solid 1px map.get(helpers.$palletCheckout, borders);
            background-color: map.get(helpers.$palletCheckout, light);
            transition: all 0.4s 0.2s;

            .header{
                display: flex;
                padding: 14px;
                align-items: center;

                .main-icon{
                    width: 22px;
                    height: 17px;
                    background-size: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    transition: all 0.4s;
                }

                .label{
                    display: block;
                    flex-grow: 1;
                    margin: 0px;
                    padding: 0 10px;
                    color: map.get(helpers.$palletCheckout, textDark);
                    font: normal 15px helpers.$fontRegular;
                }

                .installments{
                    width: 60px;
                    padding: 0 0 0 8px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 12px helpers.$fontRegular;
                    text-align: right;
                    line-height: 100%;
                }

                .discount{
                    position: relative;
                    width: 60px;
                    padding: 0 8px 0 0;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 12px helpers.$fontRegular;
                    text-align: center;
                    line-height: 100%;

                    [data-replace="type-vl-discount"]{
                        color: #428bca;
                        display: inline-block;
                        font-size: 11px;
                        font-weight: bold;
                        margin-top: 5px;
                    }

                    &:after{
                        position: absolute;
                        display: block;
                        content:'';
                        width: 1px;
                        height: 10px;
                        top: 50%;
                        right: 0;
                        margin-top: -5px;
                        background-color: map.get(helpers.$palletCheckout, medium);
                    }
                }
            }

            &.cd-tipo-1{
                .header{
                    .main-icon{background-image: url(../img/pagamento/icon-tipo-1.png);}
                }
            }
            &.cd-tipo-3{
                .header{
                    .main-icon{background-image: url(../img/pagamento/icon-tipo-3.png);}
                }
            }
            &.cd-tipo-2{
                .header{
                    .main-icon{background-image: url(../img/pagamento/icon-tipo-2.png);}
                }
            }
            &.cd-tipo-11{
                .header{
                    .main-icon{background-image: url(../img/pagamento/icon-tipo-11.png);}
                }
            }
            &.cd-tipo-12{
               .header{
                    .main-icon{background-image: url(../img/pagamento/icon-tipo-12.png);}
                }
            }
            &.cd-tipo-99{
                .header{
                    .main-icon{background-image: url(../img/pagamento/icon-tipo-99.png);}
                }
            }

            &:hover,
                &.active{
                background-color: map.get(helpers.$palletCheckout, medium);
                transition: all 0.2s 0s;

                .main-icon{
                }
            }

            &.cd-tipo-2{order: 1;}
            &.cd-tipo-1{order: 2;}
            &.cd-tipo-11{order: 3;}
            &.cd-tipo-99{order: 99;}

            .content{
                overflow-x: hidden;
                overflow-y: hidden;
                max-height: 0;
                padding: 0 14px;
                justify-content: center;
                border: solid 1px transparent;
                background-color: map.get(helpers.$palletCheckout, light);
                transition: all 0.5s;

                p{
                    display: block;
                    margin: 0px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 12px helpers.$fontRegular;
                }

                .payment-item-list{
                    display: flex;
                    margin: 10px 0px;
                    flex-wrap: wrap;

                    .payment-gateway{
                        &.modulo-1009 .logo{background-image: url(../img/pagamento/icon-combinar.png);}
                        &.modulo-1019 .logo{background-image: url(../img/pagamento/icon-pagseguro.png);}
                        &.modulo-1020 .logo{background-image: url(../img/pagamento/icon-cielo.png);}
                        //&.modulo-1021 .logo{background-image: url(../img/pagamento/);}
                        &.modulo-1022 .logo{background-image: url(../img/pagamento/icon-itau.png);}
                        &.modulo-1023 .logo{background-image: url(../img/pagamento/icon-rede.png);}
                        &.modulo-1024 .logo{background-image: url(../img/pagamento/icon-mercadopago.png);}
                        &.modulo-1025 .logo{background-image: url(../img/pagamento/icon-paypal.png);}

                        .logo{
                            width: 71px;
                            height: 50px;
                            padding: 5px;
                            margin: 0 auto;
                            background-size: cover;
                            background-position: center;
                            background-repeat: no-repeat;
                            border: double 3px map.get(helpers.$palletCheckout, borders);
                            border-radius: map.get(helpers.$palletCheckout, borderRadius);
                            transition: all 0.1s;
                        }

                        .info{
                            font-size: 12px;
                            line-height: 140%;
                        }
                        .gateway-installments{
                            font-style: italic;
                            font-weight: bold;
                        }

                        &.checked{
                            .logo{
                                border-style: ridge;
                                border-color: map.get(helpers.$palletCheckout, highlight);
                            }
                        }
                    }

                }

                .payment-gateway-checked-info{
                    margin: 6px 0 0 0;
                    color: map.get(helpers.$palletCheckout, success);
                    font-weight: bold;
                }

                .cond-pgto-lista{
                    label{
                        display: block;
                        margin: 0px;
                        color: map.get(helpers.$palletCheckout, textMedium);
                        font: normal 12px helpers.$fontRegular;
                    }
                }

                .payment-btn-complete{
                    margin: 10px 0 0 0;
                }
            }

            &.active{
                .content{
                    max-height: 500px;
                    padding: 14px 14px;
                    border-color: map.get(helpers.$palletCheckout, borders);
                }
            }
        }

        .payment-empty{
            padding: 12px;
        }
    }

    #checkout-block-items{
        position: relative;

        &.loading{
            > .checkout-loader{
                display: block;
            }
            > #items-content{
                pointer-events: none;
                opacity: 0.5;
                filter: blur(1.5px);
            }
        }

        #items-content{
            display: flex;
            flex-direction: column;

            .btn-items-list-show{
                align-self: flex-end;

                @media(max-width:767px){
                    width: calc(100% - 30px);
                    margin: 0 auto;
                }
            }
        }
    }

    #checkout-block-notice{
        position: relative;

        textarea{
            display: block;
            outline: 0px;
            width: 100%;
            height: 100px;
            padding: 8px;
            color: map.get(helpers.$palletCheckout, textMedium);
            font: normal 15px helpers.$fontRegular;
            border-radius: 4px;
            border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
        }

        .checkout-loader{
            position: absolute;
            display: none;
            margin-top: 0;
            top: 45px;
            left: auto;
            right: 8px;
            border-radius: 50%;
            background: map.get(helpers.$palletCheckout, medium);
            transform: scale(0.5);
        }

        &.saving{
            .checkout-loader{
                display: block;
            }
        }
    }

    #checkout-block-terms{
        overflow: hidden;

        hr{
            margin: 10px 0px;
        }

        .btn-terms{
            display: block;
            outline: 0px;
            padding: 10px 0px;
            padding-top: 30px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
            text-align: center;

            &:before{
                display: inline-block;
                content: "";
                width: 12px;
                height: 15px;
                margin-top: -2px;
                margin-right: 10px;
                vertical-align: middle;
                background-image: url(../img/icones/icon4.svg);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;

            }
        }
    }

    
    .loading,
    .saving{
        pointer-events: none;
    }

    .checkout-card.loading{
        > .checkout-loader{
            display: block;
        }
        > .card-content{
            pointer-events: none;
            opacity: 0.5;
            filter: blur(1.5px);
        }
    }

    /* Checkout Loader */
    .checkout-loader {
        position: absolute;
        z-index: 5;
        display: none;
        width: 32px;
        height: 32px;
        top: 50%;
        left: 50%;
        margin-top: 15px; 
        transform: translateX(-50%) translateY(-50%);

        span {
            position: absolute;
            display: block;
            width: 32px;
            height: 32px;
            top: 0; 
            left: 0;
            right: 0;
            bottom: 0; 
            margin: auto;

            &::before,
            &::after {
                position: absolute;
                display: block;
                content: "";
                opacity: 0;
                width: 32px;
                height: 32px;
                top: 0; 
                left: 0;
                bottom: 0; 
                right: 0;
                margin: auto;
                border-radius: 50%;
                border: 2px solid map.get(helpers.$palletCheckout, dark);
                -webkit-animation: checkout-loader-1 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) infinite;
                animation: checkout-loader-1 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) infinite;
            }

            &::after {
                -webkit-animation: checkout-loader-2 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) .25s infinite;
                animation: checkout-loader-2 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) .25s infinite;
            }
        }
    }

    .msg-error{
        font-size: 13px;
        padding: 12px;

        a{
            cursor: pointer;
            text-decoration: underline;
        }
    }

    .address-not-selectable{
        display: block;
    }

    .address-selectable{
        cursor: pointer;
        display: none;
    }

    &.is-endereco-selectable{
        .address-not-selectable{
            display: none;
        }
        .address-selectable{
            display: block;
        }
    }

    &.blocked{
        #checkout-block-address,
        #checkout-block-freight,
        #checkout-block-representative,
        #checkout-block-lote,
        #checkout-block-cupom,
        #checkout-block-payment,
        #checkout-block-items,
        #checkout-block-notice,
        #checkout-block-terms,
        #checkout-block-summary{
            pointer-events: none;
            opacity: 0.5;
        }

        .checkout-loader{
            display: none !important;
        }
    }
}

.checkout-order-list{
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    .order-item,
    .order-item-loading{
        position: relative;
        display: flex;
        padding: 4px 8px;
        margin-bottom: 10px;
        align-items: center;
        background-color: map.get(helpers.$palletCheckout, light);
        transition: all 0.4s;
        border: solid 1px map.get(helpers.$palletCheckout, borders);
        
        .badge-indisposivel{
            position: absolute;
            z-index: 5;
            display: none;
            right: 5px;
            top: 5px;
        }

        .thumbnail{
            position: relative;
            width: 82px;
            height: 120px;
            min-width: 82px;
            box-shadow: none;
            background-origin: content-box;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;

            .qtd{
                position: absolute;
                display: flex;
                min-width: 23px;
                height: 23px;
                left: -5px;
                bottom: -1px;
                color: map.get(helpers.$palletCheckout, textDark);
                font: normal 9px helpers.$fontBold;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                border: solid 1px map.get(helpers.$palletCheckout, borders);
                background-color: map.get(helpers.$palletCheckout, light);
            }

            a{
                position: absolute;
                cursor: pointer;
                display: block;
                outline:0px;
                height: 100%;
                width: 100%;
                left: 0;
                top: 0;
            }
        }

        .info{
            display: flex;
            flex-grow: 1;
            flex-direction: column;
            padding: 0 10px;
        }

        .title{
            display: block;
            margin: 0px;
            margin-bottom: 25px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontRegular;
        }

        .color{
            display: block;
            margin: 0px;
            margin-bottom: 5px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 12px helpers.$fontBold;

            span{
                font-family: helpers.$fontRegular;
            }
        }

        .size{
            display: block;
            margin: 0px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 12px helpers.$fontBold;

            span{
                font-family: helpers.$fontRegular;
            }
        }

        .value{
            display: block;
            margin: 0px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 14px helpers.$fontBold;

            [data-replace="total-amount-base"]{
                font: normal 12px helpers.$fontRegular;
                opacity: 0.7;
                text-decoration: line-through;
                font-style: italic;
                display: block;
                text-align: right;
            }
        }
        
        &.indisponivel{
            .badge-indisposivel{
                display: block;
            }
        }
    }
}

.checkout-modal-container{
    position: fixed;
    z-index: 2001;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    align-items: center;
    justify-content: center;
    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;
    }
}

.checkout-modal{
    position: fixed;
    z-index: 2002;
    display: none;
    width: 96%;
    height: calc(100% - 120px);
    max-width: 700px;
    max-height: 500px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    background-color: map.get(helpers.$palletCheckout, light);
    flex-direction: column;

    > .header{
        display: flex;
        align-items: center; 
        border-bottom: solid 1px map.get(helpers.$palletCheckout, borders);

        .title{
            flex-grow: 1;
            width: calc(100% - 110px);
            padding: 10px 15px;
            color: map.get(helpers.$palletCheckout, textMedium);
            font: normal 15px helpers.$fontRegular;
        }

        .btn-close{
            display: flex;
            cursor: pointer;
            outline: 0px;
            width: 110px;
            color: map.get(helpers.$palletCheckout, textDark);
            font: normal 15px helpers.$fontBold;
            text-align: center;
            border-left: solid 1px map.get(helpers.$palletCheckout, borders);
            align-self: stretch;
            align-items: center;
            justify-content: center;
        }
    }

    > .content{
        display: flex;
        flex-grow: 1;
        min-height: 0px;
        position: relative;
    }

    @media(max-width: 767px){
        z-index: 2020;
    }
}

.checkout-modal-fade{
    position: fixed;
    z-index: 2001;
    display: none;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);

    @media(max-width: 767px){
        z-index: 2010;
    }
}

#checkout-modal-address-list{
    width: 96%;
    max-width: 505px;
    height: auto;
    max-height: 90vh;

    .header{
        .title{
            &:before{
                display: inline-block;
                content: "";
                width: 35px;
                height: 35px;
                margin-right: 10px;
                vertical-align: middle;
                border-radius: 100%;
                background-color: map.get(helpers.$palletCheckout, medium);
                background-image: url(../img/icones/icon6.svg);
                background-size: auto;
                background-repeat: no-repeat;
                background-position: center;
            }
        }
    }

    .content{
        overflow-x: hidden;

        .address-list-wrap{
            position: relative;
            display: flex;
            width: 100%;
            min-width: 50%;
            flex-direction: column;

            .address-list{
                position: relative;
                flex-grow: 1;
                min-height: 0;
                padding: 20px;
                overflow-x: hidden;
                overflow-y: auto;
            }

            hr{
                width: 80px;
                margin-left:auto;
                margin-right:auto;
                background: map.get(helpers.$palletCheckout, medium);
            }

            .address-buttons{
                display: flex;
                padding: 20px;
                flex-wrap: wrap;
                border-top: solid 1px map.get(helpers.$palletCheckout, borders);

                .btn-address-add{
                    width: 100%;
                    margin-top: 10px;

                    &:before{
                        display: inline-block;
                        content: "";
                        width: 12px;
                        height: 12px;
                        margin-right: 10px;
                        vertical-align: middle;
                        background-image: url(../img/icones/icon8.svg);
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }

                .btn-address-edit{
                    display: block;
                    cursor: pointer;
                    width: calc(50% - 5px);
                    padding: 10px;
                    margin-left: 5px;
                    color: map.get(helpers.$palletCheckout, textDark);
                    font: normal 15px helpers.$fontRegular;
                    text-align: center;
                    border-radius: 4px;
                    border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
                    background-color: map.get(helpers.$palletCheckout, light);
                    @include helpers.transicao(0.4s ease-in-out);

                    &:hover{
                        background-color: map.get(helpers.$palletCheckout, medium);
                    }
                }

                .btn-address-select{
                    width: calc(50% - 5px);
                    margin-right: 5px;
                    color: map.get(helpers.$palletCheckout, textLight);
                }
            }

            .address-item{
                position: relative;
                cursor: pointer;
                display: flex;
                flex-grow: 1;
                margin-bottom: 5px;
                align-items: center;

                .address-icon{
                    display: block;
                    content: "";
                    width: 16px;
                    height: 16px;
                    margin-right: 10px;
                    background-image: url(../img/icones/icon2.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                .address-container{
                    display: block;
                    width: calc(100% - 26px);
                    padding: 10px 20px;
                    border-radius: 4px;
                    border: solid 1px map.get(helpers.$palletCheckout, borders);
                    background-color: map.get(helpers.$palletCheckout, light);
                    transition: all 0.4s 0.1s;

                    p{
                        display: block;
                        margin: 0px;
                        margin-bottom: 5px;
                        color: map.get(helpers.$palletCheckout, textMedium);
                        font: normal 12px helpers.$fontRegular;

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

                    .address-street{
                        color: map.get(helpers.$palletCheckout, textDark);
                        font-family: helpers.$fontBold;
                    }
                }


                > *{
                    pointer-events: none;
                }

                &:hover{
                    .address-container{
                        background-color: map.get(helpers.$palletCheckout, medium);
                        transition-delay: 0s;
                    }
                }

                &.checked{
                    .address-icon{
                        background-image: url(../img/icones/icon3.svg);
                    }
                    .address-container{
                        background-color: map.get(helpers.$palletCheckout, medium);
                    }
                }
            }
        }

        .address-form-wrap{
            position: absolute;
            overflow-y: auto;
            z-index: 2;
            display: flex;
            width: 100%;
            height: 100%;
            min-height: 100%;
            left: 0;
            padding: 10px;
            background-color: map.get(helpers.$palletCheckout, light);
            flex-direction: column;
            transform: translateX(100%);
            transition: all 0.3s;

            #ADDRESSFrmEdit{
                flex-grow: 1;
                pointer-events: none;
                transition: filter 0.4s;

                .row{
                    margin-left: -5px;
                    margin-right: -5px;
                }
                .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12{
                    padding-left: 5px !important;
                    padding-right: 5px !important;
                }

                .form-group{
                    margin-bottom: 4px;
                }

                label{
                    color: map.get(helpers.$palletCheckout, textDark);
                    font: normal 12px helpers.$fontRegular;
                    margin-bottom: 0;
                }

                .form-control{
                    display: block;
                    outline: 0px;
                    width: 100%;
                    height: auto;
                    padding: 10px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 12px helpers.$fontRegular;
                    border-radius: map.get(helpers.$palletCheckout, borderRadius);
                    border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
                    box-shadow: none;
                }

                select[readonly] {
                    background: map.get(helpers.$palletCheckout, medium);
                    pointer-events: none;
                    touch-action: none;
                }

                .msgError{
                    display: block;
                    margin: 0px;
                    font-size: 11px;
                }
            }

            hr{
                width: 80px;
                background: map.get(helpers.$palletCheckout, medium);
                margin-left:auto;
                margin-right:auto;
            }

            .buttons{
                display: flex;
                padding: 20px;
                margin-top: 20px;
                margin-left: -10px;
                margin-right: -10px;
                border-top: solid 1px map.get(helpers.$palletCheckout, borders);

                a, button{
                    flex-grow: 1;
                    width: 50%;
                }

                .btn-address-discard{
                    margin-right: 5px;
                }
                .btn-address-save{
                    margin-left: 5px;
                }
            }

            .address-form-disabled-msg{
                pointer-events: none;
                position: absolute;
                width: 90%;
                top: 20%;
                left: 5%;
                font-size: 18px;
                font-family: helpers.$fontRegular;
                text-align: center;
                transition: opacity 0.4s;
            }

            &.active{
                transform: translateX(0);

                #ADDRESSFrmEdit{
                    pointer-events: all;
                }
            }
        }
    }
}

#checkout-modal-freight-site{
    width: 96%;
    max-width: 400px;
    max-height: 500px;

    .content{
        padding-top: 10px;

        .site-list{
            position: relative;
            flex-grow: 1;
            min-height: 0;
            padding: 20px;
            overflow-x: hidden;
            overflow-y: auto;

            .freight-site-item{
                position: relative;
                cursor: pointer;
                display: flex;
                flex-grow: 1;
                margin-bottom: 5px;
                align-items: center;

                .freight-site-item-icon{
                    display: block;
                    content: "";
                    width: 16px;
                    height: 16px;
                    margin-right: 10px;
                    background-image: url(../img/icones/icon2.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                .freight-site-item-content{
                    display: block;
                    width: calc(100% - 26px);
                    padding: 10px 20px;
                    border-radius: 4px;
                    border: solid 1px map.get(helpers.$palletCheckout, borders);
                    background-color: map.get(helpers.$palletCheckout, light);
                    transition: all 0.4s 0.1s;

                    p{
                        display: block;
                        margin: 0px;
                        margin-bottom: 5px;
                        color: map.get(helpers.$palletCheckout, textMedium);
                        font: normal 12px helpers.$fontRegular;

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

                    h2{
                        font-size: 12px;
                        font-family: helpers.$fontBold;
                        color: map.get(helpers.$palletCheckout, textDark);
                    }
                }

                &:hover{
                    .freight-site-item-content{
                        background-color: map.get(helpers.$palletCheckout, medium);
                        transition-delay: 0s;
                    }
                }

                &.checked{
                    .freight-site-item-icon{
                        background-image: url(../img/icones/icon3.svg);
                    }
                    .freight-site-item-content{
                        background-color: map.get(helpers.$palletCheckout, medium);
                    }
                }
            }
        }
    }
}

#checkout-modal-terms{
    width: 96%;
    max-width: 860px;
    height: auto;
    max-height: 90vh;

    .header{
        .title{
            &:before{
                display: inline-block;
                content: "";
                width: 35px;
                height: 35px;
                margin-right: 10px;
                vertical-align: middle;
                border-radius: 100%;
                background-color: map.get(helpers.$palletCheckout, medium);
                background-image: url(../img/icones/icon4.svg);
                background-size: auto;
                background-repeat: no-repeat;
                background-position: center;
            }
        }
    }

    .content{
        flex-direction: column;
        padding-top: 10px;

        .term-text{
            overflow: auto;
            padding: 10px;
            flex-grow: 1;
            white-space: pre-line;
            border-bottom: dotted 1px map.get(helpers.$palletCheckout, borders);
        }
        .btn-term-add{
            width: calc(100% - 12px);
            margin: 6px;
        }
        .term-msg-added{
            color: map.get(helpers.$palletCheckout, success);
            margin: 6px;
            padding: 6px;
            text-align: center;
        }
    }

    @media(max-width: 767px){
        height: 96%;
        max-height: none;
        margin-top: 0 !important;
    }
}

#checkout-modal-items{
    max-width: 760px;
    height: auto;
    max-height: 90vh;
    /*margin-top: 70px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%) translateX(-50%);*/

    .btn-close{
        display: flex;
        cursor: pointer;
        outline: 0px;
        width: 110px;
        color: map.get(helpers.$palletCheckout, textDark);
        font: normal 15px helpers.$fontBold;
        text-align: center;
        border-left: solid 1px map.get(helpers.$palletCheckout, borders);
        align-self: stretch;
        align-items: center;
        justify-content: center;
    }

    .btn-filtro-toggle{
        display: none;
        cursor: pointer;
        outline: 0px;
        width: 110px;
        color: map.get(helpers.$palletCheckout, textDark);
        font: normal 15px helpers.$fontBold;
        text-align: center;
        border-left: solid 1px map.get(helpers.$palletCheckout, borders);
        align-self: stretch;
        align-items: center;
        justify-content: center;

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

    .group-list-item{
        margin-bottom: 10px;

        > .header{
            display: flex;
            cursor: pointer;
            padding: 8px;
            flex-wrap: wrap;
            align-items: center;
            border: solid 1px map.get(helpers.$palletCheckout, borders);
            background-color: map.get(helpers.$palletCheckout, medium);

            .label{
                flex-grow: 1;
                color: map.get(helpers.$palletCheckout, textDark);
                font: normal 12px helpers.$fontMedium;
            }

            .ammount-qtd{
                display: flex;

                @media(max-width: 767px){
                    flex-direction: row-reverse;
                    justify-content: space-between;
                    min-width: 100%;
                    order: 3;
                }
            }

            .ammount{
                color: map.get(helpers.$palletCheckout, textMedium);
                font: normal 12px helpers.$fontRegular;
                margin-left: 8px;
                text-align: right;

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

            .qtd{
                margin-left: 8px;
                padding-left: 8px;
                color: map.get(helpers.$palletCheckout, textMedium);
                font: normal 12px helpers.$fontRegular;
                border-left: solid 1px map.get(helpers.$palletCheckout, borders);
                text-align: right;

                @media(max-width: 767px){
                    border-left: none;
                    margin: 0;
                }
            }

            .btn-expand{
                position: relative;
                display: flex;
                width: 15px;
                height: 15px;
                margin-left: 8px;
                align-items: center;
                justify-content: center;
                border-radius: 0px;
                border: solid 1px map.get(helpers.$palletCheckout, dark);

                &:before{
                    display: block;
                    content: "";
                    width: 11px;
                    height: 11px;
                    background-image: url(../img/icones/icon10.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }
            }
        }

        &.opened{
            > .header{
                .btn-expand{
                    &:before{
                        background-image: url(../img/icones/icon9.svg);
                    }
                }
            }
        }
    }

    > .content{
        position: relative;
        overflow: hidden;
        display: flex;

        .main{
            display: flex;
            flex-grow: 1;
            flex-direction: column;

            .list{
                display: flex; 
                overflow: auto;
                flex-grow: 1;
                flex-direction: column; 
                padding: 8px;
            }
            .footer{
                display: flex;
                padding: 15px 16px;
                border-top: solid 1px map.get(helpers.$palletCheckout, borders);
                justify-content: space-between;

                .qtd-total{
                    align-self: center;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font-size: 13px;
                    font-family: helpers.$fontRegular;
                }

                .vl-total{
                    color: map.get(helpers.$palletCheckout, textDark);
                    font-size: 13px;
                    font-family: helpers.$fontMedium;
                    align-self: center;
                }
            }
        }

        .sidebar{
            overflow: auto;
            padding: 8px;
            width: 200px;

            .form{
                overflow: hidden;
                padding: 4px;

                .titulo{
                    padding: 8px 0;
                    margin: 0px;
                    color: map.get(helpers.$palletCheckout, textDark);
                    font: normal 15px helpers.$fontMedium;
                    text-align: center;

                    &:last-of-type{
                        margin-top: 15px;
                    }
                }

                .form-group{
                    margin-bottom: 10px;
                }

                label{
                    width: 100%;
                    margin-bottom: 0;
                    color: map.get(helpers.$palletCheckout, textDark);
                    font: normal 13px helpers.$fontRegular;
                }

                select{
                    display: block;
                    outline: 0px;
                    width: 100%;
                    height: auto;
                    padding: 5px 10px;
                    color: map.get(helpers.$palletCheckout, textMedium);
                    font: normal 15px helpers.$fontRegular;
                    border-radius: 0px;
                    border: solid 1px map.get(helpers.$palletCheckout, inputBorderColor);
                    background-color: map.get(helpers.$palletCheckout, light);
                    box-shadow: none;

                    option{
                        /*                        font: 11px $fontRegular;
                                                padding: 0 4px;*/
                    }
                }

                hr{
                    margin: 10px;
                }

                #btn-aplicar-filtro{
                    flex-grow: 1;
                    float: right;
                    width: 50%;
                    border-radius: 0px;

                    @media(max-width: 767px){
                        float: none;
                        margin-top: 10px;
                        /*padding: 10px;*/
                        width: 100%;
                    }
                }

                #btn-limpar-filtro{
                    /*background-color: #999;*/
                    flex-grow: 1;
                    float: left;
                    width: 50%;
                    border-radius: 0px;

                    @media(max-width: 767px){
                        float: none;
                        margin-top: 10px;
                        /*padding: 10px;*/
                        width: 100%;
                    }
                }

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

            @media(max-width: 767px){
                position: absolute;
                z-index: 2;
                width: 100%;
                height: 100%;
                top: 0;
                left: 100%;
                background-color: map.get(helpers.$palletCheckout, light);
                transition: all 0.4s;
            }

            &.active{
                @media(max-width: 767px){
                    transform: translateX(-100%);
                }
            }
        }
    }

    @media(max-width: 767px){
        height: 96%;
        max-height: none;
        margin-top: 0 !important;
    }
}

#checkout-modal-payment{
    height: 90vh;
    max-width: 900px;
    max-height: initial;

    #payment-frame{
        border: none;
        display: none;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

    .payment-loading{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,0.9);

        &:after{
            content:'';
            display: block;
            width: 50px;
            height: 50px;
            border-top: solid 3px #999;
            border-right: solid 3px #999;
            border-radius: 50%;
            animation: spin 1s infinite linear;
            top: 50%;
            left: 50%;
            margin: -25px 0 0 -25px;
            position: absolute;
        }
    }

    /* Checkout Loader */
    .checkout-loader {
        position: absolute;
        z-index: 5;
        display: none;
        width: 32px;
        height: 32px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);

        span {
            position: absolute;
            display: block;
            width: 32px;
            height: 32px;
            top: 0; 
            left: 0;
            right: 0;
            bottom: 0; 
            margin: auto;

            &::before,
            &::after {
                position: absolute;
                display: block;
                content: "";
                opacity: 0;
                width: 32px;
                height: 32px;
                top: 0; 
                left: 0;
                bottom: 0; 
                right: 0;
                margin: auto;
                border-radius: 50%;
                border: 2px solid map.get(helpers.$palletCheckout, dark);
                -webkit-animation: checkout-loader-1 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) infinite;
                animation: checkout-loader-1 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) infinite;
            }

            &::after {
                -webkit-animation: checkout-loader-2 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) .25s infinite;
                animation: checkout-loader-2 1.5s cubic-bezier(0.075, 0.820, 0.165, 1.000) .25s infinite;
            }
        }
    }

    &.loading{
        .checkout-loader {
            display: block;
        }
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.scrolling ~ #sc-conteudo #checkout-modal-items{
    /*    margin-top: 50px;
        max-height: calc(96% - 120px);*/
}

.checkout-btn-1{
    display: block;
    padding: 2px 10px;
    color: map.get(helpers.$palletCheckout, textLight);
    font: normal 12px helpers.$fontRegular;
    text-align: center;
    transition: all 0.4s ease-in-out;
    border-radius: map.get(helpers.$palletCheckout, borderRadius);
    background-color: map.get(helpers.$palletCheckout, dark);

    &:hover, &:focus{
        color: map.get(helpers.$palletCheckout, textLight);
        background-color: map.get(helpers.$palletCheckout, success);
    }
}

.milestone{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    margin: 20px auto 30px auto;
    position: relative;
    
    a {
        align-items: center;
        border: solid 1px #ccc;
        border-radius: 3px;
        color: map.get(helpers.$palletCheckout, textDark);
        display: flex;
        font: normal 11px helpers.$fontRegular;
        height: 20px;
        justify-content: center;
        position: relative;
        width: 20px;
        
        span {
            font-size: 11px;
            left: 50%;
            top: 100%;
            transform: translateX(-50%);
            position: absolute;
            display: block;
        }

        &.past {
            background-color: #ddd;
            opacity: 0.4;
        }
        
        &.actual {
            background-color: helpers.$highlight;
            color:helpers.$textoLight;

            span {
                color: map.get(helpers.$palletCheckout, textDark);
            }
        }
    }

    .line {
        display: block;
        height: 2px;
        background-color: #ccc;
        flex-grow: 1;
    }
}

@-webkit-keyframes checkout-loader-1 {
    0%   { -webkit-transform: translate3d(0, 0, 0) scale(0); opacity: 1; }
    100% { -webkit-transform: translate3d(0, 0, 0) scale(1.5); opacity: 0; }
}
@keyframes checkout-loader-1 {
    0%   { transform: translate3d(0, 0, 0) scale(0); opacity: 1; }
    100% { transform: translate3d(0, 0, 0) scale(1.5); opacity: 0; }
}
@-webkit-keyframes checkout-loader-2 {
    0%   { -webkit-transform: translate3d(0, 0, 0) scale(0); opacity: 1; }
    100% { -webkit-transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
}
@keyframes checkout-loader-2 {
    0%   { transform: translate3d(0, 0, 0) scale(0); opacity: 1; }
    100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
}