.modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal .content {
    width: 100%; 
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.box-modal {
    border: solid 2px var(--bordo-color) !important;
    border-radius: 1.5em !important;
    max-width: 400px !important;
    margin-bottom: 10px !important;
    background-color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: left !important;
    padding: 10px !important;
}

.btn-fechar-modal{
    width: 95%;
}

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

    .box-modal{
        width: 70%;
    }

}

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

    .box-modal{
        width: 70%;
    }
}

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

    .box-modal{
        width: 60%;
    }

}

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

    .box-modal{
        width: 50%;
    }
      
}

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

    .box-modal{
        width: 40%;
    }
      
}