﻿a.btn {
    width: 200px;
    padding: 18px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0;
    background: #e2525c;
}

.message-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(20, 20, 20, .8);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
    border-radius: 25px;
    background-image: linear-gradient(#15231f, #000);
    z-index: 1000 !important;
}

    .message-wrapper.open {
        opacity: 1;
        visibility: visible;
        transition: all 0.75s ease-in-out;
    }

.modal {
    width: 600px;
    max-width: 95%;
    display: block;
    position: relative;
    top: 50%;
    background: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    border-radius: 25px;
    margin: auto;
    background-image: linear-gradient(#000, #1b5a46);
}

.message-confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.message-button {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.message-ok-button {
    font-size: 20px;
    color: #fff;
    background-color: #2e72aa;
    background-image: linear-gradient(#2f475b, #2e72aa);
    border-radius: 10px;
    border: none;
    width: 100px;
    padding: 1rem 2rem;
    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: 20px;
    color: #fff;
    background-image: linear-gradient(#2a5230, #43ac52);
    border-radius: 10px;
    border: none;
    width: 100px;
    padding: 1rem 2rem;
    cursor: pointer;
}

    .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: 20px;
    color: #fff;
    background-image: linear-gradient(#4d3030, #cf5151);
    border-radius: 10px;
    border: none;
    width: 100px;
    padding: 1rem 2rem;
    cursor: pointer;
}

    .message-no-button:hover {
        transform: translateY(-10%);
        transition: all .3s ease;
        box-shadow: 1rem 1rem rgba(5, 5, 5, .5);
    }

.message-wrapper.open .modal {
    opacity: 1;
    transform: translateY(-75%);
}

.message-head {
    display: flex;
    justify-content: end;
    width: 100%;
    height: 52px;
    padding: 12px 30px;
    overflow: hidden;
    background: #fff;
    color: #000;
    border-radius: 25px 25px 0 0;
    background-color: transparent;
}

.message-title {
    font-size: 48px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.message-message {
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    padding-bottom: 3rem;
    line-height: 1.2;
}

.message-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.message-icon-image {
    width: 96px;
    height: 96px;
}

.btn-close {
    font-size: 28px;
    display: block;
    float: right;
    color: #fff;
}

.message-content {
    padding: 2rem;
    align-content: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 2rem;
}
