* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  min-height: 100%;
}

body {
  line-height: 1.6;
  background-color: #F7F7F7;
  padding: 0 0 0 0; /* padding-top = height of the header */
}

body, input, select, button {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  color: #555;
}

.main
{
    background-image: url("../../assets/img/bg/light-sharp-edges.png");
  background-repeat: repeat;
  }

 
/*-------------------------------------*/
/* GLOBAL STYLES */

a {
  color: #9c1111;
  text-decoration: none;
  transition: all 0.2s linear;
}

a:hover, a:focus {
  opacity: 0.8;
  transition: all 0.2s ease-in;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

sub, sup {
  font-size: 65%;
  position: relative;
  line-height: 0;
}

sup {
  top: -8px;
}

sub {
  bottom: -8px;
}

p {
  margin: 0 0 15px 0;
}

h6 {
  font-size: 110%;
}

h5 {
  font-size: 120%;
}

h4 {
  font-size: 130%;
}

h3 {
  font-size: 140%;
}

h2 {
  font-size: 160%;
}

h1 {
  font-size: 180%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", serif;
  padding: 0 0 15px 0;
}

ol, ul  {
  padding-left:20px;
  list-style-position: inside;
}

ol {
  list-style-type: decimal;
}

ul {
  list-style-type: none;
}

img, video, svg {
  /*max-width: 100%;*/
  height: auto;
}

input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

input[type="submit"]:focus {
  outline: 0;
}

input[type="submit"], button {
  cursor: pointer;
}

textarea {
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

th, td {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 7px;
  text-align: left;
}

th {
  /*font-weight: 700;*/
  vertical-align: top;
}


/*-------------------------------------*/
/* HELPERS */


/* Helpers: Floats and Clearing */

.clearfix:after {
  content: "";
  display: table;
  clear: both; 
}

.clear {
  clear: both;
} 

.float-left {
  float: left;
}

.float-right {
  float: right;
}


/* Helpers: Fonts */

.uppercase
{
  text-transform: uppercase;
}

.heading-primary {
  font-size: 220%;
  font-weight: 300;
  font-family: inherit;
  text-align: center;
  padding: 30px 0;
  color: #444;
}

.heading-primary-light
{
  color: #bbb;
}

.naslov-glavni {
  font-size: 220%;
  font-weight: 300;
  font-family: inherit;
  text-align: center;
  padding: 40px 0;
  text-transform: uppercase;
}

.heading-secondary {
  font-size: 130%;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 0;  
}

.sub-heading {
  font-style: italic;
  text-align: center;
  padding: 0 0 20px 0;
}

.ul-base {
  padding: 0;
  list-style-type: none;
}

.font-small {
  font-size: 90%; 
}

.font-smaller {
  font-size: 80%; 
}

.font-smallest {
  font-size: 70%; 
}

.font-large {
  font-size: 110%; 
}

.font-larger {
  font-size: 120%; 
}

.font-largest {
  font-size: 130%; 
}


/* Helpers: Centering */

.center {
  text-align: center;
}

.center-element {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.vertical-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dead-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}


/* Helpers: Tables */

.table {
  width: 100%;
}

.table th {
  text-transform: uppercase;
}

.table td, .table th {
  border: 1px solid rgba(0,0,0,0.2);
}

.table-responsive
{
  width: 100%; 
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

/* Helpers: Tables Reponsive */

@media only screen and (max-width: 899px) {
  .table-responsive, .table-responsive thead, .table-responsive tbody, .table-responsive tr, .table-responsive td, .table-responsive th {
    display: block;
  }

  .table-responsive thead {
    display: none;
  }

  .table-responsive tr {
    margin: 0 0 10px 0;
  }
}


/* Helpers: Forms */

.field-block {
  padding: 10px 0;
}

.label {
  font-weight: 300;
  text-align: center;
  padding: 0 0 10px 0;
  display: block;
  position: relative;
}

.label-required:after {
  content: "*";
  color: #CF5658;
  margin: 0 0 0 5px;
  font-size: 30px;
  line-height: 0;
  position: relative;
  top: 12px
}

.input-text {
  display: block;
  /*width: 100%;*/
  padding: 10px;
  background-color: white;
  border: 1px solid #bbb;
  transition: all 0.2s linear;
  margin: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.input-text, form .button {
  /*min-height: 46px;  */
}

.input-text:focus {
  border: 1px solid #9D67AD;
  outline: 0;
  transition: all 0.2s ease-in;
}

.input-text.input-error {
  border: 1px solid #CF5658;
}

textarea.input-text {
  min-height: 150px;
}

/* Helpers: Buttons */

.button
{
    color: #fff;
    font-weight: 300;
    background-color: #a72e4e;
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s linear;
    margin: 5px; /* top margin je za telefone, da je lepi razmik med njima */
    height: 49px;
}

a.button {
  color: #fff;
}

.button:hover, .button:focus
{
    background-color: #e66184;
    transition: all 0.2s ease-in;
    opacity: 1;
}

.button-hollow {
  color: #B70F0F;
  background-color: transparent; 
  border: 1px solid; 
}

a.button-hollow {
  color: #B70F0F;
}

a.button-hollow:hover, a.button-hollow:focus {
  color: #fff;
}

.ikona
{
  padding-right: 10px;
}


/* Helpers: Icons */

.icon-left {
  margin: 0 10px 0 0;
}

.icon-right {
  margin: 0 0 0 10px;
}

.icon-round-wrap {
  font-size: 16px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
}


/* Helpers: Social Media Brand Colors */

.color-twitter {
  color: #55acee;
}

.color-facebook {
  color: #3b5998;
}

.color-google {
  color: #dd4b39;  
}

.color-skype {
  color: #00aff0;  
}

/* Helpers: Overlay */

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

/* Helpers: Full-width backgrounds (in the overview section) */

.background-block {
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
  margin: 0;
}

.background-block-content {
  color: #fff;
  position: relative;
  z-index: 1;
}

.background-block-content a {
  color: #fff;
  border-bottom: 1px solid;
}


/* Helpers: Lightbox Overrides */

.popup-sendtoafriend {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  width: auto;
  max-width: 350px;
  margin: 20px auto;
}
 

/*-------------------------------------*/
/* GRID */

.grid-parent {
  margin-left: -15px;
  margin-right: -15px; 
}

.grid-parent:after {
  content: "";
  display: table;
  clear: both;  
}

.grid-child {
  padding-left: 15px;
  padding-right: 15px;   
}

.logo-block.grid-child /* da imamo gumb za izbiro jezika lepo poravnan z logotipom */
{
  float: left;
}


/*-------------------------------------*/
/* CONTAINERS */

.container-full, .container-main, .container-mid, .container-sm, .container-xs, .container-xxs, .container-galerija {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-full {
  max-width: 100%;
}

.container-main {
  max-width: 1200px;
}

.container-galerija {
    max-width: 960px;
}

.container-mid {
  max-width: 900px;
}

.container-sm {
  max-width: 700px;
}

.container-xs {
  max-width: 600px;
}

.container-xxs
{
    max-width: 400px;
}


/*------ COUNTRY PAGE -------------*/
.country-main
{
  margin-bottom: 0px;
  height: auto;
}


/* Country Page responsive */
@media only screen and (min-width: 550px) {
  .country-main
  {
    height: 100%;
  }
}


@media only screen and (min-width: 600px) {
  .country-main
  {
    margin-bottom: -110px;
  }
}

@media only screen and (min-width: 700px) {
  .country-main
  {
    margin-bottom: -70px;
  }
}

/*-------------------------------------*/
/* LAYOUT: HEADER */

.header {
  color: #fff;
  background-color: #25468A;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  height: 46px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
}

.header a {
  color: inherit;
}

/* Header: Logo */

.logo {
  font-family: "Roboto", cursive;
  font-size: 28px;
  display: block;
  min-width: 120px;
  font-weight: 500;
  font-style: italic;
  padding-left: 70px;
}

/* Header: Navigation */

.nav-trigger {
  font-size: 22px;
  /*position: fixed;
  right: 20px;
  top: 55px;*/
  padding: 10px;
  color: white;
  margin-top: 10px;
}

.nav-block {
  font-weight: 300;
  font-size: 80%;
  text-transform: uppercase;
  text-align: right;
  background-color: #444;
  position: fixed;
  right: -200px;
  top: 78px;
  bottom: 0;
  height: 100%;
  width: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 0 46px 0; /* bottom padding = height of the header */
  box-shadow: -2px 0 3px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transition: all 0.2s linear;
}

.nav-block-open {
  visibility: visible;
  right: 0;
  transition: all 0.2s linear;
}

.nav-block .button {
  border: none;
}

.nav li a {
  padding: 12px 10px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav li:last-of-type a {  /* no line after last element (language) */
  border-bottom: none;
}

.nav li a.active {
  font-weight: 300;
}

.nav-text
{
    padding: 0 0 0 5px;
}

/* Header: Language button */

.langSel
{
  display: none;
  transition: all 0.2s linear;
  right: -200px;
}

.langSelVisible
{
  visibility: visible;
  transition: all 0.2s ease-in;
}

.lang-block {
  font-weight: 300;
  font-size: 80%;
  text-transform: uppercase;
  background-color: #444;
  position: fixed;
  right: 400px;
  top: 47px;
  bottom: 0;
  height: 230px;
  width: 120px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0 0 46px 0;
  box-shadow: -2px 0 3px rgba(0, 0, 0, 0.2);
  visibility: visible;
  transition: all 0.2s linear;
}

li.nav-language-selected
{
  display: none;
}

.nav-language-selected
{
  display: none;
}

.nav-about
{
  margin-left: 0px;
}

.nav-language-menu {

  margin-top: 2px;
  padding: 0;
  min-width: 100px;
  position: absolute;
  list-style-type: none;
  background-color: #444;

}

.nav-language-trigger {

  display: inline-block;
  color: white;
  text-align: center;
  padding: 10px;
  text-decoration: none;
}

li.nav-language {
  display: inline-block;
}

.nav-language-content {
  display: none;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.nav-language-content-open
{
  display: block;
}

.nav-language-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.nav-language
{
  border: none;
}

.menu-link
{
    color: white;
    padding: 20px;
    display: block;
}

/* Header Responsive */

@media only screen and (min-width: 800px) {

    .nav-text
    {
        display: none;
    }

  .nav-trigger {
    display: none;
  }

    .menu-link
    {
        padding-left: 20px;
        padding-top: 3px;
        display: inline-block;
    }

  .logo-block {
    float: left;
  }

  .nav-block {
    float: right;
    text-align: left;
    background-color: transparent;
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    width: auto;
    overflow-x: static;
    overflow-y: static;
    padding: 0;
    box-shadow: none;
    visibility: visible;
  }

  .langSel
  {
    display: none;
  }

  .nav li, .nav li a {
    display: inline-block;
    vertical-align: top;
  }

  li.nav-language-selected /* to hide selected language */
  {
    display: none;
  }

  .nav li a {
    border-bottom: none;
  }

  .nav-language
  {
    border-left: 1px solid rgba(255,255,255,0.3);
  }

  .nav-about
  {
    margin-left: 20px; 
    border-left: 1px solid rgba(255,255,255,0.3);
  }
}

/**
 * Simple fade transition, for MagnificPopup (Maps, Audio, Video etc.)
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}



/* GALERIJA */

.my-gallery {
  width: 100%;
  display: inline-block;
}
.my-gallery img {
  width: 100%;
  height: auto;
}
.my-gallery figure {
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  width: 45%;
}
.my-gallery figcaption {
  display: none;
}

.footer
{
    width: auto;
    font-size: 11px;
    padding: 9px 21px 10px 0;
    color: black;
    background-color: #bbb; 
}



.form-join-block {
  background-image: url("../../assets/img/bg/light-sharp-edges.png");
  background-repeat: repeat;
  padding: 10px 0 30px;
}

@media only screen and (min-width: 600px) {
  .form-join-each {
    /*width: 33.33%;*/
    display: inline-block;
  }
}


.dokumentacija-each
{
  display: inline-block;
  padding: 0 10px;
}

.dokumentacija-each-info
{
  display: block; 
  vertical-align: top; 
  padding-left: 10px;
}


.informacije-background
{
  background-image: url("../../assets/img/bg/light-sharp-edges.png");
  background-repeat: repeat;
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}

.informacije-block {
    vertical-align: top;
    display: inline-block;
    padding: 0px 0px 40px 0px;
    /*border-right: 1px solid rgba(0,0,0,0.2);*/
}

.kontakt-block
{
}

.kontakt-each
{
  vertical-align: top;
}

.kontakt-image
{
  
}

.kontakt-info
{
  padding: 0px 5px 5px 5px;
  float: left;
}

.kontakt-info-each
{
  display: block;
  padding: 0 0 0 5px;
  text-align: left;
}

@media only screen and (min-width: 600px) {
    .kontakt-image
    {
      float: left;
    }

    .informacije-block
    {
      border-right: 1px solid rgba(0,0,0,0.1);
    }


}



.map-google-embed iframe {
    width: 100%;
    display: block;
}


/* SECTION REAL ESTATE FILTER MAIN PAGE */

.form-filter
{
  background-color: white;
}

.form-filter-block {
  background-image: url("../../assets/img/bg/light-sharp-edges.png");
  background-repeat: repeat;
  padding: 10px 0 30px;
}

@media only screen and (min-width: 600px) {
  .form-filter-each {
    /*width: 33.33%;*/
    display: inline-block;
  }
}



/* SECTION REAL ESTATE LIST */

.list-background
{
  background-image: url("../../assets/img/bg/light-sharp-edges.png");
  background-repeat: repeat;
      padding-top: 80px;
    padding-bottom: 40px;
    text-align: center;
    /*background-color: #D8E8FF;*/
}

.list-heading-primary
{
  color: #444;
}

.list-block {
    vertical-align: top;
    display: inline-block;
    /*padding: 0px 30px 30px 30px;*/
    padding: 0px 0px 30px 0px;
    width: 100%;
    /*border-right: 1px solid rgba(0,0,0,0.2);*/
}

.list-each {
  margin: 0 0 40px 0;
}

.list-each-link {
  color: inherit;
  display: block;
  position: relative;
}

.list-img-block {
  overflow: hidden;
}

.list-img-block:hover .list-each-img {
  -webkit-transform: scaleX(1.1) scaleY(1.1);
  transform: scaleX(1.1) scaleY(1.1);
  transition: all 0.2s ease-in;
}

.list-each-img {
  transition: all 0.2s linear;
  display: block;
  /*width: 100%;*/
  width: 400px;
  height: 400px;
}

.list-each-info {
  padding: 10px 0 0 0;
  background-color: white;
  border: 1px solid rgba(0,0,0,0.2);
  margin: -1px;
}

.list-info-title {
  /*font-weight: 300;*/
  text-transform: uppercase;
  color: #9c1111;
  height: 1.5em;
  line-height: 1.5em;
  overflow: hidden;
}

.list-info-title-first
{
    height: 3em;
}

@media only screen and (min-width: 600px)
{
    .list-info-title-first
    {
        padding-bottom: 27px;
    }
}

.list-info-distance {
  /*font-size: 80%;
  float: right;
  width: 100%;*/
  padding: 5px;
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: 1px solid #d5d9dd
}

.list-info-price
{
    background-color: #27ae60;
    color: white;
    margin: 0 0 10px 0;
    text-align: center;
    line-height: 1.5em;
    overflow: hidden;
}

@media only screen and (min-width: 600px) {
  .list-each {
    width: 49%;
    display: inline-block;
    vertical-align: top;

  }
}

@media only screen and (min-width: 900px) {
  .list-each {
    width: 33%;
  }
}

.list-info-noborder
{
    border: none;
}



/* == FOOTER == */
.footer-each
{
  text-align: left;
  vertical-align: top;
  padding: 10px 5px;
  height: 100%;
  display: inline-block;
  max-width: 160px;
}

.wrapper 
{
    text-align: left;
}

/* Footer responsive */

@media only screen and (min-width: 600px) {

  .wrapper
  {
    text-align: center;
  }
  
  .footer-each 
  {
    display: inline-block;
    border-right: 1px solid rgba(0,0,0,0.2);
    max-width: none;
  }

  .noborder
  {
    border-right: none;
  }

}


/* == END FOOTER === */


/* REALESTATE BASIC INFORMATION */

.realestate-heading-primary
{
  /*font-size: 220%;*/
  font-weight: 300;
  font-family: inherit;
  text-align: left;
  padding: 40px 0 0 0;
  color: #444;
  font-size: 2.1875em;
  padding: 30px;
  background: #f9f9f9;
}

.realestate-heading-secondary
{
    font-size: 130%;
    text-align: center;
    text-transform: uppercase;
    /*padding: 0px 0 5px 0;*/
    padding: 10px 30px;
    color: white;
    /*background: #27ae60;*/
    background: #a72e4e;
}


.realestate-block
{
  text-align: center;
   padding: 20px 0 40px;
}

.realestate-data
{
  display: block; 
  width: 100%; 
  vertical-align: top; 
  height: 100%; 
  padding: 0px; 
  margin: 0;
}

.realestate-description
{
   text-align: left; 
   margin-top: 10px;
}

.realestate-gallery
{
   margin-left: 10px;
}

.realestate-controls
{
    padding: 20px 0;
}




/* REAL ESTATE RESPONSIVE */

@media only screen and (min-width: 900px) {

  .realestate-data 
  {
      display: inline-block; 
      width: 45%; 
  }

}



/* EDITOR */

.editor
{
}

.editor-link
{   
    color: #444;
    padding: 10px;
    display: block;
}

.editor-item
{
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.2);
    /*padding: 10px;*/
    width: 200px;
    margin-top: 10px;
}

.editor-item-selected
{
    color: red;
}

.item-default
{
    background-color: #55acee;
}

/*.white-popup {
  position: relative;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}*/

/*.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close{
    color: white;
    opacity: 1;
}
.mfp-image-holder .mfp-close:hover, .mfp-iframe-holder .mfp-close:hover{
    color: white;
    border-color: white;
}*/


.mfp-close-btn-in .mfp-close
{
    color: black;
}

.komunala
{
    margin-top: 10px;
}

.komunala-each
{
    display: inline-block;
    color: #bbb;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    width: 120px;
    top: 100%;
    left: 50%; 
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
    text-transform: uppercase;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.vodovod-active
{
    color: #0093FF;
}

.elektrika-active
{
    color: #F32B2B;
}

.plin-active
{
    color: orange;
}

.telefon-active
{
    color: blue;
}

.kanalizacija-active
{
    color: #5AA708;
}

.cesta-active
{
    color: black;
}

/* validacija */
#podatki label.error {
color:red;
}
#podatki input.error {
border:1px solid red;
}
#podatki select.error {
border:1px solid red;
}

#podatki input.valid {
border:1px solid green;
}
#podatki select.valid {
border:1px solid green;
}



/* OVERLAYS */
.overlay-datum
{
background-color: #25468a;
    color: white;
    position: absolute;
    z-index: 10;
    overflow: hidden;
    font-size: smaller;
    bottom: 0px;
    right: 0;
    padding: 0px 10px;
}



.overlay-novo
{
    background-color: #25468a;
    color: white;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 10;
    left: -40px;
    top: 15px;
    padding: 0 50px;
    overflow: hidden;
    font-size: 100%;
}

.overlay-izpostavljeno
{
    background-color: #fa6334;
    color: white;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 10;
    left: -50px;
    top: 30px;
    padding: 0 50px;
    overflow: hidden;
    font-size: 100%;
}

.overlay-znizano
{
    background-color: green;
    color: white;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 10;
    left: -50px;
    top: 15px;
    padding: 0 50px;
    overflow: hidden;
    font-size: 100%;
}

.overlay-znizano-2
{
    background-color: green;
    color: white;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 10;
    left: -52px;
    top: 33px;
    padding: 0 70px;
    overflow: hidden;
    font-size: 100%;
}

.overlay-znizano-3
{
    background-color: green;
    color: white;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 10;
    left: -61px;
    top: 50px;
    padding: 0 100px;
    overflow: hidden;
    font-size: 100%;
}

.expired
{
    color: red;
    text-transform: uppercase;
    font-size: 200%;
}

.hidden
{
    /*visibility: hidden;*/
    display: none;
}

.realestate-contact
{
    text-align: left;
}

.realestate-contact-each
{
}

.realestate-contact-message
{
    padding-top: 20px;
}

.realestate-contact-photo
{
    float: left;
}


.form-style-1 {
     margin: 19px 0 10px 0;
     /*max-width: 400px;*/
     /*font: 13px "Lucida Sans Unicode", "Lucida Grande", sans-serif;*/
     text-align: left; 
     padding: 0;
}
.form-style-1 li {
     padding: 0;
     display: block;
     list-style: none;
     margin: 10px 0 0 0;
}
.form-style-1 label{
     margin:0 0 3px 0;
     padding:0px;
     display:block;
     font-family: Roboto;
     font-size: 14px;
     /*font-weight: bold;*/
}
.form-style-1 input[type=text], 
.form-style-1 input[type=date],
.form-style-1 input[type=datetime],
.form-style-1 input[type=number],
.form-style-1 input[type=search],
.form-style-1 input[type=time],
.form-style-1 input[type=url],
.form-style-1 input[type=email],
 textarea, 
 select{
     box-sizing: border-box;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     border:1px solid #BEBEBE;
     padding: 7px;
     margin:0px;
     -webkit-transition: all 0.30s ease-in-out;
     -moz-transition: all 0.30s ease-in-out;
     -ms-transition: all 0.30s ease-in-out;
     -o-transition: all 0.30s ease-in-out;
     outline: none;  
}
.form-style-1 input[type=text]:focus, 
.form-style-1 input[type=date]:focus,
.form-style-1 input[type=datetime]:focus,
.form-style-1 input[type=number]:focus,
.form-style-1 input[type=search]:focus,
.form-style-1 input[type=time]:focus,
.form-style-1 input[type=url]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 textarea:focus, 
.form-style-1 select:focus{
    /* -moz-box-shadow: 0 0 8px #25468a;
     -webkit-box-shadow: 0 0 8px #25468a;
     box-shadow: 0 0 8px #25468a;*/
     border: 1px solid #25468a;
}
.form-style-1 .field-divided{
     width: 49%;
}

.form-style-1 .field-long{
     width: 100%;
}
.form-style-1 .field-select{
     width: 100%;
}
.form-style-1 .field-textarea{
     height: 100px;
}
.form-style-1 input[type=submit], .form-style-1 input[type=button]{
     background: #4B99AD;
     padding: 8px 15px 8px 15px;
     border: none;
     color: #fff;
}
.form-style-1 input[type=submit]:hover, .form-style-1 input[type=button]:hover{
     background: #4691A4;
     box-shadow:none;
     -moz-box-shadow:none;
     -webkit-box-shadow:none;
}
.form-style-1 .required{
     color:red;
}

.search
{
    width: 160px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('search.png');
    background-position: 6px 6px;
    background-repeat: no-repeat;
    padding: 6px 20px 6px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    margin-top: 4px;
}

.back-to-top {
    background: none;
    margin: 0;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    display: none;
    text-decoration: none;
    color: #ffffff;
    background-color: #25468A;
    padding: 5px 5px 2px 5px;
}



    .back-to-top i
    {
        font-size: 30px;
    }


.gumb
{
    background-color: #29333d;
    border-radius: 3px;
    border: none;
    color: white;
    padding: 8px 10px;
    font-family: Lato;
    font-weight: 300;
}

.button-each
{
    display: inline-block; 
    margin-top: 20px;
}

.buttons
{
    margin-bottom: 0px;
    margin-left: 10px;
}

.buttons-left
{
    text-align: left; 
    float: left;
}

.buttons-right
{
    text-align: left; 
    float: right; 
    padding-right: 30px;
}

.realestate-info
{
    border: 1px solid #d5d9dd;
    border-radius: 3px;
    margin-top: 80px;
    padding-left: 0px;
    padding-right: 0px;
    background: #f9f9f9;
}

.navigation-middle
{
    background: #29333d;
    border-bottom: 1px solid #3b4d5d;
    padding: 10px 10px;
}

.navigation-middle-list
{
    text-align: left;
    padding-left: 0px;
}

.navigation-middle-each
{
    color: white;
    display: inline-block;
    padding: 0px 20px;
}

.navigation-middle-each a
{
    color: white;
}

.realestate-bottom-header
{
    border-bottom: 1px solid #d5d9dd;
    text-align: left;
    margin-top: 0px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.realestate-contact
{
    background: #efefef;
    padding: 30px;
    border-top: 1px solid #d5d9dd;
}

.realestate-contact-left
{
    width: 100%;
    float: left;
    margin-right: 40px;
}

.realestate-contact-right
{
    width: 100%;
    float: left;
    margin-top: 30px;
}

.realestate-information
{
    padding: 30px;
    font-family: Roboto;
    font-size: 14px;
    text-align: left;
    color: #555;
}


@media only screen and (min-width: 750px)
{
    .realestate-contact-left
    {
        width: 32%;
    }
    .realestate-contact-right
    {
        width: 60%;
        margin-top: 0px;
    }
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
.main{padding: 0;}
}

.rokZaPrijavo
{
    font-size: small;
    color: red;
}


.reinfo
{
    list-style: none;
    margin-left: 0;
    border-bottom: 1px solid #d5d9dd;
    padding: 30px;
    font-size: 14px;
}

.propinfo
{
    border-bottom: 1px solid #d5d9dd;
    padding: 4px;

}

.propinfo span
{
}

.left
{
    float: left;
}

.right
{
    float: right;
}

.propinfo:after
{
    display: block;
    clear: both;
    visibility: hidden;
    content: "";
    height: 0;
}

.fb_iframe_widget span
{
    vertical-align: middle !important;
}

#twitter-widget-0
{
    vertical-align: middle !important;
}

.IN-widget
{
    vertical-align: middle !important;
}

.editlist-top
{
    vertical-align: top;
}

.language-link
{
    height: 24px;
    padding-top: 5px;
    padding-bottom: 0px;
}

.active-language
{
    border-bottom: 1px solid white;
}

.menu-flag
{
    height: 24px;
}


/* NOVI HEADER */
.upper-navigation {
    float: left;
    width: 100%;
    max-height: 35px;
    overflow: hidden;
}

@media screen and (max-width: 1272px)
{
    #page, .container
    {
        max-width: 96%;
    }
}

#page, .container {
    max-width: 1200px;
    min-width: 240px;
}
#page, .container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}


header .breadcrumb {
    max-width: 86%;
    clear: none;
    float: left;
    padding-bottom: 0;
    border-bottom: none;
}

.breadcrumb {
    clear: both;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 4px;
    margin-bottom: 20px;
}

header .breadcrumb > div:first-child {
    padding-left: 13px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb > div:first-child {
    padding-left: 0;
}

header .breadcrumb > div {
    padding: 7px 13px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 9px;
    font-weight: normal;
}

.breadcrumb > div {
    padding: 0 10px;
    overflow: hidden;
    float: left;
    display: inline-block;
    font-size: 13px;
    color: #a1a1a1;
    font-weight: 700;
}

header .breadcrumb .breaking {
    border-left: none;
}

.header-social {
    float: right;
}

.header-social a {
    float: none;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 39px;
    text-align: center;
    color: #a1a1a1;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-left: -3px;
    transition: all 0.25s ease;
}

#header, #primary-navigation .navigation.mobile-menu-wrapper {
    background-color: #aa1801;
    background-image: url(https://democdn2.mythemeshop.com/interactive/wp-content/themes/mts_interactive/images/nobg.png);
}

#header
{
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    background: #a72e4e;
}

#header {
    z-index: 1;
}

.logo-wrap {
    float: left;
    margin-top: 22px;
    margin-bottom: 23px;
    margin-right: 30px;
}

.widget.widget_search {
    overflow: visible;
}

header .widget_search {
    float: left;
    clear: none;
    width: auto;
    margin: 20px 0 17px;
}

.widget {
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 29px;
}

#header #searchform {
    min-width: 225px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(0, 0, 0, 0.3);
}

#searchform {
    float: left;
    clear: both;
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

#searchform fieldset {
    float: left;
    width: 100%;
}

#s {
    width: 90%;
    float: right;
    text-indent: 0px;
    color: #fff;
    border: none;
    box-sizing: border-box;
    height: 35px;
    border-radius: 20px;
    background: none;
    padding: 8px 12px;
    font-size: 14px;
    font-family: inherit;
}

.sbutton, #searchsubmit {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.25s linear;
    background: transparent;
    z-index: 10;
    position: absolute;
    border: 0;
    left: 0;
    margin: 0;
}

.header-social a:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #d5d9dd;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #d5d9dd;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #d5d9dd;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #d5d9dd;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:   #d5d9dd;
}

#site-header #searchform .fa-search {
    color: #fff;
    left: 14px;
    top: 11px;
}

:focus { outline: 0 }

input:focus, textarea:focus {

}

#searchform .fa-search {
    font-size: 13px;
    top: 10px;
    color: #a1a1a1;
    position: absolute;
    left: 10px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sitetitle
{
    color: white;
    font-size: 100%;
    display: inline-block;
    line-height: 34px;
    vertical-align: top;
    padding-left: 5px;
    font-size: 130%;
    text-transform: uppercase;
}


@media screen and (max-width: 865px)
{
    #page, .container
    {
        max-width: 96%;
    }
}
@media screen and (max-width: 1272px)
{
    #page, .container
    {
        max-width: 96%;
    }

    .qr-mid
    {
        max-width: 95%;
    }
}

@media screen and (max-width: 700px)
{
    .sitetitle
    {
        font-size: 80%;
    }
    header .widget_search
    {
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
    }

    #header
    {
        margin-bottom: 20px;
    }
}



.dataTables_filter
{
    margin-bottom: 20px;
    }

.flexslider2 .slides > li
{
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider-container, .flexslider2 .slides, #galerija .flex-viewport
{
    height: 100%;
}

.flexslider2
{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: 0px solid;
    overflow: hidden;
    margin-bottom: 60px;
}

    .flexslider2 .slides img
    {
        width: auto;
        height: 100%;
        display: block;
    }

.flex-direction-nav .flex-prev
{
    left: 0;
}

.flex-direction-nav .flex-next
{
    right: 0;
}

.flexslider2 .flex-direction-nav a,
.flexslider2c .flex-direction-nav a
{
    color: white;
}

    .flexslider2 .flex-direction-nav a:before,
    .flexslider2c .flex-direction-nav a:before
    {
        color: white;
    }

#carousel li
{
    margin-right: 5px;
}

#carousel img
{
    display: block;
    opacity: .8;
    cursor: pointer;
}

    #carousel img:hover
    {
        opacity: 1;
    }

#carousel .flex-active-slide img
{
    opacity: 1;
    cursor: default;
    border: 1px solid white;
}

.flexslider2c .flex-viewport
{
    max-height: 130px;
    }


.flex-direction-nav a
{
    height: 48px;
    }

div.gallery
{
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 300px;
}

    div.gallery:hover
    {
        border: 1px solid #777;
    }

    div.gallery img
    {
        width: 100%;
        height: 100%;
        margin: 5px 20px 0px 5px;
    }

div.desc
{
    padding: 15px;
    text-align: center;
}

.zanimivost-tekst
{
    text-align: justify;
    margin: 20px 60px 60px 60px;
    line-height: 40px;
}

.qr
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 30px;
}

.viri ol
{
    font-size: small;
}