.alert-wrapper {
    position: absolute;
    width: 344px;
    bottom: 56px;
    left: calc(50% - 172px);
    right: calc(50% - 172px);
    display: flex;
    justify-content: center;
    background-color: #151A18;
    transition: 0.5s all;
    border-radius: 8px;
}

.alert-error, .alert-warning, .alert-success {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    width: 344px;
    color: var(--white);
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.20), 0 6px 30px 0 rgba(0, 0, 0, 0.12), 0 16px 24px 0 rgba(0, 0, 0, 0.14);
    border-radius: 8px;
}

.alert-success {
    background: linear-gradient( to right,rgba(86, 185, 143, 0.4) 0%, rgba(240, 66, 72, 0.00) 100%);
}

.alert-warning {
    background: linear-gradient( to right,rgba(255, 212, 38, 0.4) 0%, rgba(240, 66, 72, 0.00) 100%);
}

.alert-error {
    background: linear-gradient( to right,rgba(240, 66, 72, 0.13) 0%, rgba(240, 66, 72, 0.00) 100%);
}

.alert-image-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--white-10);
}

.error-icon, .warning-icon, .success-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
}

.error-icon {
    background: url("../../assets/icons/alert_error.svg") center / contain no-repeat;
}

.warning-icon {
    background: url("../../assets/icons/alert_warning.svg") center / contain no-repeat;
}

.success-icon {
    background: url("../../assets/icons/alert_success.svg") center / contain no-repeat;
}

.alert-message-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-title {
    font-size: 20px;
}

.alert-text {
    font-size: 16px;
    line-height: normal;
    color: var(--white-60);
}

.alert-hidden {
    transform: translateX(10000px);
}
