.ws-store, .webstore {
    overflow: inherit;
}
.flex-start-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex-center-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex-center-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.flex-center-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-center-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.users-sidebar__title .active {
    color: var(--ws-color-primary);
}
.activity-comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 20px 20px 0 20px;
}
.activity-comment-item .image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
}
.activity-comment-item .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}
.activity-comment-item .content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 55px);
    flex: 0 0 calc(100% - 55px);
    margin-left: 15px;
}
.activity-comment-item .content_time {
    font-size: 12px;
    margin-bottom: 10px;
    color: #aaa;
}
.activity-comment-item .content_detail {
    font-size: 14px;
    margin-bottom: 10px;
}
.activity-comment-item .content_action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.activity-comment-item .content_action .like {
    margin-right: 10px;
}
.activity-comment-item .content_action p {
    color: #aaa;
    font-size: 12px;
}
.activity-comment-item .content_link {
    font-weight: 500;
    font-size: 16px;
    color: var(--ws-color-black);
}
.activity-comment-item:not(:last-child) .content {
    border-bottom: 1px solid #aaa;
    padding-bottom: 15px;
}
.load_more_global {
    display: block;
    text-align: center;
    margin: 30px auto 10px auto;
}

.authors {
    color: var(--ws-color-black);
    background: var(--ws-color-white);
}
.authors_list {
    clear: both;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
}
.authors_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-right: 50px;
    margin-bottom: 15px;
}
.authors_list_item .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
}
.authors_list_item .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}
.authors_list_item .info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 60px);
    flex: 0 0 calc(100% - 60px);
    width: calc(100% - 60px);
    padding-left: 10px;
}
.authors_list_item .info_name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.authors_list_item a {
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
.authors_detail {
    padding-top: 1.5rem;
    clear: both;
}
.authors_detail_item {
    padding: 20px;
    background: var(--ws-color-white);
    position: relative;
}
.authors_detail_item .ck-content {
    max-height: 500px;
    overflow: hidden;
}
.authors_detail_item.active .ck-content {
    max-height: 100%;
}
.authors_detail_item:after {
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#4f4e4e));
    background-image: linear-gradient(to bottom, transparent, #4f4e4e);
}
.authors_detail_item .read_more {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 99;
}
.authors_detail_item .read_more_btn {
    background: var(--ws-color-white);
    height: 35px;
    width: 100px;
    color: var(--ws-color-primary);
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
.authors_detail_item .read_more_btn svg {
    height: 1rem;
}
.authors_detail_item .read_more_btn svg path {
    fill: var(--ws-color-primary);
}
.authors_detail_item .read_more_btn span {
    padding: 0 3px;
}
.hot_author_item {
    padding: 10px;
}
.hot_author_item .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
}
.hot_author_item .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}
.hot_author_item .info {
    padding-left: 10px;
}
.hot_author_item .info_name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.hot_author_item .info_position {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 12px;
}
.author-single {
    color: var(--ws-color-black);
}
.author-single-content {
    padding: 30px;
    background: var(--ws-color-white);
    margin-bottom: 50px;
    border-radius: 10px;
}
.author-single-content .content-top {
    margin-bottom: 30px;
}
.author-single-content .content-top .authors_list_item {
    margin-bottom: 0;
}
.author-single-content .content-top .authors_list_item a {
    padding-bottom: 0;
    border-bottom: 0;
}
.author-single-content .content-introduce {
    margin-bottom: 30px;
}
.author-single-content .content-post_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.author-single-content .content-post_list .item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.author-single-content .content-post_list .item a:hover {
    color: inherit;
}
.author-single-content .content-post_list .item h2:hover {
    color: var(--ws-color-primary);
}
.author-single-content .content-post_list .item_image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    width: 200px;
    border-radius: 6px;
    overflow: hidden;
}
.author-single-content .content-post_list .item_image img {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}
.author-single-content .content-post_list .item_content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 220px);
    flex: 0 0 calc(100% - 220px);
    margin-right: 20px;
}
.author-single-content .content-post_list .item_content_name {
    line-height: 1.5;
    font-size: 20px;
    display: block;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.author-single-content .content-post_list .item_content_desc {
    margin: 0;
    text-align: justify;
    line-height: 1.5;
    max-height: 80px;
    overflow: hidden;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.author-single-content .content .author-social {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.author-single-content .content .social_title {
    text-align: right;
    margin-bottom: 10px;
}
.author-single-content .content .social_item {
    display: inline-block;
    width: 40px;
    background: #f9f9f9;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
}
.author-single-content .content .social_item:not(:last-child) {
    margin-right: 10px;
}
.author-single-content .content .social_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    font-size: 18px;
}
.author-single-content .content .social_item a:hover {
    color: var(--ws-color-white);
    background: var(--ws-color-primary);
}
.author-single-content .right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    position: sticky;
    top: 100px;
}
.author-single-content .right_title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #222;
    display: inline-block;
    font-weight: 700;
    font-family: Arial, sans-serif;
}
.author-single-content .right_desc {
    margin-bottom: 15px;
}
.author-single-content .right_desc p {
    font-size: 0.8rem;
    line-height: 1.8em;
}
.author-single-content .right_button {
    height: 40px;
    border-radius: 6px;
    background: var(--ws-color-primary);
    text-align: center;
    color: #fff;
    display: block;
    line-height: 40px;
    text-transform: uppercase;
}
.load_global_list {
    margin-top: 25px;
}
.author-single-content .content-post .noitem {
    margin: 0;
    font-size: 16px;
}

@media screen and (max-width: 767px)
{
    .ws-store,
    .webstore {
        overflow: hidden;
    }
    .ws-content .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    .author-single-content {
        display: grid;
        padding: 20px;
        margin-bottom: 40px;
    }
    .author-single-content .content {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
    }
    .authors_list_item {
        padding-right: 0;
    }
    .item_content,
    .item_image {
        position: relative;
    }
    .author-single-content .content-post_list .item a {
        gap: 15px;
        display: grid;
    }
    .author-single-content .content-post_list .item_image {
        width: 100%;
    }
}