/**
 * @Project NUKEVIET 4.x
 * @Author VINADES.,JSC (contact@vinades.vn)
 * @Copyright (C) 2014 VINADES.,JSC. All rights reserved
 * @License GNU/GPL version 2 or any later version
 * @Createdate 31/05/2010, 00:36
 */
.notify_item {
    position: fixed;
    bottom: 165px;
    left: 30px;
    width: 350px;
    border: 1px solid #ccc;
    border-radius: 40px;
    background: #ffffff;
    color: #000000;
    font-size: 13px;
    box-shadow: 2px 2px 10px 2px #ccc;
    z-index: 1020;
}

.langi-en .notify_item {
    bottom: 90px;
}

.notify_item .notify_item_i {
    display: block;
    width: 100%;
    padding: 10px !important;
    line-height: 20px;
}

.notify_item .notify_item_i .notify_item_title {
    width: 76%;
}

.notify_item .notify_item_i .notify_item_title a {
    color: #002bff !important;
}

.notify_item .notify_item_i img {
    max-width: 60px;
    margin: 0 5px 5px 0;
    border: 1px solid #c0c0c0;
    border-radius: 50px;
}

.bg-gainsboro {
    background-color: #C0C0C0;
}

.timeago {
    font-size: 12px;
}

@media ( min-width :500px) {
    .notify_item {
        bottom: 165px;
        left: 20px;
        width: 350px;
    }

    .langi-en .notify_item {
        bottom: 90px;
    }

    .notify_item .notify_item_i img {
        max-width: 60px !important;
        margin: 0 5px 5px 0;
        border: 1px solid #c0c0c0;
        border-radius: 60px;
    }
}

@media ( max-width :499px) {
    .notify_item {
        bottom: 165px;
        left: 20px;
        width: 350px;
    }

    .langi-en .notify_item {
        bottom: 90px;
    }

    .notify_item .notify_item_i img {
        max-width: 60px !important;
        margin: 0 5px 5px 0;
        border: 1px solid #c0c0c0;
        border-radius: 60px;
    }
}

@media ( max-width :375px) {
    .notify_item {
        bottom: 165px;
        left: 20px;
        width: 300px;
    }

    .langi-en .notify_item {
        bottom: 90px;
    }

    .notify_item .notify_item_i img {
        max-width: 50px !important;
        margin: 0 5px 5px 0;
        border: 1px solid #c0c0c0;
        border-radius: 60px;
    }
}

@media ( max-width :320px) {
    .notify_item {
        bottom: 165px;
        left: 20px;
        width: 280px;
    }

    .langi-en .notify_item {
        bottom: 90px;
    }

    .notify_item .notify_item_i .notify_item_title {
        width: 72%;
    }
    .notify_item .notify_item_i img {
        max-width: 50px !important;
        margin: 0 5px 5px 0;
        border: 1px solid #c0c0c0;
        border-radius: 60px;
    }
}

.scale-up-center {
    -webkit-animation: scale-up-center 0.4s
        cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000)
        both;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100%
    {
    -webkit-transform: scale(1);
    transform:scale(1);
    }
}
@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.fade-out {
    -webkit-animation: fade-out 1s ease-out both;
    animation: fade-out 1s ease-out both;
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }

    50%
    {
        opacity:0.5;
    }
    100%
    {
        opacity:0;
    }
}
@keyframes fade-out {
     0% {
        opacity: 1;
    }

    50%
    {
        opacity:0.5;
    }
    100%
    {
        opacity:0;
    }
}
