:root {
    --header_bg: #7da5ff;
    --header_nav: #fff;
    --header-form_bg: #fff;
    --header-form_color: #6b6b6b;
    --header-bg: #e48585;
    --header-bg-nav: 0 0 0 / 0.03;
    --header-article: #f3f3f3;
    --header-statistics: #fcf7f7;
    --color-white: #fff;
    --color-babyred: #e48585;
    --color-babyred-hover: #f37a7a;
    --color-dark: #18191d;
    --color-danger: #fa9f15;
    --color-footer-link: #888;
    --color-gray: #dedede;
    --color-med-gray: #616161;
    --color-light-gray: #e4e4e4;
    --bg-article: #fff;
    --bg-babyred: #e48585;
    --bg-profile-icons: #dcdcdc;
    --shadow-article: 64 64 64 / 0.2;
    --color-sub-title-articles: #6b6b6b;
}

.ones-nav-header {
    background: rgb(var(--header-bg-nav));
    z-index: 1;
}

#header {
    background: var(--header-bg);
    position: relative;
    z-index: 1;
}

#header:before {
    content: '';
    position: absolute;
    background: url('/assets/img/cover.png') no-repeat;
    background-position: center;
    background-size: contain;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

#header .form-control {
    margin: auto;
    padding: 10px;
    background: var(--header-form_bg);
    color: var(--header-form_color);
    font-weight: 500;
    border-radius: 5px 0 0 5px;
}

#header img {
    max-width: 180px;
}

.btn-search {
    background: var(--header-form_bg);
    height: 100%;
    border-radius: 0 0.25rem 0.25rem 0;
    color: var(--color-babyred);
    font-weight: bold;
}

.btn-search:hover {
    color: var(--color-dark);
}

.ones-search-sec {
    color: var(--header_nav);
}

.ones-link-nav {
    color: var(--header_nav);
}

.ones-link-nav:hover {
    color: rgb(255 255 255 / 0.6);
}

.ones-search-con {
    max-width: 770px;
    text-align: center;
    align-items: center;
    margin: auto;
}


.ones-statistics {
    background: var(--header-statistics);
}

.ones-toparticles {
    background: var(--header_nav);
    box-shadow: 0 0 40px rgb(0 0 0 / 0.1);
    padding: 20px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.ones-toparticles:hover {
    transform: translateY(-6px);
}

.ones-toparticles-title {
    position: relative;
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 10px;
}

.ones-toparticles-title:after {
    content: "";
    position: absolute;
    background: var(--color-babyred);
    height: 100%;
    width: 7px;
    top: 0;
    left: -20px;
    border-radius: 0 10px 10px 0;
}

.ones-toparticles-desc {
    color: #6f6f6f;
    font-weight: 400;
}

.section-title {
    text-align: center;
}

.section-title p {
    opacity: 0.7;
}

.ones-highlight {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.ones-highlight-title {
    background: none;
    padding: 10px 0;
    cursor: pointer;
    border: none;
}

.ones-head-highlight {
    text-align: center;
    background: #f5f8fd;
    padding: 10px;
}

.ones-head-highlight h4 {
    margin: 0;
}

.title-sec {
    font-weight: bold;
    color: var(--color-babyred);
}

.ones-highlight-list .far,
.ones-highlight-list .fas,
.ones-highlight-list .fa {
    color: var(--color-babyred);
    margin-right: 10px;
}


.ones-footer,
.ones-more {
    display: flex;
    flex: 1;
    position: relative;
    align-items: center;
}

.ones-footer-right,
.ones-more-right {
    margin-left: auto;
    text-align: right;
}

.ones-title_more {
    font-weight: bold;
    font-size: 20px;
    color: var(--color-babyred);
}

.ones-sub_more {
    opacity: 0.9;
}

.ones-btn-more {
    background: var(--color-babyred);
    color: var(--color-white);
    padding: 0.375rem 2.75rem;
}

.ones-tag,
.ones-tag:hover {
    background: var(--color-babyred);
    color: var(--color-white);
    border-radius: 3px;
    font-weight: bold;
    text-decoration: none;
    padding: 3px 5px;
    transition: all 0.3s ease-in-out;
}

.ones-tag-article {
    opacity: 0.25;
    font-weight: bold;
    text-decoration: none;
    padding: 0 10px;
    color: var(--color-dark)
}

.ones-tags:hover,
.ones-tag:hover {
    opacity: 0.8;
}

.ones-footer-right {
    color: var(--color-footer-link);
    font-weight: 400;
}

.ones-articles-item_title,
.ones-category-left a,
.ones-footer-right a {
    color: var(--color-babyred);
    text-decoration: none;
}

.ones-desc_article {
    font-size: 12px;
}

.ones-profile-top_left,
.ones-category,
.ones-article-comment-author,
.ones-article-footer,
.ones-article-title,
.ones-title_article {
    border-radius: 5px 5px 0 0;
    background: var(--header-article);
    flex-direction: row;
    align-items: center;
    border: none;
}

.ones-article-comment-author {
    background: transparent;
}

.ones-category,
.ones-article_shadow {
    box-shadow: 0 0 30px rgb(var(--shadow-article));
}

.list-group {
    border-radius: 0 0 5px 5px;
}

.ones-profile-top_left_avatar img,
.ones-article-user_avatar img {
    border-radius: 100%;
    max-width: 60px;
    margin-right: 1.5rem;
}

.ones-profile-top_right,
.ones-category-right,
.ones-article-comment-author_buttons,
.ones-article-author,
.ones-article-user_more {
    margin: 0 0 0 auto;
}

.ones-article-user_content h5 {
    color: var(--color-babyred);
    font-weight: bold;
}

.ones-article-user_content h6 {
    font-weight: 300;
}

.ones-article-content {
    background: var(--bg-article);
    padding: 15px;
}

.ones-article-footer {
    background: var(--bg-article);
    border-top: 1px solid var(--header-article);
    padding: 10px;
    border-radius: 0 0 5px 5px !important;
}

.ones-article-author {
    display: flex;
    align-items: center;
}

.ones-article-author img {
    max-width: 30px;
    border-radius: 100%;
    margin-right: 0.5rem;
}

.ones-article-date {
    padding: 3px 10px;
    font-size: 12px;
}

.ones-article-share {
    display: flex;
}

.btn_share {
    margin: 0 5px;
    padding: 0;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    text-align: center;
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.9;
    transition: all 0.3s ease-in-out;
}

.btn_share:hover {
    opacity: 0.8;
    transform: translateY(-6px);
}

.btn_fb {
    background: #3b5998;
}

.btn_normal {
    background: #e48585;
}

.btn_hide {
    background: var(--color-danger);
}

.ones-article-comments_row {
    background: var(--header-article);
    padding: 15px;
    border-radius: 5px;
}

.one-article-comment-author_avatar img {
    max-width: 45px;
    border-radius: 100%;
    margin-right: 1rem;
}

.ones-comment_row {
    position: relative;
    border-radius: 5px;
}

.ones-comment_row:before {
    content: '';
    width: 0;
    height: 0;
    margin-left: 12px;
    border: 10px solid transparent;
    border-bottom-color: var(--color-white);
}

.ones-comment_row:not(:last-child):after {
    content: '';
    background: var(--color-light-gray);
    height: 1px;
    margin: 1.5rem 0;
}

.ones-tags {
    color: var(--color-babyred);
    font-weight: 500;
    text-decoration: none;
}

.ones-nav_menu {
    font-weight: bold;
    color: var(--color-babyred);
}

.ones-card {
    padding: 1rem;
    background: #fff;
    color: var(--color-babyred);
    font-weight: bold;
    border: none;
    box-shadow: 0 0 30px rgb(0 0 0 / 0.1);
}

.ones-card .form-control {
    background: var(--color-gray);
}

.ones-articles-table_items,
.ones-articles-table {
    display: flex;
}

.ones-articles-item {
    flex: 1 0 0;
    justify-content: center;
    align-items: center;
}

.ones-articles-item:nth-child(-n+3) {
    flex: 0 1 200px;
}

.ones-articles-item:first-child {
    padding-left: 1rem;
}

.ones-articles-item:last-child {
    flex: 0 1 150px;
    text-align: center;
}

.ones-articles-table {
    background: var(--bg-babyred);
    color: var(--color-white);
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    padding: 1rem 0;
}

.ones-articles-table_items {
    background: var(--header_nav);
    padding: 1rem 0;
    margin-bottom: 2px;
    justify-content: center;
    align-items: center;
}

.ones-articles-item_author {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.ones-articles-item_author img {
    max-width: 30px;
    border-radius: 100%;
    margin-right: 1rem;
}

.ones-profile-grid {
    margin-right: 0;
    margin-left: 0;
}

.ones-profile-grid>[class*="row"] {
    margin: 0;
}

.ones-profile-grid>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.ones-profile-grid [class*="col-"]:nth-child(1n) {
    border-right-width: 1px;
}

.ones-profile-grid [class*="col-"] {
    border-right: var(--header-article) solid 0;
    border-bottom: var(--header-article) solid 1px;
}

.ones-profile {
    box-shadow: 0 0 30px rgb(var(--shadow-article));
    border-radius: 10px;
}

.ones-profile-grid_header_title .fas {
    background: var(--bg-babyred);
    color: var(--color-white);
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    line-height: 1.3;
    margin-bottom: 10px;
}

.list-group-item img,
.ones-article-content img {
    max-width: 100% !important;
}

.ones-category-inno:hover,
.ones-category-inno {
    cursor: default;
    transform: none;
}

#search_results a:not(:last-child):after {
    content: '/';
    color: var(--color-med-gray);
    font-weight: bold;
    margin: 0 10px;
}

@media (max-width: 966px) {

    .ones-footer,
    .ones-more {
        display: block;
        position: relative;
        align-items: center;
        text-align: center !important;
    }

    .ones-footer-right,
    .ones-more-right {
        text-align: center;
        margin-top: 1rem;
    }

    .ones-articles-table,
    .ones-footer-left {
        display: none !important;
    }

    .ones-profile-top_left,
    .ones-category,
    .ones-article-comment-author,
    .ones-article-footer,
    .ones-article-title,
    .ones-title_article {
        flex-direction: column;
        text-align: center;
    }

    .ones-profile-top_right,
    .ones-category-right,
    .ones-article-comment-author_buttons,
    .ones-article-author,
    .ones-article-user_more {
        margin: 10px;
    }

    .ones-article-user_content {
        margin: 1rem 0;
    }

    .ones-articles-item_author,
    .ones-articles-table_items,
    .ones-articles-table {
        display: block;
        text-align: center;
    }

    .ones-articles-table_items {
        border-bottom: 2px solid var(--bg-babyred);
    }

    .ones-profile-top_left_avatar img,
    .ones-article-user_avatar img {
        margin-right: 0;
    }
}