.jq-toast-wrap,
.jq-toast-wrap * {
    margin: 0;
    padding: 0;
}

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 250px;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9000 !important;
}

    .jq-toast-wrap.bottom-left {
        bottom: 20px;
        left: 20px;
    }

    .jq-toast-wrap.bottom-right {
        bottom: 20px;
        right: 40px;
    }

    .jq-toast-wrap.top-left {
        top: 20px;
        left: 20px;
    }

    .jq-toast-wrap.top-right {
        top: 20px;
        right: 40px;
    }

.jq-toast-single {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 5px;
    border-radius: 4px;
    font-size: 12px;
    font-family: arial, sans-serif;
    line-height: 17px;
    position: relative;
    pointer-events: all !important;
    background-color: #444;
    color: #fff;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
}

    .jq-toast-single h2 {
        font-family: arial, sans-serif;
        font-size: 14px;
        margin: 0 0 7px;
        background: 0 0;
        color: inherit;
        line-height: inherit;
        font-weight: 700;
        text-shadow: none;
    }

    .jq-toast-single a {
        color: #eee;
        text-decoration: none;
        font-weight: 700;
        border-bottom: 1px solid #fff;
        padding-bottom: 3px;
        font-size: 12px;
    }

    .jq-toast-single ul {
        margin: 0 0 0 15px;
        background: 0 0;
        padding: 0;
    }

        .jq-toast-single ul li {
            list-style-type: disc !important;
            line-height: 17px;
            background: 0 0;
            margin: 0;
            padding: 0;
            letter-spacing: normal;
        }

.close-jq-toast-single {
    position: absolute;
    top: 3px;
    right: 7px;
    font-size: 14px;
    cursor: pointer;
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: 0px;
    height: 3px;
    width: 0;
    left: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: red;
}

.jq-toast-loaded {
    width: 100%;
}

.jq-has-icon {
    padding: 10px 10px 10px 50px;
    background-position: 10px 50%;
    background-repeat: no-repeat;
}

.jq-icon-info {
    /*background-image: url('../../../imagenes/ToastIcons/info.png');*/
    background-color: #14a8bd;
    color: rgb(240,240,240);
    border-color: #bce8f1;
    position: relative;
}

    .jq-icon-info::after {
        content: "";
        position: absolute;
        background-image: url(../../imagenes/ToastIcons/info.png);
        background-color: #14a8bd;
        color: rgb(240,240,240);
        border-color: #bce8f1;
        opacity: .8;
        top: 50%;
        left: 12px;
        width: 24px;
        height: 24px;
        background-size: cover;
        transform: translateY(-50%);
    }

.jq-toast-single .jq-toast-loader {
    background: rgba(20,20,20,.3) !important;
}

.jq-icon-warning {
    background-color: #d59a2e;
    color: rgb(240,240,240);
    border-color: #faebcc;
}

    .jq-icon-warning::after {
        content: "";
        position: absolute;
        background-image: url(../../imagenes/ToastIcons/alerta.png);
        background-color: #d59a2e;
        color: rgb(240,240,240);
        border-color: #faebcc;
        opacity: .8;
        top: 50%;
        left: 12px;
        width: 24px;
        height: 24px;
        background-size: cover;
        transform: translateY(-50%);
    }

.jq-icon-error {
    background-color: #bb3330;
    color: rgb(240,240,240);
    border-color: #ebccd1;
}

    .jq-icon-error::after {
        content: "";
        position: absolute;
        background-image: url(../../imagenes/ToastIcons/error.png);
        background-color: #bb3330;
        color: rgb(240,240,240);
        border-color: #ebccd1;
        opacity: .8;
        top: 50%;
        left: 12px;
        width: 24px;
        height: 24px;
        background-size: cover;
        transform: translateY(-50%);
    }

.jq-icon-success {
    color: rgb(240,240,240);
    background-color: #2e8430;
    border-color: #d6e9c6;
}

    .jq-icon-success::after {
        content: "";
        position: absolute;
        background-image: url(../../imagenes/ToastIcons/exito.png);
        color: rgb(240,240,240);
        background-color: #2e8430;
        border-color: #d6e9c6;
        opacity: .8;
        top: 50%;
        left: 12px;
        width: 24px;
        height: 24px;
        background-size: cover;
        transform: translateY(-50%);
    }

@keyframes animateTooltip {
    to {
        background-position: 10px 50%;
    }

    from {
        background-position: -50px 50px;
    }
}


.jq-toast-wrap > .jq-toast-single {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
