.box_termo {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: start !important;
    margin-top: 30px !important;
}

.termo_check_box{
    transition: background-color .5s;
    width: 1em;
    height: 1em;
    border: 3px solid var(--bordo-color);
    background-color: white;
    border-radius: 50%;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.termo_check_box:hover{
    cursor: pointer;
}

.termo_check_box:checked{
    background-color: var(--bordo-color);

}

.termo_texto{
    text-align: left;
    text-indent: 1em;
    padding: 0;
    margin: 0;
    color: var(--bordo-color);
}

.termo_texto a{
    cursor: pointer;
    text-decoration: underline 2px;
    color: var(--bordo-color);
    font-weight: 900;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .box_termo{
        width: 70% !important;
    }
    
    .termo_check_box{
        width: 1.2em;
        height: 1em;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px){

    .box_termo{
        width: 70% !important;
    }
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .box_termo{
        width: 60% !important;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .box_termo{
        width: 50% !important;
    }
      
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .box_termo{
        width: 40% !important;
    }
      
}