.lblerros {
    color: red;
    font-weight: bold;
    font-size: 10px;
    position: absolute;
}

/* alert success error messages */

.showalert {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    max-width: 500px;
    padding: 18px 28px;
    color: #fff;
    z-index: 99999;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: fadeIn 0.5s ease;
    background: #13653f;
}

.showalert-body {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Logo Theme Color */
.showalert.success {
    background-color: #28a745;
    border: 1px solid #1e7e34;
    color: #fff;
}
/* Error */
.showalert.error {
    background: #dc3545;
}

/* Warning */
.showalert.warning {
    background: #ffb300;
    color: #000;
}

/* Info */
.showalert.info {
    background: #17a2b8;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes fadeOut {

    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
button.btn-close.modalclose {
    position: absolute;
    right: -15px;
    top: -18px;
    background: #211ebe;
    opacity: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    z-index: 999;
    line-height: 0;
    text-align: center;
}