.home-page-header {
    box-shadow: 0 3px 6px #00000029;
    padding: 10px 0;
}
.site-title {
    color: #000;
}

/* BREADCRUMBS */
.breadcrumbs a:focus, .post-categories li a:focus {
    outline: none;
}

/* LOADMORE BUTTON */
#loadmore {
    display: none;
    text-align: center;
    font-size: 24px;
    color: #3790CB;
}
#loadmore.show {
    display: block;
}
#loadmore span {
    display: inline-block;
    animation: loading 1s infinite linear;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    position: relative;
}
.lang-switcher .lang-switcher__btn {
    position: relative;
    display: flex;
    align-items: center;
    border-style: solid;
    border-width: 2px 2px 0;
    border-color: transparent;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
    color: #212529;
    padding: 10px;
    transition: all .3s ease;
    z-index: 1;
}
.lang-switcher:hover .lang-switcher__btn {
    background-color: #fff;
    border-color: #e5e4e4;
}
.lang-switcher .lang-switcher__flag {
    height: 15px;
    width: auto;
    margin-right: 8px;
}
.lang-switcher .lang-switcher__slug {
    font-size: 16px;
    font-weight: 600;
}
.lang-switcher .lang-switcher__arrow {
    position: relative;
    width: 13px;
    margin-left: 10px;
}
.lang-switcher .lang-switcher__arrow span {
    position: absolute;
    top: 0;
    width: 8px;
    height: 2px;
    background-color: #d9d8d8;
    transition: all .3s ease;
}
.lang-switcher .lang-switcher__arrow span:first-child {
    left: 0;
    transform: rotate(45deg);
}
.lang-switcher .lang-switcher__arrow span:last-child {
    right: 0;
    transform: rotate(-45deg);
}
.lang-switcher:hover .lang-switcher__arrow span:first-child {
    transform: rotate(-45deg);
}
.lang-switcher:hover .lang-switcher__arrow span:last-child {
    transform: rotate(45deg);
}
.lang-switcher .lang-switcher__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-style: solid;
    border-color: #e5e4e4;
    border-width: 0 2px 2px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.lang-switcher:hover .lang-switcher__menu {
    top: 46px;
    opacity: 1;
    visibility: visible;
}
.lang-switcher .lang-switcher__item {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #212529;
    transition: all .3s ease;
}
.lang-switcher .lang-switcher__item:hover {
    background-color: #e5e4e4;
}

/* CONTENT */
.entry-content {
    background: #fff;
    border: 1px solid #091f3014;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
    margin-bottom: 20px;
    padding: 24px;
    overflow: hidden;
}
.entry-content > p,
.entry-content > ol,
.entry-content > ul {
    color: #5e5e5e;
    margin-bottom: 20px;
}

/* ARTICLE */
.article .article__top {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #091f3014;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
    margin-bottom: 20px;
    overflow: hidden;
}
.article .article__top-left {
    flex: 1;
    padding: 24px 12px 24px 24px;
}
.article .article__title {
}
.article .article__rating {
    display: flex;
}
.article .article__rating span {
    font-size: 18px;
    margin-right: 15px;
}


.article .article__top-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 24px 24px 12px;
}
.article .article__image {
    max-width: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
.article .article__image img {
    width: 100%;
    height: auto;
}
.article .article__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    min-height: 48px;
    background-color: #3790CB;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: all .3s ease;
}
.article .article__link:hover {
    background-color: #000;
}

.article .article__pros-cons,
.article .article__other {
    display: flex;
    background: #fff;
    border: 1px solid #091f3014;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
    margin-bottom: 20px;
    padding: 24px;
    overflow: hidden;
}
.article .article__block {
    flex: 1;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #091f3014;
}
.article .article__block:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}
.article .article__block .block__title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.article .article__block .block__title i {
    width: 30px;
    height: 30px;
    background-color: rgba(55, 144, 203, 0.7);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    margin-right: 10px;
}
.article .article__block.article__block--pros .block__title i {
    background-color: rgba(0, 128, 0, 0.7);
}
.article .article__block.article__block--cons .block__title i {
    background-color: rgba(255, 0, 0, 0.7);
}
.article .article__block .block__list {
    width: 100%;
    list-style: none;
    font-size: 14px;
    color: #215273;
    padding-left: 8px;
    margin: 0;
}
.article .article__block.article__block--payment .block__list {
    column-count: 2;
}
.article .article__block .block__item {
    display: flex;
    line-height: 1.2;
    margin-bottom: 15px;
}
.article .article__block .block__item i {
    margin-right: 10px;
    line-height: 1.2;
}
.article .article__block .block__item a {
    color: #215273;
}
.article .article__block .block__item a:hover {
    text-decoration: underline;
}

.article .article__author {
    display: inline-flex;
    align-items: center;
    color: #212529;
    margin-bottom: 24px;
}
.article .article__author .author__left {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}
.article .article__author .author__left img {
    width: 100%;
    height: auto;
}
.article .article__author .author__right {
    display: flex;
    flex-direction: column;
}
.article .article__author .author__name {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}
.article .article__author .author__date {
    font-size: 12px;
    color: gray;
}

/* SHOWCASE */
.showcase {
    margin-bottom: 24px;
}
.showcase .showcase__item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #fff;
    border: 1px solid #091f3014;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
    margin-bottom: 20px;
    padding: 24px;
    overflow: hidden;
}
.showcase .showcase__item .item__left {
    display: flex;
    flex-direction: column;
}
.showcase .showcase__item .item__logo {
    width: 200px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.showcase .showcase__item .item__logo img {
    width: 100%;
    height: auto;
}
.showcase .showcase__item .item__title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.showcase .showcase__item .item__rating {
    display: flex;
    justify-content: center;
}
.showcase .showcase__item .item__rating span {
    font-size: 18px;
    font-weight: 700;
    margin-right: 8px;
}

.showcase .showcase__item .item__center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 30px;
}
.showcase .showcase__item .item__bonus {
    color: #212529;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 24px;
}
.showcase .showcase__item .item__bonus i {
    font-size: 22px;
    color: rgba(255, 0, 0, 0.5);
    margin-right: 10px;
}
.showcase .showcase__item .item__advant {
    list-style: none;
    font-size: 14px;
    column-count: 2;
    padding-left: 0;
    margin-bottom: 24px;
}
.showcase .showcase__item .item__advant li {
    display: flex;
    margin-bottom: 12px;
    line-height: 1;
}
.showcase .showcase__item .item__advant li i {
    font-size: 16px;
    color: rgba(0, 128, 0, 0.5);
    margin-right: 10px;
}
.showcase .showcase__item .item__tc {
    font-size: 14px;
    text-align: center;
    line-height: 1;
    margin: 0;
}

.showcase .showcase__item .item__right {
    display: flex;
    flex-direction: column;
}
.showcase .showcase__item .item__link-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    min-height: 48px;
    background-color: #3790CB;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all .3s ease;
}
.showcase .showcase__item .item__link-outer:hover {
    background-color: #000;
}
.showcase .showcase__item .item__link {
    width: 200px;
    min-height: 48px;
    color: #3790CB;
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    background-color: #fff;
}
.showcase .showcase__item .item__link:hover {
    color: #64aad9;
}

/* SINGLE AUTHOR */
.single-author {}
.single-author .single-author__top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}
.single-author .single-author__left {
    margin-right: 30px;
}
.single-author .single-author__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}
.single-author .single-author__image img {
    width: 100%;
    height: auto;
}
.single-author .single-author__social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.single-author .single-author__social a {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}
.single-author .single-author__social a:hover {
    opacity: 0.7;
    transition: none;
}

.single-author .single-author__right {}
.single-author .single-author__name {}
.single-author .single-author__info {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.single-author .single-author__post-list {}
.single-author .single-author__post-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #091f3014;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
    margin-bottom: 20px;
    padding: 24px;
    overflow: hidden;
}
.single-author .post-item__image {
    width: 250px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.single-author .post-item__image img {
    width: 100%;
    height: auto;
}
.single-author .post-item__info {
    display: flex;
    flex-direction: column;
}
.single-author .post-item__title {
    font-size: 22px;
    font-weight: 600;
}
.single-author .post-item__date {
    font-size: 12px;
}
.single-author .post-item__more {
    font-size: 18px;
}

/* AUTHORS */
.authors .authors__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.authors .authors__item {
    flex-basis: calc(50% - 15px);
    height: 160px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid #091f3014;
    border-radius: 100px 0 0 100px;
    box-shadow: 0 4px 16px #091f3014;
}
.authors .authors__item .item__image {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    overflow: hidden;
}
.authors .authors__item .item__image img {
    width: 100%;
    height: 100%;
}
.authors .authors__item .item__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}
.authors .authors__item .item__name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.authors .authors__item .item__desc {
    font-size: 16px;
}
.authors .authors__item .item__link {}

/* COMMENTS */
#comments {
    margin: 50px 0 30px;
    border-top: 2px solid #3790CB;
}
#comments .comment-empty {
    font-size: 18px;
    padding-top: 20px;
    margin-bottom: 20px;
}
#respond {
    padding: 30px 0;
    border-top: solid 1px #c8c8c8;
}
.comments-block {
    padding-top: 30px;
}
.comment {
    background-color: #fff;
    border: 1px solid #091f3014;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
}
.comment #respond {
    border: none;
}
.comment .comment__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.comment .comment__top {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.comment .comment__meta {}
.comment .comment__avatar {
    margin-right: 10px;
}
.comment .comment__author {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 8px;
}
.comment .comment__date {
    display: block;
    font-size: 12px;
    line-height: 1;
    color: gray;
}
.comment .comment__in-moderation {
    color: red;
}
.comment .comment-edit-link,
.comment .comment__in-moderation {
    position: absolute;
    top: 0;
    right: 0;
}
.comment .comment-reply-link i {
    margin-left: 8px;
}
.comment .comment-reply-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 400;
}
.comment .comment-reply-title a {
    width: 150px;
    font-weight: 600;
    text-align: center;
}
.comment .children {
    margin-top: 24px;
}

.comment-form {
    display: flex;
    align-items: center;
}
.comment-form .comment-form__field {
    position: relative;
    margin: 0 20px 0 0;
}
.comment-form .comment-form__field input {
    margin: 0;
    border: solid 1px #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px #091f3014;
}
.comment-form .comment-form__field.error input {
    border-color: red;
}
.comment-form .comment-form__field span {
    position: absolute;
    bottom: -20px;
    left: 10px;
    color: red;
    font-size: 14px;
}
.comment-form .comment-form-comment {
    width: 100%;
}
.comment-form .form-submit {
    margin-bottom: 0;
}
.comment-form .form-submit input[type=submit] {
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    max-width: 150px;
}