.notifyjs-metro-base {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    min-width: 320px;
    max-width: 380px;
    padding: 14px 20px 14px 16px;
    color: #fff;
    border: none !important;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    -webkit-animation: notifySlideIn 0.3s ease-out;
    -o-animation: notifySlideIn 0.3s ease-out;
    animation: notifySlideIn 0.3s ease-out;
}

.notifyjs-metro-base .image {
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.notifyjs-metro-base .image i {
    font-size: 16px;
    line-height: 1;
}

.notifyjs-metro-base .text-wrapper {
    display: block;
    flex: 1 1 auto;
    margin: 0;
    text-align: left;
}

.notifyjs-metro-base .title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 3px;
    font-weight: 700;
    letter-spacing: .2px;
}

.notifyjs-metro-base .text {
    font-size: 12.5px;
    font-weight: 400;
    line-height: 17px;
    max-width: 280px;
    opacity: .95;
}

@-webkit-keyframes notifySlideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-12px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes notifySlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notifyjs-metro-cool {
    color: #fafafa !important;
    background-color: #4A525F;
}