@charset "UTF-8";

body {
    /*background: url("../img/cream_pixels.png");*/
    padding: 90px 0 50px 0; /*padding para cabecalho e rodape*/
   /* background-image: url(../img/logo_empresafundo.png);*/
  /*  background-repeat: repeat;*/
  /*  background-attachment: fixed;*/
}

.container {
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
}

.titulo {
    /*border-radius: 5px 5px 0 0;*/
    background: #000000;
    color: white;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    width: 100%;
}

.corpo_produtos {
    width: calc(100% - 330px);
    border-radius: 5px;
    overflow: auto;
}

.corpo_carrinho {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: calc(100vh - 150px);
    overflow: auto;
    border-radius: 5px;
    border: 1px solid #000000;
}

.corpo_carrinho_fechamento {
    border-radius: 5px;
    border: 1px solid #000000;
}

.carrinho_total_e_botao {
    position: absolute;
    bottom: 0;
    left:0;
    background: #000000;
    padding: 5px;
    color:white
}

#bt_carrinho {
    display: none;
}

@media (max-width: 992px) {

    #bt_carrinho {
        display: inline-block;
    }

    .corpo_carrinho {
        display: none;
    }

    .corpo_produtos {
        width: 100%;
    }

    .box_produtos {
        min-height: 65px;
    }

}

.meuscroll::-webkit-scrollbar {
    width: 12px;
}

.meuscroll::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(187,36,40,1);*/
    /*border-radius: 10px;*/
}

.meuscroll::-webkit-scrollbar-thumb {
    border-radius: 1px;
    -webkit-box-shadow: inset 0 0 6px #000000;
}

.carrinho_lista_itens {
    padding:5px;
    font-size: 12px;
    color: black;
    /*background: white;*/
    overflow: auto;
}

.carrinho_lista_itens_altura {
    height: calc(100vh - 313px);
}

.item {
     border-bottom: 1px solid #f4f4f4;
     padding-bottom: 5px;
     margin-top: 5px;
 }

.item:first-child{
    margin-top: 0;
}

.item:last-child {
    border-bottom: none;
}

.item img {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.linha_valor {
     display: flex;
     height: 18px;
     justify-content: flex-start;
     align-items: center;
 }

.linha_descricao {
    display: flex;
    height: 20px;
    justify-content: flex-start;
    align-items: center;
}

.texto_valor {
    width: calc(100% - 94px);
    margin-right: 5px;
    text-align: right;
}

.texto_descricao {
     /*width: calc(100% - 18px);*/
     width: 100%;
     margin-right: 5px;
     text-align: left;
     overflow: hidden;
     white-space: nowrap;
     text-overflow: ellipsis;
     font-weight: bold;
}

.texto_descricao_sub {
    /*font-weight: normal;*/
    font-style: italic;
}

.texto_obs {
    font-style: italic;
    color:#007da7;
    margin-left: 5px;
}

.texto_adicionais {
    font-style: italic;
    color: brown;
    margin-left: 10px;
}

.texto_opcao {
    color: green;
}

.qtde {
    width: 40px;
    /*display: inline-block;*/
    text-align: center;
    font-size: 16px;
}

.bt_menos, .bt_mais .bt_info .bt_excluir {
    width: 18px;
}

.cabecalho {
    height: 80px;
    background: #000000;
    border: none;
}

.cabecalho .container {
    height: 100%;
    padding-left: 5px;
    padding-right: 5px;
}

.cabecalho_botoes {
    height: 100%;
    padding-bottom: 5px;
    padding-top: 5px;
    width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 5px;
}

.cabecalho_botoes .fad {
    font-size: 18px;
}

.cabecalho_titulo {
    color: white;
    margin-left: 10px;
    display: inline-block;
    line-height: 18px;

}

.nome_empresa {

    font-size: 22px;
    font-family: "ProximaNova-Bold";
}

.dados_do_cliente {
    font-size: 14px;
    line-height: 14px;
    font-weight: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.dados_do_cliente_link {
    text-decoration: underline;
    font-size: 12px;
    cursor: pointer;
}

#cabecalho_logo_empresa {
    margin-top: 5px;
    height: 80px;
    -webkit-filter: drop-shadow(2px 2px 2px #222);
    filter: drop-shadow(2px 2px 2px #222);	
}

@media (max-width: 480px) {
    .cabecalho_titulo {
        display: none;
    }

    .cabecalho_botoes {
        width: 200px;
    }

    #bt_minha_conta1 {
        width: 160px !important;

    }

    #bt_logout {
        width: 40px !important;
    }

}
@media (max-width: 768px) {


    #cabecalho_logo_empresa {
        margin-top: 5px;
        height: 70px;
    }

    body {
        padding: 80px 0 50px 0; /*padding para cabecalho e rodape*/
    }

    .container {
        padding: 0;
    }

    .corpo_produtos {
        border-radius: 0;
    }

    .div_busca {
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid #ccc !important;
    }

    .lista_produtos {
        padding: 0 5px;
    }

    .nome_empresa {
        font-size: 18px !important;
    }

    .dados_do_cliente {
        font-size: 12px;
    }

}

.rodape {
    height: 50px;
    background: #000000;
    border: none;
}

.rodape .container {
    height: 100%;
    color: white;
    padding: 5px;
}

.menu_rodape_open {
    font-size: 42px !important;
    display: none !important;
}

@media (max-width: 768px) {
    .menu_rodape_open {
        display: inline-block !important;
    }
}

.carrinho_bt_finalizar {
    width: 100%;
    font-weight: bold;
}

.carrinho_resumo_texto {
    width: 100%;
    display: inline-block;
    line-height: 18px;
}

.carrinho_resumo_texto .fad {
    width: 20px;
    font-size: 14px;

}

.fecha_abre {
    margin-top: 4px;
    margin-right: 10px;
    font-size: 30px !important;
    cursor: pointer;
}

.fecha_abre_p {
    font-weight: normal !important;
    margin-top: 8px;
    margin-right: 10px;
    font-size: 18px !important;
    cursor: pointer;
    color: gray;
}

.div_busca {
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    height: 35px;
    margin-bottom: 5px;
}

.div_busca .ico_busca {
    font-size: 20px;
    color: gray;
    width: 30px;
    display: inline-block;
    margin-top: 5px;

}

.input_busca {
    width: calc(100% - 30px);
    height: 35px;
    border: none;
    background: transparent;
    outline: none;
    float: left;
    padding-left: 10px;
}

.especificacao_titulo {
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    padding: 0 5px;
    background: #fdb73d;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
    line-height: 35px;
    height: 35px;
    cursor: pointer;
    color: #000000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.box_produtos {
    margin: 0 0 5px 0;
    min-height: 73px;
    width: 100%;
    /*background: rgba(233, 232, 223, 0.5);*/
    background: transparent;
    border: none;
    position: relative;
    /*border-radius: 0px 15px 0px 15px;*/
    /*-moz-border-radius: 0px 15px 0px 15px;*/
    /*-webkit-border-radius: 0px 15px 0px 15px;*/
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.box_produtos:last-child {
    border-bottom: none;
}

.box_descricao {
    text-align: left;
    color: black;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    width: calc(100% - 105px);
    display: inline-block;
}

.box_tem_foto {
    min-width: 115px;
    min-height: 60px;
    float: left;
    text-align: center;
}

.box_tem_foto_img {
    max-width: 115px;
    max-height: 115px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.box_valor {
    position: absolute;
    top:0;
    right:0;
    width: 100px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    text-align: center;
    color: #000000;
    background: #fdb73d;
    border: none;
    border-radius:          0px 15px  0px 0px;
    -moz-border-radius:     0px 15px  0px 0px;
    -webkit-border-radius:  0px 15px  0px 0px;
    /*z-index: 99;*/
}

.box_valor_promocao {
    position: absolute;
    top: -15px;
    right: -5px;
    z-index: 2;
    font-size: 24px;
}

.box_valor_promocao .fad {
    --fa-primary-color: red;
    --fa-secondary-color: yellow;
}

.box_destaque {
    position: absolute;
    top: -5px;
    right: 105px;
    z-index: 2;
    font-size: 46px;
}

.box_destaque .fad {
    --fa-primary-opacity: 0.60;
    --fa-primary-color: #ffcf00;
    --fa-secondary-color: #65ff47;
}

.box_valor_tem_a_partir {
    line-height: 42px;
}

.box_valor_a_partir {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    font-size: 10px;
    line-height: 8px;
    text-align: center;
}

.box_quero {
    cursor: pointer;
    position: absolute;
    top:34px;
    right:0;
    width: 100px;
    height: 34px;
    line-height: 34px;
    font-size: 18px;
    text-align: center;
    background-color: hsl(70, 11%, 23%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7b7f66", endColorstr="#3e4134");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#7b7f66), to(#3e4134));
    background-image: -moz-linear-gradient(top, #7b7f66, #3e4134);
    background-image: -ms-linear-gradient(top, #7b7f66, #3e4134);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7b7f66), color-stop(100%, #3e4134));
    background-image: -webkit-linear-gradient(top, #7b7f66, #3e4134);
    background-image: -o-linear-gradient(top, #7b7f66, #3e4134);
    background-image: linear-gradient(#7b7f66, #3e4134);
    border-color: #3e4134 #3e4134 hsl(70, 11%, 17.5%);
    color: #fff !important;
    border: none;
    border-radius:          0px 0px 0px 15px !important;
    -moz-border-radius:     0px 0px 0px 15px !important;
    -webkit-border-radius:  0px 0px 0px 15px !important;
    /*z-index: 99;*/
}


@media (max-width: 768px) {
    .box_botoes{
        margin-top: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .box_quero {
        position: inherit;
        width: 45%;
        border-radius:          0px 0px 15px 0px !important;
        -moz-border-radius:     0px 0px 15px 0px !important;
        -webkit-border-radius:  0px 0px 15px 0px !important;
    }
    .box_valor {
        position: relative;
        width: 45%;
        border-radius:          0px 0px 0px 15px !important;
        -moz-border-radius:     0px 0px 0px 15px !important;
        -webkit-border-radius:  0px 0px 0px 15px !important;
    }

    .box_descricao {
        width: 100%;
        font-size: 14px;
    }

    .box_valor_promocao {
        position: absolute;
        top: -3px;
        right: 4px;
        z-index: 2;
        font-size: 24px;
    }

    .box_destaque {
       right: 0;
    }
}






/* BOTÕES */

.btn-danger {
    background-color: hsl(70, 11%, 23%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7b7f66", endColorstr="#3e4134");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#7b7f66), to(#3e4134));
    background-image: -moz-linear-gradient(top, #7b7f66, #3e4134);
    background-image: -ms-linear-gradient(top, #7b7f66, #3e4134);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7b7f66), color-stop(100%, #3e4134));
    background-image: -webkit-linear-gradient(top, #7b7f66, #3e4134);
    background-image: -o-linear-gradient(top, #7b7f66, #3e4134);
    background-image: linear-gradient(#7b7f66, #3e4134);
    border-color: #3e4134 #3e4134 hsl(70, 11%, 17.5%);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.33);
    -webkit-font-smoothing: antialiased;
}

.btn-danger:hover
{
    border-color:transparent;
}
.btn-info {
    background-color: hsl(195, 79%, 43%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#56c5eb", endColorstr="#1798c4");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#56c5eb), to(#1798c4));
    background-image: -moz-linear-gradient(top, #56c5eb, #1798c4);
    background-image: -ms-linear-gradient(top, #56c5eb, #1798c4);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #56c5eb), color-stop(100%, #1798c4));
    background-image: -webkit-linear-gradient(top, #56c5eb, #1798c4);
    background-image: -o-linear-gradient(top, #56c5eb, #1798c4);
    background-image: linear-gradient(#56c5eb, #1798c4);
    border-color: #1798c4 #1798c4 hsl(195, 79%, 38%);
    color: #fff !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.33);
    -webkit-font-smoothing: antialiased;
}

.btn-primary {
    background-color: hsl(195, 60%, 35%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2d95b7", endColorstr="#23748e");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#2d95b7), to(#23748e));
    background-image: -moz-linear-gradient(top, #2d95b7, #23748e);
    background-image: -ms-linear-gradient(top, #2d95b7, #23748e);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2d95b7), color-stop(100%, #23748e));
    background-image: -webkit-linear-gradient(top, #2d95b7, #23748e);
    background-image: -o-linear-gradient(top, #2d95b7, #23748e);
    background-image: linear-gradient(#2d95b7, #23748e);
    border-color: #23748e #23748e hsl(195, 60%, 32.5%);
    color: #fff !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.16);
    -webkit-font-smoothing: antialiased;
}

.btn-success {
    background-color: hsl(110, 56%, 30%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4fc638", endColorstr="#2f7721");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#4fc638), to(#2f7721));
    background-image: -moz-linear-gradient(top, #4fc638, #2f7721);
    background-image: -ms-linear-gradient(top, #4fc638, #2f7721);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4fc638), color-stop(100%, #2f7721));
    background-image: -webkit-linear-gradient(top, #4fc638, #2f7721);
    background-image: -o-linear-gradient(top, #4fc638, #2f7721);
    background-image: linear-gradient(#4fc638, #2f7721);
    border-color: #2f7721 #2f7721 hsl(110, 56%, 25%);
    color: #fff !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
    -webkit-font-smoothing: antialiased;
}

.btn-warning {
    background-color: hsl(51, 82%, 43%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7a600", endColorstr="#785924");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#f7a600), to(#785924));
    background-image: -moz-linear-gradient(top, #f7a600, #785924);
    background-image: -ms-linear-gradient(top, #f7a600, #785924);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7a600), color-stop(100%, #785924));
    background-image: -webkit-linear-gradient(top, #f7a600, #785924);
    background-image: -o-linear-gradient(top, #f7a600, #785924);
    background-image: linear-gradient(#f7a600, #785924);
    border-color: #785924 #785924 hsl(40, 80%, 35%);
    color: #e9e9e8 !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.33);
    -webkit-font-smoothing: antialiased;

}

.btn-default {
    background-color: hsl(51, 82%, 43%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7a600", endColorstr="#785924");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#f7a600), to(#785924));
    background-image: -moz-linear-gradient(top, #f7a600, #785924);
    background-image: -ms-linear-gradient(top, #f7a600, #785924);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7a600), color-stop(100%, #785924));
    background-image: -webkit-linear-gradient(top, #f7a600, #785924);
    background-image: -o-linear-gradient(top, #f7a600, #785924);
    background-image: linear-gradient(#f7a600, #785924);
    border-color: #785924 #785924 hsl(40, 80%, 35%);

    color: #e9e9e8 !important;

    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.36);
    -webkit-font-smoothing: antialiased;
}


#voltar_topo{
    display: none;
    opacity: 0.95;
    padding: 4px;
    cursor: pointer;
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 1049;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 40px;
    text-align: center;
    color: white;

    background-color: hsl(51, 82%, 43%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7a600", endColorstr="#785924");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#f7a600), to(#785924));
    background-image: -moz-linear-gradient(top, #f7a600, #785924);
    background-image: -ms-linear-gradient(top, #f7a600, #785924);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7a600), color-stop(100%, #785924));
    background-image: -webkit-linear-gradient(top, #f7a600, #785924);
    background-image: -o-linear-gradient(top, #f7a600, #785924);
    background-image: linear-gradient(#f7a600, #785924);
    border-color: #785924 #785924 hsl(40, 80%, 35%);

    /*
    background-color: hsl(0, 69%, 22%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b42121", endColorstr="#5e1111");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#b42121), to(#5e1111));
    background-image: -moz-linear-gradient(top, #b42121, #5e1111);
    background-image: -ms-linear-gradient(top, #b42121, #5e1111);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b42121), color-stop(100%, #5e1111));
    background-image: -webkit-linear-gradient(top, #b42121, #5e1111);
    background-image: -o-linear-gradient(top, #b42121, #5e1111);
    background-image: linear-gradient(#b42121, #5e1111);
    border-color: #5e1111 #5e1111 hsl(0, 69%, 17%);*/
    color: #fff !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
    -webkit-font-smoothing: antialiased;


}


@media (max-width: 768px) {

    .modal-full {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }

    .modal-full .modal-dialog {
        position: fixed;
        margin: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }

}

@media (min-width: 769px) {
    .modal-full {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 480px;
        left: calc((100vw - 480px)/2);
        overflow: hidden;
    }

    .modal-full .modal-dialog {
        position: fixed;
        margin: 0;
        width: 480px;
        height: 100%;
        padding: 0;
    }
}

.modal-full .modal-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.modal-full .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45px;
    padding: 5px;
    background: #000000;
    border: 0;
    font-size: 26px;
    line-height: 35px;
    width: 100%;
    color: white;
    text-align: center;
}

.modal-full .modal-body {
    position: absolute;
    top: 45px;
    bottom: 125px;
    width: 100%;
    padding: 0;
    overflow: auto;
}

.modal-full .modal-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 125px;
    padding: 5px;
    background: #000000;
    color: white;
}

.modal-content {
    overflow: hidden;
}

.modal-full .modal-body-no-footer {
    position: absolute;
    top: 45px;
    bottom: 0;
    width: 100%;
    padding: 5px;
    overflow: auto;
}

.modal-header_personalizado {
    background: #fdb73d;
    color: white;
    text-align: center;
    font-size: 24px;
    padding: 2px;
    height: 40px;
    line-height: 36px;
}

.btn-facebook {
    background-color: hsl(214, 37%, 28%) !important;
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7a99c1", endColorstr="#2c4361");
    background-image: -khtml-gradient(linear, left top, left bottom, from(#7a99c1), to(#2c4361));
    background-image: -moz-linear-gradient(top, #7a99c1, #2c4361);
    background-image: -ms-linear-gradient(top, #7a99c1, #2c4361);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7a99c1), color-stop(100%, #2c4361));
    background-image: -webkit-linear-gradient(top, #7a99c1, #2c4361);
    background-image: -o-linear-gradient(top, #7a99c1, #2c4361);
    background-image: linear-gradient(#7a99c1, #2c4361);
    border-color: #2c4361 #2c4361 hsl(214, 37%, 19.5%);
    color: #fff !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.56);
    -webkit-font-smoothing: antialiased;
}
.titulo_login {
    font-size: 18px;
    text-align: center;
    color: gray;
}

.form-group {
    position: relative;
}

#item_obs::placeholder {
    color: #dbdbdb;
}

#item_obs:hover::placeholder {
    color: #919191;
}

.m_place_holder {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 12px;
    color: #ccc;
    z-index: 3;
}
.pedir_qtd{
    font-size: 10px;
}

.sub_nome {
    font-style: italic;
    font-weight: normal;
}


.formulario_cliente div[class^='col-'] {
    padding: 0 5px;
}

.formulario_cliente label{
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: bold;
}

.formulario_cliente .form-group {
    margin-bottom: 0px;
}

.formulario_cliente input,.formulario_cliente select,.formulario_cliente textarea {
    color: #000000;
    padding: 2px 5px;
}

.formulario_cliente input::-webkit-input-placeholder, .formulario_cliente textarea::-webkit-input-placeholder {
    color: #8c9297;
    font-size: 14px;
    line-height: 14px;
}

.formulario_cliente input:-moz-placeholder,.formulario_cliente textarea:-moz-placeholder {
    color: #8c9297;
    font-size: 14px;
    line-height: 14px;
}

.formulario_cliente input::-moz-placeholder,.formulario_cliente textarea::-moz-placeholder {
    color: #8c9297;
    font-size: 14px;
    line-height: 14px;
}

.formulario_cliente input:-ms-input-placeholder,.formulario_cliente textarea:-ms-input-placeholder {
    color: #8c9297;
    font-size: 10px;
    line-height: 10px;
}

.box_descricao_interno {
    text-align: left;
    color: black;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    display: inline-block;
}

.box_opcoes {
    color: black;
    background: transparent;
    border: 1px solid #f4f4f4;
    box-shadow: 1px 1px 5px #655c5c;
    font-size: 16px;
    font-weight: normal;
    width: 100%;
    display: inline-block;
    padding: 5px 25px 5px 25px;
    margin-top: 5px;
    border-radius: 5px;
}

.box_opcoes_box_text_area {
    position: relative;
    border: 1px solid #f4f4f4;
    box-shadow: 1px 1px 5px #655c5c;
    border-radius: 5px;
    margin-bottom: 5px;
}

.box_opcoes_box_text_area_ballon {
    position: absolute;
    top: 0px;
    right: 2px;
}

.box_opcoes_text_area {
    width: 100%;
    border: none;
    resize: none;
    outline: none;
    height: 50px;
    min-width: 280px;
    padding: 5px 30px 5px 5px;
    font-size: 14px;
}



.titulo_opcao {
    text-align: center;
    font-size: 26px;
    line-height: 26px;
    width: 100%;
    display: inline-block;

}

.box_opcoes_qtd_valor {
    height: 50px;
    padding: 5px 25px 5px 25px;
    width: 100%;
    border: 1px solid #f4f4f4;
    box-shadow: 1px 1px 5px #655c5c;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    position: relative;
}

.box_opcoes_qtd_valor_help {
    font-size: 10px;
    line-height: 10px;
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {

    .box_opcoes_qtd_valor_help {
        font-size: 8px;
    }
}

.box_opcoes_mais_menos {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-block;
}

.box_adicionais_mais_menos {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: inline-block;

}



.box_opcoes_qtd {
    width: 40px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    height: 32px;
    line-height: 32px;
}

.box_adicionais_qtd {
    width: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
}

.box_opcoes_valor {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
    font-weight: bold;
    font-size: 20px;
}

.lista_adicionais_item {
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
}

.lista_adicionais_item_desabilitado{
    filter: grayscale(100%);
    opacity: 0.5;
}


.lista_adicionais_descricao_item {
    width: calc(100% - 140px);
    margin-left: 10px;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:inline-block;
    white-space: nowrap;
}

.lista_adicionais_descricao_item_sem_valor {
    width: calc(100% - 70px);
    margin-left: 10px;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:inline-block;
    white-space: nowrap;
}

.lista_adicionais_controle_qtd{
    width: 70px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.lista_adicionais_descricao_item_valor {
    margin-left: 5px;
    font-size: 12px;
    text-align: right;
    width: 70px
}




@media (max-width: 768px) {
    #modal-produto .box_tem_foto {
        display: none;
    }

    #modal-produto .modal-body {
        padding: 5px;
    }

    .box_opcoes {
       padding: 5px;
    }

    .box_opcoes_qtd_valor {
        padding: 5px;
    }
}

.linha_opcao {
    display: flex;
    height: 26px;
    justify-content: flex-start;
    align-items: center;
    cursor:pointer;
    padding-left: 5px;
}

.okgrupo {
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 24px !important;
    color: #eae7e7;
}

.okgrupo_ok {
    color: #78b34e;
}

.grupovezes {
    position: absolute;
    top: 2px;
    left: 5px;
    font-size: 12px !important;
    color: #000000;
    font-weight: bold;
    display: none;
}

.grupovezes_x {
    display: inline-block;
}

.linha_opcao_selecionada {
    color:#000000;
}

.linha_opcao_nao_selecionada {
    color:#000000;
}

.radio_custom {
    font-size: 22px !important;
}

.radio_custom_texto {
    width: calc(100% - 100px);
    padding-left: 5px;
}

@media (max-width: 768px) {
    .radio_custom_texto {
        font-size: 12px;
    }
}

.radio_custom_valor {
    width: 70px;
    font-weight: bold;
    text-align: right;
}

.modal-centered {
    text-align: center;
    padding: 0!important;
}

.modal-centered:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-centered .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

#erro_inclusao {
    width: 100%;
    font-size: 20px;
    color:#000000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#erro_inclusao_ad {
    text-align: center;
    width: 100%;
    font-size: 20px;
    color:#000000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media (max-width: 991px) {

    #erro_inclusao {
        font-size: 16px;
    }

    #erro_inclusao_ad {
        font-size: 16px;
    }

}

@media (max-width: 767px) {

    #erro_inclusao {
        font-size: 12px;
    }

    #erro_inclusao_ad {
        font-size: 12px;
    }

}

#imagem-ampliada{
    border-radius: 5px;
    border: none;
    background: white;
    display:inline-block;
    padding: 5px;
    max-height: 90vh;
}


/*
===================================
		CASE DOS INPUTS
===================================
*/
input.Maiusculas
{
    text-transform: uppercase;
}

input.Minusculas
{
    text-transform: lowercase;
}

.facebook_miniatura {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 7px;
    top: 1px;
}

.checkbox_p {
    width: 30px;
    height: 30px;
}

.container_minha_conta div[class^='col-'] {
    padding: 0 5px;
}


.titulos_minha_conta{
    /* width: 100%; */
    font-weight: normal;
    font-size: 16px;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
    cursor: pointer;
    background: #000000;
    line-height: 20px;
    height: 42px;
    display: flex;
    /* letter-spacing: 2px; */
    align-items: center;
    justify-content: center;
}
.titulos_minha_conta .fad {

    font-size: 28px;
    margin-right: 5px;

}

.titulos_minha_conta .fecha_abre_p {
    color: white;
}

.box_itens {
    display: inline-block;
    width: 100%;
    padding: 5px 5px;
}

.titulos_minha_conta_selecionado {
    color: #FFFB32;
}

.cabecalho_titulos_minha_conta div[class^='col-'] {
    padding: 0 5px;
}

@media (max-width: 768px) {
    .box_itens .input-lg {
        height: 34px !important;
    }

    .box_itens label {
       margin-bottom: 0 !important;
    }

    .box_itens .form-group {
        margin-bottom: 5px;
    }

    .cabecalho_titulos_minha_conta div[class^='col-'] {
        padding: 0;
    }

    .titulos_minha_conta {
        border-radius: 0;
        margin-bottom: 0;
        font-size: 14px;
        height: 36px;
    }

    .titulos_minha_conta .fad {
        font-size: 26px;
        margin-right: 5px;
    }

    .cabecalho_titulos_minha_conta {
        position: fixed;
        top: 80px;
        z-index: 2;
    }

    .container_minha_conta {
        padding-top: 65px;
    }

}

.tipo_endereco {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 0;
}


.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom:5px;
    margin-top:5px;
    color: #898989;
    font-weight:bold;
    font-size: 18px;
}

.strike > span {
    position: relative;
    display: inline-block;
}

.strike > span:before,
.strike > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: #dfdfdf;
}

.strike > span:before {
    right: 100%;
    margin-right: 15px;
}

.strike > span:after {
    left: 100%;
    margin-left: 15px;
}


.box_enderecos {
    width: 100%;
    background: white;
    min-height: 20px;
    border: 1px solid gray;
    box-shadow: 1px 1px 5px #968d8d;
    padding: 5px;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #3e3e3e;
    font-size: 12px;
    position: relative;
    cursor: pointer;
}

.box_enderecos:hover{
    color: #000000 !important;
}

.box_enderecos_tipo_endereco{
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items:center;
    text-shadow: 1px 1px 3px #e4e4e4;
    cursor: pointer;
}

.endereco_favorito {
    font-size: 18px !important;
    margin-right: 5px;
    display: none !important;
}

.endereco_favorito_selecionado {
    color: #000000;
    text-shadow: 0 0 5px #fff900;
    display: inline-block !important;
}

.box_enderecos_bt_excluir {
    position: absolute;
    top:-4px;
    right:2px;
    font-size: 22px;
    color: gray;
    cursor: pointer;
    transition: font 3.3s ease;
}

.box_enderecos_bt_excluir :hover {
    color: red;
    font-size: 32px;
    text-shadow: 1px 1px 4px black;
}
@media (max-width: 768px) {

    .box_enderecos {
        font-size: 12px;
    }

    .box_enderecos_tipo_endereco {
        font-size: 14px;
    }

    .pedido_status {
        height: auto !important;
    }

}

.container_carrinho div[class^='col-'] {
    padding: 0 15px;
}

.container_carrinho .tamanhominimo {
    min-height: calc(100vh - 230px);
    border-right: 1px solid #ededed;
}


.container_carrinho div[class^='col-']:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .container_carrinho .tamanhominimo {
        min-height: 0;
        border-right: none;
    }

    .container_carrinho .strike {
        margin-top: 15px;
    }


}

.radio_p {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.radio_p15 {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.label_flex_p {
    color: gray;
    margin-top: 2px;
    font-size: 16px;
    margin-left: 5px;
    line-height: 12px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

/*loader sending referencia http://cssload.net/en/spinners/7*/

.cssload-loader {
    width: 120px;
    height: 120px;
    line-height: 120px;
    margin: 10px auto;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    -o-text-transform: uppercase;
    -ms-text-transform: uppercase;
    -webkit-text-transform: uppercase;
    -moz-text-transform: uppercase;
}

.cssload-loader:before,
.cssload-loader:after {
    opacity: 0;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    content: "\0020";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 97px;
    border: 5px solid rgb(253,235,68);
    box-shadow: 0 0 49px rgb(187,36,41), inset 0 0 49px rgb(187,36,41);
    -o-box-shadow: 0 0 49px rgb(187,36,41), inset 0 0 49px rgb(187,36,41);
    -ms-box-shadow: 0 0 49px rgb(187,36,41), inset 0 0 49px rgb(187,36,41);
    -webkit-box-shadow: 0 0 49px rgb(187,36,41), inset 0 0 49px rgb(187,36,41);
    -moz-box-shadow: 0 0 49px rgb(187,36,41), inset 0 0 49px rgb(187,36,41);
}

.cssload-loader:after {
    z-index: 1;
    animation: cssload-gogoloader 2.3s infinite 1.15s;
    -o-animation: cssload-gogoloader 2.3s infinite 1.15s;
    -ms-animation: cssload-gogoloader 2.3s infinite 1.15s;
    -webkit-animation: cssload-gogoloader 2.3s infinite 1.15s;
    -moz-animation: cssload-gogoloader 2.3s infinite 1.15s;
}

.cssload-loader:before {
    z-index: 2;
    animation: cssload-gogoloader 2.3s infinite;
    -o-animation: cssload-gogoloader 2.3s infinite;
    -ms-animation: cssload-gogoloader 2.3s infinite;
    -webkit-animation: cssload-gogoloader 2.3s infinite;
    -moz-animation: cssload-gogoloader 2.3s infinite;
}



@keyframes cssload-gogoloader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes cssload-gogoloader {
    0% {
        -o-transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -o-transform: scale(1);
        opacity: 0;
    }
}

@-ms-keyframes cssload-gogoloader {
    0% {
        -ms-transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -ms-transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes cssload-gogoloader {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes cssload-gogoloader {
    0% {
        -moz-transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -moz-transform: scale(1);
        opacity: 0;
    }
}

/*circle*/

.cssload-clock{
    border-radius: 50%;
    border: 4px solid rgb(187,36,41);
    height: 115px;
    width: 115px;
    position: relative;
    left: 35%;
    left: calc(50% - 59px);
    left: -o-calc(50% - 59px);
    left: -ms-calc(50% - 59px);
    left: -webkit-calc(50% - 59px);
    left: -moz-calc(50% - 59px);
}
.cssload-clock:after{
    content: "";
    position: absolute;
    background-color: rgb(255,251,0);
    top:3px;
    left: 48%;
    height: 52px;
    width: 6px;
    border-radius: 7px;
    transform-origin: 50% 97%;
    -o-transform-origin: 50% 97%;
    -ms-transform-origin: 50% 97%;
    -webkit-transform-origin: 50% 97%;
    -moz-transform-origin: 50% 97%;
    animation: grdAiguille 2.3s linear infinite;
    -o-animation: grdAiguille 2.3s linear infinite;
    -ms-animation: grdAiguille 2.3s linear infinite;
    -webkit-animation: grdAiguille 2.3s linear infinite;
    -moz-animation: grdAiguille 2.3s linear infinite;
}



.cssload-clock:before{
    content: "";
    position: absolute;
    background-color: rgb(255,251,0);
    top:8px;
    left: 48%;
    height: 48px;
    width: 6px;
    border-radius: 7px;
    transform-origin: 50% 94%;
    -o-transform-origin: 50% 94%;
    -ms-transform-origin: 50% 94%;
    -webkit-transform-origin: 50% 94%;
    -moz-transform-origin: 50% 94%;
    animation: ptAiguille 13.8s linear infinite;
    -o-animation: ptAiguille 13.8s linear infinite;
    -ms-animation: ptAiguille 13.8s linear infinite;
    -webkit-animation: ptAiguille 13.8s linear infinite;
    -moz-animation: ptAiguille 13.8s linear infinite;
}



@keyframes grdAiguille{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

@-o-keyframes grdAiguille{
    0%{-o-transform:rotate(0deg);}
    100%{-o-transform:rotate(360deg);}
}

@-ms-keyframes grdAiguille{
    0%{-ms-transform:rotate(0deg);}
    100%{-ms-transform:rotate(360deg);}
}

@-webkit-keyframes grdAiguille{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}

@-moz-keyframes grdAiguille{
    0%{-moz-transform:rotate(0deg);}
    100%{-moz-transform:rotate(360deg);}
}

@keyframes ptAiguille{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

@-o-keyframes ptAiguille{
    0%{-o-transform:rotate(0deg);}
    100%{-o-transform:rotate(360deg);}
}

@-ms-keyframes ptAiguille{
    0%{-ms-transform:rotate(0deg);}
    100%{-ms-transform:rotate(360deg);}
}

@-webkit-keyframes ptAiguille{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}

@-moz-keyframes ptAiguille{
    0%{-moz-transform:rotate(0deg);}
    100%{-moz-transform:rotate(360deg);}
}

/* fim circle */


.scroll-right {
    overflow: hidden;
    position: relative;
    width: 115px;
    height: 115px;
    border: 4px solid #000000;
    border-radius: 50%;
    z-index: 1;
    left: 35%;
    left: calc(50% - 59px);
    left: -o-calc(50% - 59px);
    left: -ms-calc(50% - 59px);
    left: -webkit-calc(50% - 59px);
    left: -moz-calc(50% - 59px);
}
.scroll-right .inner {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    top:20px;
    line-height: 50px;
    text-align: center;
    /* Starting position */
    -moz-transform:translateX(-100%);
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%);
    /* Apply animation to this element */
    -moz-animation: scroll-right 2s linear infinite;
    -webkit-animation: scroll-right 2s linear infinite;
    animation: scroll-right 2s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-right {
    0%   { -moz-transform: translateX(-100%); }
    100% { -moz-transform: translateX(100%); }
}
@-webkit-keyframes scroll-right {
    0%   { -webkit-transform: translateX(-100%); }
    100% { -webkit-transform: translateX(100%); }
}
@keyframes scroll-right {
    0%   {
        -moz-transform: translateX(-100%); /* Browser bug fix */
        -webkit-transform: translateX(-100%); /* Browser bug fix */
        transform: translateX(-100%);
    }
    100% {
        -moz-transform: translateX(100%); /* Browser bug fix */
        -webkit-transform: translateX(100%); /* Browser bug fix */
        transform: translateX(100%);
    }
}

/*praparando*/

.pedido_loader_1 {
    overflow: hidden;
    position: relative;
    width: 115px;
    height: 115px;
    border: 4px solid #000000;
    border-radius: 50%;
    z-index: 1;
    left: 35%;
    left: calc(50% - 59px);
    left: -o-calc(50% - 59px);
    left: -ms-calc(50% - 59px);
    left: -webkit-calc(50% - 59px);
    left: -moz-calc(50% - 59px);

}

.pedido_loader_6 {
    overflow: hidden;
    position: relative;
    width: 115px;
    height: 115px;
    border: 4px solid green;
    border-radius: 50%;
    z-index: 1;
    left: 35%;
    left: calc(50% - 59px);
    left: -o-calc(50% - 59px);
    left: -ms-calc(50% - 59px);
    left: -webkit-calc(50% - 59px);
    left: -moz-calc(50% - 59px);

}

.pedido_loader_4 {
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    width: 115px;
    height: 115px;
    border: 4px solid #000000;
    border-radius: 50%;
    z-index: 1;
    left: 35%;
    left: calc(50% - 59px);
    left: -o-calc(50% - 59px);
    left: -ms-calc(50% - 59px);
    left: -webkit-calc(50% - 59px);
    left: -moz-calc(50% - 59px);
}

.pedido_loader_5 {
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    width: 115px;
    height: 115px;
    border: 4px solid #000000;
    border-radius: 50%;
    z-index: 1;
    left: 35%;
    left: calc(50% - 59px);
    left: -o-calc(50% - 59px);
    left: -ms-calc(50% - 59px);
    left: -webkit-calc(50% - 59px);
    left: -moz-calc(50% - 59px);
}

.preparando-animation{
    position: absolute;
    top:19px;
    left:23px;
    line-height: 50px;
    text-align: center;
    animation: preparandoFrames linear 0.8s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: preparandoFrames linear 0.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: preparandoFrames linear 0.8s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: preparandoFrames linear 0.8s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: preparandoFrames linear 0.8s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes preparandoFrames{
    0% {
        transform:  translate(0px,0px)  ;
    }
    15% {
        transform:  translate(0px,-2px)  ;
    }
    30% {
        transform:  translate(0px,0px)  ;
    }
    45% {
        transform:  translate(0px,-1px)  ;
    }
    60% {
        transform:  translate(0px,0px)  ;
    }
    75% {
        transform:  translate(0px,-1px)  ;
    }
    100% {
        transform:  translate(0px,0px)  ;
    }
}

@-moz-keyframes preparandoFrames{
    0% {
        -moz-transform:  translate(0px,0px)  ;
    }
    15% {
        -moz-transform:  translate(0px,-2px)  ;
    }
    30% {
        -moz-transform:  translate(0px,0px)  ;
    }
    45% {
        -moz-transform:  translate(0px,-1px)  ;
    }
    60% {
        -moz-transform:  translate(0px,0px)  ;
    }
    75% {
        -moz-transform:  translate(0px,-1px)  ;
    }
    100% {
        -moz-transform:  translate(0px,0px)  ;
    }
}

@-webkit-keyframes preparandoFrames {
    0% {
        -webkit-transform:  translate(0px,0px)  ;
    }
    15% {
        -webkit-transform:  translate(0px,-2px)  ;
    }
    30% {
        -webkit-transform:  translate(0px,0px)  ;
    }
    45% {
        -webkit-transform:  translate(0px,-1px)  ;
    }
    60% {
        -webkit-transform:  translate(0px,0px)  ;
    }
    75% {
        -webkit-transform:  translate(0px,-1px)  ;
    }
    100% {
        -webkit-transform:  translate(0px,0px)  ;
    }
}

@-o-keyframes preparandoFrames {
    0% {
        -o-transform:  translate(0px,0px)  ;
    }
    15% {
        -o-transform:  translate(0px,-2px)  ;
    }
    30% {
        -o-transform:  translate(0px,0px)  ;
    }
    45% {
        -o-transform:  translate(0px,-1px)  ;
    }
    60% {
        -o-transform:  translate(0px,0px)  ;
    }
    75% {
        -o-transform:  translate(0px,-1px)  ;
    }
    100% {
        -o-transform:  translate(0px,0px)  ;
    }
}

@-ms-keyframes preparandoFrames {
    0% {
        -ms-transform:  translate(0px,0px)  ;
    }
    15% {
        -ms-transform:  translate(0px,-2px)  ;
    }
    30% {
        -ms-transform:  translate(0px,0px)  ;
    }
    45% {
        -ms-transform:  translate(0px,-1px)  ;
    }
    60% {
        -ms-transform:  translate(0px,0px)  ;
    }
    75% {
        -ms-transform:  translate(0px,-1px)  ;
    }
    100% {
        -ms-transform:  translate(0px,0px)  ;
    }
}
/*fim preparando*/


.pedido_loader_3 {
    background: url('../img/fundomapa.jpg');
}


.pedido_titulo {
    width: 100%;
    font-size: 14px;
    padding: 0 5px;
    background: #EDEDED;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
    color: #000000;
    height: 35px;
    line-height: 35px;
}

.pedido_titulo[status="Aberto"] {
    background: #d4d4d4;
}

.pedido_titulo.pedito_titulo_destaque {
    background: #fdb73d !important;
}

.box_pedido {
    margin-top: 5px;
    width: 100%;
    display: inline-block;
}

.status_pedido {
    font-weight: bold;
}

.data_pedido {
    font-weight: bold;
}

.texto_descricao_p {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
}

.texto_descricao_p_titulo {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.texto_descricao_p_titulo_adicionais {
    font-style: italic;
    color: brown;
    margin-left: 10px;
}

.texto_descricao_p_texto_opcao {

}

.texto_descricao_p_div_opcao_obs {
    margin-top: -2px;
    padding: 0 5px 0 10px;
    font-size: 10px;
    color: gray;
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.texto_descricao_p_texto_obs {
    font-style: italic;
}

.texto_descricao_p_valor {
    font-size: 11px;
    white-space: nowrap;
}

.texto_descricao_p_valor_adicionais {
    font-style: italic;
    color: brown;
}

.box_pedido_box {
    border: 1px solid #ededed;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.box_contato_loja {
    border: 1px solid #ededed;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
    padding: 0;
    font-size: 14px;
}

.box_contato_loja .fad {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.box_contato_loja_tel {
    margin-right: 15px;
}

.minha_conta_carrinho_resumo_texto {
    width: 100%;
    display: inline-block;
    line-height: 14px;
    font-size: 12px;
}

.minha_contacarrinho_resumo_texto .fad {
    width: 13px;
    font-size: 10px;

}

.avaliacao_sim {
    font-size:22px !important;
    color:#ffc300;
    cursor:pointer;
    margin: 0 6px;
}

.avaliacao_nao {
    font-size:22px !important;
    color:gray;
    cursor:pointer;
    margin: 0 6px;
}

.box_pedidos_lista_itens{
    padding: 5px;
    min-height: 92px
}

@media (max-width: 480px) {
    .box_pedidos_lista_itens{
        min-height: 1px
    }
}

.pedido_status {
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: none;
    min-height: 50px;
    line-height: 25px;
}

.ainda_nao_tem_pedido{
    width: 100%;
    font-size: 18px;
    text-align: center;
}

.loja_nao_atende {
    background: #000000;
    width: calc(100% - 4px);
    font-size: 14px;
    padding: 10px 2px;
    border-radius: 10px;
    color: white;
    text-align: center;
    position: relative;
    margin: 2px;
}

.loja_fechada {
    background: #000000;
    width: calc(100% - 4px);
    font-size: 18px;
    padding: 10px 2px;
    border-radius: 10px;
    color: white;
    text-align: center;
    position: relative;
    margin: 2px;
}

.loja_on_line {
   color: white !important;
}

.loja_off_line {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}


.retira_loja_pisca {
  -webkit-animation: retira_loja_pisca 1s infinite;  /* Safari 4+ */
  -moz-animation: retira_loja_pisca 1s infinite;  /* Fx 5+ */
  -o-animation: retira_loja_pisca 1s infinite;  /* Opera 12+ */
  animation: retira_loja_pisca 1s infinite;  /* IE 10+, Fx 29+ */
}

@-webkit-keyframes retira_loja_pisca {
  0%, 49% {
    background-color: rgb(230, 182, 61);
      color:black;
  }
  50%, 100% {
    background-color: #e50000;
      color:white;
  }
}