.box_address {
    width: 49%;
    height: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 2%;
}

.box_address .state {
    width: 10%;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-text-dark);
}

.box_address .text_address {
    width: 50%;
    color: var(--color-text-dark);
}

.box_address .links {
    width: 35%;
}

.box_address .links a {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    text-align: center;
    border-radius: 100px;
    margin: 5px 0;
}


/* RADIO / CHECKBOX */

.imgs_address {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.imgs_address label > input { display: none; }

.imgs_address label { 
    width: 33.333%;
}

.imgs_address label > .cover_img_address {
    width: 85%;
    height: 150px;
    opacity: 0.6;
    margin: 0 auto;
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
}

.imgs_address label > input:checked + .cover_img_address {
    width: 100%;
    height: 200px;
    opacity: 1;
}





/* CSS RESPONSIVE */

@media (max-width: 1100px) {

    .box_address .flex {
        flex-wrap: wrap;
    }

    .box_address .state {
        width: 10%;
    }
    
    .box_address .text_address {
        width: 85%;
    }
    
    .box_address .links {
        width: 100%;
        margin-top: 15px;
    }

}

@media (max-width: 900px) {

    .box_address {
        width: 100%;
        max-width: 700px;
        margin: 2% auto; 
    }
            
    .imgs_address label > .cover_img_address {
        height: 100px;
    }
    
    .imgs_address label > input:checked + .cover_img_address {
        height: 150px;
    }
}

@media (max-width: 400px) {

    .box_address .state {
        width: 15%;
    }

    .box_address .text_address {
        width: 80%;
    }


 }


