body {
    position: relative;
    overflow-x: hidden;
	background-color: #f1f1f1;
}
body,
html { height: 100%;}

.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}


/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.0s ease;
    -moz-transition: all 0.0s ease;
    -o-transition: all 0.0s ease;
    transition: all 0.0s ease;
}

#wrapper.toggled {
    padding-left: 260px;
}

#sidebar-wrapper {
    z-index: 1000;
    left: 260px;
    width: 0;
    height: 100%;
    margin-left: -260px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.0s ease;
    -moz-transition: all 0.0s ease;
    -o-transition: all 0.0s ease;
    transition: all 0.0s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 260px;
}

#page-content-wrapper {
    width: 100%;
    padding-top: 32px;
	position: static;
}

#wrapper.toggled #page-content-wrapper {
    position: fixed;
    margin-right: -260px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 260px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
    color: #fff;
}
.sidebar-nav li:nth-child(2):before {
    background-color: #ec1b5a;   
}
.sidebar-nav li:nth-child(3):before {
    background-color: #314190;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #79aefe;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #279636;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #9933cc;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #5846bf;   
}
.sidebar-nav li:nth-child(8):before {
    background-color: #35acdf;   
}
.sidebar-nav li:nth-child(9):before {
    background-color: #e8473f;   
}
.sidebar-nav li:nth-child(10):before {
    background-color: #314190;   
}
.sidebar-nav li:nth-child(11):before {
    background-color: #ec1b5a;   
}
.sidebar-nav li:nth-child(12):before {
    background-color: #279636;   
}
.sidebar-nav li:nth-child(13):before {
    background-color: #9933cc;   
}
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;
}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
	font-family: 'Roboto', sans-serif;

}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #242424;
    box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  top: 20px;  
  z-index: 999;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}

.hamburger.static {
  position: absolute;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;

}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);    
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -ms-transform: translate3d(-100px,0,0);
  transform: translate3d(-100px,0,0);    
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
position: absolute;
  left: 0;
  height: 4px;
  width: 100%;

}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #1a1a1a;
}

.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;   
  transition: all .35s ease-in-out;
}

.hamburger1 {
  top: 20px;  
  z-index: 999;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}

.hamburger1.static {
  position: absolute;
}

.hamburger1:hover,
.hamburger1:focus,
.hamburger1:active {
  outline: none;

}
.hamburger1.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);    
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;     
}
.hamburger1.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -ms-transform: translate3d(-100px,0,0);
  transform: translate3d(-100px,0,0);     
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out; 
}

.hamburger1.is-closed .hamb-top,
.hamburger1.is-closed .hamb-middle,
.hamburger1.is-closed .hamb-bottom,
.hamburger1.is-open .hamb-top,
.hamburger1.is-open .hamb-middle,
.hamburger1.is-open .hamb-bottom {
position: absolute;
  left: 0;
  height: 4px;
  width: 100%;

}
.hamburger1.is-closed .hamb-top,
.hamburger1.is-closed .hamb-middle,
.hamburger1.is-closed .hamb-bottom {
  background-color: #1a1a1a;
}

.hamburger1.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;
}
.hamburger1.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger1.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;     
}


.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #1a1a1a;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
 
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);    
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
  -moz-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
  -ms-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08); 
  transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);    
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
  -moz-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
  -ms-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
  transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 500px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);    
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -ms-transform: translate3d(-100px,0,0);
  transform: translate3d(-100px,0,0);    
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out; 
  transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}

.overlay1 {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}

.copyright {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.urlpozadina {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.urlpozadina:hover {
  color: #000000;
  text-decoration: underline;
}

.urlpozadina1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.urlpozadina1:hover {
  color: #000000;
  text-decoration: underline;
}

.urlpozadina2 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.urlpozadina2:hover {
  color: #000000;
  text-decoration: underline;
}

.fixed {
  position: fixed;
}

.button {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: none;
  background: #ec1b5a;
  padding: 8px 16px;
  cursor:default;
}

.button1 {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: none;
  background: #ec1b5a;
  padding: 8px 16px;
  cursor:default;
}

.button2 {
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: none;
  background: #279636;
  padding: 6px 12px;
  cursor:default;
}

.glavnipanel {
  width: 780px;
  background: #ffffff;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-top-left-radius: 5px;
  -moz-border-top-right-radius: 5px;
  -o-border-top-left-radius: 5px;
  -o-border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 0px;
  margin-bottom:10px;
}

.btn-lg {
  padding: 7px 13px;
  font-size: 14px;
  border-radius: 5px;
  line-height: 1.42857143;
}

.btn-default {
  background: #ffffff;
  border-color: #ccc;
  color: #ec1b5a;
}
.btn-default:hover {
  background: #ec1b5a;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #ec1b5a;
}

.btn-default1 {
  background: #ffffff;
  border-color: #ccc;
  color: #79aefe;
}
.btn-default1:hover {
  background: #79aefe;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default1:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #79aefe;
}

.btn-default2 {
  background: #ffffff;
  border-color: #ccc;
  color: #279636;
}
.btn-default2:hover {
  background: #279636;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default2:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #279636;
}

.btn-default3 {
  background: #ffffff;
  border-color: #ccc;
  color: #7d5d81;
}
.btn-default3:hover {
  background: #7d5d81;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default3:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #7d5d81;
}

.btn-default4 {
  background: #ffffff;
  border-color: #ccc;
  color: #279636;
}
.btn-default4:hover {
  background: #279636;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default4:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #279636;
}

.btn-default5 {
  background: #ffffff;
  border-color: #ccc;
  color: #5846bf;
}
.btn-default5:hover {
  background: #5846bf;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default5:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #5846bf;
}

.btn-default6 {
  background: #ffffff;
  border-color: #ccc;
  color: #35acdf;
}
.btn-default6:hover {
  background: #35acdf;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default6:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #35acdf;
}

.btn-default7 {
  background: #ffffff;
  border-color: #ccc;
  color: #e8473f;
}
.btn-default7:hover {
  background: #e8473f;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default7:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #e8473f;
}

.btn-default8 {
  background: #ffffff;
  border-color: #ccc;
  color: #314190;
}
.btn-default8:hover {
  background: #314190;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default8:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #314190;
}

.btn-default9 {
  background: #ffffff;
  border-color: #ccc;
  color: #9933cc;
}
.btn-default9:hover {
  background: #9933cc;
  color: #ffffff;
  border-color: #f9f9f9;
}
.btn-default9:focus {
  background: #ffffff;
  border-color: #ccc;
  color: #9933cc;
}

.marginbottom {
  margin-bottom: 10px;
}

.font-size1 {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.paddingtop {
  padding-top: 5px;
}

.paddingtopbottom {
  padding-top:30px;
  padding-bottom:20px;
}

.paddingtopbottom1 {
  padding-top:70px;
  padding-bottom:20px;
}

.maliprikaz {
  display: none;
}

.velikiprikaz {
  display: block;
}

.velikiprikaz1 {
  display: block;
}

.velikiprikaz2 {
  display: block;
}

.kontaktiprikaz {
  display: block;
}

.povratakvrhprikaz {
  display: none;
}

.srednjiprikaz {
  display: none;
}

.srednjimaliprikaz1 {
  display: none;
}

.margintop {
  margin-top: 40px;
}

.margintop1 {
  margin-top:15px;
}

.margintopbottom3 {
  margin-top: 10px;
  margin-bottom: 0px;
} 

.padding-gore-dolje-lijevo-desno {
  padding-top:20px;
  padding-bottom:20px;
  padding-left:20px;
  padding-right:20px;
}

.padding-gore-dolje-lijevo-desno1 {
  padding-top:10px;
  padding-bottom:10px;
  padding-left:10px;
  padding-right:10px;
}

.padding-gore-dolje-lijevo-desno2 {
  padding-top:10px;
  padding-bottom:10px;
  padding-left:20px;
  padding-right:20px;
}

.padding-gore-dolje-lijevo-desno3 {
  padding-top:20px;
  padding-bottom:2px;
  padding-left:20px;
  padding-right:20px;
}

.padding-gore-dolje-lijevo-desno4 {
  padding-top:20px;
  padding-bottom:20px;
  padding-left:20px;
  padding-right:20px;
}

.padding-gore-dolje-lijevo-desno5 {
  padding-top:0px;
  padding-bottom:0px;
  padding-left:20px;
  padding-right:20px;
}

.font-size2 {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.margintopbottom {
  margin-top: 20px;
  margin-bottom: 20px;
}

.font-family {
  font-family: 'Roboto', sans-serif;
}

.h1dekoracija {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0px;
  cursor:default;
}

.font-weight {
  font-weight: 500;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.secondary-header {
  border-top: 4px solid #ec1b5a;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header1 {
  border-top: 4px solid #79aefe;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header2 {
  border-top: 4px solid #7d5d81;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header3 {
  border-top: 4px solid #279636;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header4 {
  border-top: 4px solid #5846bf;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header5 {
  border-top: 4px solid #35acdf;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header6 {
  border-top: 4px solid #e8473f;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header7 {
  border-top: 4px solid #314190;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.secondary-header8 {
  border-top: 4px solid #9933cc;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.headerwidthheight {
  width: 220px;
  height: 200px;
}

.headerwidthheight1 {
  width: 320px;
  height: 180px;
}

.headerwidthheight2 {
  width: 320px;
  height: 240px;
}

.headerwidthheight3 {
  max-width: 600px;
}

.headerwidthheight4 {
  width: 250px;
  height: 250px;
}

.font-size5 {
  font-weight: 500;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}

.font-size6 {
  font-weight: 500;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size7 {
  font-weight: 400;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size6-1 {
  font-weight: 500;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size7-1 {
  font-weight: 400;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size10 {
  font-size:18px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.font-size13 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.font-size-back-to-top {
  font-weight: 500;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  cursor: default;
}

.font-size-izbornik {
  font-family: 'Roboto', sans-serif;
  color: #ec1b5a;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik1 {
  font-family: 'Roboto', sans-serif;
  color: #79aefe;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik2 {
  font-family: 'Roboto', sans-serif;
  color: #279636;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik3 {
  font-family: 'Roboto', sans-serif;
  color:#7d5d81;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik4 {
  font-family: 'Roboto', sans-serif;
  color: #5846bf; 
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik5 {
  font-family: 'Roboto', sans-serif;
  color:#35acdf;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik6 {
  font-family: 'Roboto', sans-serif;
  color:#e8473f;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik7 {
  font-family: 'Roboto', sans-serif;
  color:#279636;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik8 {
  font-family: 'Roboto', sans-serif;
  color: #314190;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-izbornik9 {
  font-family: 'Roboto', sans-serif;
  color: #9933cc;
  margin-left: 55px;
  font-size: 22px;
  line-height: 39px;
  display: inline;
  letter-spacing: -0.5px;
  font-weight: 500;
  cursor: default;
}

.font-size-naslov {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.srednjimaliprikaz {
  display: none;
}

.effect6
{
  	position:relative;       
    -webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 5px 10px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.1) inset;
}
.effect6:before, .effect6:after
{
	content:"";
    position:static; 
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:50%;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
} 
.effect6:after
{
	right:10px; 
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg); 
       -moz-transform:skew(8deg) rotate(3deg);     
        -ms-transform:skew(8deg) rotate(3deg);     
         -o-transform:skew(8deg) rotate(3deg); 
            transform:skew(8deg) rotate(3deg);
}

/*/------------------------------------------------------------------------------/*/
/*/------------------------------------------------------------------------------/*/
/*/------------------------------------------------------------------------------/*/
/*/----------------------------------- Mobile -----------------------------------/*/
/*/------------------------------------------------------------------------------/*/
/*/------------------------------------------------------------------------------/*/
/*/------------------------------------------------------------------------------/*/

@media (max-width: 1170px) {

#page-content-wrapper {
    padding-top: 60px;
}

.glavnipanel {
  width: 780px;
  background: #ffffff;
  margin-top: 10px;
}

.srednjimaliprikaz {
  display: block;
}

.srednjimaliprikaz1 {
  display: none;
}

.kontaktiprikaz {
  display: block;
}

.povratakvrhprikaz {
  display: none;
}

}








@media (max-width: 991px) {

#page-content-wrapper {
    padding-top: 60px;
}

.glavnipanel {
  max-width: 100%;
  background: #ffffff;
  margin-bottom: 20px;
  margin-top: 10px;
}

.headerwidthheight3 {
  max-width: 550px;
}

.marginbottom {
  margin-bottom: 40px;
}

.margintop1 {
  margin-top: 0px;
}

.velikiprikaz1 {
  display: none;
}

.velikiprikaz2 {
  display: block;
}

.kontaktiprikaz {
  display: none;
}

.srednjiprikaz {
  display: block;
}

.srednjimaliprikaz1 {
  display: none;
}

.povratakvrhprikaz {
  display: block;
}

.btn-default {
  background: #ffffff;
  border-color: #ccc;
  color: #ec1b5a;
}
.btn-default:hover {
  background: #ffffff;
  color: #ec1b5a;
  border-color: #ccc;
}

.btn-default1 {
  background: #ffffff;
  border-color: #ccc;
  color: #79aefe;
}
.btn-default1:hover {
  background: #ffffff;
  color: #79aefe;
  border-color: #ccc;
}

.btn-default2 {
  background: #ffffff;
  border-color: #ccc;
  color: #279636;
}
.btn-default2:hover {
  background: #ffffff;
  color: #279636;
  border-color: #ccc;
}

.btn-default3 {
  background: #ffffff;
  border-color: #ccc;
  color: #7d5d81;
}
.btn-default3:hover {
  background: #ffffff;
  color: #7d5d81;
  border-color: #ccc;
}

.btn-default4 {
  background: #ffffff;
  border-color: #ccc;
  color: #279636;
}
.btn-default4:hover {
  background: #ffffff;
  color: #279636;
  border-color: #ccc;
}

.btn-default5 {
  background: #ffffff;
  border-color: #ccc;
  color: #5846bf;
}
.btn-default5:hover {
  background: #ffffff;
  color: #5846bf;
  border-color: #ccc;
}

.btn-default6 {
  background: #ffffff;
  border-color: #ccc;
  color: #35acdf;
}
.btn-default6:hover {
  background: #35acdf;
  color: #ffffff;
  border-color: #f9f9f9;
}

.btn-default7 {
  background: #ffffff;
  border-color: #ccc;
  color: #e8473f;
}
.btn-default7:hover {
  background: #ffffff;
  color: #e8473f;
  border-color: #ccc;
}

.btn-default8 {
  background: #ffffff;
  border-color: #ccc;
  color: #314190;
}
.btn-default8:hover {
  background: #ffffff;
  color: #314190;
  border-color: #ccc;
}

.btn-default9 {
  background: #ffffff;
  border-color: #ccc;
  color: #9933cc;
}
.btn-default9:hover {
  background: #ffffff;
  color: #9933cc;
  border-color: #ccc;
}

.font-size-back-to-top {
  font-weight: 400;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  cursor: default;
}

.sidebar-nav li {
  position: relative; 
  line-height: 20px;
  display: inline-block;
  width: 100%;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
}

}















@media (max-width: 767px) {

#page-content-wrapper {
    padding-top: 60px;
}

.glavnipanel {
  width: 450px;
  background: #ffffff;
  margin-bottom: 20px;
  margin-top: 10px;
}

.srednjiprikaz {
  display: block;
}

.velikiprikaz1 {
  display: none;
}

.velikiprikaz2 {
  display: none;
}

.srednjimaliprikaz1 {
  display: block;
}

.marginbottom {
  margin-bottom: 40px;
}

.margintop1 {
  margin-top: 0px;
}

.font-size1 {
  font-size: 10px;
  font-family: 'Roboto', sans-serif;
}

div.center {
  margin-left: auto;
  margin-right: auto;
  width: 450px;
}

.paddingtopbottom1 {
  padding-top:0px;
  padding-bottom:20px;
  text-align:center;
}

.headerwidthheight3 {
  max-width: 320px;
}

.font-size10 {
  font-size:16px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.margintop {
  margin-top: 10px;
  margin-bottom: 10px;
}

.font-size13 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

}
















@media (max-width: 480px) {

.urlpozadina2 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.urlpozadina2:hover {
  color: #000000;
  text-decoration: underline;
}
div.center {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.velikiprikaz1 {
  display: none;
}

.velikiprikaz2 {
  display: none;
}

.srednjiprikaz {
  display: none;
}

.srednjimaliprikaz1 {
  display: block;
}

#page-content-wrapper {
    padding-top: 60px;
}

.button {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.23s ease-in-out;
  -moz-transition: all 0.23s ease-in-out;
  -webkit-transition: all 0.23s ease-in-out;
  -o-transition: all 0.23s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: none;
  background: #ec1b5a;
  padding: 8px 16px;
  cursor:default;
}

.font-size1 {
  font-size: 10px;
  font-family: 'Roboto', sans-serif;
}

.glavnipanel {
  max-width: 100%;
  background: #ffffff;
  margin-bottom: 20px;
  margin-top: 10px;
}

.marginbottom {
  margin-bottom: 40px;
}

.paddingtop {
  padding-top: 10px;
}

.paddingtopbottom {
  padding-top:10px;
  padding-bottom:20px;
}

.paddingtopbottom1 {
  padding-top:0px;
  padding-bottom:20px;
  text-align:left;
}

.padding-gore-dolje-lijevo-desno4 {
  padding-top:20px;
  padding-bottom:20px;
  padding-left:5px;
  padding-right:5px;
}

.paddingmarginnula {
  padding: 0px;
  margin: 0px;
}

.maliprikaz {
  display: block;
}

.velikiprikaz {
  display: none;
}

.marginleft {
  margin-left: 15px;
}

.paddingleft {
  padding-left: 0px;
}

.margintop {
  margin-top: 0px;
}

.margintop1 {
  margin-top: 0px;
}

.font-size2 {
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
}

.font-size-naslov {
  font-size: 17px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.margintopbottom {
  margin-top: 0px;
  margin-bottom: 0px;
}

.margintopbottom3 {
  margin-top: 10px;
  margin-bottom: 0px;
} 

.headerwidthheight {
  width: 220px;
  height: 200px;
}

.headerwidthheight1 {
  width: 260px;
  height: 150px;
}

.headerwidthheight2 {
  width: 210px;
  height: 160px;
}

.headerwidthheight3 {
  max-width: 255px;
}

.headerwidthheight4 {
  display: none;
}

.font-size5 {
  font-weight: 500;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.font-size6 {
  font-weight: 500;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size7 {
  font-weight: 400;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size6-1 {
  font-weight: 500;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size7-1 {
  font-weight: 400;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.font-size10 {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.font-size13 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

}