* {-webkit-font-smoothing: antialiased;}

.metodo__envio {
    list-style-type: none;
    padding: 0;
    flex: 1;
    margin: 0;
}

.carrinho__pedido {
    flex: 1;
    margin-bottom: 28px;
}

.carrinho__pedido-colunas {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #E8E9ED;
}

.carrinho__pedido-colunas h3:first-child {flex: 4;}

.carrinho__pedido-colunas h3:nth-child(2) {
    text-align: center;
    flex: 3;
}

.carrinho__pedido-colunas h3:last-child {
    flex: 1;
    min-width: 72px;
}

.carrinho__produtos ul {
    list-style-type: none;
    padding: 0;
}

.carrinho__produtos ul li {
    display: flex;
    border-bottom: 1px solid #dedede;
    margin: -15px 0 12px;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.carrinho__produtos ul li figure {
    margin: 0 16px 0 0;
}

.carrinho__wrapper h2, .carrinho__wrapper h3 {
    font-size: 14.4px;
    margin: 0 0 12px;
}

.produto__info h2 {
    width: 100%;
    max-width: 250px;
    margin-bottom: 0;
    margin: auto 0;
    font-size: 14px;
    font-weight: normal;
    flex: 1;
}

.carrinho__resumo {
    padding: 16px;
    background: hsl(225, 20%, 94%);
    border-radius: 4px;
    display: flex;
    flex: 2;
    flex-basis: 55%;
    flex-direction: column;
    margin-left: 20px;
    /*    min-height: 340px;*/
}

.carrinho__produtos img {
    max-width: 92px;
}

.produto__info {
    display: flex;
    flex: 4;
}

.quantidade__wrapper input {
    padding: 0;
    width: 40px;
    height: 30px;
    text-align: center;
    border: 0;
    border-radius: 0 !important;
    margin: 0px;
}

.quantidade__wrapper input:focus {
    outline: none;
}

.produto__info-quantidade input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.produto__info-quantidade {
    display: flex;
    flex: 3;
    flex-direction: column;
    text-align: center;
}

.produto__info-quantidade form button[type="submit"] {
    /*    border: 0;
        padding: 6px 20px;
        cursor: pointer;
        background: none;*/
}

.produto__info-quantidade form button[type="submit"]:hover {
    text-decoration: underline;
}

.quantidade__wrapper button {
    margin: 0;
    border: 0;
    background: #EDEEF3;
    padding: 0 10px;
    height: 30px;
    width: 31px;
    color: black;
    font-size: 18px;
    line-height: 18px;
    outline: 0;
    cursor: pointer;
    transition: background 100ms ease-in-out;
}

.quantidade__wrapper {
    margin: 10px auto;
    border: 2px solid #EDEEF3;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.produto__info-preco {
    margin: auto 0;
    font-size: 14px;
    width: 15%;
    flex: 1;
    min-width: 72px;
}

.frete__info-prazo {
    display: block;
    font-size: 11px;
    font-style: italic;
}

.metodo__envio li {
    position: relative;
    margin: 12px 0;
    flex: 1;
}

.metodo__envio li label {
    display: flex;
    padding: 12px 10px 12px 40px;
    cursor: pointer;
    border: 2px solid #e6e6e6;
    border-radius: 4px;
    justify-content: space-between;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
}

.frete__recomendado {
    float: right;
    background-color: #f0be00;
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 10px;
    color: #463804;
    letter-spacing: 0.2px;
    font-weight: normal;
}

.frete__info-valor {
    border-left: 2px solid #d4d4d4;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    margin-left: 12px;
}

.frete__info-valor[data-desconto-frete] {
    flex-direction: column;
    align-items: flex-end;
    padding: 0 5px 0 5px;
}

.frete__info-valor[data-desconto-frete]::after {
    content: attr(data-desconto-frete);
    color: #999;
    font-size: 10px;
    bottom: -6px;
    text-decoration: line-through;
}

.frete__info {
    font-size: 14px;
    flex: 1;
    position: relative;
}

.frete__info-disabled {
    color: gray !important;
    font-size: 14px;
    flex: 1;
    position: relative;
}

input.metodo__envio {
    order: 1;
    z-index: 2;
    position: absolute;
    left: 11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
    margin: 0;
}

.metodo__envio li label::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background: #eeeff3;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.metodo__envio li input:checked ~ label::before {
    -webkit-transform: translate(-50%, -50%) scale3d(45, 45, 1);
    transform: translate(-50%, -50%) scale3d(45, 45, 1);
    opacity: 1;
}

.metodo__envio li input:checked ~ label {
    color: #4069e1;
    border-color: #e3e5ec;
    font-weight: bold;
}

.metodo__envio li label::after {
    width: 14px;
    height: 14px;
    content: '';
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

@media print
{
    .metodo__envio li label {
        opacity: 0;
    }
}

.metodo__envio li input:checked ~ label::after {background-color: royalblue;border-color: royalblue;}

.carrinho__produtos ul li:last-child {
    border: 0;
}

.frete__gratis {
    color: #147114;
}

section.carrinho__infoPedido {
    display: flex;
    margin-bottom: 20px;
}

.carrinho__infoPedido h3 {
    font-size: 18px;
}

.carrinho__frete {
    flex: 1 0 45%;
    min-width: 0;
}

.frete__select-country2 {
    display: flex;
/*    border: 2px solid #EDEEF3;
    border-right: 0px;
    border-radius: 4px 0 0 4px;*/
    padding: 0;
    align-items: center;
    outline-width: 0;
/*    width: 100px;*/
    justify-content: center;
}

.frete__select-country2:hover {
    cursor: pointer;
}

.frete__select-country2 > span {
    font-size: 28px !important;
    -webkit-print-color-adjust: exact;
    border-radius: 3px;
    flex: 0 0 38px;
    margin-right: 8px;
    margin-left: 9px;
    background-size: cover;
    border: 1px solid #efefef;
}


.frete__select-country {
    display: flex;
    border: 2px solid #EDEEF3;
    border-radius: 4px 0 0 4px;
    padding: 0 11px;
    align-items: center;
    justify-content: flex-start;
    height: 42px;
    min-width: 0;
    flex: 1;
}

.frete__select-country > div > span:first-child {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    flex: 0;
}

.frete__select-country > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.frete__select-country > span {
    font-size: 28px !important;
    -webkit-print-color-adjust: exact;
    border-radius: 3px;
    flex: 0 0 38px;
    margin-right: 6px;
    background-size: cover;
    border: 1px solid #efefef;
}

.frete__select-country > div > span:last-of-type {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* max-width: 146px; */
    /* min-width: 0; */
    /* flex: 0; */
}

.calcula_cep {
    display: flex;
    flex-direction: row-reverse;
}

.calcula_cep .btn_calcula_frete {
    padding: 0 11px;
    height: 46px;
    font-size: 12px;
    border-radius: 0 4px 4px 0;
    border: none;
    background-color: #EDEEF3;
    color: black;
    transition: background-color 100ms ease-in-out;
}

.input_cep {
    font-size: 15px;
    text-align: center;
    padding: 0 12px;
    height: 42px;
    width: calc(100% - 24px);
    min-width: 100px;
    border-radius: 4px 0 0 4px !important;
    border: 2px solid #EDEEF3;
    transition: border-color 100ms ease-in-out;
    margin: 0px;
    z-index: 2;
}

.carrinho__avisos {
    margin: 12px 0;
}

.carrinho__avisos > * {
    margin: 8px 0 !important;
}

.carrinho__wrapper h1 {
    text-align: right;
    margin: 0 0 28px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5f5f5;
    font-size: 22px;
}

.input_cep:focus {
/*    border-color: #3e4d79 !important;
    outline-color: #3e4d79 !important;*/
    outline-color: #cacaca;
}

.carrinho__frete h3 {
    margin-bottom: 16px;
    /* margin-top: 16px; */
}

.carrinho__resumo h3 {
    margin-bottom: 16px;
}

.carrinho__btn-pagamento {
    border: none;
    padding: 14px;
    border-radius: 4px;
    background: royalblue;
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}

.carrinho__btn-pagamento i {
    font-size: 12px;
    vertical-align: 1px;
    padding-left: 2px;
}

.carrinho__resumo-dados {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.carrinho__resumo-total {
    font-size: 14px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    border-top: 2px solid #e5e5e6;
    margin: auto 0 0;
    padding-top: 20px;
}

.carrinho__resumo-total > span {
    font-size: 16px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    flex: 1;
    flex-basis: 50%;
}

.carrinho__resumo-dados.frete-gratis {
    border: 2px solid #53b12e;
    padding: 6px 8px;
    margin: 0px -8px 6px;
    background: #f1fbed;
    border-radius: 3px;
}

.carrinho__resumo-dados.frete-unavailable {
    border: 2px solid #dabf13;
    padding: 6px 8px;
    margin: 0px -8px 6px;
    background: #fbfaed;
    border-radius: 3px;
}

.carrinho__resumo-dados.frete-gratis #resumo__frete-preco {color: darkgreen;font-weight: bold;justify-content: flex-end;}

.carrinho__resumo-dados.frete-unavailable #resumo__frete-preco {
    color: #7b6407;
    font-weight: bold;
    justify-content: flex-end;
}

.carrinho__resumo-dados .btn__cupom {
    padding: 0;
    background: 0;
    border: 0;
    font-size: inherit;
    cursor: pointer;
    color: inherit;
}

.carrinho__resumo-dados .btn__cupom:hover {
    text-decoration: underline;
}

#carregando_frete {
    min-height: 270px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#retirada__robocore > a {
    display: flex;
    align-items: center;
    font-size: inherit;
    margin-top: 4px;
    text-decoration: none;
    color: darkgreen;
}

#retirada__robocore > a > div span {
    display: block;
}

#retirada__robocore > a i {
    font-size: 26px;
    margin-right: 10px;
}

#retirada__robocore > a:hover {
    color: #019401;
}

#retirada__robocore > span {
    font-weight: bold;
    text-transform: uppercase;
    color: #1f471f;
}

#retirada__robocore {
    margin-top: 10px;
    padding: 12px 16px;
    background: #f1fbec;
    border: 2px solid #60b53e;
    border-radius: 4px;
    position: relative;
    flex-direction: column;
}

.carrinho__resumo-dados .btn__cupom i {
    margin-left: 2px;
}

#endereco_entrega {
    margin-bottom: 12px;
}

.carrinho__resumo-dados.frete-gratis > span {
    color: #1f471f;
}

.carrinho__resumo-dados.frete-unavailable > span {
    color: #7b6407;
}

#retirada__robocore > a::after {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
}

.btn_calcula_frete:hover {
    background: #E8E9ED !important;
}

.btn_calcula_frete:hover ~ input {
    border-color: #E8E9ED;
}

.quantidade__wrapper button:hover {
    background: #E8E9ED;
}


.carrinho__resumo-dados > span:last-child {
    display: flex;
    justify-content: space-between;
    width: 80px;
    flex-shrink: 0;
}

.resumo__desconto {
    color: darkgreen;
}

.resumo__cupom-descricao {
    display: flex;
    align-items: baseline;
    color: #444;
    font-size: 12px;
    max-width: 250px;
    font-style: italic;
    margin-top: 2px;
}

.resumo__desconto #cupom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resumo__desconto #cupon {display: inline-block;margin-left: 4px;}

#resumo__cupom i {font-size: 11px;vertical-align: 1px;margin-left: 4px;}

.resumo__cupom-descricao i {
    margin-right: 2px;
    color: #555;
}

.resumo__desconto > span:last-child > span {
    position: relative;
}

#resumo__cupom {
    font-weight: bold;
}

.resumo__desconto > span > span:last-child::before {
    /*    content: "-";*/
    position: absolute;
    left: -8px;
    font-size: 16px;
    top: -2px;
}

#resumo__cupom-desconto::before {
    content: "-";
}

.aviso__cupom {
    background: #f1fbeb;
    border: 2px solid #60b43d;
    color: #1f471f;
    text-align: center;
    margin: 12px 0;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    min-height: 32px;
    /* display: none; */
}

.aviso__cupom > i:nth-child(2), .aviso__cupom > i:last-child {
    color: darkgreen;
    font-size: 20px;
    margin-right: auto;
    padding: 0 10px 0 0;
}

.aviso__cupom > i:last-child {
    margin: 0 0 0 auto;
    padding: 0 0 0 10px;
}

.aviso__credito {
    background: #fbfbfb;
    border: 2px solid #f1f1f1;
    text-align: center;
    margin: 12px 0;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.aviso__cupom a {
    color: #013501;
    margin-left: 2px;
}

.aviso__cupom a:hover {
    color: red;
}

.aviso__credito .valor {
    width: 46px;
    text-align: center;
    margin: 0 6px;
    padding: 7px 4px;
}

.aviso__credito .valor:focus {
    outline-color: #cacaca;
}

.aviso__credito button {
    border: 0;
    background: #edeef3;
    padding: 7px 12px;
    border-radius: 3px;
    font-size: 12px;
    color: #313131;
    text-transform: uppercase;
    cursor: pointer;
}

.aviso__credito button:hover {
    background: #E8E9ED;
}

.resumo-total__parcelas {text-align: right;flex: 1;margin: 2px 0 0px;}

.carrinho__resumo-total > span:nth-child(2n) {
    text-align: right;
}

.carrinho__resumo-total > span:nth-child(n+3) {
    font-size: 14px;
    color: #7b7b7b;
}

#parcela__juros {
    display: block;
}

.aviso__credito button i {
    margin-left: 4px;
}

.tooltip-parcelas {
    position: relative;
    display: inline-block;
    padding: 0 0 0 6px;
    color: #666;
    cursor: pointer;
}

.tooltip-parcelas .tooltip-parcelas__texto {
    visibility: hidden;
    width: 120px;
    background-color: #fff5ce;
    border: 2px solid #f1da81;
    /* color: #fff; */
    text-align: center;
    border-radius: 4px;
    padding: 10px;      /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 21px;
    right: -20px;
    font-family: 'Open Sans', sans-serif;
    width: 265px;
    text-align: right;
    box-shadow: 0 13px 10px -10px rgba(173, 136, 8, 0.8);
    opacity: 0;
    transition: opacity 350ms ease-in-out;
}

.tooltip-parcelas:hover .tooltip-parcelas__texto {
    visibility: visible;
    opacity: 1;
}

.tooltip-parcelas .tooltip-parcelas__texto::before {
    content: " ";
    position: absolute;
    bottom: 102%;  /* At the top of the tooltip */
    right: 18px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #f1da81 transparent;
}

.tooltip-parcelas:hover {
    color: #333;
}


.aviso__input {
    flex-shrink: 0;
}

.produto__info-text {
    margin: auto 0;
}

.produto__info-text > span {
    font-size: 12px;
    color: #555;
    flex: 1;
    margin-top: 1px;
    display: block;
}


.error, .error * {
    background: #fbecec !important;
    border-color: #b53e3e !important;
    color: darkred !important;
}

#frete__limite-peso {
    margin-top: 10px;
    padding: 12px 16px;
    border: 2px solid;
    border-radius: 4px;
    position: relative;
    flex-direction: column;
}

#frete__limite-peso > span {
    font-weight: bold;
    text-transform: uppercase;
}

#frete__limite-peso > p {
    margin: 4px 0 0;
    font-size: 13px;
}

#frete__limite-peso > a {
    display: flex;
    align-items: center;
    font-size: inherit;
    margin-top: 4px;
    text-decoration: none;
}

#frete__limite-peso > a i {
    font-size: 26px;
    margin-right: 10px;
}

#frete__limite-peso > a > div span {
    display: block;
}

@media (max-width: 595px) {
    .carrinho__infoPedido{
        flex-direction: column;
    }

    .carrinho__resumo{
        margin: 20px 0 0;
    }

    .metodo__envio li label::before{
        transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .metodo__envio li input:checked ~ label::before {
        -webkit-transform: translate(-50%, -50%) scale3d(58, 58, 1);
        transform: translate(-50%, -50%) scale3d(58, 58, 1);
    }

    .quantidade__wrapper button {
        width: 100%;
    }

    .quantidade__wrapper {
        flex-direction: column-reverse;
    }

}

@media (max-width: 450px) {
    .metodo__envio li input:checked ~ label::before {
        -webkit-transform: translate(-50%, -50%) scale3d(43, 43, 1);
        transform: translate(-50%, -50%) scale3d(43, 43, 1);
    }

    .aviso__input {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
    }

    .aviso__credito .valor {
        width: 120px;
        margin: 0 0 8px;
    }

    .aviso__credito button {
        width: 100%;
    }

    .produto__info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .produto__info-quantidade {
        margin: 0 6px;
    }

}