.thm-notification .notification {
    position: fixed;
    z-index: 333;
}
.thm-notification .notification .notification-content {
    width: 300px;
    border-radius: 0.2rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    padding: 10px 40px 10px 15px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 20px -4px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    opacity: 0;
}
@media (max-width: 991.98px) {
    .thm-notification .notification .notification-content {
        max-width: 290px;
    }
}
.thm-notification .notification .notification-content .btn-close {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
    .thm-notification .notification .notification-content,
    .thm-notification .notification .notification-content .btn-close {
        transition: none;
    }
}
.thm-notification .notification .notification-content .btn-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}
.thm-notification .notification .notification-content .notification-body {
    color: #fff;
}
.thm-notification .notification .notification-content .notification-body h3 {
    font-size: 1em;
    margin: 0;
}
.thm-notification .notification .notification-content .notification-body .inner-text {
    font-size: 0.875em;
}
.thm-notification .notification .notification-content .notification-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
}
.thm-notification .notification .notification-content.type-default {
    background-color: #efecea;
    border-bottom-color: #e9e6e4;
}
.thm-notification .notification .notification-content.type-default .close-btn {
    background: rgba(0, 0, 0, 0.2);
}
.thm-notification .notification .notification-content.type-default .close-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}
.thm-notification .notification .notification-content.type-default .notification-icon {
    color: #6610f2;
}
.thm-notification .notification .notification-content.type-default .notification-body {
    color: #555;
}
.thm-notification .notification .notification-content.type-default .notification-body h3 {
    color: #6610f2;
}
.thm-notification .notification .notification-content.type-error {
    background-color: #dc3545;
    border-bottom-color: #bd2130;
}
.thm-notification .notification .notification-content.type-success {
    background-color: #28a745;
    border-bottom-color: #1e7e34;
}
.thm-notification .notification .notification-content.type-warning {
    background-color: #ffc107;
    border-bottom-color: #d39e00;
}
.thm-notification .notification .notification-content.type-info {
    background-color: #17a2b8;
    border-bottom-color: #117a8b;
}
.thm-notification .notification .notification-loaded .notification-content {
    opacity: 1;
}
.thm-notification .notification.center {
    left: 50%;
    transform: translateX(-50%);
}
.thm-notification .notification.center .notification-content {
    transform: translateX(-100%);
}
.thm-notification .notification.center .notification-loaded .notification-content {
    transform: translateX(0);
}
.thm-notification .notification.top {
    top: 15px;
}
.thm-notification .notification.top.center .notification-content {
    transform: translateY(-100%);
}
.thm-notification .notification.top.center .notification-loaded .notification-content {
    transform: translateY(0);
}
.thm-notification .notification.bottom {
    bottom: 15px;
}
.thm-notification .notification.bottom.center .notification-content {
    transform: translateY(100%);
}
.thm-notification .notification.bottom.center .notification-loaded .notification-content {
    transform: translateY(0);
}
.thm-notification .notification.right {
    right: 15px;
}
.thm-notification .notification.right .notification-content {
    transform: translateX(100%);
}
.thm-notification .notification.right .notification-loaded .notification-content {
    transform: translateX(0);
}
.thm-notification .notification.left {
    left: 15px;
}
.thm-notification .notification.left .notification-content {
    transform: translateX(-100%);
}
.thm-notification .notification.left .au-notify-inserted .notification-content {
    transform: translateX(0);
}
