textarea:focus, input:focus, select:focus{
    outline: none;
}
.input_select{
    color: hsl(0, 0%, 40%);
    background-color: hsl(0, 0%, 100%);
    border-color: hsl(0, 0%, 80%);
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    padding: 6px 8px;
}
.section_title{
    width: 100%;
    display: flex;
    border-bottom: 3px solid #FE9037;
    margin-bottom: 3%;
}
.section_title .title{
    width: 70%;
    height: 40px;
    text-transform: uppercase;
    padding: 1% 0;
    margin-bottom: 1%;
    font-size: 22px;
    margin-left: 10px;
    margin-top: -14px;
}
.section_title .container_filter{
    width: 30%;
    height: 40px;
}
.section_title .container_filter .input_busca{
    max-width: 360px;
    width: 100%;
    height: 40px;
    font-size: 18px;
    padding-left: 1%;
    border: 1px solid #ccc;
}
.a_link{
    background-color: #EEE;
    max-width: 162px;
    width: 100%;
    height: auto;
    margin: 1%;
    border-radius: 3px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.lista_produtos .box_produto{
    /* background-color: green; */
    max-width: 380px;
    width: 100%;
    max-height: 600px;
    height: 100%;
    margin: 1%;
    display: flex;
    flex-direction: row;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-sizing: border-box;
}
.lista_produtos .box_produto .box_produto_img{
    width: 40%;
    height: auto;
    padding: 1%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.lista_produtos .box_produto .box_produto_img img{
    width: 160px;
    height: 160px;
}
.lista_produtos .box_produto .box_produto_info{
    width: 60%;
    height: auto;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.lista_produtos .box_produto .box_produto_info .produto_info{
    margin-bottom: 1%;
}
.lista_produtos .box_produto .box_produto_info .produto_aviso,
.lista_produtos .box_produto .box_produto_info .produto_valor{
    text-align: center;
    font-size: 20px;
    margin: 2% auto;
    font-weight: bold;
}
.lista_produtos .box_produto .box_produto_info .produto_info font,
.lista_produtos .box_produto .box_produto_info .produto_valor font{
    color: #FE9037 !important;
}
.lista_produtos .box_produto .box_produto_info .btn_detalhe_produto{
    background-color: #03548C;
    color: #F5F5F5;
    width: 70%;
    padding: 2% 0;
    margin-top: 10%;
    text-align: center;
    border-radius: 3px;
    text-transform: uppercase;
}
.data_promocao{
    font-size: 12px;
    font-style: italic;
}
.data_promocao font{
    font-size: 14px;
    color: #FE9037;
    font-style: normal;
    font-weight: bold;
}
.detalhe_produto .box_produto{
    /* background-color: green; */
    max-width: 1200px;
    width: 100%;
    max-height: 600px;
    height: auto;
    margin: 1% auto;
    display: flex;
    flex-direction: row;
    border: 2px solid #EEE;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-sizing: border-box;
}
.detalhe_produto .box_produto .box_produto_img{
    /* background-color: red; */
    width: 30%;
    padding: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.detalhe_produto .box_produto .box_produto_img img{
    max-width: 360px;
    width: 100%;
    max-height: 300px;
    height: 100%;
}
.detalhe_produto .box_produto .box_produto_info{
    /* background-color: yellow; */
    width: 70%;
    padding: 1%;
}
.detalhe_produto .box_produto .box_produto_info .produto_aviso,
.detalhe_produto .box_produto .box_produto_info .produto_valor font{
    color: #FE9037 !important;
    font-size: 30px;
    font-weight: bold;
}
.detalhe_produto .box_produto .box_produto_info .box_produto_cod{
    width: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2% 0 !important;
}
.detalhe_produto .box_produto .box_produto_info .box_produto_cod span font,
.detalhe_produto .box_produto .box_produto_info .box_produto_detalhes span font{
    color: #FE9037 !important;
    font-size: 16px;
    font-weight: bold;
}
.detalhe_produto .box_produto .box_produto_info .box_produto_detalhes{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2% 0 !important;
}
.detalhe_produto .box_produto .box_produto_info .box_imagens_adicionais{
    /* background-color: green; */
    width: 100%;
    height: 90px;
    margin-top: 2%;
    margin-bottom: 2%;
}
.detalhe_produto .box_produto .box_produto_info .box_imagens_adicionais .container_imagens{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 1%;
}
.detalhe_produto .box_produto .box_produto_info .box_imagens_adicionais .container_imagens img{
    width: 80px;
    height: 60px;
    margin-right: 1%;
    border-radius: 2px;
}
.box_kits_produtos{
    width: 100%;
    height: auto;
    margin: 1% auto;
    padding: 5px 0;
}
.box_kits_produtos h4{
    text-transform: uppercase;
    padding-bottom: 1%;
    margin-bottom: 2%;
    border-bottom: 3px solid #FE9037;
}
.box_kits_produtos .box_kits{
    width: 33%;
    height: 90px;
    border: 1px solid #ccc;
    margin-bottom: 2%;
    border-radius: 3px;
    display: flex;
}
.box_kits_produtos .box_kits .box_kit_img{
    width: 30%;
    height: 100%;
    padding: 1%;
}
.box_kits_produtos .box_kits .box_kit_img img{
    width: 100%;
    height: 100%;
}
.box_kits_produtos .box_kits .box_kit_info{
    width: 60%;
    height: 100%;
    padding: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box_kits_produtos .box_kits .box_kit_info .div_kit_info{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.box_kits_produtos .box_kits .box_kit_info span{
    font-size: 12px;
}
.box_kits_produtos .box_kits .checkbox_kit{
    width: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box_kits_produtos .box_kits .bg_default_checkbox_kit{
    background-color: #E9E9ED;
}
.box_kits_produtos .box_kits .bg_primary_checkbox_kit{
    background-color: #0060DF;
}

@media all and (max-width: 520px){
    .section_title{
        margin-bottom: 6%;
        display: flex;
        flex-direction: column;
    }
    .section_title .title{
        width: 100%;
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: -2%;
    }
    .section_title .container_filter{
        width: 100%;
    }
    .section_title .container_filter .input_busca{
        height: 30px;
        font-size: 14px;
    }
    .a_link{
        width: 31%;
    }
    .lista_produtos .box_produto .box_produto_img img{
        width: 100px;
        height: 100px;
    }
    .lista_produtos .box_produto .box_produto_info h6{
        font-size: 14px;
    }
    .lista_produtos .box_produto .box_produto_info .produto_aviso,
    .lista_produtos .box_produto .box_produto_info .produto_valor{
        font-size: 15px;
    }
    .lista_produtos .box_produto .box_produto_info .btn_detalhe_produto{
        margin-top: 3%;
        font-size: 12px;
        font-weight: bold;
    }
    .width_sm{
        width: 100% !important;
        margin-bottom: -3% !important;
    }
    .detalhe_produto .box_produto{
        max-height: 900px;
        flex-direction: column;
    }
    .detalhe_produto .box_produto .box_produto_img{
        width: 100%;
        height: 100%;
    }
    .detalhe_produto .box_produto .box_produto_img img{
        max-width: 300px;
        max-height: 280px;
    }
    .detalhe_produto .box_produto .box_produto_info{
        /* background-color: yellow; */
        width: 100%;
        padding: 2%;
        font-size: 14px;
    }
    .detalhe_produto .box_produto .box_produto_info h4{
        font-size: 14px;
    }
    .detalhe_produto .box_produto .box_produto_info .valores{
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    .detalhe_produto .box_produto .box_produto_info .produto_valor{
        width: 50%;
    }
    .detalhe_produto .box_produto .box_produto_info .produto_aviso,
    .detalhe_produto .box_produto .box_produto_info .produto_valor font{
        font-size: 20px;
        margin: 1% 10%;
    }
    .detalhe_produto .box_produto .box_produto_info .box_produto_cod{
        width: 54%;
    }
    .detalhe_produto .box_produto .box_produto_info textarea{
        font-size: 12px;
    }
    .detalhe_produto .box_produto .box_produto_info .box_imagens_adicionais{
        height: 100px;
        display: flex;
        flex-direction: column;    
    }
    .detalhe_produto .box_produto .box_produto_info .box_imagens_adicionais .img_box{ 
        overflow-x: auto;
    }
    .detalhe_produto .box_produto .box_produto_info .box_imagens_adicionais .container_imagens{
        /* background-color: green; */
        width: 1065px;       
    }
    .login_form{
        max-width: 360px;
        width: 100%;
        margin-top: 25% !important;
    }
    .box_kits_produtos .box_kits {
        width: 100%;
        height: 70px;
    }
    .box_kits_produtos .box_kits .box_kit_img {
        width: 25%;
    }
    .box_kits_produtos .box_kits .box_kit_info {
        width: 65%;
    }
    .box_kits_produtos .box_kits .box_kit_info span {
        font-size: 11px;
    }
    .form_flex_perfil{
        display:flex;
        flex-direction: column;
    }
    .form_div_row{
        width: 100%;
        margin-bottom: 5%;
    }
}
