/*-------------componente modal_confirmation----------------*/

div.modal.modal-confirmation div {
    box-sizing: border-box;
}

div.modal.modal-confirmation {
    display: none;
    position: fixed;
    z-index: 2;
    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-confirmation div.modal-content {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 40%;
    height: 23%;
}

div.modal-confirmation 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-confirmation div.modal-header h1 {
        font-size: 15px;
    }

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

div.modal-confirmation div.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    height: 100%;
}

div.modal-confirmation div.modal-body img {
    height: 5rem;
    margin-bottom: .7rem;
}

div.modal-confirmation div.modal-body span.message {
    color: #777;
}

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

div.modal-confirmation div.modal-footer button {
    width: 30%;
}

@media(max-width: 720px) {

    div.modal-confirmation div.modal-footer button {
        width: 100%;
        margin-right: 10px;
    }

    div.modal-confirmation div.modal-footer button:last-child {
        margin-right: unset;
    }

    div.modal-confirmation div.modal-content {
        width: 90%;
        height: 35%;
    }
}