
:root {
    --success: #19c553;
    --danger: #F0416C;
    --white: #fff;
    --primary: #009ef7;
    --warning: #ffc700;
    --secondary-base: #ffc519;
    --secondary: #8f97ab;
    --info: #25bcf1;
    --dark: #232734;
    --light: #f2f3f8;
}


/*notify*/
.bill-notify {
    min-width: 350px;
    max-width: 350px;
    padding-right: 50px;
    border-radius: 0.25rem;
    overflow: hidden;
    border: 0;
    color: var(--white);
    box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
    -webkit-box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
    padding: 1.25rem 1.25rem;
    font-size: 0.875rem;
    z-index: 1060 !important;
}

[dir="rtl"] .bill-notify {
    text-align: right !important;
}

.bill-notify .close {
    top: 50% !important;
    height: 20px;
    width: 20px;
    margin-top: -10px;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
    opacity: 0.7;
    right: 15px !important;
    text-shadow: none;
}

[dir="rtl"] .bill-notify .close {
    right: auto !important;
    left: 15px !important;
}

.bill-notify .close:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}

.bill-notify .close:hover {
    color: var(--dark);
    opacity: 1;
}

.bill-notify .close:hover:before {
    opacity: 1;
    background-color: #fff;
    width: 170%;
    height: 170%;
    top: -35%;
    left: -35%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bill-notify .progress {
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
}

.bill-notify .progress-bar {
    background-color: var(--white);
}

.bill-notify.alert-success {
    background-color: var(--success);
}

.bill-notify.alert-danger {
    background-color: var(--danger);
}

.bill-notify.alert-primary {
    background-color: var(--primary);
}

.bill-notify.alert-warning {
    background-color: var(--warning);
}

.bill-notify.alert-secondary-base {
    background-color: var(--secondary-base);
}

.bill-notify.alert-info {
    background-color: var(--info);
}

.bill-notify.alert-dark {
    background-color: var(--dark);
}

.bill-notify.alert-secondary {
    background-color: var(--secondary);
}

.bill-notify.alert-light,
.bill-notify.alert-light .close {
    background-color: var(--light);
    color: var(--dark);
}

.bill-notify.alert-light .progress-bar {
    background-color: var(--primary);
}

@media (max-width: 575px) {
    .bill-notify {
        width: calc(100% - 40px);
        min-width: auto;
    }

    .h-sm-auto {
        height: auto;
    }
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}
