*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html, body{
    height: 100%;
}

header{
    background-color: rgba(255, 0, 0, 0.5);
    height: 80px;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0px;
    z-index: 99999;
}

header .counter{
    display: flex;
    align-items: center;
    width: 200px;
    font-weight: bold;
    color: white;
    font-size: 3rem;
}

header .counter div{
    display: flex;
}

header .header_title{
    color: white;
    fill: white;
    display: flex;
    align-items: center;
}

header .header_title svg{
    margin-right:20px;
    margin-left:20px;
    min-width: 40px;
    min-height: 40px;
}

header .header_title p{
    margin-bottom:0px;
}

main{
    margin-top: 100px;
}

main .banner{
    background: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    width: 800px;
    height: 340px;
    border-radius: 8px;
}

#languages{
    height: 30px;
    /* width: 120px; */
    background-color: white;
    border: 0;
    outline: 0;
    border-radius: 8px;
}

.form-select{
    font-size: 0.75rem;
}

.form-select option{
    font-size: 1rem;
}

#cvv{
    display: inline-block;
    width: 80px;
}

form{
    width: 100%;
    max-width: 700px;
    margin: 20px auto 0px auto;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 1rem 2%;

}

.form_item{
    display: flex;
    align-items: center;
}

.form_item_img{
    width: 92px;
}

.form_item_text{
    margin-left:10px;
    line-height: 1.2;
}

.form_item_text h1{
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 700;
}

.form_item_text p{
    font-size: 1.25rem;
    margin-bottom: 0;
    color: #355cc0;
    font-weight: 700;
}

.form_item_text small{
    font-size: 0.75rem;
    margin-bottom: 0;
    font-weight: 400;
}

.form-label{
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-control{
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 400;
}

.form-control::placeholder{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
    color: #ccc;
}

.cupom_collapse{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.25rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #c9ced4;
}

.cupom_collapse svg{
    width: 21px;
    height: 21px;
}

.collapsing{
    transition: all 0.6s;
}

.collapse_content{
    display: flex;
    padding: 1rem 2%;
    border-bottom: 1px solid #c9ced4;
    border-left: 1px solid #c9ced4;
    border-right: 1px solid #c9ced4;
}

.collapse_content button{
    margin-left: 10px;
}

.payment_method_box{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height:60px;
    border: 1px solid #c9ced4;
    cursor: pointer;
    padding: 1rem;
}

.payment_method_box svg{
    min-width: 23px;
    min-height: 20px;
}

.payment_method_box:hover{
    border: 1px solid green;
}

.payment_method_box p{
    font-size: 0.75rem;
    margin: 0px 0px 0px 5px;
    display: inline-block;
    color: #797781;
}

.payment_method_box.active{
    background: #ebf0ff;
    border: 1px solid #355cc0;
}

.payment_method_box.active p{
    color: #355cc0;
}

.credit_card_payment{
    border: 1px solid #e6e9ed;
    padding: 1rem 2%;
}

.performance_box{
    border: 3px #ff1900;
    border-style: dashed;
    padding: 2rem 0px;
}

.performance_box h2{
    background-color: rgb(240, 243, 247); color: rgb(74, 74, 74);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0px;
    padding: 1rem 0px;
}

.form-check{
    display: flex;
    align-items: center;
}

.form-check input{
    min-width: 16px;
    min-height: 16px;
    margin-right: 10px;
}

.form-check label{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    color: #4a4a4a;
}

.performance_product{
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    border-bottom: 5px solid #e5e5e5;
    padding: 1rem 2%;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details h2{
    font-size: 1rem;
    color: #888e95;
}

.purchase_details p{
    font-size: 0.75rem;
}

.pix_payment{
    border: 1px solid #e6e9ed;
    padding: 1rem 2%;
    border-radius: 6px;
}

.pix_payment_box{
    padding: 1rem 0.5rem;
    border: 1px solid #e6e9ed;
    border-radius: 6px;
    height: 100%;
}

.pix_payment_box h2{
    font-size: 1rem;
    font-weight: 700;
}

.pix_payment_box p{
    font-size: 0.75rem;
}

.paypal-button-text{
    text-shadow: 1px 1px 1px black;
}

.footer{
    margin-top: 30px;
}
.footer p{
    font-size: 0.75rem;
    color: #999999;
}

@media screen and (max-width: 768px){
    header .counter{
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px){
    header{
        position: static;
        flex-direction: column;
        align-items: center;
        height: 100px;
    }

    main{
        margin-top: 30px;
    }

    main .banner{
        height: 250px;
    }

    .form-check label{
        font-size: 14px;
    }

    header .counter{
        justify-content: center;
    }
}

@media screen and (max-width: 400px){
    main .banner{
        height: 180px;
    }
}





