/* STYLES 18.11.25
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */

:root {
    --bg: #f2f3f7;
    --bg2: #fff;
    --bg3: #e3e5ed;
    --engine: #fff;
    --engine2: #f7f7f7;
    --text: #191c20;
    --text1: #fff;
    --text2: #212327;
    --text3: #a4a8b2;
    --color1: #4772ff;
    --color2: #5f82f8;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 15px;
    --shadow: 0px 4px 24px 0px rgb(0 0 0 / 3%);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

/* HEADER, ASIDE */
header {
    position: relative;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--text);
    width: 100%;
    top: 0;
    left: 0;
    transition: top 0.3s;
    z-index: 5;
}

header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--bg2);
    z-index: 5;
}

header.sticky-hide {
    top: -70px;
}

header.sticky-vis {
    top: 0;
}

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

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

.header-add {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color1);
    color: #fff;
    padding: 10px 25px;
    border-radius: var(--radius);
    margin-left: auto;
}

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

aside {
    position: fixed;
    left: auto;
    top: 0;
    width: 240px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 95px 0 40px;
    z-index: 2;
}

@media (max-width: 860px) {
    aside.left {
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        height: 94vh;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg2);
        border-top: 1px solid var(--bg);
        z-index: 6;
        padding: 20px;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    aside.left.active {
        visibility: visible;
        opacity: 1;
    }
}

.aside-menu {
    font-size: 16px;
    font-weight: 400;
    margin-left: -10px;
}

.aside-menu > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #444954;
    padding: 10px 20px 10px 10px;
    border-radius: var(--radius);
}

.aside-menu > a:hover {
    background: #fff;
    color: #000;
}

.aside-menu > a > i {
    background: #e3e5ed;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
}

.aside-menu > a:hover i {
    background: #ff7551;
    color: #fff;
}

.aside-menu > a:nth-child(2n + 1):hover i {
    background: #32a7e2;
}

.aside-menu > a:nth-child(3n + 1):hover i {
    background: #6c5ecf;
}

.aside-footer {
    margin-top: auto;
}

@media (max-width: 860px) {
    .aside-footer {
        margin-bottom: 30%;
    }
}

.aside-footer > a {
    display: inline-block;
    max-width: max-content;
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    margin: 5px 10px 5px 0;
}

.aside-footer > a:hover {
    color: var(--color2);
}

.aside-footer_soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin: 20px 0;
}

.aside-footer_soc > a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 10px;
    background: #4772ff29;
    font-size: 14px;
    color: #4772ff;
    text-align: center;
}

.aside-footer_copy {
    font-size: 12px;
    font-weight: 200;
    color: var(--text3);
}

aside + aside {
    position: relative;
    left: unset;
    right: 0;
    width: auto;
    padding: 0;
}

@media (max-width: 860px) {
    aside + aside {
        position: relative;
        left: 0;
        right: 0;
        height: max-content;
    }
}

main {
    margin-left: 280px;
    overflow: hidden;
}

@media (max-width: 860px) {
    main {
        margin: 0;
    }
}

.aside-grid {
    display: grid;
    grid-gap: 50px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
}

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

.header-menu_btn {
    background: var(--bg);
    border-radius: 12px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    order: -1;
}

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

/* HEADER SEARCH */
.header-search {
    display: flex;
    align-items: center;
    background: var(--bg);
    backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 3px;
    margin-left: auto;
    z-index: 2;
}

@media (max-width: 860px) {
    .header-search {
        background: #fff;
        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_btn, .header-search .fa-microphone, .header-search .fa-xmark {
    background: #fff;
    border-radius: 12px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

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

.header-search_btn {
    display: none;
}

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

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

.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: 470px;
    top: 110%;
    left: auto;
    background: #fff;
    box-shadow: 0 10px 20px -2px rgb(0 0 0 / 40%);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    z-index: 8;
}

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

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

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

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

.header-user > a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text2);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.header-user > a img {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    border: 1px solid var(--dark);
    object-fit: cover;
}

.header-user > div {
    position: absolute;
    width: 210px;
    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(0);
    transition: 0.3s;
    z-index: 6;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_info {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    border-bottom: 1px solid var(--bg);
    padding: 10px 20px;
}

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

.header-user_info > div > span {
    display: block;
    font-size: 10px;
    font-weight: 200;
    color: var(--text2);
}

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

.header-user_info > 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: 8px;
}

.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(--bg);
    color: var(--color2);
}

.header-user_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 5px 10px;
    border-top: 1px solid var(--bg);
    color: var(--text2);
    padding: 10px 20px;
    font-size: 12px;
}

.header-user_meta > span {
    font-size: 10px;
    font-weight: 400;
    color: var(--text3);
}

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

a[href="#modal-login"] {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 10px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
}

a[href="#modal-login"]:hover {
    opacity: 0.8;
}

.header-login {
    position: fixed;
    min-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--text);
    padding: 40px 60px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

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

.header-login > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.header-login > i:hover {
    background: var(--color1);
    color: var(--text1);
}

.header-login_logo {
    font-size: 25px;
    font-weight: 600;
}

.header-login_type {
    display: block;
    max-width: max-content;
    border: 1px solid #d1d3d8;
    border-radius: var(--radius);
    padding: 3px;
    margin: 20px auto 30px;
}

.header-login_type > a:first-child {
    background: #e9e9ef;
    color: #000;
}

.header-login_type > a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    color: var(--text2);
}

.header-login_lost {
    display: block;
    color: var(--text2);
    margin-bottom: 20px;
    font-size: 14px;
}

.header-login_lost > a {
    color: var(--color1);
    border-bottom: 1px dotted;
    margin-left: 8px;
}

.header-login button {
    min-width: 100%;
}

.header-login_soc {
    position: relative;
    max-width: max-content;
    font-size: 14px;
    color: var(--text2);
    margin: 20px auto 0;
}

.header-login_soc > div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin-top: 15px;
}

.header-login_soc > div > a {
    background: var(--bg);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.header-login_soc > div > a img {
    padding: 10px;
    width: 100%;
    height: 100%;
}

/* HOP NAP */
.hp-nap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.hp-nap > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg2);
    padding: 5px 20px 5px 5px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.hp-nap > a:hover {
    background: var(--color1);
    color: #fff;
    transform: scale(1.05);
}

.hp-nap > a > img {
    width: 32px;
    height: 32px;
    border-radius: 50px;
}

/* HP SHORT */
.hp-short_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

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

.hp-short_item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 15px;
}

.hp-short_item:hover .hp-short_title {
    color: var(--color1);
}

.hp-short_item:hover > img {
    transform: scale(1.02);
}

.hp-short_item > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    object-fit: cover;
    transition: 0.3s;
}

.hp-short_av {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin: 15px 0;
}

.hp-short_av > img {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    object-fit: cover;
    border: 1px solid var(--dark);
}

.hp-short_av > div a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.hp-short_av > div span {
    display: block;
    font-size: 10px;
    color: var(--text2);
}

.hp-short_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.hp-short_text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text2);
}

.hp-short_meta {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 14px;
    color: var(--text3);
    padding-top: 20px;
    margin-top: auto;
    z-index: 2;
}

.hp-short_meta > span, .hp-short_meta > a {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.hp-short_meta #comm {
    margin-right: auto;
}

.hp-short_meta a[onclick^="doFavorites"] {
    background: var(--bg);
    color: var(--text2);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50px;
    font-size: 14px;
    justify-content: center;
}

/* HP NEWS */
.hp-news {
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 3px;
}

.hp-news_head {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    padding: 20px 25px 10px;
    border-bottom: 1px solid var(--bg3);
    margin-bottom: 5px;
}

.hp-news_head .e-h3 {
    margin-bottom: 0;
}

.hp-news_head > a {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    background: var(--bg);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: var(--radius);
}

.hp-news_item {
    padding: 10px 25px;
    border-radius: var(--radius);
    transition: 0.3s;
}

.hp-news_item:hover {
    background: var(--bg);
}

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

.hp-news_item > span {
    display: block;
    color: var(--text3);
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 3px;
}

.hp-news_item > a {
    font-size: 14px;
    font-weight: 400;
}

.hp-event_item {
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 60px 1fr;
    align-items: center;
    padding: 10px 25px;
    border-radius: var(--radius);
    transition: 0.3s;
}

.hp-event_item:hover {
    background: var(--bg);
}

.hp-event_item > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
}

.hp-event_item a {
    font-size: 14px;
    font-weight: 400;
}

.hp-event_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
}

.hp-event_meta > span {
    display: block;
    color: var(--text3);
    font-size: 10px;
    font-weight: 300;
    margin-top: 5px;
}

.hp-event_meta > span:first-child {
    background: #4772ff29;
    font-size: 10px;
    color: #4772ff;
    padding: 3px 10px;
    border-radius: var(--radius);
}

.hp-news .dle-comm_item {
    padding: 10px 25px;
    border-radius: var(--radius);
}

.hp-news .dle-comm_item:hover {
    background: var(--bg);
}

.hp-news .dle-comm_item:hover a[onclick^="dle_reply"] {
    background: var(--color1);
    color: #fff;
}

.hp-news .dle-comm_text {
    margin: 15px 0;
}

.hp-news .dle-comm_rating, .hp-news .dle-comm_det {
    display: none;
}

/* HP FULL */
.hp-full {
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 25px 30px;
}

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

    .hp-full, .hp-comm {
        margin-top: -20px;
    }
}

.hp-full_head {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.hp-full_av {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.hp-full_av > img {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    object-fit: cover;
    border: 1px solid var(--dark);
}

.hp-full_av > div a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.hp-full_av > div span {
    display: block;
    font-size: 10px;
    color: var(--text2);
}

.hp-full_head > [onclick] {
    background: #ff7c4729;
    color: #ff4747;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50px;
    font-size: 14px;
}

.hp-full_title {
    display: block;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .hp-full_title {
        font-size: 25px;
    }
}

.hp-full_bg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 30px 0 20px 0;
}

.hp-full_mini {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #000;
    border-bottom: 1px solid var(--dark);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.hp-full_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    font-size: 14px;
    color: var(--text3);
    margin-top: 30px;
}

.hp-full_meta > span, .hp-full_meta > a {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.hp-full_meta #comm {
    margin-right: auto;
}

.hp-full_rating {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 8px 15px;
    background: #4772ff29;
    color: #4772ff;
    border-radius: 50px;
}

.hp-full_rating > a > span {
    display: block;
    font-size: 6px;
    opacity: 0.3;
    margin-left: 5px;
}

.hp-full_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--color1);
    margin-top: 20px;
    font-size: 14px;
}

.hp-full_tags > a + a {
    margin-left: 20px;
}

.hp-full_tags > a:before {
    content: "#";
}

.hp-comm {
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 25px 30px;
}

.hp-comm #dle-comments-form {
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.hp-comm #dle-comments-form textarea {
    background: var(--bg);
    padding: 0;
    border-radius: 0;
}

.hp-comm #dle-comments-form button[type="submit"] {
    font-size: 14px;
    padding: 8px 20px;
}

.hp-comm #dle-comments-form .form-check-label {
    font-size: 12px;
    color: var(--text2);
}

/* HP PLUS */
.hp-plus {
    background: linear-gradient(219.57deg, #DEEBFF 12.97%, #F7F1FF 34.26%, #E0E3FF 55.44%, #F0EDFF 86.69%);
    padding: 40px;
}

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

.hp-plus > .fa-xmark {
    top: 20px;
    right: 20px;
    color: #000;
    font-size: 14px;
}

.hp-plus > .fa-gem {
    background: linear-gradient( 180deg, #40A9FF 0%, #0059FF 50%, #0A35A9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 70px;
    margin-bottom: 10px;
}

.hp-plus_title {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hp-plus_text {
    display: inline-block;
    width: 300px;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

.hp-plus > ul {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
}

.hp-plus > ul li {
    display: flex;
    grid-gap: 20px;
}

.hp-plus > ul li i {
    margin-top: 4px;
    background: linear-gradient(180deg, #40A9FF 0%, #0059FF 50%, #0A35A9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 25px;
}

.hp-plus > ul li span {
    display: block;
    font-size: 13px;
    color: var(--text2);
    max-width: 350px;
}

.hp-plus_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    margin-top: 30px;
}

.hp-plus_link > a {
    position: relative;
    max-width: max-content;
    background: var(--color1);
    color: #fff;
    padding: 15px 90px;
    font-weight: 500;
    border-radius: var(--radius);
    overflow: hidden;
}

.hp-plus_link > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 30%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.3) 70%,rgba(255,255,255,0) 100%);
    width: 100px;
    height: 100%;
    transform: skew(-10deg);
    animation: plus-button-reflection-slide 5s infinite 1.165s ease;
}

@keyframes plus-button-reflection-slide {
    0% {
        left: -10%;
        opacity: 0
    }

    5% {
        opacity: 1
    }

    25%,to {
        left: 105%
    }
}

.hp-plus_link > span {
    font-size: 14px;
    font-weight: 200;
    opacity: 0.6;
}

.e-sharesus {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg);
    color: #4772ff;
    padding: 5px 20px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 300;
}