
.modal_fda .modal_fda_background {
    width: 100%;
    height: 100vh;
    background-color: #1C2A30D8;
    position: fixed;
    z-index: 999999;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal_fda .modal_fda_outer {
    position: relative;
    /* width: 60rem; */
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(127,145,153,0.26); 
    box-shadow: 5px 5px 15px 5px rgba(127,145,153,0.26);
    padding: 1rem;
}
.modal_fda .modal_fda_close_button {
    cursor: pointer;
    width: 30px;
    margin: 0;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 15px 5px 15px;
}

.modal_fda .modal_fda_close_button h1 {
    margin: 0;
    font-size: 25pt;
    font-weight: 200;
    line-height: normal;
    font-family: 'Courier New', Courier, monospace;
    color: red;
    /* Impedir de selecionar o botão de fechar */
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}
.modal_fda .modal_fda_inner img {
    width: 100%;
    border-radius: 20px;
}
