.alert-modal {
    border: none;
    padding: 0;
    background: transparent;
    width: 1225px;
    max-width: none;
    position: fixed;
    left: 0;
    margin: 0;
    justify-self: center;
    top: 100vh;
    opacity: 0;
}

.alert-modal[open] {
    animation: slideUpFadeIn 0.5s ease-out forwards;
}

@keyframes slideUpFadeIn {
    0% {
        top: 100vh;
        opacity: 0;
    }
    100% {
        top: calc(100vh - 208px);
        opacity: 1;
    }
}

.alert-modal::backdrop {
    background: transparent;
}

.alert-modal-content {
    display: flex;
    align-items: center;
    background: #252525;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    min-height: 100px;
    width: 100%;
    box-sizing: border-box;
}

.alert-modal-left {
    flex: 0 0 auto;
    margin-right: 24px;
}

.alert-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.alert-modal-center {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    font-family: Lato;
    font-weight: 500;
}

.alert-title {
    font-size: 24px;
    color: #3BCF64;
    margin-bottom: 2px;
}
.alert-message {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.4;
}

.alert-modal-right {
    flex: 0 0 auto;
    margin-left: 20px;
}

.alert-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.alert-close:hover {
    background: #f5f5f5;
    color: #666;
}

@media (max-width: 1600px) {
    .alert-modal {
        width: calc(100% - 18.125%);
    }

    .alert-modal[open] {
        animation: slideUpFadeInMobile 0.5s ease-out forwards;
    }

    @keyframes slideUpFadeInMobile {
        0% {
            top: 125vh;
            opacity: 0;
        }
        100% {
            top: calc(125vh - 180px);
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    .alert-modal {
        width: calc(100% - 48px);
    }

    .alert-modal[open] {
        animation: slideUpFadeInMobile 0.5s ease-out forwards;
    }

    @keyframes slideUpFadeInMobile {
        0% {
            top: 100vh;
            opacity: 0;
        }
        100% {
            top: calc(100vh - 180px);
            opacity: 1;
        }
    }

    .alert-modal-content {
        padding: 15px;
        min-height: 80px;
    }

    .alert-image {
        width: 24px;
        height: 24px;
    }

    .alert-title {
        font-size: 15px;
    }

    .alert-message {
        font-size: 12px;
    }

    .alert-close {
        font-size: 24px;
        width: 16px;
        height: 16px;
    }
}