/****Form****/
/*
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
*/
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  /* color: black; */
  /* text-align: left; */
}
/*
button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}
*/
.contact-form {
  margin-top: 50px;
  margin-bottom: 50px;
  *zoom: 1;
}
.contact-form:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}
.contact-form input:not([type="submit"]), .contact-form textarea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  font-weight: 300;
  outline: none;
}
.contact-form input:not([type="submit"]):hover, .contact-form textarea:hover {
  border-color: var(--blue);
}
.contact-form textarea {
  min-height: 200px;
  resize: vertical;
  outline: none;
}
/*
.contact-form input[type="submit"] {
  float: right;
}
*/
/**/
#rrr_form input, #rrr_form textarea {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float:left;
}

#rrr_form ._placeholder {
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
/*
	color: #737272;
    font: 14px/18px 'Open Sans', sans-serif;
	border: 1px solid transparent;
	height: 30px !important;
*/
  padding: 5px 18px 7px;
	width: 100% !important;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	cursor: text !important;
	display: block;
	padding-top: 10px;
	pointer-events: none;
}
#rrr_form ._placeholder.hidden {
	display: none;
}

#rrr_form ._placeholder.focused {
	opacity: 0.3;
}


#rrr_form .message ._placeholder {
	height: 100% !important;
}
#rrr_form label {
	width: 100%;
	position:relative;
	display: block;
	min-height: 44px;
	float: left;
	clear: left;
}


#rrr_form label+label {
}


#rrr_form label.message {
	width: 100%;
	position: relative;
	top: 12px;
	margin-left: 0;
}




#rrr_form .error-message, #rrr_form .empty-message {
	color: #E02A05;
	font-size: 11px;
	line-height:14px;
	width:auto;
	position: absolute;
	z-index: 999;
	top: 10px;
	opacity: 0;
	right: 5px;
	float:left;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	pointer-events: none;
}

/*#rrr_form .message .error-message, #rrr_form .message .empty-message {
	bottom: -16px;
}*/




#rrr_form .invalid .error-message, #rrr_form .empty .empty-message {
	opacity: 1;
}

.btns {
	text-align: right;
	padding-top: 25px;
}
.btns .button+.button {
	margin-left: 21px;
}

.button {
  background-color: var(--orange-light); /* #19bdce; */
  border: none;
  border-radius: 5px;
  color: white;
  display: inline-block;
  outline: none;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  text-decoration: none;
  text-align: center;
  padding: 15px 30px;
  line-height: 1em;
}
.button:hover, .button:active {
  background-color: #FCCC7D; /* #34d6e6; */
	color: black;
}




.btns, .button,
#rrr_form ._placeholder {
	-webkit-touch-callout: none; /* iOS Safari */
	  -webkit-user-select: none; /* Safari */
	   -khtml-user-select: none; /* Konqueror HTML */
		 -moz-user-select: none; /* Firefox */
		  -ms-user-select: none; /* Internet Explorer/Edge */
			  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}



.phone {
	position: relative;
}



.message br {
	height: 0;
	line-height: 0;
}

#rrr_form .success-message {
	display: none;
	opacity: 0;
	position: absolute;
	background: var(--blue);
	color: rgba(255,255,255,1.00);
	width: 100%;
	height: 270px;
	text-align: center;
/*	padding: 32% 10px;	*/
	z-index: 999;
	border-radius: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
#rrr_form.success .success-message {
/*	display: block;	*/
	display: table;
	opacity: 1;
}
#rrr_form.success .success-message .vert_txt {
	display: table-cell;
	vertical-align: middle;
}

.success_wrapper {
	position: relative;	
}

@media only screen and (max-width: 995px) {

#rrr_form {
}


#rrr_form label {
	float: none !important;	
	width: 100%;
	margin-left: 0 !important;
}

#rrr_form input {
	margin-bottom: 10px;
}


#rrr_form .success-message {
	width: 100%;
}

.btns {
	padding-right: 0;
}

#rrr_form label.email {
	width: 100%;
	margin: 0;
}

.map figure {
	float: left !important;
	margin-right: 0px !important;
}


}

@media only screen and (max-width: 767px) {


.map figure {
	width: 100% !important;
	float: none !important;
	display: block !important;
	margin-right: 0px !important;
}
  .btns {
		padding-bottom: 0;  
  }
  
  #rrr_form textarea {
/*		height: 300px !important; 	*/
  }

   #rrr_form {
 	padding-right: 0;
 }
  
}
@media only screen and (max-width: 479px) {

  #rrr_form textarea {
/*		height: 200px !important;  */
  }
}



select option[selected] { background-color: #E0F8FB; }

/* Osnovni stil za select element */
.styled-select {
    width: 100%; /* Širina select polja */
    height: 40px; /* Visina select polja */
    padding: 5px 10px; /* Unutrašnje margine */
    font-size: 16px; /* Veličina teksta */
    line-height: 1.3; /* Visina linije */
    border: 1px solid #ccc; /* Boja ivice */
    border-radius: 4px; /* Zakrivljenost ivica */
    background-color: #fff; /* Boja pozadine */
    color: #333; /* Boja teksta */
    -webkit-appearance: none; /* Uklanja osnovni stil browsera */
    -moz-appearance: none; /* Uklanja osnovni stil browsera */
    appearance: none; /* Uklanja osnovni stil browsera */
    cursor: pointer; /* Promena kursora pri prelasku */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat; /* Bez ponavljanja slike */
    background-position: right 10px center; /* Pozicija slike strelice */
    background-size: 24px; /* Veličina slike strelice */
}

/* Stil za opcije unutar select elementa */
.styled-select option {
    padding: 10px; /* Unutrašnje margine */
}

/* Stil za hover efekat */
.styled-select:hover {
    border-color: #888; /* Boja ivice pri prelasku */
}

/* Stil za fokus efekat */
.styled-select:focus {
    border-color: #555; /* Boja ivice pri fokusu */
    outline: none; /* Bez outline-a */
}



