/*------------------componente modal_erro-------------------*/

div.modal#modal_error {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

div#modal_error div.modal-content {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 30%;
    font-weight: bolder;
}

div#modal_error div.modal-header {
    display: flex;
    justify-content: space-between;
    background-color: #404040;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: bold;
}

div#modal_error div.modal-header h1 {
    font-size: 15px;
}

div#modal_error div.modal-header span {
    cursor: pointer;
}

div#modal_error div.modal-body {
    display: flex;
    justify-content: center;
    padding: 30px;
}

div#modal_error div.modal-footer {
    padding: 8px 18px;
    display: flex;
    justify-content: center;
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media(max-width: 720px) {
    /*------------------componente modal_erro-------------------*/
    div#modal_error div.modal-content {
        width: 60%;
    }
}