#advise-modal .modal-container {
    border-radius: 40px;
}

#advise-modal p.center {
    text-align: center;
}

#advise-modal h3 {
    color: black;
}

#advise-modal .input-div * {
    padding: 0px;
    margin: 0px;
}

.input-div {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto auto;
    grid-gap: 10px;
}

.input-div input {
    text-align: center;
    border-bottom: 3px solid #dedede !important;
}

.plataformal.center {
    text-align: center;
}

@media (max-width: 600px) {
    #advise-modal {
        width: 100%;
        height: 100vh;
        padding: 10%;
        position: fixed;
        background-color: #00000022;
        z-index: 5;
        top: 0px;
    }
    
    #advise-modal .modal-container {
        width: 100%;
        padding: 20px;
        background-color: #fefefe;
    }
    
    #advise-modal .flex {
        display: flex;
        flex-direction: column;
    }    
}

@media (min-width: 600px) {
    #advise-modal {
        width: 100%;
        height: 100vh;
        padding: 10% 15%;
        position: fixed;
        background-color: #00000022;
        z-index: 5;
        top: 0px;
    }
    
    #advise-modal .modal-container {
        width: 100%;
        padding: 20px 60px;
        background-color: #fefefe;
    }
    
    #advise-modal .flex {
        display: flex;
        flex-direction: column;
    }
}
.close-btn-layout * {
    margin: 0px;
    padding: 0px;
}

.close-btn-layout {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: min-content;
    margin-left: auto;
}

.close-btn-layout i {
    font-size: 35px;
}