html, body {
    height: 100%;
}

.my-container {
    margin-top: 100px;
    display: flex;
    width: 100%;
    float: left;
    flex-direction: row;
    flex-wrap: wrap;
    height: calc(100% - 180px);
    background: #fff;
    padding: unset;
}

.actions-block {
    position: fixed;
}

.btn-action {
    width: 100%;
    height: 50px;
    background: #ef911c;
    color: #fff;
    border: unset;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.btn-action:hover {
    background: #ee8310;
}

.container-articles {
    width: 70%;
    flex-direction: row;
    padding: 45px;
    display: flex;
    flex-wrap: wrap;
}

.empty-articles {
    width: 100%;
}

.empty-articles h2 {
    margin: unset;
    margin-bottom: 20px;
}

.art-block-main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: fit-content;
    padding: 50px;
    position: relative;
    margin-top: 20px;
}

.overlay {
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left:0;
    z-index: 1;
    background:rgba(0,0,0,0.5);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.art-block-main:hover .overlay {
    opacity: 0;
}

.art-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-size: cover;
    background-position: 50% 50%;
    height: 200px;
    width: 50%;
    padding: 30px;
    align-items: center;
    justify-content: center;
}

.art-header {
    width: 100%;
    z-index: 99;
}

.art-footer {
    width: 100%;
    margin-top: 30px;
    z-index: 99;
}

.btn-more {
    background: #ef911c;
    color: #fff;
    padding: 10px 15px;
}

.art-header-mini {

}

.art-title {
    color: #fff;
    text-shadow: 1px 1px 2px black, 0 0 0em black;
}

.art-body {
    max-width: 100%;
    z-index: 99;
    color: #fff;
    overflow: hidden;
    max-height: 50%;
}

.art-text-body {
    color: #fff;
    font-size: 16px;
    text-shadow: 1px 1px 2px black, 0 0 0em black;
}

.right-container {
    width: 30%;
    height: 100%;
    background-color: #fff;
    right: 0;
    top: 100px;
}

.right-container-categories {
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.right-container-block-title {
    font-size: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.cat-link-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: rgba(0,0,0,0.5);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: 0.5s;
}

.cat-link-block:hover {
    color: #ef911c;
    border-bottom: 1px solid #ef911c;
}

.cat-link-block i {
    font-size: 11px;
}

.right-container-tags {
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.right-container-tag {
    padding: 5px 5px;
    color: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.1);
    margin: 5px 5px;
    transition: 0.5s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.right-container-tag:hover {
    color: #ef911c;
}

.title-page {
    width: 100%;
}

.title-page h1 {
    color: #333;
    font-weight: 500;
}

.parent {
    width: 100%;
}

.child {
    width: calc(100% - 20px);
    margin-left: 20px;

}

/* Article page */

.dark {
    height: 100%;
    background: #1e2025;
}

.contain-article {
    display: flex;
    flex-direction: column;
}

.main-poster {
    max-width: 100%;
}

.body-article {
    background: #fff;
    padding: 20px 10%;
    text-align: justify;
    color: #222222;
    font-size: 16px;
    line-height: 30px;
}

.body-article img {
    max-width: 100%;
    height: auto;
}

.body-article .article-title {
    color: #000;
    padding: 0 0 12px 0;
    text-align: center;
    line-height: 36px;
    font-size: 28px;
    font-weight: 800;
}

.info-article {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.info-article span {
    color: #888;
    font-size: 13px;
    margin: 0 20px;
}

.info-article span i {
    padding-right: 5px;
}

.tg-share-button {
    border-radius: 3px;
    font-size: 11px;
    height: 20px;
    padding: 4px 4px;
    border: none;
    visibility: visible;
    width: 105px;
    background: #179cde;
    color: #fff;
    font-weight: bold;
}

.soc-share-button {
    float: left;
    margin-top: 4px;
    margin-right: 5px;
}

.wrapper {
    flex-direction: column;
    min-height: 100%;
    display: flex;
    position: relative;
}

.content-index {
    flex: 1 0 auto;
    padding-bottom: 79px;
}

.footer {
    flex: 0 0 auto;
    width: 100%;
}

/* end */

/* Pagination */

.blog-pagination {
    margin-bottom: 20px;
    display: flex;
    height: 40px;
    flex-direction: row;
}

.btn-pagination {
    background: #ef911c;
    color: #fff;
    padding: 10px 15px;
    border-left: 1px solid rgba(0,0,0,0.07);
}

.active-page {
    background-color: rgb(242, 124, 16);
}

.disable-page {
    pointer-events: none;
    background-color: rgb(255, 158, 69);
}

.btn-pagination:hover {
    background-color: rgb(242, 124, 16);
}

.btn-pagination:first-child {
    margin-left: unset;
    border: unset;
}

/* Start mobile */

@media only screen and (max-width: 992px) {
    .blog-pagination {
        margin: 0 40px;
        margin-bottom: 20px;
    }

    .my-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .container-articles {
        width: 100% !important;
        padding: unset;
    }

    .right-container {
        width: 100%;
    }

    .empty-articles {
        padding: 20px 40px;
    }

    .btn-action {
        width: 85%;
        opacity: 0.5;
    }
}

.footer-pagination {
    margin-top: 20px;
}

.fixed-bottom {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 50px;
    z-index: 9999;
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

a.btn-pagination.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
    color: #fff;
}
