<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* STYLES 06.04.2025
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #f5f8ff;
    --bg2: #fff;
    --bg3: #e8f5ff;
    --engine: #fff;
    --engine2: #f7f7f7;
    --text: #191c20;
    --text1: #fff;
    --text2: #283e4e;
    --text3: #718ea3;
    --color1: #2196F3;
    --color2: #49afff;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 10px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Geologica", sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.last-news {
  
    background: #e8f5ff;
    box-shadow: 0 7px 16px rgba(20, 36, 56, .04);
    color: #fff;
    font-family: Rubik, sans-serif;
    font-size: 1rem;
    width: 100%;
	margin-top: 10px;
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb),.5);
    background-color: #2196F3;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: 10px;
    color: var(--bs-btn-color);
    cursor: pointer;
    display: inline-block;
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    text-align: center;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    user-select: none;
    vertical-align: middle
}

/* TOPFIVE */
.topfive {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 400px;
}

@media (max-width: 860px) {
    .topfive {
        grid-template-columns: 1fr;
    }
}

.topfive_items {
}

.topfive_item {
    position: relative;
    display: flex;
    grid-gap: 20px;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .topfive_item {
        flex-direction: column;
    }
}

.topfive_item + * {
    margin-top: 20px;
}

.topfive_bg {
    display: inline-block;
    aspect-ratio: 16/9;
    width: 90px;
    min-width: 90px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .topfive_bg {
        width: 100%;
    }
}

.topfive_content {
    width: 100%;
}

.topfive_title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.topfive_title:hover {
    color: var(--color2);
}

.topfive_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.topfive_meta &gt; span {
    color: #777e98;
    margin-right: 15px;
}

.topfive_meta &gt; span i {
    margin-right: 10px;
}
/* JOL NOW */
.jol-now_items {
    position: relative;
    width: 100%;
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 6px 25px -1px rgba(73,141,255,.3);
}
/* ABA REPORT */
.aba-report {
    position: relative;
}

.aba-report_nav {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 5;
}

@media (max-width: 860px) {
    .aba-report_nav {
        position: relative;
        top: -15px;
    }
}

.aba-report_nav i {
    background: var(--color1);
    color: var(--text1);
    border-radius: var(--radius);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.aba-report_nav i:hover {
    background: var(--color2);
}

.aba-report_bg {
    border-radius: var(--radius);
    height: 260px;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-report_bg {
        height: 220px;
    }
}

.aba-report_content h3 {
    margin-bottom: 0;
    color: #1a1a1a;
    font-family: Literata, sans-serif;
}

.aba-report_slide:hover h3 {
    color: var(--color1);
}

.aba-report_content span {
    display: block;
    opacity: 0.8;
    margin-top: 5px;
    font-size: 14px;
}
@media (max-width: 860px) {
    .aba-home_slide, .aba-report {
        flex: none;
    }
}

/* ABA SHORT */
.aba-home_items .aba-short_item {
    position: relative;
    display: block;
    width: 250px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-home_items .aba-short_item {
        width: 100%;
    }
}

.aba-home_items .aba-short_bg {
    height: 140px;
}

@media (max-width: 860px) {
    .aba-home_items .aba-short_bg {
        height: 220px;
    }
}

.aba-home_items .aba-short_item + .aba-short_item {
    margin-top: 30px;
}

.aba-short_bg {
    position: relative;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-short_bg {
        height: 220px;
    }
}

.aba-short_content h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.aba-short_item:hover h3 {
    color: var(--color1);
}

.aba-short_content span {
    opacity: 0.8;
    font-size: 14px;
}

/* SMALL ITEM, LINE ITEM
----------------------------------------------- */
.small-item {width: 23%; margin-bottom: 15px;}
.small-item-img {width: 80px; height: 80px; margin-right: 15px;}
.small-item-title {font-size: 16px; line-height: 20px; max-height: 60px; overflow: hidden; margin-top: -4px;}
.small-item-meta {font-size: 12px; color: #949494; margin-top: 10px;}
.line-item {margin-bottom: 15px;}
.line-item::before {content: ''; width: 15px; height: 2px; background-color: #32a801; margin: 9px 15px 0 0;}
.line-item-title {font-size: 16px;}
.img-box, .img-wide, .img-resp, .img-resp-vert, .img-fit {overflow: hidden; position: relative;}
.img-resp {padding-top: 70%;}
.img-resp-vert {padding-top: 140%;}
.img-box img, .img-resp img, .img-resp-vert img {width: 100%; min-height: 100%; display: block;}
.img-resp img, .img-resp-vert img {position: absolute; left: 0; top: 0;}
.img-wide img {width: 100%; display: block;}
.img-fit img {width: 100%; height: 100%; object-fit: cover;}
.nowrap {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}

.fx-row, #dle-content {display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
.fx-col {display:-ms-flexbox;display:-webkit-flex;display:flex; 
-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}
.fx-center {-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}
.fx-middle {-ms-flex-align:center;-webkit-align-items:center;align-items:center}
.fx-start {-webkit-justify-content:flex-start;justify-content:flex-start;}
.fx-first {-ms-flex-order: -1;-webkit-order: -1;order: -1;}
.fx-last {-ms-flex-order: 10;-webkit-order: 10;order: 10;}
.fx-1 {-ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; 
	max-width: 100%; min-width: 50px;}
.fx-between {-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}

/* ADDITIONAL SECTION */
.additional-news {
    width: 400px;
    margin-left: 40px;
}

@media (max-width: 460px) {
    .additional-news {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
}

.additional-news &gt; div + div {
    margin-top: 50px;
    counter-reset: toc1;
}

.subscribe-news {
    position: relative;
    display: inline-block;
    background: #29a9eb;
    padding: 30px;
    border-radius: 20px;
    color: var(--text-color);
    overflow: hidden;
}

.subscribe-news h4 {
    position: relative;
}

.subscribe-news a {
    background: var(--bg);
    color: var(--text-color1);
}

.subscribe-news:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Telegram_2019_Logo.svg/512px-Telegram_2019_Logo.svg.png);
    background-size: cover;
    opacity: 0.4;
}

/* FIVE TOP */
.fivetop-news {
display: flex;
  flex-direction: row;
  flex-wrap: nowrap;


 	
}
.fivetop-news_items {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
 	
}

.fivetop-news a {
    position: relative;
    display: block;
    color: #000000;
    
}

.fivetop-news a + a {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light);
}

.fivetop-news_num {
    margin-bottom: 20px;
    background: linear-gradient(160deg,#eacc7f 16%,#ad9c72 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.fivetop-news_num i {
    margin-right: 10px;
}

.fivetop-news_num:after {
    content: counter(toc1, decimal);
    counter-increment: toc1;
}

.fivetop-news_tags {
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
    margin-top: 20px;
}

/* POPULAR TOP */
.popular-news a {
    position: relative;
    display: block;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.popular-news a + a {
    margin-top: 20px;
}

.popular-news a:hover .popular-news_bg {
    transform: scale(1.05);
}

.popular-news_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.popular-news_bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #000, transparent);
}

.popular-news_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 30px;
    color: #fff;
}

.popular-news_content p {
    font-size: 14px;
    line-height: 1.4;
}

.popular-news_tags {
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
    margin-top: 20px;
}

/* ABA TOP */
.aba-tops {
    grid-gap: 40px;
    align-items: center;
}

.aba-tops h2 {
    color: var(--color1);
    text-transform: uppercase;
}

.aba-top_items {
    counter-reset: toc1;
    max-height: 513px;
    overflow-y: auto;
}

.aba-top_item {
    display: flex;
    align-items: center;
}

.aba-top_item:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    color: var(--color1);
    font-size: 40px;
    font-weight: bold;
    margin-right: 20px;
}

.aba-top_item + .aba-top_item {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--dark);
}

.aba-top_item:hover.aba-top_item p {
    color: var(--color1);
}

/* JOL BEST */
.jol-best_items {
}

.jol-best_item {
    position: relative;
    border: 3px;
    width: 100%;
    height: 230px;
    overflow: hidden;
        display: ;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .jol-best_item {
        height: 200px;
    }
}

.jol-best_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #161e29, transparent);
}

.jol-best_item &gt; a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    color: #1a1a1a;
    font-family: Literata, sans-serif;
}

.jol-best_item &gt; img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jol-best_content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
    font-family: Literata, sans-serif;
}

.jol-best_title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

.jol-best_text, .jol-best_text p {
    color: #dedede;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.jol-best_meta {
    align-items: center;
    margin-top: 8px;
}

.jol-best_meta &gt; span {
    color: #dedede;
    margin-right: 15px;
}

.jol-best_meta &gt; span i {
    margin-right: 10px;
}

.jol-best_user {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.jol-best_user &gt; img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

/* video */
.video_items {
}

.video_item {
    position: relative;
    border: 3px;
    width: 100%;
    height: 500px;
    overflow: hidden;
        display: ;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .video_item {
        height: 200px;
    }
}

.video_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #161e29, transparent);
}

.video_item &gt; a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.video_item &gt; img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.video_title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

.video_text, .video_text p {
    color: #dedede;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.video_meta {
    align-items: center;
    margin-top: 8px;
}

.video_meta &gt; span {
    color: #dedede;
    margin-right: 15px;
}

.video_meta &gt; span i {
    margin-right: 10px;
}

.video_user {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.video_user &gt; img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}


/* podcast */
.podcast_items {
}

.podcast_item {
    position: relative;
    border: 3px;
    width: 100%;
    height: 500px;
    overflow: hidden;
        display: ;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .podcast_item {
        height: 200px;
    }
}

.podcast_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

.podcast_item &gt; a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.podcast_item &gt; img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast_content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.podcast_title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

.podcast_text, .podcast_text p {
    color: #dedede;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.podcast_meta {
    align-items: center;
    margin-top: 8px;
}

.podcast_meta &gt; span {
    color: #dedede;
    margin-right: 15px;
}

.podcast_meta &gt; span i {
    margin-right: 10px;
}

.podcast_user {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.podcast_user &gt; img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}







.section__panel {
	display: flex;
	grid-gap: 31px;
	justify-content: space-between;	
}

.section__panel .panel-lenta, .sb-container {
	width: 355px;
	padding: 10px;
}
.sb-container {
	background-color: var(--color-white); 
	border-radius: 8px;
    height: 800px;
    overflow-x: auto;	
}
.sb-container .items-title {
	margin: 10px;
}
/* HEADER TOP */
.header-top {
    background: var(--bg);
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-pog_menu {
    position: relative;
}

.header-pog_menu a {
    display: inline-block;
    padding: 5px 10px;
}

.header-pog_menu a i {
    float: right;
    margin: 4px 8px;
}

.header-pog_menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    column-count: 1;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 8;
}

.header-pog_menu ul:before {
    content: "";
    position: absolute;
    background: var(--bg);
    top: -5px;
    left: 10%;
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
    z-index: -1;
}

.header-pog_menu:hover.header-pog_menu ul {
    visibility: visible;
    opacity: 1;
}

.header-pog_menu li {
    margin: 10px 0;
}

.header-pog_menu li span {
    float: right;
    font-weight: bold;
}

.header-pog_item {
    margin-left: auto;
    margin-right: 30px;
	color: #1a1a1a;
    font-family: Literata, sans-serif;
}

.header-pog_item span {
    display: inline-block;
    margin-right: 20px;
    font-weight: bold;
	color: #1a1a1a;
    font-family: Literata, sans-serif;
}

.header-top_curs i {
    display: inline-block;
    border: solid 1px var(--color1);
    border-radius: 50px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    margin-right: 5px;
    font-size: 12px;
}

.header-top_curs span {
    margin: 0 10px;
}

.header-top_soc {
    display: flex;
    align-items: center;
    margin-left: 0px;
}

.header-top_soc a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--color1);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.header-top_soc a:nth-child(1):hover {
    background: #23aaea;
}

.header-top_soc a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.header-top_soc a:nth-child(3):hover {
    background: #1877f2;
}
/* HEADER */
header {
    position: relative;
    background: var(--bg2);
    color: var(--text);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    width: 100%;
    top: 0;
    left: 0;
    transition: top 0.3s;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    padding: 10px 0;
}

.header-logo {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-menu {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin: 0 auto;
    transition: 0.3s opacity;
}

@media (max-width: 860px) {
    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        z-index: 7;
        visibility: hidden;
        opacity: 0;
    }
}

.header-menu.active {
    visibility: visible;
    opacity: 1;
}

.header-menu &gt; a, .header-menu &gt; div {
    padding: 10px 0;
}

.header-menu &gt; a:hover, .header-menu &gt; div:hover {
    color: var(--color2);
}

.header-menu &gt; a, .header-menu &gt; div &gt; span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-family: Literata, sans-serif;
    font-weight: bold;
}

.header-menu &gt; div {
    position: relative;
}

.header-menu &gt; div.active &gt; div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 860px) {
    .header-menu &gt; div:hover &gt; div {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.header-menu &gt; div &gt; div {
    position: absolute;
    width: 200px;
    top: 100%;
    left: 0;
    background: var(--bg2);
    color: #000;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    padding: 3px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-menu &gt; div &gt; div:before {
    content: "";
    position: absolute;
    top: -4px;
    left: 16px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(225deg);
    z-index: -1;
}

.header-menu &gt; div &gt; div &gt; a {
    display: block;
    padding: 5px 20px;
    border-radius: var(--radius);
}

.header-menu &gt; div &gt; div &gt; a:hover {
    background: var(--bg);
}

.header-menu_btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    text-align: center;
    z-index: 7;
}

.header-menu_btn.active:before {
    content: "\f00d";
}

/* HEADER SEARCH */
.header-search {
    position: relative;
    margin-left: auto;
}

.header-search &gt; div {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg);
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

@media (max-width: 860px) {
    .header-search &gt; div {
        position: fixed;
        width: 100%;
        left: 0;
        right: unset;
        background: var(--bg2);
        box-shadow: 0 0 20px rgb(0 0 0 / 10%);
        height: 57px;
    }
}

.header-search.active &gt; div {
    visibility: visible;
    opacity: 1;
}

.header-menu.none {
    visibility: hidden;
    opacity: 0;
}

.header-search &gt; div &gt; i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--text3);
}

.header-search.active + .header-search_btn {
    display: none;
}

.header-search_btn {
    display: inline-block;
    color: var(--text2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    text-align: center;
}

.header-search_btn:hover {
    color: var(--color1);
}

.header-search input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 0;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search.active input {
    width: 310px;
}

.header-search input::placeholder {
    color: #777e89;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

.header-search_top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 420px;
    top: 110%;
    left: auto;
    background: var(--bg2);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    z-index: 8;
}

@media (max-width: 860px) {
    .header-search_top {
        width: 100%;
        left: 0;
    }
}

.header-search_top.active {
    visibility: visible;
    opacity: 1;
}

.header-search_top &gt; span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* HEADER USER */
.header-user {
    position: relative;
}

.header-user &gt; a {
    display: inline-block;
    color: var(--text2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    text-align: center;
}

.header-user &gt; a:hover {
    color: var(--color1);
}

.header-user &gt; div {
    position: absolute;
    width: 200px;
    top: 100%;
    right: 0;
    background: var(--bg2);
    color: #000;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-user &gt; div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 16px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(225deg);
}

.header-user.active &gt; div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-user_info {
    border-bottom: 1px solid var(--bg);
    padding: 10px 20px;
    text-align: center;
}

.header-user_info &gt; img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header-user_info &gt; span {
    display: block;
    margin: 8px 0;
    font-size: 16px;
    font-weight: bold;
}

.header-user_info &gt; a {
    display: inline-block;
    color: var(--color1);
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px dotted var(--color1);
    margin: 5px;
}

.header-user_info &gt; a i {
    margin-right: 5px;
}

.header-user_group {
    display: inline-block;
    background: var(--bg3);
    border-radius: var(--radius);
    color: #b9b3d3;
    padding: 4px 10px;
    font-size: 10px;
}

.header-user_group * {
    color: #b9b3d3!important;
}

.header-user_link {
    padding: 3px;
}

.header-user_link a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius);
    color: #14192a;
    font-size: 14px;
}

.header-user_link a:last-child {
    color: #F44336;
}

.header-user_link a:hover {
    background: var(--bg2);
    color: var(--color1);
}

/* MODAL LOGIN 0.2 */
.modal-login &gt; a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--text2);
    font-size: 28px;
    text-align: center;
    cursor: pointer;
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 40px 80px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login form {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

.modal-login form &gt; i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form &gt; i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-login .e-float &gt; a {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 14px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_btn a {
    background: #000;
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: #000;
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex &gt; a, .modal-login_soc .e-flex a &gt; img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -220%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    right: 6px;
    bottom: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* MAIN, ASIDE */
main {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 450px;
}

@media (max-width: 860px) {
    main {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}

main &gt; div {
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 860px) {
    main &gt; div, main &gt; aside {
        width: 100vw;
        margin-left: -20px;
        padding: 0 20px;
    }
}

aside &gt; * + * {
    margin-top: 20px;
}

.rue-count {
   
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    padding: 10px 0;
    position: relative;
}
/* RUE HISTORY */
.rue-hist {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .rue-hist {
        overflow: visible;
    }
}

.rue-hist .rue-sect_nav {
    position: relative;
    display: flex;
    grid-gap: 5px;
    justify-content: flex-end;
    z-index: 2;
    top: 0;
    right: 0;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .rue-hist .rue-sect_nav {
        display: none;
    }
}

.rue-hist .rue-sect_nav i {
    background: var(--bg2);
}

.rue-hist_item {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
}

.rue-hist_item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgb(0 0 0 / 63%), transparent);
    z-index: 1;
}

.rue-hist_item &gt; img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.rue-hist_item:hover img {
    transform: scale(1.05);
}

.rue-hist_title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
}

/* RUE HOME */
.rue-home {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-auto-rows: 10px;
        grid-template-columns: 1fr;
}

@media (max-width: 860px) {
    .rue-home {
        grid-template-columns: 1fr;
    }
}

.rue-home_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 10px;
    background: var(--bg2);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    grid-row: span 5;
    margin-top: 10px;
}

@media (max-width: 860px) {
    .rue-home_item {
        grid-row: span 5;
    }
}

.rue-home_item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 30;
}

@media (max-width: 860px) {
    .rue-home_item:nth-child(1) {
        grid-column: unset;
        grid-row: span 20;
    }
}

.rue-home_bg {
    display: none;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}

.rue-home_item:nth-child(1) .rue-home_bg {
    display: block;
    margin: -5px -15px 0;
}

.rue-home_item:hover img {
    transform: scale(1.05);
}

.rue-home_item:hover .rue-home_title {
    color: var(--color1);
}

.rue-home_meta {
    display: flex;
    grid-gap: 10px;
    justify-content: space-between;
    color: var(--text3);
    font-size: 12px;
    font-weight: 400;
}

.rue-home_meta span:first-child {
    color: var(--text2);
    margin-right: auto;
}

/* RUE SECT */
.rue-sect {
    position: relative;
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .rue-sect {
        width: 100vw;
        margin-left: -20px;
    }
}

.rue-sect_link {
    display: inline-block;
    background: rgba(53, 127, 252, 0.10);
    color: #357FFC;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: bold;
}

.rue-sect_fast {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.rue-sect_fast a {
    display: inline-block;
    background: var(--bg3);
    padding: 10px 20px;
    border-radius: var(--radius);
}

.rue-sect_nav {
    position: absolute;
    top: 30px;
    right: 30px;
}

.rue-sect_nav &gt; i {
    display: inline-block;
    border: 1px solid var(--bg3);
    border-radius: 50%;
    color: var(--text2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.rue-short {
    position: relative;
}

.rue-short_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/12;
    border-radius: var(--radius);
    object-fit: cover;
    margin-bottom: 10px;
    overflow: hidden;
}

.rue-short_bg.bg2 {
    aspect-ratio: 16/9;
}

.rue-short_bg.bg {
    aspect-ratio: 1/1;
}

.rue-short_bg &gt; span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(360deg, black, transparent);
    color: #fff;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.rue-short_title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.rue-short:hover img {
    transform: scale(1.05);
}

.rue-short:hover .rue-short_title {
    color: var(--color1);
}

.rue-short_title:before {
    content: "";
    position: absolute;
    inset: 0;
}

.rue-short_title + span {
    color: var(--text3);
    font-size: 14px;
}

.rue-int_item {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-weight: 400;
    margin: 20px 0;
}

.rue-int_item:hover {
    color: var(--color1);
}

/* RUE JOB */
.rue-job_item {
    position: relative;
    padding: 20px;
    border: 1px solid var(--bg3);
    border-radius: var(--radius);
    overflow: hidden;
}

.rue-job_item &gt; img {
    width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
}

.rue-job_title {
    display: block;
    font-weight: 600;
    margin: 10px 0 5px;
}

.rue-job_item:hover .rue-job_title {
    color: var(--color1);
}

.rue-job_title:before {
    content: "";
    position: absolute;
    inset: 0;
}

.rue-job_item &gt; span {
    color: var(--text2);
    font-size: 12px;
}

/* RUE VALUTE */
.rue-val {
    position: relative;
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

.rue-val &gt; span {
    display: block;
    grid-column: -1/1;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.rue-val b {
    color: var(--color1);
    margin-right: 10px;
}

/* VAA FULL */
.rue-full {
    background: var(--bg2);
    padding: 40px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .rue-full {
        width: 100vw;
        margin-left: -20px;
    }
}

.rue-full_head {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    color: var(--text3);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.rue-full_head &gt; span {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.rue-full_short, .rue-full_short * {
    color: #1a1a1a;
    font-family: Literata, sans-serif;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 20px;
}

.rue-full_bg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .rue-full_bg {
        width: 100vw;
        margin-left: -40px;
        border-radius: 0;
    }
}

.rue-full_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 16px;
    color: var(--text3);
    font-size: 17px;
    font-weight: 600;
    margin: 30px 0;
}

.rue-full_meta &gt; a, .e-share, .rue-full_meta &gt; span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg3);
    color: var(--text3);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-weight: 300;
}

.rue-full_meta [onclick^="doRate"] {
    margin-left: auto;
}

.rue-full_related {
	color: #1a1a1a;
    font-family: Literata, sans-serif;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 20px;
}

.rue-full_related &gt; span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rue-full_related &gt; a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text2);
    border-bottom: 1px solid #eff2f7;
}

.rue-full_related &gt; a:hover {
    color: var(--color1);
}

.rue-full_related &gt; a i {
    color: var(--text3);
}

.rue-full_comm textarea, .rue-full_comm input {
    background: var(--bg2);
}

.rue-full_comm .bbcodes {
    color: #000;
}

/* FOOTER */
footer {
    position: relative;
    background: #18191d;
    color: #fff;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    padding: 30px 0;
    font-size: 14px;
}

@media (max-width: 860px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}
.header-soc{
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.header-soc a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 10px;
    background: var(--color2);
    font-size: 14px;
    color: #fff;
}
.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.footer-soc a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 10px;
    background: var(--light);
    font-size: 14px;
    color: #fff;
}

.footer-soc a:hover {
    background: var(--color2);
}

.footer-tel {
    margin-top: 20px;
    color: #b3b3b3;
}

.footer-tel &gt; a:first-child {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-menu {
}

.footer-menu span {
    
    display: block;
    color: #b3b3b3;
    font-size: 16px;
    font-weight: bold;
}

.footer-menu a {
    display: block;
    margin-top: 10px;
    color: #ffffff;
}

.footer-menu a:hover {
    color: #2196F3;
}

footer .footer-copy {
    font-size: 12px;
    color: #ffffff;
    border-top: 1px solid var(--light);
}

.footer-copy span {
    margin-right: auto;
}
</pre></body></html>