/* STYLES 18.06.2025
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #fff;
    --bg2: #e8edf1;
    --engine: #fff;
    --engine2: #f7f7f7;
    --text: #121f27;
    --text1: #fff;
    --text2: #58687f;
    --color1: #73c6e3;
    --color2: #74d0f0;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 18px;
}

:root body.dark {
    --bg: #15232b;
    --bg2: #31404a;
    --engine: #192a35;
    --engine2: #31404a;
    --text: #fff;
    --text1: #121f27;
    --text2: #9badc6;
}

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

.speedbar {
    color: var(--text2);
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 30px;
}

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

/* HEADER TOP */
.header-top {
    background: #243c4b;
    color: #fff;
    padding: 10px 0;
    font-size: 10px;
}

.header-top .container {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.header-top > div > div {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.header-top > div > div > span {
    color: #8BC34A;
    font-weight: 500;
}

.header-top > div > div > span.down {
    color: #ff4848;
}

/* HEADER */
header {
    position: relative;
    background: #192a35;
    color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    transition: top 0.3s;
}

@media (max-width: 860px) {
    header {
        padding: 10px 0;
    }
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    color: #c4d6e2;
}

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

.header-menu {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 14px;
    margin: 0 auto;
}

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

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

.header-menu > a, .header-menu > div {
    padding: 15px 0;
}

.header-menu a.live {
    position: relative;
    border-bottom: 3px dashed #73c6e3;
    color: #73c6e3;
    padding-left: 40px;
}

.header-menu a.live::before {
    content: "LIVE";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: red;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

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

.header-menu > a, .header-menu > div > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.header-menu > div {
    position: relative;
}

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

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

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

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

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

.header-menu > div > div > a:hover {
    background: var(--color1);
    color: #fff;
}

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

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

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

.header-search > div {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: rgb(59 74 83);
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

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

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

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

.header-search > div > 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: inherit;
    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(--bg);
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    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 > span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.header-user > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    border-radius: var(--radius);
    color: inherit;
    font-size: 28px;
    text-align: center;
    cursor: pointer;
}

.header-user > a > span {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 860px) {
    .header-user > a > span {
        display: none;
    }
}

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

.header-user > div {
    position: absolute;
    width: 200px;
    top: 100%;
    right: 0;
    background: #fff;
    color: #000;
    box-shadow: 0 3px 32px 0 rgb(18 31 39 / 16%);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

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

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

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

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

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

.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: 3px;
}

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

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

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

/* MODAL LOGIN 0.2 */
.modal-login > 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 > 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 > i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-login .e-float > 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 > a, .modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* MAIN, ASIDE */
aside {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg);
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: top 0.3s;
}

main {
    margin-right: 330px;
}

@media (max-width: 860px) {
    aside {
        position: relative;
        width: 100%;
    }

    main {
        margin-left: 0;
        width: 100%;
    }
}

/* FUNDA HOME */
.funda-home {
    display: grid;
    grid-gap: 10px 30px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

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

.funda-last_item {
    position: relative;
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 70px 1fr;
}

@media (max-width: 860px) {
    .funda-last_item {
    }
}

.funda-last_item .xfieldimage, .funda-last_item > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius);
}

.funda-last_item + div {
    margin-top: 20px;
    border-top: 1px dotted var(--bg2);
    padding-top: 20px;
}

.funda-last_item a {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.funda-last_item a:hover {
    color: var(--color1);
}

.funda-last_item a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.funda-last_meta {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    font-size: 13px;
    font-weight: 300;
    margin-top: 10px;
}

/* FUNDA HOME */
.funda-home_cent {
    position: relative;
    display: grid;
    grid-gap: 10px 30px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

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

.funda-home_item {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
}

.funda-home_item + div {
    margin-top: 15px;
    border-top: 1px solid var(--bg2);
    padding-top: 15px;
}

.funda-home_item.one {
    grid-gap: 15px;
    grid-column: span 2;
    grid-row: span 6;
}

@media (max-width: 860px) {
    .funda-home_item.one {
        grid-row: auto;
        grid-column: auto;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--bg2);
        padding-bottom: 25px;
    }
}

.funda-home_item.one + div {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.funda-home_bg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    order: -2;
    overflow: hidden;
}

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

.funda-home_item > a {
    font-size: 16px;
    font-weight: 500;
}

.funda-home_item > a:hover {
    color: var(--color1);
}

.funda-home_item > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.funda-home_item.one > a, .funda-home_item.two > a {
    margin-bottom: 0;
}

.funda-home_item.one > a {
    font-size: 25px;
    font-weight: bold;
}

.funda-home_text {
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.funda-home_meta {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    font-size: 13px;
    font-weight: 300;
    order: 1;
}

.funda-home_item.one .funda-home_meta {
    order: -1;
}

/* FUNDA SHORT */
.funda-short {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

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

.funda-fast .funda-short_item {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 60px 1fr;
    align-items: center;
    font-size: 14px;
}

.funda-fast .funda-short_bg {
    border-radius: 10px;
    aspect-ratio: 1/1;
}

.funda-fast .funda-short_meta {
    font-size: 10px;
}

.funda-fast .funda-short_item + .funda-short_item {
    margin-top: 10px;
}

.funda-short_item {
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.funda-short_bg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

.funda-short_meta {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    font-size: 13px;
    font-weight: 300;
    margin: 10px 0 10px;
}

.funda-short_item a {
    font-size: 16px;
    font-weight: 500;
}

.funda-short_item a:hover {
    color: var(--color1);
}

.funda-short_item a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.funda-short_item:hover img {
    transform: scale(1.05);
}

/* FUNDA FULL */
.funda-full_head {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    color: var(--text2);
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dotted var(--bg2);
}

.funda-full_head > span, .funda-full_head > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.funda-full_head [onclick^="doRate"] {
    margin-left: auto;
    border-right: 1px solid var(--bg2);
    padding-right: 20px;
}

.funda-full_head [onclick^="doRate"] i {
    color: #ff4848;
    font-size: 20px;
}

.funda-full_head [onclick^="doRate"] span {
    background: var(--bg2);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
}

.funda-full_author {
    max-width: max-content;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    border: 1px dotted var(--bg2);
    padding: 3px 25px 3px 3px;
    border-radius: 50px;
    margin-right: auto;
}

.funda-full_author img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

.funda-full_author div b {
    display: block;
    font-weight: 600;
}

.funda-full_author div span {
    font-size: 12px;
    font-weight: 400;
}

.funda-full_detal {
    position: relative;
}

.funda-full_fast {
    position: absolute;
    top: 0;
    background: var(--bg);
    width: inherit;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    transition: 0.3s;
}

.funda-full_fast > .theme {
    height: auto;
}

@media (max-width: 860px) {
    .funda-full_fast {
        position: fixed;
        width: 100%;
        top: unset!important;
        border-top: 1px solid var(--light);
        box-shadow: 0 3px 32px 0 rgb(18 31 39 / 16%);
        left: 0;
        bottom: 0;
        padding: 10px 0;
        flex-direction: row;
        grid-gap: 10px;
        justify-content: center;
        z-index: 4;
    }

    .funda-full_fast > .theme {
        display: flex;
        align-items: center;
        width: auto;
    }
}

.theme i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
}

.theme .active {
    background: var(--color1);
    color: #fff;
}

.funda-full_fast > a, .funda-full_fast > div {
    position: relative;
    background: var(--bg2);
    color: #52636f;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--radius);
    font-size: 18px;
    text-align: center;
}

.funda-full_fast [onclick^="doRate"] i {
    color: #ff4848;
    font-size: 20px;
}

.funda-full_fast [onclick^="doRate"] span {
    position: absolute;
    top: 0;
    background: #000;
    color: #fff;
    padding: 2px 5px;
    border-radius: 50px;
    font-size: 10px;
    line-height: normal;
}

.funda-full_text {
    margin-left: 90px;
}

@media (max-width: 860px) {
    .funda-full_text {
        margin-left: 0;
    }
}

.funda-full_text span, .funda-full_text p {
    color: var(--text);
}

.funda-full_text a:not(.x7f01a140 *) {
    display: inline-block;
}

.funda-full_text .xfieldimage {
    margin: 30px 0;
    object-fit: cover;
}

.funda-full_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    margin: 30px 0 20px 0;
}

.funda-full_tags > a {
    background: var(--bg2);
    border: 1px solid var(--dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
}

.funda-rel {
    box-shadow: 0 3px 32px 0 rgb(18 31 39 / 16%);
    padding: 30px;
    border-radius: var(--radius);
    margin: 30px 0;
}

body.dark .funda-rel {
    background: var(--bg2);
}

.funda-rel .e-h3 {
    margin-bottom: 0;
}

.funda-rel_item {
    position: relative;
    font-weight: 400;
    margin-top: 20px;
}

.funda-rel_item > a {
    display: flex;
}

.funda-rel_item > a:hover {
    color: var(--color1);
}

.funda-rel_item > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.funda-rel_item > a i {
    background: var(--bg2);
    min-width: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 7px;
    font-size: 12px;
    text-align: center;
    margin-left: auto;
}

.funda-rel_meta {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    color: var(--text2);
    font-size: 12px;
    font-weight: 200;
    margin-top: 3px;
}

.funda-rel_meta span {
    display: flex;
    align-items: center;
    grid-gap: 5px;
}

/* LABEL */
.label {
    padding: 3px 8px;
    border-radius: var(--radius);
    font-size: 10px;
    font-weight: 400;
}

.label.blue {
    background: #dfe6ff;
    color: #476ffb;
}

.label.green {
    background: #eaeff1;
    color: #466423;
}

/* FOOTER */
footer {
    position: relative;
    background: #18191d;
    box-shadow: 0px -7px 10px rgb(0 0 0 / 10%);
    color: #fff;
}

footer .container {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
    justify-content: space-between;
    padding: 30px 0;
    font-size: 14px;
}

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

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    color: #c4d6e2;
}

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

@media (max-width: 860px) {
    .footer-soc {
        margin: 15px 0;
    }
}

.footer-soc a {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #4d5161;
    font-size: 18px;
    color: #fff;
}

.footer-soc a:hover {
    background: var(--color2);
    border: 2px solid var(--color2);
}

.footer-copy {
    color: var(--text2);
    font-size: 12px;
}

.footer-copy a:not(.x7f01a140 *) {
    display: inline-block;
}

.footer-dev {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: var(--text2);
    font-size: 12px;
    font-weight: 200;
    margin-left: auto;
}

/* BREAKNEWS */
.breaknews {
    position: relative;
    background: #243c4b;
    color: #fff;
    padding: 4px 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;
    }
}

.reading-time-label {
    font-size: 14px;
    font-weight: 500;
    color: #1e88e5;
    background: #e3f2fd;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}
/*Скрываем Google капчу */
.grecaptcha-badge { visibility: hidden; }

/*Для видео АДАПТИВ*/
.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;}
  }
/* /Для видео АДАПТИВ*/