@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@200;400;500;600&display=swap');

/* general fix */
html.zlatni-studio > body {
    background-color: #000;
}

html.zlatni-studio #ocmContainer > .container--inner {
	background-color: #fff !important;
	padding-top: 10px;
	padding-bottom: 10px;
    position: relative;
    z-index: 9999;
}

/* main container */
.zs {
    --zs-text-color: #fff;
    --zs-dark-color: #000;
    --zs-accent-color: #ffcc32;
    --zs-accent-hover-color: #ffc516;
    --zs-light-end-color: #ffcc331a;
    --zs-font-anton: "Anton", Arial, Helvetica, sans-serif;
    --zs-font-poppins: "Poppins", Arial, Helvetica, sans-serif;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    font-family: var(--zs-font-poppins);
    font-weight: 400;
    color: var(--zs-text-color);
    background-color: #000;
}

.zs a {
    text-decoration: none;
}

.zs-content {
    position: relative;
    padding: 15px;
    z-index: 1;
}

.zs-loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #050505;
    opacity: 0.8;
}

.zs-loading svg {
    animation: loading-spin 1s linear infinite;
}

@keyframes loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* background animations */
.zs-background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.zs-light-end {
    position: absolute;
    background: var(--zs-light-end-color);
    border-radius: 0 0 50% 50%;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    width: 398px;
    height: 260px;
    left: 0;
    transform: translateX(-50%);
    top: 1470px;
}

.zs-light-end-2 {
    width: 122px;
    left: 61px;
    transform: translateX(-125%);
    top: 1560px;
    height: 80px;
}

.zs-bg-img {
    position: absolute;
}

.zs-bg-img-1 {
    left: -15px;
    top: -5px;
    height: 1px;
    width: 1px;
    transform: rotate(-18deg);
    opacity: 0.4;
    animation-name: light-left-1;
    animation-duration: 4s;
    animation-delay: -2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
}

.zs-bg-img-1 svg {
    height: 1600px;
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
}

.zs-bg-img-2 {
    right: -15px;
    top: -5px;
    height: 1px;
    width: 1px;
    transform: rotate(40deg);
    opacity: 0.4;
    animation-name: light-right;
    animation-duration: 4s;
    animation-delay: -4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
}

.zs-bg-img-2 svg {
    height: 1600px;
    width: 400px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
}

.zs-bg-img-3 {
    left: -15px;
    top: -5px;
    height: 1px;
    width: 1px;
    transform: rotate(-25deg);
    opacity: 0.4;
    animation-name: light-left-2;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
}

.zs-bg-img-3 svg {
    height: 1600px;
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
}

.zs-bg-img-4,
.zs-bg-img-5 {
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
}

.zs-bg-img-4 {
    width: 2282.5px;
    height: 1250px;
}

.zs-bg-img-4 img {
    width: 100%;
    height: 100%;
    offset-path: path("M 1141.25 625");
    offset-rotate: 0deg;
    transform: scale(1.5) rotate(0deg);
    opacity: 0;
    offset-distance: 0px;
    animation-name: animation_4_1;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
    animation-play-state: running;
}

.zs-bg-img-5 {
    width: 2282.5px;
    height: 1250px;
}

.zs-bg-img-5 img {
    width: 100%;
    height: 100%;
    offset-path: path("M 1141.25 625");
    offset-rotate: 0deg;
    transform: scale(1.5) rotate(0deg);
    opacity: 0;
    offset-distance: 0px;
    animation-name: animation_5_1;
    animation-duration: 10s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
    animation-play-state: running;
}

@keyframes light-right {
    0% {
        transform: rotate(40deg) scale(1);
        opacity: 0.6;
        animation-timing-function: ease-in-out
    }
    100% {
        transform: rotate(20deg) scale(1);
        opacity: 1;
    }
}

@keyframes light-left-1 {
    0% {
        transform: rotate(-18deg) scale(1);
        opacity: 0.4;
        animation-timing-function: ease-in-out
    }
    100% {
        transform: rotate(-38deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes light-left-2 {
    0% {
        transform: rotate(-25deg) scale(1);
        opacity: 0.4;
        animation-timing-function: ease-in-out
    }
    100% {
        transform: rotate(-32deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes animation_4_1 {
    0% {
        transform: scale(1.5) rotate(0deg);
        opacity: 0;
        offset-distance: 0px;
        animation-timing-function: ease-out;
    }
    100% {
        transform: scale(1) rotate(85deg);
        opacity: 0.5;
        offset-distance: 0px;
    }
}

@keyframes animation_5_1 {
    0% {
        transform: scale(1.5) rotate(0deg);
        opacity: 0;
        offset-distance: 0px;
        animation-timing-function: ease-out;
    }
    100% {
        transform: scale(1) rotate(60deg);
        opacity: 0.85;
        offset-distance: 0px;
    }
}

/* crowdsignal polls customization */
.pds-question-top {
    font-weight: 600 !important;
    font-size: 25px !important;
    line-height: 30px !important;
}

.pds-answer-input {
    position: absolute !important;
    left: 0;
}

.pds-answer-input > input[type="radio"] {
    transform: translateY(0);
}

.pds-answer-input > input[type="radio"]:checked::before .pds-input-label span {
    color: var(--zs-accent-color) !important;
}

.pds-input-label:hover span {
    color: var(--zs-accent-color) !important;
}

.pds-vote-button {
    letter-spacing: 0.5px !important;
}

.pds-vote-button:hover {
    opacity: 0.8 !important;
}

.pds-vote-button:focus,
.pds-vote-button:focus-visible {
    outline: none;
}

.pds-box {
    background: transparent !important;
    margin-top: 20px !important;
}

/* hero */
.zs-hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
}

.zs-logo-link {
    flex: 0 0 160px;
    width: 160px;
    margin-left: 20px;
    position: relative;
    z-index: 10;
}

.zs-logo {
    opacity: 1;
    animation-name: logo-scale;
    animation-duration: 3s;
    animation-delay: 0;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
    animation-play-state: running;
}

.zs-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    flex: 0 0 120px;
}

.zs-year {
    font-family: var(--zs-font-anton);
    font-size: 56px;
    line-height: 1;
    color: var(--zs-dark-color);
    -webkit-text-stroke: 2px var(--zs-accent-color);
    text-shadow: 0 0 1px var(--zs-accent-color); /* Firefox fallback */
}

.zs-lead {
    font-family: var(--zs-font-anton);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

/* menu */
.zs-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px auto 50px auto;
    z-index: 999;
    cursor: pointer;
}

.zs-menu-icon {
    display: block;
    width: 40px;
}

/* partners */
.zs-partners-mob {
    display: flex;
    justify-content: center;
}

.zs-partners-mob .zs-partners-img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.zs-partners-desk {
    display: none;
}

.zs-partners-desk .zs-partners-img {
    width: 100%;
    max-width: 760px;
    height: auto;
}

/* title */
.zs-title {
    display: flex;
    justify-content: center;
    max-width: 120px;
    margin: 80px auto 50px auto;
    font-family: var(--zs-font-anton);
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    color: var(--zs-accent-color);
    text-transform: uppercase;
}

.zs-title:hover, .zs-title:focus {
    color: var(--zs-accent-hover-color);
}

/* copyright */
.zs-copyright {
    font-size: 16px;
    color: #ffffffbf;
    text-align: center;
}

@keyframes logo-1 {
    0% {
        transform: scale(10);
        opacity: 0;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes logo-scale {
    0% {
        transform: scale(1);
        opacity: 1;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: scale(1.4);
        opacity: 1;
    }
}

/* page home */
.zs-page-home {
    width: 100%;
    max-width: 540px;
    margin: 90px auto;
}

.zs-category {
    margin-bottom: 90px;
}

.zs-category:hover {
    opacity: 0.8;
    cursor: pointer;
}

.zs-category .zs-category-visual-img,
.zs-category .zs-category-visual-video {
    width: 100%;
    max-width: 540px;
    height: auto;
}

.zs-category .zs-category-info {
    margin: 20px auto 40px auto;
}

.zs-category .zs-category-title {
    margin-bottom: 20px;
    font-family: var(--zs-font-anton);
    font-size: 56px;
    line-height: 1;
    text-transform: uppercase;
}

.zs-category .zs-category-description {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
}

.zs-category .zs-category-action {
    position: relative;
    font-family: var(--zs-font-poppins);
    font-weight: 500;
    background-color: var(--zs-accent-color);
    text-align: center;
    border-radius: 20px;
    border: none;
    color: var(--zs-dark-color);
    font-size: 16px;
    letter-spacing: 0.2px;
    transition: 0.3s ease 0;
    text-decoration: none;
    cursor: pointer;
    width: 118px;
    height: 40px;
}

.zs-category .zs-category-action:hover {
    background-color: var(--zs-accent-hover-color);
}

.zs-category .zs-category-action:focus,
.zs-category .zs-category-action:focus-visible {
    outline: none;
}

/* page category */
.zs-page-category {
    width: 100%;
    max-width: 540px;
    margin: 90px auto; 
}

.zs-category-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.zs-category-header .zs-category-title {
    font-family: var(--zs-font-anton);
    font-size: 56px;
    line-height: 1;
    text-transform: uppercase;
}

.zs-category-header .zs-category-lead {
    color: var(--zs-accent-color);
    font-size: 18px;
    line-height: 1.4;
}

.zs-combined-poll-title {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--zs-text-color);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
}

.zs-poll .zs-poll-figure {
    margin-bottom: 20px;
}

.zs-poll .zs-poll-img {
    width: 180px;
    height: 180px;
}

.zs-poll .zs-poll-title {
    display: none;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.3px;
}

.zs-poll-container {
    margin-bottom: 90px;
}

@media (min-width: 576px) {
    .zs-bg-img-4,
    .zs-bg-img-5 {
        top: 20%;
        transform: translate(-50%, -50%) scale(0.5);
    }

    .zs-logo-link {
        flex: 0 0 180px;
        width: 180px;
        margin-left: 0;
    }

    .zs-text {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex: 0 0 260px;
        row-gap: 0;
        column-gap: 10px;
    }

    .zs-year {
        flex: 0 0 140px;
        font-size: 84px;
    }

    .zs-lead {
        flex: 0 0 100px;
        font-size: 25px;
    }

    .zs-partners-mob {
        display: none;
    }

    .zs-partners-desk {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .zs-bg-img-4,
    .zs-bg-img-5 {
        top: 40%;
        transform: translate(-50%, -50%) scale(0.4);
    }

    .zs-page-home {
        max-width: 720px;
    }

    .zs-category .zs-category-visual-img,
    .zs-category .zs-category-visual-video {
        max-width: 330px;
    }

    .zs-category .zs-category-info {
        margin: 0 auto 40px auto;
    }

    .zs-category .zs-category-title {
        font-size: 72px;
    }

    .zs-page-category {
        max-width: 720px;
    }

    .zs-category-header {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        column-gap: 48px;
    }

    .zs-category-header .zs-category-title {
        font-size: 72px;
    }

    .zs-poll {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .zs-bg-img-4,
    .zs-bg-img-5 {
        top: 33%;
        transform: translate(-50%, -50%) scale(0.6);
    }

    .zs-page-home {
        max-width: 790px;
    }

    .zs-category .zs-category-title {
        font-size: 80px;
    }

    .zs-category .zs-category-visual-img,
    .zs-category .zs-category-visual-video {
        max-width: 365px;
    }

    .zs-page-category {
        max-width: 790px;
    }

    .zs-category-header .zs-category-title {
        font-size: 80px;
    }

    .zs-combined-poll-title {
        font-size: 34px;
    }
}

@media (min-width: 1200px) {
    .pds-input-label {
        font-size: 19px !important;
        line-height: 28px !important;
        padding: 0 0 0 8px !important;
        margin: -2px 0 5px 23px !important
    }

    .zs-bg-img-1 svg {
        transform: translate(-50%, 208px) scale(1.3);
    }

    .zs-bg-img-2 svg {
        transform: translate(-50%, 208px) scale(1.3);
    }

    .zs-bg-img-3 svg {
        transform: translate(-50%, 208px) scale(1.3);
    }

    .zs-bg-img-4,
    .zs-bg-img-5 {
        transform: translate(-50%, -50%) scale(0.7);
    }

    .zs-light-end {
        transform: translateX(-50%) scale(1.3);
        top: 1918px;
    }

    .zs-light-end-2 {
        transform: translateX(-132%) scale(1.3);
        top: 2008px;
    }

    .zs-category .zs-category-visual-img,
    .zs-category .zs-category-visual-video {
        max-width: 460px;
    }

    .zs-page-category {
        max-width: 840px;
    }

    .zs-poll {
        width: 360px;
    }

    .zs-poll .zs-poll-img {
        width: 220px;
        height: 220px;
    }
}

@media (min-width: 1400px) {
    .zs-menu {
        position: fixed;
        top: 180px;
        right: 90px;
        margin: 0;
    }

    .zs-hero {
        position: fixed;
        top: 180px;
        left: 90px;
        display: flex;
        flex-direction: column;
        column-gap: 0;
        width: 180px;
    }

    .zs-logo-link {
        width: 210px;
    }

    .zs-text {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 15px;
        flex: 0 0 auto;
        transform: translateY(-15px);
    }

    .zs-year {
        flex: 0 0 auto;
        font-size: 100px;
    }

    .zs-lead {
        max-width: 130px;
        flex: 0 0 auto;
        margin-bottom: 0;
        font-size: 40px;
    }

    .zs-title {
        position: fixed;
        right: 90px;
        bottom: 70px;
        margin: 0;
    }

    .zs-copyright {
        margin-top: 120px;
    }
}

@media (min-width: 1600px) {
    .zs-page-category {
        max-width: 960px;
    }
}