* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--blue-color--default);
}

title {
    display: block;
}

:root {
    --white-color: #fff;
    --black-color: #000;
    --gray-color--light: #fafafa;
    --gray-color--medium: #e9e9e9;
    --gray-color--dark: #7f7f7f;
    --red-color: #EA5640;
    --blue-color--default: #0e1638;
    --ff-Lora: 'Lora', serif;
    --ff-Onest: 'Open Sans', sans-serif;
    --color-evenimente: #F05A7E;
    --color-live: #ff0000;
    --color-politica: #ff553b;
    --color-turism: #F0B03A;
    --color-societate: #71A900;
    --color-economie: #0F9B6D;
    --color-externe: #48CFCB;
    --color-regiuni: #179BAE;
    --color-alegeri: #604CC3;
    --color-cultura: #CE95F2;
    --color-uniunea-europeana: #0023BD;
    --color-oficial: #4379F2;
    --color-interviuri: #99D276;
    --color-referendum: #C96868;
    --color-sport: #229799;
    --color-alte: #606060;
    --color-stiri-in-imagini: #56abdf;
}

body,
html {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    overflow-y: scroll;
}

body.scroll-lock {
    overflow: hidden;
}

input,
textarea,
button,
select {
    border: none;
    outline: none;
    background-color: transparent;
    font-family: var(--ff-Onest);
    cursor: pointer;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--black-color);
}

main {
    overflow-x: hidden;
}

.general-wrapper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1320px) {
    .general-wrapper {
        padding: 0 20px;
    }
}

@media screen and (max-width: 430px) {
    .general-wrapper {
        padding: 0 10px;
    }
}

.disable-selection {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.gradient-text {
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.ui__display-align-bottom {
    display: flex;
    align-items: flex-end;
}

.ui__display-align-center {
    display: flex;
    align-items: center;
}

.ui__display-align-top {
    display: flex;
    align-items: flex-start;
}

.ui__display-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui__display-justify-between {
    justify-content: space-between;
}

.ui__background-image-center {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.ui__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ui__rows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.ui__custom-arrow-select::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--black-color);
    border-top: 2px solid var(--black-color);
    margin-left: 10px;
    margin-top: -3px;
    transform: rotate(135deg);

}

.ui__custom-arrow-select.active::after,
.ui__custom-arrow-select:hover::after {
    transform: rotate(-45deg);
    margin-top: 4px;
    border-color: var(--white-color);
}

.ui__news-tag {
    display: flex;
    align-items: center;
    font-family: var(--ff-Onest);
    font-weight: 500;
}

.ui__news-tag span {
    order: 3;
    color: var(--gray-color--dark);
    margin-left: 7px;
    white-space: nowrap;
}

.ui__news-tag::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    margin-right: 10px;
}

.ui__news-tag.ui__news-tag--live {
    color: var(--color-live);
}

.ui__news-tag.ui__news-tag--live::before {
    background-color: var(--color-live);
    border-radius: 50%;
}

.ui__news-tag.ui__news-tag--live::after {
    content: 'LIVE';
}

[class*="--evenimente"],
[class*="--sobytiya"],
[class*="--events"] {
    color: var(--color-evenimente);
}

[class*="--evenimente"]::before,
[class*="--sobytiya"]::before,
[class*="--events"]::before {
    background-color: var(--color-evenimente);
}

.ui__news-tag.ui__news-tag--evenimente::after {
    content: 'Evenimente';
}

.ui__news-tag.ui__news-tag--sobytiya::after {
    content: 'События';
}

.ui__news-tag.ui__news-tag--events::after {
    content: 'Events';
}

[class*="--politica"],
[class*="--politika"],
[class*="--politics"] {
    color: var(--color-politica);
}

[class*="--politica"]::before,
[class*="--politika"]::before,
[class*="--politics"]::before {
    background-color: var(--color-politica);
}

.ui__news-tag.ui__news-tag--politica::after {
    content: 'Politică';
}

.ui__news-tag.ui__news-tag--politika::after {
    content: 'Политика';
}

.ui__news-tag.ui__news-tag--politics::after {
    content: 'Politics';
}

[class*="--turism"],
[class*="--turizm"],
[class*="--tourism"] {
    color: var(--color-turism);
}

[class*="--turism"]::before,
[class*="--turizm"]::before,
[class*="--tourism"]::before {
    background-color: var(--color-turism);
}

.ui__news-tag.ui__news-tag--turism::after {
    content: 'Moldova Turistica';
}

.ui__news-tag.ui__news-tag--turizm::after {
    content: 'Туристическая Молдова';
}

.ui__news-tag.ui__news-tag--tourism::after {
    content: 'Touristic Moldova';
}

[class*="--societate"],
[class*="--obshestvo"],
[class*="--society"] {
    color: var(--color-societate);
}

[class*="--societate"]::before,
[class*="--obshestvo"]::before,
[class*="--society"]::before {
    background-color: var(--color-societate);
}

.ui__news-tag.ui__news-tag--societate::after {
    content: 'Societate';
}

.ui__news-tag.ui__news-tag--obshestvo::after {
    content: 'Общество';
}

.ui__news-tag.ui__news-tag--society::after {
    content: 'Society';
}

[class*="--economie"],
[class*="--ekonomika"],
[class*="--economy"] {
    color: var(--color-economie);
}

[class*="--economie"]::before,
[class*="--ekonomika"]::before,
[class*="--economy"]::before {
    background-color: var(--color-economie);
}

.ui__news-tag.ui__news-tag--economie::after {
    content: 'Economie';
}

.ui__news-tag.ui__news-tag--ekonomika::after {
    content: 'Экономика';
}

.ui__news-tag.ui__news-tag--economy::after {
    content: 'Economy';
}

[class*="--externe"],
[class*="--vneshnie"],
[class*="--external"] {
    color: var(--color-externe);
}

[class*="--externe"]::before,
[class*="--vneshnie"]::before,
[class*="--external"]::before {
    background-color: var(--color-externe);
}

.ui__news-tag.ui__news-tag--externe::after {
    content: 'Externe';
}

.ui__news-tag.ui__news-tag--vneshnie::after {
    content: 'Внешние';
}

.ui__news-tag.ui__news-tag--external::after {
    content: 'External';
}

[class*="--regiuni"],
[class*="--regiony"],
[class*="--regions"] {
    color: var(--color-regiuni);
}

[class*="--regiuni"]::before,
[class*="--regiony"]::before,
[class*="--regions"]::before {
    background-color: var(--color-regiuni);
}

.ui__news-tag.ui__news-tag--regiuni::after {
    content: 'Regiuni';
}

.ui__news-tag.ui__news-tag--regiony::after {
    content: 'Регионы';
}

.ui__news-tag.ui__news-tag--regions::after {
    content: 'Regions';
}

[class*="--alegeri"],
[class*="--vybory"],
[class*="--elections"] {
    color: var(--color-alegeri);
}

[class*="--alegeri"]::before,
[class*="--vybory"]::before,
[class*="--elections"]::before {
    background-color: var(--color-alegeri);
}

.ui__news-tag.ui__news-tag--alegeri::after {
    content: 'Alegeri';
}

.ui__news-tag.ui__news-tag--vybory::after {
    content: 'Выборы';
}

.ui__news-tag.ui__news-tag--elections::after {
    content: 'Elections';
}

[class*="--cultura"],
[class*="--kultura"],
[class*="--culture"] {
    color: var(--color-cultura);
}

[class*="--cultura"]::before,
[class*="--kultura"]::before,
[class*="--culture"]::before {
    background-color: var(--color-cultura);
}

.ui__news-tag.ui__news-tag--cultura::after {
    content: 'Cultura';
}

.ui__news-tag.ui__news-tag--kultura::after {
    content: 'Культура';
}

.ui__news-tag.ui__news-tag--culture::after {
    content: 'Culture';
}

[class*="--ue-1"],
[class*="--es-1"],
[class*="--eu-1"] {
    color: var(--color-uniunea-europeana);
}

[class*="--ue-1"]::before,
[class*="--es-1"]::before,
[class*="--eu-1"]::before {
    background-color: var(--color-uniunea-europeana);
}

.ui__news-tag.ui__news-tag--ue-1::after {
    content: 'Aderare la UE';
}

.ui__news-tag.ui__news-tag--es-1::after {
    content: 'Вступление в ЕС';
}

.ui__news-tag.ui__news-tag--eu-1::after {
    content: 'EU Accession';
}

[class*="--oficial"],
[class*="--oficialnyj"],
[class*="--official"] {
    color: var(--color-oficial);
}

[class*="--oficial"]::before,
[class*="--oficialnyj"]::before,
[class*="--official"]::before {
    background-color: var(--color-oficial);
}

.ui__news-tag.ui__news-tag--oficial::after {
    content: 'Oficial';
}

.ui__news-tag.ui__news-tag--oficialnyj::after {
    content: 'Официально';
}

.ui__news-tag.ui__news-tag--official::after {
    content: 'Official';
}

[class*="--interviuri"],
[class*="--intervyu"],
[class*="--interviews"] {
    color: var(--color-interviuri);
}

[class*="--interviuri"]::before,
[class*="--intervyu"]::before,
[class*="--interviews"]::before {
    background-color: var(--color-interviuri);
}

.ui__news-tag.ui__news-tag--interviuri::after {
    content: 'Interviuri';
}

.ui__news-tag.ui__news-tag--intervyu::after {
    content: 'Интервью';
}

.ui__news-tag.ui__news-tag--interviews::after {
    content: 'Interviews';
}

[class*="--referendum"] {
    color: var(--color-referendum);
}

[class*="--referendum"]::before {
    background-color: var(--color-referendum);
}

.ui__news-tag.ui__news-tag--referendum::after {
    content: 'Referendum 2024';
}

.ui__news-tag.ui__news-tag--referendum-ru::after {
    content: 'Референдум 2024';
}

.ui__news-tag.ui__news-tag--referendum-en::after {
    content: 'Referendum 2024';
}

[class*="--sport"],
[class*="--sport-ru"],
[class*="--sport-en"] {
    color: var(--color-sport);
}

[class*="--sport"]::before,
[class*="--sport-ru"]::before,
[class*="--sport-en"]::before {
    background-color: var(--color-sport);
}

.ui__news-tag.ui__news-tag--sport::after {
    content: 'Sport';
}

.ui__news-tag.ui__news-tag--sport-ru::after {
    content: 'Спорт';
}

.ui__news-tag.ui__news-tag--sport-en::after {
    content: 'Sport';
}

[class*="--stiri-in-imagini"],
[class*="--sobytiya-v-kartinkah"],
[class*="--events-in-pictures"] {
    color: var(--color-stiri-in-imagini);
}

[class*="--stiri-in-imagini"]::before,
[class*="--sobytiya-v-kartinkah"]::before,
[class*="--events-in-pictures"]::before {
    background-color: var(--color-stiri-in-imagini);
}

.ui__news-tag.ui__news-tag--stiri-in-imagini::after {
    content: 'Stiri in imagini';
}

.ui__news-tag.ui__news-tag--sobytiya-v-kartinkah::after {
    content: 'События в картинках';
}

.ui__news-tag.ui__news-tag--events-in-pictures::after {
    content: 'Events in pictures';
}

[class*="--alte"],
[class*="--drugie"],
[class*="--other"] {
    color: var(--color-alte);
}

[class*="--alte"]::before,
[class*="--drugie"]::before,
[class*="--other"]::before {
    background-color: var(--color-alte);
}

.ui__news-tag.ui__news-tag--alte::after {
    content: 'Altele';
}

.ui__news-tag.ui__news-tag--drugie::after {
    content: 'Другие';
}

.ui__news-tag.ui__news-tag--other::after {
    content: 'Others';
}

.ui__news-tag.ui__news-tag--default {
    color: var(--blue-color--default);
}

.ui__news-tag.ui__news-tag--default::before {
    background-color: var(--blue-color--default);
}

.ui__ff--lora {
    font-family: var(--ff-Lora);
}

.ui__ff--onest {
    font-family: var(--ff-Onest);
}

.ui__3-line-title {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui__with-video {
    position: relative;
}

.ui__with-video::after {
    content: "";
    background-image: url(/images/icons/youtube.svg);
    background-size: contain;
    background-position: center;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ui__with-video.ui__with-video__large::after {
    width: 70px;
    height: 70px;
}

.index__last-news .news .news__item .news__item--banner.ui__with-video::after {
    width: 90px;
    height: 90px;
    filter: grayscale(1);
}

.hidden {
    display: none !important;
}

.social-button img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(186deg) brightness(106%) contrast(103%);
    width: 20px;
    margin-right: 10px;
}

.social-button:hover {
    color: var(--white-color);
}

.social-button.facebook:hover {
    background-color: #3b5998 !important;
}

.social-button.instagram:hover {
    background-color: #c13584 !important;
}

.social-button.telegram:hover {
    background-color: #0088cc !important;
}

.social-button.twitter:hover {
    background-color: #1da1f2 !important;
}

.social-button.google:hover {
    background-color: #00ac44 !important;
}

/* STYLES FOR LIGHTBOX JS*/

body.lb-disable-scrolling {
    overflow: hidden;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid white;
}

.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: white;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(/images/lightbox/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.lb-container>.nav {
    left: 0;
}

.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(/images/lightbox/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(/images/lightbox/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 0 4px;
    color: #ccc;
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-caption a {
    color: #4ae;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(/images/lightbox/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}


/* STYLES FOR SMALL NEWS COMPONENT */

.news-component-row {
    border-bottom: 1px solid var(--gray-color--medium);
}

.news-component-row:last-child {
    border-bottom: none;
}

.news-component-row .recent__info {
    max-width: 70%;
    height: 100%;
}

.news-component-row .recent__info .ui__news-tag {
    font-size: 14px;
    margin-bottom: 10px;
}

.news-component-row .recent__info .title {
    font-size: 20px;
    font-weight: 500;
}

/* .last-news-common .news-component-row:hover .recent__info .title {
    text-decoration: underline;
} */

.news-component-row .recent__photo {
    width: 100%;
    max-width: 170px;
    min-width: 170px;
    height: 115px;
    min-height: 115px;
    max-height: 115px;
    border-radius: 8px;
    margin-left: 20px;
    background-image: url('../images/no-picture.png');
    overflow: hidden;
}

.news-component-row .recent__photo>* {
    height: 100%;
}

.news-component-row:hover .recent__info .title p:not(.main) {
    text-decoration: underline;

}

@media screen and (max-width: 1250px) {
    .news-component-row .recent__photo {
        margin-left: 10px;
    }
}

@media screen and (max-width: 490px) {
    .news-component-row .recent__photo {
        width: 100%;
        max-width: 120px;
        min-width: 120px;
        height: 80px;
        min-height: 80px;
        max-height: 80px;
    }
}

@media screen and (max-width: 400px) {
    .news-component-row .recent__info .title {
        font-size: 19px;
    }

    /* .news-component-row .recent__info .ui__news-tag {
        font-size: 12px;
    } */

    .news-component-row .recent__info .ui__news-tag::before {
        width: 12px;
        height: 12px;
        border-radius: 3px;
        margin-right: 6px;
    }
}

/* STYLES FOR LARGE NEWS COMPONENT */

.large-news .large-news__image {
    height: 290px;
    max-width: 440px;
    width: 100%;
    border-radius: 5px;
    background-image: url('../images/no-picture.png');
    overflow: hidden;
}

.large-news .large-news__image>* {
    height: 100%;
}

.large-news .large-news__title .title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
}

/* .large-news:hover .large-news__title .title {
    text-decoration: underline;
} */

.large-news .large-news__title {
    margin-top: 15px;
}

.large-news:hover .large-news__title .title p:not(.main) {
    text-decoration: underline;

}

@media screen and (max-width: 400px) {
    .large-news .large-news__title .title {
        font-size: 19px;
    }
}

/* STYLES FOR SWIPER BULLETS */

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: #D9D9D9;
    margin: 0 4px;
    transition: transform 0.3s linear;
    transform: scale(1);
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background-color: #797979;
    transform: scale(1.2);
}

/* STYLES FOR LAST NEWS COMPONENT */

.last-news-common {
    border-right: 1px solid var(--gray-color--medium);
}

.last-news-common .last-news-common__title {
    font-size: 40px;
    font-weight: 500;
}

.last-news-common .last-news-common__news .news-component-row {
    padding: 20px 0;
}

.last-news-common.auxiliar {
    border-right: none;
    margin-top: 50px;
}

/* STYLES FOR CURRENCY EXCHANGE COMPONENT */

.currency-exchange .currency-exchange__title .title {
    font-size: 30px;
    font-weight: 500;
}

.currency-exchange .currency-exchange__title .origin {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--gray-color--dark);
    margin-top: 15px;
}


.currency-exchange .currency-exchange__title .origin img {
    width: 20px;
    margin-right: 5px;
}

.currency-exchange .currency-exchange__content {
    margin-top: 20px;
    min-height: 305px;
}

.currency-exchange .currency-exchange__content .currency-exchange__content--item {
    margin: 10px 0;
}

.currency-exchange .currency-exchange__content .currency-exchange__content--item input {
    border-bottom: 1px solid var(--gray-color--medium);
    height: 35px;
    max-width: calc(100% - 145px);
    width: 100%;
    padding: 3px 2px;
    margin-right: 10px;
    font-size: 24px;
    font-weight: 500;
}

.currency-exchange .currency-exchange__content .currency-exchange__content--item input:focus,
.currency-exchange .currency-exchange__content .currency-exchange__content--item input.active {
    border-bottom: 1px solid var(--red-color);
    color: var(--red-color);
}

.currency-exchange .currency-exchange__content .currency-exchange__content--item .currency {
    font-size: 24px;
    font-weight: 500;
    margin-right: 20px;
    min-width: 55px;
}

.currency-exchange .currency-exchange__content .currency-exchange__content--item .rate {
    color: var(--gray-color--dark);
}


/* STYLES FOR METEO COMPONENT */
.m2meteo2_informer {
    border-bottom: 1px solid var(--gray-color--medium);
    padding-bottom: 20px;
    font-family: var(--ff-Lora);
}

.m2meteo2_informer .m2info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m2meteo2_informer .m2info .m2day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    flex: 0 1 25%;
    min-width: 25%;
}

.m2meteo2_informer .m2info .m2day .m2view img {
    width: 25px;
    height: 25px;
}

.m2meteo2_informer .m2info .m2day .m2date .m2cday {
    font-size: 20px;
    margin: 5px 0;
}

.m2meteo2_informer .m2info .m2day:first-of-type .m2date .m2cday {
    color: var(--red-color);
}

.m2meteo2_informer .m2info .m2day .m2temperature .m2ctemp {
    white-space: nowrap;
    font-size: 18px;
}

.m2meteo2_informer .m2info .m2day .m2temperature .m2ctemp span {
    color: #b1b4c0;
}

.m2meteo2_informer .m2info>*+* {
    border-left: 1px solid var(--gray-color--medium);
}


.meteo-forecast .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.meteo-forecast .meteo-informer {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--gray-color--dark);
    padding-left: 5px;
}

.meteo-forecast .meteo-informer a {
    color: var(--gray-color--dark);
}

.meteo-forecast .meteo-informer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1250px) {
    .m2meteo2_informer .meteo-forecast {
        max-width: 570px;
        padding: 0;
    }

    .meteo-forecast .title {
        padding-left: 0;
    }
}

@media screen and (max-width: 570px) {
    .m2meteo2_informer .m2info .m2day .m2date .m2cday {
        font-size: 16px !important;
    }

    .m2meteo2_informer .m2info .m2day .m2temperature .m2ctemp {
        font-size: 14px;
    }

    .m2meteo2_informer .m2info .m2day {
        padding: 0 3px;
    }
}

@media screen and (max-width: 390px) {
    .m2meteo2_informer .m2info .m2day .m2date .m2cday {
        font-size: 16px !important;
    }

    .m2meteo2_informer .m2info .m2day .m2temperature .m2ctemp {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 350px) {
    .m2meteo2_informer {
        margin: 0 -10px;
    }

    .m2meteo2_informer .m2info .m2day .m2date .m2cday {
        font-size: 14px !important;
    }

    .m2meteo2_informer .m2info .m2day .m2temperature .m2ctemp {
        font-size: 11px !important;
    }
}

/* STYLES FOR AGERPRES WIDGET */

.agerpres-wrapper {
    margin-top: 30px;
}

.agerpres-items {
    min-height: 325px;
}

a.agerpres-news__item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #ebebeb;
    cursor: pointer;
}

a.agerpres-news__item:last-child {
    border-bottom: none;
}

a.agerpres-news__item:hover p {
    text-decoration: underline;
}

a.agerpres-news__item time {
    margin-right: 10px;
}

.agerpres-wrapper .title {
    padding: 10px 0;
}

.agerpres-wrapper .title img {
    width: 160px;
}


/* STYLES FOR POLL COMPONENT */

.poll-component .poll-component__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.poll-component .poll-not-done .poll-subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3 0px;
    color: var(--gray-color--dark);
}

.poll-component .poll-not-done .poll-option {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0;
}

.poll-component .poll-not-done .poll-option i.radio {
    width: 20px;
    border: 2px solid var(--gray-color--dark);
    height: 20px;
    display: block;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.poll-component .poll-not-done .poll-option input:checked+i::after {
    content: "";
    border-width: 3px 3px 0 0;
    border-style: solid;
    width: 9px;
    border-color: var(--gray-color--dark);
    height: 6px;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.poll-done .poll-option {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}

.poll-done .poll-option span {
    color: var(--gray-color--dark);
}


.poll-done .poll-option .poll {
    height: 20px;
    width: 0;
    transition: .2s ease-out;
    border-radius: 7px;
    margin-top: 4px;
}

.poll-done .poll-option:nth-child(1) .poll {
    background-color: #4379f2;
}

.poll-done .poll-option:nth-child(2) .poll {
    background-color: var(--red-color);
}

.poll-done .poll-option:nth-child(3) .poll {
    background-color: var(--gray-color--medium);
}

.search-component:not(.search-component__page) {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    z-index: 102;
    overflow: auto;
}

.search-component .search-component__wrapper {
    max-width: 650px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.search-component .search-component__input {
    position: relative;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-component .search-component__input::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--gray-color--dark);
    position: absolute;
    bottom: 0;
}

.search-component .search-component__input.search-component__archive::after {
    display: none;
}

.search-component .search-component__input input[type="text"]::placeholder {
    font-size: 50px;
    color: var(--gray-color--dark);
}


.search-component .search-component__input input[type="text"] {
    font-size: 50px;
    color: var(--blue-color--default);
    padding: 10px 0;
    margin-right: 30px;
    width: calc(100% - 110px);
    padding-left: 10px;

}

.search-component .search-component__input .date-input-wrapper {
    flex: 1 0 100%;
    margin: 20px auto;
    justify-content: space-between;
    max-width: 400px;
    width: 100%;
}

.search-component .search-component__input .input-label {
    color: var(--gray-color--dark);
    font-family: var(--ff-Onest);
    font-size: 18px;
    white-space: nowrap;
}

.search-component .search-component__input .date-input-wrapper .date-wrapper {
    width: 140px;
    display: flex;
    align-items: center;
}

.search-component .search-component__input .date-input-wrapper .input-text,
.search-component .search-component__input .date-input-wrapper .formatted-date {
    margin: 0 10px;
    border: 2px solid var(--gray-color--medium);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 300;
    cursor: pointer;
    font-size: 16px;
    width: 140px;
}

.search-component .search-component__input .search-button-archive {
    border: 2px solid #292e7a;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 300;
    cursor: pointer;
    width: fit-content;
    margin-left: 20px;
    background-color: #292e7a;
    color: #fff;
}

.search-component .search-component__input .search-button-archive:hover {
    filter: brightness(1.1);
}

.search-component.archive-page .search-component__input .category-input-wrapper select {
    margin: 0 10px;
    border: 2px solid var(--gray-color--medium);
    padding: 8px 30px 8px 20px;
    border-radius: 25px;
    font-weight: 300;
    cursor: pointer;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-left: 30px;
}

.search-component.archive-page .search-component__input .category-input-wrapper {
    position: relative;
}

.search-component.archive-page .search-component__input .category-input-wrapper::after {
    content: "";
    border-width: 2px 2px 0 0;
    border-style: solid;
    display: block;
    border-color: var(--gray-color--dark);
    width: 6px;
    height: 6px;
    position: absolute;
    right: 25px;
    transform: rotate(135deg);
    top: 15px;
}

.search-component.archive-page .search-component__input .date-input-wrapper {
    margin: 20px 0;
    max-width: 310px;
}

.search-component .search-component__input .date-input-wrapper .input-date {
    font-family: var(--ff-Onest);
    color: var(--gray-color--dark);
    width: 18px;
    margin-left: -45px;
}

.search-component.archive-page .input-label {
    display: none;
}

@media screen and (max-width: 1000px) {
    .search-component .search-component__input::after {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 600px) {
    .search-component.archive-page .search-component__input .date-input-wrapper {
        margin: 20px 0;
    }
}

@media screen and (max-width: 530px) {
    .search-component .search-component__input .date-input-wrapper {
        flex-wrap: wrap;
        margin-bottom: -20px;
        margin-left: -20px;
        max-width: 310px;
        margin-right: -20px;

    }

    .search-component .search-component__input .date-input-wrapper .input-label {
        flex: 1 0 100%;
        margin-left: 30px;
    }

    .search-component.archive-page .search-component__input .category-input-wrapper {
        width: 250px;
    }

}

.search-component .search-component__input .icon {
    position: relative;
    width: 80px;
    height: 40px;
    background-color: var(--gray-color--medium);
    border-radius: 20px;
    cursor: pointer;
}

.search-component .search-component__input .icon:hover {
    background-color: var(--gray-color--light);
}

.search-component .search-component__input .icon::after {
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--blue-color--default);
    position: absolute;
    top: 8px;
    left: 27px;
}

.search-component .search-component__input .icon::before {
    content: "";
    width: 2px;
    position: absolute;
    height: 12px;
    background-color: var(--blue-color--default);
    top: 23px;
    left: 50px;
    transform: rotate(-56deg);
}

.search-component .search-component__last .last-item {
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0 10px 5px;
    border-bottom: 1px solid var(--gray-color--medium);
    position: relative;
    cursor: pointer;
}

.search-component .search-component__last .last-item:hover {
    background-color: var(--gray-color--medium);
}


.search-component .search-component__last .last-item .icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.search-component .search-component__last .last-item .icon::after {
    content: "";
    border-width: 1px 1px 0 0;
    border-style: solid;
    display: block;
    border-color: var(--gray-color--dark);
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-component .search-component__last .last-item .icon::before {
    content: "";
    width: 1px;
    height: 17px;
    display: block;
    background-color: var(--gray-color--dark);
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% + 1px);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* .search-component .search-component__last .last-item:nth-child(1) {
    pointer-events: none;
    color: var(--gray-color--dark);
} */

.search-component .mobile-nav__menu {
    display: none;
}

.search-component.search-component__page {
    padding: 0 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.search-component.search-component__page .search-component__wrapper {
    max-width: 57%;
    margin: 20px 0 0 0;
    padding: 0;
}

.search-component.search-component__page .search-component__input {
    max-width: 100%;
}

.search-component.search-component__page.archive-page {
    padding: 0;
}

.search-component.search-component__page .title-wrapper {
    font-size: 40px;
    font-weight: 500;
    flex: 1 0 100%;
}

.search-component.search-component__page .search-component__last {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.search-component.search-component__page .search-component__last .last-item {
    padding: 25px 0 25px 5px;
    width: 100%;
    display: block;
}

.search-component.search-component__page .search-component__last .last-item .searched-title {
    font-size: 20px;
    font-weight: 500;
}

.search-component.search-component__page .search-component__last .last-item p {
    font-size: 16px;
    margin-top: 10px;
}

.search-component.search-component__page .search-component__last .view-more {
    background-color: var(--red-color);
    color: var(--gray-color--light);
    font-size: 20px;
    font-family: var(--ff-Onest);
    padding: 8px 30px;
    border-radius: 25px;
    cursor: pointer;
    margin: 20px auto;
}

/* STYLES FOR HEADER */

.header {
    border-bottom: 1px solid var(--gray-color--medium);
    height: 80px;
}

.header .mobile-nav {
    display: none;
}

.header .header__item {
    flex: 0 0 33.33%;
}

.header .header__options {
    justify-content: flex-end;
}

.header .header__nav--item {
    padding: 10px 20px;
    font-weight: 500;
    margin: 0 10px;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    height: 80px;
}

.header .header__nav--item.active p:not(.sub-submenu-title),
.header .header__nav--item:hover p:not(.sub-submenu-title) {
    color: var(--gray-color--dark);
}


.header .header__nav--item .submenu {
    position: absolute;
    top: 100%;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 200px;
    transform: translate(-50%, 0);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 9px 0px #7878788a;
    /* overflow: hidden; */
    z-index: 102;
}

.header .header__nav--item .submenu .submenu__item {
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    background-color: var(--white-color);
    position: relative;

}

.header .header__nav--item .submenu .submenu__item:last-child {
    padding-bottom: 20px;
}

.header .header__nav--item .submenu .submenu__item:first-child {
    padding-top: 20px;
}

.header .header__nav--item .submenu .submenu__item.active,
.header .header__nav--item .submenu .submenu__item:hover {
    color: var(--gray-color--dark);
}

.header .header__nav--item .submenu .sub-submenu-title {
    padding: 0px 0 5px 0px;
}

.header .header__nav--item .submenu .with-sub-submenu:hover .sub-submenu-title,
.header .header__nav--item .submenu .with-sub-submenu.active .sub-submenu-title,
.header .header__nav--item .submenu .sub-submenu a.active,
.header .header__nav--item .submenu .sub-submenu a:hover {
    color: var(--gray-color--dark);
}

.header .header__nav--item .submenu .sub-submenu a {
    padding: 10px 20px;
}

.header .header__nav--item .submenu .with-sub-submenu.active .sub-submenu {
    position: absolute;
    left: calc(100% - 1px);
    background-color: var(--white-color);
    box-shadow: 0 3px 9px 0px #7878788a;
    z-index: -1;
    top: 0;
}

.header .header__logo {
    max-width: 280px;
    width: 100%;
    margin-bottom: -6px;
}

.header .header__options .header__options--search {
    background-color: var(--gray-color--medium);
    height: 41px;
}

.header .header__options .header__options--search svg {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    cursor: pointer;
}


.header .header__options .header__options--search input {
    width: 0;
    transition: width 0.3s ease;
}

.header .header__options .header__options--search.active input {
    width: 200px;
    padding: 0 20px;
    height: calc(100% + 10px);
    border-radius: 15px;
    background: var(--white-color);
}

.header .header__options>* {
    margin: 0 10px;
    border: 2px solid var(--gray-color--medium);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.header .header__options .header__options--language {
    padding: 0;
}

.header .header__options select {
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--ff-Onest);
}

.header .header__options>*:hover,
.header .header__options>*.active {
    background-color: var(--red-color);
    color: var(--white-color);
    border: 2px solid var(--red-color);
}

.header .header__options>*:hover select,
.header .header__options>*.active select {
    color: var(--white-color);
}

.header .header__options>*:hover svg,
.header .header__options>*.active svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(251deg) brightness(104%) contrast(101%)
}

.header .footer__column {
    display: none;
}

.header .header__options .language-select {
    position: relative;
}

.header .header__options .language-select.active {
    background-color: var(--red-color);
    border: 1px solid var(--red-color);
}

.header .header__options .language-select .language-select__header {
    text-transform: uppercase;
    padding: 8px 20px;
}

.header .header__options .language-select .language-select__header.active {
    color: var(--white-color);
}

.header .header__options .header__options--language:hover .language-select__header {
    color: var(--white-color);
}

.header .header__options .language-select .language-select__items {
    position: absolute;
    background-color: var(--white-color);
    border: 1px solid var(--gray-color--medium);
    border-radius: 10px;
    left: 50%;
    transform: translate(-50%);
    top: calc(100% + 2px);
    z-index: 1;
}

.header .header__options .language-select .language-select__item {
    padding: 10px 25px;
    border-bottom: 1px solid var(--gray-color--medium);
    cursor: pointer;
    text-transform: uppercase;
}

.header .header__options .language-select .language-select__item:hover,
.header .header__options .language-select .language-select__item.active {
    background-color: var(--gray-color--medium);
}

.header .header__options .language-select .language-select__item:last-child {
    border-bottom: none;
}

@media screen and (max-width: 1200px) {
    .header .header__options>* {
        padding: 8px 10px;
        margin: 0 5px;
    }

    .header .header__nav--item {
        padding: 10px 5px;
    }

    .header .general-wrapper {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1000px) {

    .header .header__logo {
        max-width: 250px;
    }

    .header .for-the-header {
        display: none;
    }

    .header {
        display: flex;
        align-items: center;
    }

    .header .mobile-nav {
        display: flex;
        justify-content: flex-end;
        position: relative;
        width: 85px;
        order: 3;
    }

    .header .mobile-nav .mobile-nav__menu {
        position: absolute;
    }

    .header .mobile-nav .mobile-nav__icon {
        width: 85px;
        height: 45px;
        border-radius: 30px;
        padding: 8px 28px;
    }

    .header .mobile-nav .mobile-nav__icon span {
        display: block;
        background-color: var(--gray-color--dark);
        width: 30px;
        height: 3px;
        margin: 3px 0;
        border-radius: 5px;
    }

    .header .mobile-nav .mobile-nav__icon span:last-of-type {
        width: 20px;
    }


    /* .header .mobile-nav .mobile-nav__icon.active {
        background-color: var(--blue-color--default);
    } */

    .header .mobile-nav .mobile-nav__icon.active span {
        background-color: var(--blue-color--default);
    }


    .header .header__item.header__nav {
        display: none;
    }

    .header .header__item.header__options .header__options--login {
        display: none;
    }

    .header .header__item.header__options .header__options--search {
        display: none;
    }

    .header .header__item.header__options {
        order: 1;
    }

    .header .header__item.header__logo {
        order: 2;
    }

    .header .header__logo {
        max-width: 240px;
    }

    .header .header__item {
        flex: none;
    }

    .header .header__options>* {
        margin: 0;
        border-radius: 10px;
    }

    .header .mobile-nav .mobile-nav__menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .search-component .for-the-header {
        display: block;
    }

    .search-component:not(.search-component__page) .search-component__last {
        display: none;
        padding: 0 20px;
    }

    .search-component.search-component__page .search-component__wrapper {
        max-width: 100%;
    }

    .search-component .search-component__input input[type="text"] {
        font-size: 30px;
    }

    .search-component .search-component__input input[type="text"]::placeholder {
        font-size: 30px;
    }

    /* .search-component .search-component__input .icon::after {
        width: 27px;
        height: 27px;
        top: 5px;
    }

    .search-component .search-component__input .icon::before {
        height: 10px;
        top: 30px;
        left: 30px;
    } */

    .search-component .search-component__wrapper {
        margin: 0 auto;
    }

    .search-component .search-component__input {
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .search-component .search-component__wrapper .footer__column {
        display: none;

    }

    .search-component .mobile-nav__menu .header__nav--item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        font-size: 18px;
        font-weight: 500;
        padding: 10px 20px;
        border-bottom: 1px solid var(--gray-color--medium);
        font-family: var(--ff-Onest);
    }

    .search-component .mobile-nav__menu .header__nav--item.active {
        background-color: var(--gray-color--light);
    }


    .search-component .mobile-nav__menu .header__nav--item p {
        padding: 10px 0;
    }

    .search-component .mobile-nav__menu .header__nav--item.with-submenu::after {
        content: "+";
        color: var(--gray-color--medium);
        font-size: 70px;
        font-weight: 100;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: rotate(0deg) translate(0, -50%);
        border-right: none;
        border-top: none;
        margin-left: 0;
        margin-top: 0;
        width: unset;
        height: unset;
        line-height: 0.5;
    }

    .search-component .mobile-nav__menu .header__nav--item.with-submenu.active::after {
        top: 0;
        transform: rotate(45deg) translate(0, 0);
    }

    .search-component .mobile-nav__menu .header__nav--item .submenu {
        order: 3;
        flex: 1 0 100%;
        padding-left: 30px;
    }

    .search-component .mobile-nav__menu .header__nav--item .submenu .submenu__item {
        padding: 10px 0;

    }

    .search-component .search-component__wrapper {
        padding: 0;
    }

    .search-component .search-component__last .last-item .icon {
        right: 20px;
    }

    .search-component .for-the-header .header__nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-component .for-the-header .header__nav .header__nav--item {
        width: 100%;
    }

    .search-component .mobile-nav__menu {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .search-component.archive-page {
        width: calc(100% + 60px);
        margin-left: -30px;
        padding: 0;
    }
}

@media screen and (max-width: 430px) {
    .header .mobile-nav .mobile-nav__icon {
        width: 50px;
        border-radius: 10px;
        padding: 8px 10px;
    }

    .header .header__options .language-select .language-select__header {
        padding: 8px 10px;
        font-size: 13px;
    }

    .header .header__options>* {
        margin: 0;
        border-radius: 10px;
        padding: 8px 5px;
    }

    .header .mobile-nav {
        width: 55px;
    }

    .header .header__logo {
        max-width: 180px;
    }

    .search-component .mobile-nav__menu .header__nav--item {
        padding: 0 10px;
    }

    .search-component .search-component__input {
        padding: 0;
    }

    .search-component .search-component__last {
        padding: 0 10px;
    }

    .search-component .search-component__input input::placeholder {
        font-size: 20px;
    }

    .search-component .search-component__input::after {
        width: 100%;
    }

    .search-component .search-container.header-form {
        width: calc(100% - 50px);
        margin-left: 10px;
        padding: 0 10px;
    }

    .search-component.archive-page .search-container.header-form {
        width: calc(100% - 0px);
        margin-left: -10px;
        padding: 0;
    }

    .header .header__options .language-select .language-select__item {
        padding: 10px 15px;
    }
}

/* STYLES NEWSLETTER BANNER */
.js__slider-promo .swiper-slide {
    min-width: 100%;
    z-index: 1;
    position: relative;
}

.js__slider-promo .swiper-slide.swiper-slide-active {
    z-index: 2;
}

.monitor-oficial {
    background-color: #193b82;
    overflow: hidden;
    position: relative;
    padding: 22px 0;
    display: block;
    height: 100%;
}

.monitor-oficial .monitor-logo {
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.monitor-oficial .monitor-decor {
    position: absolute;
    max-width: 500px;
    z-index: 0;
    right: 0;
    bottom: 0;
}

.monitor-oficial .monitor-list {
    position: relative;
    z-index: 1;
    margin-left: 200px;
    list-style: none;
}

.monitor-oficial .monitor-list li {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0px;
}

.monitor-oficial .monitor-list li::before {
    content: "";
    width: 10px;
    height: 15px;
    border-width: 3px 3px 0 0;
    border-color: #ffffff;
    border-style: solid;
    display: block;
    transform: rotate(135deg);
    margin-right: 10px;
}

.banner-mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .monitor-oficial .monitor-list {
        margin-left: 65px;
    }
}

@media screen and (max-width: 1000px) {
    .banner-desktop {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    .monitor-oficial .monitor-list {
        margin-left: 0;
    }

    .monitor-oficial .monitor-logo {
        max-width: 330px;
    }

    .monitor-oficial__inner {
        justify-content: space-between;
    }
}

@media screen and (max-width: 870px) {
    .monitor-oficial .monitor-list li {
        font-size: 17px;
    }

    .monitor-oficial .monitor-logo {
        max-width: 280px;
    }
}

@media screen and (max-width: 750px) {

    .monitor-oficial .monitor-list li::before {
        width: 8px;
        height: 10px;
    }

    .monitor-oficial {
        display: flex;
        align-items: center;
    }

    .monitor-oficial .monitor-list {
        margin-left: 10px;
    }

    .monitor-oficial .monitor-list li {
        margin: 10px 0;
    }

    .monitor-oficial .monitor-logo {
        max-width: 220px;
    }
}

@media screen and (max-width: 630px) {
    .monitor-oficial__inner {
        flex-direction: column;
        height: 100%;
        justify-content: space-evenly;

    }

    .monitor-oficial .monitor-list {
        margin-left: 0;
    }
}

@media screen and (max-width: 570px) {
    .monitor-oficial__inner {
        flex-direction: column;

    }

    .monitor-oficial .monitor-list {
        margin-left: 0;
    }

    .monitor-oficial .monitor-logo {
        max-width: 270px;
    }
}

.index__newsletter {
    background-color: #28313f;
    padding: 50px 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
}

.banner-red .index__newsletter {
    background-color: var(--red-color);
}

.newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.newsletter .newsletter__info {
    color: var(--white-color);
    max-width: 600px;
}

.newsletter .newsletter__info .tag {
    font-size: 14px;
    color: #888;
}

.banner-red .index__newsletter .tag {
    color: #FFFFFF80;
}

.newsletter .newsletter__info h2 {
    font-size: 22px;
    margin: 10px 0 40px 0;
    color: var(--white-color);
    font-weight: 400;
}

.newsletter .newsletter__info--form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter .newsletter__info--form input {
    background-color: #3e4652;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--white-color);
    font-size: 16px;
    width: 320px;
}

.newsletter .newsletter__info--form input.error {
    box-shadow: inset 0 0 0 1px #ea564078;
    background-color: #c968683d;
}


.banner-red .index__newsletter .newsletter__info--form input {
    background-color: #FFFFFF1A;
    color: #ffffffe3;
}

.banner-red .index__newsletter .newsletter__info--form input::placeholder {
    color: #FFFFFF80;
}

.newsletter .newsletter__info--form .js__submit-to-abonamente {
    background-color: var(--white-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter .newsletter__info--form .js__submit-to-abonamente:hover {
    background-color: #ddd;
}

.newsletter .newsletter__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.newsletter .social-button {
    text-decoration: none;
    background-color: #373f4c;
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;

}

.newsletter .newsletter__decor {
    width: 200px;
    height: 200px;
    border-right: 1px solid var(--white-color);
    border-top: 1px solid var(--white-color);
    position: relative;
}

.newsletter .newsletter__decor::before {
    content: "";
    width: 1px;
    height: 280px;
    position: absolute;
    background-color: var(--white-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.newsletter .newsletter__info--form .js__submit-to-abonamente .icon {
    display: none;
}

@media screen and (max-width: 1000px) {
    .newsletter .newsletter__decor {
        display: none;
    }

    .newsletter .newsletter__social {
        margin-left: 10px;
    }
}

@media screen and (max-width: 630px) {
    .newsletter {
        flex-direction: column;
    }

    .newsletter .newsletter__social {
        flex-direction: row;
        margin-top: 30px;
        margin-left: unset;
        justify-content: space-between;
        width: 100%;
    }
}

@media screen and (max-width: 570px) {

    .newsletter .newsletter__social {
        flex-wrap: wrap;
    }

    .newsletter .social-button {
        flex: 0 0 calc(50% - 15px);
    }
}

@media screen and (max-width: 500px) {
    .newsletter .newsletter__info--form input {
        width: 220px;
    }

    .newsletter .newsletter__social {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 390px) {
    .newsletter .newsletter__info--form .js__submit-to-abonamente {
        padding: 10px;
    }

    .newsletter .social-button {
        margin: 5px;
        padding: 10px;
        font-size: 13px;
    }

    .newsletter .social-button img {
        width: 16px;
        margin-right: 6px;
    }
}

@media screen and (max-width: 360px) {
    .newsletter .newsletter__info--form .js__submit-to-abonamente .text {
        display: none;
    }

    .newsletter .newsletter__info--form .js__submit-to-abonamente .icon {
        display: block;
        width: 20px;
        height: 20px;
    }
}

/* STYLES FOR MAIN INDEX PAGE */

.index__top {
    padding: 20px;
    border-bottom: 1px solid var(--gray-color--medium);
    min-height: 140px;
}

.index .index__top {
    padding-top: 20px;
}

.index__top__info {
    margin-right: 20px;
}

.index__top .index__top__info .index__top__info--title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
}

.index__top .index__top__tags {
    flex-wrap: wrap;
    max-width: 900px;
}

.index__top .index__top__tags .index__top__tags--item {
    margin: 5px 7px;
    background-color: var(--gray-color--medium);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
}

.index__top .index__top__tags .index__top__tags--item:hover {
    color: var(--white-color);
    background-color: var(--red-color);
}

.index__top .index__top__tags .index__top__tags--item.active {
    background-color: var(--red-color);
    color: var(--white-color);
}

.index__top .index__top__tags .live:hover,
.index__top .index__top__tags .live.active {
    background-color: var(--color-live);
}

.index__top .index__top__tags [class*="evenimente"]:hover,
.index__top .index__top__tags [class*="sobytiya"]:hover,
.index__top .index__top__tags [class*="events"]:hover,
.index__top .index__top__tags [class*="evenimente"].active,
.index__top .index__top__tags [class*="sobytiya"].active,
.index__top .index__top__tags [class*="events"].active {
    background-color: var(--color-evenimente);
}


.index__top .index__top__tags [class*="politica"]:hover,
.index__top .index__top__tags [class*="politika"]:hover,
.index__top .index__top__tags [class*="politics"]:hover,
.index__top .index__top__tags [class*="politica"].active,
.index__top .index__top__tags [class*="politika"].active,
.index__top .index__top__tags [class*="politics"].active {
    background-color: var(--color-politica);
}

.index__top .index__top__tags [class*="turism"]:hover,
.index__top .index__top__tags [class*="turizm"]:hover,
.index__top .index__top__tags [class*="tourism"]:hover,
.index__top .index__top__tags [class*="turism"].active,
.index__top .index__top__tags [class*="turizm"].active,
.index__top .index__top__tags [class*="tourism"].active {
    background-color: var(--color-turism);
}

.index__top .index__top__tags [class*="societate"]:hover,
.index__top .index__top__tags [class*="obshestvo"]:hover,
.index__top .index__top__tags [class*="society"]:hover,
.index__top .index__top__tags [class*="societate"].active,
.index__top .index__top__tags [class*="obshestvo"].active,
.index__top .index__top__tags [class*="society"].active {
    background-color: var(--color-societate);
}

.index__top .index__top__tags [class*="economie"]:hover,
.index__top .index__top__tags [class*="ekonomika"]:hover,
.index__top .index__top__tags [class*="economy"]:hover,
.index__top .index__top__tags [class*="economie"].active,
.index__top .index__top__tags [class*="ekonomika"].active,
.index__top .index__top__tags [class*="economy"].active {
    background-color: var(--color-economie);
}

.index__top .index__top__tags [class*="externe"]:hover,
.index__top .index__top__tags [class*="vneshnie"]:hover,
.index__top .index__top__tags [class*="external"]:hover,
.index__top .index__top__tags [class*="externe"].active,
.index__top .index__top__tags [class*="vneshnie"].active,
.index__top .index__top__tags [class*="external"].active {
    background-color: var(--color-externe);
}

.index__top .index__top__tags [class*="regiuni"]:hover,
.index__top .index__top__tags [class*="regiony"]:hover,
.index__top .index__top__tags [class*="regions"]:hover,
.index__top .index__top__tags [class*="regiuni"].active,
.index__top .index__top__tags [class*="regiony"].active,
.index__top .index__top__tags [class*="regions"].active {
    background-color: var(--color-regiuni);
}

.index__top .index__top__tags [class*="alegeri"]:hover,
.index__top .index__top__tags [class*="vybory"]:hover,
.index__top .index__top__tags [class*="elections"]:hover,
.index__top .index__top__tags [class*="alegeri"].active,
.index__top .index__top__tags [class*="vybory"].active,
.index__top .index__top__tags [class*="elections"].active {
    background-color: var(--color-alegeri);
}

.index__top .index__top__tags [class*="cultura"]:hover,
.index__top .index__top__tags [class*="kultura"]:hover,
.index__top .index__top__tags [class*="culture"]:hover,
.index__top .index__top__tags [class*="cultura"].active,
.index__top .index__top__tags [class*="kultura"].active,
.index__top .index__top__tags [class*="culture"].active {
    background-color: var(--color-cultura);
}

.index__top .index__top__tags [class*="ue-1"]:hover,
.index__top .index__top__tags [class*="es-1"]:hover,
.index__top .index__top__tags [class*="eu-1"]:hover,
.index__top .index__top__tags [class*="ue-1"].active,
.index__top .index__top__tags [class*="es-1"].active,
.index__top .index__top__tags [class*="eu-1"].active {
    background-color: var(--color-uniunea-europeana);
}

.index__top .index__top__tags [class*="oficial"]:hover,
.index__top .index__top__tags [class*="oficialnyj"]:hover,
.index__top .index__top__tags [class*="official"]:hover,
.index__top .index__top__tags [class*="oficial"].active,
.index__top .index__top__tags [class*="oficialnyj"].active,
.index__top .index__top__tags [class*="official"].active {
    background-color: var(--color-oficial);
}

.index__top .index__top__tags [class*="interviuri"]:hover,
.index__top .index__top__tags [class*="intervyu"]:hover,
.index__top .index__top__tags [class*="interviews"]:hover,
.index__top .index__top__tags [class*="interviuri"].active,
.index__top .index__top__tags [class*="intervyu"].active,
.index__top .index__top__tags [class*="interviews"].active {
    background-color: var(--color-interviuri);
}

.index__top .index__top__tags [class*="alte"]:hover,
.index__top .index__top__tags [class*="drugie"]:hover,
.index__top .index__top__tags [class*="other"]:hover,
.index__top .index__top__tags [class*="alte"].active,
.index__top .index__top__tags [class*="drugie"].active,
.index__top .index__top__tags [class*="other"].active {
    background-color: var(--color-alte);
}

.index__top .index__top__tags .referendum:hover,
.index__top .index__top__tags .referendum.active {
    background-color: var(--color-referendum);
}

.index__top .index__top__tags [class*="sport"]:hover,
.index__top .index__top__tags [class*="sport_ru"]:hover,
.index__top .index__top__tags [class*="sport_en"]:hover,
.index__top .index__top__tags [class*="sport"].active,
.index__top .index__top__tags [class*="sport_ru"].active,
.index__top .index__top__tags [class*="sport_en"].active {
    background-color: var(--color-sport);
}

.index__top .index__top__tags [class*="stiri-in-imagini"]:hover,
.index__top .index__top__tags [class*="stiri-in-imagini"].active {
    background-color: #56abdf;
}

.index__top .index__top__tags .alte:hover,
.index__top .index__top__tags .alte.active {
    background-color: var(--color-alte);
}

.index__top .index__top__tags .index__top__tags--item.active p,
.index__top .index__top__tags .index__top__tags--item:hover p {
    color: var(--white-color);
}

.index__top .index__top__tags .index__top__tags--item.active::after,
.index__top .index__top__tags .index__top__tags--item:hover::after {
    border-right: 2px solid var(--white-color);
    border-top: 2px solid var(--white-color);
}

@media screen and (max-width: 1120px) {
    .index__top .index__top__tags {
        max-width: 620px;
    }

    .index__top .index__top__tags .index__top__tags--item {
        margin: 5px 2px;
    }
}

@media screen and (max-width: 1000px) {
    .index__top {
        flex-direction: column;
        align-items: flex-start;
        max-width: calc(100% - 40px);
        padding: 20px 0;
        overflow: hidden;
    }

    .index__top .index__top__tags .index__top__tags--item {
        height: 35px;
        white-space: nowrap;
        justify-content: center;
    }

    .index__top .index__top__info {
        order: 2;
        display: flex;
        align-items: flex-end;
    }

    .index__top .index__top__info .index__top__info--title {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .index__top .index__top__info .index__top__info--time {
        padding-bottom: 10px;
    }

    .index__top .index__top__tags {
        order: 1;
        max-width: 100%;
        flex-wrap: wrap;
        min-width: 800px;
    }

    .hide-scrollbar {
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (max-width: 660px) {
    .index__top .index__top__info {
        order: 2;
        display: block;
    }

    .index__top .index__top__info .index__top__info--time {
        padding-bottom: 0;
    }

    .index__top .index__top__info {
        margin: 10px 0;
    }

    .index__top {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 430px) {
    .index__top {
        padding: 15px 10px;
    }
}


@media screen and (max-width: 400px) {
    .index__top .index__top__info .index__top__info--title {
        font-size: 34px;
    }

    .index__top .index__top__info .index__top__info--time {
        margin: 3px 0;
    }

    .index__top .index__top__tags .index__top__tags--item {
        /* margin: 2px 0; */
        /* padding: 8px 0; */
        /* flex: 0 0 calc(50% - 10px); */
        position: relative;
        justify-content: center;
    }

    .index__top .index__top__tags {
        max-width: unset;
        width: unset;
    }

    .index__top {
        padding: 15px 0;
    }
}

.index .main-page-title {
    font-size: 40px;
    text-align: center;
    padding-top: 20px;
    font-weight: 500;
}

.index__last-news {
    margin-top: 20px;
    margin-bottom: 50px;
}

.index__last-news .index__last-news--swiper {
    max-width: 731px;
    width: 100%;
    /* padding-right: 30px; */
    padding-top: 5px;
    border-right: 1px solid var(--gray-color--medium);
    overflow: hidden;
    position: relative;
}

.index__last-news .news .news__item {
    min-width: 100%;
    position: relative;
}

.index__last-news .news .news__item.swiper-slide-active {
    z-index: 100;
}

.index__last-news .news .news__item .news__item--banner {
    max-width: 700px;
    width: 100%;
    height: 460px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* background-image: url("../images/no-picture.png"); */
    overflow: hidden;
}

.index__last-news .news .news__item .news__item--banner>* {
    height: 100%;
}

.index__last-news .news .news__item .news__item--title .title {
    font-size: 35px;
    font-weight: 500;
    margin-top: 10px;
}

.index__last-news .news .news__item .news__item--title .title>* {
    display: inline;
}

.index__last-news .news .news__item:hover .news__item--title .title p:not(.main) {
    text-decoration: underline !important;
}


.index__last-news .index__last-news--swiper .swiper-pagination {
    position: absolute;
    z-index: 101;
    top: 487px;
    right: 55px;
}

.index__last-news .index__last-news--recent {
    padding-left: 15px;
    position: relative;
    max-width: calc(100% - 731px);
}

#js__content-to-add {
    padding-left: 15px;
    position: relative;
    max-width: calc(100% - 731px);
}

#js__content-to-add .index__last-news--recent {
    max-width: 100%;
    padding-left: 0;
}

.index__last-news .index__last-news--recent .news-component-row {
    padding: 20px 15px;
}

.index__last-news .index__last-news--recent .news-component-row:nth-child(1) {
    padding-top: 15px;
}

@media screen and (max-width: 1250px) {
    .index__last-news .index__last-news--swiper {
        padding-right: 15px;
    }

    .index__last-news .index__last-news--recent {
        padding-left: 15px;
    }

    .index__last-news .index__last-news--recent .news-component-row {
        padding: 30px 0;
    }

    .index__last-news {
        margin-top: 0;
    }
}

@media screen and (max-width: 1100px) {
    .index__last-news {
        flex-direction: column;
        align-items: flex-start;
    }

    .index__last-news .index__last-news--swiper {
        max-width: 700px;
        width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--gray-color--medium);
        padding-bottom: 10px;
        margin: 0 auto;
    }

    .index__last-news .news .news__item .news__item--banner {
        max-width: unset;
    }

    .index__last-news .index__last-news--recent .title {
        margin-top: 20px;
    }

    .index__last-news .index__last-news--recent {
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }

    .index__last-news .index__last-news--recent .news-component-row {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px;
    }

    #js__content-to-add {
        max-width: 100%;
        padding-left: 0;
    }

    .map-wrapper .index__last-news--recent .find-location select {
        margin-right: 0;
    }

    .map-wrapper .index__last-news--recent .find-location {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 760px) {
    .index__last-news .index__last-news--recent .news-component-row {
        flex: 0 0 100%;
        margin: 0;
    }
}

@media screen and (max-width: 600px) {
    .index__last-news .news .news__item .news__item--banner {
        height: 300px;
    }

    .index__last-news .index__last-news--swiper .swiper-pagination {
        top: 335px;
    }

    .index__last-news .news .news__item .news__item--title .title {
        font-size: 30px;
    }

    .index__last-news .index__last-news--recent .news-component-row {
        padding: 15px 0;
    }

    /*.index__top .index__top__tags .index__top__tags--item {
        font-size: 14px;
    } */
}

@media screen and (max-width: 500px) {
    .index__last-news .news .news__item .news__item--title .title {
        font-size: 19px;
    }

    .index__last-news .news .news__item .news__item--banner {
        height: 250px;
    }

    .index__last-news .index__last-news--swiper .swiper-pagination {
        top: 285px;
        right: 0;
    }

    .index__last-news .news .news__item .news__item--title .ui__news-tag {
        font-size: 14px;
    }

    .index__last-news .news .news__item .news__item--title .ui__news-tag::before {
        width: 12px;
        height: 12px;
        border-radius: 3px;
        margin-right: 6px;
    }

    #js__content-to-add {
        width: 100%;
    }
}

.index__official-news {
    padding: 30px 0;
}

.index__official-news .index__official-news--title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 30px;
}

.index__official-news .official-news {
    flex: 0 0 calc(33.33% - 24px);
    position: relative;
    margin: 0 12px;
    padding-bottom: 20px;
}

.index__official-news .official-news::after {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    width: 1px;
    height: 100%;
    background-color: var(--gray-color--medium);
}

.index__official-news .official-news:nth-child(3n)::after {
    display: none;
}

.index__official-news .index__official-news--swiper {
    overflow: hidden;
    position: relative;
    padding-top: 40px;
    margin-top: -25px;
    border-bottom: 1px solid var(--gray-color--medium);
}

.index__official-news .index__official-news--swiper .swiper-pagination {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.index__official-news .mobile {
    display: none;
}

@media screen and (max-width: 1250px) {
    .index__official-news {
        padding: 30px 10px;
    }
}

@media screen and (max-width: 1100px) {
    .index__official-news .official-news {
        flex: 0 0 calc(50% - 24px);
    }

    .large-news .large-news__image {
        max-width: unset;
    }

    .index__official-news .official-news:nth-child(3n)::after {
        display: block;
    }

    .index__official-news .official-news:nth-child(2n)::after {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .index__official-news .desktop {
        display: none;
    }

    .index__official-news .mobile {
        display: block;
    }

    .index__official-news .official-news {
        flex: 0 0 calc(100% - 10px);
        margin: 0 5px;
    }

    .large-news .large-news__image {
        max-width: unset;
    }

    .index__official-news .official-news::after {
        display: none;
    }

    .index__official-news .official-news:nth-child(3n)::after {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .large-news .large-news__image {
        height: 225px;
        max-width: 340px;
        width: 100%;
    }
}

.index__options {
    margin-top: 10px;
    padding: 30px 0 0 0;
    background-color: var(--gray-color--light);
}

.index__options .index__options--wrapper {
    display: flex;
    flex: 0 0 auto;
}

.index__options .last-news-common {
    flex: 0 0 calc(100% - 441px);
    padding-right: 40px;
    padding-left: 20px;
}

.index__options .right-options .currency-exchange {
    padding-left: 30px;
    border-bottom: 1px solid var(--gray-color--medium);
    padding-bottom: 20px;
}

.index__options .meteo-forecast {
    margin-top: 20px;
}

.index__options .right-options .poll-component {
    padding: 30px 0 30px 30px;
}

.index__options .right-options .poll-component center {
    display: none;
}

.poll-component .poll-vote {
    background-color: var(--gray-color--medium);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    font-size: 19px;
}

.poll-component .poll-vote:hover {
    background-color: var(--gray-color--dark);
    color: var(--gray-color--light);
}

@media screen and (max-width: 1150px) {
    .index__options .last-news-common {
        flex: 0 0 calc(100% - 380px);
    }
}


@media screen and (max-width: 1000px) {
    .index__options .right-options {
        display: flex;
        flex-direction: column;
    }

    .index__options .index__options--wrapper {
        flex-direction: column;
    }

    .index__options .last-news-common {
        border-right: unset;
        flex: unset;
        padding: 0;
    }

    .index__options .last-news-common .last-news-common__news {
        display: flex;
        flex-wrap: wrap;
    }

    .index__options .last-news-common .last-news-common__news .news-component-row {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px;
    }

    .index__options .poll-component {
        max-width: 570px;
        padding-left: 0;
    }

    /* .index__options .currency-exchange {
        max-width: 570px;
    } */

    .index__options .meteo-forecast {
        /* max-width: 630px; */
        width: 100%;
        padding: 0;
    }

    .index__options .right-options .currency-exchange {
        padding-left: 0;
    }

    .index__options .right-options .poll-component {
        padding-left: 0;
    }
}

@media screen and (max-width: 760px) {
    .index__options .last-news-common .last-news-common__news .news-component-row {
        flex: 0 0 100%;
        margin: 0;
    }

    .index__options .meteo-forecast {
        padding: 0;
    }

    .index__options .last-news-common {
        padding-right: 0;
        padding-left: 0;
    }
}

.index__news {
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
}

.index__news .large-news {
    flex: 0 0 calc(33.33% - 30px);
    margin: 0 15px 30px 15px;
    padding-bottom: 30px;
    position: relative;
}

.index__news::before {
    content: "";
    height: 1px;
    top: calc(50% - 30px);
    background-color: var(--gray-color--medium);
    width: 100%;
    position: absolute;
}

.index__news .large-news::after {
    content: "";
    width: 1px;
    top: -15px;
    right: -15px;
    background-color: var(--gray-color--medium);
    height: 100%;
    position: absolute;
}

.index__news:not(.index__news--inner) .large-news:nth-child(3n)::after {
    display: none;
}

/* .index__news.index__news--inner .large-news:nth-child(4n)::after {
    display: none;
}

.index__news.index__news--inner .large-news {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px 30px 10px;
}

.index__news.index__news--inner .large-news::after {
    right: -10px;
}

.index__news.index__news--inner .large-news .large-news__image {
    height: 206px;
} */

@media screen and (max-width: 1100px) {
    .index__news::before {
        display: none;
    }

    .index__news .large-news:nth-child(3n)::after {
        display: block;
    }

    .index__news .large-news:nth-child(2n)::after {
        display: none;
    }

    .index__news .large-news {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px 30px 10px;
    }

    .index__news .large-news::after {
        right: -10px;
    }
}

@media screen and (max-width: 700px) {
    .index__news .large-news::after {
        display: none !important;
    }

    .index__news .large-news {
        flex: 0 0 100%;
        margin: 0 0 15px 0;
        padding-bottom: 15px;
    }
}

.index .index__news-small {
    background-color: var(--gray-color--light);
    padding: 10px 0;
    position: relative;
}

.index__news-small::after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    bottom: 90px;
    width: 1px;
    position: absolute;
    background-color: var(--gray-color--medium);
}

.index__news-small .news-component-row {
    flex: 0 0 calc(50% - 50px);
    margin: 0 20px;
    padding: 30px 0;
}

.index__news-small .news-component-row:nth-child(2n) {
    margin-left: 30px;
}

.index__news-small .news-component-row:nth-child(2n + 1) {
    margin-right: 30px;
}

.index__news-small .general-wrapper.ui__rows {
    flex-wrap: wrap;
}

.index__news-small.inner {
    position: relative;
    background-color: #fafafa;
}

.index__news-small.inner .general-wrapper.ui__rows {
    padding-bottom: 10px;
    position: relative;
}

.index .index__news-small .news-component-row:nth-child(10),
.index .index__news-small .news-component-row:nth-child(9) {
    border-bottom: 0;
}

.button-view-more {
    flex: 1 0 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.button-view-more .button {
    background-color: var(--red-color);
    color: var(--gray-color--light);
    font-size: 20px;
    font-family: var(--ff-Onest);
    padding: 8px 30px;
    border-radius: 25px;
    cursor: pointer;
}

.button-view-more .button:hover {
    filter: brightness(1.1);
}

@media screen and (max-width: 1000px) {
    .index__news-small .news-component-row {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px 30px 10px;
        padding: 30px 0;
    }

    .index__news-small .news-component-row:nth-child(2n) {
        margin-left: 10px;
    }

    .index__news-small .news-component-row:nth-child(2n + 1) {
        margin-right: 10px;
    }


}

@media screen and (max-width: 760px) {
    .index__news-small .news-component-row {
        flex: 1 0 100%;
        margin: 0 0 30px 0;
        padding: 10px 0;
    }

    .index__news-small .news-component-row:nth-child(2n) {
        margin-left: 0;
    }

    .index__news-small::after {
        display: none;
    }
}

/* STYLES FOR FOOTER */

.footer {
    background-color: #212935;
    color: var(--white-color);
    padding: 40px 0;
    margin-top: auto;
}

.footer .footer__content {
    display: flex;
    justify-content: space-between;
}

.footer .footer__column {
    flex: 1;
    padding: 0 10px;
}

.footer .footer__column h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer .footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer__column p,
.footer .footer__column a,
.footer .footer__column .p_like {
    color: #becbde;
    font-size: 14px;
    margin: 7px 0;
}

.footer .footer__column .p_like>* {
    display: inline-block;
}

.footer .footer__column .icon-additional .icon {
    background-color: #becbde;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
}

.footer .footer__column .icon-additional .icon:hover {
    background-color: #4e7dab;
    color: #becbde;
}

.footer .footer__column .icon-additional {
    position: relative;
}

.footer .footer__column .modal {
    position: absolute;
    background-color: #424751;
    color: #becbce;
    width: 300px;
    right: 20px;
    top: -10px;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #212935;
}

.footer .footer__column a:hover {
    text-decoration: underline;
}

.footer .footer__column .contacts {
    margin-bottom: 20px;
}

.footer .footer__column ul li {
    margin-bottom: 10px;
}

.footer .footer__column ul li a {
    color: #becbde;
    text-decoration: none;
}

.footer .footer__column ul li a:hover {
    text-decoration: underline;
}

.footer .footer__search {
    display: flex;
    margin-bottom: 20px;
    margin-left: -20px;
    margin-top: 10px;
}

.footer .footer__search input {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background-color: #424751;
    color: white;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
}

.footer .footer__search button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer .footer__search button:hover {
    background-color: #ddd;
}

.footer .footer__bottom {
    border-top: 1px solid #424751;
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer__social {
    display: flex;
}

.footer .footer__social>.social-button+.social-button {
    margin-left: 10px;
}

.footer .social-button {
    text-decoration: none;
    background-color: #373f4c;
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;

}

.footer .footer__partners {
    display: flex;
    max-width: 430px;
    width: 100%;
}

.footer .footer__partners>.partner-logo+.partner-logo {
    margin-left: 40px;
}

.footer .partner-logo {
    /* background-color: #424751;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px; */
    max-height: 50px;
}

.footer .partner-logo img {
    max-height: 50px;
}

.footer .for-the-header {
    display: none;
}

.footer .contacts-wrapper>* {
    display: none;
}

.footer .footer__column .contacts-wrapper blockquote {
    display: block;
}


@media screen and (max-width: 1000px) {
    .footer .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        border-top: 0;
    }

    .footer .footer__partners {
        flex-wrap: wrap;
    }

    .footer .footer__social {
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .footer .footer__partners .partner-logo,
    .footer .footer__social .social-button {
        margin: 15px 5px 0 5px;
    }

    .footer .footer__partners .partner-logo:first-of-type,
    .footer .footer__social .social-button:first-of-type {
        margin-left: 10px;
    }
}

@media screen and (max-width: 900px) {
    .footer {
        padding: 40px 0;
    }

    .footer .general-wrapper {
        padding: 0;
    }

    .footer .footer__content {
        flex-direction: column;
    }

    .footer .footer__column {
        border-bottom: 1px solid #373e49;
    }

    .footer .footer__column:nth-child(1) {
        order: 2;
    }

    .footer .footer__column:nth-child(2) {
        order: 3;
    }

    .footer .footer__column:nth-child(4) {
        order: 1;
        padding-bottom: 40px;
    }

    .footer .footer__column:nth-child(4) h3 {
        display: none;
    }

    .footer .footer__column h3 {
        margin-bottom: 0;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer__column h3::after {
        content: "+";
        color: #373e49;
        font-size: 80px;
        font-weight: 100;
        display: block;
        line-height: 0;
    }

    .footer .footer__column.active h3::after {
        content: "+";
        color: var(--white-color);
        transform: rotate(45deg);
    }

    .footer .footer__column ul {
        display: none;
    }

    .footer .footer__column.active ul {
        display: block;
    }

    .footer .footer__search {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .footer .social-button {
        flex: 1 0 calc(50% - 20px);
    }

    .footer .footer__partners {
        justify-content: center;
    }
}

/* STYLES FOR NEWS INNER */

.news-inner {
    margin-top: 25px;
    margin-bottom: 100px;
}

.news-inner .news-inner__news {
    max-width: 731px;
    border-right: 1px solid var(--gray-color--medium);
    padding-right: 30px;
    overflow-x: hidden;
}

.news-inner .news-inner__news .news__image,
.news-inner .news-inner__news .news__video {
    margin-bottom: 20px;
    max-width: 700px;
    height: 100%;
    border-radius: 10px;
    display: block;

}

.news-inner .news-inner__news .news__title {
    border-bottom: 1px solid var(--gray-color--medium);
}

.news-inner .news-inner__news .news__title .title {
    font-size: 35px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 25px;
}

.news-inner .news-inner__news .news__title .author {
    margin-bottom: 20px;
}

.news-inner .news-inner__news .news__title .author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5db9ff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-inner .news-inner__news .news__title .author .name {
    margin-left: 10px;
}

.news-inner .news-inner__news .news__title .author .name .name-wrp {
    margin-bottom: 3px;
}

.news-inner .news-inner__news .news__title .author .name span {
    color: var(--gray-color--dark);
    text-transform: capitalize;
}

.news-inner .news-inner__news .news__title .author .name span a {
    color: var(--gray-color--dark);
    text-transform: none;
}

.news-inner .news-inner__news .news__title .author .name span:hover a {
    text-decoration: underline;
}


.news-inner .news-inner__news .news__info {
    font-size: 16px;
    font-weight: 400;
    padding-top: 30px;
    line-height: 1.6;
    padding-bottom: 20px;
}

.news-inner .news-inner__news .news__info blockquote {
    background-color: var(--gray-color--light);
    font-family: var(--ff-Onest);
    padding: 15px 20px;
    border-left: 3px solid var(--red-color);
}

.news-inner .news-inner__news .news__info>*,
.news-inner .news-inner__news .news__info p,
.news-inner .news-inner__news .news__info span,
.news-inner .news-inner__news .news__info strong,
.news-inner .news-inner__news .news__info em,
.news-inner .news-inner__news .news__info pre>*,
.news-inner .news-inner__news .news__info pre p,
.news-inner .news-inner__news .news__info pre span,
.news-inner .news-inner__news .news__info pre strong,
.news-inner .news-inner__news .news__info pre em {
    color: #000000;
}

.news-inner .news-inner__news .news__info pre {
    font-family: var(--ff-Onest);
    white-space: normal;
}

.news-inner .news-inner__news .news__info a {
    color: #282e7b;
    text-decoration: underline;
}

.news-inner .news-inner__news .news__info pre>*+* {
    margin-top: 20px;
}

.news-inner .news-inner__news .news__info>p+p {
    margin-top: 20px;
}

.news-inner .news-inner__news .news__info ul {
    padding-left: 20px;
}

.news-inner .news-inner__news .news__info .wrapped-image {
    position: relative;
    margin-bottom: -15px;
    display: flex;
}

.news-inner .news-inner__news .news__info .wrapped-image img {
    display: block;
}

.news-inner .news-inner__news .news__info .wrapped-image span {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: #ffffffa8;
    padding: 5px 15px;
    color: #5e5e60;
    font-size: 16px;
}


.news-inner .news-inner__news .news__gallery {
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-inner .news-inner__news .news__gallery a {
    height: 220px;
    flex: 1 0 calc(50% - 20px);
    margin-top: 20px;
    border-radius: 10px;
    background-position: top;
}

.news-inner .news-inner__news .news__gallery:not(.odd) a:nth-child(2n) {
    margin-left: 20px;
}

.news-inner .news-inner__news .news__gallery.odd a:nth-child(2n + 1) {
    margin-left: 20px;
}

.news-inner .news-inner__news .news__gallery.odd a:first-of-type {
    flex: 1 0 calc(100% - 20px);
    height: 400px;
    margin-left: 0;
}

.news-inner .news-inner__news .news__files {
    margin: 30px 0;
}

.news-inner .news-inner__news .news__files a {
    margin: 10px 0 20px 0;
    font-size: 18px;
    text-decoration: underline;
}

.news-inner .news-inner__news .news__files img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.news-inner .news-inner__news .news__tags {
    flex-wrap: wrap;
    margin: 20px 0;
}

.news-inner .news-inner__news .news__tags .news__tags--tag {
    padding: 7px 15px;
    border-radius: 15px;
    background-color: var(--gray-color--dark);
    font-size: 18px;
    font-weight: 500;
    margin: 5px;
    color: var(--white-color);
}

.news-inner .news-inner__news .news__comments {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-color--medium);
    margin-top: 25px;
}


.news-inner .news-inner__news .news__comments .social-button img {
    filter: invert(75%) sepia(1%) saturate(441%) hue-rotate(28deg) brightness(97%) contrast(84%);
}

.news-inner .news-inner__news .news__comments .social-button:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(186deg) brightness(106%) contrast(103%);

}

.news-inner .news-inner__news .news__comments .social-button,
.news-inner .news-inner__news .news__comments .comments-button {
    padding: 8px 10px;
    margin: 0px 5px 8px 5px;
    border-radius: 10px;
}

.news-inner .news-inner__news .news__comments .social-button {
    background-color: var(--gray-color--medium);
}

.news-inner .news-inner__news .news__comments .comments__social {
    align-items: flex-start;
}

.news-inner .news-inner__news .news__comments .comments__social--social {
    flex-wrap: wrap;
}

.news-inner .news-inner__news .news__comments .comments-button {
    border: 2px solid var(--gray-color--medium);
    margin-left: auto;
    cursor: pointer;
    white-space: nowrap;
}

.news-inner .news-inner__news .news__comments .comments-button:hover {
    color: var(--gray-color--light);
    background-color: var(--gray-color--dark);
}

.news-inner .news-inner__news .news__comments .comments__input {
    background-color: var(--gray-color--light);
    margin: 30px 0;
    padding: 10px 20px 20px 20px;
    border-radius: 10px;
}

.news-inner .news-inner__news .news__comments .comments__input textarea {
    padding: 10px;
    margin-bottom: 10px;
    height: 100px;
    font-size: 16px;
    resize: none;
}

.news-inner .news-inner__news .news__comments .comments__input .btn {
    background-color: var(--blue-color--default);
    border-radius: 15px;
    padding: 8px 20px;
    color: var(--white-color);
    font-size: 16px;
    margin-left: auto;
    cursor: pointer;
}

.news-inner .news-inner__news .news__comments .comments__input .btn:hover {
    background-color: #16235a;
    filter: brightness(1.3);
}

.news-inner .news-inner__news .news__comments .comments__comments {
    margin-top: 50px;
}

.news-inner .news-inner__news .news__comments .comments__comments>*+* {
    margin-top: 40px;
}

.news-inner .news-inner__news .news__comments .comments__comments .comment .avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 20px;
}

.news-inner .news-inner__news .news__comments .comments__comments .comment .info .name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.news-inner .news-inner__news .news__comments .comments__comments .comment .info .name span {
    color: var(--gray-color--dark);
}

.news-inner .news-inner__news .news__comments .comments__comments .comment .info .message {
    font-weight: 500;
}

/* STYLES FOR SIDE BAR */

.news-inner__side {
    padding-left: 30px;
    max-width: 43%;
    width: 100%;
}

.sidebar .swiper-wrapper .swiper-slide {
    flex: 1 0 auto;
}

.sidebar .swiper-pagination {
    position: absolute;
    bottom: 2px;
    right: 0;
}

.sidebar .last-news-common__news {
    overflow: hidden;
    position: relative;
}

.sidebar .last-news-common__news .swiper-wrapper {
    position: relative;
}

.sidebar .last-news-common {
    border-right: none;
}

.sidebar .currency-exchange {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-color--medium);
    padding-right: 20px;
    margin-bottom: 10px;

}

.sidebar .poll-component {
    margin-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-color--medium);
}

.sidebar .meteo-forecast {
    margin-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-color--medium);
    max-width: 100%;
}

.sidebar .m2meteo2_informer .m2info .m2day .m2date .m2cday {
    font-size: 20px;
    font-weight: 500;
}

.sidebar .m2meteo2_informer .m2info .m2day {
    padding: 0 20px;
}

.sidebar .m2meteo2_informer {
    border-bottom: 0;
    min-height: 105px;
}

.sidebar .last-news-common .last-news-common__news--top .news-component-row:nth-child(1) {
    border-top: 1px solid var(--gray-color--medium);
}

.sidebar .last-news-common .swiper-wrapper .news-component-row {
    border: none;
}

@media screen and (max-width: 1250px) {
    .sidebar .m2meteo2_informer .m2info .m2day {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1000px) {
    .news-inner {
        flex-direction: column;
    }

    .news-inner .news-inner__news {
        max-width: 100%;
        padding-right: 0;
        border-right: none;

    }

    .news-inner .news-inner__side {
        max-width: 100%;
        padding-left: 0;
    }

    .news-inner__side {
        padding-top: 20px;
        border-top: 1px solid var(--gray-color--medium);
        margin-top: 30px;
        max-width: 100%;
        padding-left: 0;
    }

    .sidebar .meteo-forecast {
        max-width: 600px;
    }

    .news-inner .news-inner__news .news__image-wrapper {
        min-height: 200px;
    }
}

@media screen and (max-width: 600px) {

    /* .news-inner .news-inner__news .news__image {
        height: 280px;
    } */
    .news-inner .news-inner__news .news__gallery.odd a:first-of-type {
        height: 200px;
    }

    .news-inner .news-inner__news .news__title .title {
        font-size: 25px;
    }

    .news-inner .news-inner__news .news__gallery a {
        height: 120px;
    }

    .news-inner .news-inner__news .news__tags .news__tags--tag {
        font-size: 16px;
    }

    .news-inner .news-inner__news .news__comments .social-button {
        font-size: 0;
    }

    .news-inner .news-inner__news .news__comments .social-button img {
        margin-right: 0;
    }

    .news-inner .news-inner__news .news__comments .comments__comments .comment .avatar {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }

    .news-inner .news-inner__news .news__comments .comments__comments .comment .info .message {
        font-size: 14px;
    }

    .news-inner .news-inner__news .news__info {
        font-size: 18px;
    }

}

/* STYLES FOR LOGIN MODAL */

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
}

.login-modal .modal-content {
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;

}

.login-modal .modal-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}

.login-modal .modal-content p {
    font-size: 14px;
    color: var(--gray-color--dark);
    margin-bottom: 20px;
}

.login-modal .modal-content p.create-account::before,
.login-modal .modal-content p.create-account::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: var(--gray-color--medium);
}

.login-modal .modal-content p.create-account span {
    margin: 0 10px;
    white-space: nowrap;
}

.login-modal .tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.login-modal .tab {
    background-color: transparent;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-bottom: 2px solid var(--gray-color--medium);
    font-weight: 500;

}

.login-modal .tab:hover,
.login-modal .tab.active {
    color: var(--red-color);
    border-bottom: 2px solid var(--red-color);
}

.login-modal .register-form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #b0b0b05c;
    outline: none;
    font-size: 14px;
    color: #333;
}

.login-modal .checkbox {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.login-modal .checkbox label {
    cursor: pointer;
}

.login-modal .checkbox i {
    width: 20px;
    border: 2px solid var(--gray-color--dark);
    height: 20px;
    display: block;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.login-modal .checkbox input:checked+i {
    border: 2px solid var(--red-color);
    background-color: var(--red-color);
}

.login-modal .checkbox input:checked+i::after {
    content: "";
    border-width: 3px 3px 0 0;
    border-style: solid;
    width: 9px;
    border-color: var(--white-color);
    height: 6px;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.login-modal .submit-btn {
    width: 100%;
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.login-modal .submit-btn:hover {
    filter: brightness(1.1);
}

.login-modal .social-buttons {
    display: flex;
    justify-content: space-between;
}

.login-modal .social-button {
    width: 48%;
    background-color: #ffffff88;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #ddd;
    cursor: pointer;
}


.login-modal .social-button img,
.login-modal .social-button svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(75%) sepia(1%) saturate(441%) hue-rotate(28deg) brightness(97%) contrast(84%);
}

.login-modal .social-button:hover img,
.login-modal .social-button:hover svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(186deg) brightness(106%) contrast(103%);
}

.login-modal .quit-button {
    font-size: 80px;
    font-weight: 700;
    font-family: var(--ff-Onest);
    position: absolute;
    top: 0;
    right: 40px;
    cursor: pointer;
}

.login-modal .quit-button:hover {
    color: var(--red-color);
}

@media screen and (max-width: 540px) {
    .login-modal .quit-button {
        right: 0;
    }
}

@media screen and (max-width: 390px) {
    .login-modal .modal-content {
        padding: 30px 10px;
    }

    .login-modal .modal-content p.create-account::before,
    .login-modal .modal-content p.create-account::after {
        width: 80px;
    }
}

/* STYLES FOR STATIC PAGE */

.static-page {
    padding: 30px 20px 40px 20px;
}

.static-page .static-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

.static-page .archive-news .news-component-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.static-page .static-page__inner {
    width: 100%;
    padding-right: 40px;
    border-right: 1px solid var(--gray-color--medium);
}

.static-page .static-page__inner.widget {
    border-right: none;
    padding-right: 0;
}

.static-page__content p {
    margin: 15px 0;
    line-height: 1.5;
    font-weight: 400;
}

.static-page__content>*,
.static-page__content p,
.static-page__content span,
.static-page__content strong {
    font-size: 16px;
    color: #000000;
}

.static-page__content h3 {
    margin: 15px 0
}

.static-page__content ul {
    padding-left: 20px;

}

.static-page__content img {
    width: 100%;
}

.static-page__content ul li {
    margin: 10px 0;
}

.static-page__content a:not(.news-component-row):not(.pay-button) {
    color: #282e7b;
    text-decoration: underline;
}

.static-page__content .documents-wrapper a {
    color: #282e7b;
    text-decoration: none;
}

.static-page__content .documents-wrapper a:hover {
    text-decoration: underline;
}

.static-page__content .pay-title {
    margin-bottom: 5px;
}

.static-page__content .pay-button {
    background-color: var(--white-color);
    border: 1px solid var(--gray-color--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
    margin-top: 15px;
}

.static-page__content .pay-button:hover {
    background-color: var(--gray-color--dark);
    color: var(--white-color);
}

.static-page .contacts-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.static-page .packages-container {
    margin-top: 20px;
}

.static-page .personal-info {
    margin: 20px 0px;
    flex-wrap: wrap;
    max-width: 380px;
}

.static-page .personal-info>* {
    flex: 0 1 calc(50% - 10px);
}

.static-page .personal-info input {
    border: 1px solid var(--gray-color--dark);
    padding: 7px 10px;
    border-radius: 10px;
    margin: 10px 0 10px 5px;
}

.static-page .personal-info input.error {
    border-color: var(--red-color);
}

#gtx-trans {
    display: none;
}

.static-page .total-price {
    margin-top: 30px;
    font-size: 20px;
}

.static-page .packages-container .category-section {
    background-color: var(--gray-color--medium);
    padding: 10px;
    border-bottom: 1px solid var(--gray-color--light);
    border-radius: 5px;
    margin-bottom: 10px;
}

.static-page .packages-container .category-section .category-section__main {
    margin-right: 20px;
    max-width: 175px;
    width: 100%;
}

.static-page .packages-container .category-section select {
    background-color: var(--gray-color--light);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.static-page .packages-container .category-section .category-price {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.static-page .packages-container .category-section label {
    cursor: pointer;
    white-space: nowrap;
}

.static-page .packages-container .category-section label input {
    margin-right: 10px;
}

.static-page .packages-container .category-section .news-type label {
    padding: 4px 10px;
    background-color: var(--gray-color--light);
    border-radius: 5px;
    margin-top: 30px;
}

.static-page .packages-container .category-section .hidden-info {
    position: relative;
    margin-left: 10px;
}

.static-page .packages-container .category-section .hidden-info .icon {
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--gray-color--medium);
    font-weight: 600;
}

.static-page .packages-container .category-section .hidden-info .icon:hover {
    background-color: var(--gray-color--dark);
    color: var(--white-color);
}

.static-page .packages-container .category-section .hidden-info .modal {
    position: absolute;
    left: calc(100% + 5px);
    transform: translate(0, -50%);
    background-color: var(--gray-color--light);
    border: 1px solid var(--gray-color--dark);
    border-radius: 5px;
    padding: 5px 10px;
    top: 50%;
}

.static-page .packages-container .category-section .news-type>*+* {
    margin-left: 20px;
}

.static-page .choose-destination>*+* {
    margin-left: 20px;
}

.static-page .buy-button {
    margin: -35px 0 0 auto;
    max-width: fit-content;
    background-color: var(--color-politica);
    color: var(--white-color);
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.static-page .buy-button:hover {
    background-color: var(--color-live);
}

.static-page .buy-button a {
    text-decoration: none;
    color: var(--blue-color--default);
}

@media screen and (max-width: 1000px) {
    .static-page {
        flex-direction: column;
    }

    .static-page .static-page__inner {
        padding: 0 15px;
        border-right: none;
    }
}

@media screen and (max-width: 500px) {
    .static-page .static-page__inner {
        padding: 0;
    }
}

.static-page .static-page__inner.profile-page .form-horizontal {
    max-width: fit-content;
}

.static-page .static-page__inner.profile-page .form__group {
    margin-bottom: 30px;
}

.static-page .static-page__inner.profile-page .form__group label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

/* ObjOptField */
/* ObjOptData */

.static-page .static-page__inner.profile-page .form__group input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 250px;
    font-size: 16px;
}

.static-page .static-page__inner.profile-page .form__group input[type="file"] {
    border: 1px solid transparent;
    padding-left: 0;
}

.static-page .static-page__inner.profile-page .submit-button {
    border: 2px solid var(--gray-color--medium);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
}

.static-page .static-page__inner.profile-page .submit-button:hover,
.static-page .static-page__inner.profile-page .submit-button.active {
    background-color: var(--red-color);
    color: var(--white-color);
    border: 2px solid var(--red-color);
}

.static-page .static-page__inner.profile-page .user-profile-tabs {
    margin-bottom: 30px;
}

.static-page .static-page__inner.profile-page .user-profile-tabs>.submit-button+.submit-button {
    margin-left: 20px;
}

.static-page .static-page__inner.profile-page .attachments_box.uisortable {
    display: none;
}

.static-page .static-page__inner.profile-page .hidden-for-front {
    display: none;
}

/* STYLES FOR BREAKING NEWS COMPONENT*/

.title.ui__breaking-news>* {
    display: inline;
}

.title.ui__breaking-news p.main {
    font-size: 14px;
    font-family: var(--ff-Onest);
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    top: -1px;
}

.index__last-news .news .news__item .news__item--title .title.ui__breaking-news p.main {
    top: -5px;
}

/* STYLES FOR MOLDOVA TURISTICA PAGE */

.map-wrapper .index__last-news--recent .title {
    font-size: 30px;
    font-weight: 500;
    padding-top: 10px;
}

.map-wrapper .index__last-news--recent .title-select {
    font-size: 18px;
}

.map-wrapper .index__last-news--recent .find-location {
    border-bottom: 1px solid var(--gray-color--medium);
    position: relative;
    margin-top: -10px;
}

.map-wrapper .index__last-news--recent .find-location select {
    font-size: 20px;
    font-weight: 500;
    padding: 0 15px;
    margin-right: 10px;
    width: 100%;
    height: 50px;
}

.map-wrapper .index__last-news--recent .find-location .search-button {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    cursor: pointer;
}

.map-wrapper .index__last-news--recent .find-location .search-button::before {
    content: "";
    width: 15px;
    position: absolute;
    height: 15px;
    background-color: var(--white-color);
    top: 15px;
    right: 10px;
}

.map-wrapper .index__last-news--recent .find-location .search-button::after {
    content: "";
    width: 15px;
    height: 15px;
    border: solid var(--gray-color--dark);
    border-width: 2px 2px 0 0;
    position: absolute;
    top: 10px;
    transform: rotate(135deg);
}

.map-wrapper {
    padding-left: 20px;
    position: relative;
}

.map-wrapper svg {
    height: 600px;
    width: 500px;
    margin-top: 20px;
}

.map-wrapper .bubble-message {
    position: absolute;
    top: 60%;
    transform: translate(0, -50%);
    width: 150px;
    height: 110px;
    background-color: var(--gray-color--medium);
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
}

.map-wrapper .bubble-message::after {
    content: "";
    border-width: 0 0 30px 30px;
    border-style: solid;
    border-color: transparent transparent var(--gray-color--medium) transparent;
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 30px;
}

@media screen and (max-width: 1100px) {
    .map-wrapper {
        padding-left: 0;
    }
}

@media screen and (max-width: 530px) {
    .map-wrapper svg {
        width: 100%;
        height: 500px;
    }


    .map-wrapper .bubble-message {
        top: 65%;
    }
}

@media screen and (max-width: 420px) {
    .map-wrapper svg {
        height: 400px;
    }

    .map-wrapper .bubble-message {
        top: 70%;
        width: 150px;
        height: 80px;
    }
}

#widget_container_curs {
    display: none;
}

/* STYLES FOR NEWS WIDGET */

.news-widget-wrapper {
    display: flex;
    margin-top: 50px;
    align-items: flex-start;

}

.news-widget {
    max-width: 400px;
    border: 1px solid #999999;
    border-radius: 10px;
    padding: 10px 20px;
    margin-right: 40px;
}

.news-widget__settings label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.news-widget__settings input,
.news-widget__settings select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.news-widget__settings input[type='color'] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    border: none;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px;
}

#create-widget {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #e84545;
    color: white;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}

.news-widget__settings--color {
    position: relative;
}

.news-widget__settings--color input {
    margin: 0 0 0 10px;
}

.news-widget__settings--color .color-choose {
    display: flex;
    align-items: center;
}

.news-widget__settings--color span {
    bottom: 5px;
    right: 0;
}

.news-widget__settings--checkbox {
    margin-top: 10px;
}

.news-widget__settings--checkbox label {
    display: flex;
    align-items: center;
}

.news-widget__settings--checkbox label input {
    max-width: 30px;
    margin-top: 0;
}

#fin-res-js {
    border: 1px solid;
    width: 400px;
    height: 150px;
    margin-left: 20px;
    border-radius: 10px;
    padding: 20px;
    resize: none;
}

@media screen and (max-width: 1100px) {
    .news-widget-wrapper {
        flex-direction: column;
        margin-top: 30px;
    }

    #fin-res-js {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    #news-widget-generated {
        margin-top: 20px;
    }

    .news-widget {
        margin-right: 0;
    }

}

.breadcrumb-wrapper {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    background-color: var(--gray-color--light);
    border-radius: 7px;
}

.breadcrumb-wrapper .separator {
    margin: 0 5px;
    font-weight: 700;
}

.breadcrumb-wrapper .breadcrumb-wrapper__item {
    white-space: nowrap;
}

.breadcrumb-wrapper .breadcrumb-wrapper__item:last-child {
    pointer-events: none;
    color: var(--gray-color--dark);
    text-overflow: ellipsis;
    max-width: 300px;
    overflow: hidden;
}

.breadcrumb-wrapper .breadcrumb-wrapper__item:hover {
    text-decoration: underline;
}

.index__top .index__top__tags-items {
    display: none;
    position: absolute;
    top: 100%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 101;
}

.index__top .index__top__tags-items.active {
    display: flex;
}

.index__top .index__top__tags-items .index__top__tags-item {
    padding: 8px 10px;
    border-bottom: 1px solid var(--white-color);
    background-color: var(--gray-color--medium);
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.index__top .index__top__tags-items .index__top__tags-item:hover {
    color: var(--white-color);
}

.index__top .index__top__tags-header {
    margin: 5px 7px;
    background-color: var(--gray-color--medium);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.index__top .index__top__tags-header:hover,
.index__top .index__top__tags-header.active {
    background-color: var(--red-color);
    color: var(--white-color);
}

.index__top .index__top__tags-dropdown {
    position: relative;
}

/* STYLES FOR DOCUMENT TREE PAGES */

.documents-wrapper .documents-wrapper__title {
    font-size: 23px;
    font-weight: 500;
    margin: 20px 0px 10px 0;
}

.documents-wrapper .documents-wrapper__tree {
    border: 2px solid var(--gray-color--medium);
    border-radius: 4px;
    margin: 5px 0;
}

.documents-wrapper .documents-wrapper__tree--title {
    background-color: var(--gray-color--light);
    padding: 12px 15px;
    cursor: pointer;
}

.documents-wrapper .documents-wrapper__tree--title:hover {
    background-color: var(--gray-color--medium);
}


.documents-wrapper .documents-wrapper__tree--elem a img {
    width: 35px;
    margin-left: auto;
}

.documents-wrapper .documents-wrapper__tree--elem a p {
    margin-right: 15px;
}

.documents-wrapper .documents-wrapper__tree--elem {
    padding: 10px 30px;
    border-bottom: 1px solid var(--gray-color--medium);
}

/* STYLES FOR PAGINATION */

.pagination {
    list-style: none;
    margin-top: 40px;
    margin-bottom: 30px;
}

.pagination li {
    color: var(--blue-color--default);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--ff-Onest);
}

.pagination li span {
    color: var(--blue-color--default);
    padding: 0px 20px;
}

.pagination li a {
    color: var(--blue-color--default);
    cursor: pointer;
    padding: 0px 20px;
}

.pagination li:hover a {
    color: var(--gray-color--dark);
}

.not-found-page {
    margin-top: 30px;
    margin-bottom: 80px;
}

.not-found-page img {
    width: auto;
    margin-bottom: 30px;
}

.not-found-page h2 {
    font-weight: 500;
    font-size: 37px;
    margin-bottom: 20px;
}

.not-found-page h2 span {
    color: var(--color-politica);
}

.not-found-page a {
    font-size: 23px;
    background-color: #282e7a;
    color: #fefefe;
    padding: 5px 30px;
    border-radius: 25px;
    margin-top: 30px;
}

.not-found-page a:hover {
    background-color: #3a43ab;
}

.grecaptcha-badge {
    opacity: 0;
}