.dignioriway-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in-out;
    opacity: 0;
    max-width: 90%;
}

.dignioriway-modal__body {
    display: flex;
    flex-direction: column;
    width: 428px;
    border-radius: 8px;
    border: 4px solid var(--active-color);
    background: var(--background-color);
    padding: 56px 80px;
    text-align: center;
    gap: 10px;
}

.dignioriway-modal__body .close-btn {
    font-size: 50px;
    line-height: 30px;
    font-weight: 300;
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
    transition: transform 0.25s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dignioriway-modal__body .close-btn:hover {
    transform: rotate(180deg);
}

@media screen and (max-width: 480px) {
    .dignioriway-modal__body {
        width: 343px;
        padding: 48px 64px;
        gap: 8px;
    }
}
