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

html {
    position: relative;
    min-height: 100%;
    -ms-overflow-y: scroll;
    overflow-y: scroll;
    font-family: serif, 'Times New Roman', Times;
}

#main_container {
    margin-bottom: 200px;
    overflow: hidden;
    min-height: 500px;
}

#footer_container {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #fd9c00;
}

#footer {
    height: 200px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    position: relative;
}

#footer_logo {
    max-width: 100px;
    float: left;
}

#footer ul {
    float: left;
    list-style-type: none;
    margin-left: 50px;
}

#social_media {
    float: right;   
}

#social_media img {
    max-width: 40px;
    float: left;
    transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
}

#social_media img:hover {
    transform: scale(1.2);
}

#social_media p {
    float: left;
    height: 40px;
    line-height: 36px;
    margin-right: 10px;
}

#copyright {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
}

p, h1, h2, ul, ol, table {
    color: #454545;
}

p {
    font-size: 16px;
}

#menu_container {
    background-color: #fd9c00;
    width: 100%;
    z-index: 100;
}

#menu {
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

#menu ul {
    list-style-type: none;
    float: right;
}

#menu li {
    display: inline-block;
}

#menu li a {
    text-decoration: none;
    display: block;
    height: 80px;
    line-height: 80px;
    margin-left: 20px;
    color: #454545;
    font-size: 18px;
}

#menu li a:hover {
    color: #ffffff;
}

.submenu {
	position: absolute;
    top: 100%;
	z-index: 100;
	background-color: #ffffff;
	color: #454545;
	display: none;
	box-shadow: 0 5px 5px 1px #454545;
}

#menu .submenu a:hover {
    color: #fd9c00;
}

#menu .submenu li {
    display: block;
    border-top: 1px solid #fd9c00;
}

#menu .submenu a {
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0 5px 0 5px;
}

.menu_hover:hover .submenu {
    display: block;
}

#menu_logo {
    height: 60px;
    margin-top: 10px;
    display: none;
    border-radius: 10px;
}

#header {
    max-width: 1200px;
    height: 140px;
    margin: 0 auto;
    position: relative;
}

#logo {
    margin-top: 20px;
}

#header ul {
    position: absolute;
    left: 150px;
    top: 60px;
    list-style-type: none;
}

#header a, #footer a {
    text-decoration: none;
    color: #454545;
}

.index_image {
    width: 100%;
}

#main_image {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.block_container {
    position: relative;
}

.block {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.block_half {
    width: 50%;
    float: left;
}

.block_background1 {
    background-color: #ffe2b3;
}

#main_image_text {
    position: absolute;;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
}

#main_image_text h1 {
    color: #ffffff;
    font-size: 50px;
}

#main_image_text h2 {
    color: #ffffff;
    font-size: 40px;
}

.block p {
    margin-bottom: 10px;
}

.h1_margin {
    margin-bottom: 50px;
}

.info_text_block_img {
    width: 300px;
    float: left;
}

.info_text_block_img img {
    max-width: 80%;
    margin: 5px 0 5px 0;
}

.info_text_block_text {
    overflow: hidden;
    text-align: justify;
}

.index_title_container {
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 20px;
}

#main_container .index_quote {
    font-weight: bold;
    margin-bottom: 20px;
}

.info_text_block {
    padding: 50px 0 50px 0;
}

.info_text_block h1 {
    text-align: center;
}

.info_text_block_background {
    background-color: #ffe2b3;
}

.slide_container {
    /* text-align: center; */
    position: relative;
}

.slide_naslov {
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    width: 100%;
    padding: 3px 5px 3px 5px;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: #454545;
}

.swiper .swiper-wrapper {
    padding-bottom: 70px;
    padding-top: 70px;
}

.swiper .swiper-pagination-bullet-active {
    background-color: #454545;
}

.img_placeholder {
    width: 300;
    height: 200px;
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.link_button {
    text-decoration: none;
    color: #454545;
    border: 1px solid #454545;
    display: block;
    width: 80px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
}
.link_button:hover {
    background-color: #fd9c00;
    border-color: #fd9c00;
    color: #ffffff;
}

.index_info_block {
    overflow: hidden;
    margin-top: 60px;
}

.files_container {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.files_container2 {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
}

.files_container_right {
    overflow: hidden;
    width: 920px;
    float: right;
    margin-top: 20px;
    margin-bottom: 20px;

}

.file_download {
    margin-top: 10px;
}

.file_download a, .file_download2 a {
    text-decoration: none;
    color: #454545;
    height: 48px;
    line-height: 48px;
}

.file_download {
    width: 40%;
    margin-right: 10%;
    float: left;
}

.file_download2 {
    border-bottom: 1px solid #cccccc;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #ffffff, #f3f3f3);
    padding-top: 10px;
    padding-bottom: 10px;
}

.file_download img, .file_download2 img {
    height: 100%;
    float: left;
    margin-right: 10px;
}

.file_download a:hover, .file_download2 a:hover {
    color: #fd9c00;
}

.file_download_tekst {
    padding: 10px 10px 0 10px;
}

.info_text_block h2 {
    text-align: center;
    margin-bottom: 30px;
}

.info_text_block ol {
    margin-left: 30px;
    margin-top: 30px;
    text-align: justify;
}

.info_text_block ol li {
    margin-bottom: 10px;
}

.info_text_block ol ul {
    margin-left: 15px;
    margin-top: 5px;
    list-style-type: disc;
}

.signature {
    text-align: right;
    margin-top: 80px;
    list-style-type: none;
}

.signature li {
    margin-bottom: 5px;
}

.index_link {
    margin-bottom: 20px;
}

.index_link p {
    margin: 0;
}

.index_link a {
    text-decoration: none;
    color: #454545;
}

.index_link a:hover {
    color: #fd9c00;
}

.info_container1 {
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.info_column1 {
    width: 280px;
    display: inline-block;
    text-align: left;
}

.info_column1:first-child {
    float: left;
}

.info_column1:last-child {
    float: right;
}


.info_column1 h2 {
    font-size: 20px;
    height: 70px;
    text-align: left;
    margin-bottom: 0;
}

.info_column1 h3 {
    font-size: 16px;
    margin-top: 20px;
    font-weight: normal;
}

.info_column1 ul {
    list-style-type: none;
}

.coll_container {
    margin-top: 20px;
    width: 90%;
    margin-bottom: 50px;
}

.coll {
    margin-top: 10px;
    background-color: #ffffff;
    overflow: hidden;
    padding: 0 5px 5px 5px;
    height: 30px;
    transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

.coll button {
    border: none;
    background-color: #ffffff;
    font-size: 16px;
    height: 30px;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.coll_btn_symbol {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}

.coll ul {
    margin-left: 30px;
    list-style-type: none;
}

.coll li {
    margin-bottom: 5px;
}

#kontakt {
    margin: 50px 0 50px 0;
}

#kontakt .adresa {
    line-height: 25px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 50px;
}

#kontakt table {
    margin-top: 50px;
}

#kontakt table td {
    padding: 3px 10px 3px 0;
}

#kontakt a {
    color: #454545;
}

#mapa {
    border-top: 1px solid #cccccc;
}

#mapa iframe {
    margin-bottom: -5px;
}

.form1 {
    margin-top: 50px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 30px;
}

.form_line {
    margin-bottom: 20px;
    overflow: hidden;
}

.form_line label {
    display: block;
}

.form_line input[type="file"] {
    border: 1px solid #cccccc;
    background-color: #f3f3f3;
    width: 100%;
}

.form_line input[type="text"], .form_line input[type="password"] {
    width: 100%;
    height: 25px;
    padding: 0 5px 0 5px;
    border: 1px solid #cccccc;
    background-color: #f3f3f3;
}

.form_line select {
    width: 100%;
    height: 25px;
    border: 1px solid #cccccc;
    background-color: #f3f3f3;
}

.form_line input[type="submit"] {
    min-width: 250px;
    height: 25px;
    border: 1px solid #cccccc;
    background-color: #f3f3f3;
    float: right;
    margin-top: 20px;
}

#ed_dp {
    width: auto;
}

#doc_table {
    border-collapse: collapse;
    margin-top: 70px;
    margin-bottom: 50px;
    table-layout: fixed;
    width: 100%;
}

#doc_table, #doc_table th, #doc_table td {
    border: 1px solid #454545;
}

#doc_table th {
    background-color: #cccccc;
}

#doc_table td {
    height: 25px;
    padding: 5px;
    word-wrap: break-word;
}

#doc_table button {
    border: none;
    background-color: transparent;
    color: #ff0000;
}

#doc_table tr:hover td {
    background-color: #f3f3f3;
}

#doc_table button:hover {
    transform: scale(1.2);
}

.doc_table_del {
    width: 25px;
}

#modal_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

#modal {
    width: 360px;
    min-height: 200px;
    margin: 50px auto;
    background-color: #ffffff;
    position: relative;
    padding: 5px 5px 50px 5px;
    overflow: hidden;
    word-wrap: break-word;
}

#modal_buttons {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 5px;
    left: 0;
}

#modal_buttons button {
    border: none;
    background-color: #f3f3f3;
    height: 25px;
    min-width: 80px;
    border: 1px solid #cccccc;
}

#modal_buttons button:hover {
    background-color: #cccccc;
}

#modal_cancel_btn {
    float: left;
    margin-left: 5px;
}

#modal_accept_btn {
    float: right;
    margin-right: 5px;
}

#modal_accept_link {
    display: block;
    text-decoration: none;
    color: #454545;
    height: 25px;
    line-height: 24px;
    width: 80px;
    background-color: #f3f3f3;
    border: 1px solid #cccccc;
    text-align: center;
    font-size: 13px;
    float: right;
    margin-right: 5px;
}

#modal_accept_link:hover {
    background-color: #cccccc;
}

#modal p {
    margin-top: 10px;
}

#modal_filename {
    display: block;
    margin-top: 10px;
}

#editor_poruka {
    margin-top: 20px;
    padding: 20px;
    background-color: #f3f3f3;
    color: #ff0000;
}

.table1 {
    border-collapse: collapse;
    margin-top: 50px;
    margin-bottom: 50px;
}

.table1, .table1 td {
    border: 1px solid #454545;
}

.table1 td {
    padding: 3px 5px 3px 5px;
}

#side_menu {
    background-color: #f3f3f3;
    width: 250px;
    margin-top: 20px;
    border-top: 1px solid #fd9c00;
    border-bottom: 1px solid #fd9c00;
    float: left;
    z-index: 100;
}

#side_menu ul {
    list-style-type: none;
}

#side_menu li {
    border-bottom: 1px solid #ffffff;
}

#side_menu li:first-child {
    border-top: 1px solid #ffffff;
}

#side_menu a {
    display: block;
    padding: 10px 5px 10px 5px;
    text-decoration: none;
    color: #454545;
    cursor: default;
}

#side_menu li:not(.side_menu_selected):hover {
    background-color: #cccccc;
}

#side_menu .side_menu_selected {
    background-color: #fd9c00;
}

.side_menu_drop {
    position: relative;
}

.side_submenu {
    position: absolute;
    width: 200px;
    background-color: #f3f3f3;
    top: 0;
    left: 100%;
    border: 1px solid #cccccc;
    display: none;
    z-index: 100;
}

.side_submenu li {
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.side_menu_drop:hover .side_submenu {
    display: block;
}

#aktivnosti_lista {
    overflow: hidden;
    float: right;
    width: 900px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.aktivnosti_el {
    width: 100%;
    height: 210px;
    background-color: #f3f3f3;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    padding: 5px;
}

.aktivnosti_el img {
    max-height: 100%;
    max-width: 390px;
    position: absolute;
    top: 0;
    right: 0;
}

.aktivnosti_lista_naslov {
    font-size: 20px;
}

.aktivnosti_lista_tekst {
    width: 500px;
    height: 90px;
    overflow: hidden;
    position: relative;
}

.aktivnosti_lista_tekst p, 
.aktivnosti_lista_tekst span, 
.aktivnosti_lista_tekst div, 
.aktivnosti_lista_tekst h2, 
.aktivnosti_lista_tekst strong {
    background-color: #f3f3f3!important;
    color: #454545!important;
    font-family: serif, 'Times New Roman', Times!important;
}

.aktivnosti_lista_border {
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #cccccc;
    box-shadow: 0 0 5px 5px #f3f3f3;
}

.aktivnosti_el a {
    position: absolute;
    left: 10px;
    bottom: 10px;
    text-decoration: none;
    color: #454545;
    background-color: #cccccc;
    height: 25px;
    line-height: 25px;
    padding: 0 10px 0 10px;
    cursor: default;
    border-radius: 7px;
    font-size: 13px;
    transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
}

.aktivnosti_el a:hover {
    background-color: #fd9c00;
    color: #ffffff;
}

.side_menu_arrow {
    float: right;
    position: relative;
    bottom: 2px;
    color: #ababab;
}

.block_right {
    overflow: hidden;
    width: 920px;
    float: right;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left: 1px solid #f3f3f3;
    padding-left: 20px;
    position: relative;
}

#aktivnost_naslov {
    font-size: 25px;
    margin-bottom: 10px;
}

#aktivnost_tekst {
    margin-top: 30px;
}

#aktivnost_tekst p, 
#aktivnost_tekst span, 
#aktivnost_tekst ul, 
#aktivnost_tekst div, 
#aktivnost_tekst h2, 
#aktivnost_tekst strong {
    background-color: transparent!important;
    font-family: serif, 'Times New Roman', Times!important;
}

.file_download_tekst p, 
.file_download_tekst span, 
.file_download_tekst div, 
.file_download_tekst h2, 
.file_download_tekst strong {
    background-color: transparent!important;
}

#aktivnost_tekst iframe {
    margin-top: 10px;
    margin-bottom: 10px;
}

#aktivnost_tekst ul {
    margin-left: 15px;
}

.fotorama {
    margin-top: 30px;
    margin-bottom: 30px;
}

#login_form {
    width: 400px;
    margin: 50px auto;
}

#login_form input[type="submit"] {
    width: 100%;
}

a#logout_link {
    position: absolute;
    top: 10px;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    text-align: center;
    padding-top: 4px;
    padding-right: 1px;
    background-color: #fd9c00;
    border-radius: 50%;
}

a#logout_link:hover {
    color: #ffffff;
}

.grupa_del_btn {
    border: none;
    background-color: #ffffff;
    color: #ff0000;
}

.ap_block {
    text-align: center;
    margin-top: 50px;
}

.ap_link {
    text-decoration: none;
    color: #454545;
    width: 350px;
    height: 100px;
    line-height: 100px;
    background-color: #f3f3f3;
    display: inline-block;
    border: 1px solid #cccccc;
}

.ap_link:first-child {
    float: left;
}

.ap_link:nth-child(3n) {
    float: right;
}

.ap_link:hover {
    background-color: #cccccc;
    border-color: #fd9c00;
    cursor: default;
}

#admin_panel_link {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    background-color: #fd9c00;
    position: absolute;
    top: 10px;
    right: 80px;
    font-size: 30px;
    border-radius: 50%;
    transform: rotate(90deg);
}

#admin_panel_link:hover {
    color: #ffffff;
}

#aktivnost_del_btn {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #cccccc;
    background-color: #f3f3f3;
    height: 25px;
    padding: 0 10px 0 10px;
    z-index: 100;
}

#aktivnost_del_btn:hover {
    background-color: #ff3333;
    color: #ffffff;
    border-color: #ff3333;
}

#ps_menu1 .ps_menu1, 
#ps_menu2 .ps_menu2, 
#ps_menu3 .ps_menu3 {
    background-color: #fd9c00;
}

/* ************************ mobile menu **************************** */

#mobile_menu {
    display: none;
    background-color: #fd9c00;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #ffffff;
    text-align: center;
    z-index: 1000; 
}

#mobile_menu_logo {
    height: 30px;
    margin-top: 5px;
    border-radius: 5px;
}

#mobile_menu_btn {
    height: 100%;
    margin-left: 5px;
    /* float: left; */
    position: absolute;
    top: 0;
    left: 5px;
}

#mobile_menu_img {
    height: 100%;
}

#mobile_menu_chk {
    display: none;
}

#mobile_menu_list {
    position: fixed;
    background-color: #ffffff;
    min-width: 300px;
    height: 100%;
    z-index: 10000;
    top: 40px;
    left: -100%;
    transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
    border-left: 1px solid #fd9c00;
    border-right: 1px solid #fd9c00;
    border-bottom: 1px solid #fd9c00;
    text-align: left;
    overflow: hidden;
}

#mob_menu_overlay {
    position: fixed;
    top: 40px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
    z-index: 1000;
}

#mobile_menu_chk:checked + #mobile_menu_list {
    left: 0;
}

#mobile_menu_chk:checked ~ #mob_menu_overlay {
    left: 0;
}

#mobile_menu_list li {
    list-style-type: none;
}

#mobile_menu_list a {
    text-decoration: none;
    color: #454545;
    display: block;
    padding: 10px;
}

.mobile_submenu {
    background-color: #f3f3f3;
    padding: 10px 0 10px 0;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#mobile_menu a:hover {
    background-color: #fd9c00;
    color: #ffffff;
}

#mobile_menu .mobile_submenu a {
    padding-left: 20px;
}

.mob_menu_arrow_right {
    float: right;
}

.mobile_submenu_back {
    border-bottom: 1px solid #ffffff;
    text-align: right;
}

.mob_submenu_arrow_left {
    float: left;
    padding: 0 20px 3px 20px;
    position: relative;
    right: 20px;
}

#mobile_menu .mobile_submenu_back a:hover {
    background-color: #ffffff;
    color: #454545;
}

#mobile_menu .mobile_submenu_back a:hover .mob_submenu_arrow_left {
    background-color: #fd9c00;
    color: #ffffff;
}

/* *********************** /mobile menu **************************** */

#main_image_mob {
    width: 100%;
    display: none;
}

#main_image_text_mob {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: none;
}

#main_image_text_mob h1 {
    font-size: 20px;
    color: #ffffff;
}