.box-select{
    border: solid 2px var(--bordo-color) !important;
    border-radius: 2em !important;
    display: grid !important;
    grid-template-columns: 10% 80% 10% !important;
    padding: 20px !important;
    max-width: 400px !important;
    margin-bottom: 10px !important;
    background-color: white !important;
}

.box-descricao {
    display: flex !important;
    flex-direction: column !important;
    justify-content: left !important;
    align-items: start !important;
}

.box-select:hover{
    transition: border .2s;
    border: solid 2px var(--Azul-color);
}

.unidade_check_box{
    transition: background-color .5s !important;
    width: 25px !important;
    height: 25px !important;
    border: 3px solid var(--bordo-color) !important;
    background-color: white !important;
    border-radius: 30% !important;
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.unidade_check_box:hover{
    cursor: pointer !important;
    width: 30px !important;
    height: 30px !important;
}

.unidade_check_box:checked{
    background-color: var(--bordo-color) !important;

}

.label_unidade {
    color: var(--bordo-color); 
    font-size: 1.1rem;
    text-align: left;
    text-indent: 5px;
    font-weight: 900;
    margin: 0;
}

.sub_label_unidade {
    margin: 0;
    color: var(--bordo-color); 
    font-size: 1rem;
    text-indent: 5px;
    text-align: left;
}

.icon_unidade_plus{
    color: var(--bordo-color);
    font-size: 1.5em;
}

.icon_unidade_plus:hover{
    font-size: 1.7em;
    cursor: pointer;
}

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

    .box-select{
        width: 70% !important;
    }
    
}

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

    .box-select{
        width: 70% !important;
    }
    
}

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

    .box-select{
        width: 40% !important;
    }

}

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

    .box-select{
        width: 40% !important;
    }
      
}

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

    .box-select{
        width: 40% !important;
    }
      
}