﻿/*carrinho*/
.loja_carrinho {
    position: fixed;
    width: 350px;
    background: #f7f7f7;
    height: 100vh;
    z-index: 9999;
    padding: 15px;
    box-shadow: 2px 2px 5px 1px #bfbfbf;
    right: 0;
    border-left: 2px solid #00377b45;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display:none;
}
    .loja_carrinho h3 {
        font-family: 'Anzo_Black';
        color: #00377b;
        /*margin: 4px 0 10px 30px;*/
        margin: 8px 0 6px 30px;
    }
.carrinho_lista {
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}
.carrinho_produto{

    display: flex;
}
.carrinho_infoproduto{
    margin: 0 5px 0 10px;
    width: 130px;
}

    .carrinho_infoproduto b {
        margin: 0 0 5px 0;
        font-size: 15px;
        font-family: 'Anzo_Web_Light';
        color: #00377b;
        display: block;
        cursor:pointer;
    }
    .carrinho_infoproduto b:hover, .carrinho_produto img:hover{
        opacity:0.8;
    }
.carrinho_rodape {
  /*    position: absolute;*/
    bottom: 0;
    margin-bottom: 10px;
}
.carrinho_fechar {
    position: absolute;
    left: 0;
    top: 0;
    margin: 15px 15px 0 10px;
    font-weight: 600;
    color: #f22;
    font-size: 22px;
}
.carrinho_fechar:hover{
    opacity:0.8;
}
.carrinho_fechar img{
    width:22px;
}
.carrinho_fechar:hover{
    text-decoration:none;
    color:#555;
}
.carrinho_subtotal {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Anzo_Web_Light';
    padding: 10px;
    text-align: center;
    display: block;
    margin: 10px 0 10px 0;
    border-top: 1px solid #e5e5e5;
    color: #727272;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .carrinho_subtotal span {
        color: #f1801f;
        font-size: 24px;
        font-family: 'Roboto';
        font-weight: 600;
    }
.carrinho_finalizar {
    padding: 17px 20px;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Anzo_Web_Light';
    font-weight: 600;
    text-transform: uppercase;
    transition: all linear 0.3s;
    text-decoration: none;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00a88a;
    background: #069d54;
}
    .carrinho_finalizar:hover {
        color: #fff;
        opacity: 0.7;
        text-decoration:none;
    }
    .carrinho_finalizar:focus{
        text-decoration:none;
        color:#fff;
    }
    .carrinho_pxq{
        display: flex;
        flex-direction: row;
        padding: 5px;
        justify-content: flex-start;
    }
.carrinho_qtd {
    font-size: 16px;
    font-weight: 600;
    margin-right: 5px;
    color: #555555;
}
.carrinho_x {
    margin-right: 5px;
    color: #939393;
}
.carrinho_valor {
    font-size: 16px;
    font-weight: 600;
    color: #f18121;
}
.carrinho_shadow{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 79%);
    z-index: 9999;
    display:none;
}
.carrinho_blocolista {
   /* max-height: 78vh;*/
    max-height: 70vh;
    margin-top:30px;
}
.dados-checkout{
    margin-top: 55px;
}

.carrinhoV{
    overflow:hidden;
}
.carrinho_lista:last-child{
    border-bottom:none;
}
.carrinho_scroll {
    overflow-y: scroll;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.carrinho_remover {
    cursor: pointer;
    padding: 4px 12px;
}
.carrinho_remover img{
    width: 16px;
}

.carrinho_prodfoto{
    width: 100px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    border-radius: 6px;
}
.carrinho_prodfoto img{
    width: 100px;
    cursor:pointer;
    margin-left: -10px;
}

.confirm{
    background:#f1801f !important;
}

.confirm:hover{
    opacity: 0.7;
}

.carrinho_input{
    width: 100%;
    height: 45px;
    padding-left: 20px;
    border: 1px solid #d4d4d4;
    display: block;
    border-radius: 8px;
}
.carrinho_input:focus{
    outline:none;
}

#carrinho_etapa2{
    display: none;
}

#carrinho_etapa2 b{
    color: #00377b;
    font-family: 'Roboto';
}
#carrinho_etapa2 p{
    font-family: 'Roboto';
    margin: 0 0 20px 0;
    line-height: 22px;
}


#carrinho_etapa3{
    display: none;
}

.carrinho_pd{
    display:block;
    text-align:center;
    margin: 15px 0;
}

.carrinho_pd img{
    max-width:80px;
    margin: 10px 0 10px 0;

}
.carrinho_pd b{
    display: block;
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #00377b;
    font-family: 'Roboto';
}

.carrinho_pd p{
    text-align:left;
    padding: 0 10px;
    margin: 0 0 20px 0;
    line-height: 22px;
    font-family: 'Roboto';
}


/*orçamento*/
.orcamento {
    position: fixed;
    width: 350px;
    background: #f7f7f7;
    height: 100vh;
    z-index: 9999;
    padding: 15px;
    box-shadow: 2px 2px 5px 1px #bfbfbf;
    right: 0;
    border-left: 2px solid #00377b45;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display:none;
}
    .orcamento h3 {
        font-family: 'Anzo_Black';
        color: #00377b;
        margin: 4px 0 10px 30px;
    }

.orcamento_shadow{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 79%);
    z-index: 9999;
    display:none;
}

.carrinho_txtarea {
    width: 100%;
    height: 95px;
    padding: 10px 10px 10px 20px;
    border: 1px solid #d4d4d4;
    display: block;
    border-radius: 8px;
}

.carrinho_txtarea:focus{
    outline:none;
}

.exibir{
    display: block;
}
.exibirf{
    display:flex;
}
#orcamento_etapa1{
    overflow-y: scroll;
}
.loja_carrinho_naovazio{
    overflow-y: scroll;
}

.carrinho_header{
    display: block;
    background: #f7f7f7;
    padding: 10px 35px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 320px){
    .loja_carrinho{ 
        width: 320px;
    }
    .orcamento{
        width: 320px;
    }
}
