*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.out-box-alert {
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 255;
    padding: 15px;
    max-width: 400px;
    width: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.box-alert-set {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.09);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.card-top-alert {
    display: flex;
    align-items: center;
}

.card-top-alert .card-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.error {
    background: red;
}

.success {
    background: green;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-left: 11px;
}

.card-text h4 {
    font-size: 16px;
    font-family: var(--fonttext-poppins);
    letter-spacing: .2px;
    color: red;
}

.card-text p {
    font-size: 14.5px;
    font-family: var(--fonttext-poppins);
    letter-spacing: .2px;
    line-height: 1.52em;
    color: #161616;
}

.card-close-alert span {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: grey;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.card-close-alert span:hover {
    color: #161616;
}