* {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 24px;
	box-sizing: border-box;
	outline: none;
	color: #42779a;
}
html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff url(/img/bg_1.jpg) center center no-repeat;
	background-size: cover;
	background-attachment: fixed;	
}

/************ LOGIN ************************************************************************/

.container {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
  	align-items: center;
}
.login_container {
	width: 100%;
	max-width: 500px;
	height: auto;
	background-color: #fff;
	box-sizing: border-box;
	padding: 40px 50px 50px 50px;
	position: relative;
	margin: auto auto;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.login_container .logo {
	position: relative;
	display: block;
	margin: 0 auto;
	max-width: 40%;
	height: auto;
}
.login_container a {
	width: 100%;
	display: inline-block;
	text-decoration: none;
	text-align: center;
  	transition: 0.2s ease all; 
  	-moz-transition: 0.2s ease all; 
  	-webkit-transition: 0.2s ease all;
}
.login_container a:hover {
	color: #306283;
}
strong i {
	font-weight: bold !important;
}


h2 {
	text-align: center;
	margin: 20px 0 0 0;
	font-size: 20px;
}

.login_container a.gdpr {
	font-weight: bold;
	display: inline-block;
	width: auto;
	float: right;
}

form {
	width: 100%;
	height: auto;
	border: none;
	margin: 0;
	padding: 0;
}
fieldset {
	width: 100%;
	height: auto;
	border: none;
	margin: 0;
	padding: 0;
}

.group 			  { 
  	position:relative; 
}
.boxgroup {
	background: #fff;
	border-radius: 5px;
	padding: 0 15px 5px 15px;
	margin: 20px 0;
	box-sizing: border-box;
}
.boxgroup .group {
	margin-left: 15px;
	width: calc(100% - 15px);
}
.left_margin {
	margin-left: 30px;
	width: calc(100% - 30px);
}
.boxgroup .group.left_margin {
	margin-left: 45px;
	width: calc(100% - 45px);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
input[type="submit"],
button,
textarea,
.button {
	width: 100%;
	padding: 7px 15px;
	border: 1px solid #42779a;
	box-sizing: border-box;
	background-color: #fff;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	display: block;
	margin: 20px 0;
	border-radius: 5px;
  	transition: 0.2s ease all; 
  	-moz-transition: 0.2s ease all; 
  	-webkit-transition: 0.2s ease all;
}
select {
	padding: 7px 15px 7px 10px;
}
option {
	padding: 0;
}
input[type="number"].short, input[type="time"].short {
	width: 130px;
	margin: 2px 0;
}
input[type="text"].notok,
input[type="email"].notok,
input[type="password"].notok,
input[type="number"].notok,
input[type="date"].notok,
input[type="time"].notok,
textarea.notok,
select.notok {
	border: 1px solid #c00;
}
input[type="password"] {
	letter-spacing: 5px;
}
.login_container input[type="text"],
.login_container input[type="email"],
.login_container input[type="password"],
.login_container input[type="number"],
.login_container input[type="date"],
.login_container select {
	padding-left: 40px;
}
input[type="submit"], button, .button {
	background-color: #42779a;
	color: #fff;
	cursor: pointer;
	margin: 40px 0;
	text-transform: uppercase;
	padding: 7px 0;
	text-decoration: none;
}
input[type="submit"]:hover, button:hover, .button:hover {
	background-color: #306283;	
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {	
	box-shadow:inset 0 0 0 1px #42779a; 
}
input[type="text"].notok:focus,
input[type="email"].notok:focus,
input[type="password"].notok:focus,
input[type="number"].notok:focus,
input[type="date"].notok:focus,
input[type="time"].notok:focus,
textarea.notok:focus,
select.notok:focus {	
	box-shadow:inset 0 0 0 1px #c00; 
}
input[type="text"] ~ i,
input[type="email"] ~ i,
input[type="password"] ~ i,
input[type="number"] ~ i,
input[type="date"] ~ i,
input[type="time"] ~ i,
select ~ i,
input[type="submit"] ~ i,
textarea ~ i {
	position: absolute;
	top: 12px;
	left: 16px;
}
label {
 	font-size: 16px;
  	position: absolute;
  	pointer-events: none;
	background: transparent;
  	left: 10px;
  	top: 10px;
	padding: 0 5px;
  	transition: 0.2s ease all; 
  	-moz-transition: 0.2s ease all; 
  	-webkit-transition: 0.2s ease all;
	border-radius: 5px;
}
label.notok {
	color: #c00;
}
input[type="text"] ~ i ~ label,
input[type="email"] ~ i ~ label,
input[type="password"] ~ i ~ label,
input[type="number"] ~ i ~ label,
input[type="date"] ~ i ~ label,
input[type="time"] ~ i ~ label,
textarea ~ i ~ label,
select ~ i ~ label {
	left: 40px;
}
input[type="date"] ~ label,
input[type="time"] ~ label {
  	top: -15px;
	left: 10px;
  	font-size: 14px;
	background: #fff;
}
input[type="text"]:focus ~ label,
input[type="text"]:valid ~ label,
input[type="email"]:focus ~ label,
input[type="email"]:valid ~ label,
input[type="password"]:focus ~ label,
input[type="password"]:valid ~ label,
input[type="number"]:focus ~ label,
input[type="number"]:valid ~ label,
input[type="date"]:focus ~ label,
input[type="date"]:valid ~ label,
input[type="time"]:focus ~ label,
input[type="time"]:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label,
select:focus ~ label,
select:valid ~ label {
  	top: -15px;
	left: 10px;
  	font-size: 14px;
	background: #fff;
}

input:placeholder-shown ~ label {
	left: 10px !important;
  	top: 10px !important;
	font-size: 16px !important;
}
input:placeholder-shown:focus ~ label {
	top: -15px !important;
	left: 10px !important;
  	font-size: 14px !important;
}


@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  	input[type='checkbox'],
  	input[type='radio'] {
		--active: #42779a;
		--active-inner: #fff;
		/*--focus: 2px rgba(39, 94, 254, .3);*/
		--border: #42779a;
		--border-hover: #306283;
		--background: #fff;
		--disabled: #F6F8FF;
		--disabled-inner: #E1E6F9;
		-webkit-appearance: none;
		-moz-appearance: none;
		height: 23px;
		outline: none;
		display: inline-block;
		vertical-align: top;
		position: relative;
		margin: 5px 0;
		cursor: pointer;
		border: 1px solid var(--bc, var(--border));
		background: var(--b, var(--background));
		-webkit-transition: background .3s, border-color .3s, box-shadow .2s;
		transition: background .3s, border-color .3s, box-shadow .2s;
  	}
  	input[type='checkbox']:after,
  	input[type='radio']:after {
		content: '';
		display: block;
		left: 0;
		top: 0;
		position: absolute;
		-webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
		transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
		transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
		transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  	}
  	input[type='checkbox']:checked,
  	input[type='radio']:checked {
		--b: var(--active);
		--bc: var(--active);
		--d-o: .3s;
		--d-t: .6s;
		--d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  	}
  	input[type='checkbox']:disabled,
  	input[type='radio']:disabled {
		--b: var(--disabled);
		cursor: not-allowed;
		opacity: .9;
  	}
  	input[type='checkbox']:disabled:checked,
  	input[type='radio']:disabled:checked {
		--b: var(--disabled-inner);
		--bc: var(--border);
  	}
  	input[type='checkbox']:disabled + label,
  	input[type='radio']:disabled + label {
    	cursor: not-allowed;
  	}
  	input[type='checkbox']:hover:not(:checked):not(:disabled),
  	input[type='radio']:hover:not(:checked):not(:disabled) {
    	--bc: var(--border-hover);
  	}
  	input[type='checkbox']:focus,
  	input[type='radio']:focus {
    	box-shadow: 0 0 0 var(--focus);
  	}
  	input[type='checkbox']:not(.switch),
  	input[type='radio']:not(.switch) {
    	width: 23px;
  	}
  	input[type='checkbox']:not(.switch):after,
  	input[type='radio']:not(.switch):after {
    	opacity: var(--o, 0);
  	}
  	input[type='checkbox']:not(.switch):checked,
  	input[type='radio']:not(.switch):checked {
    	--o: 1;
  	}
  	input[type='checkbox'] + label,
  	input[type='radio'] + label {
		font-size: 16px;
		line-height: 20px;
		display: inline-block;
		vertical-align: top;
		cursor: pointer;
		margin-left: 20px;
		top: 8px;
  	}

  	input[type='checkbox']:not(.switch) {
    	border-radius: 5px;
  	}
  	input[type='checkbox']:not(.switch):after {
		width: 5px;
		height: 9px;
		border: 2px solid var(--active-inner);
		border-top: 0;
		border-left: 0;
		left: 7px;
		top: 4px;
		-webkit-transform: rotate(var(--r, 20deg));
				transform: rotate(var(--r, 20deg));
  	}
  	input[type='checkbox']:not(.switch):checked {
    	--r: 43deg;
  	}
  	input[type='checkbox'].switch {
		width: 38px;
		border-radius: 11px;
  	}
  	input[type='checkbox'].switch:after {
		left: 2px;
		top: 2px;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		background: var(--ab, var(--border));
		-webkit-transform: translateX(var(--x, 0));
				transform: translateX(var(--x, 0));
  	}
  	input[type='checkbox'].switch:checked {
		--ab: var(--active-inner);
		--x: 17px;
  	}
  	input[type='checkbox'].switch:disabled:not(:checked):after {
    	opacity: .6;
  	}

  	input[type='radio'] {
    	border-radius: 50%;
  	}
  	input[type='radio']:after {
		width: 21px;
		height: 21px;
		border-radius: 50%;
		background: var(--active-inner);
		opacity: 0;
		-webkit-transform: scale(var(--s, 0.7));
				transform: scale(var(--s, 0.7));
  	}
  	input[type='radio']:checked {
    	--s: .5;
  	}
	input[type='checkbox'].notok,
	input[type='radio'].notok {
		border: 1px solid #c00;
	}
}




p.notok {
	margin: 0;
	padding: 0;
	color: #c00;
}
p.notok strong {
	color: #c00;
}
form.dropzone.notok .dz-message span {
	color: #f00 !important;
}


/************ FORM ************************************************************************/

.form_container {
	width: 100%;
	max-width: 1360px;
	height: auto;
	background-color: #f1f6f9;
	box-sizing: border-box;
	padding: 40px 50px 50px 50px;
	position: relative;
	margin: 70px auto 20px auto;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	z-index: 1;
}
.form_container .logo {
	position: relative;
	display: block;
	margin: 0 auto auto 0;
	width: 30%;
	max-width: 150px;
	height: auto;
}
h1 {
	text-transform: uppercase;
	text-align: center;
	padding: 0 20%;
}
p {
	font-size: 16px;
	margin: 0;
	padding: 10px 0;
}
.auto_width {
	width: auto;
	display: inline-block;
	min-width: 100px;
}
.boxgroup .group.auto_width {
	width: auto;
	display: inline-block;
	min-width: 100px;
}
p.auto_width  {
	top: 5px;
	position: relative;
	min-width: 50%;
	max-width: 50%;
	padding-left: 0;
	padding-right: 30px;
	box-sizing: border-box;
}
p.auto_width_short  {
	top: 5px;
	position: relative;
	width: auto;
	display: inline-block;
	min-width: 100px;
	padding-left: 15px;
	padding-right: 30px;
	box-sizing: border-box;
}
.hidden {
	display: none !important;
}

.table_container {
	position: relative;
	width: 100%;
}
table#ostala_djeca {
	min-width: 100%;
	height: auto;
	border-collapse: collapse;
}
table#ostala_djeca tr th {
	text-align: center;
}
table#ostala_djeca tr td {
	padding: 5px 10px;
}
table#ostala_djeca tr input {
	margin:0;
	min-width: 150px;
}
a#dodaj_ostalu_djecu {
	width: 40px;
	height: 40px;
	background: #42779a;
	border-radius: 5px;
	display: block;
	float: right;
	text-align: center;
	margin: 5px 10px;
}
a#dodaj_ostalu_djecu:hover {
	background: #306283;
}
a#dodaj_ostalu_djecu i {
	color: #fff;
	line-height: 40px;
	text-align: center;
}
.clear {
	clear: both;
}
.program_od_do {
	margin: 10px 0 10px 45px;
}
.program_od_do .group {
	margin: 10px 5px;
}

.form_container input[type="submit"], .form_container button {
	max-width: 270px;
	text-align: center;
	box-sizing: border-box;
	padding: 7px 0;
}
.form_container button.spremi {
	float:left;
}
.form_container button.obrisi {
	float:left;
	background: #c00;
	border: 1px solid #c00;
}
.form_container button.obrisi:hover {
	background: #f00;
}
.form_container input[type="submit"].posalji {
	float:right;
}
.ui-autocomplete {
	list-style-type: none;
	background: #fff;
	border: 2px solid #42779a;
	border-top: none;
	margin: 0;
	padding: 15px;
	width: 300px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	z-index: 3;
}
.ui-autocomplete li {
	cursor: pointer;
}
.ui-autocomplete .ui-autocomplete-category {
	font-weight: bold;
	padding: 0;
	margin: 1em 0 0 0;
	line-height: 1.5;
	cursor: auto;
}
.ui-helper-hidden-accessible {
	visibility: hidden;
}


/************ HEADER ************************************************************************/

header {
	width: 100%;
	height: 50px;
	background: #306283;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	z-index: 2;
}
header .header_container {
	width: 100%;
	max-width: 1360px;
	position: relative;
	margin: 0 auto;
	padding: 3px 10px 5px 10px;
}
header p {
	color: #f1f6f9;
	width: auto;
	display: inline-block;
	font-size: 14px;
}
header p i {
	margin-right: 10px;
	color: #f1f6f9;
}
header form {
	margin: 2px 0 0 0;
	padding: 0;
	float: right;
	width: 100px;
	height: 50px;
}
header form fieldset {
	margin: 5px 0;
	padding: 0;
}
header input[type="submit"] {
	margin: 0;
	padding: 2px 0;
	font-size: 14px;
	color: #f1f6f9;
}
header input[type="submit"]:hover {	
	color: #fff;
}
header nav {
	margin: 0 auto;
	position: relative;
	display: inline-block;
	width: auto;
}
header nav ul {
	list-style-type: none;
	display: inline-block;
	width: auto;
	margin: 0;
}
header nav ul li {
	display: inline-block;
}
header nav ul li a {	
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	color: #f1f6f9;
	padding: 3px 10px;
	text-decoration: none;
	display: block;
	border-radius: 5px;
	margin-top: -2px;
}
header nav ul li a:hover {
	color: #fff;
	background-color: #42779a;
}
header nav ul li a.active {
	font-weight: bold;
	color: #fff;
}
button.dropbtn {
	margin: 0;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	color: #f1f6f9;
	text-decoration: none;
	display: block;
	padding: 3px 10px;
}
button.dropbtn:hover {
	color: #fff;
	background-color: #42779a;
}
.dropdown-content {
  	display: none;
  	position: absolute;
  	min-width: 100px;
  	z-index: 4;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	list-style-type: non;
	margin: 0;
	padding: 0;
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown-content li {
	width: 100%;
}
.dropdown-content li a {
	width: 100%;
  	background-color: #306283;
}


/* POPIS **************************************************/

table.popis {
	border-collapse: collapse;
	width: 100%;
	background: #fff;
	border-radius: 5px;
}
table.popis tr th {
	text-align: center;
	padding: 10px 5px;
	background: #306283;
	color: #fff;
	font-weight: normal;
	font-size: 14px;
}
table.popis tr.status_warning td {
	background-color: rgba(255, 0, 0, 0.3);
}
table.popis tr td {
	text-align: center;
	padding: 5px 5px;
	font-size: 14px;
}
table.popis tr:nth-child(odd) td {
	
}



table.popis tr.status_warning6 td {
	background-color: rgba(255, 153, 0, 0.2);
}
table.popis tr.status_warning5 td {
	background-color: rgba(0, 153, 255, 0.1);
}
table.popis tr.status_warning3 td {
	background-color: rgba(0, 153, 0, 0.3);
}
table.popis tr.status_warning td {
	background-color: rgba(255, 0, 0, 0.1);
}
table.popis tr.status_warning2 td {
	background-color: rgba(255, 0, 0, 0.2);
}
table.popis tr.status_warning4 td {
	background-color: rgba(255, 0, 0, 0.4);
}
table.popis tr.bold td {
	font-weight: bold;
}

table.popis tr.dark_blue td {
	background-color: rgba(0, 66, 169, 0.4);
}
table.popis tr.light_blue td {
	background-color: rgba(0, 66, 169, 0.1);
}
table.popis tr.yellow td {
	background-color: rgba(255, 255, 0, 1);
}
table.popis tr.orange td {
	background-color: rgba(255, 144, 0, 1);
}
table.popis tr.green td {
	background-color: rgba(18, 187, 0, 0.4);
}




table.popis tr td:first-child {
	text-align: right;
}
table.popis tr td:nth-child(2), table.popis tr td:nth-child(3), table.popis tr th:nth-child(2), table.popis tr th:nth-child(3) {
	text-align: left;
}
table.popis tr td.godiste {
	text-align: center;
	padding: 5px 0 3px 0;
	background: #42779a;
	color: #fff;
	font-weight: normal;
	font-size: 16px;
}
table.popis .button {
	margin: 0;
	padding: 2px 0;
	font-size: 14px;
}
.ui-accordion-header {
	cursor: pointer;
}
.accordion {
	background: #fff;
	margin: 0.9375rem 0;
	padding: 1.875rem;	
	border-radius: 10px;
}
.accordion h3 {
	cursor: pointer;
	padding: 10px 10px 10px 35px;
	margin: 0;
	position: relative;
}
.ui-icon {
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
}
.plus {
	background: url(/img/plus.png) center center no-repeat;
}
.minus {
	background: url(/img/minus.png) center center no-repeat;
}
.accordion .accordion {
	margin: 0;
	padding: 0 1.875rem;
}
.ui-accordion-content {
	padding: 0;
}

.dokument_form_container {
	background: #fff;
	border-radius: 5px;
	padding: 15px;
	margin: 20px 0;
}

.opci_uvjeti {
	margin: 10px 0 0 35px;
	display: block;
}

.popis_dokumenata {
	list-style-type: none;
	margin: 0 0 20px 0;
	padding: 0;
	position: relative;
}
.popis_dokumenata li {
	position: relative;
}
.popis_dokumenata li a {
	text-decoration: none;
	color: #333;
}
.popis_dokumenata li a i {
	color: #333;
	font-size: 30px;
	margin: 0 5px 0 0;
}
.popis_dokumenata li a span {
	color: #666;
	font-size: 14px;
}
.infobox {
	padding: 20px 15px !important;
	margin: 20px 0 0 0;
}
.infobox table tr td {
	font-size: 14px !important;
	vertical-align: top;
}
.infobox table tr td:first-child {
	min-width: 150px;
}
p.notok a {
	color: #c00;
}
.delete_doc {
	width: auto;
	height: auto;
	position: absolute;
	top: 2px;
	right: 0;
	background: #42779a;
	padding: 3px 10px;
	color: #fff !important;
	border-radius: 5px;
}
.delete_doc:hover, .delete_doc:hover i {
	background: #c00;
}
.popis_dokumenata a.delete_doc i {
	font-size: 1em;
	margin: 4px 10px 4px 4px;
	color: #fff;
}
.button.xls {
	width: 250px;
	float: right;
	text-align: center;
	margin: 40px 0 0 0;
}
.button.xls i {
	color: #fff;
}
.bodovanje {
	width: 100%;
	border-collapse: collapse;
	border-radius: 5px;
	background: #fff;
}
.bodovanje tr th {
	background-color: #42779a;
	color: #fff;
	height: 33px;
	padding: 3px 10px;
}
.bodovanje tr th:first-child {
	text-align: left;
}
.bodovanje tr td {
	padding: 3px 10px;
}
.bodovanje tr td:nth-child(2) {
	width: 100px;
}
.bodovanje tr td:last-child {
	text-align: center;
}
.bodovanje tr:nth-child(odd) td {
	background-color: #e9f1f6;
}
.bodovanje tr td input[type="number"] {
	margin: 0;
	height: 32px;
	line-height: 32px;
	text-align: center;
	padding: 0;
}
h4 {
	margin: 10px 0 5px 0;
}

.promjena_skupine {
	margin: 0;
}