#ms-notification-area{
    position: fixed;
    right: 10px;
    bottom: 0px;
    width: 30%;
    min-width: 400px;
    z-index: 100;
}


.ms-notification{
    display: flex;
    position:relative;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    box-shadow: rgba(0,0,0,.2) 0 10px 15px 0px;
    background: #fff;
}

.ms-notification-body{
    display:flex;
    width:100%;
}

.ms-notification-body span{
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
    color:#898989;
}
.close-ms-notification:hover{
    color:#c34d4d;
    transition-duration: 0.2s;
}

.ms-notification-icon{
    top: 0px;
    left: 0px;
    width: 20%;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
}

.ms-notification-icon span{
    position:relative;
    width: 100%;
    top:0;
    left: 0;
    padding: 0px;
    cursor: default;
}

.ms-notification-icon span i, .ms-label-icon span i{
    font-size: 24px;
}

.ms-notification-text{
    top:0;
    right:0;
    position: relative;
    width: 80%;
    border-left: 1px #d2d2d2 solid;
    padding: 35px 0px;
}

.ms-notification-message{
    width: 90%;
    padding: 0px 5%;
}

#ms-label-area{
    width: 40%;
    margin: 0 auto;
}

.ms-label{
    width: 100%;
    float: left;
    position: relative;
    border-radius: 5px;
}

.ms-label-icon, .ms-label-close{
    width: 10%;
    float: left;
    position: absolute;
    height: 100%;
    color: #fff;
}

.ms-label-close{
    right:0px;
}

.ms-label-icon span, .ms-label-close span{
    width: 100%;
    left: 0px;
    text-align: center;
    top: 50%;
    margin-top: -12px;
    position: absolute;
}

.ms-label-close span i{
    font-size: 18px;
    cursor: pointer;
}

.ms-label-text{
    position: relative;
    float: right;
    width: 90%;
}

.ms-label-text p{
    width: 95%;
    text-align: left;
    color: #fff;
}

@media (max-width: 991px) {
    #ms-notification-area{
        position: fixed;
        /*right: 10px;*/
        top: 60px;
        width: 20%;
        min-width: 300px;
        z-index: 100;
    }
}

@media screen and (max-width: 600px) {
    #ms-notification-area{
        bottom:60px;
        left:0px;
        width: 100%;
        max-height:100px;
    }
}
