/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-size: 1.4em;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

p {
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-size: 30px;
  font-size: 3rem;
  font-family: 'Roboto Slab', serif;
}

h2 {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: 'Roboto Slab', serif;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
  font-family: 'Roboto Slab', serif;
}

h4 {
  font-size: 20px;
  font-size: 2rem;
  font-family: 'Roboto Slab', serif;
}

h5 {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Roboto Slab', serif;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
.mt-140 {
  margin-top: 140px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-5 {
  padding-bottom: 5px;
}

.read-more {
  display: block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.read-more:before {
  content: "\f061";
  position: absolute;
  left: 5.5em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.read-more:hover:before, .read-more:focus:before, .read-more:active:before {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #049372;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#nav {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #DDD;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  width: 100%;
}
#nav .navbar {
  margin-bottom: 0;
}
#nav .navbar-collapse .nav {
  width: 100%;
  text-align: center;
}
#nav .navbar-collapse .nav li {
  float: none;
  display: inline-block;
}
#nav .navbar-collapse .nav li a {
  color: #049372;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
#nav .navbar-collapse .nav li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.home {
  min-height: 500px;
  position: relative;
}
.home .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(#374953 10%, rgba(55, 73, 83, 0));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#374953 10%, rgba(55, 73, 83, 0));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#374953 10%, rgba(55, 73, 83, 0));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#374953 10%, rgba(55, 73, 83, 0));
  /* Standard syntax */
  padding-top: 60px;
}
.home .overlay .buttons-holder {
  padding-top: 50px;
}
.home .overlay .login .btn-login {
  background-color: #049372;
  border-radius: 0;
  color: #FFFFFF;
  width: 100%;
}
.home .overlay .login .btn-login:hover {
  opacity: 0.9;
}
.home .overlay .login .btn-login .glyphicon {
  color: #FFFFFF;
}
.home .overlay input {
  color: #049372;
}
.home .overlay ::-webkit-input-placeholder {
  color: #049372;
}
.home .overlay :-moz-placeholder {
  color: #049372;
}
.home .overlay ::-moz-placeholder {
  color: #049372;
}
.home .overlay :-ms-input-placeholder {
  color: #049372;
}
.home .overlay #custom-search-input .btn {
  background-color: #049372;
  border-radius: 0;
}
.home .overlay #custom-search-input .btn .glyphicon {
  color: #FFFFFF;
}
.home .overlay #custom-search-input .form-control {
  border: none;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.home .overlay .white-rectangle-holder {
  background: url(../img/home-rectangle-white.svg);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: repeat-y;
  background-position-x: right;
  background-size: cover;
}
.home .overlay .white-rectangle-holder-smaller {
  background: url(../img/home-rectangle-white-smaller.svg);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: repeat-y;
  background-position-x: right;
  background-size: cover;
}
.home .overlay .logo-unios {
  background: url(../img/logo-unios.png) transparent 0 0 no-repeat;
  height: 120px;
  width: 120px;
  background-size: 120px 120px;
  margin: 20px auto;
  z-index: 999;
}
.home .overlay .logo {
  background: url(../img/gf-logo-white.png) transparent 0 0 no-repeat;
  height: 109px;
  width: 500px;
  background-size: 500px 109px;
  margin: 0 auto;
  z-index: 999;
}
.home #carousel-main {
  height: 500px;
  position: relative;
  pointer-events: none;
}
.home .carousel-fade .carousel-inner {
  height: 500px;
}
.home .carousel-fade .carousel-inner .item {
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  height: 500px;
}
.home .carousel-fade .carousel-inner .item .fill {
  width: 100%;
  height: 500px;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.home .carousel-fade .carousel-inner .item,
.home .carousel-fade .carousel-inner .active.left,
.home .carousel-fade .carousel-inner .active.right {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.home .carousel-fade .carousel-inner .active,
.home .carousel-fade .carousel-inner .next.left,
.home .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.seperate {
  height: 100px;
  background-image: url(../img/geometry2.png);
  background-repeat: repeat;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.latest-news {
  background: url(../img/latest-bg.jpg) no-repeat center center;
  background-size: cover;
  padding-left: 0;
  padding-right: 0;
  min-height: 300px;
}
.latest-news .overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(51, 110, 123, 0.9);
}
.latest-news .latest-news-holder {
  padding: 20px;
  height: 300px;
  padding-top: 100px;
}
.latest-news .latest-news-holder .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 50px 40px;
  border-color: transparent transparent transparent rgba(51, 110, 123, 0.7);
  position: absolute;
  margin-top: -50px;
  top: 50%;
  right: -40px;
  z-index: 9999;
}
.latest-news .latest-news-holder i {
  color: #FFFFFF;
}
.latest-news .latest-news-holder h3 {
  color: #FFFFFF;
  padding-top: 10px;
}
.latest-news .event-data-holder {
  height: 300px;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  padding-left: 0;
  padding-right: 0;
}
.latest-news .event-data-holder .read-more-news {
  width: 150px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
.latest-news .event-data-holder .read-more-news a {
  width: 100%;
  height: 30px;
  color: #049372;
  text-decoration: none;
  line-height: 30px;
  line-height: 3rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px auto;
  display: block;
}
.latest-news .event-data-holder .read-more-news a:hover {
  color: #FFFFFF;
}
.latest-news .event-data-holder .read-more-news a i {
  padding-left: 10px;
}
.latest-news .event-data-holder .overlay {
  height: 300px;
  color: #FFFFFF;
  width: 100%;
  background: -webkit-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* Standard syntax */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 70px;
}
.latest-news .event-data-holder .overlay h4 {
  color: #FFFFFF;
  font-size: 40px;
  font-size: 4rem;
}
.latest-news .event-data-holder .overlay h3 {
  color: #FFFFFF;
  padding-top: 30px;
}
.latest-news .event-data-holder .overlay a {
  color: #049372;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 30px;
  display: block;
  text-decoration: none;
}
.latest-news .carousel-holder {
  height: 300px;
  padding-left: 0;
}
.latest-news .carousel-holder #carousel-news {
  position: relative;
}
.latest-news .carousel-holder #carousel-news .fill {
  width: 100%;
  height: 300px;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.latest-news .carousel-holder #carousel-news .fill .overlay {
  height: 300px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 140px;
  background: -webkit-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* Standard syntax */
}
.latest-news .carousel-holder #carousel-news h3 {
  color: #FFFFFF;
}
.latest-news .carousel-holder #carousel-news .read-more-news {
  width: 120px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
.latest-news .carousel-holder #carousel-news .read-more-news a {
  width: 100%;
  height: 30px;
  color: #049372;
  text-decoration: none;
  line-height: 30px;
  line-height: 3rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px auto;
  display: block;
}
.latest-news .carousel-holder #carousel-news .read-more-news a:hover {
  color: #FFFFFF;
}
.latest-news .carousel-holder #carousel-news .read-more-news a i {
  padding-left: 10px;
}
.latest-news .carousel-holder #carousel-news .carousel-inner {
  text-align: center;
}
.latest-news .carousel-holder #carousel-news .carousel-indicators {
  bottom: 10px;
  width: 60%;
}
.latest-news .carousel-holder #carousel-news .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin: 0;
  border: none;
  background-color: #FFFFFF;
}
.latest-news .carousel-holder #carousel-news .carousel-indicators .active {
  width: 10px;
  height: 10px;
  background-color: #049372;
}

.main-content {
  background-color: #FFFFFF;
}
.main-content .read-all-news {
  width: 180px;
  background-color: #EEEEEE;
  margin: 0 auto;
}
.main-content .read-all-news a {
  width: 100%;
  height: 40px;
  color: #049372;
  text-decoration: none;
  line-height: 40px;
  line-height: 4rem;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px auto;
  display: block;
  text-align: center;
}
.main-content .read-all-news a:hover {
  color: #FFFFFF;
}
.main-content .read-all-news a i {
  padding-left: 10px;
}
.main-content .navbar-inverse {
  background-color: #049372;
  border-color: #049372;
}
.main-content .navbar-inverse .navbar-nav > .open > a {
  background-color: rgba(255, 255, 255, 0.1);
}
.main-content .side-nav {
  border-radius: 0;
  z-index: 999;
  margin-top: 82px;
  padding-bottom: 0;
  padding-top: 0;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
}
.main-content .side-nav .navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}
.main-content .side-nav .dropdown i {
  float: right;
}
.main-content .side-nav .navbar-nav {
  width: 100%;
  margin-top: 0;
}
.main-content .side-nav .navbar-nav > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-content .side-nav .navbar-nav > li:last-child {
  border-bottom: none;
}
.main-content .side-nav li {
  float: none;
}
.main-content .side-nav li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.main-content .side-nav li:active {
  background-color: rgba(255, 255, 255, 0.1);
}
.main-content .side-nav li:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.main-content .side-nav li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #FFFFFF;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-content .side-nav li ul li a {
  color: #313131;
}
.main-content .side-nav li ul li a:hover {
  color: #049372;
}
.main-content .bb {
  width: 50px;
  border-bottom: 2px solid #049372;
  padding-top: 20px;
  display: block;
  margin: 20px auto;
}

.link-area {
  min-height: 210px;
  background-image: url(../img/geometry2.png);
  background-repeat: repeat;
}
.link-area .heading-holder {
  width: 100%;
  height: 210px;
  background-color: #049372;
  text-align: center;
  position: relative;
}
.link-area .heading-holder i {
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  font-size: 120px;
  text-align: center;
  margin-top: -60px;
  top: 50%;
  margin-left: -55px;
  left: 50%;
  z-index: 1;
}
.link-area .heading-holder h3 {
  color: #FFFFFF;
  line-height: 210px;
  z-index: 2;
}
.link-area .link-holder {
  height: 50px;
  border: 1px solid #049372;
  text-align: center;
  background-color: #049372;
  margin-top: 15px;
}
.link-area .link-holder .tooltip {
  position: fixed;
  z-index: 100;
}
.link-area .link-holder .popover {
  z-index: 9999;
}
.link-area .link-holder .green-tooltip + .tooltip > .tooltip-inner {
  background-color: #049372;
}
.link-area .link-holder .green-tooltip + .tooltip > .tooltip-arrow {
  border-bottom-color: #049372;
}
.link-area .link-holder:hover {
  opacity: 0.9;
}
.link-area .link-holder a {
  width: 100%;
  height: 50px;
  display: block;
  line-height: 50px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Roboto Slab', serif;
  color: #FFFFFF;
  text-decoration: none;
  z-index: 1;
}

.testimonials {
  height: 350px;
  background: url(../img/parallax-bg.jpg) no-repeat center center fixed;
}
.testimonials .content-holder {
  min-height: 200px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 30px;
}
.testimonials .content-holder .icon-holder {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  left: -10px;
  background-color: #049372;
  text-align: center;
}
.testimonials .content-holder .icon-holder i {
  font-size: 30px;
  line-height: 50px;
  color: rgba(255, 255, 255, 0.2);
}
.testimonials .content-holder p {
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-weight: 300;
}
.testimonials .content-holder .bb {
  width: 50px;
  border-bottom: 2px solid #049372;
  padding-top: 20px;
}
.testimonials .content-holder h4 {
  padding-top: 20px;
  color: #FFFFFF;
}
.testimonials .content-holder h4 .small {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #FFFFFF;
}

.footer {
  min-height: 200px;
  background-color: #313131;
  position: relative;
}
.footer img {
  display: inline-block;
  padding-left: 20px;
}
.footer .footer-logo {
  background: url(../img/gf-logo-white.png) transparent 0 0 no-repeat;
  height: 63px;
  width: 291.6px;
  background-size: 291.6px 63px;
  display: inline-block;
}
.footer h5 {
  color: #EEEEEE;
  line-height: 100px;
}
.footer p {
  color: #EEEEEE;
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 10px;
  line-height: 14px;
  line-height: 1.4rem;
  opacity: 0.8;
  font-weight: 300;
}
.footer .map-holder {
  width: 66.6666%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
}
#egfos-map{
  width: 100%;
}
.footer .map-holder #map {
  height: 100%;
  width: 100%;
}

/* LANGUAGE SWITCHER START */
#nav .holder {
  position: relative;
}
#nav .holder .bootstrap-select {
  width: 60px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 10px;
}
#nav .holder .bootstrap-select .btn-default {
  border-color: transparent;
  border-radius: 0;
  background-color: transparent !important;
}

/* LANGUAGE SWITCHER END */
/* E-GFOS START */
.home-egfos {
  background: url(../img/egfos-zaglavlje.jpg) no-repeat center center;
  background-size: cover;
  min-height: 240px;
  position: relative;
}
.home-egfos .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-egfos .magazine-info{
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.home-egfos .magazine-info p {
  color: #049372;
  line-height: 18px;
  line-height: 1.8rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Open Sans', sans-serif;
}

.logo-unios {
  background: url(../img/logo-unios.png) transparent 0 0 no-repeat;
  height: 120px;
  width: 120px;
  background-size: 120px 120px;
  margin: 10px auto;
  z-index: 999;
}

#myModal .modal-body {
  background-color: rgba(0, 0, 0, 0.1);
}
#myModal .form-area {
  font-weight: 400;
  margin-top: 20px;
  padding: 15px;
}
#myModal .form-area select {
  display: inline-block;
  max-width: 350px;
  margin-left: 15px;
}
#myModal .form-area p {
  display: inline-block;
  text-align: left;
  padding-top: 10px;
  padding: 5px;
  font-size: 16px;
  font-size: 1.6rem;
}
#myModal .form-area .form-control {
  border-radius: 0;
  border: none;
}
#myModal .form-area #js-upload-files {
  width: 100%;
}
#myModal .form-area .control-label {
  text-align: left;
  padding-bottom: 5px;
}
#myModal .form-area .form-control[disabled], #myModal .form-area .form-control[readonly], #myModal .form-area fieldset[disabled] .form-control {
  background-color: #FFFFFF;
}
#myModal .form-area #fake-file-button-browse {
  background-color: #049372;
  color: #FFFFFF;
  border: none;
}
#myModal .btn-default {
  border-radius: 0;
}
#myModal .btn-primary {
  border-radius: 0;
  background-color: #049372;
  border: none;
}
#myModal .btn-primary:hover {
  opacity: 0.8;
}

#nav-secondary {
  background-color: #049372;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999999;
}
#nav-secondary .nav > li > a {

}
#nav-secondary .holder {
  position: relative;
}
#nav-secondary .navbar-collapse button {
  background-color: transparent;
  color: #FFFFFF;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
#nav-secondary .navbar-collapse button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#nav-secondary .navbar-collapse button img {
  width: 25px;
  vertical-align: sub;
}
#nav-secondary .navbar-collapse .active {
  background-color: rgba(255, 255, 255, 0.2);
}
#nav-secondary .navbar-collapse .nav {
  width: 100%;
  position: relative;
  text-align: center;
}
#nav-secondary .navbar-collapse .nav li {
  float: none;
  display: inline-block;
}
#nav-secondary .navbar-collapse .nav li a {

}
#nav-secondary .navbar-collapse .nav li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#nav-secondary .navbar-collapse .nav li a:active {
  background-color: rgba(255, 255, 255, 0.2);
}
#nav-secondary .navbar-collapse .nav li a:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
#nav-secondary .navbar-collapse .nav li a:visited {
  background-color: rgba(255, 255, 255, 0.2);
}
#nav-secondary .navbar-collapse .dropdown-menu li {
  width: 100%;
}
#nav-secondary .navbar-collapse .dropdown-menu li a {
  color: #049372;
  padding-top: 10px;
  padding-bottom: 10px;
}
#nav-secondary .navbar-collapse .dropdown-menu li:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
#nav-secondary .btn-primary {
  border: none;
  border-radius: 0;
}
#nav-secondary .panel-default {
  border: none;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
#nav-secondary .panel-default .panel-heading {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #049372;
}

.sidebar-search {
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  padding-bottom: 20px;
  margin-top:50px;
}
.sidebar-search .heading {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-color: #049372;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.sidebar-search .heading i {
  padding-right: 5px;
}
.sidebar-search label.btn span {
  font-size: 16px;
  font-size: 1.6rem;
}
.sidebar-search label input[type="checkbox"] ~ i.fa.fa-circle-o {
  color: #BDC3C7;
  display: inline;
  margin: 0 5px;
  font-size: 22px;
}
.sidebar-search label input[type="checkbox"] ~ i.fa.fa-check-circle-o {
  display: none;
}
.sidebar-search label input[type="checkbox"]:checked ~ i.fa.fa-circle-o {
  display: none;
  margin: 0 5px;
  font-size: 22px;
}
.sidebar-search label input[type="checkbox"]:checked ~ i.fa.fa-check-circle-o {
  color: #049372;
  display: inline;
  margin: 0 5px;
  font-size: 22px;
}
.sidebar-search label:hover input[type="checkbox"] ~ i.fa {
  color: #049372;
}
.sidebar-search label input[type="checkbox"] ~ i.fa.fa-square-o {
  color: #BDC3C7;
  display: inline;
}
.sidebar-search label input[type="checkbox"] ~ i.fa.fa-check-square-o {
  display: none;
}
.sidebar-search label input[type="checkbox"]:checked ~ i.fa.fa-square-o {
  display: none;
}
.sidebar-search label input[type="checkbox"]:checked ~ i.fa.fa-check-square-o {
  color: #049372;
  display: inline;
}
.sidebar-search label:hover input[type="checkbox"] ~ i.fa {
  color: #049372;
}
.sidebar-search div[data-toggle="buttons"] label.active {
  color: #049372;
}
.sidebar-search div[data-toggle="buttons"] label {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 2em;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  cursor: pointer;
  background-color: none;
  border: 0px solid #BDC3C7;
  border-radius: 3px;
  color: #BDC3C7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.sidebar-search div[data-toggle="buttons"] label:hover {
  color: #049372;
}
.sidebar-search div[data-toggle="buttons"] label:active, .sidebar-search div[data-toggle="buttons"] label.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.sidebar-search label i {
  vertical-align: sub;
}
.sidebar-search input {
  width: 90% !important;
  margin: 15px;
  margin-bottom: 15px !important;
  display: block;
}
.sidebar-search .btn-default {
  margin: 10px auto;
  display: block;
  border-radius: 0;
  background-color: #049372;
  color: #FFFFFF;
  border: none;
  width: 90%;
}
.sidebar-search .btn-default:hover {
  opacity: 0.9;
}

.author {
  margin-top: 20px;
}
.author .author-inner {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
}
.author .author-inner .circle {
  width: 150px;
  height: 150px;
  background-color: #BDC3C7;
  border-radius: 50%;
  display: block;
  margin: 20px auto;
}
.author .author-inner .author-content p {
  padding-top: 10px;
  line-height: 18px;
  line-height: 1.8rem;
  font-size: 16px;
  font-size: 1.6rem;
}
.author .author-inner .btn-default {
  border-radius: 0;
  border: none;
  background-color: #049372;
  color: #FFFFFF;
  margin-top: 10px;
  margin-bottom: 20px;
}
.articles .article-outter {
  margin-top: 30px;
}
.articles .article-outter .article-inner {
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;
  padding-bottom: 10px;
  min-height: 490px;
}
.articles .article-outter .article-inner a {
  padding: 10px;
  background-color: #049372;
  color: #FFFFFF;
  text-decoration: none;
  margin: 10px auto;
  display: block;
  width: 50%;
  text-align: center;
}
.articles .article-outter .article-inner a:hover {
  opacity: 0.8;
}
.articles .article-outter .article-inner a i {
  padding-right: 5px;
}
.articles .article-outter .article-inner p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  line-height: 1.8rem;
  padding: 15px;
}
.articles .article-outter .article-inner .image-holder {
  height: 235px;
  width: 100%;
  background-size: cover;
  background-position: 50%;
  position: relative;
}
.articles .article-outter .article-inner .image-holder .image-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(51,110,123,0.8);
  padding: 10px;
  text-align: left;
}
.articles .article-outter .article-inner .image-holder .image-overlay h3 {
	color: #FFF;
	line-height: 2.4rem;
	font-size: 2rem;
}
.articles .article-outter .article-inner .image-holder .image-overlay .authors {
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: #FFFFFF;
}

.side-content-egfos .archive {
  display: none;
  text-decoration: none;
  background-color: #049372;
  padding: 15px;
  color: #FFFFFF;
}
.side-content-egfos .archive:hover {
  opacity: 0.8;
}
.side-content-egfos .archive i {
  padding-right: 5px;
}

.egfos-news-section {
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-top: 20px;
}
.egfos-news-section .heading {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-color: #049372;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.egfos-news-section .heading i {
  padding-right: 5px;
}
.egfos-news-section ul, .side-content-egfos ul {
  padding-top: 10px;
  padding-left: 25px;
}
.egfos-news-section ul li, .side-content-egfos ul li {
  padding-bottom: 10px;
  list-style: inherit;
  text-indent: -1em;
  padding-left: 1em;
}
.egfos-news-section ul li i, .side-content-egfos ul li i {
  padding-right: 5px;
  font-size: 10px;
  font-size: 1rem;
  color: rgba(4, 147, 114, 0.6);
}
.egfos-news-section ul li a, .side-content-egfos ul li a {
  color: #049372;
  text-decoration: none;
  padding-left: 5px;
  line-height: 16px;
  line-height: 1.6rem;
}
.egfos-news-section ul li a:hover {
  opacity: 0.8;
}

#carousel-holder-egfos {
  height: 250px;
  padding-left: 0;
  margin-bottom: 80px;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
}
#carousel-holder-egfos .heading {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-color: #049372;
  color: #FFFFFF;
}
#carousel-holder-egfos .heading i {
  padding-right: 5px;
}
#carousel-holder-egfos #carousel-egfos {
  position: relative;
  margin-bottom: 30px;
}
#carousel-holder-egfos #carousel-egfos .fill {
  width: 100%;
  height: 250px;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
#carousel-holder-egfos #carousel-egfos .carousel-inner {
  text-align: center;
}
#carousel-holder-egfos #carousel-egfos .carousel-indicators {
  bottom: 10px;
  width: 60%;
}
#carousel-holder-egfos #carousel-egfos .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin: 0;
  border: none;
  background-color: #FFFFFF;
}
#carousel-holder-egfos #carousel-egfos .carousel-indicators .active {
  width: 10px;
  height: 10px;
  background-color: #049372;
}

/* E-GFOS END */
/* KNJIZNICA START */
.home-knjiznica {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  background: url(../img/knjiznica-bg.jpeg) no-repeat center center fixed;
  background-size: cover;
}
.home-knjiznica .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(55, 73, 83, 0.7);
  padding-top: 60px;
}
.home-knjiznica .overlay .buttons-holder {
  padding-top: 50px;
}
.home-knjiznica .overlay .login .btn-login {
  background-color: #049372;
  border-radius: 0;
  color: #FFFFFF;
  width: 100%;
}
.home-knjiznica .overlay .login .btn-login:hover {
  opacity: 0.9;
}
.home-knjiznica .overlay .login .btn-login .glyphicon {
  color: #FFFFFF;
}
.home-knjiznica .overlay input {
  color: #049372;
}
.home-knjiznica .overlay ::-webkit-input-placeholder {
  color: #049372;
}
.home-knjiznica .overlay :-moz-placeholder {
  color: #049372;
}
.home-knjiznica .overlay ::-moz-placeholder {
  color: #049372;
}
.home-knjiznica .overlay :-ms-input-placeholder {
  color: #049372;
}
.home-knjiznica .overlay #custom-search-input .btn {
  background-color: #049372;
  border-radius: 0;
}
.home-knjiznica .overlay #custom-search-input .btn .glyphicon {
  color: #FFFFFF;
}
.home-knjiznica .overlay #custom-search-input .form-control {
  border: none;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.home-knjiznica .overlay .logo-unios {
  background: url(../img/logo-unios.png) transparent 0 0 no-repeat;
  height: 120px;
  width: 120px;
  background-size: 120px 120px;
  margin: 20px auto;
  z-index: 999;
}
.home-knjiznica .overlay .logo {
  background: url(../img/gf-logo-white.png) transparent 0 0 no-repeat;
  height: 109px;
  width: 500px;
  background-size: 500px 109px;
  margin: 0 auto;
  z-index: 999;
}

.side-content {
  margin-top: 82px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
}
.side-content p {
  padding: 10px;
  line-height: 18px;
  line-height: 1.8rem;
  color: #000000;
  padding-bottom: 20px;
}
.side-content .heading {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-color: #049372;
  color: #FFFFFF;
}
.side-content .heading i {
  padding-right: 5px;
}
.side-content textarea {
  width: 90%;
  margin: 13px;
  padding: 5px;
}
.side-content .btn-default {
  margin: 10px auto;
  display: block;
  border-radius: 0;
  background-color: transparent;;
  color: #FFFFFF;
  border: 2px solid #049372;
  width: 90%;
  margin-bottom: 20px;
  color: #049372;
  font-weight: bold;
}

.side-content .btn-default:hover{
  color: #FFF;
  background-color: #049372;
}

.right-sidebar {
  border-left: 1px solid rgba(55, 73, 83, 0.5);
  padding-left: 15px;
  margin-top: 80px;
}
.right-sidebar h3 {
  margin-bottom: 15px;
}
.right-sidebar .sidebar-widgets img {
  margin-bottom: 4px;
  width: 49%;
  height: 45px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.43);
  opacity: 0.7;
  transition: opacity 0.1s linear;
}
.right-sidebar .sidebar-widgets img:hover {
  opacity: 1;
}

/* KNJIZNICA END*/
/* KONTAKT START */
.contact-info p {
  line-height: 18px;
  line-height: 1.8rem;
}
.contact-info p .bold {
  font-weight: 700;
}
.contact-info a {
  color: #049372;
  text-decoration: none;
}

.contact-form .form-area {
  text-align: right;
  font-weight: 400;
  margin-top: 50px;
  padding: 15px;
  background-color: #EEEEEE;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.3);
}
.contact-form .form-area label {
  display: inline-block;
}
.contact-form .form-area select {
  display: inline-block;
  max-width: 350px;
  margin-left: 15px;
}
.contact-form .form-area p {
  display: inline-block;
  text-align: right;
  padding-top: 10px;
  padding: 5px;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form .form-area .form-control {
  display: inline-block;
  border-radius: 0;
  border: none;
}
.contact-form .form-area #js-upload-files {
  width: 100%;
}
.contact-form .form-area .send {
  display: block;
  background-color: #049372;
  color: #FFFFFF;
  border: 1px solid #049372;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: 'Montserrat', sans-serif;
  width: 150px;
  margin: 0 auto;
  padding: 10px 5px 10px 5px;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-align: center;
  opacity: 0.8;
  margin-top: 80px;
}
.contact-form .form-area .send:hover {
  color: #FFFFFF;
  background-color: #049372;
  text-decoration: none;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 1;
}
.contact-form .form-area .send:active {
  color: #FFFFFF;
  background-color: #049372;
  text-decoration: none;
}
.contact-form .form-area .send:focus {
  color: #FFFFFF;
  background-color: #049372;
  text-decoration: none;
  outline: none;
}

strong{ font-weight: 900 !important; }
img{margin:auto;}


 #nav-secondary .navbar-collapse a {
   background-color: transparent;
   border-radius: 0;
   border-color: rgba(255, 255, 255, 0.3);
   box-shadow: none;
   color: #FFFFFF;
    font-size: 1.8rem;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
 }
#nav-secondary .navbar-collapse a img {
  width: 25px;
  vertical-align: sub;
}


#nav-secondary .has-dropdown .dropper-menu li a {
    color: #049372 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
 }

 #nav-secondary .has-dropdown .dropper-menu li a:focus {
    color: #049372;
 }

 #nav-secondary .has-dropdown .dropper-menu li:hover {
    background-color: rgba(0,0,0,0.1);
 }

 #nav-secondary .has-dropdown .dropper-menu .has-dropdown .dropper-menu li a {
    color: #049372 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
 }

/* KONTAKT END */


/* menu corrections */

.has-dropdown a i{
  float: right;
}

.has-dropdown a span{
  position: absolute;
  right: 10px;
  top: 9px;
}

.has-dropdown .dropper-menu li a{
  color: #313131;
}

.dropper .dropper-menu .dropper-menu .dropper a{
  color: #049372;
}

.has-dropdown .dropper-menu li a:hover{
  color: #049372;
}

.navbar-nav .btn{
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.search-results-container{
    display: none;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 99999;
    background: white;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.3);
}

.search-results-container li{
    padding-bottom: 10px;
    color: #049372;
}

.search-results-container li a{
    color: #049372;
    text-decoration: none;
}

/*strucno usavrsavanje */

.contact-form .form-control{
	margin-bottom: 20px;
}

.button-prijava{
	border: none;
	border-radius: 0;
	background-image: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	color: #FFFFFF;
	margin: 20px auto;
	display: block;
	background-color: #049372;
}

.button-prijava:hover{
	opacity: 0.8;
}

.button-odjava{
	border: none;
	border-radius: 0;
	background-image: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	color: #FFFFFF;
	margin: 20px auto;
	display: block;
	background-color: #F4D03F;
}

.button-odjava:hover{
	opacity: 0.8;
}

.contact-form .form-area{
	position: relative;
	padding-top: 25px;
}

.contact-form .form-area .poruka-usavrsavanje{
	position: absolute;
    top: -25px;
    width: 50%;
    left: 50%;
    text-align: center;
    padding: 15px;
    background-color: rgba(4,147,114,0.9);
    transform: translateX(-50%);
    box-shadow: 0 0 10px #D5D5D5;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    overflow: hidden;
}

.contact-form .form-area .poruka-usavrsavanje i{
	position: absolute;
	font-size: 60px;
	top: -7px;
	display: block;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.2;
}

.template-outer .thumbnail{
	border: none;
	padding-bottom: 50px;
}

.template-outer h3{
	margin-bottom: 30px;
}

.template-outer .thumbnail .btn{
	background-image: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	color: #FFFFFF;
	margin: 20px auto;
	display: block;
	background-color: #049372;
	border-radius: 0;
	border: none;
}

.template-outer .thumbnail .btn:hover{
	border: none;
	opacity: 0.8;
}

/*CORRECTIONS*/

.thumbnail{
  border: none;
}

.child-page-content a{
  color: #049372;
}

.page-content a{
  color: #049372;
}

.page-content a:hover{
  text-decoration: none;
  opacity: 0.8;
}

a > h3{
  color: #049372;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 15px;
}

a > h3:hover{
  text-decoration: none;
  opacity: 0.8;
}

a:hover{
  text-decoration: none;
  opacity: 0.8;
}

p{
  margin-top: 0 !important;
}

td{
  padding-left: 5px;
}

.caret{
  position: absolute !important;
  top: 50% !important;
  right: 5% !important;
}

.navbar .navbar-toggle .icon-bar{
  background-color: #049372;
}

.side-nav .navbar-toggle .icon-bar{
  background-color: #FFF;
}

#nav-secondary .navbar-toggle .icon-bar{
  background-color: #FFF;
}

td p{
  color: #000000;
}

td ul{
  color: #000000;
}

ul{
  padding-left: 15px;
}

ul li{
  list-style: initial;
}

.back-home-button{
  position: absolute;
  left: 15px;
  top: 15px;
  color: #FFF;
  background-color: #049372;
  padding: 5px 10px;
  font-weight: bold;
}

.back-home-button:hover{
  color: #FFF;
}

#breadcrumb a{
  color: #049372;
  text-decoration: none;
}

.predaja-radova-forma label{
  text-align: left;
  padding-bottom: 5px;
}

.predaja-radova-forma input{
  margin-bottom: 15px;
  background: #ffffff;
  box-shadow: none;
}

.predaja-radova-forma textarea{
  margin-bottom: 15px;
  background: #ffffff;
  box-shadow: none;
}

.predaja-radova-forma .modal-content{
  border-radius: 0;
  border: none;
}




.home-sub {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background: url(../img/slide-1-1.jpeg) no-repeat center center fixed;
  background-size: cover;
}
.home-sub .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(55, 73, 83, 0.7);
  padding-top: 75px;
}
.home-sub .overlay .buttons-holder {
  padding-top: 50px;
}
.home-sub .overlay .login .btn-login {
  background-color: #049372;
  border-radius: 0;
  color: #FFFFFF;
  width: 100%;
}
.home-sub .overlay .login .btn-login:hover {
  opacity: 0.9;
}
.home-sub .overlay .login .btn-login .glyphicon {
  color: #FFFFFF;
}
.home-sub .overlay input {
  color: #049372;
}
.home-knjiznica .overlay ::-webkit-input-placeholder {
  color: #049372;
}
.home-sub .overlay :-moz-placeholder {
  color: #049372;
}
.home-sub .overlay ::-moz-placeholder {
  color: #049372;
}
.home-sub .overlay :-ms-input-placeholder {
  color: #049372;
}
.home-sub .overlay #custom-search-input .btn {
  background-color: #049372;
  border-radius: 0;
}
.home-sub .overlay #custom-search-input .btn .glyphicon {
  color: #FFFFFF;
}
.home-sub .overlay #custom-search-input .form-control {
  border: none;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.home-sub .overlay .logo-unios {
  background: url(../img/logo-unios.png) transparent 0 0 no-repeat;
  height: 120px;
  width: 120px;
  background-size: 120px 120px;
  margin: 20px auto;
  z-index: 999;
}
.home-sub .overlay .logo {
  background: url(../img/gf-logo-white.png) transparent 0 0 no-repeat;
  height: 109px;
  width: 500px;
  background-size: 500px 109px;
  margin: 0 auto;
  z-index: 999;
}

/*Content layout switcher*/
.switch {
		  position: relative;
		  display: inline-block;
		  width: 60px;
		  height: 34px;
		}

.switch input {display:none;}

.slider {
		  position: absolute;
		  cursor: pointer;
		  top: 0;
		  left: 0;
		  right: 0;
		  bottom: 0;
		  background-color: #049372;
		  -webkit-transition: .4s;
		  transition: .4s;
		}

		.slider:before {
		  position: absolute;
		  content: "";
		  height: 26px;
		  width: 26px;
		  left: 4px;
		  bottom: 4px;
		  background-color: white;
		  -webkit-transition: .4s;
		  transition: .4s;
		}

		input:checked + .slider {
		  background-color: #049372;
		}

		input:focus + .slider {
		  box-shadow: 0 0 1px #049372;
		}

		input:checked + .slider:before {
		  -webkit-transform: translateX(26px);
		  -ms-transform: translateX(26px);
		  transform: translateX(26px);
		}

		/* Rounded sliders */
		.slider.round {
		  border-radius: 34px;
		}

		.slider.round:before {
		  border-radius: 50%;
		}

		.toggle-selector{
			margin-left: 15px;
		}

		.toggle-selection{
			text-transform: uppercase;
			line-height: 36px;
			vertical-align: bottom;
			padding-left: 5px;
			padding-right: 5px;
			font-size: 24px;
		}

		.toggle-selection i{
		  vertical-align: super;
		}

		#horizontal-selection i{
		  -ms-transform: rotate(90deg); /* IE 9 */
      -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
      transform: rotate(90deg);
		}

		.active{
			color: #049372;
			transition-property: all;
			transition-duration: 0.2s;
		}

		.inactive{
			color: #ccc;
			transition-property: all;
			transition-duration: 0.2s;
		}

.main-content .news-holder {
  margin-top: 30px;
}
.main-content .news-holder .latest-news-outter {
  margin-bottom: 30px;
}
.main-content .news-holder .latest-news-outter .latest-news-inner {
  min-height: 360px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid #DDD;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .news-image {
  height: 135px;
  width: 100%;
  background-size: cover;
  background-position: 50%;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .date-bg {
  height: 30px;
  width: 100%;
  background-color: #049372;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .date-bg h6 {
  color: #FFFFFF;
  line-height: 30px;
  line-height: 3rem;
}
.main-content .news-holder .latest-news-outter .latest-news-inner h5 {
  text-align: left;
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
}
.main-content .news-holder .latest-news-outter .latest-news-inner p {
  padding: 10px;
  text-align: left;
  line-height: 16px;
  line-height: 1.6rem;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .read-more-news {
  width: 100%;
  background-color: #EEEEEE;
  position: absolute;
  bottom: 0;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .read-more-news a {
  width: 100%;
  height: 30px;
  color: #049372;
  text-decoration: none;
  line-height: 30px;
  line-height: 3rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .read-more-news a:hover {
  color: #FFFFFF;
}
.main-content .news-holder .latest-news-outter .latest-news-inner .read-more-news a i {
  padding-left: 10px;
}

.main-content .news-holder.horizontal .latest-news-outter .latest-news-inner .upper-part{
  width: 30%;
  float: left;
}

.main-content .news-holder.horizontal .latest-news-outter .latest-news-inner .news-content-short{
  padding-left: 33%;
  padding-top: 15px;
}

.main-content .news-holder.horizontal .latest-news-outter .latest-news-inner{
  min-height: 167px;
}

.main-content .news-holder.horizontal .latest-news-outter .latest-news-inner .read-more-news{
  width: 70%;
    float: right;
    position: absolute;
    right: 0;
}




.latest-news .carousel-holder #carousel-news2 {
  position: relative;
}
.latest-news .carousel-holder #carousel-news2 .fill {
  width: 100%;
  height: 300px;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.latest-news .carousel-holder #carousel-news2 .fill .overlay {
  height: 300px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 140px;
  background: -webkit-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(rgba(55, 73, 83, 0), #374953);
  /* Standard syntax */
}
.latest-news .carousel-holder #carousel-news2 h3 {
  color: #FFFFFF;
}
.latest-news .carousel-holder #carousel-news2 .read-more-news {
  width: 120px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
.latest-news .carousel-holder #carousel-news2 .read-more-news a {
  width: 100%;
  height: 30px;
  color: #049372;
  text-decoration: none;
  line-height: 30px;
  line-height: 3rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px auto;
  display: block;
}
.latest-news .carousel-holder #carousel-news2 .read-more-news a:hover {
  color: #FFFFFF;
}
.latest-news .carousel-holder #carousel-news2 .read-more-news a i {
  padding-left: 10px;
}
.latest-news .carousel-holder #carousel-news2 .carousel-inner {
  text-align: center;
}
.latest-news .carousel-holder #carousel-news2 .carousel-indicators {
  bottom: 10px;
  width: 60%;
}
.latest-news .carousel-holder #carousel-news2 .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin: 0;
  border: none;
  background-color: #FFFFFF;
}
.latest-news .carousel-holder #carousel-news2 .carousel-indicators .active {
  width: 10px;
  height: 10px;
  background-color: #049372;
}

.cv-box-inner{
  margin-bottom: 20px;
}

.cv-box-inner h3{
  color: #FFFFFF;
  background-color: #049372;
  padding: 10px;
}

.cv-box-content{
  min-height: 50px;
  background-color: #ECF0F1;
  padding: 10px;
}

.cv-box-content img{
  margin: 10px auto;
  display: block;

}


/*Predaja radova*/

.predaja-radova-forma{
  margin-top: 15px;
}

.predaja-radova-forma .white-bg{
  padding: 10px;
  background: #f1f1f1;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.35);
}

.predaja-radova-forma h5{
  padding-top: 10px;
}

.add-author{
  padding-top: 10px;
  border-top: 1px solid #dddddd;
}

.add-author label{
  padding-right: 10px;
  font-weight: bold;
  text-transform: uppercase;
  opacity: .5;
  vertical-align: sub;
}

.remove-authors{
  margin-bottom: 15px;
}

.remove-auth-label{
  padding-left: 10px;
  font-weight: bold;
  text-transform: uppercase;
  opacity: .5;
  vertical-align: super;
}

 #authorsHolder{
  padding-top: 10px;
  margin-bottom: 15px;
}

 .submit-work-btn{
   display: block;
   border-radius: 0;
   background: #049372 !important;
   color: #FFFFFF;
   border: none;
 }

.submit-work-btn:hover{
  background: #049372 !important;
  opacity: 0.8;
}
em{
  font-style:italic;
}

.gallery-wrapper a img{
  width: 10em;
  display: inline-block;
  margin: 10px;
  padding: 5px;
  border: 1px solid #eee;
}

/*Anketa frontend*/

.anketa-holder{
  padding: 10px;
  background: #EEEEEE;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid #dddddd;
}

.anketa-holder h4{
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #DDDDDD;
}

.anketa-holder h5 {
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 1.2rem;
  padding-bottom: 3px;
}

.anketa-holder .pitanje{
  margin-bottom: 20px;
}

.anketa-holder .pitanje{
  margin-bottom: 20px;
}

.anketa-holder label{
  font-size: 1.2rem;
}

.anketa-holder .text-odgovor{
  width: 100%;
}

.anketa-holder .spremi-anketu{
  text-transform: uppercase;
  font-weight: bold;
  background: #049372;
  border: none;
  border-radius: 0;
}

.anketa-holder .spremi-anketu:hover{
  opacity: 0.8;
}

.widget-menu-wrapper{
  margin: 50px 0;
}

.widget-menu{
  width: 100%;
  background-color: #049372;
  padding: 0 !important;
}

.widget-menu li{
  display: block;
  width: 100%;
  padding: 10px 15px;
  height: 35px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widget-menu li:hover{
  background-color: rgba(0,0,0,0.1);
}

.widget-menu li a{
  color: #FFFFFF !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 10px !important;
  line-height: 35px !important;
}

.widget-menu li a:hover{
  opacity: 1;
}

@media (max-width: 940px) {
  .footer .map-holder{
    width: 50%;
  }
}

@media (max-width: 650px) {
  .home-egfos {
    min-height: 310px;
    text-align: center;
  }


}

.child-page-content{
  position: relative;
}

.child-excerpt{
  overflow: hidden;
  position: relative;
  max-height: 235px;
}

.child-excerpt .post-fader{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.read-more-post{
  display: block;
  margin: 0 auto;
  background: #049372;
  color: #FFFFFF;
  width: 100px;
  text-align: center;
  padding: 5px;
  text-transform: uppercase;
}

.read-more-post:hover{
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.8;
}

.page-post{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}

.egfos-child-excerpt{
  text-align: justify;
  height: 235px;
}

.egfos-child-excerpt:hover{
  overflow: visible;
  height: 235px;
  z-index: 999;

}

.egfos-excerpt p{
  line-height: 20px !important;
}

.egfos-child-excerpt:hover .egfos-excerpt{
  background-color: white;
  padding-bottom: 10px;
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari */
  transform: scale(1.1);
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  min-height: 280px;
}

.egfos-child-excerpt .egfos-excerpt .excerpt-btn{
  display: none !important;
}

.egfos-child-excerpt:hover .egfos-excerpt .excerpt-btn{
  display: block !important;
}

.child-egfos{
  padding-bottom: 30px;
}

.thumbnail-btn{
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.child-egfos:hover .thumbnail-btn{
  display: none !important;
}

.thumbnail-btn:hover{
  display: block !important;
}

.egfos-child-excerpt .bottom-fader{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65px;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}


.egfos-header{
  line-height: 20px;
  background-color: #049372;
  color: white;
  padding: 15px;
  margin-bottom: 50px;
  text-align: justify;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#nav-secondary .has-dropdown a span{
  font-size: 10px;
  top: 30px;
  right: 5px;
}

#nav-secondary .has-dropdown .dropper-menu li a{
  padding-top: 5px;
  padding-bottom: 5px;
}
.kontakt-form-egfos{
  height:450px;
  text-align: center;
}

.search-select p{
  margin: 20px auto;
}
.egfos-casopis-content{
  text-align: justify;
}

.egfos-justify{
  text-align: justify;
}

.delete-category{
  padding: 5px 0px 5px 5px;
  text-decoration: none;
  line-height: 16px;
  color: #049372;
}

.delete-category i{
  display: none;
}

.delete-category:hover i{
  display: block;
}

.delete-category a{
  width: 10% !important;
  display: inline-block;
}

.delete-category .visit-link{
  color: #337ab7 !important;
  margin-left: 10px;
  padding: 2px 0 !important;
}

.delete-category .delete-link{
  margin-left: 35px;
  color: #d9534f !important;
  padding: 2px 0 !important;
}
.news-image{
  width: 100%;
  height: 230px;
  border-radius: 4px 4px 0 0;
  margin: auto;
  background-size: cover;
  background-position: 50%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.casopis-img{
  margin: 20px auto;
  display: block;
}

.logo-egfos-text{

}

.logo-egfos-text-en{
  border-left: 5px solid #524798;
  min-height: 210px;
  display: inline-block;
  vertical-align: top;
  margin-left: 15px;
  padding-left: 15px;
}

.logo-egfos-text h3{
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  line-height: 31px;
  text-align: left;
  padding-top: 0px;
}

.logo-egfos-text-en h3{
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  line-height: 50px;
  text-align: left;
  padding-top: 20px;
}

.logo-egfos img{
  max-width: 10%;
  display: inline-block;
}

.logo-egfos-text #first-line{
  color: #FFF;
  text-align: center;
  padding-bottom:20px;
}

.logo-egfos-text #second-line{
  color: #049372;
}

.logo-egfos-text-en #first-line{
  color: #524798;
}

.logo-egfos-text-en #second-line{
  color: #524798;
}

.logotip-egfos{
  background: url(../img/egfos-logo.png) transparent 0 0 no-repeat;
  height: 70px;
  width: 70px;
  background-repeat: no-repeat;
  background-size: 70px 70px;
  display: inline-block;
}

.mt-65{
  margin-top: 15px;
}

@media (max-width: 1300px) {

  .logo-egfos-text-en h3{
    font-size: 28px;
  }

}

@media (max-width: 1200px) {
  .logo-egfos-text h3{
    font-size: 28px;
  }

  .logo-egfos-text-en h3{
    font-size: 28px;
  }

  #carousel-holder-egfos{
    height: 235px;
  }
}

@media (max-width: 991px) {
  .logotip-egfos{
    height: 80px;
    width: 73px;
    background-size: 73px 80px;
    display:block;
    margin: 0 auto;
  }

  .logo-egfos-text h3{
    font-size: 18px;
    padding-top: 10px;
    text-align: center;
    line-height: 24px;
  }

  .logo-egfos-text-en h3{
    font-size: 18px;
    padding-top: 10px;
    text-align: center;
    line-height: 24px;
  }

  .logo-egfos-text{
    min-height: 140px;
    border-left: none;
    width: 100%;
  }

  .logo-egfos-text-en{
    min-height: 140px;
    border-left: none;
    width: 100%;
  }

  .logo-egfos img{
    float: none;
    max-width: 25%;
  }

  .home-egfos .magazine-info p{
    text-align: center;
    font-size: 1.2rem;
  }

  .home-knjiznica{
    min-height: 320px;
  }

  .home-knjiznica .overlay .login .btn-login{
    margin-bottom: 10px;
  }

}

.egfos-header-info{
  height: 175px;
  padding-top: 50px;
}

.egfos-header-info p{
  color: #FFF;
  margin-top: 20px;
  line-height: 22px;
}

@media (max-width: 550px) {
  .home-sub .overlay .logo{
    height: 65px;
    width: 300px;
    background-size: 300px 65px;
  }
  .home-knjiznica .overlay .logo{
    height: 65px;
    width: 300px;
    background-size: 300px 65px;
  }
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus{
  background-color: #049372;
  border-color: #049372;
}

.pagination>li>a, .pagination>li>span{
  color: #049372;
}



