/* reset5 2011 opensource.736cs.com MIT */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
audio,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
summary,
time,
video {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
blockquote {
  display: block;
}
nav ul {
  list-style: none;
}
ol {
  list-style: decimal;
}
ul {
  list-style: disc;
}
ul ul {
  list-style: circle;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
ins {
  text-decoration: underline;
}
del {
  text-decoration: line-through;
}
mark {
  background: none;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input[type='submit'],
input[type='button'],
button {
  margin: 0;
  padding: 0;
}
input,
select,
a img {
  vertical-align: middle;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.cf:before,
.cf:after {
  content: ' '; /* 1 */
  display: table; /* 2 */
}

.cf:after {
  clear: both;
}

.cl {
  clear: both;
}

/*-- end reset css --*/
a.link {
  color: var(--color-sub);
  text-decoration: underline;
}

a.link.none {
  color: var(--color-sub);
  text-decoration: none;
}

a.link_inverse {
  color: #fff;
  text-decoration: underline;
}

a.link:hover {
  color: var(--color-sub-hover);
  text-decoration: none;
}

a.link_inverse:hover {
  text-decoration: none;
}

a.disabled {
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-size: 62.5%;
  font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Tahoma, sans-serif;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  line-height: 1;
}

body.fixed {
  position: fixed;
}

:root {
  --color-main: #eee;
  --color-sub: #018a1f;
  --color-sub-hover: #000;
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Titillium Web', sans-serif;

  --h1-font-size: 3.2em;
  --h2-font-size: calc(var(--h1-font-size) / 1.25);
  --h3-font-size: calc(var(--h2-font-size) / 1.15);
  --h1-margin-bottom: 32px;
  --h2-margin-bottom: 24px;
  --h3-margin: 40px;
  --p-font-size: 1.7em;
  --section-padding: 80px;
  --div-nekretnineDet-font-size: 1.7em;
  --ul-text-small-font-size: 1.7em;

  --index-head-spacing: calc((50vh - 45px - 90px) / 3);
}

@media only screen and (max-width: 1050px) {
  :root {
    --index-head-spacing: calc((50vh - 45px - 145px) / 3);
  }
}

@media only screen and (max-width: 600px) {
  :root {
    --h1-font-size: calc(3.2em * 0.9);
    --h2-font-size: calc(var(--h1-font-size) / 1.25);
    --h3-font-size: calc(var(--h2-font-size) / 1.15);
    --p-font-size: calc(1.6em * 0.95);
  }
}

@media only screen and (max-width: 400px) {
  :root {
    --h1-font-size: calc(3.2em * 0.8);
  }
}

@media only screen and (max-width: 380px) {
  :root {
    --h1-font-size: calc(3.2em * 0.75);
  }
}

.display_none {
  display: none !important;
}

/* ##########
### TXT ###
########## */

h1,
h2 {
  font-family: var(--font-header);
  font-size: var(--h1-font-size);
  font-weight: 400;
  line-height: 130%;
  margin: 0 auto;
  margin: 0 0 var(--h1-margin-bottom) 0;
  width: 100%;
}

h1 {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

h1.det {
  font-size: calc(var(--h1-font-size) * 0.9);
  margin: var(--h1-margin-bottom) 0;
  padding-bottom: 24px;
}

h1.index {
  border: 0;
  color: #fff;
  left: 50%;
  margin: 0;
  padding: 0 5vw;
  position: absolute;
  text-align: center;
  top: calc(var(--index-head-spacing) + 45px);
  transform: translate(-50%, 0);
}

h2 {
  font-size: var(--h2-font-size);
  margin: 0 0 var(--h2-margin-bottom) 0;
  text-transform: uppercase;
}

h2.text {
  margin: var(--h2-margin-bottom) 0;
}

.index h2 {
  text-align: center;
}

p.text {
  font-size: calc(var(--p-font-size) * 0.9);
  line-height: 140%;
}

ul.text,
ol.text {
  font-size: calc(var(--p-font-size) * 0.9);
  line-height: 140%;
  padding-left: 20px;
}

ul.text.none {
  list-style: none;
}

ul.text.admin li + li {
  margin-top: 12px;
}

p.text.red {
  color: #f00;
}

p.text + p.text,
p.text + ul.text,
p.text + ol.text,
ul.text + p.text,
ol.text + p.text,
ul.text + ul.text {
  margin-top: 24px;
}

ul.text ul {
  margin-left: 20px;
}

ul.sitemap {
  line-height: 160%;
}

ul.sitemap li + li {
  margin-top: 4px;
}

span.stampana {
  text-transform: uppercase;
}

::-webkit-scrollbar {
  height: 12px;
  width: 12px;
  background: gray;
}

textarea::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-sub);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-webkit-scrollbar-thumb:horizontal {
  background: var(--color-sub);
  border-radius: 10px;
}

#admin_nekretnine_main::-webkit-scrollbar {
  height: 0px;
  width: 0px;
  background: gray;
}

#admin_nekretnine_main::-webkit-scrollbar-thumb {
  background: none;
}

/* ##########
### HEAD ###
########## */

header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--color-sub);
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header.index {
  background: #eee;
  justify-content: flex-start;
  margin: 0 auto;
  min-height: 50vh;
  position: relative;
  width: min(90%, 1600px);
}

header.index.lazyloaded {
  background: #eee url('images/head.jpg') no-repeat center;
  background-size: cover;
}

div.headline {
  background: #fff;
  border-bottom: 1px solid var(--color-sub);
  border-bottom: 1px solid #eee;
  display: flex;
  font-size: 1.35em;
  height: 45px;
  justify-content: center;
  min-height: 45px;
  width: 100%;
}

div.headline > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: min(1200px, 90%);
}

nav.menu {
  display: none;
}

#zastave {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-left: 24px;
  width: 220px;
}

#ham {
  display: none;
}

div.navigation {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  width: min(1200px, 90%);
}

#mainLogo {
  display: flex;
  font-size: 3em;
  justify-content: space-between;
}

.index #mainLogo {
  display: none;
}

#mainLogo a {
  align-items: center;
  display: flex;
}

nav {
  align-items: center;
  display: flex;
}

#maniNav {
  display: flex;
  margin: 0px auto;
}

#maniNav li {
  flex: 1 1 auto;
  font-size: 1.8em;
}

#maniNav li + li {
  margin-left: 30px;
}

#maniNav a {
  display: flex;
  font-weight: 400;
  justify-content: center;
  line-height: 48px;
  text-decoration: none;
}

#maniNav span {
  display: none;
}

#index_search {
  bottom: var(--index-head-spacing);
  position: absolute;
  width: min(1200px, 90%);
}

#index_search ul {
  display: flex;
  gap: 8px;
  list-style: none;
}

#index_search li {
  display: flex;
  flex: 0 0 calc((100% - 24px) / 4);
  justify-content: space-between;
}

#index_search input,
#index_search select {
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  float: right;
  font-family: var(--font-body);
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0px;
  margin: 0;
  min-height: 46px;
  padding: 10px 10px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s;
  vertical-align: baseline;
  width: 100%;
  z-index: 5;
}

#index_search input {
  width: calc(50% - 2px);
}

#index_search input.submit {
  background: var(--color-sub-hover);
  border: 1px solid var(--color-sub-hover);
  color: #fff;
}

#index_search input:hover,
#index_search select:hover {
  background: #fff;
  box-shadow: none;
  border: 1px solid var(--color-sub);
  color: var(--color-sub);
}
#index_search input.submit:hover {
  background: var(--color-sub);
  border: 1px solid #fff;
  color: #fff;
}

/* ##########
### INDEX ###
########## */

div.index_nekretnine {
}

div.index_nekretnine > ul {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  list-style: none;
  margin-bottom: 24px;
}

div.index_nekretnine > ul > li {
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

div.index_nekretnine > ul > li > a {
  display: flex;
  position: relative;
}

div.index_nekretnine > ul > li > a img {
  aspect-ratio: 3 / 2;
  background-color: #eee;
  display: block;
  width: 100%;
}

div.index_nekretnine > ul > li > a div {
  background: var(--color-sub);
  bottom: 12px;
  color: #fff;
  font-size: 1.6em;
  font-weight: 400;
  left: 12px;
  padding: 8px;
  position: absolute;
}

div.index_nekretnine > ul > li > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  position: relative;
}

div.index_nekretnine h3 {
  font-size: var(--p-font-size);
  font-size: 1.6em;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 12px;
  text-align: left;
}

div.index_nekretnine > ul > li > div ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4em;
  gap: 8px;
  list-style: none;
}

div.index_nekretnine > ul > li > div li {
  flex: 0 0 100%;
  justify-content: space-between;
}

/**/

div.index_banneri {
  border-bottom: 1px solid var(--color-sub);
  border-top: 1px solid var(--color-sub);
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  display: none;
  margin: 0 auto;
}

div.index_banneri ul {
  display: grid;
  font-family: var(--font-body);
  font-size: var(--h3-font-size);
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding-bottom: 24px;
  padding-top: 24px;
}

div.index_banneri li {
  align-items: center;
  aspect-ratio: 2 / 1;
  background: #eee;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

div.index_banneri a {
  color: var(--color-sub);
  display: flex;
  position: relative;
  text-decoration: none;
}

div.index_banneri img {
  width: 100%;
}

div.index_banneri span {
  flex: 0 0 100%;
}

div.index_kategorije {
  border-top: 1px solid #eee;
}

div.index_kategorije ul {
  display: grid;
  font-size: var(--p-font-size);
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  list-style: none;
  padding-top: 24px;
  grid-auto-flow: row dense;
}

div.index_kategorije li {
  aspect-ratio: 1 / 1;
  background: #eee;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

div.index_kategorije li img {
  object-fit: cover;
  width: 100%;
}

div.index_kategorije li:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

div.index_kategorije li > a {
  display: flex;
  flex: 0 0 100%;
  position: relative;
}

div.index_kategorije li > a:before {
  content: '';
  height: 100%;
  position: absolute;
  transition: all 0.5s;
  width: 100%;
}

div.index_kategorije li > a:hover:before {
  background: rgba(1, 138, 31, 0.75);
}

div.index_kategorije li span {
  background: var(--color-sub);
  border-radius: 4px;
  bottom: 12px;
  color: #fff;
  font-weight: 400;
  line-height: 150%;
  padding: 8px 12px;
  position: absolute;
  right: 12px;
  text-align: right;
  transition: all 0.5s;
}

div.index_kategorije li > a:hover span {
  background-color: transparent;
}

/**/

div.index_istra {
  margin-top: 32px;
}

div.index_istra p {
  font-size: var(--p-font-size);
  line-height: 160%;
}

/* ##########
### MAIN ###
########## */

/* breadcrumb */

#navTo {
  grid-column: 1 / 13;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

#navTo ol {
  width: auto;
  padding: 3px 0;
  margin: 0;
  font-size: 1.3em;
  font-weight: 300;
  list-style-type: none;
  overflow: hidden;
}

#navTo li {
  float: left;
  line-height: 22px;
  margin-right: 10px;
}

#navTo li:after {
  content: ' > ';
  color: #ddd;
}

#navTo li:last-of-type:after {
  content: '';
  padding: 1px 0;
}

#navTo li:last-of-type {
  margin-right: 0;
}

#navTo a {
  float: left;
  display: block;
  padding: 0 10px 0 0;
  text-decoration: none;
  color: var(--main-color);
  text-align: left;
  line-height: 22px;
}

#navTo li:first-of-type a {
  padding-left: 0;
}

#navTo a:hover {
  color: #000;
}

/**/

main {
  display: grid;
  grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
  margin: 50px auto;
  width: min(1200px, 90%);
  padding: 0;
}

main.none {
  display: block;
}

section {
  border: 0;
  grid-column: 1 / 8;
  padding: 0;
}

aside {
  grid-column: 9 / 13;
}

section.full {
  border: 0;
  grid-column: 1 / 13;
}

/* ##########
### LISTING ###
########## */

#kategorijaGradovi {
  border: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--p-font-size);
  gap: 16px;
  margin-bottom: 30px;
  padding: 24px;
}

#kategorijaGradovi a {
  display: flex;
  white-space: nowrap;
}

#sortField {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  z-index: 10;
}

#sortField p {
  font-size: var(--p-font-size);
  position: relative;
}

#sortField select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
  box-shadow: none;
  color: #000;
  cursor: pointer;
  float: right;
  font-family: var(--font-body);
  font-size: 1.3em;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  padding: 10px 10px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s;
  vertical-align: baseline;
  width: min(50%, 325px);
  z-index: 5;
}

#sortField select:hover {
  border: 1px solid var(--color-sub);
}

#nekretnineList {
  list-style: none;
  position: relative;
  width: 100%;
}

#nekretnineList > li {
  display: flex;
}

#nekretnineList > li.ban {
}

#nekretnineList > li.ban > span {
  display: none;
}

#nekretnineList > li + li {
  border-top: 1px solid #eee;
  margin-top: 24px;
  padding-top: 24px;
}

#nekretnineList li > a {
  background-color: #eee;
  flex: 0 0 300px;
  display: flex;
  position: relative;
  width: 300px;
}

#nekretnineList li > a > img {
  aspect-ratio: 3 / 2;
  background: #f7f7f7;
  border: 1px solid #eee;
  flex: 1;
  width: 100%;
}

#nekretnineList li > a > div.features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  left: 8px;
  position: absolute;
  top: 8px;
}

#nekretnineList li > a > div.features > span {
  align-self: flex-start;
  border-radius: 2px;
  color: #fff;
  display: flex;
  font-size: 1em;
  padding: 4px;
}

#nekretnineList li > a > div.features span.a {
  background-color: red;
}

#nekretnineList li > a > div.features span.b {
  background-color: blue;
}

#nekretnineList li > a > div.features span.c {
  background-color: #018a1f;
}

#nekretnineList li > a > div.photos {
  align-items: center;
  background-color: var(--color-sub);
  border: 1px solid #000;
  border-radius: 4px;
  bottom: 8px;
  display: flex;
  left: 8px;
  padding: 8px;
  position: absolute;
}

#nekretnineList li > a > div.photos span.icon {
  align-items: center;
  color: #fff;
  display: flex;
  height: 20px;
  margin-right: 8px;
  width: 20px;
}

#nekretnineList li > a > div.photos span.icon img {
  width: 100%;
}

#nekretnineList li > a > div.photos span.data {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.6em;
  font-weight: 500;
}

#nekretnineList li > a > div.favorites {
  align-items: center;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
}

#nekretnineList li > a > div.favorites span {
  display: block;
  height: 48px;
  padding: 8px;
  width: 48px;
}

#nekretnineList li > a > div.favorites span svg.fav {
  display: none;
}

#nekretnineList li > a > div.favorites span.fav svg {
  display: none;
}

#nekretnineList li > a > div.favorites span.fav svg.fav {
  display: block;
}

#nekretnineList li > div {
  flex: 1 1 auto;
  margin-left: 24px;
  position: relative;
}

#nekretnineList h3 {
  font-size: var(--p-font-size);
  font-size: 1.6em;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 12px;
  text-align: left;
}

#nekretnineList h3 + span {
  font-size: 1.4em;
}

#nekretnineList li > div ul {
  bottom: 55px;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4em;
  gap: 12px;
  list-style: none;
  position: absolute;
  width: 100%;
}

#nekretnineList li > div li {
  align-items: center;
  display: flex;
  flex: 0 0 calc(50% - 6px);
  flex: 0 0 100%;
  font-size: 1em;
}

#nekretnineList li > div li + li {
}

#nekretnineList li > div li span {
  border-radius: 2px;
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

#nekretnineList li > div li span img {
  width: 100%;
}

/* cijena */

#nekretnineList li > div > div {
  bottom: 0;
  display: flex;
  font-size: 2em;
  font-weight: 400;
  justify-content: flex-start;
  left: 0;
  position: absolute;
  width: 100%;
}

#nekretnineList li > div > div p {
  line-height: 26px;
  text-align: right;
}

#nekretnineList li > div > div p.akcija,
#nekretnineList div p.staro {
  color: #f00;
  text-align: left;
}

#nekretnineList li > div > div p.staro {
  border-left: 1px solid #eee;
  color: #555;
  font-weight: 300;
  margin-left: 10px;
  padding-left: 10px;
  text-align: right;
  text-decoration: line-through;
}

#nekretnineList li > div > div span {
  display: inline-block;
  display: none;
  font-size: 0.6em;
  height: 14px;
  line-height: 14px;
  text-align: right;
  width: 100%;
}

#nekretnineList li > div > div p.akcija span {
  text-align: right;
}

#nekretnineList li > div > div.agencija {
  border: 1px solid #eee;
  border-radius: 8px;
  height: 64px;
  left: auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 64px;
}

#nekretnineList li > div > div.agencija img {
  width: 100%;
}

/**/

#nekretnineList > li.ban > div {
  margin: 0;
  position: relative;
}

#nekretnineList > li.ban > div img {
  aspect-ratio: 16 / 9;
  cursor: pointer;
  display: block;
  object-fit: cover;
  width: 100%;
}

#nekretnineList > li.ban > div img + p {
  font-size: 1.4em;
  margin-top: 10px;
  text-align: center;
}

#nekretnineList > li.ban > div > div {
  aspect-ratio: 16 / 9;
}

#nekretnineList > li.ban > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#nekretnineList > li.ban > div > a {
  display: flex;
}

#nekretnineList > li.ban > div > a > img {
  background-color: #eee;
  width: 100%;
}

#videoContainer {
  cursor: pointer;
}

#video {
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
}

#videoContainer figcaption {
  font-size: 1.4em;
  font-weight: 400;
  margin-top: 10px;
  text-align: center;
}

/* pagination */

div.rez {
  align-items: center;
  color: #555;
  display: flex;
  font-size: 1.5em;
  justify-content: space-between;
  line-height: 160%;
  margin: 30px 0 0 0;
  text-align: center;
  width: 100%;
}

div.rez > div {
  display: flex;
  justify-content: flex-start;
}

span.cur,
span.ukupno {
  background: var(--color-sub);
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  display: block;
  padding: 3px 8px;
  text-align: center;
}

span.ukupno {
  background: transparent;
  color: #555;
  margin-right: 0;
  padding: 3px 0;
}

a.brz {
  border: 1px solid #ddd;
  border-radius: 4px;
  display: block;
  padding: 3px 8px;
}

div.rez > div * + * {
  margin-left: 5px;
}

a.brz:link,
a.brz:visited {
  color: #555;
  text-decoration: none;
}

a.brz:hover,
a.brz:active {
  border: 1px solid var(--color-sub);
  color: var(--color-sub);
  text-decoration: none;
}

/* */

#agencijeList {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  position: relative;
  width: 100%;
}

#agencijeList > li {
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}

#agencijeList > li div.photo {
  display: flex;
  justify-content: center;
}

#agencijeList > li div.photo a {
  aspect-ratio: 1 / 1;
  border: 1px solid #eee;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  width: min(150px, 100%);
}

#agencijeList > li div.photo img {
  display: block;
  width: 100%;
}

#agencijeList > li div.data {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}

#agencijeList > li div.data > * {
  text-align: center;
}

#agencijeList h3 {
  font-size: var(--p-font-size);
  font-size: 1.6em;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 12px;
  text-align: left;
}

#agencijeList p {
  font-size: var(--p-font-size);
  flex-wrap: wrap;
  line-height: 160%;
  word-break: break-word;
}

/* */

div.ban_dole {
  aspect-ratio: 4 / 1;
  background: #eee;
  margin-top: 30px;
}

/* ##########
### DET ###
########## */

div.main_gallery {
  aspect-ratio: 3 / 2;
  background: #eee;
  display: flex;
  position: relative;
}

div.main_gallery > a {
  display: flex;
  flex: 1;
}

div.main_gallery img {
  object-fit: cover;
  width: 100%;
}

div.main_gallery div.photos {
  align-items: center;
  background-color: var(--color-sub);
  border: 1px solid #000;
  border-radius: 4px;
  bottom: 16px;
  display: flex;
  left: 16px;
  padding: 8px;
  position: absolute;
}

div.main_gallery div.photos span.icon {
  color: #fff;
  height: 24px;
  margin-right: 8px;
  width: 24px;
}

div.main_gallery div.photos span.data {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.6em;
  font-weight: 500;
}

div.main_fetures {
  display: flex;
  gap: 32px;
  padding: 0 0 32px 0;
}

div.main_fetures div {
  align-items: center;
  display: flex;
  font-size: 2em;
}

div.main_fetures div span {
  border: 1px solid #eee;
  border-radius: 10px;
  height: 32px;
  margin-right: 12px;
  width: 32px;
}

div.main_fetures div span img {
  width: 100%;
}

div.main_lokacija {
  border-top: 1px solid #eee;
  display: flex;
  font-size: var(--p-font-size);
  gap: 16px;
  padding: 32px 0;
}

div.main_lokacija div {
  align-items: center;
  display: flex;
  flex: 0 0 calc(50% - 8px);
}

div.main_lokacija div span.icon {
  background: #eee;
  border-radius: 10px;
  display: block;
  height: 24px;
  margin-right: 12px;
  width: 24px;
}

div.main_price {
  border-top: 1px solid #eee;
  display: flex;
  font-size: 2.5em;
  font-weight: 500;
  justify-content: space-between;
  padding: 32px 0;
}

div.main_price > div {
  display: flex;
  flex: 1;
  gap: 12px;
}

div.main_price > div div {
  flex: 1 0 auto;
}

div.main_price .kvadrat {
  color: #555;
  font-size: 0.9em;
  font-weight: 300;
}

div.main_oglas {
  border-top: 1px solid #eee;
  display: none;
  padding: 32px 0;
}

div.main_oglas > div {
  aspect-ratio: 3 / 1;
  background-color: #eee;
  width: 100%;
}

div.main_karakteristike {
  border-top: 1px solid #eee;
  padding: 32px 0;
}

div.main_karakteristike ul {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--p-font-size);
  gap: 12px 12px;
  list-style: none;
  margin: 0 auto;
}

div.main_karakteristike li {
  align-items: center;
  display: flex;
  line-height: 150%;
  width: calc(50% - 6px);
}

div.main_karakteristike li:nth-child(2n) {
  margin-right: 0;
}

div.main_karakteristike li span.value {
  font-weight: 400;
  display: flex;
  justify-self: flex-end;
}

div.main_opis {
  border-top: 1px solid #eee;
  padding: 32px 0;
}

div.main_opis p {
  font-size: var(--p-font-size);
  line-height: 160%;
}

div.main_opis p + p {
  margin-top: 32px;
}

div.main_kontakt {
  border-top: 1px solid #eee;
  padding: 32px 0;
}

/**/

div.agencija_karakteristike {
  display: flex;
  padding: 0 0 32px 0;
}

div.agencija_karakteristike div.logo {
  border: 1px solid #eee;
  border-radius: 50%;
  flex: 0 0 140px;
  margin-right: 32px;
  overflow: hidden;
}

div.agencija_karakteristike div.logo img {
  display: block;
  width: 100%;
}

div.agencija_karakteristike ul {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--p-font-size);
  gap: 12px 12px;
  list-style: none;
  margin: 0 auto;
}

div.agencija_karakteristike li {
  align-items: center;
  display: flex;
  line-height: 150%;
  width: 100%;
}

div.agencija_karakteristike span {
}

div.agencija_agenti {
  border-top: 1px solid #eee;
  padding: 32px 0;
}

#results_inner {
  border: 1px solid #eee;
  color: red;
  display: none;
  font-size: calc(var(--p-font-size) * 1);
  margin-bottom: 30px;
  padding: 16px 24px;
}

#results_inner.ok {
  border: 1px solid var(--color-sub);
  color: green;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 0;
}

#results_inner span.show_data {
  cursor: pointer;
  text-decoration: underline;
}

#results_inner span.show_data:hover {
  color: #000;
  text-decoration: none;
}

/* fieldset */

fieldset.upit + fieldset.upit ol {
  border-top: 1px solid #ccc;
  margin-top: 32px;
  padding-top: 32px;
}

fieldset.upit + fieldset.dashed ol {
  border-top: 1px solid #eee;
}

fieldset.slike {
  border: 1px solid #eee !important;
  margin-top: 32px;
}

fieldset.upit ol {
  list-style: none;
  padding: 0;
}

fieldset.upit li + li {
  margin-top: 12px;
}

fieldset.upit li + li.box {
  margin-top: 12px;
}

fieldset.upit li.box {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

fieldset.upit li.c1,
fieldset.upit li.c2,
fieldset.upit li.c3 {
  display: none;
}

fieldset.upit li.sbmt {
  margin-top: 24px;
}

fieldset.upit label {
  display: block;
  font-size: var(--p-font-size);
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 4px;
  _width: calc(100% - 450px);
}

fieldset.upit li.box label {
  line-height: 40px;
  margin: 0;
}

fieldset.upit li.chck {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

fieldset.upit li.chck2 {
  display: flex;
  margin-bottom: 32px;
}

fieldset.upit li.chck2 input {
  margin-right: 12px;
}

fieldset.upit li.chck2 label {
  align-items: flex-start;
  display: flex;
  font-size: calc(var(--p-font-size) * 0.9);
  line-height: 125%;
}

fieldset.upit.admin li {
  display: flex;
}

/* labele */

fieldset.upit label.note {
  font-size: 1.4em;
  width: 100%;
}

fieldset.upit label.spam {
  line-height: 20px;
  margin-bottom: 10px;
  width: 100%;
}

fieldset.upit label.provjera {
  align-items: center;
  color: #aaa;
  display: flex;
  margin: 0;
  padding: 0;
  width: 125px;
}

fieldset.upit label.provjera img {
  border: 1px solid #aaa;
  height: 34px;
}

fieldset.upit label.provjera span {
  align-items: center;
  display: flex;
  font-size: var(--p-font-size);
  justify-content: center;
  padding: 0 3px;
  width: 25px;
}

fieldset.upit.admin label.note {
  line-height: 150%;
  flex: 0 0 100%;
}

fieldset.upit.admin label {
  line-height: 44px;
  flex: 0 0 100%;
}

fieldset.upit.admin label.provjera {
  width: 125px;
  line-height: 28px;
}

fieldset.upit.admin label.spam {
  margin-bottom: 10px;
  flex: 0 0 100%;
}

fieldset.upit.admin.nekretnine label {
  flex: 0 0 220px;
}

fieldset.upit label.err {
  color: #f00;
}

/* elementi */

fieldset.upit input.text,
fieldset.upit input.textx,
fieldset.upit input.textxx,
input.slike,
fieldset.upit select,
fieldset.upit textarea,
fieldset.upit input.submit,
#slikeBri,
.richText,
.choices__inner {
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 4px;
  box-sizing: border-box;
  color: #000;
  font-family: var(--font-body);
  font-size: var(--p-font-size) !important;
  font-weight: 300;
  margin: 0;
  padding: 10px 15px;
  transition: background 1s;
  width: 100%;
}

fieldset.upit .box input.text,
fieldset.upit .box select {
  width: min(100%, 120px);
}

fieldset.upit .box select {
  width: min(100%, 300px);
}

fieldset.upit input.textx {
  width: 80px;
}

fieldset.upit input.textxx {
  width: 200px;
}

fieldset.upit input.textxx.spam {
  padding: 5px 10px;
}

fieldset.upit input:hover,
fieldset.upit textarea:hover {
  background: none;
  border: 1px solid #ccc;
}

fieldset.upit input.submit,
#slikeBris {
  background: var(--color-sub);
  color: #fff;
  cursor: pointer;
  padding: 12px;
}

fieldset.upit input.submit:hover {
  background: var(--color-sub-hover);
}

fieldset.upit input[disabled] {
  background-color: #fff;
  cursor: not-allowed;
}

fieldset.upit textarea {
  height: 200px;
}

fieldset.upit.admin input.box {
  align-self: center;
}

fieldset.upit input.err {
  border: 1px solid #f00;
}

li.sbmt {
  justify-content: flex-end;
  display: flex;
}

fieldset.upit.admin input.submit {
  flex: 0 0 calc(100% - 220px);
  width: auto;
}

li.box input[type='checkbox'] {
  height: 16px;
  width: 16px;
}

#results {
  color: green;
  margin-bottom: 24px;
}

#results_inner.error {
  color: red;
}

/**/

#admin_nekretnine_upiti {
}

#admin_nekretnine_upiti > div {
  border-top: 1px solid #ccc;
  padding-top: 32px;
}

#admin_nekretnine_slike {
  border: 1px solid #ccc;
}

/* ##########
### ASIDE ###
########## */

/* ##########
### SEARCH ###
########## */

#gore {
  padding: 5px 0;
  padding: 0;
  position: sticky;
  position: static;
  top: 48px;
}

#gore > span,
#admin_info > span {
  display: none;
}

#mainSerach2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#mainSerach2 li {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  list-style: none;
}

#pretragaMain2 input,
#pretragaMain2 select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.25);
  color: #000;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.35em;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin: 0;
  padding: 10px 10px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s;
  vertical-align: baseline;
  width: 100%;
  z-index: 5;
}

#pretragaMain2 input.selected,
#pretragaMain2 select.selected {
  border: 1px solid var(--color-sub);
}

#pretragaMain2 input.submit {
  background: var(--color-sub);
  border: 1px solid var(--color-sub);
  color: #fff;
}

#pretragaMain2 input:hover,
#pretragaMain2 select:hover {
  border: 1px solid #aaa;
}

#pretragaMain2 input.submit:hover {
  background: var(--color-sub-hover);
}

#pretragaMain2 select.mala {
  width: calc(50% - 4px);
}

#pretragaMain2 select.mala + select.mala {
}

#mainSerach2 li:last-child {
}

#mainSerach2 li input,
#mainSerach2 li input.submit {
  width: calc(50% - 4px);
}

#mainSerach2 li:last-child input.submit {
  float: right;
}

#search_helper {
  border-radius: 4px;
  color: #fff;
  display: flex;
  position: sticky;
  top: 0px;
}

#search_helper a {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
}

#search_helper a > span {
  align-items: center;
  background: var(--color-sub);
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
  display: flex;
  font-family: var(--font-header);
  font-size: 1.4em;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

#search_helper a > span:hover {
  background: #555;
}

#search_helper a > span > span {
  display: flex;
}

#search_helper span.setting {
  display: inline-block;
  height: 20px;
  margin-right: 20px;
  width: 20px;
}

/**/

ul.gradovi {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  margin-top: 32px;
}

ul.gradovi li {
}

ul.gradovi a {
  border: 1px solid #eee;
  display: flex;
  position: relative;
  transition: all 0.5s;
}

ul.gradovi a:hover {
  border: 1px solid #000;
}

ul.gradovi img {
  aspect-ratio: 3 / 2;
  display: block;
  width: 100%;
}

ul.gradovi span {
  background-color: var(--color-sub);
  bottom: 16px;
  color: #fff;
  display: block;
  font-size: calc(var(--p-font-size) * 0.9);
  left: 16px;
  line-height: 120%;
  padding: 8px;
  position: absolute;
  text-align: center;
  width: calc(100% - 32px);
}

/**/

div.oglasavanje_item {
  padding-bottom: 32px;
}

div.oglasavanje_item + div.oglasavanje_item {
  border-top: 1px solid #eee;
  padding-top: 32px;
}

div.oglasavanje_paketi,
div.oglasavanje_banneri {
  border: 1px solid #eee;
  display: flex;
  font-size: calc(var(--p-font-size) * 1.1);
  margin: 24px 0;
}

div.oglasavanje_paketi > div {
  flex: 0 0 calc(100% / 3);
}

div.oglasavanje_banneri > div {
  flex: 0 0 calc(100% / 2);
}

div.oglasavanje_paketi h3,
div.oglasavanje_banneri h3 {
  border-bottom: 1px solid #eee;
  font-family: var(--font-header);
  font-weight: 400;
  line-height: 250%;
  text-align: center;
}

div.oglasavanje_paketi div,
div.oglasavanje_banneri div {
  text-align: center;
}

div.oglasavanje_paketi > div + div,
div.oglasavanje_banneri > div + div {
  border-left: 1px solid #eee;
}

div.oglasavanje_paketi div.oglasa,
div.oglasavanje_banneri div.oglasa {
  border-bottom: 1px solid #eee;
  line-height: 200%;
}

div.oglasavanje_paketi div.cjenik,
div.oglasavanje_banneri div.cjenik {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
}

div.oglasavanje_paketi div.cjenik > div,
div.oglasavanje_banneri div.cjenik > div {
  display: block;
  flex-direction: column;
}

div.oglasavanje_paketi div.cjenik span,
div.oglasavanje_banneri div.cjenik span {
  color: #999;
  display: block;
  font-size: 0.8em;
}

.pb0 {
  padding-bottom: 0 !important;
}

/**/

div.banneri {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

div.banneri > div {
  align-items: center;
  aspect-ratio: 2 / 1;
  background: #eee;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  font-size: 3em;
}

div.banneri > div img {
  cursor: pointer;
  flex: 0 0 100%;
  max-width: 100%;
  object-fit: cover;
}

div.banneri > div.veliki {
  aspect-ratio: 1 / 1;
  grid-row: span 2;
}

/**/

aside div.kontakt {
  border: 1px solid var(--color-main);
  padding: 24px;
  position: sticky;
  top: 48px;
}

aside div.kontakt > div {
  display: flex;
  justify-content: center;
}

aside div.kontakt > div + div {
  margin-top: 24px;
}

aside div.kontakt > div.img > a {
  border: 1px solid #eee;
  border-radius: 100%;
  display: block;
  height: 128px;
  overflow: hidden;
  width: 128px;
}

aside div.kontakt > div.img > a img {
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
}

aside div.kontakt > div.info {
  font-size: var(--p-font-size);
  flex-wrap: wrap;
  line-height: 160%;
}

aside div.kontakt > div.info + div.info {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

aside div.kontakt > div.info p {
  flex: 0 0 100%;
  text-align: left;
}

aside div.kontakt > div.info p.c {
  text-align: center;
}

aside div.kontakt > div.info p + p {
  margin-top: 12px;
}

aside div.kontakt > div.info p.flex {
  align-items: center;
  display: flex;
  justify-content: space-around;
  max-width: 88px;
}

aside div.kontakt > div.info p.c span {
  align-items: center;
  background: #ddd;
  border-radius: 5px;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

aside div.kontakt > div.info p.c span a {
  flex: 1;
}

aside div.kontakt > div.info p.c span img {
  width: 100%;
}

aside div.kontakt > div.cta {
  font-size: 1.4em;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 500px);
}

aside div.kontakt > div.cta > div {
  align-items: center;
  background: #ddd;
  border: 1px solid #ddd;

  background: var(--color-sub);
  border: 1px solid var(--color-sub);

  border-radius: 4px;
  display: flex;
  flex: 1 0 calc((100% - 24px) / 3);
  transition: all 0.5s;
}

aside div.kontakt > div.cta > div.logo {
  display: none;
}

aside div.kontakt > div.cta > div.query {
  background: var(--color-sub);
  border: 1px solid var(--color-sub);
  color: #000;
}

aside div.kontakt > div.cta > div.info {
  display: none;
}

aside div.kontakt > div.cta > div.call:hover,
aside div.kontakt > div.cta > div.query:hover {
  background: var(--color-sub-hover);
}

aside div.kontakt > div.cta > div a {
  align-items: center;
  color: #fff;
  display: flex;
  flex: 1;
  padding: 12px;
  justify-content: flex-start;
  text-align: center;
}

aside div.kontakt > div.cta > div span.icon {
  align-items: center;
  display: flex;
  height: 20px;
  justify-content: center;
  margin-right: 12px;
  width: 20px;
}

aside div.kontakt > div.cta > div span img {
  height: 20px;
  width: 20px;
}

aside div.kontakt + p {
  position: sticky;
}

aside #admin_info div.info {
  font-size: var(--p-font-size);
  flex: 0 0 100%;
  flex-wrap: wrap;
  line-height: 160%;
}

aside #admin_info div.info p + p {
  margin-top: 8px;
}

aside #admin_info div.info p.user {
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
}

#admin_nekretnine_side {
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--p-font-size);
  padding-top: 24px;
}

#admin_nekretnine_side > div {
  flex: 0 0 100%;
  line-height: 160%;
}

#admin_nekretnine_side > div + div {
  margin-top: 8px;
}

#admin_nekretnine_side > div a {
  align-items: center;
  display: flex;
}

#admin_nekretnine_side > div span {
  display: inline-flex;
  height: 24px;
  margin-right: 16px;
  width: 24px;
}

/* ##########
### ADMIN ###
########## */

div.admin_user_settings,
div.admin_nekretnine_settings {
  border: 1px solid #eee;
  padding: 24px;
}

div.admin_user_settings {
  font-size: calc(var(--p-font-size) * 0.9);
}

div.admin_user_settings.aktivna {
  border: 1px solid var(--color-sub);
}

div.admin_user_settings p {
  display: flex;
  justify-content: space-between;
}

div.admin_user_settings p + p {
  margin-top: 16px;
}

div.admin_user_data {
  margin-top: 32px;
}

#admin_nekretnine_vrsta {
  padding-top: 16px;
}

p.admin_slike_napomena {
  border: 1px solid #eee;
  font-size: var(--p-font-size);
  font-weight: 400;
  line-height: 160%;
  margin-top: 32px;
  padding: 32px;
  text-align: center;
}

/**/

div.admin_nekretnine_show {
  display: flex;
  justify-content: space-between;
}

div.admin_nekretnine_show > a {
  background-color: var(--color-sub);
  border-radius: 4px;
  color: #fff;
  display: block;
  flex: 0 0 calc((100% - 4px) / 3);
  font-size: calc(var(--p-font-size) * 0.9);
  gap: 2px;
  padding: 12px 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s;
}

div.admin_nekretnine_show > a:hover {
  background-color: #000;
}

div.admin_nekretnine_show > a + a {
  margin-left: 2px;
}

* + div.admin_nekretnine_filter {
  margin-top: 16px;
}

div.admin_nekretnine_filter ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  max-width: 100%;
}

div.admin_nekretnine_filter li {
  flex: 0 0 calc((100% - 8px) / 3);
  display: flex;
  justify-content: space-between;
}

div.admin_nekretnine_filter .upiti li {
  flex: 1 0 auto;
}

div.admin_nekretnine_filter .upiti li.reset {
  align-items: center;
  font-size: 1.4em;
  justify-content: flex-end;
}

div.admin_nekretnine_filter select,
div.admin_nekretnine_filter input,
#sorterAdmin,
#selectedAction,
div.admin_nekretnine_sum input,
div.admin_nekretnine_sum span a,
#prikazBr,
div.admin_nekretnine_sum div.prikaz div a {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 0px 0px rgb(0 0 0 / 25%);
  color: #000;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  margin: 0;
  padding: 6px 10px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s;
  vertical-align: baseline;
  z-index: 5;
}

div.admin_nekretnine_filter select {
  flex: 0 0 100%;
}

div.admin_nekretnine_filter input {
  display: block;
  width: calc(50% - 1px);
}

div.admin_nekretnine_filter select:hover,
div.admin_nekretnine_filter input:hover {
  border: 1px solid var(--color-sub);
}

div.admin_nekretnine_filter input.submit,
div.admin_nekretnine_sum input {
  background-color: var(--color-sub);
  color: #fff;
  display: block;
  transition: all 0.5s;
}

div.admin_nekretnine_filter input.submit:hover,
div.admin_nekretnine_sum input:hover {
  background-color: #000;
}

div.admin_nekretnine_sum input {
  margin-left: 8px;
  width: auto;
}

/**/

div.admin_nekretnine_info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
}

div.admin_nekretnine_info p {
  font-size: calc(var(--p-font-size) * 0.9);
}

div.admin_nekretnine_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}

div.admin_nekretnine_list > div {
  display: flex;
  flex: 0 0 100%;
  padding-bottom: 8px;
}

div.admin_nekretnine_list > div + div {
  border-top: 1px solid #eee;
  padding-top: 8px;
}

div.admin_nekretnine_list > div > div.img {
  display: flex;
  flex: 0 0 160px;
  justify-content: space-between;
  margin-right: 24px;
}

div.admin_nekretnine_list > div > div.img > span {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex: auto;
  justify-content: center;
  padding: 4px;
}

div.admin_nekretnine_list > div > div.img > span:hover {
  background-color: #eee;
}

div.admin_nekretnine_list > div.deactivated > div.img > span {
  background-color: #aaa;
}

div.admin_nekretnine_list > div.selected > div.img > span {
  background-color: var(--color-sub);
}

div.admin_nekretnine_list > div > div.img > span input {
  margin: 0;
}

div.admin_nekretnine_list > div > div.img > a {
  flex: 0 0 120px;
  margin-left: 12px;
}

div.admin_nekretnine_list > div > div.img > a img {
  aspect-ratio: 3 / 2;
  background-color: #eee;
  border: 1px solid #eee;
  display: block;
  width: 100%;
}

div.admin_nekretnine_list > div > div.data {
  display: flex;
  flex: auto;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 1.35em;
  justify-content: space-between;
}

div.admin_nekretnine_list > div > div.data > span {
  display: block;
}

div.admin_nekretnine_list > div > div.data > span.head {
  font-weight: 600;
}

div.admin_nekretnine_list > div > div.data > span ul {
  display: flex;
  list-style: none;
}

div.admin_nekretnine_list > div > div.data > span ul li + li {
  border-left: 1px solid #eee;
  margin-left: 10px;
  padding-left: 10px;
}

div.admin_nekretnine_sum {
  border: 1px solid #eee;
  margin-top: 32px;
  padding: 24px;
}

div.admin_nekretnine_sum > div.akcija {
  align-items: center;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.admin_nekretnine_sum > div.akcija span {
  align-items: center;
  display: flex;
}

#selectAll {
  margin: 0;
}

div.admin_nekretnine_sum > div.akcija a {
  border: 0;
  display: block;
  margin-left: 8px;
  white-space: nowrap;
}

div.admin_nekretnine_sum > div.akcija > div {
  display: flex;
  flex: 0 0 min(50%, 200px);
  justify-content: flex-end;
}

div.admin_nekretnine_sum > div.akcija > div > * {
  flex: 1 1 50%;
}

div.admin_nekretnine_sum > div.prikaz {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

div.admin_nekretnine_sum > div.akcija + div.prikaz {
  border-top: 1px solid #eee;
  margin-top: 16px;
  padding-top: 16px;
}

div.admin_nekretnine_sum > div.prikaz > span {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

div.admin_nekretnine_sum > div.prikaz > div {
  align-items: center;
  display: flex;
}

div.admin_nekretnine_sum > div.prikaz p {
  font-size: calc(var(--p-font-size) * 0.9);
  margin-right: 16px;
}

div.admin_nekretnine_sum > div.prikaz div a {
  border: 0;
  display: block;
}

div.admin_nekretnine_sum > div.prikaz div a.disabled {
  color: #ccc;
}

div.admin_nekretnine_sum > div.prikaz > div span {
  font-size: calc(var(--p-font-size) * 0.9);
}

/* */

#admin_nekretnine_main {
  display: none;
}

/* */

div.admin_baneri_listing {
  font-size: 1.4em;
  margin-top: 32px;
}

div.admin_baneri_listing details {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
}

div.admin_baneri_listing details + details {
  margin-top: 8px;
}

div.admin_baneri_listing details:hover {
  border: 1px solid var(--color-sub);
}

div.admin_baneri_listing details summary {
  cursor: pointer;
  display: flex;
  padding: 16px;
}

div.admin_baneri_listing details summary.neprocitana {
  background-color: #f7f7f7;
}

div.admin_baneri_listing details:not([open]) summary:hover,
div.admin_baneri_listing details:not([open]) summary:focus {
  color: #000;
}

div.admin_baneri_listing details[open] summary {
  border: 1px solid #003eff;
  background: #007fff;
  color: #ffffff;
}

div.admin_baneri_listing details[open] summary + div {
  padding-top: 8px;
}

div.admin_baneri_listing details[open] summary + div.upiti {
}

div.admin_baneri_listing .ukupno {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  margin-top: 8px;
  padding: 12px 16px;
}

div.admin_baneri_listing .naziv {
  flex: 1 0 auto;
}

div.admin_baneri_listing .trajanje {
  display: flex;
  flex: 0 0 120px;
  justify-content: flex-end;
}

div.admin_baneri_listing .datum {
  display: flex;
  flex: 0 0 75px;
  justify-content: flex-end;
}

div.admin_baneri_listing .status {
  display: flex;
  flex: 0 0 20px;
  justify-content: flex-end;
}

div.admin_baneri_listing details > div > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}

div.admin_baneri_listing details > div.upiti > div {
  flex-wrap: wrap;
  gap: 8px;
}

div.admin_baneri_listing details > div.upiti > div + div {
  border-top: 1px dashed #eee;
}

div.admin_baneri_listing details > div > div.poruka {
  flex-wrap: wrap;
  gap: 8px;
}

div.admin_baneri_listing details > div > div.poruka span {
  flex: 0 0 100%;
  line-height: 150%;
}

div.admin_baneri_listing details > div > div.del {
  border-top: 1px solid #ddd !important;
  flex-wrap: wrap;
  padding: 16px;
}

div.admin_baneri_listing .info {
  background-color: #f7f7f7;
  border-bottom: 1px solid #eee;
  padding: 12px 8px;
}

div.admin_baneri_listing .period {
  flex: 1 0 auto;
}

div.admin_baneri_listing .prikaz {
  display: flex;
  flex: 0 0 60px;
  justify-content: flex-end;
}

div.admin_baneri_listing .klik {
  display: flex;
  flex: 0 0 40px;
  justify-content: flex-end;
}

/* ##########
### FOOT ###
########## */

footer {
  background: #fff;
  font-size: 1.5em;
}

#pre_footer {
  align-items: center;
  background: #eee;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  padding: 32px 0;
}

#pre_footer > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  list-style: none;
  width: min(90%, 1200px);
}

#pre_footer li {
  white-space: nowrap;
}

#foot_support {
  background: var(--color-sub);
  color: #fff;
  display: flex;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 32px 5vw;
}

#foot_support a {
  color: #fff;
  text-decoration: underline;
}

#foot_support a:hover {
  text-decoration: none;
}

#foot_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  justify-content: center;
  margin: 32px auto;
  width: min(1200px, 90%);
}

#foot_info {
  color: #aaa;
  display: flex;
  font-size: 0.9em;
  list-style: none;
  justify-content: center;
  margin: 32px auto;
  width: min(1200px, 90%);
}

#foot_info li {
  padding: 0 12px;
  text-align: center;
}

#foot_info li + li {
  border-left: 1px solid #aaa;
}

#foot_info a {
}

div.use_cookie {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  bottom: -1px;
  font-size: 1.5em;
  padding: 20px;
  position: fixed;
  width: 100%;
  z-index: 10000;
  display: none;
}

div.use_cookie p {
  line-height: 160%;
}

div.use_cookie span {
  color: #f00;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  text-decoration: underline;
}

div.use_cookie span:hover {
  color: #000;
  text-decoration: none;
}

/* */

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  /*  transition is applied to lazyloaded not lazyload */
  transition: opacity 300ms;
}

/**/

@media only screen and (max-width: 1300px) {
  header.index {
    width: 100%;
  }
}

@media only screen and (max-width: 1050px) {
  #index_search ul {
    flex-wrap: wrap;
  }

  #index_search li {
    flex: 0 0 calc((100% - 8px) / 2);
  }

  div.index_nekretnine > ul {
    grid-template-columns: 1fr 1fr;
  }

  section,
  aside {
    grid-column: 1 / 13;
  }

  aside {
    margin-top: 32px;
  }

  #admin_nekretnine_main {
    background-color: #fff;
    border: 0px solid #eee;
    display: flex;
    font-size: var(--p-font-size);
    gap: 4px;
    margin-top: 24px;
    max-width: 90vw;
    overflow-x: scroll;
    padding: 8px 0;
    position: sticky;
    top: 0px;
    z-index: 100;
  }

  @-moz-document url-prefix() {
    #admin_nekretnine_main {
      max-width: 90vw;
    }
  }

  #admin_nekretnine_main a {
    align-items: center;
    background-color: var(--color-sub);
    border: 1px solid var(--color-sub);
    border-radius: 4px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    text-decoration: none;
    white-space: nowrap;
  }

  #admin_nekretnine_main a span {
    height: 16px;
    margin-right: 8px;
    width: 16px;
  }

  div.admin_user_data.nekretnine {
    margin-top: 0;
  }

  div.admin_user_data.nekretnine div p.ok {
    margin-top: 24px;
  }

  #admin_nekretnine_vrsta {
    padding-top: 0;
  }

  div.banneri {
    grid-auto-flow: row dense;
    grid-template-columns: 1fr 1fr;
  }

  div.banneri div.veliki {
    align-items: stretch;
    aspect-ratio: auto;
  }

  div.banneri div.veliki a {
    aspect-ratio: auto;
  }

  /* */
  div.ban_dole {
    display: none;
  }

  #gore,
  #admin_info {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    top: auto;
    width: 100%;
    z-index: 1000;
  }

  #admin_info {
    padding: 0;
  }

  #gore > span,
  #admin_info > span {
    align-items: center;
    background: var(--color-sub);
    border-top: 1px solid #fff;
    color: #fff;
    display: flex;
    font-family: var(--font-header);
    font-size: 1.4em;
    justify-content: center;
    padding: 20px 5vw;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
  }

  #gore > span:hover {
    background: #555;
  }

  #gore > span > span {
    display: flex;
  }

  #gore span.setting,
  #admin_info span.admin {
    display: inline-block;
    height: 20px;
    margin-right: 5vw;
    width: 20px;
  }

  #okvirFilter1 {
    height: 0;
    transition: all 0.5s;
  }

  .show #okvirFilter1 {
    height: calc(392px + 10vw);
    opacity: 1;
  }

  #okvirFilter2 {
    height: 0;
    transition: all 0.5s;
  }

  .show #okvirFilter2 {
    height: calc(275px + 10vw);
    opacity: 1;
    position: relative;
    z-index: 1000;
  }

  #admin_nekretnine_side {
    display: none;
  }

  /* admin */
  aside div.kontakt > div.info + div.info {
    display: none;
  }

  aside div.kontakt > div.info p {
  }

  /**/

  #admin_nekretnine_vrsta ol {
    border-top: 1px solid #ccc;
    margin-top: 32px;
    padding-top: 32px;
  }

  /**/

  #pretragaMain2 {
    padding: 5vw;
  }

  aside div.kontakt > div.cta {
    align-items: center;
    background: #fff;
    border-top: 1px solid var(--color-sub);
    bottom: 0;
    left: 0;
    padding: 10px 5vw;
    position: fixed;
    top: auto;
    width: 100%;
    z-index: 10;
  }

  aside div.kontakt > div.cta div.logo {
    aspect-ratio: 1 / 1;
    background-color: transparent;
    border-color: #eee;
    border-radius: 50%;
    display: flex;
    flex: 0 0 64px;
    overflow: hidden;
  }

  aside div.kontakt > div.cta div.logo a {
    padding: 0;
  }

  aside div.kontakt > div.cta div.logo img {
    width: 100%;
  }

  aside #admin_info div.info {
    padding: 5vw;
  }

  aside #admin_info div.info p {
    display: flex;
  }

  aside #admin_info div.info p.user {
    border: 0;
  }

  aside #admin_info div.info p:not(.user) a {
    background-color: var(--color-sub);
    border-radius: 4px;
    color: #fff;
    display: flex;
    flex: 0 0 100%;
    padding: 8px 16px;
    text-decoration: none;
  }

  footer {
    padding-bottom: 60px;
  }

  footer.det {
    padding-bottom: 85px;
  }

  footer.index {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 900px) {
  header {
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    height: 45px;
    transition: all 0.25s;
    overflow: hidden;
  }

  header.show {
    height: 350px;
  }

  div.headline {
    border: 0;
  }

  #ham {
    background: var(--color-sub);
    display: block;
    height: 45px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 45px;
  }

  .burger-container {
    cursor: pointer;
    display: inline-block;
    height: 45px;
    position: absolute;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    width: 45px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1000;
  }

  .burger-container #burger {
    display: block;
    height: 8px;
    margin: -4px auto 0;
    position: relative;
    top: 50%;
    width: 18px;
  }

  .bar {
    background: #fff;
    display: block;
    height: 1px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
    width: 100%;
  }

  .topBar {
    transform: translateY(0px) rotate(0deg);
  }

  .btmBar {
    transform: translateY(6px) rotate(0deg);
  }

  .open .burger-container {
    transform: rotate(90deg);
  }
  .open .burger-container #burger .bar {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.2s;
  }
  .open .burger-container #burger .bar.topBar {
    transform: translateY(4px) rotate(45deg);
  }
  .open .burger-container #burger .bar.btmBar {
    transform: translateY(3px) rotate(-45deg);
  }

  .index #ham {
    display: none;
  }

  /* */

  div.headline > div {
    justify-content: flex-end;
  }

  div.headline div.mail {
    display: none;
  }

  #mainLogo {
    position: absolute;
    font-size: 2.5em;
    top: 10px;
  }

  .index #mainLogo {
    display: block;
  }

  nav {
    height: 0;
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
  }

  .show nav {
    height: auto;
  }

  #maniNav {
    flex-wrap: wrap;
    width: 100%;
  }

  #mainNav {
    _display: none;
  }

  #mainNav.show {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
  }

  #mainNav a {
    line-height: 35px;
  }

  #maniNav li {
    border-bottom: none;
    border-top: none;
    flex: 1 0 100%;
  }

  #maniNav li + li {
    border-top: 1px solid #fff;
    margin: 0;
  }

  #mainNav > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  #zastave {
    display: none;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 65px;
    width: 280px;
  }

  .show #zastave {
    display: flex;
  }

  .index #zastave {
    align-self: flex-end;
    display: flex;
    margin-left: 0;
    margin-right: 0;
    position: static;
    width: 220px;
  }
}

@media only screen and (max-width: 700px) {
  div.index_banneri ul {
    grid-template-columns: 1fr;
  }

  div.index_kategorije ul {
    grid-template-columns: 1fr 1fr;
  }

  ul.gradovi {
    grid-template-columns: 1fr 1fr;
  }

  #foot_info {
    flex-wrap: wrap;
  }

  #foot_info li {
    flex: 0 0 100%;
  }

  #foot_info li + li {
    border-left: 0;
    margin-top: 8px;
  }

  div.admin_nekretnine_filter li {
    flex: 0 0 calc((100% - 4px) / 2);
  }
}

@media only screen and (max-width: 600px) {
  #nekretnineList > li {
    flex-wrap: wrap;
  }

  #nekretnineList > li.ban {
    background-color: #fff;
    padding-bottom: 4px;
    padding-top: 16px;
    position: sticky;
    top: -1px;
    z-index: 10;
  }

  #nekretnineList > li.ban.pinned {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 5px -5px;
    padding-bottom: 10px;
  }

  #nekretnineList > li.ban.no {
    box-shadow: none !important;
    padding-bottom: 0 !important;
    position: static;
  }

  #nekretnineList > li.ban.pinned > span {
    align-items: center;
    background-color: #fff;
    bottom: 34px;
    display: flex;
    font-family: var(--font-header);
    font-size: 2em;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 40px;
    z-index: 100;
  }

  #nekretnineList > li.ban.slika {
    box-shadow: none !important;
    padding-bottom: 0 !important;
    position: static;
  }

  #nekretnineList > li.ban.slika > div img {
    aspect-ratio: 1 / 1.5;
  }

  #nekretnineList li > a,
  #nekretnineList li > div {
    flex: 0 0 100%;
  }

  #nekretnineList li > div {
    margin: 24px 0 0 0;
  }

  #nekretnineList li > div ul {
    margin-top: 24px;
    position: static;
  }

  #nekretnineList li > div > div {
    margin-top: 24px;
    position: static;
  }

  /**/

  div.main_gallery div.photos {
    bottom: 8px;
    left: 8px;
    padding: 8px;
  }

  /**/

  div.main_lokacija {
    justify-content: space-between;
  }

  div.main_lokacija div {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  div.main_price > div {
    justify-content: space-between;
  }

  div.main_price > div div {
    flex: none;
  }

  div.main_oglas > div {
    aspect-ratio: 1 / 1;
    background-color: #eee;
    width: 100%;
  }

  div.main_karakteristike li {
    justify-content: space-between;
    width: 100%;
  }

  /**/

  ul.text.admin {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
  }

  ul.text.admin li {
    display: flex;
    flex: 0 0 100%;
  }

  ul.text.admin li + li {
    margin: 0;
  }

  ul.text.admin a {
    background-color: var(--color-sub);
    border-radius: 4px;
    color: #fff;
    display: flex;
    flex: 0 0 100%;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.5s;
  }

  ul.text.admin a:hover {
    background-color: #000;
  }

  div.admin_nekretnine_settings {
    border: 0;
    padding: 0;
  }

  div.admin_nekretnine_list > div > div.img {
    flex: 0 0 90px;
    flex-direction: column-reverse;
  }

  div.admin_nekretnine_list > div > div.img > a {
    flex: 0 0 60px;
    margin: 0 0 12px 0;
  }

  /**/

  fieldset.upit li.box {
    flex-wrap: wrap;
  }

  fieldset.upit .box select {
    width: 250px;
  }
}

@media only screen and (max-width: 550px) {
  header.index.lazyloaded {
    background: #eee url('images/head_m.jpg') no-repeat center;
    background-size: cover;
  }

  #nekretnineList li > div > div.agencija {
    height: 48px;
    width: 48px;
  }

  div.rez {
    flex-wrap: wrap;
  }

  div.rez > div {
    flex: 0 0 100%;
    justify-content: space-between;
  }

  a.brz {
    flex: 1;
    padding: 2px 6px;
  }

  span.ukupno {
    margin-top: 8px;
  }

  #pre_footer > ul + ul {
    border-top: 1px solid #ddd;
    padding-top: 24px;
  }

  #pre_footer li {
    flex: 0 0 100%;
    text-align: center;
  }

  #foot_nav {
    gap: 24px;
  }

  #foot_nav li {
    flex: 0 0 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 550px) {
  div.agencija_karakteristike {
    flex-wrap: wrap;
  }

  div.agencija_karakteristike ul {
    flex: 0 0 100%;
    margin-top: 32px;
  }

  div.admin_nekretnine_sum > div.akcija > div {
    flex: 0 0 100%;
  }

  div.admin_nekretnine_sum > div.prikaz > * {
    flex: 0 0 100%;
  }

  div.admin_nekretnine_sum > div.prikaz > div {
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    padding-top: 16px;
  }

  div.admin_nekretnine_sum > div.prikaz > div span {
    display: flex;
    justify-content: center;
    flex: auto;
  }

  div.admin_nekretnine_sum > div.prikaz div a {
    border: 1px solid #eee;
    transition: all 0.5s;
  }
}

@media only screen and (max-width: 500px) {
  header.index {
    height: auto;
    min-height: auto;
  }

  .index #zastave {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 65px;
    width: 280px;
  }

  .index #zastave a {
    color: #fff;
  }

  h1.index {
    margin-bottom: 7.5vw;
    margin-top: 50px;
    position: static;
    transform: none;
  }

  #index_search {
    margin: 5vw auto;
    position: static;
  }

  #index_search li {
    flex: 0 0 100%;
  }

  #index_search input,
  #index_search select {
    font-size: 1.35em;
  }

  #index_search input {
    flex: 0 0 calc(50% - 4px);
  }

  div.index_nekretnine > ul {
    grid-template-columns: 1fr;
  }

  div.index_nekretnine > ul,
  div.index_banneri ul,
  div.index_kategorije ul {
    gap: 16px;
  }

  /**/
  main {
    margin: 32px auto;
  }

  #kategorijaGradovi {
    padding: 0;
    gap: 4px;
  }

  #kategorijaGradovi a {
    background-color: var(--color-sub);
    border-radius: 4px;
    color: #fff;
    flex: 0 0 calc(50% - 2px);
    padding: 12px;
    text-decoration: none;
  }

  #sortField {
    flex-wrap: wrap;
    gap: 24px;
  }

  #sortField select {
    flex: 0 0 100%;
  }

  /**/
  div.main_fetures {
    flex-wrap: wrap;
    gap: 16px;
  }

  div.main_fetures div {
    flex: 0 0 100%;
  }

  fieldset.upit .box select {
    width: 200px;
  }

  /**/

  #agencijeList {
    grid-template-columns: 1fr;
  }

  /**/
  div.banneri {
    grid-template-columns: 1fr;
  }

  div.banneri div.veliki a {
    aspect-ratio: 1 / 1;
  }

  #foot_support {
    flex-wrap: wrap;
  }

  #foot_support li {
    flex: 0 0 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 450px) {
  div.index_kategorije li {
    aspect-ratio: 3 / 2;
    grid-column: 1 / span 2;
  }

  div.index_kategorije li img {
    aspect-ratio: 3 / 2;
  }

  fieldset.upit input.text,
  fieldset.upit input.textx,
  fieldset.upit input.textxx,
  input.slike,
  fieldset.upit select,
  fieldset.upit textarea,
  fieldset.upit input.submit,
  #slikeBri,
  .richText,
  .choices__inner {
    padding: 8px 13px;
  }

  div.agencija_karakteristike {
    flex-wrap: wrap;
  }

  div.oglasavanje_paketi,
  div.oglasavanje_banneri {
    font-size: var(--p-font-size);
  }

  /**/

  div.admin_nekretnine_sum > div.akcija > div {
    flex-wrap: wrap;
  }

  div.admin_nekretnine_sum input {
    margin: 16px 0 0 0;
  }
}

@media only screen and (max-width: 400px) {
  .hide400 {
    display: none;
  }

  #kategorijaGradovi {
    font-size: 1.35em;
  }

  #kategorijaGradovi.nl {
    font-size: 1.25em;
  }

  ul.gradovi {
    grid-template-columns: 1fr;
  }

  div.admin_nekretnine_show > a {
    flex: 1 0 auto;
  }

  div.admin_nekretnine_filter li {
    flex: 0 0 100%;
  }

  div.admin_nekretnine_filter select,
  div.admin_nekretnine_filter input {
    font-size: 1.3em;
    padding: 8px 10px;
  }

  div.admin_nekretnine_list > div > div.data {
    font-size: 1.3em;
  }

  div.admin_nekretnine_sum {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/**/

.choices,
.choices__input {
  font-size: 1em !important;
}

/**/

.ts-dropdown,
.ts-control {
  font-size: 1.7em !important;
  z-index: 1;
}

.ts-control {
  background: #f7f7f7 !important;
  border: 1px solid #eee !important;
  display: flex !important;
  height: 48px;
  padding: 10px 15px !important;
  width: 300px !important;
}

.ts-control input {
  color: #000 !important;
  font-size: 1em !important;
  font-weight: 300 !important;
}

.ts-dropdown {
  border-radius: 0 !important;
  border-top: 1px solid #d0d0d0 !important;
  margin: 0 !important;
}

.ts-control > div.item {
  align-items: center;
  display: flex;
}

@media only screen and (max-width: 600px) {
  .ts-dropdown,
  .ts-control {
    font-size: calc(1.6em * 0.95) !important;
  }

  .ts-control {
    height: 45px;
    width: 250px !important;
  }
}

@media only screen and (max-width: 500px) {
  .ts-control {
    width: 200px !important;
  }
}

/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHGIVzY4SY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHGItzYw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEGIVzY4SY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEGItzYw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fdM3mDbRS.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fdMPmDQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCGIVzY4SY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCGItzYw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
