.notify__container {
    position: fixed;
    min-width: 10%;
    max-width: 50%;
    width: auto;
	z-index: 999;
}

.notify__container.top-right {
    top: 20px;
    right: 20px;
}

.notify__container.top-left {
    top: 20px;
    left: 20px;
}

.notify__container.top-center {
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    align-items: center;
}

.notify__container .notify__title:first-letter, .notify__container .notify__message:first-letter {
    text-transform: uppercase;
}

.notify__container .notify__danger,
.notify__container .notify__info,
.notify__container .notify__success,
.notify__container .notify__warning,
.notify__container .notify__notice {
    position: relative;
    margin: 4px 0px;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 4px;
    cursor: pointer;
    border-radius: 2px;
    width: 310px;

    /* Animation effect slide from top */
    overflow: hidden;
    height: var(--notifyAreaHeight, auto); /* Convert to 100% */
    transition: .5s ease;
    padding: var(--notifyAreaPadding, 0 10px); /* Convert to (10px 10px) */
}

.notify__container .notify__danger::after,
.notify__container .notify__info::after,
.notify__container .notify__success::after,
.notify__container .notify__warning::after,
.notify__container .notify__notice::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: rgb(0, 0, 0);
    width: var(--jsProgressBarWidth, 100%); /* these are js variables and default value */
    height: 3px;
    opacity: 0.2;
    transition: var(--jsProgressBarTimeout, 'all 4000ms linear 0s'); /* these are js variables and default value */
}


.notify__container .notify__danger {
    border: 1px solid rgb(226, 83, 83);
    background-color: rgb(255, 129, 129);
    color: rgb(255, 255, 255);
}

.notify__container .notify__info {
    border: 1px solid rgb(59, 173, 214);
    background-color: rgb(120, 197, 231);
    color: rgb(255, 255, 255);
}

.notify__container .notify__success {
    border: 1px solid rgb(124, 221, 119);
    background-color: rgb(188, 245, 188);
    color: darkgreen;
}

.notify__container .notify__warning {
    border: 1px solid rgb(255, 194, 55);
    background-color: rgb(255, 234, 168);
    color: rgb(130, 98, 0);
}

.notify__container .notify__notice {
    border: 1px solid rgb(204, 204, 204);
    background-color: rgb(255, 255, 255);
    color: rgb(68, 68, 68);
}