/* -------------------------------- FONTS ---------------------------------- */

/*  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;*/


/* -------------------------------- COLORS ---------------------------------- */

:root {
    --white: #fff;
    --white05: rgba(255,255,255,0.5);
    --white06: rgba(255,255,255,0.6);
    --white015: rgba(255,255,255,0.15);
    --gray: #979797;
    --gray2: #ededed;
    --lightgray: #f8f8f8;
    --lightgray2: #dcdcdc;
    --darkgray: #171717;
    --darkgray02: rgba(23,23,23,0.2);
    --darkgray05: rgba(23,23,23,0.5);
    --darkgray06: rgba(23,23,23,0.6);
    --darkgray08: rgba(23,23,23,0.8);
    --black: #000;

    --red: #ED2432;
    --red01: rgba(237, 36, 50, 0.1);
    --red004: rgba(237, 36, 50, 0.04);
    --red05: rgba(237, 36, 50, 0.5);

    --blue1: #0e123b;
    --blue1075: rgba(14,18,59,0.75);
    --blue2: #023cfc;
    --blue3: #0282fc;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
    color: var(--darkgray);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--darkgray);
    word-break: break-word;
    hyphens: auto;
}
body.lock,
html.lock {
    overflow-y: clip;
}

.app-wrapper {
    z-index: 2;
    position: relative;
}
.container {
    width: 100%;
    max-width: 1290px;
    padding: 0 15px;
    margin: 0 auto;
}
.app-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0 20px;
    margin: 150px 0 0;
}

main.app-main {
    min-width: 0;
}
#topFull {
    grid-column: 1 / -1;
}
input:focus-visible,
textarea:focus-visible{
    color: inherit;
}
*:focus {
    outline: 0 !important;
    /*color: inherit;*/
}

a, a:hover, button, button:hover {
    transition: all .3s ease
}
a,
button {
    color: var(--red);
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: var(--red);
    text-decoration: none;
}
.contentBody a:hover {
    text-decoration: underline;
}
button:hover {
    color: var(--blue3);
    text-decoration: none;
}
a.button.h-40 {
    height: 40px;
    line-height: 20px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 40px 0 24px;
    font-weight: 900;
    color: var(--darkgray);
    line-height: 1.2;
}
h1,h2,h3,h4,h5,h6 {
    margin: 40px 0 24px;
    font-weight: 900;
    color: var(--darkgray);
    line-height: 1.2;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}

p {
    font-size: 18px;
    line-height: 1.3;
    font-weight: normal;
    color: var(--darkgray);
    margin: 0;
    margin-bottom: 24px;
}
p.lead {
    font-size: 18px;
}

button {
    cursor: pointer;
}
button {
    background-color: var(--red);
    border: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    padding: 10px 10px;
    text-align: center;
    border-radius: 4px;
    transition: all .3s ease;
    display: table;
    min-width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
button:hover {
    color: var(--white);
    background-color: var(--darkgray);
    transition: all .3s ease;
}

::-moz-focus-inner {
    border: 0;
    outline: none;
}

:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 transparent;
}

::selection {
    color: #fff;
    background: #ED2432;
}
::-moz-selection {
    color: #fff;
    background: #ED2432;
}

@-moz-document url-prefix() {
    select, select:-moz-focusring, select::-moz-focus-inner {
        color: transparent !important;
        text-shadow: 0 0 0 #fff !important;
        background-image: none !important;
        border: 0;
    }
}

@media print {
    img {
        max-width: 100% !important;
    }
}

@media print {
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
}

svg:not(:root) {
    overflow: hidden;
}

img {
    -ms-interpolation-mode: bicubic;
}

label {
    font-weight: normal;
}

input,
textarea,
select {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--darkgray);
}
input:focus,
textarea:focus,
select:focus {
    color: var(--darkgray);
}
input {
    width: 100%;
}
textarea {
    width: 100%;
    height: 162px;
}
.hide {
    display: none;
}
blockquote {
    font-style: italic;
    border-left: 5px solid var(--red);
    font-size: 18px;
    padding-left: 20px;
    box-sizing: border-box;
}
pre {
    background-color: var(--lightgray);
    box-sizing: border-box;
    padding: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
code {
    color: var(--black);
}
/* CUSTOM RADIO BUTTON */
.custom-radio-button {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-radio-button .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--darkgray);
}
.custom-radio-button input:checked ~ .checkmark {
    background-color: var(--white);
}
.custom-radio-button input:checked ~ .pollAnswer {
    color: var(--red);
}
.custom-radio-button .pollAnswer {
    font-weight: 700;
}
.custom-radio-button .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-radio-button input:checked ~ .checkmark:after {
    display: block;
}
.custom-radio-button .checkmark:after {
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
}

/* -------------------------------- HEADER ---------------------------------- */
header {
    background-color: var(--white);
    color: var(--white);
    position: fixed;
    z-index: 999;
    width: 100%;
}
.header-black {
    background-color: var(--darkgray);
    min-height: 30px;
    padding: 8px 0;
}
.header-black-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 17px;
    padding-left: 20px;
}
.header-red {
    background-color: var(--red);
    min-height: 60px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.header-red-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 155px;
}
.app-brand {
    position: absolute;
    left: 0;
    top: -2px;
    z-index: 9;
}
h1.logo,
.logo {
    margin: 0;
}
.logo a {
    width: 102px;
    height: 70px;
    display: block;
    background: url("/assets/front/img/alo-logo.svg") var(--red);
    background-size: 80% auto;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--white);
    border-radius: 8px;
}
.app-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    list-style: none;
    gap: 35px;
}
.app-nav ul a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 7px 0 5px;
    color: var(--white);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.app-nav ul li.onPath a,
.app-nav ul a:hover,
.app-nav ul a.current {
    border-bottom: 2px solid var(--white);
}
.app-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.app-search {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 6px 15px 6px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-input {
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.4s ease, opacity 0.4s ease;
    z-index: 10; /* da ide preko drugih elemenata */
    background: white; /* ili ono što ti je pozadina */
    padding-left: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    width: 340px;
}
.app-search .search-trigger i {
    font-size: 16px;
    opacity: 1;
    cursor: pointer;
}
.app-search .search-trigger i:hover {
    opacity: 0.5;
    transition: all 0.3s ease;
}
.search-input.active {
    max-width: 340px; /* ili više ako ti treba */
    opacity: 1;
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}
.search-input-wrapper .searchForm {
    flex-grow: 1;
}
.searchForm input {
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    background: transparent;
}
.search-trigger.active i.fa-solid.fa-magnifying-glass::before {
    content: "\f00d";
}
.search-close {
    display: none;
}
.app-social {
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.app-social a {
    color: var(--white);
    opacity: 1;
    font-size: 16px;
    line-height: 1;
}
.app-social a:hover {
    opacity: 0.5;
}
.header-white {
    background-color: var(--white);
    padding: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.header-white:after {
    display: block;
    content: '';
    width: 100%;
    height: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.02) 100%);
}
header.fixed .header-white:after {
    transition: all 0.3s ease;
    opacity: 0.2;
    visibility: visible;
}
.header-white .top-subnav {
    margin-left: 135px;
}
.header-white .top-subnav nav {
    padding: 3px 0;
}
.header-white .nav a {
    font-size: 14px;
    line-height: 1;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 20px;
    position: relative;
    border-left: 1px solid var(--darkgray02);
    display: block;
}
.header-white .nav li:first-child a {
    border-left: none;
}
.header-white .nav a:after {
    display: block;
    content: '';
    height: 1px;
    background-color: var(--red);
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.header-white .nav a:hover:after,
.header-white .nav a.onPathlink:after {
    opacity: 1;
    transition: all 0.3s ease;
}
.mob-menu-button {
    width: 18px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    display: none;
    transition: all 0.3s ease;
}
.mob-menu-button:hover {
    opacity: 0.5;
    transition: all 0.3s ease;
}
.mob-menu-button span {
    display: block;
    height: 2px;
    background-color: var(--white);
}

/*---------------------------------- MOBILE NAVIGATION -----------------------*/
.mobile-navigation-wrapper {
    z-index: 9999;
    background-color: var(--darkgray06);
    position: fixed;
    width: 40px;
    left: 100%;
    top: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    transition: all 0.3s ease;
}
.mobile-navigation-wrapper.active {
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
}
.mobile-navigation-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 375px;
    height: 100%;
    overflow-y: auto;
    background-color: var(--white);
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}
.mobile-navigation-inner .close-nav {
    width: 16px;
    height: 16px;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    position: relative;
    margin-bottom: 15px;
    flex-shrink: 0;
}
.mobile-navigation-inner .close-nav:hover {
    opacity: 0.5;
}
.mobile-navigation-inner .close-nav span {
    width: 18px;
    height: 2px;
    display: block;
    background-color: var(--red);
    position: absolute;
    top: 50%;
}
.mobile-navigation-inner .close-nav span.first {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.mobile-navigation-inner .close-nav span.second {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
.mob-app-nav {
    width: 100%;
}
.mob-app-nav ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--gray);
}
.mob-app-nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.mob-app-nav ul li .dropdown-menu {
    width: 100%;
}
.mob-app-nav ul a,
.mobile-nav-extensions a {
    font-size: 20px;
    font-weight: 600;
    color: var(--darkgray);
    line-height: 22px;
    display: inline-block;
    padding: 14px 0;
}
.mob-app-nav ul a.current,
.mob-app-nav ul a:hover,
.mob-app-nav ul a.onPath,
.mobile-nav-extensions a:hover {
    color: var(--red);
}
.mob-app-nav .nav-arrow {
    width: 20px;
    height: 20px;
    position: relative;
    line-height: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mob-app-nav .nav-arrow:hover {
    color: var(--red);
}
.mob-app-nav .nav-item.active .nav-arrow,
.mob-app-nav .nav-item.onPath .nav-arrow {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}
.mob-app-nav .nav-item.active.onPath .nav-arrow {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.mob-app-nav .nav-item .dropdown-menu,
.mob-app-nav .nav-item.active.onPath .dropdown-menu {
    display: none;
    position: relative;
    width: 100%;
    border: none;
    border-radius: 0;
    font-size: 20px;
    padding-left: 20px;
    border-top: 1px solid var(--gray);
}

.mob-app-nav .nav-item.active .dropdown-menu,
.mob-app-nav .nav-item.onPath .dropdown-menu {
    display: block;
}
.mob-app-nav .nav-item .dropdown-menu li.last {
    border: none;
}
.mob-app-nav ul a.dropdown-item {
    background-color: var(--white);
    font-weight: 400;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--white);
    font-weight: 400;
}
.mob-app-extensions {
    width: 100%;
}
.mobile-nav-extensions {
    display: flex;
    flex-direction: column;
}
.mobile-nav-extensions-link-holder {
    width: 100%;
    border-bottom: 1px solid var(--gray);
}
.mobile-navigation-outside {
    height: 100%;
    flex-grow: 1;
}

/*---------------------------------- FOOTER-----------------------------------*/

.footer {
    margin-top: auto;
    background-color: var(--darkgray);
    border-top: 2px solid var(--red);
}
.footer-top {
    margin-top: 23px;
    display: flex;
    justify-content: space-between;
}
.footer-logo {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-top: 9px;
}
.footer-logo-img {
    background-color: var(--red);
    width: 119px;
    height: 70px;
    background-image: url(/assets/front/img/alo-logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 92px 49px;
    border-radius: 9px;
}
.footer-logo-img img {
    display: none;
}
.logo-txt {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    color: var(--white);
}
.footer-top .app-social {
    gap: 5px;
    align-items: inherit;
}
.footer-top .heder-nav-link {
    background-color: var(--white015);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.footer-top .heder-nav-link:hover {
    background-color: var(--red);
    opacity: 1;
}
.footer-bottom {
    display: flex;
    margin-top: 41px;
}
.footer-navigation-second {
    flex-basis: 42.85%;
}
.footer-navigation-second ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin: 0;
    list-style-type: none;
    padding-left: 0;
}
.footer-navigation-second ul li {
    padding: 5px 0px;
}
.footer-navigation-second .nav-item a {
    padding: 0;
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    width: fit-content;
    transition: all .3s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.footer-navigation-second .nav-item a:hover {
    text-decoration: underline;
    transition: all .3s ease;
}
.footer-navigation-second .nav-arrow {
    display: none;
}
.footer-navigation-third {
    flex-basis: 20.63%;
    margin-left: auto;
    margin-right: 20px;
}
.footer-navigation-third ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}
.footer-navigation-third .nav-item a {
    padding: 0;
    color: var(--white05);
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    width: fit-content;
    transition: all .3s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.footer-navigation-third .nav-item a:hover {
    text-decoration: underline;
    transition: all .3s ease;
}
.footer-copy {
    margin-top: -20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.footer-copy .copy {
    display: inline-block;
    margin: 0;
    margin-top: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--white05);
}

/* -------------------------------- STORY VIEW ------------------------------ */
.sectionTitle {
    font-size: 24px;
    line-height: 0.67;
    font-weight: 700;
    margin: 0;
}
.sectionTitle a {
    color: var(--darkgray);
}
.storyContent p.sponsored {
    margin-top: 10px;
    color: var(--white);
    background-color: var(--red);
    padding: 5px 10px;
    border-radius: 4px;
    display: table;
}
.story-wrapper-inner .title {
    font-size: 28px;
    line-height: 1.07;
    color: var(--darkgray);
    font-weight: 900;
    margin-top: 30px;
    margin-bottom: 21px;
    text-align: center;
}
.story-wrapper-inner {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}
.lead p {
    font-size: 20px;
    line-height: 1.33;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.8;
}
.storyContent .lead p {
    text-align: center;
}
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 20px;
}
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .author,
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .source,
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .releaseDate,
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .releaseTime,
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .commentCount {
    opacity: 0.5;
    font-size: 12px;
    line-height: 1.16;
    font-weight: 400;
    margin-right: 10px;
    position: relative;
}
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .author:before,
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .source:before,
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .releaseDate:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -5px;
    width: 1px;
    background-color: var(--darkgray);
}
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .author .bold {
    font-weight: 700;
}
.author-sorce-releaseDateTime-releaseDate-commentCount-socialShare .commentCount {
    margin-left: 25px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.social-icons {
    display: flex;
    gap: 0;
}
.social-icons a {
    color: var(--darkgray);
    padding: 4px 9px;
    transition: all .3s ease;
}
.social-icons a:hover {
    border-radius: 4px;
    background-color: var(--red);
    color: var(--white);
    transition: all .3s ease;
}

.storyMetaBar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.storyMetaBar a {
    margin-right: 5px;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.storyMetaBar a:hover {
    text-decoration-color: var(--red);
}

.storyMetaBar > span {
    margin-right: 8px;
    white-space: nowrap;
}

.storyMetaBar .commentCount {
    margin-left: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: 20px;
}

.previous-next-story {
    display: flex;
    gap: 20px;
    padding-bottom: 9px;
    border-bottom: 1px solid;
    border-color: var(--darkgray);
    margin-bottom: 32px;
}
.previous-story,
.next-story {
    flex-basis: calc(50% - 10px);
}
.next-story {
    margin-left: auto;
}
.previous-story .img-title,
.next-story .img-title {
    display: flex;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    border-color: var(--darkgray02);
}
.previous-story .img-title .img-holder,
.next-story .img-title .img-holder {
    flex-shrink: 0;
    max-width: 140px;
}
.previous-story a.small-title,
.next-story a.small-title {
    text-decoration: underline 2px transparent;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    min-height: 80px;
}
.previous-story a.small-title:hover,
.next-story a.small-title:hover {
    color: var(--darkgray);
    text-decoration: underline 2px var(--red);
}
.img-title img {
    flex-basis: 37.43%;
    border-radius: 4px;
    transition: all .3s ease;
}
.img-title img:hover {
    opacity: 0.75;
    transition: all .3s ease;
}
.small-title {
    font-size: 16px;
    line-height: 1.25;
    color: var(--darkgray);
    font-weight: 700;
    transition: all .3s ease;
}
.small-title:hover {
    color: var(--red);
    transition: all .3s ease;
}
.other-story {
    font-size: 14px;
    line-height: 0.85;
    color: var(--darkgray);
    font-weight: 700;
    margin-top: 9px;
}
.other-story i {
    color: var(--red);
}
.previous-story .other-story {
    display: flex;
    gap: 4px;
    align-items: center;
    width: fit-content;
    transition: all .3s ease;
    text-transform: uppercase;
}
.next-story .other-story {
    display: flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
    flex-direction: row-reverse;
    margin-left: auto;
    transition: all .3s ease;
    text-transform: uppercase;
}
.previous-story .other-story:hover,
.next-story .other-story:hover {
    color: var(--red);
    transition: all .3s ease;
}
.story-big-thumb {
    width: 100%;
    position: relative;
    margin-top: 21px;
    margin-bottom: 31px;
}
.story-big-thumb img {
    width: 100%;
    border-radius: 4px;
}
.thumb-text {
    position: absolute;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    background-color: var(--darkgray02);
    padding: 3px 10px 3px 10px;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    max-width: 100%;
}
.video-box .boxCaption,
.audio-box .boxCaption {
    font-size: 14px;
}
.contentBody ul {
    box-sizing: border-box;
    padding-left: 15px;
    margin-top: 16px;
    margin-bottom: 14px;
}
.contentBody ul li {
    font-size: 17px;
    line-height: 1.17;
    font-weight: 500;
    color: var(--darkgray);
    margin-bottom: 10px;
}
.contentBody ul li:first-child {
    padding-top: 0;
}
.contentBody ul li:last-child {
    padding-bottom: 0;
}
.contentBody ul li::marker {
    color: var(--red);
    font-size: 21px;
}
.contentBody ol {
    box-sizing: border-box;
    padding-left: 15px;
    margin-top: 16px;
    margin-bottom: 14px;
}
.contentBody ol li {
    font-size: 17px;
    line-height: 1.17;
    font-weight: 500;
    color: var(--darkgray);
    margin-bottom: 10px;
}
.contentBody ol li:first-child {
    padding-top: 0;
}
.contentBody ol li:last-child {
    padding-bottom: 0;
}
.contentBody ol li::marker {
    color: var(--red);
}
.storyCommentHolder h4 {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--darkgray);
    margin-bottom: 17px;
}
.title-with-icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--darkgray);
    margin-top: 57px;
    margin-bottom: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--darkgray);
    position: relative;
    padding-left: 40px;
}
.item {
    display: flex;
    gap: 20px;
    padding-bottom: 13px;
    border-bottom: 1px solid;
    border-color: var(--gray2);
    margin-top: 10px;
}
.item .img-holder {
    width: 100%;
    max-width: 180px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: flex-start;
}
a.img-holder img {
    transition: all 0.3s ease;
    opacity: 1;
    width: 100%;
}
a.img-holder:hover img {
    transition: all 0.3s ease;
    opacity: 0.8;
}
.breaking-news-content .item {
    border: none;
    padding-bottom: 0;
}
.title-time-commentCount,
.title-time-category {
    display: flex;
    flex-direction: column;
}
.title-time-commentCount h4,
.title-time-category h4 {
    font-size: 18px;
    line-height: 1.22;
    font-weight: 900;
    margin: 0 0 5px;
}
.title-time-commentCount h4 a {
    color: var(--darkgray);
    transition: all .3s ease;
    text-decoration: underline 2px transparent;
}
.title-time-commentCount h4 a:hover {
    /*    color: var(--red);*/
    transition: all .3s ease;
    text-decoration: underline 2px var(--red);
}
.time-comment {
    margin-top: auto;
    font-size: 12px;
    line-height: 0.91;
    display: flex;
    gap: 5px;
    opacity: 0.8;
}
.time-comment .commentCount {
    display: flex;
    gap: 2px;
}
.tagHolder {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    margin-bottom: 50px;
}
.tagList {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tagList a {
    background-color: var(--red01);
    color:  var(--red);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 5px;
    font-weight: 500;
    transition: all .3s ease;
}
.tagList a:hover {
    background-color: var(--red);
    color:  var(--white);
    transition: all .3s ease;
}
.tagTitle i {
    font-size: 24px;
    color: var(--darkgray);
}
.commentDate p {
    margin: 0;
}
.boxLinks a {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--red);
    text-decoration: underline;
    transition: all .3s ease;
}
.boxLinks a:hover {
    opacity: 0.8;
    transition: all .3s ease;
}
.boxFiles a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--red);
    transition: all .3s ease;
}
.boxFiles a:hover {
    /*    opacity: 0.8;*/
    transition: all .3s ease;
}
.boxFiles p {
    margin: 0;
}
.boxImage {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.boxImage .boxCaption {
    position: absolute;
    z-index: 2;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    background-color: var(--darkgray02);
    padding: 3px 10px 3px 10px;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    max-width: 100%;
}
.boxImage img {
    width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}
.box audio {
    width: 100%;
}
.video-box video {
    width: 100%;
}
.entrefilet-box .boxBody {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--darkgray);
    padding-left: 34px;
    position: relative;
    margin-top: 44px;
    margin-bottom: 30px;
}
.entrefilet-box .boxBody:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 20px;
    background-image: url('/assets/front/img/alo-quote-image.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 101px;
    height: 80px;
    z-index: -1;
}
.youtube .embed-responsive,
.google-maps .embed-responsive {
    margin-bottom: 24px;
    width: 100%;
    position: relative;
    clear: both;
    aspect-ratio: 16 / 9;
}
.youtube .embed-responsive iframe,
.google-maps .embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.twitter .embed-responsive {
    width: 100%;
    max-width: 550px;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
    clear: both;
}
.twitter .embed-responsive iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.facebook,
.instagram,
.twitter {
    display: flex;
    justify-content: center;
}
.facebook .embed-responsive {
    max-width: 500px;
}
.facebook .embed-responsive iframe,
.instagram .embed-responsive iframe {
    height: revert-layer;
}
.instagram .embed-responsive {
    max-width: 540px;
}
.telegram {
    height: 20px;
    display: flex;
    justify-content: center;
}
.telegram .embed-responsive {
    position: relative;
    width: 100%;
    max-width: 60px;
    /*        padding-top: 3%;*/
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.telegram .embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive iframe {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.box-full {
    width: 100%;
}
.audio-box audio {
    width: 100%;
}
.embed-responsive blockquote {
    font-style: inherit;
    border-left: none;
    font-size: inherit;
    padding-left: inherit;
}

/* --------------------------------- GALLERY BOX ---------------------------- */

.slick-list {
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}
.slick-slider button {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    top: 50%;
    padding: 0;
    min-width: initial;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--darkgray);
    background-color: var(--white06);
}
.slick-slider button.slick-prev {
    left: 10px;
}
.slick-slider button.slick-next {
    right: 10px;
}
.slick-slider button.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}
.slick-slider button i {
    font-size: 1.4rem;
}
.slick-slider .image_container {
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px;
}
.slick-slider .image_container .fancybox {
    position: absolute;
    display: block;
    margin: 20px;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    background: var(--red) url('/assets/front/img/full-width.svg') no-repeat center center;
}
.slick-slider .image_container img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    object-fit: contain;
    margin: auto;
}
.slick-slide .caption-description {
    text-align: center;
    font-size: 14px;
}

.fancybox-container .fancybox-image {
    border-radius: 4px;
}
button.fancybox-arrow {
    height: 44px;
    width: 44px;
    min-width: inherit;
    background-color: var
}
button.fancybox-arrow:after {
    top: 0;
}
.fancybox__footer {
    display: none;
}
.fancybox__slide {
    max-height: 100vh;
}
.fancybox__container button {
    min-width: inherit;
}

/* --------------------------------- SHORTS --------------------------------- */
.shorts-wrapper .single-short {
    padding: 10px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
}
.shorts-wrapper .single-short.oddLine {
    background-color: var(--lightgray);
}
.shorts-wrapper .short-time {
    padding: 5px 5px;
    color: var(--white);
    font-weight: 700;
    background-color: var(--red);
    border-radius: 4px;
    border-radius: 4px;
    align-self: flex-start;
    text-align: center;
}
.single-short .signature-author {
    font-weight: 700;
    margin-top: 5px;
}
.single-short .signature-author .divider {
    font-weight: 400;
    margin: 0 5px;
}
h4.short-title {
    margin: 5px 0 10px;
    font-size: 18px;
}
h4.short-title a {
    text-decoration: underline 2px transparent;
}
h4.short-title a:hover {
    text-decoration: underline 2px var(--red);
}
.single-short .short-body p {
    font-size: 16px;
    margin-bottom: 10px;
}
img.short-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}
.short-embed {
    margin-bottom: 10px;
    position: relative;
    width: 100%;
}
.shorts-wrapper .youtube .embed-responsive,
.shorts-wrapper .google-maps .embed-responsive {
    margin: 0 0 10px;
}
.shorts-bottom-divider {
    margin: 24px 0;
    border: 1px solid var(--lightgray);
}
.short-data .more-less {
    text-align: right;
    margin-top: 10px;
}
.short-data .more-less span {
    color: var(--red);
    cursor: pointer;
    font-weight: 700;
}
.short-data .more-less .less {
    display: block;
}
.short-data .more-less .more {
    display: none;
}
.short-data .more-less.more .less {
    display: none;
}
.short-data .more-less.more .more {
    display: block;
}
.short-data.longRead.more .short-body {
    height: auto;
    transition: all 0.3s ease;
}
.short-data.longRead .short-body {
    height: 44px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.short-data.longRead .short-body:after {
    height: 22px;
    width: 100%;
    display: block;
    content: '';
    background: #ffffff;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease;
}
.single-short.oddLine .short-data.longRead .short-body:after {
    background: #F8F8F8;
    background: linear-gradient(0deg,rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
}
.short-data.longRead.more .short-body:after {
    opacity: 0;
    transition: all 0.3s ease;
}
.short-video video {
    width: 100%;
}

/* ------------------------ storyCommentHolder ------------------------------ */

.storyCommentHolder .holderButton {
    display: flex;
    justify-content: flex-end;
}
.storyCommentHolder {
    margin-bottom: 40px;
}
#sendCommentForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.commentsHolder .commentsHeader h5 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--darkgray);
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.commentsBrowserHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.commentsBrowserHead .commentDate p {
    font-size: 14px;
}
.commentName .name {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--darkgray);
}
.commentsBrowser {
    padding: 15px 0px;
    border-bottom: 1px solid var(--gray2);
}
.commentsBrowserEntry p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--darkgray);
    font-weight: 400;
}
.commentsBrowserEntry h6 {
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0;
}
.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment-footer a {
    background-color: var(--red01);
    color:  var(--red);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}
.comment-footer a:hover {
    background-color: var(--red);
    color:  var(--white);
    transition: all .3s ease;
}
.comment-right {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-direction: column;
    margin-left: auto;
}
.comment-right .like,
.comment-right .dis-like {
    display: flex;
    gap: 10px;
    align-items: center;
}
.comment-right .like i {
    color: #15782d;
    cursor: pointer;
    padding: 7px 10px;
    transition: all .3s ease;
}
.comment-right .dis-like i {
    color: #ED2432;
    cursor: pointer;
    padding: 7px 10px;
    transition: all .3s ease;
}
.comment-right .like i:hover,
.comment-right .dis-like i:hover {
    opacity: 0.7;
    transition: all .3s ease;
}
.comment-right h5 {
    margin: 0;
    font-size: 16px;
}
.like-dislike {
    display: flex;
    gap: 20px;
}

/* --------------------------------- STORY LIST ----------------------------- */
h1.pageTitle {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}
.imgWrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: block;
}
.imgWrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
a:hover .imgWrapper img {
    opacity: 0.75;
}
.img-holder .uptitle,
.imgWrapper .uptitle,
.video-item .uptitle {
    position: absolute;
    z-index: 2;
    left: 5px;
    bottom: 5px;
    max-width: calc(100% - 10px);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--red05);
    border-radius: 4px;
    line-height: 1;
}
.uptitle .uptitle-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.2;
}
.big-uptitle {
    padding: 2px 10px;
    font-size: 20px;
    line-height: 24px;
    max-width: calc(100% - 20px);
}
.middle-uptitle {
    padding: 5px 8px;
    font-size: 18px;
    line-height: 20px;
}
.small-uptitle {
    padding: 3px 6px;
    font-size: 14px;
    /*line-height: 15px;*/
}
.storyNav {
    margin-bottom: 20px;
}
.storyNav h2.title,
.storyNav h3.title,
.storyNav h4.title {
    margin: 15px 0 5px;
    font-size: 28px;
}
.storyNav h3.title {
    font-size: 22px;
}
.storyNav h4.title {
    font-size: 18px;
}
.storyNav h2.title a,
.storyNav h3.title a,
.storyNav h4.title a {
    color: var(--darkgray);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
}
.storyNav h2.title a:hover,
.storyNav h3.title a:hover,
.storyNav h4.title a:hover {
    color: var(--darkgray);
    text-decoration-color: var(--red);
    opacity: 1;
}
.time-comments {
    font-size: 12px;
    color: var(--darkgray08);
}
.time-comments .divider {
    margin: 0 5px;
}
.time-comments .commentCount i {
    margin-right: 5px;
}
.storyList .medium-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.storyList .storyNav.medium-story,
.storyList .storyNav.small-story-six {
    position: relative;
    padding-bottom: 20px;
}
.storyList .medium-story {
    padding-right: 20px;
    border-bottom: 1px solid var(--gray2);
}
.storyList .medium-story.story-2 {
    padding-left: 20px;
    padding-right: 0;
}
.storyList .medium-story.story-1:after {
    width: 1px;
    position: absolute;
    content: "";
    display: block;
    background-color: var(--gray2);
    top: 0;
    right: 0;
    bottom: 20px;
}
.smaller-story-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
}
.smaller-story-wrapper .borderBottom,
.smaller-story-wrapper .borderRight {
    background-color: var(--gray2);
    position: absolute;
    display: block;
    border: none;
}
.smaller-story-wrapper .borderRight {
    top: 0;
    right: -20px;
    bottom: 20px;
    width: 1px;
}
.smaller-story-wrapper .story-5 .borderRight,
.smaller-story-wrapper .story-8 .borderRight {
    display: none;
}
.smaller-story-wrapper .borderBottom {
    bottom: 0;
    left: 0;
    right: -20px;
    height: 1px;
}
.smaller-story-wrapper .story-4 .borderBottom,
.smaller-story-wrapper .story-7 .borderBottom {
    left: -20px;
}
.smaller-story-wrapper .story-5 .borderBottom,
.smaller-story-wrapper .story-8 .borderBottom {
    left: -20px;
    right: 0;
}
.smaller-story-list .storyNav {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray2);
}
.smaller-story-list .storyNav.last {
    border-bottom: none;
    margin-bottom: 0;
}
.storyList {
    margin-bottom: 50px;
}
.smaller-story-list .imgTitleTDClist {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px
}
.smaller-story-list .title-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.smaller-story-list .storyNav h4.title {
    margin-top: 0;
}
/* --------------------------------- PAGINATION ----------------------------- */
.paginationHolder {
    margin-top: 40px;
}
.pagination {
    justify-content: center;
}
.pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.pagination ul a {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--gray2);
    color: var(--darkgray);
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-weight: 900;
}
.pagination ul a:hover,
.pagination ul li.active {
    background-color: var(--red);
    color: var(--white);
}
.pagination ul li.active {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-weight: 900;
    font-size: 14px;
}
.pagination ul li.more {
    margin: 0 5px;
    font-weight: 900;
    font-size: 14px;
}
.pagination li.previous i.fa-play {
    transform: scaleX(-1);
}
.pagination ul li.disable {
    opacity: 0.5;
    pointer-events: none;
}

/* --------------------------------- AGREGATOR ------------------------------ */
.agregator-list .storyNav {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
}
.timeline {
    position: relative;
}
.timeline:before {
    width: 1px;
    display: block;
    background-color: var(--gray);
    content: '';
    position: absolute;
    top: 0;
    bottom: -20px;
    left: 50%;
}
.firstStoryNav .timeline:before {
    top: 66.66%;
}
.lastStoryNav .timeline:before {
    bottom: 33.33%;
}
.timeline .time {
    text-align: center;
    display: flex;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1;
    padding: 10px 0 20px;
    position: relative;
    z-index: 1;
}
.timeline .min {
    font-size: 14px;
}
.agregator-list .imgTitleTDClist {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.agregator-list h3.title {
    margin: 0 0 5px;
    font-size: 22px;
}
.agregator-list .title-data p {
    font-size: 16px;
    margin-bottom: 10px;
}
.agregator-list .title-data {
    display: flex;
    flex-direction: column;
}
.agregator-list .title-data .time-comments {
    margin-top: auto;
}

/* --------------------------------- PAGE WITH CHILDREN --------------------- */
.page-children-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
h2.children-title {
    margin: 15px 0 5px;
    font-size: 22px;
}
h2.children-title a {
    color: var(--darkgray);
}
h2.children-title a:hover {
    color: var(--red);
}
.childrenItem p {
    margin-bottom: 5px;
    font-size: 16px;
}
a.button {
    background-color: var(--red);
    border: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    padding: 10px;
    border-radius: 4px;
    min-width: 150px;
    text-align: center;
    display: table;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 150px;
}
a.button:hover {
    background-color: var(--darkgray);
    color: var(--white);
}

/* --------------------------------- CONTACT PAGE --------------------------- */
.formContainer {
    width: 100%;
}
.formContainer .cmsFormContainer p.alert {
    padding: 10px 0;
}
.form-holder {
    margin-bottom: 20px;
}
.form-holder input,
.form-holder textarea {
    width: 100%;
}
.form-holder label {
    font-weight: 600;
    margin-bottom: 5px;
}
.form-holder.captha-holder,
.form-holder.button-holder {
    width: 50%;
    float: left;
}
.form-holder.button-holder button {
    float: right;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contactForm .QapTcha {
    max-width: inherit;
    float: none;
    border: 1px solid var(--darkgray);
    border-radius: 4px;
}
.contactForm .QapTcha .Slider {
    background-color: var(--red01);
    background-image: url('/assets/front/img/captcha-arrow.svg');
    background-size: 20px auto;
    background-position: center;
}
.form-holder.button-holder {
    margin-top: 22px;
}

/* ------------------------------------ FAQ --------------------------------- */
.faq .dataNav.last {
    border-bottom: 1px solid var(--darkgray);
}
.faq-body {
    display: none;
}
h3.faq-title {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin: 0;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    border-top: 1px solid var(--darkgray);
}
.faq .dataNav .faq-icon {
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    display: block;
    border: 1px solid var(--darkgray02);
    background-color: var(--white);
    transition: all 0.3s ease;
    color: var(--gray);
    min-width: 40px;
}
.faq .dataNav.active .faq-icon {
    border: 1px solid var(--red);
    background-color: var(--red);
    transition: all 0.3s ease;
    color: var(--white);
}
.faq .dataNav .faq-icon i {
    font-size: 16px;
    line-height: 40px;
    transition: all 0.3s ease;
}
.faq .dataNav.active .faq-icon i {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    transition: all 0.3s ease;
}
.faq-body {
    padding: 20px;
}
.faq-body p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* ------------------------------------ DOWNLOAD ---------------------------- */
.download-list .dataNav {
    padding-bottom: 10px;
}
.download-list .dataNav.last {
    border-bottom: 1px solid var(--darkgray);
}
.download-list h3 {
    padding: 10px 20px;
    margin: 0;
    font-size: 18px;
    border-top: 1px solid var(--darkgray);
}
.download-list .extensionBody {
    padding: 0 20px;
    padding-bottom: 0;
}
.download-list .extensionBody p {
    font-size: 16px;
    margin-bottom: 15px;
}
.download-list .dataNav .attachments p {
    padding: 5px 20px;
    margin-bottom: 0;
    border-top: 1px dashed var(--darkgray02);
}
.download-list .attachments p.single-attachment {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.download-list .attachments a .file-name {
    font-weight: 600;
}
.download-list .attachments a .file-size {
    margin-left: 5px;
}
.download-list .attachments a:hover {
    opacity: 0.75;
}
.download-list .attachments a i {
    margin-left: auto;
}

/* -------------------------------- NASLOVNA -------------------------------- */
.home_full {
    grid-column: 1 / -1;
}

/* -------------------------------- GALLERY LIST ---------------------------- */
.browser.gallery-browser {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    overflow: hidden;
}
.gallery-browser .item.vertical-item {
    margin: 0;
    padding: 0;
    position: relative;
}
.gallery-browser .item.vertical-item:before,
.gallery-browser .item.vertical-item:after {
    display: block;
    position: absolute;
    content: '';
    background-color: var(--gray2);
}
.gallery-browser .item.vertical-item:before {
    height: 1px;
    left: -20px;
    right: -20px;
    top: -20px;
}
.gallery-browser .item.vertical-item:after {
    width: 1px;
    top: 0;
    bottom: 0;
    left: -20px;
}
.gallery-browser .item h2 {
    margin: 0 0 10px;
    font-size: 20px;
}
.gallery-browser .item h2 a {
    color: var(--darkgray);
    text-decoration: underline 2px transparent;
}
.gallery-browser .item h2 a:hover {
    color: var(--darkgray);
    text-decoration: underline 2px var(--red);
}
.gallery-browser .item .description {

}
h1.pageTitle {
    margin-top: 0;
    font-size: 24px;
}
/* -------------------------------- POLL ------------------------------------ */
.buttonHolderFull {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.poll.single-poll .buttonHolderFull button {
    width: auto;
    margin: 0;
}
.single-poll {
    margin-bottom: 40px;
}
.poll-results p.alert {
    padding: 0;
    font-weight: 600;
    color: var(--red);
}
.poll-results .pollHolder {
    margin-bottom: 20px;
}
.progressBarWrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 20px;
    border-radius: 10px;
    background-color: var(--gray2);
}
.progressBarWrapper .kapaL {
    position: absolute;
    height: 20px;
    background-color: var(--red);
    left: 0;
    top: 0;
    transition: width 2s ease;
    overflow: hidden;
}
.progressBarWrapper .kapaL.kapa-start-width {
    width: 0 !important;
}
.poll-results p.answer {
    margin-bottom: 5px;
}
.poll-content .poll {
    border-radius: 4px;
    padding: 20px 20px 15px;
    box-shadow: 0 2px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 10px 0px rgba(0,0,0,0.2);
}

/* -------------------------------- POLL ARHIVA ----------------------------- */
.pollBrowser .pollList .pollElement {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray2);
}
.pollBrowser .pollList .pollElement.first {
    padding-top: 20px;
    border-top: 1px solid var(--gray2);
}
.pollBrowser .pollList .pollElement h3 {
    margin: 0;
    font-size: 18px;
}
.pollBrowser .pollList .pollElement h3 a {
    color: var(--darkgray);
    text-decoration: underline 2px transparent;
}
.pollBrowser .pollList .pollElement h3 a:hover {
    text-decoration: underline 2px var(--red);
}
.poll-archive-list .pollElement {
    display: grid;
    grid-template-columns: 1fr 100px;
}
.poll-archive-list .pollElement .pollDate {
    grid-column: 1 / -1;
}
.poll-archive-list .moreDetails a {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}
.poll-archive-list .moreDetails a:hover {
    color: var(--darkgray);
}

/* -------------------------------- SEARCH LIST ----------------------------- */
.searchList .highlight,
.searchList .highlightCount {
    color: var(--red);
    font-weight: 600;
}
.searchList b {
    color: var(--red);
}
.searchList p.lead {
    font-size: 16px;
}

/* -------------------------------- FOOTER ---------------------------------- */
footer {
    margin-top: auto;
    background-color: var(--blue1);
    color: var(--white);
    padding: 40px 0 10px;
}
/* -------------------------------------------------------------------------- */
.slick-slider button.slick-prev:hover,
.slick-slider button.slick-next:hover {
    background-color: var(--red);
}
#content .faq-content,
#content .download-content {
    margin-bottom: 40px;
}
.uptitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #000;
    opacity: 0.3;
    color: #fff;
    cursor: pointer;
    padding: 0px;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    min-width: inherit;
}
#scrollToTop:hover {
    opacity: 0.5;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#push-groups-modal .modal-content h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
}
#pushConfirmBtn {
    width: 150px;
    margin: 0 auto;
}
#pushDeclineBtn {
    color: var(--red);
    background-color: inherit;
}
#pushDeclineBtn:hover {
    opacity: 0.7;
}
#push-groups-modal .modal-content .target-options {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
#push-groups-modal .modal-content .target-options input {
    width: fit-content;
    display: none;
}
#push-groups-modal .modal-content .target-options .custom-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray2);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}
#push-groups-modal .modal-content .target-options input[type="checkbox"]:checked + .custom-checkbox {
    background-color: var(--red);
    border-color: var(--red);
}
#push-groups-modal .modal-content .target-options input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.img-logo-modal-content {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}
.img-logo-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.modal-content .label-checkbox-wrapper {
    margin-bottom: 10px;
}
.video-box .bplr {
    width: 100% !important;
    height: auto !important;
}