
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    z-index: 1!important;
}



/* Tooltip text */
.tooltip .tooltiptext {
    visibility: visible;
    width: 226px;
    background-color: rgba(5, 7, 45, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: 12px;
    line-height: 16px;
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: calc(86% - 113px);
    margin-left: -60px;
    padding: 18px;
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
    font-family: "Gotham Pro", sans-serif;
    font-weight: 100;
    text-transform: initial;
}

.tooltip .tooltiptext .link{
    display: block;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    /* or 133% */
    cursor: pointer;
    text-align: center;
    text-decoration-line: underline;
    /* Green */
    margin-top: 7px;
    color: #2EC84A;
}
    /* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(5, 7, 45, 0.9) transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.page-inside.inner-cattag h1{
    font-weight: bold;
    font-size: 28px;
    line-height: 46px;
    margin-bottom: 0;
}
p.topic_qant{
    font-size: 16px;
    line-height: 25px;
    color: #717880;
}

.category-tpl .article-category .article-item{
    background: #FFFFFF;
    box-shadow: 0px 30px 40px rgba(212, 217, 232, 0.2);
    border-radius: 10px;
    border: none;
}

.article-wrapper .article-category.disabled_download{
    position: relative;
}

.disabled_download_preview{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("/assets/img/download-preview.svg"), rgba(5, 7, 45, 0.85);
    background-repeat: no-repeat;
    background-position: 50% 20%;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    opacity: 0;
    z-index: -9999;
}

.disabled_download_preview.disabled_download_preview_show{
    opacity: 1;
    z-index: 2;
}

.disabled_download_preview p{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.disabled_download_preview a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 100px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.disabled_download_preview a.green_btn{
    background: #2EC84A;
    border: 1px solid #2EC84A;
    margin-bottom: 18px;
}

.disabled_download_preview a.cancel{
    border: 1px solid #FFFFFF;
}

.category-tpl .article-category .article-item{
    padding: 23px 0;
}
.article-category .title_block_wrapper{
    padding: 0 30px 16px 30px;
    border-bottom: 1px solid #E3EDF8;
}
.article-category .title_block_wrapper h2.entry-title{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #182B3E;
    font-family: "Gotham Pro Bold", sans-serif;
    margin-bottom: 0;
}
.article-category .entry-content{
    padding: 13px 30px 29px 30px;
    border-bottom: 1px solid #E3EDF8;
    margin-bottom: 22px;
    word-break: break-word;
}
.article-category .entry-content p{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}
.category-tpl .article-category .popular-category{
    padding: 0 30px;
}
.button_article_wrapper{
    display: flex;

}
.article-item .continue_read_btn{
    background: #38B8EF;
    border-radius: 100px;
    width: 169px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
    text-decoration: none;
    margin-right: 15px;
    font-family: "Gotham Pro Medium", sans-serif;
    transition: all .4s;
}
.article-item .continue_read_btn:hover{
    background: #22BBFD;
}
.article-item .download{
    background: url("/assets/img/download-icon.svg"), #EBF5FF;
    background-repeat: no-repeat;
    background-position: 15% 46%;
    border-radius: 100px;
    width: 169px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #38B8EF;
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
    text-decoration: none;
    margin-right: 15px;
    font-family: "Gotham Pro Medium", sans-serif;
    padding-left: 15px;
    transition: all .4s;
    border: none;
}

.article-item .download.disabled_download{
    opacity: 1;
    cursor: inherit;
    position: relative;
}
.article-item .download.disabled_download:hover{
    background: url("/assets/img/download-icon.svg"), #EBF5FF;
    background-repeat: no-repeat;
    background-position: 15% 46%;
    color: #38B8EF;
}
.article-item .download.disabled_download:after{
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.6;
    position: absolute;
    background: #EBF5FF;
    border-radius: 100px;
}

.article-item .download:hover{
    background: url("/assets/img/download-hover-icon.svg"), #38B8EF;
    background-repeat: no-repeat;
    background-position: 15% 46%;
    color: #fff;
}
.category-tpl .article-category .popular-category-block .category__item{
    background: transparent;
    border-radius: 5px;
    height: auto;
    line-height: 24px;
    margin: 0 4px 4px 0;
    padding: 0;
}
.category-tpl .article-category .popular-category-block .category__item a{
    color: #4C99E6;
    background: #F1F7FD;
    border-radius: 5px;
    display: block;
    padding: 3px 10px;
}
.category-tpl .article-category .popular-category-block .category__item a:hover {
    color: #fff;
    background: #38B8EF;
    box-sizing: border-box;
}
.pages_count{
    font-size: 14px;
    line-height: 28px;
    color: #182B3E;
    background: url("/assets/img/page-icon.svg"), #FFFFFF;
    background-repeat: no-repeat;
    background-position: 18% 45%;
    border: 1px solid #EBF3FC;
    box-sizing: border-box;
    border-radius: 5px;
    display: block;
    text-align: center;
    padding-left: 26px;
    position: relative;
    font-weight: 500;
}
.category-tpl .article-category .popular-category .popular-category-block + div:nth-of-type(2) {
    width: 150px;
    min-width: 124px;
}

.showAllRelatedLinks, .ShowMorePosts{
    color: #38B8EF;
    border: 1px solid #38B8EF;
    background: #fff;
    width: 274px;
    height: 45px;
}

.showAllRelatedLinks:hover, .ShowMorePosts:hover {
    color: #fff;
    border: 1px solid #38B8EF;
    background: #38B8EF;
}

.wp-pagenavi a, .wp-pagenavi span{
    margin: 0;
    background: #fff;
    box-shadow: none;
    color: #38B8EF;
}
.wp-pagenavi a.page{
    border-right: none;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: transparent;
    color: #9B9B9B;
    background-color: #EAF2FB;
}


@media (min-width: 1072px) {
    .disabled_download_preview_show.disabled_download_preview_show{
        display: none;
    }
}
@media (max-width: 1071px){
    .tooltip:hover .tooltiptext{
        display: none!important;
    }
}




@media (max-width: 767px) {
    .page-inside.inner-cattag h1{
        font-weight: bold;
        font-size: 24px;
        line-height: 30px;
        color: #182B3E;
    }
    p.topic_qant{
        font-size: 14px;
        line-height: 46px;
        border-bottom: 1px solid #D0DFEE;
        margin-bottom: 22px;
    }
    .article-category .title_block_wrapper h2.entry-title{
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }
    .article-category .title_block_wrapper{
        padding: 0 20px 16px 20px;
    }
    .article-category .entry-content{
        padding: 13px 20px 29px 20px;
    }
    .category-tpl .article-category .popular-category{
        padding: 0 20px;
    }
    .article-category .entry-content p{
        font-size: 12px;
        line-height: 18px;
    }
    .article-item .download{
        margin-right: 0;
        background-position: 10% 46%;
    }
    .category-tpl .article-category .popular-category{
        flex-direction: column-reverse;
    }
    .pages_count{
        margin-bottom: 16px;
        background-position: 13% 45%;
    }
    .category-tpl .article-category .popular-category .popular-category-block + div:nth-of-type(2){
        width: 109px;
        min-width: 110px;
    }
    .popular-category > div > strong{
        padding-right: 14px;
    }
    .select2-container{
        width: inherit !important;
    }
}

.not_fount_wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.not_fount_wrapper h3{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 17px;
    text-align: center;
    color: #494949;
    margin-top: 30px;
    padding-bottom: 43px;
    border-bottom: 1px solid #E4EEF9;
    margin-bottom: 50px;
    width: 100%;
    max-width: 708px;
}
.not_fount_wrapper p{
    font-size: 18px;
    line-height: 17px;
    text-align: center;
    color: #494949;
}