* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: #bfa57c;
	color: #fff;
}

body {
	color: #a48d66;
	font: 14px/23px font-family: 'Raleway', sans-serif;
	padding-top: 70px;
	
}

h1, h2, h3, h4, b {
	font-weight: 300;
	font-family: 'Raleway', sans-serif;
}
h2 {
	font-size: 28px;
	padding-bottom: 60px;
}
b {
	font-weight: 500;
	font-size: 16px;
	color: #c3522f;
}

.banner {
	position: relative;
	width: 100%;
	overflow: auto;
	
	opacity: 0.8;
	filter: alpha(opacity=80);
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: rgba(255,255,255,.6);
	text-shadow: 0 0 1px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.3)
	background: #5b4d3d;
	box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.banner ul {
	list-style: none;
	width: 300%;
}
.banner ul li {
	display: block;
	float: left;
	width: 33%;
	padding: 160px 0 110px;
	min-height: 500px;
/*	-webkit-background-size: 100% 100%;*/
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	-ms-background-size: 100% 100%;
/*	background-size: 100% 100%;*/
	background-position: center center;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
	box-shadow: inset 0 -3px 6px rgba(0,0,0,.1);
}
.banner .dot {
	-webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}
.banner .dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
}
.banner .dots li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 4px;		
	text-indent: -999em;		
	border: 2px solid #fff;
	border-radius: 6px;		
	cursor: pointer;
	opacity: .4;		
	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
}
.banner .dots li.active {
	background: #fff;
	opacity: 1;
}
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
section.main {
	position: absolute;
	right: 200px;
	top: 100px;
	z-index: 999;
}
.form-2 {
    /* Size and position */
    width: 340px;
    margin: 40px auto 30px;
    padding: 15px;
    position: relative;

    /* Styles */
    background: #fffaf6;
    border-radius: 4px;
    color: #7e7975;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2),        
        0 0 0 12px rgba(255,255,255,0.4); 
}
.form-2 h3 {
    font-size: 15px;
    font-weight: bold;
    color: #bdb5aa;
    padding-bottom: 8px;
    border-bottom: 1px solid #EBE6E2;
    text-shadow: 0 2px 0 rgba(255,255,255,0.8);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.form-2 h3 .log-in {
    display: inline-block;
    text-transform: uppercase;
}
.form-2 h3 .log-in {
    color: #6c6763;
    padding-right: 2px;
}
.form-2 .float {
    width: 50%;
    float: left;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,1);
}
.form-2 .float:first-of-type {
    padding-right: 5px;
}
.form-2 .float:last-of-type {
    padding-left: 5px;
}
.form-2 label {
    display: block;
    padding: 0 0 5px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: 11px;
}
.form-2 label i {
    margin-right: 5px; /* Gap between icon and text */
    display: inline-block;
    width: 10px;
}
.form-2 input[type=text], .form-2 select {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 3px solid #ebe6e2;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.form-2 input[type=text]:hover, .form-2 select:hover {
    border-color: #CCC;
}
.form-2 select option {
	padding-left: 10px;
}
.form-2 label:hover ~ input {
    border-color: #CCC;
}
.form-2 input[type=text]:focus {
    border-color: #BBB;
    outline: none; /* Remove Chrome's outline */
}
.form-2 input[type=submit] {
    /* Size and position */
    width: 50%;
    height: 38px;
    float: left;
    position: relative;
	margin-top: 8px;
    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;
    /* Font styles */
	 font-family: "Lato",Calibri,Arial,sans-serif, FontAwesome;
    font-size: 16px;
    line-height: 20px; /* Same as height */
    text-align: center;
    font-weight: bold;
}
.form-2 input[type=submit] {
    margin-left: 25%;
    background: #fbd568; /* Fallback */
    background: -moz-linear-gradient(#fbd568, #ffb347);
    background: -ms-linear-gradient(#fbd568, #ffb347);
    background: -o-linear-gradient(#fbd568, #ffb347);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
    background: -webkit-linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    border: 1px solid #f4ab4c;
    color: #996319;
    text-shadow: 0 1px rgba(255,255,255,0.3);
}
.form-2 input[type=submit]:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}
.form-2 input[type=submit]:active {
    top: 1px;
}
/* Fallback fro broswers that don't support box shadows */
.no-boxshadow .form-2 input[type=submit]:hover {
    background: #ffb347;
}
.form-2 p:last-of-type {
    clear: both;    
}
header.top {
	height: 70px;
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	z-index: 9999;
}
.section2 {
    background: none repeat scroll 0% 0% #2B2E31;
    padding: 10px 0px;
	 color: #fff;
	 text-align: center;
}
.section2 h2 {
	font-size: 30px;
	padding: 15px;
	margin: 0;
	letter-spacing: 3px;
}
.about, .ukupno, .novi {
	text-align: center;
	padding-top: 30px;
}
.about h2, .ukupno h2, .novi h2 {
	font-family: 'Roboto', sans-serif !important;
	text-transform: uppercase;
	padding-bottom: 10px;
}
.about p {
    color: #696E74;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
	 line-height: 24px;
	 color: #696E74;
    padding: 20px 0px;
	 text-align: justify;
}
header hr {
    border: 0px none;
    height: 1px;
    margin: 10px auto;
    width: 120px;
    background: none repeat scroll 0% 0% #2B2E31;
}
.oglasite {
    background: none repeat scroll 0% 0% #F8F8F8;
    border-top: 1px solid #E5E4E4;
    border-bottom: 1px solid #E5E4E4;
	 position: relative;
	 text-align: center;
}
.oglasite:after, .oglasite:before { top: 100%; left: 50%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; }
.oglasite:after { border-color: rgba(248, 248, 248, 0); border-top-color: #F8F8F8; border-width: 35px; margin-left: -35px; } .oglasite:before { border-color: rgba(229, 228, 228, 0); border-top-color: #E5E4E4; border-width: 36px; margin-left: -36px; }
.oglasite h3 {
	margin: 0;
	padding: 30px;
	font-weight: bold;
}
.uslovi {
	background: url('../images/hs.jpg') no-repeat fixed center top / cover transparent;
    padding: 0px;
    color: #FFF !important;
	height: 300px;
	text-align: center;
}
.uslovi a, .uslovi a:hover {
	text-decoration: none;
	color: #fff;
}
.button.large {
    padding: 1.125rem 2.25rem 1.1875rem;
    font-size: 2.55rem;
	 text-transform: uppercase;
	 letter-spacing: 3px;
	 font-family: 'Roboto', sans-serif !important;
}
.button {
    background:rgba(0, 0, 0, 0);
	 border: 1px solid #ffffff;
		color: #ffffff;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		padding-top: 1.025rem;
		padding-right: 2.25rem;
		letter-spacing:0.85px;
		padding-bottom: 1.0875rem;
		padding-left: 2.25rem;
		font-size: 1.55rem;
		cursor: pointer;
		font-weight: normal;
		line-height: normal;
		margin: 120px 0 1.25rem;
		text-decoration: none;
		text-align: center;
		display: inline-block;
		-webkit-transition: background-color 300ms ease-out;
		-moz-transition: background-color 300ms ease-out;
		transition: background-color 300ms ease-out;
		-webkit-appearance: none;
		font-weight: normal !important;
}
.button:hover,
.button:active,
.button:focus{
		color: #ffffff;
		background-color: #222222;
		border-color: #ffffff;
	}
.novi {
	margin-bottom: 50px;
}
.ukupno {
	 background: none repeat scroll 0% 0% #F8F8F8;
    border-top: 1px solid #E5E4E4;
    border-bottom: 1px solid #E5E4E4;
	 position: relative;
	 font-size: 16px;	
	font-family: 'Open Sans', sans-serif;
	line-height:26px;
	padding-bottom: 50px;
}
.ukupno h3 {
	font-size:22px;
	line-height: 32px;
	font-weight: normal;	
	padding: 15px 0 5px 0;	
	margin: 0;	
	color: #080808;
}
.ukupno:after, .ukupno:before { bottom: 100%; left: 50%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; }
.ukupno:after { border-color: rgba(248, 248, 248, 0); border-bottom-color: #F8F8F8; border-width: 35px; margin-left: -35px; } .ukupno:before { border-color: rgba(229, 228, 228, 0); border-bottom-color: #E5E4E4; border-width: 36px; margin-left: -36px; }
.footer {
	background: none repeat scroll 0% 0% #2B2E31;
	padding: 10px 0px;
	text-align: left;
	 color: #696E74;
    font-family: 'Open Sans', sans-serif;
	 font-size: 12px;
}
.footer a:hover {
	color: #696E74;
	text-decoration: none;
}
/* Process --------------------------------------------- */

.service-process{
	background-image:url('../img/img-theme/service-bg.png');
	background-repeat:no-repeat;
	background-size:100% auto;
	background-position:center center;	
}
.service-process a{
	color: #5c5c5c;
}
.service-process a:hover{
	color: none;
}
@media(max-width:979px){
	.service-process{background-image:none}
}
.service-process .thumbnail-process,.service-process .thumbnail-process:hover{
	border:0 none;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none
}
.caption-head{
	height:200px;
	width:200px;	
	margin: 0 auto;
	background-color:#fff;
	border:6px solid #e6e6e6;
	-webkit-border-radius:500px;
	-moz-border-radius:500px;
	border-radius:500px;
	-webkit-transition:background-color .3s ease;
	-moz-transition:background-color .3s ease;
	-o-transition:background-color .3s ease;
	transition:background-color .3s ease
}
.caption-head .caption-icon{
	display:block;
	height:90px;
	margin-top:35px;	
}
.caption-head .caption-icon:hover,.caption-head .caption-title:hover{
	cursor:pointer
}
.caption-head:hover{
	cursor:pointer;
	-webkit-transition:background-color .3s ease;
	-moz-transition:background-color .3s ease;
	-o-transition:background-color .3s ease;
	transition:background-color .3s ease
}
.caption-head:hover>.caption-icon{
	color:#fff;
	-webkit-animation:slideFromBottom 300ms ease;
	-moz-animation:slideFromBottom 300ms ease;
	-o-animation:slideFromBottom 300ms ease;
	animation:slideFromBottom 300ms ease
}
.caption-head:hover>.caption-title{
	color:#fff;-webkit-animation:slideFromBottom 500ms ease;
	-moz-animation:slideFromBottom 500ms ease;
	-o-animation:slideFromBottom 500ms ease;
	animation:slideFromBottom 500ms ease
}
.icon-big{
	font-size:5em;
	line-height:1.1
}
@-webkit-keyframes slideFromBottom{
	from{
		-webkit-transform:translateY(150%) scale(0.5);
		opacity:0
}
to{
	-webkit-transform:translateY(0%) scale(1);
	opacity:1
 }
}
@-moz-keyframes slideFromBottom{
	from{
		-moz-transform:translateY(150%) scale(0.5);opacity:0
		}
		to{
			-moz-transform:translateY(0%) scale(1);
			opacity:1
			}
	}
	@-ms-keyframes slideFromBottom{
		from{
			-ms-transform:translateY(150%) scale(0.5);
			opacity:0
		}
		to{
			-ms-transform:translateY(0%) scale(1);
			opacity:1
		}
}

/* ---------------------------------------------------------------------- */
/*	0.5 Mobile Version 768px
/* ---------------------------------------------------------------------- */

@media handheld, only screen and (max-width: 1024px) {
.thumbnail-process{
	margin-bottom: 20px;
}
}

.caption-head:hover {
	background: #E1483F !important; 
	background-color: #E1483F !important; 
}


.effect-slide-bottom.in {
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
}
.boxes {
    padding: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    
	 border-top: 1px solid #F0F0F0;
	 border-bottom: 1px solid #F0F0F0;
	 border-left: 1px solid #F0F0F0;
	 border-right: 1px solid #F0F0F0;
    background: none repeat scroll 0% 0% #FFF;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.035);
}
.first {
    clear: both;
}
.boxes_img {
    position: relative;
}
.ImageWrapper {
    display: block;
    overflow: hidden;
    position: relative;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.ImageWrapper .ImageOverlayH {
    background: none repeat scroll 0px 0px rgba(0, 0, 0, 0.5);
    bottom: 0px;
    display: block;
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    transition: all 0.2s ease 0s;
    width: 100%;
	 color: #fff;
	 padding-top: 10px;
}
.ImageWrapper:hover .ImageOverlayH {opacity: 1;}
.boxes_img .box_type {
    background-color: transparent;
    color: #FFF;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
}
.boxes_img .box_type {
    min-width: 60px;
    text-align: center;
    bottom: 0px;
    padding: 1px 13px;
    z-index: 2;
    position: absolute;
}
.boxes .title {
    font-size: 15px;
    font-weight: bold;
    font-family: "Lato",Arial,Helvetica,sans-serif;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.boxes .title {
    text-transform: none !important;
}

.properties-filter {
    line-height: 36px;
    margin-bottom: 30px;
	 padding: 20px 0 0 0;
    text-align: center;
}
.properties-filter li {
    display: inline-block;
    margin: 0px 10px;
}
.properties-filter a {
    border: 2px solid transparent;
    color: #252525;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 11px;
}
.box_type.blue {
	background-color: #19B8DF;
}
.boxes.blue a {
	color: #19B8DF;
}
.blue a:hover {
	border-color: #19B8DF !important;
}
.properties-filter .active.blue a{
	border-color: #19B8DF;
}
.boxes.blue:hover {
	 border-top: 4px solid #19B8DF;
	 border-bottom: 4px solid #19B8DF;
	 border-left: 1px solid #19B8DF;
	 border-right: 1px solid #19B8DF;
}
.button.blue {
	 border: 1px solid #19B8DF;
	 color: #19B8DF;
	 margin-top: 30px;
	}
.button.blue:hover,
.button.blue:active,
.button.blue:focus{
	 color: #ffffff;
	 background-color: #19B8DF;
	 border-color: #19B8DF;
}

.box_type.red {
	background-color: #F6700E;
}
.boxes.red a {
	color: #F6700E;
}
.red a:hover {
	border-color: #F6700E !important;
}
.properties-filter .active.red a{
	border-color: #F6700E;
}
.boxes.red:hover {
	 border-top: 4px solid #F6700E;
	 border-bottom: 4px solid #F6700E;
	 border-left: 1px solid #F6700E;
	 border-right: 1px solid #F6700E;
}
.button.red {
	 border: 1px solid #F6700E;
	 color: #F6700E;
	 margin-top: 20px;
	}
.button.red:hover,
.button.red:active,
.button.red:focus{
	 color: #ffffff;
	 background-color: #F6700E;
	 border-color: #F6700E;
}

.box_type.green {
	background-color: #6C6E3A;
}
.boxes.green a {
	color: #6C6E3A;
}
.green a:hover {
	border-color: #6C6E3A !important;
}
.properties-filter .active.green a{
	border-color: #6C6E3A;
}
.boxes.green:hover {
	 border-top: 4px solid #6C6E3A;
	 border-bottom: 4px solid #6C6E3A;
	 border-left: 1px solid #6C6E3A;
	 border-right: 1px solid #6C6E3A;
}
.button.green {
	 border: 1px solid #6C6E3A;
	 color: #6C6E3A;
	 margin-top: 20px;
	}
.button.green:hover,
.button.green:active,
.button.green:focus{
	 color: #ffffff;
	 background-color: #6C6E3A;
	 border-color: #6C6E3A;
}

.box_type.orange {
	background-color: #F24141;
}
.boxes.orange a {
	color: #F24141;
}
.orange a:hover {
	border-color: #F24141 !important;
}
.properties-filter .active.orange a{
	border-color: #F24141;
}
.boxes.orange:hover {
	 border-top: 4px solid #F24141;
	 border-bottom: 4px solid #F24141;
	 border-left: 1px solid #F24141;
	 border-right: 1px solid #F24141;
}
.button.orange {
	 border: 1px solid #F24141;
	 color: #F24141;
	 margin-top: 20px;
	}
.button.orange:hover,
.button.orange:active,
.button.orange:focus{
	 color: #ffffff;
	 background-color: #F24141;
	 border-color: #F24141;
}

.hiddenn{
     opacity:0;
}
.visibled{
     opacity:1;
}

.opsti-uslovi h1, .opsti-uslovi h3 {
	font-family: 'Roboto', sans-serif !important;
}
.opsti-uslovi p {
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
}
.opsti-uslovi ul { padding-left: 15px !important; }

.company_headline {
    width: 100%;
    float: left;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 0px;
    margin-bottom: 9px;
}
.company_headline h3 {
    float: left;
	 font-family: 'Roboto', sans-serif !important;
    font-size: 18px;
    margin-bottom: 9px;
}
.contact_detail {
    margin-left: 0px;
}
.agent_detail {
    line-height: 22px;
    margin: 0px 0px 2px 0px;
    font-size: 13px;
}
.border-bottom {
	padding-bottom: 9px;
	margin-bottom: 9px;
	border-bottom: 1px solid #F0F0F0;
}
.agent_detail i {
    margin-right: 10px;
    min-width: 14px;
}
.agent_detail .fa-mobile {
    font-size: 18px;
}
.agent_detail .fa-envelope-o {
    font-size: 13px;
}
.kontakt {
	margin-bottom: 30px;
}
.kontakt p {
	font-family: 'Open Sans', sans-serif;
}
.kontakt h3 {
	font-family: 'Roboto', sans-serif !important;
}
.kontakt-info {
	color: #768082;
	padding-top: 10px;
}
.kontakt-info img {
	margin: 50px 0 0 0;
    position: relative;
    top: 100%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) 
}
.kontakt-info p {
	font-size: 13px;
}
#agent_contact_name, #agent_user_email, #agent_phone {
    width: 100%;
    float: left;
}
.kontforma input[type="text"], .kontforma input[type="email"] {
   padding: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
	 border-top: 1px solid #F0F0F0;
	 border-bottom: 1px solid #F0F0F0;
	 border-left: 1px solid #F0F0F0;
	 border-right: 1px solid #F0F0F0;
    background: none repeat scroll 0% 0% #FFF;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.035);
}
.kontforma input[type="text"]:focus, .kontforma input[type="text"]:hover, .kontforma input[type="email"]:focus, .kontforma input[type="email"]:hover {
	 border-top: 2px solid #19B8DF;
	 border-bottom: 2px solid #19B8DF;
	 border-left: 2px solid #19B8DF;
	 border-right: 2px solid #19B8DF;
}
.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1.42857;
    color: #768082;
    vertical-align: middle;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #F0F0F0;
    border-radius: 4px;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    margin-bottom: 13px;
}
.kontforma {
    padding: 0px 0px;
    border: 1px solid #fff;
}
textarea.form-control {
    height: 150px;
	 max-height: 150px;
	 padding: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    max-width: 100%;
	 min-width: 100%;
	 
	 border-top: 1px solid #F0F0F0;
	 border-bottom: 1px solid #F0F0F0;
	 border-left: 1px solid #F0F0F0;
	 border-right: 1px solid #F0F0F0;
    background: none repeat scroll 0% 0% #FFF;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.035);
}
textarea.form-control:focus, textarea.form-control:hover {
	 border-top: 2px solid #19B8DF;
	 border-bottom: 2px solid #19B8DF;
	 border-left: 2px solid #19B8DF;
	 border-right: 2px solid #19B8DF;
}
#agent_submit {
    color: #FFF;
    margin-bottom: 0px !important;
}
.agent_contanct_form input[type="submit"], .single-content input[type="submit"] {
    font-size: 14px !important;
    text-transform: uppercase;
    line-height: normal !important;
    border-radius: 3px !important;
    background-color: #3C90BE !important;
    border-bottom: 3px solid #347DA4 !important;
    color: #FFF;
    margin-bottom: 0px !important;
    padding: 9px 26px !important;
}
input[type=submit] {
    /* Size and position */
    width: 50%;
    height: 38px;
    float: left;
    position: relative;
	margin-top: 8px;
    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;
    /* Font styles */
	 font-family: "Lato",Calibri,Arial,sans-serif, FontAwesome;
    font-size: 16px;
    line-height: 20px; /* Same as height */
    text-align: center;
    font-weight: bold;
}
input[type=submit] {
    margin-left: 25%;
   background: #34a5cf; /* Fallback */
    background: -moz-linear-gradient(#34a5cf, #2a8ac4);
    background: -ms-linear-gradient(#34a5cf, #2a8ac4);
    background: -o-linear-gradient(#34a5cf, #2a8ac4);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#34a5cf), to(#2a8ac4));
    background: -webkit-linear-gradient(#34a5cf, #2a8ac4);
    background: linear-gradient(#34a5cf, #2a8ac4);
    border: 1px solid #2b8bc7;
    color: #996319;
    text-shadow: 0 1px rgba(255,255,255,0.3);
}
input[type=submit]:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}
input[type=submit]:active {
    top: 1px;
}
/* Fallback fro broswers that don't support box shadows */
.no-boxshadow input[type=submit]:hover {
    background: #ffb347;
}

.google-maps {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
}

.display {
	margin-top: 30px;
	margin-bottom: 30px;
}
a.btn-primary {
	color: #fff !important;
}
a.btn-primary:hover {
	border-color: #3071a9 !important;
}
.btn-primary {
	margin-left: 20px !important;
}
.btn-primary .fa {
	padding-left: 5px;
}
.list-item {
	transition: all 0.7s ease-in-out 0s;
}
.list-item img {
	width: 250px; height: 200px; float: left; margin-right: 10px;
}
.list-heading {
	padding-bottom: 20px !important;
	font-size: 24px;
	text-align: center;
}
.list-heading a {
	color: #000 !important;
	font-weight: 700;
}
.list-item p {
	padding-bottom: 0px;
	text-align: center;
}

.list-item p span {
	margin-right: 15px;
	font-size: 15px;
}
.list-item p span:last-child {
	margin-right: 0;
}
.list-price {
	float: right;
	color: #C3522F;
	font-weight: 700;
	font-size: 20px;
	padding-right: 20px;
	font-family: "Raleway",sans-serif;
}
.sidebar-pretraga {
	background: #f8f8f8;
	border: 1px solid #E5E4E4;
}
.sidebar-pretraga h3 {
	width: 100%;
	padding: 15px;
	margin-top: 0;
	text-align: center;
	background: #E5E4E4;
}
.form-3 {
	padding: 15px;
}
.form-3 .float {
    width: 50%;
    float: left;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,1);
}
.form-3 .float:first-of-type {
    padding-right: 5px;
}
.form-3 .float:last-of-type {
    padding-left: 5px;
}
.form-3 label {
    display: block;
    padding: 0 0 5px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: 11px;
}
.form-3 label i {
    margin-right: 5px; /* Gap between icon and text */
    display: inline-block;
    width: 10px;
}
.form-3 input[type=text], .form-3 select {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 3px solid #ebe6e2;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.form-3 input[type=text]:hover, .form-3 select:hover {
    border-color: #CCC;
}
.form-3 select option {
	padding-left: 10px;
}
.form-3 label:hover ~ input {
    border-color: #CCC;
}
.form-3 input[type=text]:focus {
    border-color: #BBB;
    outline: none; /* Remove Chrome's outline */
}
.form-3 input[type=submit] {
    /* Size and position */
    width: 50%;
    height: 38px;
    float: left;
    position: relative;
	margin-top: 8px;
    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;
    /* Font styles */
	 font-family: "Lato",Calibri,Arial,sans-serif, FontAwesome;
    font-size: 16px;
    line-height: 20px; /* Same as height */
    text-align: center;
    font-weight: bold;
}
.form-3 input[type=submit] {
    margin-left: 25%;
    background: #fbd568; /* Fallback */
    background: -moz-linear-gradient(#fbd568, #ffb347);
    background: -ms-linear-gradient(#fbd568, #ffb347);
    background: -o-linear-gradient(#fbd568, #ffb347);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
    background: -webkit-linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    border: 1px solid #f4ab4c;
    color: #996319;
    text-shadow: 0 1px rgba(255,255,255,0.3);
	 text-transform: uppercase;
}
.form-3 input[type=submit]:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}
.form-3 input[type=submit]:active {
    top: 1px;
}
.fixed {
    position: fixed;
    top: 100px;
    z-index: 1;
	 width: 26%;
}
.form-3 .price-range, .form-2 .price-range {
	border:0 !important; color:#f6931f; font-weight:bold; text-align: center !important;
}
.form-3 .price-range { background: #f8f8f8; }
.form-2 .price-range { background: #fffaf6; }
.display .btn-stan {
	color: #19B8DF; position: absolute; right: 30px; top: 14px; border: 2px solid #19B8DF; font-size: 20px;
}
.display .btn-stan:hover {
	background: #19B8DF;
	color: #fff !important;
}
.display .btn-kuca {
	color: #F6700E; position: absolute; right: 30px; top: 14px; border: 2px solid #F6700E; font-size: 20px;
}
.display .btn-kuca:hover {
	background: #F6700E;
	color: #fff !important;
}
.display .btn-lokal {
	color: #F24141; position: absolute; right: 30px; top: 14px; border: 2px solid #F24141; font-size: 20px;
}
.display .btn-lokal:hover {
	background: #F24141;
	color: #fff !important;
}
.display .oglasite {
	z-index: 9998;
}
.display .oglasite h2 {
	padding-bottom: 10px;
}
.item-detalji .oglasite {
	margin-top: 20px;
}
.detalj-stan {
	border-bottom: 2px solid #19B8DF;
}
.detalj-kuca {
	border-bottom: 2px solid #F6700E;
}
.detalj-lokal {
	border-bottom: 2px solid #F24141;
}
.item-detalji ul {
	list-style-type: none;
	padding: 20px 0 15px 0;
}
.gallery li img {
	width: 100%;
}
.pretragapg h2 { padding-bottom: 0; }