#wrap-popup-article {
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
}

#popup-article {
    position: fixed;
    z-index: 999999999;
    background: #FFF;
    width: 80%;
    max-width: 800px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,55%);
    transform: translate(-50%,55%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    filter: alpha(opacity=0);
    opacity: 0;    
    visibility: hidden;
}

#popup-article.open {
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
}

#popup-article .inner {
    font-family: 'SentinelBook';
    font-size: 16px;
    line-height: 19px;
    padding:25px 0 0 0;
}
#popup-article .table-cell:last-child {
    padding-left: 22px;    
}
#popup-article .close_article, #close-unsbscribed {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.icon-close {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(../img/close-2.svg) no-repeat center;
}

.c-left {
    width: 180px;
    padding: 0 0 20px 20px;
    float: left;
    text-align: center;
}

.c-left img {
    max-width: 100%;
}

.c-right {
    padding: 0 20px 0 0;
    margin-left: 200px;
}

.c-list-1 {
    margin-bottom: 12px;
}


#popup-article .info {
    font-family: 'SentinelBook';
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
}

#popup-article .info strong {
    font-family: 'Sentinel-BoldItalic';
    display: block;
    font-weight: normal;
}

#popup-article .box-title {
    font-family: "ArcherBold";
    font-size: 31px;
    font-weight: normal;
    text-transform: uppercase;
    color: #EB4330;
    margin-top: 5px;
    margin-bottom: 18px;
    line-height: normal;
}

.c-list-2 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .c-left {
        width: 65px;
        padding: 0 10px;
    }
    .c-right {
        padding: 0 10px;
        margin-left: 0;
    }
    #popup-article {
        overflow-y: auto;
         max-height: 80%;
    }
    #popup-article .close_article {
        top: 10px;
        right: 10px;
    }
    #popup-article .inner {
        padding-top: 30px;
    }

    #popup-article .info {
        margin-left: 55px;
    }

    .box-toptitle {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 480px) {
    #popup-article .box-title {
        font-size: 25px;
    }
}