<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* STYLES 25.02.2025
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/ProximaNova-Light.woff2) format("woff2"),url(../fonts/ProximaNova-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/ProximaNova-Regular.woff2) format("woff2"),url(../fonts/ProximaNova-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/ProximaNova-Semibold.woff2) format("woff2"),url(../fonts/ProximaNova-Semibold.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/ProximaNova-Bold.woff2) format("woff2"),url(../fonts/ProximaNova-Bold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/ProximaNova-Extrabld.woff2) format("woff2"),url(../fonts/ProximaNova-Extrabld.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

/* BASIC */
:root {
    --bg: #f9f9f9;
    --bg2: #fff;
    --bg3: #2a2a2a;
    --engine: #fff;
    --engine2: #f9f9f9;
    --text: #000;
    --text1: #fff;
    --text2: #676767;
    --color1: #3d55ef;
    --color2: #6a88ff;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 10px;
}

/*body {
    background: var(--bg);
    font-family: "Proxima Nova", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: normal;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}*/
body {font: 17px 'Roboto', sans-serif; line-height: normal; line-height: 1.6; padding: 0; margin: 0;        
color: #333; background: #f1f1f1; min-height: 100%; width: 100%; font-weight: 400;}

/* HEADER */
header {
    position: relative;
    background: var(--bg2);
    width: 100%;
    transition: 0.3s;
    z-index: 996;
}

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

.header-logo span {
    font-size: 30px;
    font-weight: 700;
}

.header-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 100px;
    margin-right: auto;
}

@media (max-width: 860px) {
    .header-menu {
        display: none;
    }
}

.header-menu a {
    display: block;
    padding: 15px;
    border-radius: 10px;
    transition: 0.2s;
}

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

.header-menu a &gt; i {
    margin-left: 8px;
}

/* HEADER MENU SUB 0.3 */
.header-menu_sub {
    position: relative;
}

.header-menu_sub div a {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
}

.header-menu_sub div a:hover {
    background: var(--light);
}

.header-menu_sub &gt; a i {
    float: right;
    margin: 2px 8px;
}

.header-menu_sub &gt; div {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    column-count: 2;
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 8;
}

@media (min-width: 860px) {
    .header-menu div:hover.header-menu_sub div {
        visibility: visible;
        opacity: 1;
    }
}

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

/* MOB MENU 0.3 */
.mobmenu-btn {
    display: none;
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: inline-block;
        background: var(--bg);
        color: var(--color2);
        border-radius: 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        text-align: center;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu-btn.active {
        z-index: 9;
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        left: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        background: var(--bg2);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 9;
    }

    .mobmenu.active {
        display: flex;
        align-items: flex-start;
        left: 0;
        padding: 20px;
        box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
        border-radius: 0;
    }

    .mobmenu a + div, .mobmenu a {
        display: block;
        width: 100%;
    }

    .mobmenu div &gt; div {
        display: none;
        width: 100%;
        top: 0;
        column-count: 1;
    }

    .mobmenu div &gt; a.active + div {
        position: relative;
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* HEADER SEARCH */
.header-search {
    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 {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active {
    visibility: visible;
    opacity: 1;
    top: 0;
}

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

.header-search_btn, .header-search .fa-xmark {
    background: var(--bg);
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.header-search .fa-magnifying-glass {
    background: transparent;
    color: #777e89;
    margin-left: 15px;
}

.header-search_btn {
}

@media (max-width: 860px) {
    .header-search_btn {
        display: inline-block;
        margin-left: auto;
    }
}

.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: 415px;
    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: block;
    color: var(--text2);
    font-size: 28px;
    text-align: center;
    cursor: pointer;
}

.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: var(--bg3);
    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;
}

/* BREAKNEWS */
.breaknews {
    position: relative;
    background: #2a2a2a;
    color: #fff;
    padding: 10px 0;
    align-items: center;
    font-size: 14px;
}

.breaknews .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 30px;
    width: calc(100% - 10px);
}

/*.breaknews-title {
    position: relative;
    display: inline-block;
    background: var(--light);
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
}*/
.breaknews-title {
    position: relative;
    display: inline-block;
    background: var(--light);
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
    white-space: nowrap; /* РџСЂРµРґРѕС‚РІСЂР°С‰Р°РµС‚ РїРµСЂРµРЅРѕСЃ СЃРѕРґРµСЂР¶РёРјРѕРіРѕ */
}

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

/*.breaknews-title:after {
    display: inline-block;
    content: "";
    height: 8px;
    width: 8px;
    margin-left: 15px;
    border-radius: 50%;
    background-color: #f43;
    animation: pulse 1.25s infinite;
    will-change: transform,box-shadow
}*/
.breaknews-title:after {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    margin-left: 15px;
    border-radius: 50%;
    background-color: #f43;
    animation: pulse 1.25s infinite;
    will-change: transform, box-shadow;
    vertical-align: middle; /* Р’С‹СЂР°РІРЅРёРІР°РЅРёРµ РїРѕ РІРµСЂС‚РёРєР°Р»Рё */
}

@keyframes pulse {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(255,68,51,.6)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px transparent
    }

    100% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 transparent
    }
}

.breaknews-weather {
    margin-left: auto;
}

@media (max-width: 860px) {
    .breaknews-weather {
        display: none;
    }
}

/* THING NEWS */
.thing {
}

.thing-items {
    margin: 20px auto;
    /*grid-gap: 0;*/
}

.thing-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 5%;
}

@media (max-width: 860px) {
    .thing-item {
        min-width: 280px!important;
    }
}

.thing-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.thing-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.thing-meta {font-size: 14px;}

.thing-content h3 {
    font-size: 18px;
    line-height: 1.3;
}

.thing-meta span &gt; a {
    color: #fff;
}

.thing-meta span:last-child {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.thing-meta span:last-child:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.thing-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.thing-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.thing-item:hover .thing-bg {
    transform: translateX(-4%) scale(1.04);
}

.thing-item:hover .thing-content {
    transform: translateY(-2%);
}

/* FIVE TOP */
.fivetop {
    position: relative;
    display: block;
    background: var(--bg2);
    padding: 20px;
}

@media (min-width: 1400px) {
    .thing, .fivetop {
        max-width: 1280px;
        width: calc(100% - 40px);
        margin: 0 auto;
    }
}

.fivetop-item {
    position: relative;
    align-items: center;
}

@media (max-width: 860px) {
    .fivetop-item {
        min-width: 300px;
    }
}

.fivetop-bg {
    position: relative;
    width: 95px;
    height: 95px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.fivetop-content h4 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}

.fivetop-meta {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.fivetop-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fivetop-content h4, .fivetop-bg img {
    transition: 0.4s;
}

.fivetop-item:hover .fivetop-bg img {
    transform: scale(1.04);
}

.fivetop-item:hover .fivetop-content h4 {
    color: var(--color1)
}

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

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

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

/* FIXED NEWS */
.fixednews-item {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.fixednews-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.fixednews-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.fixednews-meta span &gt; a {
    color: #fff;
}

.fixednews-meta span:last-child {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.fixednews-meta span:last-child:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.fixednews-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.fixednews-item &gt; i {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #3d55ef;
    color: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    z-index: 2;
}

.fixednews-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fixednews-item:hover .fixednews-bg {
    transform: translateX(-4%);
}

.fixednews-item:hover .fixednews-content {
    transform: translateY(-2%);
}

/* RELATED NEWS */
.relatednews {
    background: var(--bg2);
    padding: 20px;
    border-radius: 10px;
}

.relatednews-item {
    position: relative;
    align-items: center;
}

.relatednews-item + div {
    margin-top: 30px;
}

.relatednews-bg {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.relatednews-content h4 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}

.relatednews-meta {
    font-weight: 400;
    opacity: 0.7;
}

.relatednews-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.relatednews-content h4, .relatednews-bg img {
    transition: 0.4s;
}

.relatednews-item:hover .relatednews-bg img {
    transform: scale(1.04);
}

.relatednews-item:hover .relatednews-content h4 {
    color: var(--color1)
}

/* CAT NEWS */
.catnews {
}

.catnews li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.catnews li + li {
    margin-top: 10px;
}

.catnews li:hover {
    opacity: 0.8;
}

.catnews li a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.catnews li span {
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}

.catnews li span:nth-child(3) {
    display: inline-block;
    background: var(--light);
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    font-size: 16px;
}

.catnews li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.catnews li:nth-child(1n):before {
    background: linear-gradient(to top left, #9932cc -30%,#0000 310%);
}

.catnews li:nth-child(2n):before {
    background-image: linear-gradient(to top left, #008b8b -30%,#0000 310%);
}

.catnews li:nth-child(3n):before {
    background-image: linear-gradient(to top left, #3d55ef -30%,#0000 310%);
}

.catnews li &gt; img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LAST COMM */
.lastcomm {
    background: var(--bg2);
    padding: 20px;
    border-radius: 10px;
}

.lastcomm-item {
    position: relative;
    align-items: flex-start;
}

.lastcomm-item + div {
    margin-top: 30px;
}

.lastcomm-bg {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.lastcomm-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.lastcomm-content span {
    font-size: 12px;
    opacity: 0.7;
}

.lastcomm-content p {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 10px;
}

.lastcomm-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* PICKED NEWS */
.pick {
    background: var(--bg2);
    padding: 25px;
    border-radius: 10px;
    margin: 13px 0px 24px 0px
}

@media (max-width: 860px) {
    .pick {
        background: var(--bg);
        padding: 25px;
        margin-top: 20px;
    }
}

.pick-items {
    height: 430px;
}

@media (max-width: 860px) {
    .pick-items {
        height: auto;
    }
}

.pick-item {
    display: inline-block;
    position: relative;
    border-radius: 10px;
    width: 350px;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 860px) {
    .pick-item {
        width: 100%;
        height: 300px;
    }
}

.pick-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.pick-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.pick-meta, .pickr-meta {
    font-weight: 400;
    color: #999;
}

.pick-meta span &gt; a {
    color: #fff;
    font-weight: 600;
}

.pick-meta span + span, .pickr-meta span + span {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.pick-meta span + span:before, .pickr-meta span + span:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.pick-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.pick-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pick-item:hover .pick-bg {
    transform: translateX(-4%) scale(1.04);
}

.pick-item:hover .pick-content {
    color: #fff;
    transform: translateY(-2%);
}

.pickr-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-left: 25px;
}

@media (max-width: 860px) {
    .pickr-items {
        margin-left: 0;
        margin-top: 30px;
    }
}

.pickr-item {
    position: relative;
    display: flex;
    width: auto;
    height: auto;
}

.pickr-item + .pickr-item {
    margin-top: 10px;
}

.pickr-bg {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.pickr-content {
    color: #000;
    padding: 0;
    margin-left: 30px;
    justify-content: center;
}

.pickr-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pickr-meta span &gt; a {
    font-weight: 600;
}

.pickr-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pickr-item:hover .pickr-bg img {
    transform: scale(1.04);
}

.pickr-item:hover .pickr-content h3 {
    color: var(--color1)
}

/* SHORTNEWS */
.shortnews {
    background: var(--bg2);
    padding: 25px;
    border-radius: 10px;
}

.e-grid4 .shortnews-item, .related .shortnews-item  {
    grid-template-columns: 1fr;
    background: var(--bg2);
    padding: 15px;
    border-radius: 10px;
}

.shortnews-item {
    position: relative;
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 1fr;
    margin-bottom: 40px;
    overflow: hidden;
}

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

.shortnews-bg {
    display: inline-block;
    border-radius: 10px;
   /* width: 300px; */
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.shortnews-content &gt; a {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.shortnews-item:hover .shortnews-content &gt; a {
    color: var(--color1);
}

.shortnews-content &gt; a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.shortnews-text, .shortnews-text * {
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.shortnews-content &gt; .badge, .shortnews-content h3 {
    margin-bottom: 10px;
}

.shortnews-meta {
    color: var(--text2);
    font-weight: 400;
    grid-gap: 10px;
    margin-top: 15px;
    align-items: center;
    font-size: 14px;
}

.shortnews-meta span + span {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.shortnews-meta span + span:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.shortnews-bg img, .shortnews-content h3 {
    transition: 0.4s;
}

.shortnews-item:hover .shortnews-bg img {
    transform: scale(1.04);
}

/* ADDIT NEWS */
.additnews-item {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.additnews-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.additnews-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.additnews-meta span &gt; a {
    color: #fff;
}

.additnews-meta span:last-child {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.additnews-meta span:last-child:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.additnews-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.additnews-item &gt; i {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #3d55ef;
    color: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    z-index: 2;
}

.additnews-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.additnews-item:hover .additnews-bg {
    transform: translateX(-4%);
}

.additnews-item:hover .additnews-content {
    transform: translateY(-2%);
}

/* BAGDES */
.badge {
    display: inline-block;
    background-color: #f5f8fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: pre-wrap;
    vertical-align: baseline;
}

.badge-red {
    color: #ef3d3d;
}

.badge-green {
    color: #008b8b;
}

.badge-blue {
    color: #3d55ef;
}

/* FULL NEWS */
.fullnews-title, .fullnews-content {
    background: var(--bg2);
    padding: 25px;
    border-radius: 0 0 10px 10px;
}
@media (max-width: 860px) {	
.fullnews-content {
    padding: 20px;}
	}

.fullnews-title {
    border-bottom: 2px solid var(--bg);
    padding-bottom: 20px;
    border-radius: 10px 10px 0 0;
}

.fullnews-meta {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    font-weight: 400;
    color: #999;
}

.fullnews-meta .badge + span:before {
    display: none;
}

.fullnews-user {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.fullnews-user img {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

.fullnews-tool {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: auto;
}

.fullnews-tool a {
    border: 2px solid var(--bg);
    padding: 8px 10px;
    border-radius: 5px;
}

.fullnews-tool a:nth-child(1) {
    background: rgb(255 241 242);
    color: #f03c3c;
    border: 2px solid transparent;
}

.fullnews-tool a:nth-child(2) {
    background: #f7f7f7;
    border: 2px solid transparent;
}
.fullnews-short.dle-text, .fullnews-short.dle-text * {
    display: block;
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* FOOTER */
.footer {
    background: var(--bg3);
    color: #fff;
    padding: 30px 0;
}
@media (max-width: 860px) {
    .footer {
        padding: 30px 30px;
    }
}

.footer_soc {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 25px;
}

.footer_soc a:hover {
    color: var(--color1)
}

.footer_menu {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    font-size: 14px;
}

.footer_menu a:hover, .footer_menu-static a:hover {
    color: var(--color1)
}

.footer_menu-static {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    color: #a1a1a1;
    font-size: 14px;
    font-weight: 400;
}

.footer_copyright {
    color: var(--text2);
    margin-top: 20px;
    border-top: 1px solid var(--light);
    padding-top: 20px;
}

.footer_copyright span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}
.footer_copyright a {
display: inline !important;
}

/*РџСЂРѕСЃРјРѕС‚СЂРѕРІ*/
.fa-eye:before {
    content: "\f06e"
}
/*Р”Р»СЏ РІРёРґРµРѕ РђР”РђРџРўРР’*/
.video-box iframe 
{max-width:100% !important; 
 display:block; /* Р”РµР»Р°РµС‚ СЌР»РµРјРµРЅС‚ Р±Р»РѕС‡РЅС‹Рј РґР»СЏ С†РµРЅС‚СЂРёСЂРѕРІР°РЅРёСЏ */
 margin: 0 auto; /* Р¦РµРЅС‚СЂРёСЂСѓРµС‚ РІРёРґРµРѕ РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅРѕ */
 width:100%;
 height:400px;}

@media screen and (max-width: 1220px) {
.video-box iframe {height:400px;}
}

@media screen and (max-width: 590px) {
.video-box iframe {height:300px;}
}

@media (max-width: 460px) {
.video-box iframe{height:250px;}
  }
/* /Р”Р»СЏ РІРёРґРµРѕ РђР”РђРџРўРР’*/
/* Р&nbsp;РµР№С‚РёРЅРі РєРѕРјРјРµРЅС‚Р°СЂРёРµРІ*/
.comm-rate3 {
    white-space: nowrap;
    font-size: 14px;
    height: auto; /* РР·Р±РµРіР°РµРј РѕР±СЂРµР·РєРё */
    line-height: 15px;
    display: block;
    width: 100%;
    margin-top: 20px; /* РЎРґРІРёРі РІРЅРёР· */
    text-align: right; /* Р’С‹СЂР°РІРЅРёРІР°РЅРёРµ СЃРѕРґРµСЂР¶РёРјРѕРіРѕ РІРїСЂР°РІРѕ */
}
.comm-rate3 a {display: inline-block; vertical-align: middle; position: relative; opacity: 0.4;}
.comm-rate3 a:last-child {}
.comm-rate3 &gt; span {margin: 0 5px;}
.comm-rate3 &gt; span &gt; span.ratingtypeplus {color: #06b601;}
.comm-rate3 &gt; span &gt; span.ratingplus {color: #95c613;}
.comm-rate3 &gt; span &gt; span.ratingminus {color: #ff0e0e;}
/* /Р&nbsp;РµР№С‚РёРЅРі РєРѕРјРјРµРЅС‚Р°СЂРёРµРІ*/

/*РР·РѕР»РёСЂСѓРµРј Р&nbsp;РЎРЇ*/

/*/РР·РѕР»РёСЂСѓРµРј Р&nbsp;РЎРЇ*/</pre></body></html>