
.dialogModal {
    display: flex;
    flex-direction: column;
    margin: auto;
    color: white;
    gap: 0;
    padding: 1rem;
    border: none;
    transition: all 0.5s ease-in-out;
    border-radius: 25px;
    background-image: linear-gradient(rgb(27, 90, 70), rgb(9, 30, 23));
    overflow: hidden;
    max-width: 100% !important;
}

    .dialogModal::backdrop {
        background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7));
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .dialogModal .modalHeader {
        display: flex;
        width: 100%;
        justify-content: center !important;
        justify-self: center !important;
        font-size: 1.7rem;
        margin-bottom: 1rem;
        word-wrap: normal;
    }

    .dialogModal .modalContent {
        display: flex;
        width: 100%;
        font-size: 1.2rem;
        padding: 10px;
        margin-bottom: 1rem;
        justify-content: center;
        word-wrap: normal;
    }

    .dialogModal .closeButtonWrapper {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-self: flex-start;
    }

    .dialogModal .closeButton {
        background-color: transparent;
        outline: none;
        border: none;
        color: #ececec;
        font-size: calc(1vw + .5rem);
        cursor: pointer;
    }

.message-confirm-buttons {
    display: flex;
    margin-top: auto;
    align-self: center;
    margin-bottom: 2rem !important;
}

.message-ok-button {
    font-size: 1.3rem;
    color: #fff;
    min-width: 100px;
    background-color: #2e72aa;
    background-image: linear-gradient(#2f475b, #2e72aa);
    border-radius: 10px;
    border: none;
    padding: .5rem 1.3rem;
    cursor: pointer;
}

    .message-ok-button:hover {
        transform: translateY(-10%);
        transition: all .3s ease;
        box-shadow: 1rem 1rem rgba(5, 5, 5, .5);
    }

.message-yes-button {
    font-size: 1.3rem;
    color: #fff;
    min-width: 100px;
    background-image: linear-gradient(#2a5230, #43ac52);
    border-radius: 10px;
    border: none;
    padding: .5rem 1.3rem;
    cursor: pointer;
    justify-self: end;
}

    .message-yes-button:hover {
        transform: translateY(-10%);
        transition: all .3s ease;
        box-shadow: 1rem 1rem rgba(5, 5, 5, .5);
    }

.message-no-button {
    font-size: 1.3rem;
    color: #fff;
    min-width: 100px;
    background-image: linear-gradient(#4d3030, #cf5151);
    border-radius: 10px;
    border: none;
    padding: .5rem 1.3rem;
    cursor: pointer;
}

    .message-no-button:hover {
        transform: translateY(-10%);
        transition: all .3s ease;
        box-shadow: 1rem 1rem rgba(5, 5, 5, .5);
    }

.dialogModal .message-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-image {
    width: 3rem;
    height: auto;
}

@keyframes close {
    0% {
        top: 0;
    }

    100% {
        top: 120%;
    }
}

@keyframes open {
    0% {
        top: -120%;
    }

    100% {
        top: 0;
    }
}
