﻿

.r-notify {
    position: relative;
    padding: 10px;
    margin: 5px auto;
    display: inline-block;
    border-right: none;
    width: 60%;
    font-size: 13px;
    padding-right: 60px;
    border-radius: 5px;
    min-height: 25px;
    font-weight: 400;
    text-align: center;
    border: 2px solid;
    background: #fff;
}

    .r-notify span svg {
        font-size: 26px;
        height: 1em !important;
        width: 1em !important;
        margin-top: -4px;
    }

    .r-notify label {
        margin: 0
    }

    .r-notify > * {
        display: inline-block;
    }

    .r-notify.bold span {
        width: 58px;
        top: -2px;
        padding: 10px 13px;
        bottom: -2px;
    }

        .r-notify.bold span svg {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            right: 0;
            margin: auto;
        }

    .r-notify span {
        color: #fff;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 10px 13px;
    }

    .r-notify.r-notify-danger span {
        border-left: 2px solid #fff;
        background-color: #FE5D70;
    }

    .r-notify.r-notify-danger {
        color: #fe5d70;
        border-color: #fe5d70;
    }

    .r-notify.bold.r-notify-danger {
        background: #fe5d70;
        color: #fff;
    }

    .r-notify.r-notify-success span {
        background-color: #4DB6AC;
    }

    .r-notify.r-notify-success {
        color: #4DB6AC;
        border-color: #4DB6AC;
    }

    .r-notify.r-notify-info span {
        background-color: #3498DF;
    }

    .r-notify.r-notify-info {
        color: #3498DF;
        border-color: #3498DF;
    }

    .r-notify.r-notify-warning span {
        background-color: #FCF4CF;
        border-right-color: #F4C113;
        color: #F4C113;
    }


    .r-notify span.close-alert {
        float: left;
        width: 3%;
        font-weight: 900;
        font-size: 24px;
        cursor: pointer;
        margin-top: -5px;
    }

    .r-notify .div-close-alert {
        position: absolute;
        float: left;
        width: 3%;
        top: 6px;
        left: 22px;
    }

    .r-notify.r-notify-medium {
        width: 60%
    }

    .r-notify.r-notify-big {
        width: 90%
    }

    .r-notify.small {
        width: 30%
    }
@media (max-width: 768px) {
    .r-notify {
        width: 98%;
    }
}