@charset "utf-8";

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

.title i {
    margin-left: 5px;
}

.text {
    font-weight: 300;
    color: var(--dark2);
}

.text2 {
    font-weight: bold;
    color: var(--dark2);
}

.text_gray {
    font-weight: 200;
    color: var(--dark3);
}

strong {
    font-size: var(--font_l);
    font-weight: 400;
}

.sub_title {
    font-weight: 200;
    color: var(--dark3);
    font-size: var(--font_s);
}

.border_gradient {
    background-image: linear-gradient(rgba(253, 208, 116, 1), rgba(247, 127, 52, 1), rgba(221, 50, 110, 1), rgba(214, 43, 126, 1), rgba(164, 50, 177, 1));
}

.border_gray {
    border: 1px solid var(--gray);
}

.border_bottom {
    border-bottom: 1px solid var(--gray);
}

.index {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: calc(100% - 20px);
    max-width: 1280px;
    margin: auto;
    height: 100vh;
    box-sizing: border-box;
}

.panel .index {
    max-width: 100%;
}

.panel {
    max-width: 100%;
}

.aside_right {
    display: inline-block;
    vertical-align: top;
    width: 270px;
    overflow: hidden;
    border-left: 1px solid var(--light);
    padding-top: 20px;
    box-sizing: border-box;
}

.logo {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.logo img {
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    max-width: 100%;
    margin-left: var(--margin_m);
    object-fit: contain;
}

.logo h1 {
    display: inline-block;
    font-family: var(--font_head);
    font-size: var(--font_l);
    color: var(--dark2);
}

.logo a {
    color: var(--dark2);
}

.side_menu {
    display: block;
    width: 100%;
    height: calc(100vh - 95px);
    overflow: auto;
    padding: var(--m) var(--m) var(--x) var(--m);
    box-sizing: border-box;
}

.side_menu ul {
    list-style-type: none;
}

.side_menu ul li {
    width: 100%;
    border-radius: var(--radius_25);
    margin-bottom: var(--margin_s);
}

.side_menu ul .select {
    background: var(--light);
}

.side_menu ul .select i {
    font-weight: 900 !important;
}

.side_menu ul li a {
    display: block;
    color: var(--dark2);
    font-weight: 300;
    padding: var(--m) var(--x);
    box-sizing: border-box;
}

.side_menu ul li:hover {
    background: var(--light);
}

.side_menu ul .select a span {
    font-weight: 400;
}

.side_menu ul li a i {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 25px;
    font-size: var(--l);
}

.side_menu ul li a .alert_menu {
    float: left;
    width: 20px;
    height: 20px;
    border-radius: var(--radius_15);
    background: var(--red);
    color: var(--white);
    padding: 2px;
    box-sizing: border-box;
    text-align: center;
    font-size: 8pt;
}

.aside_left {
    display: inline-block;
    vertical-align: top;
    width: 270px;
    overflow: hidden;
}

.story_img {
    display: inline-block;
    vertical-align: top;
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: var(--radius_oval);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.story_img .border_gradient {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.story_img .border_gradient_off {
    background: var(--gray);
}

.story_img .border_light_loading,
.story_img .border_light {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: var(--radius_oval);
    border-top: 5px dashed transparent;
    border-right: 5px dashed transparent;
    border-bottom: 5px dotted transparent;
    border-left: 5px solid transparent;
}

.story_img .border_light_loading {
    border-top: 5px dashed #ffffff;
    border-right: 5px dashed #ffffff;
    border-bottom: 5px dotted #ffffff;
    border-left: 5px solid transparent;
    animation: circle 3s linear infinite;
}

@keyframes circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.story_img .img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: var(--radius_oval);
    border: 2px solid var(--white);
}

.story_img .img img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius_oval);
}

.story_img .img i {
    display: inline-block;
    font-size: var(--font_x);
    color: var(--dark3);
}

.small_image {
    width: 35px;
    height: 35px;
}

.small_image .border_light_loading,
.small_image .border_light {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-top: 2px dashed transparent;
    border-right: 2px dashed transparent;
    border-bottom: 2px dotted transparent;
    border-left: 2px solid transparent;
}

.small_image .border_light_loading {
    border-top: 2px dashed #ffffff;
    border-right: 2px dashed #ffffff;
    border-bottom: 2px dotted #ffffff;
    border-left: 2px solid transparent;
}

.small_image .img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
}

.medium_image {
    width: 62px;
    height: 62px;
}

.medium_image .border_light_loading,
.medium_image .border_light {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-top: 2px dashed transparent;
    border-right: 2px dashed transparent;
    border-bottom: 2px dotted transparent;
    border-left: 2px solid transparent;
}

.medium_image .border_light_loading {
    border-top: 2px dashed #ffffff;
    border-right: 2px dashed #ffffff;
    border-bottom: 2px dotted #ffffff;
    border-left: 2px solid transparent;
}

.medium_image .img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
}

.aside_left .item {
    display: block;
    padding: var(--m) var(--m) var(--x) var(--m);
}

.aside_left .item .item_head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: var(--m) var(--m) var(--x) var(--m);
}

.aside_left .item .item_head a {
    color: var(--dark2);
}

.aside_left .item .item_head span {
    color: var(--dark3);
}

.aside_left .item_user {
    display: block;
    padding: var(--m);
}

.aside_left .item_user .small_image {
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--margin_s);
}

.aside_left .item_user .user_info {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 45px);
}

.user_info .title {
    cursor: pointer;
}

.story .user_info .title {
    display: block;
}

.user_info .title .btn_red_secondary {
    cursor: context-menu;
}

.aside_left .item_user .user_info .title {
    display: block;
}

.section_main {
    display: inline-block;
    width: 100%;
    max-width: 969px;
    height: 100%;
    overflow: auto;
}

.story {
    display: block;
    max-width: 500px;
    overflow: hidden;
    margin: 15px auto;
    position: relative;

    vertical-align: middle;
    width: calc(100% - 10px);
    z-index: 0;

}

.story .item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 62px;
    height: 90px;
    margin-left: var(--margin_s);
    cursor: pointer;
}

.story .btn_scroll_right {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    border-radius: var(--radius_25);
    border: 1px solid var(--gray);
    z-index: 1;
    background: var(--light);
    color: var(--dark3);
    text-align: center;
    cursor: pointer;
    padding-top: 2px;
}

.story .btn_scroll_left {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    border-radius: var(--radius_25);
    border: 1px solid var(--gray);
    z-index: 1;
    background: var(--light);
    color: var(--dark3);
    text-align: center;
    cursor: pointer;
    padding-top: 2px;
}

.story .item .user_info {
    font-size: 8pt;
}

.main_container {
    display: block;
    width: 100%;
    margin: auto;
    max-width: 500px;
    overflow: hidden;
    box-sizing: border-box;
    scrollbar-color: #E2EFFC #FAFAFA;
    scrollbar-width: thin;
}

/*::-webkit-scrollbar { display: none; }*/

.archive_container {
    display: block;
    width: 500px;
    height: calc(100vh - 100px);
    margin: auto;
    overflow: auto;
    box-sizing: border-box;
}

.profile_container {
    display: block;
    width: 100%;
    max-width: 969px;
    height: 100%;
    margin: auto;
    overflow: auto;
    box-sizing: border-box;
}

.part_header {
    display: block;
    margin: var(--margin_l) 0;
    padding: 0 var(--margin_m);
}

.item_article {
    display: block;
    border-bottom: 1px solid var(--gray);
}

.item_article:last-child {
    border-bottom: none;
}

.item_article .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.item_article .head .flex_row {
    align-items: center;
}

.item_article .head .flex_row .story_img {
    margin-left: 10px;
    cursor: pointer;
}

.middle {
    display: inline-block;
    vertical-align: middle;
    margin: 0 var(--margin_m);
    color: var(--secondary);
    font-size: 5px;
}

.color_gray {
    color: var(--dark3) !important;
}

.color_red {
    color: var(--red) !important;
}

.color_yellow {
    color: var(--yellow) !important;
}

.color_primary {
    color: var(--primary) !important;
}

.color_secondary {
    color: var(--secondary_hover) !important;
}

.color_green {
    color: var(--green) !important;
}

.item_article .head .btn_holder i {
    display: grid;
    place-items: center;
    font-size: 16px;
    height: 45px;
    cursor: pointer;
}

.date {
    font-size: 8pt;
    color: var(--dark3);
}

.item_article .main {
    display: block;
    width: 100%;
    border-radius: var(--radius_10);
    overflow: hidden;
    position: relative;
}

.item_article .item_img {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-height: 1920px;
}

.item_article .item_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bl_3_item .item_article .item_img img {
    object-fit: cover;
}

.item_article .main .item_cost {
    background: var(--primary);
    justify-content: end;
}

.item_article .main .cost_info {
    display: flex;
    width: calc(100% - 120px);
    padding: 13px var(--margin_s);
    box-sizing: border-box;
    color: var(--light);
    text-align: left;
    align-items: center;
    justify-content: end;
}

.cost {
    font-weight: 200;
    text-decoration-line: line-through;
}

.cost_off {
    font-weight: 400;
}

.item_article .main .vip_info {
    width: 120px;
    padding: 13px 20px;
    box-sizing: border-box;
    background: var(--red);
    color: var(--light);
    text-align: center;
}

.item_article .post_info .post_action {
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px 0 4px;
    box-sizing: border-box;
}

.item_article .post_info .post_action .left {
    display: inline-block;
    vertical-align: top;
}

.btn_icon {
    cursor: pointer;
    color: var(--dark2);
}

.item_article .post_info .post_action .left .btn_icon {
    display: inline-block;
    font-size: 16px;
    width: 20px;
    margin-right: var(--margin_s);
    text-align: left;
}

.social_inside {
    display: block;
    margin-bottom: var(--margin_m);
    font-size: var(--font_s);
    box-sizing: border-box;
    color: var(--dark2);
    cursor: pointer;
}

.social_inside:hover {
    color: var(--primary);
}

.social_inside span {
    display: inline-block;
    vertical-align: middle;
}

.social_inside i {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    font-size: var(--font_x);
}

.item_article .post_info .post_action .right {
    display: inline-block;
    vertical-align: top;
}

.item_article .post_info .post_action .right .btn_icon {
    font-size: 16px;
    text-align: right;
    margin-left: var(--margin_s);
}

.item_article .post_info .post_like_result {
    padding: 13px 0;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 10px;
}

.item_article .post_info .post_like_result .right {
    align-items: center;
    justify-content: end;
}

.text_s {
    font-size: var(--font_s);
    color: var(--dark3);
}

.text_s strong {
    font-size: 9pt;
    margin: 0 5px;
    color: var(--dark2);
}

.post_detail .top {
    align-items: center;
    margin-bottom: var(--margin_s);
}

.post_detail .btn_normal {
    margin: var(--margin_s) 0;
    padding: var(--margin_s) 0;
}

.post_score {
    padding: 0 10px;
    margin: 10px 0;
}

.post_score .action_title {
    color: var(--dark);
}

.post_score .action_like {
    display: inline-block;
    vertical-align: middle;
    color: var(--green);
    font-size: var(--font_r);
    cursor: pointer;
    padding: 5px;
}

.post_score .action_dislike span,
.post_score .action_like span {
    font-weight: 400;
    margin-right: 5px;
}

.post_score .action_dislike {
    display: inline-block;
    vertical-align: middle;
    color: var(--danger);
    cursor: pointer;
    font-size: var(--font_r);
    padding: 5px;
}

.footer {
    display: block;
    width: 100%;
}

.footer .head {
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer .head {
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer .head .footer_menu {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.footer .head .footer_menu a {
    color: var(--dark3);
    font-size: var(--font_m);
    margin: var(--margin_s) 0;
}

.footer .head .footer_menu .middle:after {
    content: "\f111";
    font-size: 8px;
    display: inline-block;
    vertical-align: middle;
}

.footer .head .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--margin_m);
}

.footer .head .social a {
    margin: 0 10px;
    text-align: center;
    color: var(--dark3);
    font-size: var(--font_x);
}

.footer .copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: var(--margin_l) 0;
    font-size: var(--font_m);
    color: var(--dark3);
}

.footer .copyright img {
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.reihoon {
    font-weight: 500;
    color: var(--reihoon);
}

.search_holder {
    display: block;
    padding: 14px 20px;
}

.search_holder .input {
    background: var(--gray);
    border-radius: var(--radius_10);
    box-shadow: none;
    margin-bottom: 0;
    padding: 0;
}

.search_holder .input input {
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    box-shadow: none;
    border-radius: unset;
    width: calc(100% - 50px);
    margin-bottom: 0;
    color: var(--dark3);
    border: 1px solid transparent;
    padding: var(--margin_m) var(--margin_x);
}

.search_holder .input .search_btn {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    color: var(--dark3);
}

.filter {
    display: block;
    padding: var(--margin_s) 0;
    position: relative;
}

.filter .filter_holder {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: calc(100% - 75px);
}

.filter .filter_holder .item {
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--margin_s);
    margin-bottom: var(--margin_s);
    background: var(--gray);
    padding: 3px var(--margin_m);
    font-size: var(--font_s);
    cursor: pointer;
    border-radius: var(--radius_5);
}

.filter .filter_holder .select {
    background: var(--secondary);
    color: var(--primary);
}

.filter .filter_holder .item i {
    display: inline-block;
    vertical-align: middle;
    margin-right: var(--margin_m);
}

.filter .filter_holder .select:hover {
    background: var(--red_sec);
    color: var(--red);
}

.filter .sort {
    background: var(--gray);
    border-radius: var(--radius_5);
}

.filter .filter_clear {
    float: left;
    color: var(--primary);
    font-size: var(--font_s);
    padding: 3px var(--margin_m) 0 3px;
    cursor: pointer;
}

.filter_hidden_holder {
    width: 500px;
    position: absolute;
    background: var(--white);
    border-radius: var(--radius_10);
    border: 1px solid var(--gray);
    overflow: hidden;
    z-index: 15;
    right: -600px;
    top: 25px;
}

.holder_scale {
    transform: scale(0.0);
}

.holder_scale_open {
    right: 0;
    transform: scale(1, 1);
}

.filter_open {
    display: block;
    width: 100%;
    padding: var(--margin_x) var(--margin_l);
    box-sizing: border-box;
}

.filter_open .head {
    padding: var(--margin_l) var(--margin_s);
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gray);
}

.filter_open .head i {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    text-align: center;
    cursor: pointer;
}

.filter_open .head span {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 50px);
    font-weight: normal;
    text-align: center;
}

.filter_open .filter_list {
    display: block;
    width: 100%;
    overflow: auto;
    max-height: 300px;
}

.filter_list .slide_container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 16px;
}

.filter_list input {
    margin-bottom: var(--margin_s);
}

.filter_list .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2d8ac7;
    cursor: pointer;
}

.filter_list .slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2d8ac7;
    cursor: pointer;
}

.filter_list .range_cost {
    display: block;
    text-align: center;
}

.filter_list .range_cost .span {
    padding: 3px 15px;
    margin: 15px 0;
}

.filter_open .holder_side_list {
    padding: var(--margin_s) var(--margin_m);
    margin-bottom: var(--margin_s);
}

.filter_open .holder_side_list .list {
    display: block;
}

.filter_open .holder_side_list .list .list {
    display: inline-block !important;
}

.filter_open .holder_side_list .list i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.filter_open .filter_item {
    padding: var(--margin_s) var(--margin_m);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    font-weight: 300;
    cursor: pointer;
    color: var(--dark2);
    margin-bottom: var(--margin_l);
}

.filter_open .list_open {
    margin-right: 25px;
}

.filter_open .holder_side_list .list_open div {
    display: block;
    margin: 5px 0 5px 0;
    font-weight: 300;
    color: #333533;
}

.filter_open .current .right,
.filter_open .holder_side_list .list .current,
.filter_open .holder_side_list .list_open .current {
    color: #2d8ac7;
}

.filter_open .current {
    font-weight: 400;
    margin-bottom: 5px;
}

.filter_open .filter_item .left {
    font-weight: 300;
    color: var(--dark3);
}

.filter_open .btn_holder {
    border-top: 1px solid var(--gray);
    margin-top: var(--margin_s);
}

.filter_open .btn_primary {
    display: block;
    margin: var(--margin_s) var(--margin_m);
}

.toggle {
    display: block;
    width: 25px;
    height: 10px;
    border-radius: var(--radius_10);
    background: var(--dark3);
    position: relative;
    cursor: pointer;
}

.toggle_select {
    background: var(--secondary_hover);
}

.toggle .circle {
    position: absolute;
    top: -2px;
    width: 12px;
    height: 12px;
    border-radius: var(--radius_10);
    background: var(--gray);
    border: 1px solid var(--gray);
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.35);

}

.toggle_select .circle {
    left: 12px !important;
    background: var(--primary);
    border: 1px solid var(--secondary_hover);

}

.radio {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: var(--radius_20);
    border: 1px solid var(--dark3);
    cursor: pointer;
    padding: 1px;
    box-sizing: border-box;
    text-align: center;
}

.radio_select .circle {
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: var(--radius_20);
    border: 1px solid var(--secondary_hover);
    background: var(--primary);

}

.filter_open .filter_item .left i {
    display: inline-block;
    vertical-align: middle;
    margin-right: var(--margin_s);
}

.filter_open .filter_item .right i {
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--margin_s);
}

.filter_open_result {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);

}

.checkbox_holder {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
}

.checkbox {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    text-align: center;
    background: #aaadcf33;;
    border-radius: var(--radius_5);
    border: 1px solid var(--gray);
    margin-right: 5px;
    padding: 0 !important;
    cursor: pointer;
    position: relative;
}

.checkbox_text_current {
    color: var(--primary);
}

.checkbox_current, .checked {
    background: var(--primary);
    border: 1px solid #ffffff80;
}

.checkbox_text, .label {
    display: inline-block !important;
    vertical-align: middle !important;
    position: unset !important;
    margin: 0;
    background: transparent !important;
}

.checkbox .circle {
    display: block;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: var(--primary);
    position: absolute;
    left: 3px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.checkbox i {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    color: var(--white);
    margin: auto !important;
}

.bl_4_item,
.bl_3_item {
    display: block;
    width: 100%;
    max-width: 969px;
    padding: var(--margin_x) 0;
    padding-top: 0;
}

.suggest {
    max-width: 500px;
}

.bl_3_item .item_article {
    display: inline-block;
    vertical-align: top;
    width: calc(33% - 15px);
    height: 300px;
    margin: var(--margin_s);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--gray);
    border-radius: var(--radius_10);
    position: relative;
}

.bl_4_item .item_article {
    display: inline-block;
    vertical-align: top;
    width: calc(25% - 20px);
    margin-left: 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: none;
    padding: 2px;
    box-sizing: border-box;
}

.suggest .item_article {
    width: calc(33% - 15px) !important;
    margin-left: 10px !important;
}

.bl_4_item .item_article .item_img {
    border: 1px solid var(--gray);
    border-radius: var(--radius_10);
    height: 220px;
}

.bl_4_item .w33 {
    width: calc(33% - 20px) !important;
}

.suggest .item_article .item_img {
    height: 150px;
}

.shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -100%;
    background-image: linear-gradient(to top, var(--dark2), transparent);
}

.bl_3_item .item_article:hover .shadow {
    bottom: 0;
}

.bl_3_item .item_article .item_detail {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.bl_3_item .item_article .item_detail .type {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: var(--font_l);
    color: var(--white);
    text-shadow: 0 0 1px var(--dark3);

}

.bl_3_item .item_article .item_detail .title {
    display: block;
    opacity: 0;
    position: absolute;
    bottom: 30px;
    right: 10px;
    left: 10px;
    margin: auto;
    color: var(--white);
    text-shadow: 0 0 1px var(--dark3);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

}

.bl_3_item .item_article:hover .item_detail .title {
    opacity: 1;
}

.image_scroll {
    display: block;
    width: 100%;
    overflow: hidden;
}

.bl_1_item .item_article .main {
    overflow: scroll;
}

.bl_1_item .item_article .main .item_img {
    width: 100%;
    max-height: 1920px;
    display: inline-block;
    vertical-align: middle;
}

.scroll_bar {
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 2px;
    background: var(--dark3);
    position: relative;
}

.scroll_bar .scroller {
    display: block;
    position: absolute;
    left: 1px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 10%;
    height: 3px;
    border-radius: 2px;
    background: var(--white);
    cursor: pointer;
}

.taxonomy {
    font-size: var(--font_s);
    color: var(--dark3);
    display: inline-block;
}

.taxonomy i {
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--margin_s);
}

.comment_holder {
    margin-top: var(--margin_x);
}

.part_header .item_head,
.post_detail .item_head,
.comment_holder .item_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: var(--margin_m);
}

.comment_holder .item_head .title {
    font-size: var(--font_r);
}

.comment_holder .comment_item {
    width: 100%;
    margin-bottom: var(--margin_m);
}

.comment-part .comment_rate {
    margin-right: 25px;
    color: var(--dark3);
    font-size: 11pt;
}

.comment_rate i {
    color: var(--yellow);
    cursor: pointer;
}

.comment_holder .replay {
    border-right: 1px solid var(--secondary);
    padding-right: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.comment_holder .comment_item .comment_head {
    display: flex;
    align-items: baseline;
    justify-content: start;
    flex-wrap: wrap;
}

.comment_holder .comment_item .comment_head .user_info {
    font-size: var(--font_m);
}

.comment_holder .comment_item .comment_head .title {
    font-size: var(--font_m);
    font-weight: 200;
    width: 80%;

}

.comment_holder .comment_item .comment_action {
    display: block;
    margin: var(--margin_s) 0;
}

.comment_holder .comment_item .comment_action .btn_normal,
.comment_holder .comment_item .comment_action .text_secondary {
    display: inline-block;
    vertical-align: middle;
    color: var(--dark3);
    font-size: var(--font_s);
    margin-left: 10px;
}

.btn_normal {
    display: inline-block;
    vertical-align: middle;
    color: var(--primary) !important;
    font-size: var(--font_s);
    cursor: pointer;
}

.comment_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--gray);
    border-top: 1px solid var(--gray);
}

.comment_form textarea {
    border: none;
    height: auto;
    width: calc(100% - 100px);
    box-shadow: none;
    background: none;
    min-width: unset;
    max-width: unset;
    padding: 0;
    padding-top: var(--margin_l);
    margin-bottom: 0;
    font-weight: 300;
    border: none !important;
}

.bl_4_item .item_article {
    display: inline-block;
    width: calc(25% - 6px);
    margin: 0;
}

.bl_1_item .item_article .post_action,
.bl_4_item .item_article .post_action {
    align-items: start;
}

.bl_1_item .item_article .post_action .right {
    width: calc(100% - 100px);
}

.bl_4_item .item_article .post_action .right {
    width: calc(100% - 20px);
}

.bl_4_item .item_article .post_action .title {
    width: 100%;
    font-size: var(--font_m);
}

.bl_1_item .item_article .item_cost {
    margin: var(--margin_m) 0;
}

.bl_1_item .item_article .item_cost .cost {
    margin-bottom: var(--margin_s);
}

.item_select .item_text .label,
.item_select .item_text .result {
    display: inline-block;
    color: var(--dark3);
    font-size: var(--font_s);
}

.item_select .item_info .img {
    display: inline-block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius_5);
    border: 1px solid transparent;
    padding: 2px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

.item_select .item_info .img img {
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    object-fit: contain;
    border-radius: var(--radius_5);
    border: 1px solid var(--gray);
}

.item_select .item_info .item {
    display: inline-block;
    text-align: center;
    padding: 2px;
    box-sizing: border-box;
    border-radius: var(--radius_5);
    border: 1px solid transparent;
}

.item_select .item_info .item span {
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: var(--radius_5);
    border: 1px solid var(--gray);
}

.item_select .item_info .item i {
    display: inline-block;
    vertical-align: middle;
    padding-top: 5px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: var(--radius_5);
    border: 1px solid var(--gray);
    width: 25px;
    height: 25px;
}

.item_select .item_info .select {
    border: 1px solid var(--dark2);
}

.bl_1_item .item_article .btn_holder .btn_secondary,
.bl_1_item .item_article .btn_holder .btn_red_secondary,
.bl_1_item .item_article .btn_holder .btn_primary {
    display: block;
}

.item_specifications {
    display: block;
    width: 100%;
    margin-bottom: var(--margin_x);
}

.item_specifications .title {
    display: block;
    margin-top: var(--margin_x);
    margin-bottom: var(--margin_s);
    font-size: var(--font_r);
    color: var(--dark2);
    font-weight: bold;
}

.table .table_row {
    display: block;
    width: 100%;
    margin-bottom: var(--margin_m);
}

.table .table_row .table_title {
    display: inline-block;
    vertical-align: top;
    min-width: 150px;
}

.table .table_row .table_title i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.table .table_row .table_text {
    display: inline-block;
    vertical-align: top;
    color: var(--dark3);
}

.page_title {
    display: block;
    padding-top: var(--margin_x);
    font-size: var(--font_r);
    margin-bottom: var(--margin_l);
}

.page_title i {
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--margin_m);
}

.bl_row_item {
    display: block;
    padding: var(--margin_m);
    border-bottom: 1px dashed var(--gray);
    width: 100%;
    box-sizing: border-box;
}

.bl_row_item .btn_holder {
    padding-top: var(--margin_m);
}

.bl_row_item .item_article {
    padding: var(--margin_m) 0;
}

.bl_row_item .item_article .item_img {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    height: 100px;
    border: 1px solid var(--gray);
    border-radius: var(--radius_10);
    overflow: hidden;
}

.bl_row_item .item_article .post_info {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 155px);
}

.bl_row_item .item_article .post_info .title {
    display: block;
}

.bl_row_item .item_article .post_info .text {
    margin-bottom: var(--margin_m);
}

.bl_row_item .item_article .post_info .cost_info {
    align-items: center;
}

.cost_info strong {
    font-size: var(--font_r);
    font-weight: 400;
}

strong {
    align-items: center;
}

.bl_row_item .post_info .count {
    align-items: center;
}

.bl_row_item .post_info .count .btn {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    cursor: pointer;
}

.bl_row_item .post_info .count .count_result {
    display: inline-block;
    vertical-align: middle;
    min-width: 25px;
    text-align: center;
}

.bl_row_item .post_info .other_info {
    color: var(--dark2);
}

.bl_row_item .item_article .post_action {
    float: left;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray);
    padding-top: 2px;
    box-sizing: border-box;
    text-align: center;
    border-radius: var(--radius_20);
}

.bl_row_item .item_article .post_action i {
    display: inline-block;
    vertical-align: top;
    font-size: var(--l);
    text-align: center;
    cursor: pointer;
    color: transparent;
}

.select .post_action i {
    color: var(--primary) !important;
}

.cart_result .cost_total {
    width: 100%;
    padding: 10px 0 15px 0;
    box-sizing: border-box;
    align-items: start;
}

.cart_result {
    display: block;
    margin: var(--margin_m) 0;
}

.cart_result .cost_total div {
    margin-bottom: 8px;
}

.cart_result .cost_total .text {
    margin-bottom: 4px;
}

.cart_result .cost_total div span {
    margin-left: 8px;
    color: var(--dark3);
    font-weight: 200;
}

.cart_result .cost_total img {
    margin-right: 8px;
}

.cart_result .cost_total strong {
    font-size: var(--font_r);
    font-weight: 400;
}

.table2 .text {
    margin-bottom: var(--margin_s);
}

.table2 .text {
    margin-bottom: var(--margin_s);
}

.item_article .table2 {

}

.profile_card_header {
    display: block;
    padding: var(--margin_x);
    background: var(--white);
}

.profile_card_header .profile_img {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    text-align: center;
}

.profile_card_header .profile_detail {
    display: block;
    vertical-align: top;
}

.profile_card_header .profile_detail .detail_head {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 305px);
}

.profile_card_header .profile_detail .head {
    display: block;
    margin-bottom: var(--margin_m);
}

.profile_card_header .analytics {
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: var(--margin_m);
}

.profile_card_header .analytics .item {
    display: inline-block;
    vertical-align: middle;
    min-width: 50px;
    font-size: 8pt;
    text-align: center;
}

.profile_card_header .analytics .item strong {
    display: block;
    margin-left: var(--margin_s);
    font-weight: 400;
    font-size: 10pt;
}

.nav {
    display: block;
    padding: var(--margin_x) 0;
}

.nav .nav_action {
    float: left;
}

.menu_holder {
    position: relative;
    width: 100%;
    margin-bottom: var(--margin_x);
    overflow: auto;
}

.menu_holder .menu_scroller {
    width: calc(127px * 7);
}

.menu_holder .scroll_btn {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.menu_holder .scroll_btn i {
    font-size: var(--font_l);
    color: var(--dark3);
}


.menu_holder .menu_scroller .item {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    margin: 0 var(--margin_l);
    cursor: pointer;
    color: var(--dark2);
    text-align: center;
    position: relative;
}

.counter {
    display: block;
    position: absolute;
    background: var(--red_sec);
    color: var(--red);
    top: 5px;
    left: 25px;
    width: 20px;
    height: 20px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 3px;
    border-radius: var(--radius_10);
}

.menu_holder .menu_scroller .select {
    color: var(--primary);
}

.menu_holder .menu_scroller .item i {
    display: block;
    font-size: var(--font_x1);
    margin-bottom: var(--margin_m);
}

.menu_holder_tab {
    display: block;
    width: 100%;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.menu_holder_tab .item {
    display: inline-block;
    vertical-align: top;
    color: var(--dark3);
    padding: var(--margin_m) var(--margin_x);
}

.menu_holder_tab .select {
    color: var(--primary);
    border-top: 1px solid var(--dark2);
}

.welcome {
    height: 100vh !important;
}

.welcome .main {
    display: block;
    width: 100%;
    height: 100%;
}

.welcome .main .btn_red,
.welcome .main .btn_red_secondary,
.welcome .main .btn_secondary {
    display: block;
    width: 500px;
    margin: auto;
}

.welcome .main .error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 500px;
    text-align: center;
    padding: var(--margin_x);
    box-sizing: border-box;
    border-radius: var(--radius_10);
    margin: 5% auto var(--margin_l) auto;
}

.welcome .main .accept {
    background: var(--success_sec);
    color: var(--success);
}

.welcome .main .deny {
    background: var(--red_sec);
    color: red;
}

.welcome .main .error i {
    font-size: 200px;
    margin-bottom: var(--margin_xl);
}

.welcome .main .error h2 {
    display: block;
    text-align: center;
    font-size: var(--font_xl);
    font-weight: 500;
    font-family: var(--font_head);
    margin-bottom: var(--margin_m);
}

.welcome .main .error p {
    display: block;
    text-align: center;
    max-width: 90%;
    color: var(--dark3);
}

.bottom_nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-top: 1px solid var(--gray);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: var(--margin_m) 0 var(--margin_x) 0;
}

.bottom_nav .item {
    text-align: center;
    font-size: 18px;
    color: var(--dark2);
    box-sizing: border-box;
    display: grid;
    place-items: center;
}

.bottom_nav .item .item_img {
    width: 25px;
    height: 25px;
    border-radius: var(--radius_20);
    overflow: hidden;
    border: 1px solid var(--dark3);
}

.bottom_nav .item .item_img img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: var(--radius_20);
}

.top_nav {
    display: none;
    padding: var(--margin_x) var(--margin_x) 0 var(--margin_x);
}

.top_nav .logo {
    width: auto;
    margin-bottom: var(--margin_s);
}

.top_nav .logo img {
    margin-left: var(--margin_s);
}

.top_nav .nav_action .btn {
    font-size: 18px;
    padding: var(--margin_s);
    margin-right: var(--margin_m);
    color: var(--dark2);
    box-sizing: border-box;
    position: relative;
}

.top_nav .logo i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.top_nav .nav_action .btn .notification {
    position: absolute;
    top: 0;
    right: -5px;
    width: 15px;
    height: 15px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius_10);
    text-align: center;
    font-size: var(--font_s);
}

.res_bottom_result {
    position: fixed;
    bottom: -1000%;
    width: 100%;
    background-color: var(--white);
    padding: 24px 24px 50px 24px;
    right: 0;
    left: 0;
    margin: auto;
    box-sizing: border-box;
    z-index: 11;
    border-radius: var(--radius_10);
}

.set_address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.set_address .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 11pt;
    color: var(--dark);
}

.set_address .title i {
    color: var(--red_soft2);
    font-size: 18px;
    padding: 5px;
    cursor: pointer;
}

.set_address textarea {
    margin-bottom: 24px;
}

.story_holder {
    display: block;
    transform: scale(0, 0);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    background: #000000ee;
    z-index: 20;
}

.story_holder .story_main {
    display: block;
    width: 100%;
    height: 100vh;
}

.story_holder .story_main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.8s ease-in-out;
    transform: translate(0, 0);
}

.story_holder .story_header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 500px;
    margin: auto;
}

.story_holder .story_header .user_info {
    margin-right: var(--margin_m);
}

.story_holder .story_header .user_info .title {
    color: var(--light);
}

.story_holder .story_header .story_count {
    display: block;
    margin: var(--margin_l) 2px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--dark3);
    text-align: right;
    overflow: hidden;

}

.story_holder .story_header .story_count .story_timer {
    display: block;
    height: 2px;
    background: var(--white);
    width: 0;
}

.story_holder .story_header .story_action i {
    font-size: var(--font_x);
    color: var(--white);
    padding: 0 var(--margin_l);
    cursor: pointer;
}

.story_holder .story_footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 500px;
    padding: 0 var(--margin_l);
    box-sizing: border-box;
    margin: var(--margin_l) auto;
}

.story_holder .story_footer .btn_primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1877F255;
}

.story_holder .story_btn {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
}

.story_holder .story_btn_right {
    display: block;
    position: fixed;
    top: 65px;
    right: 0;
    margin: auto;
    width: 20%;
    height: calc(100vh - 120px);
}

.story_holder .story_btn_left {
    display: block;
    position: fixed;
    top: 65px;
    left: 0;
    margin: auto;
    width: 80%;
    height: calc(100vh - 120px);
}

.story_holder .story_btn_right i,
.story_holder .story_btn_left i {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 40px;
    top: 0;
    bottom: 0;
    left: 20%;
    margin: auto;
    color: var(--white);
    cursor: pointer;
}

.error_page {
    display: block;
    text-align: center;
    margin: 50px auto;
}

.error_page span {
    display: block;
    font-size: 12pt;
    color: var(--primary);
}

.error_page i {
    display: block;
    color: var(--primary);
    font-size: 40px;
}

.error_page a {
    display: block;
    max-width: 375px;
    margin: 10px auto;
}

.page_number {
    display: block;
    margin: 60px auto 10px auto;
    text-align: center;
}

.page_number a {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    padding: 5px 10px;
    display: inline-block;
    box-sizing: border-box;
    color: #353535;
    background: #ecf0f1;
    border-radius: 50%;
    border: solid 1px var(--white);
    cursor: pointer;
}

.page_number a:hover {
    border: solid 1px var(--secondary);
    color: var(--primary);
}

.page_number .page_active,
.page_number .current,
.page_number .active {
    border: solid 1px var(--secondary_hover);
    background: var(--primary);
    color: var(--white);
    cursor: context-menu;
}

.table .bl_4_item .item_article {
    display: inline-block;
    vertical-align: top;
    width: calc(33% - 10px);
    margin: var(--margin_s);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--gray);
    border-radius: var(--radius_10);
    position: relative;
}

.breadcrumbs {
    display: flex;
    flex-direction: row;
}

.breadcrumbs .item {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--dark3);
    border-bottom: 10px solid var(--gray);
    padding: 2px;
    box-sizing: border-box;
    position: relative;
}

.breadcrumbs .item span {
    display: block;
    padding: 5px;
    box-sizing: border-box;
}

.breadcrumbs .current span {
    font-weight: 400;
}

.breadcrumbs .current {
    color: var(--primary);
    border-bottom: 10px solid var(--secondary_hover);
}

.breadcrumbs .current_orange {
    color: var(--orange);
    border-bottom: 10px solid var(--orange);
}

.breadcrumbs .current_green {
    color: var(--green);
    border-bottom: 10px solid var(--success);
}

/*************************************/

@media screen and (max-width: 850px) {
    .aside_right, .aside_left {
        display: none;
    }

    .section_main {
        max-width: 100%;

    }

    .index {
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 112px);
    }

    .bottom_nav {
        display: flex;
    }

    .main_container {
        width: 100%;
    }

    .footer_menu {
        padding-right: var(--margin_s);
    }

    /*.footer {*/
    /*    display: none;*/
    /*}*/
    .story {
        width: 100%;
        margin: 0 auto;
        border-bottom: 1px solid var(--gray);
        padding: var(--margin_s);
        box-sizing: border-box;
    }

    .story .item {
        width: 62px;
        margin-right: 0;
    }

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

    .top_nav .logo img {
        height: 40px;
    }

    .item_article .post_info .post_detail {
        padding: 0 var(--margin_s);
    }

    .item_article .post_info .post_like_result,
    .item_article .post_info .post_action {
        padding: 13px var(--margin_s);
        border-bottom: none;
        margin-bottom: 0;
    }

    .item_article .head {
        padding: var(--margin_s);
    }

    .item_article .main {
        border-radius: 0;
    }

    .search_holder {
        padding: 0 16px;
    }

    .search_holder .input {
        border-radius: var(--radius_5);
    }

    .item_article .post_info .post_like_result, .item_article .post_info .post_action {
        padding: 13px 0;
    }

    .comment_holder {
        padding: 0 var(--margin_m)
    }

    .post_info {
        padding: 0 var(--margin_m);
    }

    .search_holder .input input {
        padding: var(--margin_s) var(--margin_x);
    }

    .archive_container {
        width: 100%;
        height: auto;
    }

    .archive .archive_container {
        padding-top: 0;
        height: calc(100% - 60px);
    }

    .bl_4_item, .bl_3_item {
        padding-top: 0;
    }

    .story .btn_scroll_left,
    .story .btn_scroll_right {
        display: none;
    }

    .story {
        overflow: auto;
    }
}

@media screen and (max-width: 768px) {
    .suggest .item_article,
    .bl_4_item .item_article {
        width: calc(50% - 5px) !important;
        margin-left: 0 !important;
    }

    .bl_4_item .item_article .post_action .title {
        font-size: var(--font_s);
    }

    .item_article .post_info .post_like_result, .item_article .post_info .post_action {
        padding-bottom: 0;
    }

    .profile_card_header .profile_img {
        width: auto;
        margin-left: 15px;
    }

    .profile_card_header .profile_img .story_img {
        width: 65px;
        height: 65px;
    }

    .profile_card_header .profile_img .story_img .img {
        width: calc(100% - 8px);
        height: calc(100% - 8px);
    }

    .profile_card_header .profile_detail .detail_head {
        width: calc(100% - 85px);
    }

    .profile_card_header .profile_detail .head {
        justify-content: space-between;
    }

    .profile_card_header .profile_detail .detail_head .btn_secondary_gray {
        width: auto;
        padding: var(--margin_m) !important;
        margin: 0 !important;
    }

    .profile_card_header .profile_detail .detail_head .btn_secondary_gray span {
        display: none;
    }

    .filter_hidden_holder {
        position: fixed;
        right: 0;
        left: 0;
        bottom: -100%;
        top: unset;
        width: 100%;
    }

    .holder_scale_open {
        bottom: 0;

    }

    .bl_4_item .item_article .item_img {
        height: 212px;
    }

    .bl_3_item .item_article {
        width: calc(50% - 15px);
        height: 204px;
    }

    .shadow {
        bottom: 0;
    }

    .bl_3_item .item_article .item_detail .title {
        opacity: 1;
    }

    .profile_card_header .analytics .item {
        width: calc(50% - 5px);
        margin-bottom: var(--margin_l);
    }

    .story_holder .story_btn_right i, .story_holder .story_btn_left i {
        display: none;
    }

    .story_holder .story_footer,
    .story_holder .story_header {
        max-width: 100%;
    }

    .top_nav .logo img {
        height: 30px;
    }

    .menu_holder .menu_scroller {
        width: calc(80px * 7);
    }

}

@media screen and (max-width: 650px) {

    .btn_normal,
    .btn_border_gray,
    .btn_primary,
    form .btn_secondary,
    form.btn_red_secondary,
    .btn_secondary_gray {
        margin: var(--margin_s) auto !important;
        padding: var(--margin_s) var(--margin_m) !important;
        font-size: var(--font_s);
        width: 100%;
    }

    .table_holder .table_name .btn_secondary_gray,
    .comment_form .btn_normal {
        width: auto;
        margin: unset !important;
    }

    .bl_1_item .item_article .main .item_img {
        width: 100%;
        height: auto;
    }

    .welcome .main .error i {
        font-size: 100px;
    }

    .welcome {
        padding: 0 var(--margin_m)
    }

    .welcome .main .btn_secondary {
        width: 100%;
    }

    .welcome .main .error {
        height: 400px;
        width: 100%;
        padding: var(--margin_x);
    }

    .welcome .main .error h2 {
        font-size: var(--font_x);
    }

    .profile_card_header .analytics .item {
        font-size: var(--font_s);
    }

    .profile_card_header .analytics .item .btn_secondary {
        position: unset !important;

    }

    .profile_card_header .analytics .item strong {
        display: block;
    }

    .bl_row_item .item_article .item_img {
        width: 60px;
        height: 60px;
    }

    .bl_row_item .item_article .post_info {
        width: calc(100% - 115px);
    }

    .footer .copyright {
        font-size: var(--font_s);
    }

}