
.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 400px;
    pointer-events: none !important;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    z-index: 9000 !important;
}

.jq-toast-wrap * {
    margin: 0;
    padding: 0;
}

.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: 20px;
}

.jq-toast-single {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin: 0px 0px 10px;
    border-radius: 10px;
    font-size: 14px;
    line-height: normal;
    position: relative;
    pointer-events: all !important;
    color: white;
    font-weight: 500;
    min-height: 73px;
    height: 73px;
}

.jq-toast-single h2 {
    font-size: 14px;
    margin: 0px 0px 7px;
    background: none;
    color: inherit;
    line-height: inherit;
    letter-spacing: normal;
}

.jq-toast-single a {
    color: #eee;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid white;
    padding-bottom: 3px;
    font-size: 12px;
}

.jq-toast-single ul {
    margin: 0px 0px 0px 15px;
    background: none;
    padding: 0px;
}

.jq-toast-single ul li {
    list-style-type: disc !important;
    line-height: 17px;
    background: none;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
}

.close-jq-toast-single {
font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
}

.close-jq-toast-single:hover {
    color: #4269f4;
}

.close-jq-toast-single span:hover svg {
    color: #333;
    text-decoration: none;
    cursor: pointer;
    opacity: .7;
}

.close-jq-toast-single span {
    min-width: 30px;
    min-height: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.close-jq-toast-single svg {
   width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: -2px;
    height: 5px;
    width: 0%;
    left: 0;
    border-radius: 5px;
    background: red;
}

.jq-toast-loaded {
    width: 100%;
}

.jq-has-icon {
    padding: 20px 70px 20px 70px;
}




.jq-icon-warning {
    background: url(/catalog/view/theme/realbrand/sprites/svg/warning.svg) no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: 35px;
    background-position-y: 50%;
    background-position-x: 15px;
}


.jq-icon-warning {
    background-color: #fff;
    border-color: #fff;
    color: #333;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.jq-icon-error,
.jq-icon-info {
    background: url(/catalog/view/theme/realbrand/sprites/svg/error.svg) no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: 35px;
    background-position-y: 50%;
    background-position-x: 15px;
}

.jq-icon-error,
.jq-icon-info {
    background-color: #fff;
    border-color: #fff;
    color: #333;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.jq-icon-success {
    background: url(/catalog/view/theme/realbrand/sprites/svg/check.svg) no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: 35px;
    background-position-y: 50%;
    background-position-x: 15px;
}

.jq-icon-success {
        background-color: #fff;
    border-color: #fff;
    color: #333;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*left-to-right*/
.jq-toast-single {
  animation: toastAppear 1s ease forwards, toastDisappear 1s ease forwards 5s;
  animation-duration: .75s;
}


@keyframes toastAppear {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes toastDisappear {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}



@media(max-width:450px) {
    .jq-toast-wrap {
        width: auto;
    }

    .jq-toast-wrap.top-right {
        left: 20px;
        right: 20px;
    }
}

