.morele-notify-container{
    position: fixed;
    pointer-events: none;
    z-index: 2250;
    top: 0;
    bottom: 0;
}

.morele-notify-container.position-x-center{
    left: 16px;
    right: 16px;
    margin: auto;
}

.morele-notify-container .mn-item{
    position: absolute;
    left: 0;
    padding: 16px 56px 16px 32px;
    background: #fff;
    border: rgba(60,64,67,.16);
    border-radius: 2px;
    box-shadow: 1px 3px 3px 0 rgba(60,64,67,.16);
    pointer-events: auto;
    transition: all .35s ease;
    opacity: 0;
    width: 100%;
    min-width: 300px;
    max-width: 832px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.morele-notify-container.position-x-center.position-y-bottom .mn-item{
    transform: translateX(-50%) translateY(100%);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.morele-notify-container.position-x-center.position-y-bottom .mn-item.mn-item-push{
    transform: translateX(-50%) translateY(0);
}

.morele-notify-container.position-x-center .mn-item{
    left: 50%;
    transform: translateX(-50%);
}

.morele-notify-container .mn-item.mn-type-danger{
    background: #fde5e6;
    color: #e7000e;
}

.morele-notify-container .mn-item.mn-type-success{
    background: #caefea;
    color: #078372;
}

.mn-type-danger .icon-close-dark:after,
.mn-type-danger .icon-close-dark:before{
    background: #e7000e !important;
}

.mn-type-success .icon-close-dark:after,
.mn-type-success .icon-close-dark:before{
    background: #078372 !important;;
}

.morele-notify-container .mn-item.mn-item-push{
    opacity: 1;
}

.morele-notify-container .mn-item .mn-close{
    position: absolute;
    top: 50%;
    right: 14px;
    cursor: pointer;
    font-size: 18px;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transition: all .2s ease;
}

.morele-notify-container .mn-item .mn-body-wr{
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 32px;
    text-align: left;
}

.morele-notify-container .mn-item .mn-body-wr .mn-icon{
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.morele-notify-container .mn-item .mn-body{
    font-size: 14px;
}

.morele-notify-container .mn-item .mn-body-wr .mn-icon i{
    line-height: 20px;
    display: block;
}


@media (max-width: 767px){
    .morele-notify-container{
        bottom: 56px;
    }
}

@media (max-width: 450px){
    .morele-notify-container{
        width: calc(100% - 32px);
    }
}