/**
 * @Project NUKEVIET 4.x
 * @Author VINADES.,JSC <contact@vinades.vn>
 * @Copyright (C) 2020 VINADES.,JSC. All rights reserved
 * @License: Not free read more http://nukeviet.vn/vi/store/modules/nvtools/
 * @Createdate Sat, 31 Oct 2020 02:20:33 GMT
 */
.bg-red {
    background-color: #ff2323;
    color: #fff;
    cursor: pointer;
}
.bg-orange {
    background-color: #ff8d00;
    color: #fff;
    cursor: pointer;
}

.content_notifi_part {
    position: relative;
    overflow: hidden;
    height: 100px;
    transition: all 0.5s ease;
    .gradient {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 60px;
        background-image: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
    }
}
.content_notifi_part.active {
    overflow: visible;
    height: auto;
    .gradient {
        display: none;
    }
}

.view_part {
    cursor: pointer;
    display: block;
    width: 185px;
    height: 30px;
    margin: 10px auto 0px;
    color: #0685d6;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    border: 1px solid #0685d6;
    border-radius: 4px;
    .an {
        display: none;
    }
}
.view_part.active{
    .hien {
        display: none;
    }
    .an {
        display: block;
    }
}
