#NOTICE_HTML{
    position: fixed !important;
    top:55px;
    right: -300px;
    width: 300px;
    height: calc(100% - 50px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 0 6px -1px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
}
#NOTICE_HTML.open{
    right: 0px;
    opacity: 1;
    visibility: visible;
}
#NOTICE_HTML .notice_list{
    margin: 0;
    padding: 0;
    max-height: calc(100% - 54px);
    overflow: auto;
}
#NOTICE_HTML .notice_list .one_notice{
    margin: 0;
    padding: 6px 10px;
    border-bottom: 1px solid #efefef;
    position: relative;
}
#NOTICE_HTML .notice_list .one_notice.no_read{
    background: rgba(134, 214, 246, 0.0);
}
#NOTICE_HTML .notice_list .one_notice .one_notice_data{
    padding: 1px 7px 2px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 7px;
    margin-left: -5px;
}
#NOTICE_HTML .notice_list .one_notice.no_read  .one_notice_data{

    color: #fff;
    background: #d24a43;
}
#NOTICE_HTML .notice_list .one_notice .close_notice{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 15px;
    top: 12px;
    margin: auto;
    font-size: 16px;
    z-index: 1;
    opacity: 0;
}
#NOTICE_HTML .notice_list .one_notice .close_notice:after{
    content: "\f00d";
}
#NOTICE_HTML .notice_list .one_notice.no_read .close_notice{
    opacity: 1;
    cursor: pointer;
}
#NOTICE_HTML .notice_list_title{
    padding: 16px 10px;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;

    padding-left: 50px;

    color: #61676b;
    /* background: rgba(134, 214, 246, 0.2);*/
    border-bottom: 1px solid rgba(134, 214, 246, 0.9);
    border-bottom: 1px solid #efefef;    
}
#NOTICE_HTML .notice_list_title:after{
    content: "\f178";
    content: "\f00d";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    /*right: 15px;*/
    left: 20px;
    top: 0px;
    bottom: 2px;
    margin: auto;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    z-index: 1;    
}
#NOTICE_HTML .load_more{
    text-align: center;
    text-decoration: underline;
    padding: 10px;
    cursor: pointer;
}
#NOTICE_HTML .load_more:hover{
    text-decoration: none;
}