#notificationBoxes {
    position: fixed;
    right: 20px;
    top: 0;
    z-index: 9999;
}

.notificationBox {
    position: absolute;
    right: 5px;
    top: 20px;
    width: 400px;
    color: #fff;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid transparent;
    min-height: 56px;
}

.notificationBox span.icon-success {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-image: url("/_assets/media/common/img/notification/success.png");
}

.notificationBox span.icon-error {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-image: url("/_assets/media/common/img/notification/error.png");
}

.notificationBox span.icon-default {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-image: url("/_assets/media/common/img/notification/default.png");
}

.notificationBox .text {
    width: 93%;
    float: left;
    padding: 5px 0 6px 55px;
}

.notificationBox .text span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 18px;
    font-size: 18px;
    letter-spacing: normal;
    display: block;
    margin: 4px 0;
}

.notificationBox .text p {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 18px;
}

.notificationBox:hover {
    cursor: pointer;
}

@media screen and (max-width: 450px) and (max-width:767px) {
    #notificationBoxes {
        position: fixed;
        width: 90%;
        right: 0;
        top: 0
    }

    .notificationBox {
        width: 95%
    }

    .notificationBox:hover {
        box-shadow: 0 0 10px #888;
        cursor: pointer
    }

    .notificationBox span {
        font-size: 16px
    }

    .notificationBox p {
        font-size: 12px;
        margin-top: 2px
    }

    .notificationBox .text {
        width: 93%;
        float: left;
        padding-left: 20px
    }
}

.notificationBox.animated.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.notificationBox.animated.fast {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
}

.notificationBox.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}