@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

html{
	height:100%;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	scrollbar-width: none;
}

::-webkit-scrollbar { display: none; }

body{
	margin:0;
	height:100%;
	font-family: 'Montserrat', sans-serif;
	color:black;
	background-color:white;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color: #e8e8e8;
}

.body_b{
	margin:0;
	height:100%;
	font-family: 'Montserrat', sans-serif;
	color:black;
	background-color:white;
	display:block;
}

.obavijesti {
  position:absolute;
  left:10px;
  margin: 10px auto;
  max-width:400px;
  padding: 5px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  border-radius: 5px;
  /*box-shadow: 0 0 15px 5px #ffd48a;*/
  z-index:4;
}

.obavijesti > h3{
	max-width:83%;
	font-size:20px;
	color:black;
}

.close {
  position: relative;
  margin-left:10px;
  min-width:30px;
  opacity: 0.5;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  text-align: center;
  font-size: 1.6em;
  cursor: pointer;
}

.alert-info {
  background-color: #ebebeb;
  border-left: 5px solid #6c6c6c;
}
.alert-info .close {
  border-color: #6c6c6c;
  color: #6c6c6c;
}

.alert-success {
  background-color: #a8f0c6;
  border-left: 5px solid #178344;
}
.alert-success .close {
  border-color: #178344;
  color: #178344;
}

.alert-danger {
  background-color: #f7a7a3;
  border-left: 5px solid #8f130c;
}
.alert-danger .close {
  border-color: #8f130c;
  color: #8f130c;
}

.alert-warning {
  background-color: #ffd48a;
  border-left: 5px solid #8a5700;
}
.alert-warning .close {
  border-color: #8a5700;
  color: #8a5700;
}



@media (min-width:320px)  {
h1{
	position:absolute;
	top:2%;
	width:100%;
	text-align:center;
	font-family: 'Montserrat', sans-serif;
	font-size:40px;
	font-weight: bold;
	display:none;
}

.mobileH1{
	position:relative;
	top:1%;
	width:100%;
	text-align:center;
	font-family: 'Montserrat', sans-serif;
	font-size:40px;
	font-weight: bold;
	display:block;
	text-decoration:underline;
}

h2{
	position:relative;
	margin-top:20%;
	left:2%;
	height:auto;
	max-width:89%;
	padding:15px;
	font-size:3.4vw;
	border-right:4px solid #e7cac2;
	border-bottom:4px solid #e7cac2;
}

h3{
	max-width:60%;
	font-weight:bold;
	font-size:2.1vh;
}

h2 > li{
	min-width:60%;
}

.loader {
  margin:50% auto 0 auto;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  z-index:2;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.login{
	position:fixed;
	top:calc(40% - 200px);
	width:250px;
	min-height:380px;
	height:fit-content;
	left:calc(50% - 165px);
	padding:40px;
	background-color:white;
	color:black;
	display:none;
	border:4px solid #e7cac2;
	border-radius:10px;
	z-index:2;
  	-webkit-transition: .2s;
  	transition: .2s;
}

.login > h3{
	font-size:24px;
	min-width:100%;
	text-align:center;
	color:black;
}

.login > p{
	font-size:13px;
	margin:10px 0 10px 0;
}

.login > form{
	position:relative;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.login > form > input{
	position:relative;
	width:100%;
	font-size:14px;
	padding:8px;
	margin:10px 0 10px 0;
	text-align:left;
	border:none;
	border-bottom:1px solid black;
	outline: none;
  	-webkit-transition: .1s;
  	transition: .1s;
}
/*
.login > form > input:hover{
	background-color:rgba(179, 179, 179, 0.3);
  	-webkit-transition: .1s;
  	transition: .1s;
}
*/
.login > form > label{
	padding:10px;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

.login > form > a{
	margin-bottom:10px;
}

.checkbox{
	position:relative;
	width:auto !important;
}

.checkbox:hover{
	background-color:transparent !important;
}

.login > form > button{
	position:relative;
	width:100%;
	height:50px;
	margin:20px 0 30px 0;
	border:1px solid black;
	border-radius:5px;
	background-color:white;
	cursor:pointer;
  	-webkit-transition: .2s;
  	transition: .2s;
}

.login > form > button:hover{
	background-color:rgba(179, 179, 179, 0.3);
  	-webkit-transition: .2s;
  	transition: .2s;
}

.slike{
	position:relative;
	top:5%;
	left:0;
	height:auto;
	width:100%;
	display:inline-block;
	z-index:1;
}

.monitor{
	position:relative;
	top:0;
	left:0;
	height:auto;
	width:40%;
  	-webkit-transition: .3s;
  	transition: .3s;
}

.monitor:hover{
	transform:scale(1.1);
  	-webkit-transition: .3s;
  	transition: .3s;
  	cursor:pointer;
}


.mobitel{
	position:relative;
	left:0;
	height:auto;
	max-height:80%;
	max-width:40%;
  	-webkit-transition: .3s;
  	transition: .3s;
}

.mobitel:hover{
	transform:scale(1.2);
  	-webkit-transition: .3s;
  	transition: .3s;
  	cursor:pointer;
}

.drugi_dio{
	position:relative;
	min-height:50%;
	width:100%;
}

.menu{
	display:none;
}

.menuM{
  	position:relative;
  	top:15%;
  	height:auto;
	width:100%;
	list-style-type: none;
  	margin: 0;
  	padding: 0;
  	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.menuM > li{
	position:relative;
	display:inline;
	padding:10px 8px 10px 8px;
	margin:2px;
	color:#154042;
	border-bottom:2px solid rgba(69, 89, 84, 0.7);
	background-color:transparent;
  	-webkit-transition: .2s;
  	transition: .2s;
}

.menuM > li:hover{
	background-color:rgba(179, 179, 179, 0.6);
  	-webkit-transition: .2s;
  	transition: .2s;
  	cursor:pointer;
}

.menuM > li > a{
	color:#11201e;
	font-weight:bold;
	text-decoration:none;
}

.znacajke{
	position:relative;
	width:100%;
	background-color: white;
	height:80%;
	padding:5%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.znacajke_e{
	position:relative;
	width:100%;
	min-height:35%;
	height:fit-content;
	background-color:transparent;
}

.znacajke_e > h3{
	font-size:3.1vw;
}


.znacajke_e > p{
	font-size:2.9vw;
	max-width:44.5%;
}

.znacajke_e[id=tema]{
	height:50%;
}
/*
.znacajke_e[id=tema] > h3{
	min-width:100%;
}

.znacajke_e[id=tema] > p{
	font-size:1.9vh;
	min-width:100%;
}*/

.sivi_div{
	position:relative;
	width:100%;
	height:70%;
	padding:5% 5% 5% 5%;
	left:0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color:#e8e8e8;
	/*border-top: 6px solid #e7cac2;*/
}

.bijeli_div{
	position:relative;
	width:100%;
	height:70%;
	left:0;
	padding:5%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color:white;
	/*border-top: 6px solid #e7cac2;*/
}

.sadrzaj_mobitela{
	position:absolute;
	height:100%;
	width:auto;
	right:5%;
	top:0;
	border-radius:20px;
}

.no_install{
	position:absolute;
	height:auto;
	width:50%;
	right:0%;
	top:5%;
}

.tema{
	position:absolute;
	height:auto;
	max-height:100%;
	max-width:45%;
	right:5%;
	top:11%;
	border:1px solid #959595;
}

.povijest{
	position:absolute;
	height:auto;
	max-height:100%;
	max-width:45%;
	right:5%;
	top:11%;
	border:1px solid #959595;
	border-radius: 10px;
}

.edit{
	position:absolute;
	height:auto;
	max-height:100%;
	max-width:51%;
	right:4%;
	bottom:5%;
	border:1px solid #959595;
}

.number{
	position:absolute;
	height:auto;
	width:10%;
	left:40%;
	bottom:0%;
	border-radius:50%;
	border:1px solid #959595;
	z-index:2;
}

.mala_slova{
	position:absolute;
	height:auto;
	max-height:100%;
	max-width:51%;
	right:0%;
	bottom:10%;
	border:1px solid #959595;
}

.crni_slajd{
	position:relative;
	height:auto;
	width:100%;
	border:1px solid #959595;
}

.menus{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:fit-content;
	z-index:3;
}

.menus_hidden{
	position:relative;
	top:0;
	left:0;
	width:100%;
	height:fit-content;
	z-index:1;
}

.menu_b{
	position:relative;
	width:100%;
	height:fit-content;
	background-color:black;
	list-style-type: none;
  	margin: 0;
  	padding: 0;
  	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.menu_b > li{
	position:relative;
	margin:2px;
	padding: 10px 8px 10px 8px;
	background-color:transparent;
  	-webkit-transition: .1s;
  	transition: .1s;
}

.menu_b > li:hover{
	background-color:rgba(255, 255, 255, 0.3);
  	-webkit-transition: .1s;
  	transition: .1s;
  	cursor:pointer;
}

.menu_b > li > a{
	padding:10px 8px 10px 8px;
	color:white;
	font-weight:bold;
	text-decoration:none;
	background-color:transparent;
}

.active{
	border-bottom:2px solid white;
}
.active_b{
	
	border-bottom:2px solid black;
}

.menu2{
	position:relative;
	top:0%;
	left:0%;
	width:90%;
	height:fit-content;
	list-style-type: none;
  	margin: 0;
  	padding: 5% 5% 2% 5%;
  	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	color:black;
	background-color: white;
}

.menu2 > li{
	position:relative;
	margin:2px;
	padding: 10px 8px 10px 8px;
	background-color:transparent;
  	-webkit-transition: .1s;
  	transition: .1s;
}

.menu2 > li:hover{
	background-color:rgba(255, 255, 255, 0.3);
  	-webkit-transition: .1s;
  	transition: .1s;
  	cursor:pointer;
}

.menu2 > li > a{
	padding:10px 8px 10px 8px;
	color:black;
	font-weight:bold;
	text-decoration:none;
	background-color:transparent;
}

.cont{
	position:relative;
	width:100%;
	height:fit-content;
	min-height:100%;
}

.upute{
	position:absolute;
	top:0%;
	left:0%;
	width:90%;
	height:fit-content;
	padding:3% 5% 5% 5%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.detaljne{
	margin-top:0px;
	min-width:100%;
	padding-top:180px;
	text-align:center;
	font-size:24px;
	display:flex;
	justify-content:center;
}

.upute > h3{
	min-width:100%;
}

.upute_e{
	position:relative;
	width:100%;
	height:fit-content;
	padding:10px 0 32px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	border-top:1px solid black;
}

.upute_e > h3{
	min-width:100%;
}

.upute_e > p{
	position:relative;
	max-width:100%;
	min-width:100%;
	font-size:20px;
}

.upute_e > img{
	position:relative;
	max-width:80%;
	height:auto;
	max-height:50vh;
	
}

.podrska{
	position:absolute;
	top:0%;
	left:0%;
	width:95%;
	min-height:90%;
	height:fit-content;
	padding:3% 2.5% 2.5% 2.5%;
}

.podrska > table{
	position:relative;
	width:100%;
	max-width:100%;
	margin-top:40px;
	margin-bottom:40px;
	left:0%;
	text-align:center;
	overflow:hidden;
	font-size:2.7vw;
}

.browser{
	max-width:20%;
}

.fas{
	font-size:2.7vw;
}

.fa-times{
	color:red;
}

.fa-star-half{
	color:#ffae42;
}

.fa-check{
	color:green;
}

.fa-question{
	color:grey;
}

.disclaimer{
	position:relative;
	
	font-size:11px;
	color:grey;
}

.poteskoce{
	position:absolute;
	left:0%;
	top:0%;
	width:90%;
	padding:3px 5% 5% 5%;
	min-height:90%;
	height:fit-content;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
}

.poteskoce > .menu2{
	left:0;
}

.poteskoce_e{
	position:relative;
	top:0;
	width:80%;
	height:fit-content;
	min-height:80%;
	padding:1%;
	margin:1%;
	box-shadow: 0px 3px 8px 1px #c4c4c4;
	
}

.poteskoce_e > img{
	position:absolute;
	top:0;
	left:47.5%;
	width:10%;
	height:auto;
	
}

.prijedlozi{
	position:relative;
	top:0%;
	padding:3% 5% 5% 5%;
	width:90%;
	height:100%;
}

.up_ploca{
	position:relative;
	width:90%;
	left:5%;
	top:35px;
	font-size:16px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	color:black !important;
	z-index:1;
}

.up_ploca > a{
	margin:0 10px 0px 10px;
	color:black;
	font-weight:bold;
	padding:4px;
	text-decoration:none;
	border-bottom:2px solid black;
	background-color:transparent;
	transition:all 0.1s ease-out;
}

.up_ploca > a:hover{
	background-color:rgba(70,70,70,0.1);
}

.objava{
	position:fixed;
	top:0;
	padding-top:50px;
	background-color:rgba(0,0,0,0.3);
	display:none;
	transition:all .4s;
	z-index:3;
	width:100%;
	height:100%;
}

.objava_cont{
	position:relative;
	margin-left:auto;
	margin-right:auto;
	width:95%;
	height:300px;
	top:8%;
	padding:5px;
	background-color:white;
	border-radius:10px;
}

.objava_cont > a{
	position:absolute;
	right:15px;
	top:5px;
	color:black;
	text-decoration:none;
	font-size:26px;
	z-index:3;
}

.objava_cont > form{
	position:relative;
	width:100%;
	height:90%;
}

.objava_cont > form > .naslov{
	position:relative;
	width:90%;
	margin:5px 0 10px 0;
	font-weight:bold;
	font-size:16px;
	border:1px dashed dimgrey;
	outline:none;
}

.objava_cont > form > .tijelo{
	position:relative;
	width:95%;
	height:200px;
	max-width:95%;
	max-height:250px;
	border:1px dashed gray;
	outline:none;
}

.objava_cont > form > input[type=submit]{
	position:relative;
	left:0;
	top:0;
	margin:15px 5px 0px 0;
	background:none;
	border:1px solid black;
	font-size:14px;
	padding:3px 6px 3px 6px;
	cursor:pointer;
	z-index:3;
}

.prijedlozi_cont{
	position:relative;
	width:98%;
	margin-left:1%;
	height:fit-content;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding: 80px 0 80px 0;
}

.prijedlozi_row{
	position:relative;
	width:100%;
	margin:20px 0 100px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
}

.prijedlozi_upvotes{
	position:relative;
	width:20px;
	text-align:center;
}

.prijedlozi_upvotes > p{
	margin:0;
	font-size:16px;
}

.votes{
	position:relative;
	width:20px;
	cursor:pointer;
}

.votes-down{
	position:relative;
	width:20px;
	transform: scaleY(-1);
	cursor:pointer;
}

.prijedlozi_upvotes > p{
	color:#555;
	font-weight:bold;
}

.prijedlozi_pitanje{
	position:relative;
	width:calc(100% - 30px);
	height:fit-content;
	/*padding:10px;*/
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:end;
	border:1px solid dimgrey;
	border-bottom:1px dashed dimgrey;
	border-left:none;
	border-right:none;
	margin-bottom:0px;
	white-space:pre-line;
}

.prijedlozi_pitanje > h3{
	position:relative;
	width:calc(100% - 80px);
	font-size:18px;
	font-weight:bold;
}

.buttons{
	position:relative;
	width:45px;
	height:auto;
	top:0;
	right:0;
	text-align: right;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	margin:5px 5px 22px 0;
	z-index:2;
}

.buttons > a{
	font-size:22px;
	font-weight:bold;
	color:black;
	text-decoration:none;
}

.buttons > img{
	position:relative;
	width:11px;
	height:auto;
	cursor:pointer;
}

.prijedlozi_pitanje > .sadrzaj{
	position:relative;
	width:calc(90% - 10px);
	padding-bottom:5px;
	font-size:14px;
}

.creator{
	position:absolute;
	width:auto;
	right:0;
	bottom:0;
	margin: 0 5px 3px 0;
	color:dimgrey;
	text-align:right;
	font-size:11px;
	overflow:hidden;
}

.prijedlozi_kom{
	position:relative;
	width:calc(100% - 30px);
	margin-left:30px;
	padding:0px 5px 5px 10px;
	font-size:13px;
	border-bottom:1px solid dimgrey;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:end;
	white-space:pre-line;
}

.prijedlozi_kom > .komentar{
	position:relative;
	width:calc(100% - 60px);
	margin: 10px 5px 7px 2px;
}

.prijedlozi_kom > .user{
	position:absolute;
	right:5px;
	bottom:0px;
	margin:0 0 1px 0;
	text-align:right;
	color:dimgrey;
}

.prijedlozi_kom > form{
	position:relative;
	width:100%;
	height:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
}

.prijedlozi_kom > form > textarea{
	position:relative;
	margin:5px 0 0 0;
	padding:0;
	max-width:calc(100% - 56px);
	width:90%;
	max-height:25px;
	border:none;
	outline:none;
}

.prijedlozi_kom > form > input{
	width:54px;
	height:25px;
	background:none;
	border:1px solid black;
	border-radius:8px;
	cursor:pointer;
}

.prijedlozi_kom > form > input:hover{
	background-color:rgba(50, 255, 50, 0.15);
}

.potvrda_cont{
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.2);
	transform:scale(0);
	transition:all 0.2s ease-out;
	z-index:4;
}

.potvrda{
	position:fixed;
	margin-top:8%;
	left:calc(50% - 155px);
	width:250px;
	height:130px;
	padding:10px 30px 10px 30px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	background-color:white;
	border-radius:10px;
	text-align:center;
	font-size:16px;
	font-weight:bold;
	transition:all 0.2s ease-out;
}

.potvrda > a{
	position:relative;
	height:fit-content;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	border:1px solid black;
	color:black;
	text-decoration:none;
	padding:3px 8px 3px 8px;
}

.potvrda > .da{
	background-color:rgba(83, 191, 238, 1);
	border:none;
	color:white;
	font-weight:400;
}

.transform_scale{
	transform:scale(1) !important;
}


.kontakt{
	position:relative;
	top:0%;
	padding:3% 5% 5% 5%;
	width:90%;
	height:100%;
}


#form {
  position: relative;
  width: 90%;
  margin: 50px 0 0 0;
}

#form > input {
  font-size: 0.875em;
  width: 100%;
  height: 50px;
  padding: 0px 15px 0px 15px;

  background: transparent;
  outline: none;
  color: black;

  border: solid 1px black;
  border-bottom: none;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

#form > input:hover {
  background: rgba(179, 179, 179, 0.3);
  /*color: #e2dedb;*/
}

#form > textarea {
  width: 100%;
  max-width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;

  background: transparent;
  outline: none;

  color: black;
  font-size: 0.875em;

  border: solid 1px black;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

#form > textarea:hover {
  background: rgba(179, 179, 179, 0.3);
  /*color: #e2dedb;*/
}

#form > #submit {
  width: calc(100% + 32px);

  padding: 0;
  margin: -5px 0px 0px 0px;

  font-size: 0.875em;
  color: black;

  outline: none;
  cursor: pointer;

  border: solid 1px black;
  border-top: none;
}

#form > #submit:hover {
  /*color: #e2dedb;*/
}

}


/*------------------------------------------------------------*/


@media (min-width:1025px) { 
h1{
	position:absolute;
	top:6%;
	left:-13vw;
	width:auto;
	font-family: 'Montserrat', sans-serif;
	font-size:45px;
	font-weight: bold;
	text-align:left;
	display:block;
	text-decoration:underline;
}

.mobileH1{
	display:none;
}

h2{
	position:absolute;
	top:8%;
	height:40%;
	width:80%;
	left:10%;
	padding:15px;
	font-size:1.3em;
	line-height:120%;
	border-right:4px solid #e7cac2;
	border-bottom:4px solid #e7cac2;
	text-decoration:underline;
	display:flex;
	flex-wrap: wrap;
	align-items:center;
}

h3{
	max-width:60%;
	font-weight:bold;
	font-size:22px;
}

.slike{
	position:relative;
	top:5%;
	left:0;
	height:80%;
	width:auto;
	max-width:50%;
	display:flex;
	flex-wrap:wrap;
	align-items:end;
	z-index:1;
}

.monitor{
	position:relative;
	top:0;
	left:0;
	height:max-content;
	width:67%;
  	-webkit-transition: .3s;
  	transition: .3s;
}

.monitor:hover{
	transform:scale(1.1);
  	-webkit-transition: .3s;
  	transition: .3s;
  	cursor:pointer;
}


.mobitel{
	position:relative;
	left:0;
	height:max-content;
	width:27%;
  	-webkit-transition: .3s;
  	transition: .3s;
}

.mobitel:hover{
	transform:scale(1.2);
  	-webkit-transition: .3s;
  	transition: .3s;
  	cursor:pointer;
}

.drugi_dio{
	position:relative;
	height:100%;
	width:50%;
}

.menuM{
	display:none;
}

.menu{
  	position:absolute;
	bottom:10%;
	left:10%;
  	height:auto;
	list-style-type: none;
  	margin: 0;
  	padding: 0;
  	display:flex;
}

.menu > li{
	position:relative;
	display:flex;
	margin:2px;
	/*padding: 10px 8px 10px 8px;*/
	color:#154042;
	border-bottom:2px solid rgba(69, 89, 84, 0.7);
	/*border-right:2px solid rgba(222, 206, 200, 0.7);*/
	background-color:transparent;
  	-webkit-transition: .1s;
  	transition: .1s;
}

.menu > li:hover{
	background-color:rgba(179, 179, 179, 0.6);
  	-webkit-transition: .1s;
  	transition: .1s;
  	cursor:pointer;
}

.menu > li > a{
	padding:10px 8px 10px 8px;
	color:#11201e;
	font-weight:bold;
	text-decoration:none;
	background-color:transparent;
}

.znacajke{
	position:relative;
	width:100%;
	background-color: white;
	height:50%;
	padding:5% 5% 5% 5%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	overflow:hidden;
}

.znacajke_e{
	position:relative;
	width:45%;
	height:90%;
	padding:0;
	color:black;
	background-color:transparent;
	border: none;
  	-webkit-transition: .2s;
  	transition: .2s;
}

.znacajke_e:hover{
	transform:scale(1.1);
  	-webkit-transition: .2s;
  	transition: .2s;
}

.znacajke_e > h3{
	font-size:22px;
}


.znacajke_e > p{
	font-size:18px !important;
	max-width:40% !important;
	min-width:10px !important;
}

.znacajke_e[id=tema]{
	text-align:left;
	height:90%;
	display:block;
}
/*
.znacajke_e[id=tema] > h3{
	position:relative;
	min-width:100%;
}

.znacajke_e[id=tema] > p{
	position:relative;
	font-size:1.9vh;
	min-width:100%;
}*/

.sivi_div{
	position:relative;
	width:100%;
	height:50%;
	padding:5% 5% 5% 5%;
	left:0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color:#e8e8e8;
	/*border-top: 6px solid #e7cac2;*/
}

.bijeli_div{
	position:relative;
	width:100%;
	height:50%;
	left:0;
	padding:5%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color:white;
	/*border-top: 6px solid #e7cac2;*/
}

.sadrzaj_mobitela{
	position:absolute;
	height:100%;
	width:auto;
	right:5%;
	top:0;
	border-radius:20px;
}

.no_install{
	position:absolute;
	height:auto;
	width:50%;
	right:0%;
	top:11%;
}

.tema{
	position:absolute;
	height:auto;
	width:50%;
	right:0%;
	top:11%;
	border:1px solid #959595;
}

.povijest{
	position:absolute;
	height:auto;
	width:45%;
	right:5%;
	top:11%;
	border:1px solid #959595;
	border-radius: 10px;
}

.edit{
	position:absolute;
	height:auto;
	width:51%;
	right:4%;
	top:11%;
	border:1px solid #959595;
}

.number{
	position:absolute;
	height:auto;
	width:15%;
	left:30%;
	bottom:20%;
	border-radius:50%;
	border:1px solid #959595;
	z-index:2;
}

.mala_slova{
	position:absolute;
	height:auto;
	width:51%;
	right:5%;
	top:11%;
	border:1px solid #959595;
}

.crni_slajd{
	position:absolute;
	bottom:7%;
	height:auto;
	width:100%;
	border:1px solid #959595;
}

.menu2{
	width:96%;
	padding: 2%;
}

.upute_e{
	justify-content:space-between;
  	-webkit-transition: .2s;
  	transition: .2s;
}

.upute_e:hover{
	/*transform:scale(1.05);*/
  	-webkit-transition: .2s;
  	transition: .2s;
}

.upute_e > h3{
	width:100%;
}

.upute_e > p{
	max-width:60%;
	min-width:60%;
}

.upute_e > img{
	position:relative;
	max-width:40%;
	height:auto;
	max-height:50vh;
}

.podrska{
	padding:8% 2.5% 2.5% 2.5%;
}

.podrska > table{
	max-width:80%;
	left:10%;
	font-size:16px;
	margin-bottom:10%;
}

.fas{
	font-size:18px;
}

.poteskoce{
	justify-content:space-between;
	padding-top:10%;
}

.poteskoce_e{
	padding:1%;
	width:40%;
}


.up_ploca{
	position:relative;
	width:90%;
	left:5%;
	top:35px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	color:black;
	z-index:1;
}

.up_ploca > a{
	margin:0 10px 0px 10px;
	font-weight:bold;
	color:black;
	text-decoration:none;
}

.objava{
	position:fixed;
	top:0;
	padding-top:50px;
	background-color:rgba(0,0,0,0.3);
	display:none;
	transition:all .4s;
	z-index:3;
	width:100%;
	height:100%;
}

.objava_cont{
	position:relative;
	margin-left:auto;
	margin-right:auto;
	width:750px;
	height:300px;
	top:5%;
	padding:20px 10px 10px 10px;
	background-color:white;
	border-radius:10px;
}

.objava_cont > a{
	position:absolute;
	right:15px;
	top:5px;
	color:black;
	text-decoration:none;
	font-size:26px;
	z-index:3;
}

.objava_cont > form{
	position:relative;
	width:700px;
	height:300px;
}

.objava_cont > form > .naslov{
	position:relative;
	width:100%;
	margin:0px 0 30px 0;
	margin-right:calc(50% - 20px);
	border:1px dashed grey;
	outline:none;
	font-size:22px;
	font-weight:bold;
}

.objava_cont > form > .tijelo{
	position:relative;
	min-width:100%;
	height:190px;
	max-width:100%;
	max-height:190px;
	outline:none;
	border:1px dashed grey;
}

.objava_cont > form > input[type=submit]{
	position:relative;
	left:0;
	top:0;
	margin:15px 5px 0px 0;
	background:none;
	border:1px solid black;
	font-size:14px;
	padding:3px 6px 3px 6px;
	cursor:pointer;
	z-index:3;
}

.objava_cont > form > input[type=submit]:hover{
	background-color:rgba(50, 255, 50, 0.15);
}

.prijedlozi_cont{
	position:relative;
	width:86%;
	margin-left:8%;
	height:fit-content;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding: 80px 0 80px 0;
}

.prijedlozi_row{
	position:relative;
	width:100%;
	margin:20px 0 100px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
}

.prijedlozi_upvotes{
	position:relative;
	width:40px;
	text-align:center;
}

.prijedlozi_upvotes > p{
	margin:0;
	font-size:20px;
}

.votes{
	position:relative;
	width:40px;
	cursor:pointer;
}

.votes-down{
	position:relative;
	width:40px;
	transform: scaleY(-1);
	cursor:pointer;
}

.prijedlozi_upvotes > p{
	color:#555;
	font-weight:bold;
}

.prijedlozi_pitanje{
	position:relative;
	width:calc(100% - 60px);
	height:fit-content;
	/*padding:10px;*/
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:end;
	border:1px solid dimgrey;
	border-bottom:1px dashed dimgrey;
	border-left:none;
	border-right:none;
	margin-bottom:10px;
	white-space:pre-line;
}

.prijedlozi_pitanje > h3{
	position:relative;
	width:calc(100% - 80px);
	font-size:22px;
	font-weight:bold;
}

.buttons{
	position:relative;
	width:50px;
	height:fit-content;
	text-align: right;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	margin:0px 5px 12px 0;
}

.buttons > a{
	font-size:28px;
	font-weight:bold;
	color:black;
	text-decoration:none;
}

.buttons > img{
	position:relative;
	width:15px;
	height:auto;
	cursor:pointer;
}

.prijedlozi_pitanje > .sadrzaj{
	position:relative;
	width:calc(90% - 10px);
}

.creator{
	position:relative;
	width:10%;
	margin: 0 5px 16px 0;
	color:dimgrey;
	text-align:right;
	font-size:13px;
	overflow:hidden;
}

.prijedlozi_kom{
	position:relative;
	width:calc(100% - 80px);
	margin-left:80px;
	padding:5px 5px 5px 10px;
	font-size:13px;
	border-bottom:1px solid dimgrey;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	white-space:pre-line;
}

.prijedlozi_kom > .komentar{
	position:relative;
	width:90%;
	margin:5px 5px 5px 5px;
}

.prijedlozi_kom > .user{
	position:absolute;
	right:5px;
	bottom:0px;
	text-align:right;
	color:dimgrey;
}

.prijedlozi_kom > form{
	position:relative;
	width:100%;
	height:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
}

.prijedlozi_kom > form > textarea{
	position:relative;
	margin:5px 0 0 0;
	padding:0;
	max-width:90%;
	width:90%;
	max-height:25px;
	border:none;
	outline:none;
}

.prijedlozi_kom > form > input{
	width:54px;
	height:25px;
	background:none;
	border:1px solid black;
	border-radius:8px;
	cursor:pointer;
}

.prijedlozi_kom > form > input:hover{
	background-color:rgba(50, 255, 50, 0.15);
}

.kontakt{
	top:5%;
}

#form{
	width:50%;
}


}

.kod_unos_background{
	position:fixed;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.2);
	display:none;
	z-index:2;
}

.kod_unos_div{
	position:absolute;
	width:230px;
	height:350px;
	top:50px;
	left:calc(50% - 115px);
	background-color:white;
	border-radius:10px;
	z-index:3;
}

.kod_unos_div > h3{
	color:rgb(157, 200, 200);
	font-size:30px;
	font-weight:400;
	text-align:center;
	max-width:100%;
}

.kod_unos_div > input{
	position:relative;
	top:40px;
	width:100%;
	padding:0;
	margin:0;
	background-color:transparent;
	color:black;
	font-weight:bold;
	font-size:22px;
	text-align:center;
	border:none;
	border-bottom: 1px solid rgb(157, 200, 200);
}

.kod_unos_div > input:focus{
	outline:none;
}

.kod_unos_div > a{
	position:absolute;
	bottom:20px;
	left:calc(50% - 60px);
	font-size:15px;
	max-width:120px;
	padding:10px 30px 10px 30px;
	background-color:rgb(157, 200, 200);
	color:white;
	border-radius:25px;
	cursor:pointer;
}

.alert{
	position:relative;
	top:0px;
	background-color:rgba(204, 0, 0, 0.6);
	color:#ffb3b3;
	height:auto;
	max-width:100%;
	padding:5px;
	font-size:13px;
	font-weight:bold;
	text-align:center;
	display:none;
}


.footer{
	position:relative;
	height:10%;
	width:100%;
	color:white;
	text-align:center;
	background-color:black;
	display:flex;
	align-items:center;
	justify-content:center;
}
