.menu-helper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 71vw;
    height: 16vw;
    border: 2px solid #f8ff13;
    border-radius: 2px;
    padding: 3.4vw 6.4vw 3.4vw 3.4vw;
    background: green;
    background: url("../images/bg.png") center center no-repeat;
    background-size: cover;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
}

@media (min-width: 1000px) {
    .menu-helper {
        width: 410px;
        height: 65px;
        padding: 12px 20px;
    }
}

.menu-helper__title {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 4vw;
    font-weight: 700;
    color: #f8ff13;
}

@media (min-width: 1000px) {
    .menu-helper__title {
        font-size: 1.12rem;
    }
}

.menu-helper__sub-title {
    font-size: 3vw;
    color: #fff;
    font-weight: 400;
}

@media (min-width: 1000px) {
    .menu-helper__sub-title {
        font-size: 0.87rem;
    }
}

.menu-helper__link {
    opacity: 1;
    transition: opacity 300ms ease;
    background: url("../images/arrow-right-circle.svg") center center no-repeat;
    background-size: contain;
    width: 10.5vw;
    height: 10.5vw;
    z-index: 50;
}

@media (min-width: 1000px) {
    .menu-helper__link {
        width: 35px;
        height: 35px;
    }
}

.menu-helper__link:hover {
    opacity: 0.6;
}

.menu-helper__block-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 15;
}

.main {
    padding: 3.1vw 4.3vw;
    background-color: #121313;
}

.main__container {
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
}

@media (min-width: 2000px) {
    .main__container {
        overflow-x: hidden;
    }
}

.main__page-indicator {
    display: inline-block;
    font-size: 3.7vw;
    margin-bottom: 6.2vw;
}

.main__page-indicator a,
.main__page-indicator ul,
.main__page-indicator li {
    display: inline-block;
}

@media (min-width: 1000px) {
    .main__page-indicator {
        text-transform: uppercase;
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.main__menu-helpers {
    margin-bottom: 40px;
}

@media (min-width: 1000px) {
    .main__menu-helpers {
        margin-bottom: 50px;
    }
}

@media (min-width: 1340px) {
    .main__article-page {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        grid-template-rows: 1fr;
        gap: 0px 20px;
        grid-template-areas: ". .";
    }
}

.main__article-page__sidebar {
    display: none;
}

.main__article-page__sidebar-heading {
    display: none;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

@media (min-width: 1340px) {
    .main__article-page__sidebar-heading {
        display: block;
    }
}

@media (min-width: 1340px) {
    .main__article-page__sidebar {
        display: block;
    }
}

.article-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 10px 0;
    grid-template-areas: "." ".";
    position: relative;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 1600px) {
    .article-card {
        gap: 30px 0;
    }
}

.article-card:hover .article-card__img {
    transform: scale(1.1);
}

.article-card__photo {
    position: relative;
    display: grid;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.article-card__photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.article-card__img {
    width: 100%;
    z-index: 1;
    transition: transform 4500ms ease;
}

.article-card__tags {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 2;
    pointer-events: all;
}

.article-card__tag {
    display: inline-block;
    margin: 0 2.3vw 1vw 0;
}

.article-card__description {
    opacity: 1;
    transition: opacity 300ms ease;
    z-index: 50;
}

.article-card__description:hover {
    cursor: pointer;
    opacity: 0.7;
}

.article-card__title {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 5.6vw;
    color: #fff;
    margin-bottom: 1.5vw;
    text-transform: capitalize;
}

@media (min-width: 1000px) {
    .article-card__title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

.article-card__excerpt {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 4.3vw;
    color: #fff;
    margin-bottom: 3.7vw;
}

@media (min-width: 1000px) {
    .article-card__excerpt {
        font-size: 1.25rem;
    }
}

.article-card__view {
    color: #fff;
    position: relative;
    transition: opacity 300ms ease;
    /* margin-left: 30px; */
    margin-right: 10px;
}

.article-card__view-icon {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/eye.svg") center center no-repeat;
    background-size: contain;
}

.article-card__view:hover {
    cursor: pointer;
    opacity: 0.7;
}

.article-card__info-pc {
    display: none;
}

@media (min-width: 1000px) {
    .article-card__info-pc {
        display: flex;
        z-index: 2;
        position: absolute;
        bottom: 5%;
        left: 5%;
    }
}

.article-card__info-mob {
    display: flex;
}

.article-card__block-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    pointer-events: all;
}

@media (min-width: 1000px) {
    .article-card__info-mob {
        display: none;
    }
}

.article-preview {
    position: relative;
    display: grid;
}

@media (min-width: 1000px) {
    .article-preview {
        max-height: 580px;
    }
}

.article-preview:hover .article-preview__link {
    transform: scale(1.05);
}

.article-preview__image {
    display: block;
    width: 100%;
    height: 100%;
}

.article-preview__heading {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 5.6vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3.1vw;
    max-width: 78vw;
}

@media (min-width: 1000px) {
    .article-preview__heading {
        font-size: 44px;
        margin-bottom: 0;
        max-width: 800px;
        overflow: hidden;
        text-overflow: ellipsis;
        position: absolute;
        bottom: 15%;
        left: 2%;
        z-index: 10;
    }
}

.article-preview__photo {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    width: 90vw;
    height: auto;
    display: grid;
    place-items: center;
    margin-bottom: 3.1vw;
    z-index: 1;
}

.article-preview__photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    opacity: 0.8;
    border-radius: 4px;
    pointer-events: none;
    z-index: 3;
}

@media (min-width: 1000px) {
    .article-preview__photo {
        display: grid;
        margin-bottom: 0;
        width: 100%;
        height: auto;
        max-height: 580px;
    }
}

.article-preview__link {
    /* max-width: 150%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* place-self: stretch; */
    /* height: auto; */
    z-index: 1;
    transition: transform 5000ms ease;
}

.article-preview__tags {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 3;
}

@media (min-width: 1000px) {
    .article-preview__tags {
        top: 2%;
        left: 2%;
    }
}

.article-preview__tag {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.article-preview__statistics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 0;
    grid-template-areas: ". ." ". .";
    margin-bottom: 6.2vw;
}

@media (min-width: 1000px) {
    .article-preview__statistics {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0;
        grid-template-areas: ". . . .";
        max-width: 750px;
        position: absolute;
        bottom: 5%;
        left: 0;
        z-index: 4;
        margin-bottom: 0;
    }
}

.article-preview__author, .article-preview__time-reading, .article-preview__views, .article-preview__published {
    margin-left: 10.5vw;
    position: relative;
}

@media (min-width: 1000px) {
    .article-preview__author, .article-preview__time-reading, .article-preview__views, .article-preview__published {
        margin-left: 55px;
    }
}

.article-preview__author::before, .article-preview__time-reading::before, .article-preview__views::before, .article-preview__published::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 7.5vw;
    height: 7.5vw;
}

@media (min-width: 1000px) {
    .article-preview__author::before, .article-preview__time-reading::before, .article-preview__views::before, .article-preview__published::before {
        width: 24px;
        height: 24px;
    }
}

.article-preview__author-title, .article-preview__author-name, .article-preview__time-reading-title, .article-preview__time-reading-name, .article-preview__views-title, .article-preview__views-name, .article-preview__published-title, .article-preview__published-name {
    display: block;
    text-transform: uppercase;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
}

@media (min-width: 1000px) {
    .article-preview__author-title, .article-preview__author-name, .article-preview__time-reading-title, .article-preview__time-reading-name, .article-preview__views-title, .article-preview__views-name, .article-preview__published-title, .article-preview__published-name {
        font-size: 16px;
    }
}

.article-preview__author-name, .article-preview__time-reading-name, .article-preview__views-name, .article-preview__published-name {
    color: #fff;
}

.article-preview__author::before {
    background: url("../images/author.svg") center center no-repeat;
    background-size: contain;
}

.article-preview__time-reading::before {
    background: url("../images/clock.svg") center center no-repeat;
    background-size: contain;
}

.article-preview__views::before {
    background: url("../images/eye.svg") center center no-repeat;
    background-size: contain;
}

.article-preview__published::before {
    background: url("../images/calendar.svg") center center no-repeat;
    background-size: contain;
}

.article-preview__excerpt {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 4.3vw;
    color: #fff;
}

@media (min-width: 1000px) {
    .article-preview__excerpt_mob {
        display: none;
    }
}

.article-preview__excerpt_pc {
    display: none;
}

@media (min-width: 1000px) {
    .article-preview__excerpt_pc {
        display: block;
        font-size: 22px;
        position: absolute;
        bottom: 18%;
        left: 2%;
        z-index: 5;
    }
}

.article-preview__block-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 15;
}

.article__body {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 4.1vw;
    color: #fff;
    margin-top: 5.3vw;
    line-height: 1.4;
}

.article__body p {
    margin-bottom: 10vw;
}

.article__body table p {
    margin-bottom: 0;
}

.article__body strong {
    font-weight: 700;
}

.article__body a {
    color: #f8ff13;
    transition: opacity 300ms ease;
}

.article__body img {
    display: block;
    max-width: 90vw;
    margin: 10vw auto 10vw;
    height: auto;
}

.article__body a:hover {
    opacity: 0.7;
}

.article__body h2 {
    font-weight: 700;
    font-size: 6.2vw;
    margin: 3.1vw 0 3.1vw;
}

#article-body table {
    width: 90vw !important;
}

.article__body em {
    font-style: italic;
}

.article__body iframe {
    width: 100%;
}

@media (min-width: 1000px) {
    #article-body table {
        width: 80% !important;
    }
    .article__body iframe {
        height: 550px;
    }
}

#article-body ul,
#article-body ol {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #fff;
}

#article-body > ul {
    list-style: initial !important;
    margin: 30px 0;
}

#article-body > ol {
    list-style: decimal !important;
    margin: 30px 0;
}

tbody li {
    list-style: disc;
}

#article-body li {
    position: relative;
    margin: 0px 0 30px 2em;
    /* Give each list item a left margin to make room for the numbers */
    padding: 0 20px;
    /* Add some spacing around the content */
}

#article-body ul li::marker {
    color: rgba(255, 255, 255, 0.5);
}

#article-body ol li::marker {
    color: rgba(255, 255, 255, 0.5);
}

#article-body li li {
    font-size: 3.8vw;
    margin: 10px 0 6px -21px;
}

.article__body h3 {
    font-weight: 700;
    font-size: 5.1vw;
}

.article__body h4 {
    font-weight: 700;
    font-size: 4.1vw;
}

.article__body h5 {
    font-weight: 700;
    font-size: 4.1vw;
}

.article__body h6 {
    font-weight: 700;
    font-size: 4.1vw;
}

@media (min-width: 1000px) {
    .article__body {
        font-size: 20px;
        margin-bottom: 110px;
        margin-top: 50px;
    }

    .article__body p {
        margin-bottom: 25px;
    }

    .article__body h2 {
        font-weight: 700;
        font-size: 38px;
        margin: 20px 0 20px;
    }

    .article__body h3 {
        font-weight: 700;
        font-size: 34px;
        margin: 20px 0 20px;
    }

    .article__body h4 {
        font-weight: 700;
        font-size: 32px;
        margin: 20px 0 20px;
    }

    .article__body h5 {
        font-weight: 700;
        font-size: 30px;
        margin: 20px 0 20px;
    }

    .article__body h6 {
        font-weight: 700;
        font-size: 28px;
        margin: 20px 0 20px;
    }

    #article-body img {
        max-width: 90%;
        margin: 20px auto 20px;
        height: auto;
    }

    #article-body img.alignleft {
        float: left;
        margin: 10px 20px 10px 0;
    }

    #article-body li li {
        font-size: 16px;
    }
}

.article__paragraph {
    margin-bottom: 10vw;
}

.article__paragraph span {
    color: #f8ff13;
}

@media (min-width: 1000px) {
    .article__paragraph {
        margin-bottom: 40px;
    }
}

.article__app {
    margin: 0 auto 10vw;
    max-width: 220px;
}

@media (min-width: 1000px) {
    .article__app {
        margin-bottom: 30px;
    }
}

.article__contents-list, .article__contents-sub-list {
    counter-reset: li;
    /* Initiate a counter */
    margin-left: 0;
    /* Remove the default left margin */
    padding-left: 0;
    /* Remove the default left padding */
}

.article__contents-sub-list {
    margin-top: 3vw;
}

@media (min-width: 1000px) {
    .article__contents-sub-list {
        margin-top: 10px;
    }
}

.article__contents-item {
    margin: 3vw 0;
    position: relative;
    margin: 0 0 6px 2em;
    /* Give each list item a left margin to make room for the numbers */
    padding: 0 8px;
    /* Add some spacing around the content */
    margin-top: 3vw;
}

.article__contents-item::before {
    content: counter(li);
    /* Use the counter as content */
    counter-increment: li;
    /* Increment the counter by 1 */
    /* Position and style the number */
    position: absolute;
    top: -2px;
    left: -2em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right: 8px;
    padding: 4px;
    color: #fff;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    text-align: center;
}

@media (min-width: 1000px) {
    .article__contents-item {
        margin: 10px 0;
    }
}

.article__button {
    margin: 40px auto;
}

.article__contents-button {
    position: relative;
    width: 100%;
    height: 16vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 5.6vw;
    color: #fff;
    text-transform: uppercase;
    background-color: #4a4a4a;
    border-radius: 4px;
    margin: 0 auto 10vw;
}

.article__contents-button span {
    display: block;
    position: relative;
}

.article__contents-button span::after {
    content: "";
    position: absolute;
    top: 0;
    right: -40%;
    width: 24px;
    height: 24px;
    background: url("../images/chevron-down.svg") center center no-repeat;
    background-size: contain;
}

@media (min-width: 1000px) {
    .article__contents-button {
        justify-content: flex-start;
        padding: 16px 20px;
        margin-bottom: 30px;
    }
}

.article__title {
    font-weight: 700;
    font-size: 6.2vw;
}

@media (min-width: 1000px) {
    .article__title {
        font-size: 38px;
    }
}

.article__sub-title {
    font-weight: 700;
    font-size: 5.6vw;
}

@media (min-width: 1000px) {
    .article__sub-title {
        font-size: 32px;
    }
}

.article__footer {
    display: none;
}

.article__footer .article-preview__author,
.article__footer .article-preview__time-reading,
.article__footer .article-preview__views,
.article__footer .article-preview__published {
    color: rgba(255, 255, 255, 0.7);
}

.article__footer .article-preview__author-title, .article__footer .article-preview__author-name,
.article__footer .article-preview__time-reading-title,
.article__footer .article-preview__time-reading-name,
.article__footer .article-preview__views-title,
.article__footer .article-preview__views-name,
.article__footer .article-preview__published-title,
.article__footer .article-preview__published-name {
    color: rgba(255, 255, 255, 0.7);
}

.article__footer .article-preview__author::before,
.article__footer .article-preview__time-reading::before,
.article__footer .article-preview__views::before,
.article__footer .article-preview__published::before {
    left: -40px;
    opacity: 0.7;
}

@media (min-width: 1000px) {
    .article__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
}

.article__footer-share {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3F3F3F;
    width: 34vw;
    height: 10vw;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
    color: #fff;
    text-transform: capitalize;
    transition: opacity 300ms ease;
}

.article__footer-share span {
    width: 4.3vw;
    height: 4.3vw;
    background: url("../images/share-2.svg") center center no-repeat;
    background-size: contain;
    margin-left: 4.3vw;
}

.article__footer-share:hover {
    cursor: pointer;
    opacity: 0.8;
}

@media (min-width: 1000px) {
    .article__footer-share {
        width: 185px;
        height: 55px;
        font-size: 22px;
    }

    .article__footer-share span {
        width: 24px;
        height: 24px;
        margin-left: 20px;
    }
}

/* Article Rating */
.article__rating-mob {
    margin-bottom: 6vw;
}

@media (min-width: 1000px) {
    .article__rating-mob {
        display: none;
    }
}

.article__rating-pc {
    display: none;
}

@media (min-width: 1000px) {
    .article__rating-pc {
        display: block;
        position: absolute;
        top: 8%;
        left: 2%;
        z-index: 5;
    }
}

.article__rating-share {
    display: none;
}

@media (min-width: 1000px) {
    .article__rating-share {
        display: inline-block;
    }
}

.stars {
    display: flex;
    align-items: center;
    width: 36vw;
}

.stars__rating {
    font-family: Roboto Condensed, Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #f8ff13;
    font-size: 3.7vw;
    margin-right: 2.1vw;
}

@media (min-width: 1000px) {
    .stars__rating {
        font-size: 16px;
        margin-top: 3px;
        margin-right: 10px;
    }
}

.stars__star {
    display: inline-block;
    width: 5vw;
    height: 5vw;
    fill: hsla(0, 0%, 100%, 0.5);
}

.stars__rating-1 .stars__star-container:first-child {
    display: none;
}

.stars__star-container {
    width: 5vw;
    height: 5vw;
    margin-right: 1vw;
}

@media (min-width: 1000px) {
    .stars__star-container {
        width: 22px;
        height: 22px;
        margin-right: 7px;
    }
}

@media (min-width: 1000px) {
    .stars__star {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 1000px) {
    .stars {
        width: 200px;
        margin-top: 15px;
    }
}

/* Stars-rating selectors */

.stars_rating-1 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-2 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-2 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-3 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-3 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-3 .stars__star-container:nth-child(4) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4 .stars__star-container:nth-child(4) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4 .stars__star-container:nth-child(5) .stars__star {
    fill: #f8ff13;
}

.stars_rating-5 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-5 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-5 .stars__star-container:nth-child(4) .stars__star {
    fill: #f8ff13;
}

.stars_rating-5 .stars__star-container:nth-child(5) .stars__star {
    fill: #f8ff13;
}

.stars_rating-5 .stars__star-container:nth-child(6) .stars__star {
    fill: #f8ff13;
}

.stars_rating-0-5 .stars__star-container:nth-child(2) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-1-5 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-1-5 .stars__star-container:nth-child(3) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-2-5 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-2-5 .stars__star-container:nth-child(3) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-2-5 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-2-5 .stars__star-container:nth-child(4) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-3-5 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-3-5 .stars__star-container:nth-child(3) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-3-5 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-3-5 .stars__star-container:nth-child(4) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-3-5 .stars__star-container:nth-child(4) .stars__star {
    fill: #f8ff13;
}

.stars_rating-3-5 .stars__star-container:nth-child(5) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-4-5 .stars__star-container:nth-child(2) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4-5 .stars__star-container:nth-child(3) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-4-5 .stars__star-container:nth-child(3) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4-5 .stars__star-container:nth-child(4) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-4-5 .stars__star-container:nth-child(4) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4-5 .stars__star-container:nth-child(5) .stars__star {
    fill: url(#StarsGradient);
}

.stars_rating-4-5 .stars__star-container:nth-child(5) .stars__star {
    fill: #f8ff13;
}

.stars_rating-4-5 .stars__star-container:nth-child(6) .stars__star {
    fill: url(#StarsGradient);
}

/* END  */

/* End */

/* Article footer mob */

.article__footer-mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1000px) {
    .article__footer-mob {
        display: none;
    }
}

/* Article footer mob END */

/* SHARE POP_UP */

.share__pop-up {
    z-index: -1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5)
}

.share__pop-up_show {
    z-index: 1000;
}

.share__options {
    width: 90vw;
    height: 20vw;
    padding: 5px;
    background-color: #3f3f3f;
    border-radius: 4px;
    display: flex;
    justify-content: space-around;
}

@media (min-width: 1000px) {
    .share__options {
        width: 385px;
        height: 87px;
        padding: 0;
    }
}

.share__text {
    font-family: Roboto Condensed, Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1000) {
    .share__text {
        font-size: 22px;
    }
}

.share__social {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 300ms ease;
}

.share__social:last-child {
    margin-left: -20px;
}

.share__social:hover {
    opacity: 0.5;
}

/* SHARE POP_UP END */


/* SHORTCODE-SUBSCRIPTION */

.shortcode {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    width: 320px;
    height: 230px;
    background: url('../images/registration-popup/registration-popup-bg.png') center center no-repeat;
    background-color: #232323;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 10px 10px 10px 10px;
    margin: 0 auto;
}

.shortcode::before {
    opacity: 0;
}

.shortcode__heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;

    margin-bottom: 20px;
}

.shortcode__heading span {
    color: #f8ff13;
}

.shortcode__form-label {
    width: 310px;
}

.shortcode__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;

    z-index: 2;

    position: relative;
}

.shortcode__form-input {
    width: 310px;
    height: 54px;

    background: transparent;
    border: 2px solid #ececec;
    border-radius: 2px;

    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
    color: #ececec;

    padding: 4.6vw 5.6vw;
    margin-bottom: 3vw;
    text-transform: uppercase;
}

.shortcode__form-input:placeholder {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
    color: #ececec;
    opacity: 1;
    text-transform: uppercase;
}

.shortcode__button {
    width: 190px;
    margin-bottom: 0;
}

@media (min-width: 1000px) {
    .shortcode {
        width: 648px;
        height: 192px;
        padding: 49px 64px 37px 30px;

        background-size: contain;
        align-items: flex-start;
    }

    .shortcode__heading {
        font-size: 30px;
    }

    .shortcode__form-label {
        width: 356px;
    }

    .shortcode__form {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 550px;
    }

    .shortcode__form-input {
        font-size: 16px;
        width: 356px;
        padding: 20px 25px;
        height: 60px;
        margin: 0;
    }

    .shortcode__form-input:placeholder {
        font-size: 16px;
    }
}

/* REGISTRATION POPUP */

.registration-popup-wrapper {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    place-content: center;
    z-index: 99;
}

.registration-popup {
    position: relative;
    width: 310px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-color: black;
    border: 1px solid #F8FF13;
    border-radius: 6px;
    box-shadow: rgba(255, 217, 0, 0.2) 0px 7px 29px 0px;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    z-index: 100;
}

.registration-popup__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;

    font-size: 24px;
    color: #CCD2E3;

    transition: transform 0.3s ease;

    cursor: pointer;
}

.registration-popup__close-btn:hover {
    transform: scale(1.1);
}

.registration-popup__title {
    font-size: 18px;
    text-transform: uppercase;
    color: white;

    margin-bottom: 12px;
}

.registration-popup__title--yellow {
    color: #f8ff13;
}

.registration-popup__link {
    font-size: 11px;
    width: 152px;
    height: 34px;
    background-color: #f8ff13;
    color: black;
    border-radius: 3px;

    display: grid;
    place-content: center;

    transition: transform 0.3s ease;
}

.registration-popup__link a {
    color: black;
}

.registration-popup__link:hover {
    transform: scale(1.1);
    color: black;
}

@media (min-width: 1000px) {
    .registration-popup {
        width: 500px;
        height: 350px;
    }

    .registration-popup__close-btn {
        top: 10px;
        right: 10px;

        font-size: 24px;
    }

    .registration-popup__title {
        font-size: 34px;
        text-transform: uppercase;
        color: white;

        margin-bottom: 24px;
    }

    .registration-popup__link {
        font-size: 15px;
        width: 211px;
        height: 44px;
    }
}

.hidden {
    display: none;
}

.visible {
    display: grid;
    position: fixed;
    top: 0;
    right: 0;
}

/* REGISTRATION POPUP END */

.recommended-reading-section {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    padding: 36px 40px;
    margin: 60px 0;
    display: inline-block;
    min-width: 60%;
}

.recommended-reading-content p:last-child {
    margin-bottom: 0;
}

.recommended-reading-title {
    color: #FFFFFF;
    opacity: 0.5;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
}

.recommended-reading-content {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    opacity: 1;
}

.recommended-reading-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.recommended-reading-content a:hover {
    color: #F8FF13;
    opacity: 1;
}

@media (max-width: 1000px) {
    .recommended-reading-section {
        padding: 24px 20px;
        margin: 0 0 26px 0;
    }

    .recommended-reading-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .recommended-reading-content {
        font-size: 14px;
        line-height: 20px;
    }
}

/* DEFINITION SECTION */
.definition-section {
    margin: 60px 0;
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    opacity: 0.5;
    padding-left: 20px;
    position: relative;
}

.definition-section-title {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
}

.definition-section:before {
    content: '';
    height: 100%;
    width: 1px;
    background: #fff;
    opacity: .5;
    position: absolute;
    left: 0;
}

@media (max-width: 1000px) {
    .definition-section {
        margin: 26px 0;
        font-size: 20px;
        padding-left: 10px;
    }

    .definition-section-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
}

/* END DEFINITION SECTION */

/* ARTICLE TABLES */
.article__body table {
    border: 1px transparent;
    border-radius: 2px;
    border-spacing: 0;
    margin: 60px auto;
}

.article__body tr {
    border: 1px transparent;
    border-radius: 2px;
    height: 42px;
}

.article__body td, .article__body th {
    border: none;
    text-align: left;
    vertical-align: middle;
    padding-left: 30px;
}

.article__body table tr:first-child, .article__body tr:first-child th {
    color: #000000;
    font-size: 20px;
    background-color: #F8FF13 !important;
    height: 48px;
    font-weight: 700;
}

.article__body table tr:nth-child(2n+1) {
    background-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1000px) {
    .article__body table {
        display: inline-block;
        overflow-x: auto;
        margin: 36px 0;
        font-size: 12px;
    }

    .article__body tr {
        height: 28px;
    }

    .article__body td {
        padding-left: 11px;
    }

    .article__body table tr:first-child {
        font-size: 16px;
        height: 32px;
        font-weight: 700;
    }
}

/* END ARTICLE TABLES */

/* CLICK TO TWEET */
.click-to-tweet-section {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    border-left: 4px solid #F8FF13;
    padding-top: 50px;
    padding-left: 40px;
    padding-bottom: 16px;
    margin-top: 35px;
    margin-bottom: 60px;
    max-width: 80%;
}

.click-to-tweet-section-content {
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    max-width: 70%;
}

.click-to-tweet-section .click-to-tweet-url {
    font-size: 18px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.click-to-tweet-section .click-to-tweet-url a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: #FFFFFF;
    opacity: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 30px;
}

.click-to-tweet-section .click-to-tweet-url a:hover {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: #FFFFFF;
    opacity: 1;
}

.click-to-tweet-section .click-to-tweet-url a svg {
    padding-left: 5px;
}

@media (max-width: 1000px) {
    .click-to-tweet-section {
        padding: 20px 15px 13px 20px;
        margin: 30px 0;
        max-width: 100%;
    }

    .click-to-tweet-section-content {
        font-size: 20px;
        max-width: 100%;
    }

    .click-to-tweet-section .click-to-tweet-url a {
        font-size: 12px;
        padding-right: 0;
        margin-top: 30px;
    }
}

/* END CLICK TO TWEET */

/* POLL STYLES */
.democracy {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
    background-color: #000000;
    width: 70%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.dem-poll-title {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0 !important;
}

.dem-screen {
    margin-top: 15px;
}

.democracy ul.dem-vote li > * {
    margin-bottom: 8px !important;
}

.dem-poll-subtitle {
    text-align: center;
    display: block;
    margin: 0 auto;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.dem__radio_label, .dem-vote label {
    padding: 13px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    align-items: center;
}

.dem__radio_label:hover {
    border: 2px solid rgba(248, 255, 19, 1);
}

.democracy ul li {
    margin: 0 auto !important;
    width: 80%;
    text-align: left;
}

.pmi-poll-animated-progress {
    width: 80%;
    border-radius: 2px;
    margin: 10px auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.pmi-poll-animated-progress span {
    height: 100%;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
}

.pmi-poll-animated-progress-name {
    padding: 12px 0 12px 17px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 251, 251, 1);
}

.pmi-poll-animated-progress-percents {
    padding: 12px 17px 12px 0;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 251, 251, 0.5);
}

.democracy .dem-bottom {
    padding-bottom: 0 !important;
}

.dem-bottom {
    text-align: center !important;
}

#pmi-dem-button {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    background: #F8FF13;
    color: #0a0a0a;
    border-radius: 2px;
    min-width: 160px;
}

.dem-vote-button {
    float: none !important;
    margin-top: 30px;
    margin-bottom: 40px;
}

.democracy input[type=radio] {
    margin-right: 10px !important;
    -webkit-appearance: none;
    appearance: none;
    background-color: #0a0a0a;
    width: 16px;
    height: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
}

.main__container .dem__checkbox_label .dem__spot, .main__container .dem__radio_label .dem__spot {
    background-color: #0a0a0a;
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.main__container .dem__checkbox:checked + .dem__spot, .dem__radio:checked + .dem__spot {
    border-color: #fff;
}

.dem__checkbox_label .dem__spot:after, .dem__radio_label .dem__spot:after {
    content: '';
    position: absolute;
    opacity: 0;
}

.dem__checkbox:checked + .dem__spot:after, .dem__radio:checked + .dem__spot:after {
    content: url("../images/poll-checkbox.svg");
    position: absolute;
    left: 22px;
    top: 12px;
    background: white;
    width: 0;
    height: 0;
    opacity: 1;
}

.pmi-poll--bottom-bet-btn {
    display: block;
    margin: 30px auto;
    padding: 14px 11px;
    background: #F8FF13;
    color: #0a0a0a !important;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.dem-bottom {
    max-width: 180px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .democracy {
        width: 100%;
    }

    .democracy ul li {
        padding: 0 !important;
        width: 95%;
    }

    .pmi-poll-animated-progress {
        width: 94%;
    }

    .dem-poll-title {
        font-size: 14px !important;
    }

    .dem-poll-subtitle {
        font-size: 12px;
    }

    .dem-screen {
        margin-top: 10px;
    }

    .pmi-poll-animated-progress-name, .pmi-poll-animated-progress-percents {
        font-size: 12px;
    }

    .pmi-poll--bottom-bet-btn {
        font-size: 14px;
        padding: 12px;
    }

    .dem__radio_label, .dem-vote label {
        font-size: 12px;
        padding: 10px;
    }

    .democracy input[type=radio] {
        width: 12px;
        height: 12px;
        margin-right: 8px !important;
    }

    .dem__checkbox:checked + .dem__spot:after, .dem__radio:checked + .dem__spot:after {
        left: 12px;
        top: 10px;
    }
    #democracy4 .voted {
        height: 900px !important;
    }
}
/* END POLL STYLES */

/* TABLES TABLEPRESS */
.tablepress {
    border: none;
}

.pmi-table tbody{
    border: 1px transparent;
    border-radius: 2px;
    border-spacing: 0;
    margin: 60px auto;
}

.pmi-table th {
    color: #000000;
    font-size: 20px;
    background-color: #F8FF13;
    height: 48px;
    text-align: center;
}

.pmi-table tbody tr {
    border: 1px transparent;
    border-radius: 2px;
    height: 42px;
}

.pmi-table tbody td {
    border: none !important;
    text-align: center !important;
    vertical-align: middle !important;
    padding-left: 30px !important;
}

.pmi-table  tbody tr:first-child {
    color: #000000 !important;
    font-size: 20px !important;
    background-color: #F8FF13 !important;
    height: 48px !important;
}

.pmi-table tr:nth-child(2n+1) {
    background-color: rgba(255, 255, 255, 0.06) !important;
}


@media (max-width: 1000px) {
    .pmi-table {
        display: inline-block;
        overflow-x: auto;
        margin: 36px 0;
        font-size: 12px;
    }

    .pmi-table tr {
        height: 28px;
    }

    .pmi-table td {
        padding-left: 11px;
    }

    .pmi-table tr:first-child {
        font-size: 16px;
        height: 32px;
        font-weight: 700;
    }
}
/* END TABLES TABLEPRESS */

/* FOR EMBED VIDEOS */
@media (max-width: 1900px) {
    .wp-video {
        max-width: 900px !important;
    }
}
@media (max-width: 1440px) {
    .wp-video {
        max-width: 800px !important;
    }
}
@media (max-width: 768px) {
    .wp-video {
        max-width: 700px !important;
    }
}
@media (max-width: 425px) {
    .wp-video {
        max-width: 380px !important;
    }
}
@media (max-width: 375px) {
    .wp-video {
        max-width: 340px !important;
    }
}
@media (max-width: 320px) {
    .wp-video {
        max-width: 290px !important;
    }
}
/* FOR EMBED VIDEOS */