.mdnotify-container {
    box-sizing: border-box;
    max-width: 300px;
    overflow: hidden;
    padding: 16px;
    position: fixed;
    width: 300px;
}

.mdnotify-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mdnotify-bottom-left {
    bottom: 0;
    left: 0;
}

.mdnotify-bottom-right {
    bottom: 0;
    right: 0;
}

.mdnotify-top-center {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.mdnotify-top-left {
    left: 0;
    top: 0;
}

.mdnotify-top-right {
    right: 0;
    top: 0;
}

.mdnotify {
    background-color: #fff;
    border: 1px solid #f1f2f3;
    border-radius: 2px;
    box-sizing: border-box;
    display: flex;
    height: 0px;
    margin: 10px;
    max-width: 248px;
    opacity: 0.7;
    overflow: hidden;
    padding: 0px 10px;
    user-select: none;
    width: 248px;
}

.mdnotify-success .mdnotify-icon {
    background-color: #28a745;
}

.mdnotify-danger .mdnotify-icon {
    background-color: #dc3545;
}

.mdnotify-dark .mdnotify-icon {
    background-color: #343a40;
}

.mdnotify-info .mdnotify-icon {
    background-color: #17a2b8;
}

.mdnotify-light .mdnotify-icon {
    background-color: #f0f0f0;
}

.mdnotify-primary .mdnotify-icon {
    background-color: #007bff;
}

.mdnotify-secondary .mdnotify-icon {
    background-color: #6c757d;
}

.mdnotify-warning .mdnotify-icon {
    background-color: #ffc107;
}

.mdnotify-light .mdnotify-icon i {
    color: #6c757d;
}
.mdnotify-icon i{
    height: 16px;
    width: 16px;
}
.mdnotify-light .mdnotify-icon svg{
    fill: #343a40 !important;
}

.mdnotify svg {
    fill: white !important;
}

.mdnotify-show {
    animation: scaleOnce 0.2s ease-in-out 0.2s 1 both;
    height: auto;
    opacity: 1;
    padding: 10px;
    transform: scale(1);
    transition: all 0.2s linear;
}

.mdnotify-text {
    animation: expandHeight 0.4s ease-in-out 0.5s forwards;
    align-items: center;
    color: #343a40;
    flex: 1;
    display: flex;
    height: 0px;
    opacity: 0;
    overflow: hidden;
}

.mdnotify-hide {
    height: 0;
    opacity: 0;
    transition: all 0.2s linear;
}

.mdnotify-icon {
    align-items: center;
    animation: rotateIcon 0.8s ease-in-out infinite 0.3s, slideIn 0.2s ease-in-out forwards 0.4s;
    border-radius: 16px;
    display: flex;
    height: 32px !important;
    justify-content: center;
    left: -44px;
    margin-right: 8px;
    position: relative;
    width: 32px !important;
}

.mdnotify-icon i {
    color: #fff;
}

.mdnotify-sh {
    -moz-box-shadow: 0 0.25rem 1.125rem rgba(75,70,92,.1);
    -webkit-box-shadow: 0 0.25rem 1.125rem rgba(75,70,92,.1);
    box-shadow: 0 0.25rem 1.125rem rgba(75,70,92,.1);
}

@keyframes expandHeight {
    to {
        height: auto;
        opacity: 1;
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(10deg) scale(1.04);
    }
    50% {
        transform: rotate(-10deg) scale(1);
    }
    75% {
        transform: rotate(10deg) scale(1.04);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes scaleOnce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

@keyframes slideIn {
  from {
    left: -44px;
  }
  to {
    left: 0;
  }
}