* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    outline: 0;
}

body {
    height: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

input,
textarea,
select {
    padding-left: 15px !important;
    box-sizing: border-box;
}

select:focus {
    outline: none !important;
}

div,
li,
a {
    box-sizing: border-box;
    list-style-type: none;
}

input,
textarea {
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    opacity: 1;
}

.loaded {
    animation: loadAnim .5s forwards;
}

@keyframes loadAnim {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.backtotop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: block;
    align-items: center;
    cursor: pointer;
}

.backtotop img {
    width: 30px;
    padding: 7px 10px;
    transform: rotatez(-180deg);
    opacity: 0;
    margin-bottom: -25px;
    background-color: #003c77;
    box-shadow: 0px -5px 12px -3px black;
    transition: all .5s;
    height: 30px;
}

.backtotop img:hover {
    background-color: #00264d;
}

.marquee {
    width: 300px;
    overflow: hidden;
    border: 1px solid #ccc;
    background: #ccc;
}

#headertop {
    width: 100%;
    height: 40px;
    background-color: #003c77;
    position: relative;
}

#headetopwrap {
    width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
}

.headerwrap-2 {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.headerwrap-2:last-child {
    justify-content: flex-end;
}

.headerwrap-2 p {
    color: #1869b4;
    font-size: 13px;
}

.headerwrap-2 img {
    height: 14px;
    margin-left: 20px
}

.headerwrap-2 i {
    color: #457bb1;
    margin-left: 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}

.headerwrap-2 i:hover {
    color: #91b3d4;
}

.headerwrap-2 .fa-instagram {
    font-size: 22px
}

.active-lang {
    font-weight: 700 !important;
    color: #91b3d4 !important;
    font-size: 15px !important;
}

.headerwrap-2 a {
    text-decoration: none;
    color: #1869b4;
    font-weight: 700;
    font-size: 14px;
    transition: all .3s;
}

.headerwrap-2 a:hover,
.headerwrap-2 span:last-child:hover {
    color: #91b3d4;
    cursor: pointer;
}

.headerwrap-2 span {
    color: #1869b4;
}

.headerwrap-2 span:last-child {
    font-weight: 700;
}

.headerwrap-2 .push-left {
    margin-left: 40px;
}


/*---NAVIGACIJA--*/

#header {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
}

#header>img {
    min-height: 100vh;
    width: 100%;
    height: auto;
}

#header .cover-ljudi {
    position: absolute;
    right: 60px;
    z-index: 10;
    width: 900px;
    height: auto;
    bottom: -12px;
    opacity: 1 !important;
    transition: all 1s;
}

#header .cover-ljudi img {
    width: 100%;
    height: auto;
}

#header .video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.video video {
    object-fit: cover;
    transform: scale(1.3);
}

#header .cover-naslov {
    position: absolute;
    top: 0;
    left: 0;
    color: #004284;
    font-size: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .cover-naslov h1 {
    position: relative;
    margin-top: -350px;
    margin-left: -500px;
    font-size: 70px;
}

#header .cover-naslov h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    top: 45%;
    width: 80px;
    height: 80px;
    background-image: url('../img/right-element.svg');
    background-repeat: no-repeat;
}

#header .cover-naslov h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100px;
    top: 45%;
    width: 80px;
    height: 80px;
    background-image: url('../img/left-element.svg');
    background-repeat: no-repeat;
    background-size: fill;
}

#nav {
    width: 100%;
    position: absolute;
    left: 0;
    height: 100px;
    background-color: white;
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
    box-shadow: 1px 8px 15px -12px #111;
    z-index: 1000;
    transition: all .1s;
}

.nav-responsive {
    width: 100%;
    position: absolute;
    height: auto;
    background-color: white;
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
    box-shadow: 1px 8px 15px -12px #111;
    z-index: 1000;
    transition: all .1s;
    display: none;
    overflow: hidden;
}

.nav-responsive li a {
    position: relative;
}

.nav-dropdown {
    height: auto;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    display: none;
    padding-bottom: 10px;
}

.nav-dropdown ol {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.nav-dropdown li {
    opacity: 0;
    transition: all 1.5s;
    text-align: center;
}

.nav-dropdown li a {
    text-align: center;
}

.visible {
    opacity: 1 !important;
}

.sticky {
    position: fixed !important;
    transform: translatey(-40px);
    height: 80px !important;
}

.logo-btn {
    display: flex;
    justify-content: space-between;
    width: 650px;
    margin: 0 auto;
}

.logo-btn img {
    width: 200px;
    height: 50px;
}

.ham-menu {
    height: 42px;
    width: 47px;
    background-color: #004284;
    box-shadow: -1px 4px 15px -5px #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ham-menu:hover {
    background-color: #003366;
}

.logo-btn-btn {
    display: flex;
    align-items: center;
}

.ham-menu img {
    height: 60%;
    width: auto;
}

#navwrap {
    width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
}

.navwrap-2 {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.navwrap-2>a:first-child {
    height: 100%;
    display: flex;
    align-items: center;
}

.navwrap-2:last-child {
    flex: 1.5;
}

.navwrap-2 img {
    height: 80%;
}

.navwrap-2 ol {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.navwrap-2 ol li {
    height: 100%;
    display: inline;
    padding: 0 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .2s;
    justify-content: center;
    padding: 0 30px;
    position: relative;
}

.nav-graphic {
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0px;
    left: 0px;
}

.nav-graphic img {
    width: 100%;
    height: auto;
    opacity: 0;
}

.navwrap-2 li a {
    color: #737373;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-dropdown li a {
    color: #737373;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    z-index: 0;
}

.nav-dropdown li {
    padding: 5px 0;
}

.navwrap-2 li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-nav-right {
    position: relative;
    text-align: left;
}

.dropdown-nav-right a>img {
    height: 12px;
}

.dropdown-nav-right a {
    cursor: pointer;
}

.dropdown-content-responsive {
    position: relative;
    height: auto;
    width: 100%;
    z-index: 100000;
    text-align: center;
    display: none;
    list-style-type: none;
}

.dropdown-content-responsive li a {
    padding: 4px 0;
    position: relative;
    text-align: center;
    font-weight: 500 !important;
}

.dropdown-content-responsive li {
    padding: 2px 0;
}

.nav-responsive li a::after {
    content: '';
    position: absolute;
    top: 45%;
    left: -140px;
    background-image: url('../img/right-element-blue.svg');
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transition: all .5s;
    opacity: 0;
}

.nav-responsive li a:hover:after {
    left: -40px;
    opacity: 1;
}

.dropdown-content-responsive li:first-child {
    padding-top: 10px;
}

#nav ul {
    margin: 20px 0 0 0;
    _margin: 0;
    /*IE6 only*/
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 100;
    background: #ffffff;
    transition: all .2s ease-in-out;
    width: 160%;
    padding: 10px 0;
    box-shadow: 1px 5px 12px -4px #333;
}


/*
.graphic-left{
    position: absolute;
    width:100%;
    height:100%;
    background-image: url(../img/cover-slika.png);
    background-repeat: no-repeat;
    background-size:cover;
    
}
*/


/*
.graphic-right{
    position: absolute;
    width:400px;
    height:100px;
    background-color:#bd0000;
    border-bottom-right-radius: 120px;
    bottom:-50px;
     border-top-left-radius: 120px;
    transform:rotatez(-5deg);
    right:-30px;
}
*/

#nav ul>li {
    margin: 5px 0;
    width: 100%
}

#nav li:hover>ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

#nav ul li>a {
    padding: 5px 0;
    text-align: left;
    width: 100%;
}

#nav ul li:first-child>a:after {
    content: '';
    position: absolute;
    left: 40px;
    top: -25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.color-eff {
    width: 80%;
    background-color: #004284;
    height: 340px;
    position: absolute;
    margin-top: 150px;
    right: 0;
    border-bottom-left-radius: 220px;
}

.color-eff-flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-eff-wrap {
    border-bottom-left-radius: 220px;
    position: relative;
    width: 100%;
    height: 100%;
}

.color-eff-wrap::after {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 85%;
    background-color: #bd0000;
    width: 100%;
    border-bottom-left-radius: 220px;
    z-index: -1;
    margin-left: -50px;
}

.color-eff-wrap h1 {
    color: white;
    margin-left: 150px;
    width: 450px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 49px;
    font-weight: 20;
    line-height: 55px;
    z-index: 0;
    margin-top: -10px;
    font-weight: 700;
}


/*---TICKER---*/

#tickercontent {
    display: flex;
    height: 50px;
}

#ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    background-color: #004284;
    box-sizing: content-box;
    flex: 9;
}

#aktuelno {
    height: 100%;
    flex: 1.2;
}

#aktuelno h1 {
    height: 100%;
    width: 100%;
    background-color: #bd0000;
    color: white;
    z-index: 10;
    border: 0;
    outline: 0;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tickerwrap {
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}

.js-marquee {
    height: 50px;
}

.ticker-item {
    display: inline-flex;
    padding: 0 30px;
    font-size: 2rem;
    color: white;
    z-index: -1;
    align-items: center;
    height: 100%;
    width: auto;
}

.ticker-date {
    height: 100%;
    background-color: #0051a1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.ticker-date p {
    font-size: 21px;
    line-height: 23px;
}

.ticker-heading {
    flex: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-heading a {
    text-decoration: none;
    color: white;
    padding-left: 15px;
    font-size: 25px;
    font-weight: 500;
}

.ticker-heading a:hover {
    color: #bbb;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}


/*---PROGRAM---*/

#program {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    position: relative;
}

#program-wrap {
    width: 1600px;
    margin: 0 auto;
    padding: 60px 0 100px 0;
    height: 100%;
}

.program-wrap-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#program>.events-img-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.program-wrap-btn a {
    color: white;
    width: 180px;
    padding: 10px 0;
    border: 0;
    margin-left: 30px;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
}

.program-wrap-btn a:first-child {
    background-color: #004284;
    margin-left: 0;
}

.program-wrap-btn a:first-child:hover {
    background-color: #003366;
}

.program-wrap-btn a:last-child {
    background-color: #bd0000;
}

.program-wrap-btn a:last-child:hover {
    background-color: #990000;
}

#slider {
    width: 1000px;
    height: 435px;
    background-color: white;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 1px 1px 15px -3px black;
    overflow: hidden;
}

.slider-content {
    width: 100%;
    display: flex !important;
    height: 100%;
}

.content {
    flex: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 0px 0px;
    text-align: left;
    padding-right: 30px;
}

.slick-track,
.slick-list {
    height: 100%;
}

.content-naslov {
    color: #306197;
    margin-bottom: 20px;
}

.content-tekst {
    color: #666;
    margin-bottom: 40px;
}

.content-sig {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.content-sig>img {
    width: 145px;
}

.content-sig button {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd0000;
    border: 1px solid #bd0000;
    background-color: transparent;
    cursor: pointer;
    transition: all .3s;
    font-weight: 500;
    font-size: 15px;
}

.content-sig button:hover {
    background-color: #bd0000;
    color: white;
}

.content-sig button>img {
    height: 20px;
    padding-left: 10px;
    transition: all .3s;
}

.content-slika {
    flex: 2.2;
    position: relative;
}

.content-slika img {
    position: absolute;
    bottom: -3px;
    width: 100%;
}

.slick-next {
    right: -70px !important;
}

.slick-prev {
    left: -70px !important;
}

#paralax {
    width: 100%;
    height: 400px;
    background-color: #0d4883;
    position: relative;
    display: flex;
    align-items: center;
}

.paralax2 {
    background-color: #004284 !important;
    display: flex;
    flex-direction: column;
}

.paralax-pic {
    position: absolute;
    background-image: url('../img/paralax.png');
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.map-img img {
    position: absolute;
    top: -60px;
    right: 0;
}

.map-img .pin {
    right: 40px;
    top: -37px;
}

.paralax-content {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.paralax-content .naslov {
    position: relative;
    text-align: center;
    color: white;
    flex: 1;
}

.paralax-content .naslov::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 280px;
    top: 45%;
    width: 60px;
    height: 80px;
    background-image: url('../img/right-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.paralax-content .naslov::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 280px;
    top: 45%;
    width: 60px;
    height: 80px;
    background-image: url('../img/left-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.paralax-flex {
    display: flex;
}

.paralax-flex:first-child {
    display: block;
    margin-bottom: 40px;
}

.paralax-flex:first-child p {
    text-align: center;
    color: white;
    font-size: 25px;
    font-weight: 300;
}

.paralax-blok {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.paralax-blok {
    margin-top: -4px
}

.paralax-blok:first-child,
.paralax-blok:nth-child(3),
.paralax-blok:nth-child(4) {
    margin-top: 0 !important;
}

.paralax-blok:nth-child(3),
.paralax-blok:nth-child(4) {
    margin-bottom: -26px !important;
}

.paralax-blok .Count {
    color: white;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 1px;
}

.paralax-blok p {
    color: white;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

.paralax-blok img {
    height: 90px;
}


/*--NOVOSTI-*/

#novosti {
    width: 100%;
    height: auto;
    background-color: white;
}

.wrap {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.wrap-events {
    width: 800px !important;
}

.wrap-events .all-news-flex .all-news-one:nth-child(odd) {
    margin-right: 0 !important;
}

.novosti-wrap-naslov {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    line-height: 30px;
}

#novosti-wrap {
    padding-bottom: 110px;
}

.wrap-title {
    position: relative;
    text-align: center !important;
    color: #004284;
    font-size: 46px;
    font-weight: 700;
    line-height: 27px;
}

.wrap-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -60px;
    top: 45%;
    width: 50px;
    height: 80px;
    background-image: url('../img/right-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.wrap-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -60px;
    top: 45%;
    width: 50px;
    height: 80px;
    background-image: url('../img/left-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.novosti-flex {
    height: auto;
    display: flex;
    width: 100%;
}

.novosti-flex-blok:first-child {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.novosti-flex-blok:last-child {
    flex: 1;
    display: flex;
    margin-left: 20px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.novosti-flex-blok:last-child a:hover {
    color: #004284;
}

.flex-blok-pic {
    height: 350px;
    overflow: hidden;
}

.novosti-flex-blok:first-child img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.flex-blok-text {
    background-color: #004284;
    width: 100%;
    height: auto;
}

.flex-text-wrap {
    padding: 25px;
    text-align: left;
    z-index: 10;
}

.flex-blok-text a {
    color: white;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 5px;
    line-height: 34px;
    text-decoration: none;
    transition: all .3s;
}

.flex-blok-text a:hover {
    color: #80bfff;
}

.flex-blok-text p {
    color: white;
    font-size: 15px;
}

.datum {
    width: 100%;
    border-bottom: 1px solid #3069a2;
    color: #3069a2;
    font-size: 13px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.news {
    display: flex;
    flex: 1;
    margin-bottom: 23px;
    min-height: 110px;
}

.news-blok-slika {
    flex: 1.5;
    overflow: hidden;
}

.news:nth-child(4) {
    margin-bottom: 40px !important;
}

.news-blok-slika img {
    width: auto;
    height: 146px;
}

.news-blok-tekst {
    flex: 3;
    margin-left: 20px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
}

.news-blok-tekst a {
    color: #666;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all .2s;
}

.news-blok-tekst p {
    font-size: 13px;
    line-height: 15px;
    color: #333;
    display: block;
}

.news-blok-tekst .kalendar {
    height: 20px;
    display: flex;
    margin-top: 20px;
}

.news-blok-tekst .kalendar img {
    height: 100%;
    margin-right: 10px;
}

.news-blok-tekst .kalendar span {
    font-size: 12px;
}

.hover-novosti {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    cursor: pointer;
    overflow: hidden;
}

.sve-novosti {
    background-color: #004284;
    width: 150px;
    height: 100%;
    min-height: 30px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

.sve-novosti a {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s;
    z-index: 10;
    position: relative;
}

.hover-novosti::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #bd0000;
    z-index: 0;
    transition: all .3s;
}

.hover-novosti:hover:after {
    left: 0;
}

.sve-novosti .all-news-main:hover {
    color: white !important;
}


/*--EVENTS--*/

#events {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    position: relative;
}

#events>.events-img-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

#events-wrap {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    padding: 100px 0;
    padding-bottom: 0;
}

.events-blok {
    flex: 5;
}

.events-blok:first-child {
    flex-direction: column;
}

.events-blok:last-child {
    flex: 2;
    background-color: white;
    box-shadow: 1px 1px 15px -5px #333;
    height: auto;
    margin-top: -13%;
    border-top-right-radius: 200px;
    position: relative;
    margin-left: 40px;
    padding: 0 20px;
    z-index: 0;
}

.events-blok:last-child .wrap-title::after {
    top: 38%;
}

.events-first-blok {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 60px;
    position: relative;
}


/*
.events-first-blok:first-child{
   display:flex;
    flex: column;  
}
*/

.events-blok .wrap-title::before {
    display: none;
}

.paginacija-press {
    padding-bottom: 40px;
}

.events-blok .instagram {
    font-size: 135px;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.instagram .fa-instagram {
    transform: rotatez(-25deg);
    opacity: 0.2;
    transition: all .3s;
    color: #666;
    z-index: 1;
    position: relative;
}

.instagram .fa-instagram:hover {
    transform: rotatez(0deg);
    color: #004284;
    opacity: 1;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    height: 100%;
}

.event-content-slika {
    flex: 1;
    background-color: #004284;
    display: flex;
    align-items: center;
}

.event-content-tekst {
    flex: 6;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #333;
}

.event-content-slika img {
    height: 40px;
    padding: 30px 50px;
}

.event-content a {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all .2s;
    font-weight: 700;
}

.event-content-tekst a:nth-child(2):hover {
    color: #bd0000 !important;
}

.event-content-tekst>p {
    font-size: 13px;
    margin-bottom: 10px;
}

.event-content-date {
    display: flex;
    align-items: center;
    height: 20px;
}

.event-content-date p {
    font-size: 13px
}

.event-content-date img {
    height: 100%;
    margin-right: 15px;
}

.event-content-date img:nth-child(3) {
    height: 100%;
    margin: 0 15px;
}

.event-content:nth-child(3) {
    margin-bottom: 50px;
}

.events-second-blok .event-content-slika {
    background-color: #bd0000;
}

.events-second-blok .event-content:last-child {
    margin-bottom: 120px;
}

.events-blok:last-child {
    padding-top: 130px;
    position: relative;
    overflow: hidden;
}

.events-blok .wrap-title {
    font-size: 32px;
}

.events-blok:last-child .wrap-title {
    font-size: 27px;
}

.twitter {
    position: absolute;
    top: 10px;
    left: 0;
    opacity: 0.05;
    width: 180px
}

.facebook {
    position: absolute;
    top: 10px;
    left: 0;
    opacity: 0.05;
    width: 180px;
    transform: rotatez(-15deg);
}

.fb-page {
    padding-bottom: 70px;
}

#twitter-widget-0 {
    margin-top: 10px !important;
    max-height: 400px !important;
    overflow: scroll;
    z-index: 5;
}


/*--IZBORI--*/

.izbori {
    width: 1200px;
    margin: 0 auto;
    height: 150px;
    background-color: #bd0000;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.izbori-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.izbori-box {
    margin-left: -400px;
}

.izbori h2 {
    color: white;
    font-weight: 500;
    font-size: 50px;
    margin-left: 300px;
}

.izbori .bold {
    font-weight: 700;
}

.izbori-tekst {
    width: 600px;
    height: 65%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: -369px;
    z-index: 10;
}

.izbori-tekst a {
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    position: relative;
    transition: all .2s;
}

.izbori-tekst a::after {
    content: '';
    background-image: url('../img/right-element.svg');
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    background-repeat: no-repeat;
    height: 30px;
}

.izbori-tekst p {
    text-transform: uppercase;
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
    margin-left: -40px;
}


/*--CLANOVI--*/

#clanovi {
    height: auto;
    width: 100%;
}

.clanovi-flex {
    width: 100%;
    height: 325px;
    display: flex;
}

.clanovi-blok {
    flex: 1;
    height: 100%;
    display: flex;
    background-color: #efefef;
    margin-left: 50px;
    overflow: hidden;
}

.clanovi-blok:first-child {
    margin-left: 0;
}

.clanovi-blok-tekst {
    flex: 2;
    text-align: left;
    align-self: center;
    padding-left: 30px;
}

.clanovi-blok-tekst h1 {
    font-weight: 500;
    color: #06427e;
    margin-bottom: 20px;
}

.clanovi-blok-tekst p {
    color: #333;
    font-size: 15px;
    margin-bottom: 35px;
}

.clanovi-blok-tekst a {
    color: #333;
    font-size: 16px;
    border: 1px solid #06427e;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 700;
    color: #06427e;
    transition: all .3s;
}

.clanovi-blok-tekst a:hover {
    background-color: #06427e;
    color: white;
}

.clanovi-blok-slika {
    flex: 1;
    align-self: flex-end;
}

.clanovi-blok-slika img {
    margin-bottom: -5px;
}

.clanovi-blok-zene a {
    border: 1px solid #ae070f;
    color: #ae070f;
}

.clanovi-blok-zene a:hover {
    background-color: #ae070f;
    color: white;
}

.clanovi-blok-zene .clanovi-blok-tekst {
    padding-left: 0;
    padding-right: 30px;
    padding-left: 10px;
}

.clanovi-blok-zene h1 {
    color: #ae070f;
    ;
}

.politicka-akademija {
    width: 100%;
    height: 400px;
    background-color: #efefef;
    margin-top: 60px;
    display: flex;
}

.politicka-akademija-blok {
    flex: 1;
    text-align: left;
}

.politicka-akademija-blok:first-child {
    padding-left: 30px;
    align-self: center;
    padding-right: 20px;
}

.politicka-akademija-blok h1 {
    font-weight: 500;
    color: #06427e;
    margin-bottom: 20px;
}

.politicka-akademija-blok p {
    color: #333;
    font-size: 16px;
    margin-bottom: 35px;
}

.politicka-akademija-blok:last-child {
    display: flex;
    align-items: flex-end;
}

.politicka-akademija-blok img {
    width: 100%;
    height: auto;
}

.politicka-akademija-blok a {
    color: #333;
    font-size: 16px;
    border: 1px solid #06427e;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 700;
    color: #06427e;
    transition: all .3s;
}

.politicka-akademija-blok a:hover {
    background-color: #06427e;
    color: white;
}


/*--FOOTER--*/

#footer {
    width: 100%;
    height: auto;
    background-color: #0d4883;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

#footer>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-top: -350px;
    object-fit: cover;
    z-index: -1;
}

.document-download {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.document-download img {
    height: 40px;
    margin-right: 15px;
}

.document-download span {
    color: white;
    font-weight: 500;
}

#footer-wrap {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.footer-blok {
    flex: 1;
    margin-left: 40px;
}

.footer-blok:first-child {
    margin-left: 0;
}

.footer-blok .wrap-title {
    color: white;
    font-size: 25px;
    font-weight: 300;
}

.footer-blok .wrap-title::before {
    display: none;
}

.captcha-input {
    margin-bottom: -12px;
}

.captcha-div {
    margin-bottom: 60px !important;
}

.footer-blok a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #055bb0;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 14px;
    cursor: pointer;
}

.footer-blok:first-child a {
    border-bottom: 0 !important;
}

.footer-blok a:nth-child(2) {
    margin-top: 40px;
}

.footer-blok a:nth-child(2) {
    padding-top: 0;
}

.footer-blok:last-child p {
    padding-top: 40px;
    color: white;
    font-weight: 300;
    font-size: 14px;
}

.footer-blok:last-child a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #4a77a4;
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    transition: all .5s;
    border: 0;
}

.footer-blok:last-child a:nth-child(3):hover {
    background-color: #bd0000;
}

.footer-blok:last-child a:nth-child(4):hover {
    background-color: #003366;
}

.footer-blok .text {
    margin-top: 20px;
}

.text {
    position: relative;
    text-align: center;
    color: white;
    font-size: 26px;
    font-weight: 700;
}

.footer-blok .text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0px;
    top: 45%;
    width: 35px;
    height: 80px;
    background-image: url('../img/right-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.footer-blok .text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    top: 45%;
    width: 35px;
    height: 80px;
    background-image: url('../img/left-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.galerija {
    padding-top: 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.galerija-slika {
    flex-basis: 31%;
    position: relative;
    transition: all 3s;
    margin-bottom: 10px;
    overflow: hidden;
    height: 65px;
}

.galerija-slika img {
    width: 100%;
    height: auto;
    transition: all 3s;
    position: relative;
    min-height: 65px;
}

.galerija-slika a {
    position: relative;
    width: 100%;
    height: 106%;
    padding: 0 !important;
}

.galerija-slika a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 94%;
    background-color: #055bb0;
    opacity: 0.8;
    top: 0;
    left: 0;
    display: none;
    transition: all 3s;
    cursor: pointer;
}

.galerija-slika a::before {
    content: '';
    background-image: url('../img/Icon.png');
    background-repeat: no-repeat;
    position: absolute;
    top: 30%;
    left: 35%;
    width: 50%;
    height: 50%;
    z-index: 2;
    display: none;
    transition: all 3s;
    cursor: pointer;
}

.galerija-slika a:hover:before,
.galerija-slika a:hover:after {
    display: block;
}

.contact {
    width: 100%;
    height: 100px;
    background-color: #bd0000;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    position: relative;
    z-index: 3;
}

.contactwrap {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.copy {
    text-align: center;
    padding: 8px 0;
    color: #4a77a4;
    font-size: 13px;
}

.mania {
    text-decoration: none;
    color: yellow;
}

.contact-wrap-blok {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-wrap-blok:nth-child(2) {
    justify-content: flex-end;
}

.contact-wrap-blok img {
    height: 60%;
}

.contact-wrap-blok p {
    padding-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.contact-wrap-blok a {
    color: white;
    text-decoration: none;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
}

.contact-wrap-blok i {
    color: white;
    font-size: 28px;
    transition: all 0.3s;
}

.contact-wrap-blok .fa-instagram {
    font-size: 31px;
}

.contact-wrap-blok a:hover i {
    color: #1059a2;
}

.contact-wrap-blok:last-child a {
    margin-left: 35px;
    padding-left: 0;
    padding: 0 5px;
    height: 40%;
    display: flex;
    align-items: center;
}

.contact-wrap-blok:last-child {
    justify-content: flex-end;
}

.contact-wrap-blok:first-child {
    justify-content: flex-start;
}


/*--ONE NEWS--*/

#one-news {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#one-news>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    object-fit: cover;
    opacity: 1;
    opacity: 0.5;
}

.one-news-flex {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 40px;
}

.one-news-flex-blok {
    flex: 2;
    text-align: justify;
    width: 1px;
    max-width: 710px;
}

.one-news-flex-blok:last-child {
    flex: 1.3;
}

.one-news-flex-blok>img {
    width: 100%;
    height: auto;
}

.one-news-flex-blok h2 {
    color: #004284;
    font-weight: 500;
    font-size: 22px;
    margin: 15px 0;
    text-align: left;
}

.one-news-flex-blok .datum {
    margin-bottom: 15px;
}

.one-news-flex-blok:first-child p,
.one-news-flex-blok:first-child ul {
    color: #666;
    font-size: 15px;
}

.one-news-flex-blok:first-child ul {
    padding-left: 40px;
}

.one-news-flex-blok:last-child {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.one-news-blok-slika {
    flex: 1.7;
    overflow: hidden;
}

.one-news-blok-slika img {
    width: auto;
    height: 117.5px;
}

.one-news-blok-tekst {
    flex: 3;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}

.one-news-blok-tekst a {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 17px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all .2s;
}

.one-news-blok-tekst p {
    font-size: 13px;
    line-height: 15px;
    color: #333;
    margin-bottom: 10px;
}

.one-news-blok-tekst .kalendar {
    height: 20px;
    display: flex;
    align-items: flex-end;
}

.one-news-blok-tekst .kalendar img {
    height: 100%;
    margin-right: 10px;
}

.one-news-blok-tekst .kalendar span {
    font-size: 12px;
}

.one-news {
    display: flex;
    margin-bottom: 30px;
    height: 110px;
}

.one-news-flex-blok .one-news .news-blok-tekst a:hover {
    color: #004284;
}


/*--KONTAKT--*/

#kontakt {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#kontakt>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    object-fit: cover;
    opacity: 1;
    opacity: 0.5;
}

.kontakt-flex {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 40px;
    background-color: white;
    box-shadow: 1px 1px 15px -5px #333;
}

.kontakt-flex-blok {
    flex: 2;
    text-align: left;
}

.kontakt-flex-blok:last-child {
    flex: 1.7;
}

.kontakt-flex-blok:first-child {
    flex: 2;
    padding: 60px;
}

.street {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.street img {
    width: 30px;
    height: auto;
}

.street img {
    align-self: flex-start;
}

.street p {
    padding-left: 20px;
    color: #666;
}

.street a {
    padding-left: 20px;
    color: #666;
    text-decoration: none;
}

.street2 {
    padding-top: 20px;
}

.street-blok {
    flex: 1;
    display: flex;
}

.street3 {
    padding-top: 20px;
}

.form {
    padding-top: 40px;
    width: 100%;
}

.form button {
    border: 0;
    padding: 10px 20px;
    margin-top: 65px;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-size: 18px;
    background-color: #0d4883;
}

.form button:hover {
    background-color: #09335d;
}

.input-name {
    width: 48%;
    float: left;
    margin-bottom: 20px;
}

.input-name:nth-child(2) {
    margin-left: 4%;
}

.input-name input {
    width: 100%;
    border: 1px solid #ddd;
    outline: 0;
    background-color: #f9f9f9;
    height: 30px;
    margin-top: 5px;
}

.form label {
    color: #666;
}

.form .full {
    width: 100%;
    border: 1px solid #ddd;
    outline: 0;
    background-color: #f9f9f9;
    height: 30px;
    margin-bottom: 20px;
}

.form .full-2 {
    border: 1px solid #ddd;
    outline: 0;
    background-color: #f9f9f9;
    height: 30px;
    max-width: 100%;
    min-width: 100%;
    height: 150px;
    min-height: 150px;
}

.kontakt-flex-blok:last-child {
    padding: 20px;
}

#map {
    height: 100%;
    width: 100%;
}


/*--ONAMA--*/

#about {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#about-wrap {
    width: 800px;
}

#about>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    object-fit: cover;
    opacity: 1;
    opacity: 0.5;
}

.about-us {
    width: 100%;
    padding-top: 30px;
    text-align: left;
    text-align: justify;
}

#about-wrap h1 {
    font-weight: 500;
    color: #004284;
    margin-bottom: 20px;
}

.about-us p {
    color: #666;
}

.about-us .program-wrap-btn {
    margin-top: 60px;
    margin-bottom: 60px;
}

#istorijat {
    width: 100%;
    text-align: left;
}

.istorijat-flex-blok h2 {
    color: #004284;
    font-weight: 300;
}

.istorijat-flex {
    display: flex;
    margin-bottom: 60px;
}

.istorijat-flex-blok {
    flex: 1;
    text-align: justify;
}

.istorijat-flex-blok:last-child {
    margin-left: 15px;
}

.istorijat-flex-blok:first-child {
    margin-right: 15px;
}

.istorijat-flex-blok p {
    color: #666;
    font-size: 15px;
    line-height: 21px;
}

#about-wrap p {
    color: #666;
    font-size: 15px;
    line-height: 21px;
}

#about-wrap .program-wrap-btn {
    margin: 40px 0;
}

.dns-kroz-istoriju {
    color: #666;
    font-size: 15px;
    line-height: 21px;
}

.dns-kroz-istoriju p {
    border-left: 2px solid #004284;
    padding-left: 25px
}

.last {
    margin-bottom: 10px;
}

.godina {
    padding-bottom: 10px;
}

.accordion {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 10px;
}

.accordion-3 .polaroid {
    min-height: 1px;
}

.accordion-first {
    margin-top: 60px;
}

.accordion:last-child .dropdown-wrap {
    padding-bottom: 0;
}

.accordion-name {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all .3s;
    border-bottom-right-radius: 44px;
}

.accordion:hover .accordion-name {
    background-color: #004284;
}

.accordion:hover .downarrow {
    background-color: #004284;
    /*    border-left:1px solid white;*/
}

.active-acc {
    background-color: #004284 !important;
}

.arrowrot {
    transform: rotatez(-180deg);
}

.accordion-name:hover p {
    color: white !important;
}

.downarrow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    transition: all .3s;
    border-bottom-right-radius: 44px;
}

.downarrow img {
    margin-top: 10%;
    height: 40px;
    transition: all .5s;
    margin-top: -2px;
    width: 40px;
    transition: all .3s;
}

.accordion-name p {
    font-size: 30px !important;
    padding: 10px 0 !important;
    color: #004284 !important;
    padding-left: 20px !important;
    font-weight: 500 !important;
    line-height: 40px !Important;
}

.accordion-name .activep {
    color: white !important;
    font-weight: 500;
}

.dropdown-wrap {
    width: 100%;
    height: auto;
    display: none;
}

.dropdown-wrap {
    padding-top: 60px;
    text-align: justify;
    padding-bottom: 60px;
}

.dropdown-wrap img {
    width: 340px;
    height: auto;
    float: left;
    padding-right: 20px;
    padding-bottom: 5px;
}

.dropdown-wrap h1 {
    line-height: 22px;
    margin-bottom: 10px !important;
}

.dropdown-wrap span {
    color: #004284;
}

.dropdown-wrap p:nth-child(4) {
    margin-top: 20px;
}

.dropdown-wrap p {
    color: #666;
    font-size: 14.5px;
    line-height: 21.5px;
}

.info-2 {
    margin-top: 80px;
}

.polaroid {
    min-height: 410px;
}


/*--SVE NOVOSTI--*/

#all-news {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#all-news-wrap {
    width: 1200px;
    padding: 80px 0 80px 0 !important;
}

#all-news>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 1;
    opacity: 0.7;
}

.all-news-flex {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}

.all-news-flex-blok:nth-child(odd) {
    margin-right: 5%;
}

.all-news-one-title {
    display: flex;
    height: 100px;
    width: 100%;
    background-color: #003c77;
    align-items: center;
}

.all-news-title {
    flex: 9;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all .3s;
}

.all-news-title:hover {
    background-color: #00264d;
}

.all-news-date {
    flex: 1.7;
    background-color: #bd0000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.all-news-title p {
    color: white;
    font-size: 19px;
    font-weight: 500;
    padding: 5px 20px;
}

.all-news-title a {
    text-decoration: none;
    height: 100%;
    align-items: center;
    display: flex;
}

.all-news-date {
    color: white;
    height: 100%;
}

.all-news-date p {
    font-weight: 300;
}

.all-events {
    height: 120px;
}

.day {
    font-size: 28px;
    line-height: 22px;
}

.month {
    font-size: 14px;
    margin-top: 3px;
}

.all-news-date hr {
    border: 0;
    height: 1px;
    background-color: white;
    margin: 5px 0;
    width: 40%;
}

.year {
    font-size: 14px;
}

.all-news-one-content {
    margin-top: 15px;
    display: flex;
    height: 120px;
}

.all-news-one-content-img {
    flex: 1;
    overflow: hidden;
}

.all-news-one-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-news-one-content-text {
    flex: 2.5;
    text-align: justify;
    margin-left: 15px;
}

.all-news-one-content-text p {
    color: #666;
    font-size: 15px;
    line-height: 20px;
}

.all-news-one {
    margin-bottom: 40px;
    flex-basis: 47.5%;
}

.all-news-flex .all-news-one:nth-child(odd) {
    margin-right: 5%;
}

.all-news-flex .all-news-one:last-child {
    margin-bottom: 0;
}

.wrap-events .all-news-one {
    flex-basis: 100% !important;
}


/*--DOCUMENTS--*/

#document {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#document-wrap {
    width: 1200px;
}

#document>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    object-fit: cover;
    opacity: 1;
    opacity: 0.5;
}

.gallery {
    width: calc(100% + 2%);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

iframe {
    margin-top: 40px;
}

.gallery-img {
    flex-basis: 23%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 1%;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img:hover {
    box-shadow: 6px 6px 13px -5px #333;
}

.gallery-img img {
    width: 100%;
    height: auto;
    min-height: 180px;
}

.gallery-modal {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.gallery-modal-wrap {
    padding: 20px;
    width: auto;
    height: auto;
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.5s;
    animation-name: zoom;
    animation-duration: 0.5s;
    position: relative;
    transition: all .6s;
}

.gallery-modal-wrap img {
    width: auto;
    height: 500px;
}

.gallery {
    width: calc(100% + 2%);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

iframe {
    margin-top: 40px;
}

.gallery-img2 {
    flex-basis: 23%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 1%;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img2:hover {
    box-shadow: 6px 6px 13px -5px #333;
}

.gallery-img2 img {
    width: 100%;
    height: auto;
    min-height: 180px;
}

.gallery-modal2 {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.gallery-modal-wrap2 {
    padding: 20px;
    width: auto;
    height: auto;
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.5s;
    animation-name: zoom;
    animation-duration: 0.5s;
    position: relative;
    transition: all .6s;
}

.gallery-modal-wrap2 img {
    width: auto;
    height: 500px;
}

.prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    left: -62px;
    color: white;
    font-weight: bold;
    font-size: 44px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    right: -62px;
    color: white;
    font-weight: bold;
    font-size: 44px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.close {
    position: absolute;
    top: -35px;
    right: 20px;
    font-size: 35px;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.download-document {
    width: 100%;
    height: auto;
    margin-top: 60px;
    text-align: left;
}

.download-document h1 {
    color: #004284;
    font-weight: 500;
    margin-left: 0.6
}

.download-document-flex {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 1.2%);
    margin-left: -0.6%;
}

.one-document {
    flex-basis: 32%;
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    margin-left: 0.6%;
    margin-right: 0.6%;
}

.one-document-img {
    padding: 10px 0;
    flex: 1.5;
    background-color: #004284;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    transition: all .3s;
}

.one-document-img img {
    height: 40px;
    width: auto;
}

.one-document-img p {
    color: white;
}

.one-document-info {
    flex: 7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
    padding: 5px;
    position: relative;
    transition: all .3s;
}

.one-document-info p {
    z-index: 1;
    transition: all .3s;
}

.one-document-info::after {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: 100%;
    top: 0;
    left: -132.5%;
    background-color: #004284;
    transition: all .3s;
}

.one-document:hover .one-document-info::after {
    left: -10px;
}

.one-document:hover .one-document-info p {
    color: white;
}

.document-size {
    display: flex;
    justify-content: space-between;
}

.one-document-info>p {
    color: #666;
}

.document-size p {
    color: #666;
    font-size: 13px;
}

.dwnld {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}


/*--ORGANI DNS--*/

#organi-dns {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#organi-dns-wrap {
    width: 800px;
}

#organi-dns-wrap .podnaslov {
    margin-bottom: 10px;
    text-align: left;
}

#organi-dns-wrap a {
    color: #666;
}

#organi-dns-wrap a:hover {
    color: #0d4883;
}

#organi-dns>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    object-fit: cover;
    opacity: 1;
    opacity: 0.5;
}

.predsjednik {
    margin-top: 40px;
    text-align: justify;
}

.potpredsjednici-space {
    margin-bottom: 60px;
    overflow: hidden;
}

.potpredsjednici-space:last-child {
    margin-bottom: 0;
}

.potpredsjecnici-uvod {
    margin-top: 50px;
    text-align: justify;
    color: #666;
    font-size: 14.5px;
    line-height: 21.5px;
}

.predsjednik img {
    width: 320px;
    height: auto;
    float: left;
    padding-right: 20px;
    padding-bottom: 5px;
}

.predsjednik p {
    color: #666;
    font-size: 14.5px;
    line-height: 21.5px;
}

.predsjednik h1 {
    line-height: 22px;
    margin-bottom: 10px !important;
    color: #004284;
    font-weight: 500;
}

.predsjednik span {
    color: #004284;
}

.predsjednik p:nth-child(4) {
    margin-top: 20px;
}

.regionalni-odbori {
    text-align: justify;
    margin-top: 40px;
}

.regionalni-odbori h1 {
    margin-bottom: 30px;
    font-weight: 500;
    color: #004284;
}

.regionalni-odbori-flex {
    display: flex;
    flex-wrap: wrap;
}

.regionalni-odbori-blok:nth-child(odd) {
    margin-right: 4%;
}

.regionalni-odbori-blok {
    flex-basis: 48%;
}

.regionalni-odbori-blok p:nth-child(2) {
    margin-bottom: 10px;
}

.podnaslov {
    color: #004284;
    font-weight: 500;
}

.regionalni-odbori {
    color: #666;
    font-size: 15px;
    line-height: 22px;
}

.regionalni-odbori ul {
    padding-left: 40px;
    border-left: 1.5px solid #004284;
    margin-bottom: 20px;
    margin-top: 20px;
}


/*
.glavni-odbor ul{
    border-left:1.5px solid #004284
}
*/

.glavni-odbor {
    text-align: left;
    margin-top: 40px;
    text-align: justify;
}

.glavni-odbor h1 {
    margin-bottom: 30px;
    font-weight: 500;
    color: #004284;
}

.glavni-odbor ul {
    padding-left: 50px;
}

.lft-border {
    padding-left: 30px;
    border-left: 1.5px solid #004284;
    margin: 20px 0;
}

.glavni-odbor p {
    color: #666;
    font-size: 15px;
    line-height: 22px;
}

.glavni-odbor ul {
    color: #666;
    font-size: 15px;
    line-height: 22px;
}

.nabrajanje {
    position: relative;
    margin-left: 80px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.clear-margin {
    margin-bottom: 0;
}

.nabrajanje::after {
    content: '';
    position: absolute;
    top: 9px;
    left: -40px;
    width: 35px;
    height: 7px;
    background-image: url('../img/right-element-blue.svg');
    background-repeat: no-repeat;
}

.nabrajanje-crta {
    position: relative;
    margin-left: 80px;
}

.nabrajanje-crta::after {
    content: '-';
    position: absolute;
    top: -5px;
    font-size: 60px;
    left: -30px;
    color: #004284;
    font-weight: 10;
}

.mladi-vijesti {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.mladi-dns-content p {
    display: block !important;
}

.mladi-dns-content>p:nth-child(2) {
    display: none !important;
}

.mladi-vijesti .news {
    flex-basis: 100%;
}

.mladi-vijesti .news-blok-slika img {
    width: 100% !Important;
    height: auto;
    max-width: none;
}

.mladi-vijesti .news-blok-tekst {
    flex: 3.5;
}

.mladi-vijesti .news:last-child {
    margin-bottom: 0 !important;
}


/*--MODALI--*/

.access {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 60, 119, 0.5);
    z-index: 1000;
}

.access-wrap {
    width: 900px;
    height: auto;
    background-color: white;
    box-shadow: 1px 1px 13px 0px #333;
    padding: 40px 10px 40px 10px;
    z-index: -2;
    position: relative;
    animation: askAnim .5s forwards;
}

@keyframes askAnim {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.access-title {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
}

.color-effect {
    background-color: rgb(0, 60, 119);
    left: -10px;
    position: absolute;
    top: 0;
    width: 300px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 50px;
}

.color-effect::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 300px;
    background-color: #bd0000;
    height: 35px;
    z-index: -1;
    border-bottom-right-radius: 50px;
}

.color-effect h1 {
    color: white;
    font-size: 23px;
}

.access-content {
    width: 770px;
    margin: 0 auto;
    height: auto;
}

.inputs {
    width: 30%;
    float: left;
    margin-bottom: 25px;
}

.inputs input {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    height: 35px;
    margin-top: 5px;
    color: #666;
}

.inputs-third {
    width: 65% !important;
}

.input-clear {
    margin: 0 !important;
}

.inputs {
    margin-right: 5%;
}

.access-content label {
    color: #666;
}

.inputs-2 {
    width: 100%;
    float: left;
}

.inputs-two {
    float: left;
    width: 65%;
    margin-right: 5%;
}

.inputs-two input {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    height: 35px;
    margin-top: 5px;
    color: #666;
}

.inputs-2 input {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    height: 35px;
    margin-top: 5px;
    color: #666;
}

.input-eq {
    width: 47.5%;
    float: left;
}

.input-space {
    margin-right: 5%;
}

.input-eq input {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    height: 35px;
    margin-top: 5px;
    color: #666;
    margin-bottom: 25px;
}

.inputs-2 {
    margin-right: 5%;
    margin-bottom: 25px;
}

.inputs-2:nth-child(5) {
    margin-right: 0;
}

.inputs-2 select {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd !important;
    height: 30px;
    margin-top: 5px;
    color: #666;
}

.custom-select {
    position: relative;
    height: 35px;
    border: 1px solid #ddd;
    margin-top: 4px;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #666 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

.select-items div,
.select-selected {
    color: #666;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    height: 35px;
}

.select-selected {
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.select-items div {
    padding: 5px;
}

.select-items {
    position: absolute;
    background-color: #f9f9f9;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.input-3 {
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.input-3 textarea {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    height: 150px;
    margin-top: 5px;
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    color: #666;
}

.btn-s {
    width: 100%;
    display: flex;
    z-index: 1;
    position: relative;
}

.btn-s-blok {
    flex: 1;
}

.btn-s-blok:first-child {
    flex: 2.5;
}

.btn-s-blok:last-child {
    display: flex;
    justify-content: flex-end;
}

.btn-s-blok p {
    color: #666;
    font-size: 16px;
}

.btn-s-blok button:first-child {
    border: 0;
    padding: 8px 15px;
    color: white;
    font-weight: 500;
    background-color: #004284;
    cursor: pointer;
    font-weight: 700;
}

.btn-s-blok form button {
    border: 0;
    padding: 8px 20px;
    color: white;
    font-weight: 500;
    background-color: #004284;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

.btn-s-blok button:hover {
    background-color: #003366;
}

.exitmodal {
    position: absolute;
    top: 29px;
    right: 38px;
    color: rgb(0, 60, 119);
    font-weight: 700;
    font-size: 35px;
    cursor: pointer;
}


/*--MODAL2--*/

.ask-dns {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 60, 119, 0.5);
    z-index: 1000;
}

.ask-dns-wrap {
    width: 900px;
    height: auto;
    background-color: white;
    box-shadow: 1px 1px 13px 0px #333;
    padding: 40px 10px 40px 10px;
    z-index: -2;
    position: relative;
    animation: askAnim .5s forwards;
}

@keyframes askAnim {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.ask-dns-title {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
}

.color-effect {
    background-color: rgb(0, 60, 119);
    left: -10px;
    position: absolute;
    top: 0;
    width: 300px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 50px;
}

.color-effect::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 300px;
    background-color: #bd0000;
    height: 35px;
    z-index: -1;
    border-bottom-right-radius: 50px;
}

.color-effect h1 {
    color: white;
    font-size: 23px;
}

.ask-dns-content {
    width: 770px;
    margin: 0 auto;
    height: auto;
}

.inputs {
    width: 30%;
    float: left;
    margin-bottom: 25px;
}

.inputs input {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    height: 35px;
    margin-top: 5px;
    color: #666;
}

.inputs {
    margin-right: 5%;
}

.ask-dns-content label {
    color: #666;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.vid-modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: black;
    background-color: rgb(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.video {
    width: 100%;
    height: 100%;
}

.video iframe {
    margin-top: 0 !important;
}

.vid-modal-wrap {
    width: 750px;
    height: 400px;
    background-color: white;
    animation: askAnim .5s forwards;
    position: relative;
}

.modaldugme {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
}


/*--ADMIN--*/

#admin {
    height: auto;
    min-height: calc(100vh - 6vh);
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.slika {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -55;
}

.admin-nav {
    flex: 1 !important;
}

.header-admin {
    position: relative !important;
    top: 0 !important;
    height: 3vh !important;
}

.admin-nav h1 {
    color: #003c77;
    font-size: 35px;
}

.admin-naslov {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.admin-nav:last-child {
    justify-content: flex-end;
}

#footer-admin {
    position: relative;
    bottom: -1px;
    width: 100%;
    text-align: center;
    height: 3vh;
    background-color: #003c77;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer-admin .copy {
    background-color: #003c77;
    color: white;
    padding: 0;
}

.admin-naslov span {
    text-align: center;
    color: #003c77;
    font-weight: 700;
    line-height: 27px;
    font-size: 40px;
    position: relative;
}

.admin-naslov span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -60px;
    top: 45%;
    width: 50px;
    height: 80px;
    background-image: url('../img/right-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.admin-naslov span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -60px;
    top: 45%;
    width: 50px;
    height: 80px;
    background-image: url('../img/left-element.svg');
    background-repeat: no-repeat;
    z-index: 10;
}

.admin-panel label {
    font-size: 22px;
    color: #003c77;
    font-weight: 500;
}

.admin-panel form {
    z-index: 1;
}

.add-sadrzaj {
    margin-bottom: 20px;
}

.admin-panel input,
.admin-panel textarea,
.admin-panel select {
    margin-top: 5px;
    margin-bottom: 20px;
    height: 35px;
    border: 0;
    background-color: #efefef;
    z-index: 1000;
    position: relative;
    color: #333;
    width: 100%;
}

.admin-panel textarea {
    max-width: 100%;
    min-width: 100%;
    height: 150px;
}

.help-send {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.admin-panel .help-send a {
    color: white;
    font-weight: 600;
    z-index: 1000;
    position: relative;
    font-size: 25px;
}

.admin-panel .help-send button {
    color: white;
    border: 0;
    padding: 8px 20px;
    background-color: #003c77;
    font-weight: 700;
    font-size: 15px;
    z-index: 1000;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

.admin-panel .help-send button:hover {
    background-color: #bd0000;
}

.admin-panel {
    width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 1px 1px 13px -3px #333;
    padding: 60px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    background-color: white;
}

.admin-panel img:first-child {
    position: absolute;
    bottom: -120px;
    width: 220%;
    left: -650px;
    transform: rotatez(20deg);
    z-index: -0;
}

.add-news-admin-panel img:first-child {
    bottom: -220px;
    left: -780px;
    transform: rotatez(15deg);
}

.all-news img:first-child {
    bottom: -480px;
    left: -650px;
    transform: rotatez(15deg);
}

.dashboard a {
    border: 0;
    background-color: #efefef;
    z-index: 10000000;
    margin-bottom: 30px;
    height: 80px;
    text-align: left;
    padding-left: 20px;
    font-size: 25px;
    color: #003c77;
    border-bottom-right-radius: 120px;
    cursor: pointer;
    transition: all .5s;
    position: relative;
    display: flex;
    align-items: center;
}

.dashboard a:hover {
    background-color: #003c77;
    color: white;
}

.dashboard a:last-child {
    margin-bottom: 0;
}

.add-news {
    height: auto !important;
    padding-top: 200px;
    padding-bottom: 100px;
}

.add-news-admin-panel {
    width: 800px !important;
}

::-webkit-file-upload-button {
    height: 100%;
    border: 0;
    background-color: #003c77;
    color: white;
    cursor: pointer;
    padding: 0 20px;
    margin-left: -20px;
}

::-ms-browse {
    height: 100%;
    border: 0;
    background-color: #003c77;
    color: white;
    cursor: pointer;
    padding: 0 20px;
    margin-left: -10px;
}

.btn-s {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    position: relative;
}

.btn-s button {
    margin-left: 20px;
    width: 120px;
    padding: 10px 0;
    color: white;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.btn-s a {
    margin-left: 20px;
    width: 120px;
    padding: 10px 0;
    color: white;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.btn-s a:last-child {
    background-color: #bd0000;
}

.btn-s button:first-child {
    background-color: #00a651;
}

.required input {
    margin-bottom: 0 !important;
}

.required {
    margin-bottom: 20px;
}

.datumi {
    width: 100%;
    justify-content: space-between;
    display: flex;
}

.datumi .start-end-date {
    width: 48%;
}

.datumi input {
    width: 100%;
}

.selected {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    display: none;
}

.select-cat,
.select-type,
.add-pic,
.gall {
    width: 100%;
}

.select-cat select,
.select-type select,
.add-pic input,
.gall input {
    width: 100%;
}

.table-btn {
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.table-btn button {
    width: 220px;
    height: 40px;
    border: 0;
    border: 1px solid #003c77;
    background-color: transparent;
    color: #003c77;
    font-size: 18px;
    font-weight: 700;
    border-bottom-right-radius: 80px;
    cursor: pointer;
    transition: all .3s;
}

.curr-active {
    background-color: #003c77 !important;
    color: white !important;
}

.table-btn button:hover {
    background-color: #003c77 !important;
    color: white !important;
}

.responsive-table {
    z-index: 1;
    width: 100%;
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0px 10px 30px -15px #333;
    padding: 20px;
}

.responsive-table table {
    width: 100%;
    text-align: left;
}

.responsive-table table th {
    text-align: left;
    font-weight: 600;
    min-width: 95px;
}

.responsive-table table th {
    background-color: #efefef;
    color: #003c77;
    padding: 10px 5px;
}

.responsive-table table .r-broj {
    width: 50px !important;
    min-width: 50px !important;
}

.responsive-table table tr td:first-child {
    color: #003c77;
}

.responsive-table table td {
    background-color: transparent;
    padding: 20px 5px;
    color: #555;
    border-bottom: 0.09px solid #dedede;
}

.all-news {
    width: 1200px !important;
    margin-top: 200px;
    margin-bottom: 100px;
}

.cd {
    display: none;
}

.enddate {
    display: none !important;
}

.countdown {
    width: 180px;
    color: #003c77 !important;
    font-weight: 600;
}

.all-news-admin {
    padding: 0;
}

.dogadjaji-btn {
    display: none;
}

.press-btn {
    display: none;
}

.responsive-table .akcija {
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 2px;
    border: 1px solid #ccc;
    margin-left: 5px;
    float: left;
}

.responsive-table table .akcija img {
    width: 60%;
    height: 60%;
    left: 0;
    top: 0;
    position: relative;
    transform: rotatez(0);
    margin-right: -2px;
}

.btn-s-akcija button {
    cursor: pointer;
}

.edit-event .datumi {
    display: flex;
}


/*--DELETE MODAL --*/

.deletemodal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.deleteq {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.5s;
    animation-name: zoom;
    animation-duration: 0.5s;
    opacity: 1;
    max-width: 500px;
    height: 280px;
    text-align: center;
}

.deleteqwrapper {
    width: auto;
    padding: 0px 40px;
}

.deleteq p {
    color: #004284 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 30px !important;
    margin: 0 !important;
    line-height: 28px !important;
}

.buttondane {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.deleteq button {
    padding: 20px 50px;
    flex-basis: 100px;
    border: 0;
    background-color: white;
    box-shadow: 1px 5px 13px -5px #333;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    ;
    color: #107bb1;
    font-weight: 700;
    font-size: 18px;
}

.deleteq .da:hover {
    background-color: #00a651;
    color: white;
}

.deleteq .ne:hover {
    background-color: rgba(158, 11, 15, 1);
    color: white;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: white;
    color: #003c77;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 1px 1px 13px -5px #333;
    font-size: 15px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.activate {
    width: 70% !important;
    height: 70% !important;
}

.title-width {
    min-width: 160px !important;
}

.akcije-width {
    width: 180px;
}

.add-link {
    display: none;
}

.add-link {
    width: 100%;
}

.add-link input {
    width: 100%;
}

.add-link-edit {
    display: block;
}

.novosti-galerija {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.novosti-galerija-main-pic {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.novosti-galerija-thumbnails {
    display: flex;
    width: calc(100% + 10px);
    justify-content: space-between;
    margin-top: 30px;
}

.thumb-pic {
    flex-basis: 32%;
    height: 180px;
    overflow: hidden;
    margin-right: 10px;
}

.slick-track,
.slick-list {
    width: 100%;
}

.thumb-pic img {
    width: 100%;
    height: auto;
    min-height: 180px;
}

.novosti-galerija-main-pic img {
    width: 100%;
    height: auto;
    min-height: 400px;
    cursor: pointer;
}

.novosti-galerija .podnaslov {
    font-weight: 700;
    font-size: 30px;
}

.novosti-galerija .gallery {
    margin-top: 20px;
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.novosti-galerija .gallery-img {
    flex-basis: 32%;
    ;
    margin: 0;
    height: 160px;
}

.novosti-galerija .gallery-img img {
    min-height: 160px;
}

.gall-btn {
    margin-top: 20px;
    border: 0;
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    background-color: #003c77;
    transition: all .5s;
    cursor: pointer;
}

.gall-btn:hover {
    background-color: #00264d;
}


/*--PAGINATION--*/

.pagination {
    display: inline-block;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination li {
    display: inline;
    list-style-type: none;
    margin: 0 5px;
    border: 1px solid #003c77;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.pagination li span,
.pagination li a {
    padding: 4px 11px;
    color: #003c77;
    font-weight: 500;
}

.pagination .active {
    background-color: #003c77;
}

.pagination .active span {
    color: white;
}

.pagination li:hover {
    background-color: #003c77;
}

.pagination li:hover a {
    color: white;
}

.pagination li:hover span {
    color: white;
}

.pagination li:first-child span,
.pagination li:last-child a {
    margin-top: -3px;
}

.events-second-blok .pagination li {
    border: 1px solid #bd0000;
}

.events-second-blok .pagination li span,
.events-second-blok .pagination li a {
    color: #bd0000;
}

.events-second-blok .pagination .active {
    background-color: #bd0000;
}

.events-second-blok .pagination li:hover {
    background-color: #bd0000;
}

.events-second-blok .pagination li:hover a {
    color: white;
}

.events-second-blok .pagination li:hover span {
    color: white;
}

.events-second-blok .pagination .active span {
    color: white;
}


/*--ALERT--*/

.alert {
    position: fixed;
    background-color: #00a651;
    width: 290px;
    height: 70px;
    top: 25%;
    left: 0;
    border-bottom-right-radius: 120px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    transition: all 1s;
    animation: alertAnim 10s forwards;
}

@keyframes alertAnim {
    0% {
        left: -295px;
    }
    10% {
        left: 0
    }
    90% {
        left: 0
    }
    100% {
        left: -295px;
    }
}

.errorcode {
    background-color: #bd0000;
    color: white;
    padding: 3px;
    margin-top: 5px;
    padding-left: 8px;
}

.slick-initialized .slick-slide {
    margin-right: 15px !important;
}

#deada {
    display: flex;
    margin-bottom: 40px;
    height: 40px;
}

#deada input {
    flex: 6;
    height: auto;
    margin: 0;
}

#deada button {
    flex: 1;
    background-color: #003c77;
    color: white;
    font-weight: 700;
    font-size: 16px;
    height: 100%;
    border: 0;
}

.objavio {
    color: #003c77 !important;
    font-weight: 600;
}

#all-news .wrap-events {
    padding-bottom: 70px !important;
}

.loading-gif {
    width: 100px;
    height: 100px;
    z-index: 10;
    position: relative;
}

.loader-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.share {
    border-top: 1px solid #3069a2;
    padding-top: 5px;
}

.one-news-flex-blok .fa-facebook-f {
    color: #3069a2 !important;
    font-size: 21px;
}

.gallery-second {
    display: none;
}

.gallery-third {
    display: none;
}

.gallery-fourth {
    display: none;
}

.gallery-fifth {
    display: none;
}

.gallery-sixth {
    display: none;
}

.gallery-seven {
    display: none;
}

.gallery-eight {
    display: none;
}

.gallery-nine {
    display: none;
}

.next-prev-btn {
    display: flex;
    justify-content: center;
    margin-left: 22px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.next-prev-btn button {
    list-style-type: none;
    margin: 3px 5px;
    border: 1px solid #003c77;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    color: #003c77;
    cursor: pointer;
    background-color: transparent;
    padding: 4px 12px;
    font-size: 16px;
}

.next-prev-btn .active {
    background-color: #003c77;
    color: white;
}

.next-prev-btn button:hover {
    background-color: #003c77;
    color: white;
}

#one-news .news-blok-tekst p {
    display: none;
}

#one-news .news-blok-tekst {
    justify-content: center;
}

#one-news .news-blok-tekst a {
    margin-bottom: 5px;
}

.download-btn-a {
    display: flex !important;
    width: 100%;
    align-items: center;
}

.download-btn-a:hover span {
    color: #4a77a4 !important;
}

.footer-blok:nth-child(2) a:hover {
    color: #999 !important;
}

.footer-blok:nth-child(3) a:hover {
    color: #999 !important;
}

.flag-pic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#error-page {
    height: 52vh;
    width: 100%;
}

#error-page .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

#error-page .wrap h1 {
    color: #666;
    font-size: 80px;
}

#audio-modal {
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    flex-direction: column;
}

.audio-close {
    display: flex;
    justify-content: space-between;
    width: 258px;
    font-size: 20px;
    text-align: right;
    margin-bottom: 14px;
    font-weight: 800;
    align-items: flex-end;
}

.audio-close a {
    cursor: pointer;
    color: #004284;
    font-size: 17px;
}

.audio-close p {
    cursor: pointer;
    color: #004284;
}

.audio-wrap {
    background-color: white;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.audio-wrap>img {
    position: absolute;
    bottom: -115px;
    left: -94px;
    width: 181%;
    height: auto;
}

@media(max-width:480px) {
    .audio-wrap {
        width: 80%;
    }
}

.cekDns {
    width: 446px;
    margin-right: 100px;
}