﻿@font-face {
font-family: 'Roboto';
src: url('../fonts/roboto-medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html{
    background:white!important;
}

:root {

}

section.pregled_section {
    padding: 50px 40px;
    margin-bottom: 10px;
    transition: .4s;
    border: 1px solid #f7f7f7;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    position: relative;
    background: #fff;
}





/*#header_page{
    height:100vh;
}*/

/*--------------------------------
  Z-INDEX

    .sticky1 =>1001
    .overlay=>300
    .job_newsletter_wrapper =>1
    .sidebar => 99
    .table > tbody tr:hover =>3
--------------------------------*/

/*-------------------------------------
              GLOBALNE POSTAVKE

---------------------------------------*/

/*validacija forme*/
.field-validation-error
{
    /*color: #ff0000;*/
    color: #9a0606;
	background-color: #f2dbdb;
    /* width: 100%; */
    padding: 1rem;
    border-radius: 5px;
    font-size:0.9em;
    display: block;
    text-align: left;
}

.field-validation-error:before
{
    font-family: 'Font Awesome 5 Free';
    content: "\f071";
    font-weight: 700;
    padding-right:5px;

}
        
.field-validation-valid
{
    display: none;
}
/*validacija forme -kraj*/
        
.input-validation-error
{
   border: 1px solid #ff0000;
   background-color: #ffeeee;
}
        

a {
    text-decoration: none;
    color: #555;
}
a:hover {
    text-decoration: none;
}

p {
    color: #555;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul li {
        text-decoration: none;
    }

header {
    width: 100%;
    height: 100vh;
}

.custom-90w {
    width: 90%;
    margin: 0 auto;
}

.full_width {
    width: 100%;
}

/*naslov sekcije*/
.content-title h3 {
    font-size: 1.8em;
    font-weight: 500;
    text-align: center;
    margin: 0 0 30px 0;
    padding-top: 50px;
    color: rgb(73, 73, 73);
}

.content-title-underline {
    width: 50px;
    height: 3px;
    background-color: #1EA5F7;
    margin: 20px auto 70px auto;
}

.btn-custom-primary {
    margin: 1rem;
    display: inline-block;
    padding: 1rem;
    color: white;
    font: weight 600;
    background: #064e79;
    font-weight: 600;
}

.btn-custom-secondary {
    margin: 1rem;
    display: inline-block;
    padding: 1rem;
    color: #064e79;
    font: weight 600;
    background: white;
    border: 2px solid #064e79;
    font-weight: 600;
}

section,
main,
header {
    display: block;
}

 label, p , .accordion--form__legend, dt, .horizontal, .card-body-title, .notice, .nepristupacnost-list {
    text-align:left;
 }


.breadcrumb {
   font-size:0.85rem;
}

.breadcrumb-item a {
    color: #34c6d3;
}

.breadcrumb-item + .breadcrumb-item::before {
    font-family: 'Font Awesome 5 Free';
    content: "\f101";
    font-weight: 900;
}

/* =========================================
                Preloader
============================================ */

#preloader {
    background:rgba(255,255,255,0.8);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /*display:none;*/
}

.loader{
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
}

#loader-6 span{
  display: inline-block;
  width: 10px;
  height: 30px;
  background-color: #3498db;
}

#loader-6 span:nth-child(1){
  animation: grow 1s ease-in-out infinite;
}

#loader-6 span:nth-child(2){
  animation: grow 1s ease-in-out 0.15s infinite;
}

#loader-6 span:nth-child(3){
  animation: grow 1s ease-in-out 0.30s infinite;
}

#loader-6 span:nth-child(4){
  animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow{
  0%, 100%{
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }

  50%{
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}


/*==========================================
              Hamburger 
=============================================*/
.hamburger .line{
  width: 15px;
  height:2px;
  background-color: #fff;
  display: block;
  margin: 3px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

#hamburger-4.is-active {
    position:relative;
    top:0;
    left:80%;
    margin-bottom:10px;
}


#hamburger-4.is-active .line:nth-child(1),
#hamburger-4.is-active .line:nth-child(3){
  width: 14px;
}

#hamburger-4.is-active .line:nth-child(2)
{
  width: 18px;
}

#hamburger-4.is-active .line:nth-child(1){
  -webkit-transform: translateX(-4px) rotate(-45deg);
  -ms-transform: translateX(-4px) rotate(-45deg);
  -o-transform: translateX(-4px) rotate(-45deg);
  transform: translateX(-4px) rotate(-45deg);
}

#hamburger-4.is-active .line:nth-child(3){
  -webkit-transform: translateX(-4px) rotate(45deg);
  -ms-transform: translateX(-4px) rotate(45deg);
  -o-transform: translateX(-4px) rotate(45deg);
  transform: translateX(-4px) rotate(45deg);
}
/*==========================================
               BUTTONS (Generic)
=============================================*/


.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none!important;
    box-shadow: none;
}

.btn-general {
    margin: 0rem;
    display: inline-block;
    padding: 1rem;
    font-weight: 600;
    position: relative;
    /*min-width:200px;*/
    overflow: hidden;
    /*width: 100%;*/
    height:60px;
    /*max-width: 200px;*/   
}
.btn-general  i {
    z-index:1;
    
}

/*prijava button*/
.btn.btn-sm.btn-blue {
    margin-top: 8px;
    padding: 5px;
    color: #34c6d3;
}

    .btn.btn-sm.btn-blue:hover,
    .btn.btn-sm.btn-blue:focus {
        background-color: #34c6d3;
        color: #fff;
    }

.btn-general-login {
    border-width: 2px;
    border-radius: 0;
    padding: 5px;
    font-size: 0.9em;
    text-transform: uppercase;
}
/*prijava button-end*/

.btn-gray {
    border-color: rgba(0, 0, 0, .3);
    color: rgba(0, 0, 0, .4);
}

    .btn-gray:hover,
    .btn-gray:focus {
        background-color: rgba(0, 0, 0, .4);
        border-color: rgba(0, 0, 0, .3);
        color: #fff;

    }

.btn-white {
    border: 2px solid #037ea6; 
    color: #037ea6;
    z-index:1;
}


.btn-white:before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom:60px solid rgba(69, 171, 205,0.7);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
   z-index: -1;
}

.btn-white:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

    .btn-white:hover,
    .btn-white:focus {
        border: 2px solid rgba(69, 171, 205,0.7);
        color:#fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.25), 0 5px 5px rgba(0,0,0,0.22);
    }

.btn-blue {
    border: 1px solid  #037ea6;
    background-color: #037ea6;
    color: #fff;
    z-index:1;
}


.btn-blue:before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom:60px solid #0f6aa0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
   z-index: -1;
}

.btn-blue:hover,
.btn-blue:focus {
    border-color:#037ea6;
    /*background-color: #064e79;*/
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25), 0 5px 5px rgba(0,0,0,0.22);
}

.btn-blue:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.btn-blue-spec {
    border-color: #34c6d3;
    color: #34c6d3;
    width: 100%;
    margin-top: 10px;
}


    .btn-blue-spec i {
        margin-right: 5px;
    }

    .btn-blue-spec:hover,
    .btn-blue-spec:focus {
        background-color: #34c6d3;
        color: #fff;
       
    }



/*back to top button*/
.btn-arrow {
    color: #fff;
    border: 1px solid #34c6d3;
    background-color: #34c6d3;
}

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 3px 15px;
    border-radius: 4px;
    font-size: 1.2em;     /*22*/
}

/*==========================================
    odabir jezika
=============================================*/

.lang-choose {
    display: flex;
    flex-direction: column;
    color: hsl(174, 11%,96%);
    justify-content: center;
    align-items: center;
    font-size: .9rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

.lang-choose_2 {
    display: flex;
    flex-direction: column;
    color: hsl(174, 11%,96%);
    justify-content: center;
    align-items: flex-end;
    font-size: .9rem;
    position: relative;
    top:-10px;
    right: 0;
    z-index: 1;
}

.lang-choose .dropdown-menu,
.lang-choose_2 .dropdown-menu {
    min-width: 1.5rem;
    background-color: #037ea6;
    border: 1px solid rgb(241 241 241 / 15%);
}




.lang-choose .dropdown-item,
.lang-choose_2 .dropdown-item {
    padding: .25rem 1rem;
    color: #eaf0f4;
}


    .lang-choose .dropdown-item:hover,
    .lang-choose_2 .dropdown-item:hover {
        background-color: #04264a;
    }



.custom-select_lang {
    display: inline-block;
    font-size: 0.9rem;
    width: 53px;
    background-color: #037ea6;
    color: white;
    font-weight: 500;
    line-height: 1.5;
    vertical-align: middle;
    border: none;
    align-items: center;
    text-align: center;
    text-align-last: center;
    padding: 5px 0;
    border-radius: 5px;
}


select.custom-select_lang:focus {
    outline: none;
}

select.custom-select_lang {
    -moz-appearance: none;
    -webkit-appearance: none;
}

    select.custom-select_lang ::-ms-expand {
        display: none;
    }

/*==========================================
             Prijava-BUTTon
=============================================*/
/*prijava*/
.prijavaDiv {
    display: flex;
    align-items: center;
    justify-content: center;

}

a.go_register {
display: block;
font-family: 'Roboto';
font-size: 0.875em; /* 14px */
font-weight: 500;
line-height: 42px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
background-color: #ca1720;
padding-right: 20px;
border-radius: 21px;
display: flex;
align-items: center;
/*width: 124px;*/
}
a.go_register:hover {
color: #fff;
background-color: #2cad56;
}
a.go_register img {
flex: 0;
display: block;
margin: 0 10px 0 6px;
}


 /*==========================================
            Model popup
=============================================*/

.modal-header
{
    /*background-color: #34c6d3;*/
    padding: 15px 15px;
    /*color: #FFF;*/
    /*border-bottom: 2px dashed #34c6d3;*/
}

.modal-content p {
    font-size: 1.25em;   /*20*/
    color: #0c2238;
    font-weight: 500;
    padding: 15px;
    /*text-align:center;*/
}

.modal-body .title {
    text-align:center;
    margin:10px;
}


.model-type {
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  font-size: 3.1em;   /*50*/
  color: #ce9a01;
  display: flex;
  justify-content: center;
  align-items: center;
  border:1px solid #ce9a01;
}

.model-type i {
  margin: auto;
}

    /*-------------------------------------
               NAVIGACIJA
---------------------------------------*/
    /* .navbar {
  background: linear-gradient(261.86deg, #02315C 42.61%, rgba(30, 156, 196, 0.87) 101.25%, #A4EFF3 123.1%, #1B5AB8 123.11%, #1CA6BA 123.13%, rgba(31, 179, 199, 0.78) 123.14%);
} */
    /*logo*/
    /* .header {
  position: relative;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
} */
    .navbar-brand span {
    font-weight: 700;
    font-size: 1.5em;  /*25*/
    margin-left: 10px;
    color: #064e79;
    /* color: white; */
    display: inline-block;
}

#navbarNav .navbar-nav .nav-item .nav-link {
    color: #000;
    font-weight: 500;
    padding: 8px 15px;
    white-space: nowrap;
    transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    color: #064e79;
    /* color: white; */
    font-size: 1.25em;  /*20*/
}


.sticky1 {
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1001;
}

    .sticky1 + .content {
        padding-top: 300px;
    }

/*NAVIGACIJA kRAJ*/



/*-------------------------------------
               LANDING
---------------------------------------*/

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 300;
    overflow: hidden;
}

    .overlay.first {
        background: #1B5AB8;
    }

    .overlay.second {
        background: #1B5AB8;
        left: 33.33%;
    }

    .overlay.third {
        background: #1B5AB8;
        left: 66.66%;
    }

/*#hero{
    background: linear-gradient(261.86deg, #02315C 42.61%, rgba(30, 156, 196, 0.87) 101.25%, #A4EFF3 123.1%, #1B5AB8 123.11%, #1CA6BA 123.13%, rgba(31, 179, 199, 0.78) 123.14%);
}*/

.landing {
    box-sizing: border-box;
    min-height: 100%;
}

    /* ladning left*/
    .landing .left-col {
        text-align: center;
        padding: 3rem;
        background: white;
        /*border: 1px solid #f7f7f7;
        -webkit-box-shadow: 0px 0px 8px 5px rgba(44, 237, 250, 0.2);
        -moz-box-shadow: 0px 0px 8px 5px rgba(44, 237, 250, 0.2);
        box-shadow: 0px 0px 8px 5px rgba(44, 237, 250, 0.2);*/
    }

    .landing .landing-header {
        margin-bottom: 2rem;
    }

        .landing .landing-header h5 {
            font-size: 1em;
            color: #565656;
        }

    .landing .left-col h4 {
        font-weight: 400;
           color: #565656;
    }

    .landing .left-col .landing-header img {
        width: 1.7rem;
        margin-bottom: 1rem;
    }



    .landing .left-col h2 {
        font-size: 3.5em;
        color: #064e79;
        font-weight: 700;
    }

    .landing .left-col h3 {
        font-weight: 400;
        color: rgb(139, 137, 137);
        font-size: 1.5em;
        margin-bottom: 2rem;
    }

    .landing .left-col p {
        margin: 2rem;
        font-size: 1.2em;
        text-align: center;
    }

    .landing .left-col .left-col-div1 h3 {
        color: white;
    }

.left-col-div1 ul li {
    text-decoration: none;
}

.right-col {
    min-height:100vh;
    padding: 4rem;
    text-align: center;
     background: linear-gradient(261.86deg, #a7c5e0 42.61%, rgba(255, 255, 255, 0.87) 101.25%, #A4EFF3 123.1%, #1B5AB8 123.11%, #1CA6BA 123.13%, rgba(31, 179, 199, 0.78) 123.14%);
}
    .right-col svg {
        /*padding-top: 10%;*/
        /*height:80vh;*/
    }
    .right-col img {
     width: 90%;
    padding: 3rem;
  
    }
     
/* svg slika*/
#prebivaliste,
#boraviste,
#vozila {
    animation: float 2s ease;
    /* animation: show_hide_animation 3s; */
    animation-timing-function: ease-in-out;
    animation-direction: reverse;
    animation-iteration-count: infinite;
}



@keyframes rotation {
    from {
        transform: translateX(0);
    }

    from {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0% {
        transform: translate(0%, 0%)
    }

    50% {
        transform: translate(1%, 1%);
    }

    100% {
        transform: translate(0%, 0%);
    }
}

@keyframes move_animation {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes show_hide_animation {
    from {
        transform: translate(0px, 0px);
    }

    to {
        transform: translate(2px, -2px);
    }
}




/*-------------------------------------
               LANDING-kraj
---------------------------------------*/



/*---------------------------------------------
USLUGE
----------------------------------------------*/

#services .row {
    position: relative;
}

.service_shape {
    position: absolute;
    left: -10%;
    bottom: 0;
    opacity: 0.05;
}

.services_box {
    padding: 35px;
    padding-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #f7f7f7;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    min-height: 240px;
}

    .services_box:hover {
        border: 1px solid #00aaef;
        background: #064e79;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
    }
       #services  .services_box:hover .services_icon_wraper i.fas,
       #services  .services_box:hover .services_icon_wraper i.svg-inline--fa,
       #services  .services_box:hover .services_icon_wraper h1 {
            color: #fff;
            transform: translateY(-10px);
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s;
        }

        .services_box:hover p {
            color: #fff;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s;
        }
#services .services_box .services_icon_wraper i.fas,
#services .services_box .services_icon_wraper i.svg-inline--fa {
    color: #064e79;
    display: inline-block;
    font-size: 1.25em;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.services_icon_wraper h1 {
    width: calc(100% - 40px);
    padding-left: 20px;
    display: inline-block;
    font-size: 1em;
    padding-top: 10px;
    color: #000;
    text-decoration: none;
}

.services_box p {
    width: 100%;
    margin-top: 20px;
}

.services_tasks {
    margin: 2rem;
}

    .services_tasks h1 {
        font-size: 1.5em;
        color: #064e79;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    .services_tasks p {
        margin-bottom: 2rem;
    }

.startup_isting_wrapper li {
    width: 100%;
    margin-bottom: 15px;
     display:flex
}
    .startup_isting_wrapper li i,
    .startup_isting_wrapper li .svg-inline--fa {
        color: #064e79;
        margin-right: 1rem;
        font-size: 1.3em;
    }

/*---------------------------
kontakt info
----------------------------------*/

.job_newsletter_wrapper {
    padding: 80px 0;
    background: #f0f5ff;
    position: relative;
    z-index: 1;
}

.jb_newslwtteter_left {
    padding-left:3rem;
}

.jb_newslwtteter_left h2{
 font-size:1.5em;
}

.email_info
{
    color: #245674;
}

/*---------------------------------------
često postavljena pitanja
------------------------------------------*/


.accordian_wraper {
    padding-top: 20px;
}

.accordion h1
{
    font-size: 1.75em;  /*28*/
    padding-bottom: 30px;
    font-weight: 600;
}

.accordion .card
 {
    background: #fff;
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.accordion .card_pagee {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #f0f5ff;
}

.accordion .card_pagee h5
{
    font-weight: 500;
    font-size: 1em;
}

.accordion .card-body {
    /* float: left; */
    width: 100%;
    background: #fff;
    padding: 20px;
    border: 0;
}

    .accordion .card-body .card_cntnt
     {
        /* float: left; */
        width: 100%;
    }

.accordion[data-toggle="collapse"].collapsed:after 
{
    content: "\2212";
}

.accordion .card_pagee a[data-toggle="collapse"]:after
 {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\2212";
    position: absolute;
    font-size: 1em;
    right: 15px;
}

.accordion .card_pagee a{
    color: #ffffff;
    background-color: #3bb6d5;
    display: block;
    padding: 13px 15px;
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-decoration: none;
}

    .accordion .card_pagee a.collapsed
    {
        color: #000000;
        background-color: #f0f5ff;
        display: block;
        padding: 13px 18px;
        border: 0;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .accordion .card_pagee a:after {
        color: #fff;
    }

    .accordion .card_pagee a.collapsed:after
    {
        content: "+";
        color: #000000;
        float: right;
    }


.breadcrumb-item.active .fa {
    padding-top: 3px;
    margin-right:5px;
} 
/*---------------------------------------
 DASHBOARD-scroll
------------------------------------------*/
/* width */
div.sidebar::-webkit-scrollbar {
  width: 2px;
}

/* Track */
div.sidebar::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
div.sidebar::-webkit-scrollbar-thumb {
  background: #dee4e9; 
}

/* Handle on hover */
div.sidebar::-webkit-scrollbar-thumb:hover {
   background: #007bff; 
}

/*---------------------------------------
 DASHBOARD-LIJEVA STRANCA IZBORNIK
------------------------------------------*/

.hamburger{
	/*font-size:16px;*/
	cursor: pointer;
	color: rgba(28, 226, 239, 0.20);
    border-radius:25px;
    background:#0579b1;
    width:35px;
    padding:8px 2px;
    position:absolute;
    right:-10px;
    top:80px;
    display:none;
}


.sidebar {
    position: fixed;
    left: 0;
    width: 230px;
    height: 100%;
    /*background: #064e79;*/
    background: #fdfdfd; /*1.10*/
    z-index: 99;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
}

.sidebar_title{
    height:60px;
    margin-top:2rem;
}

    /*.sidebar h4 {
        color: #656565;
        font-weight: 400;
        padding-left: 10%;
        display: block;
        color: #064e79;
    }*/

    
.sidebar h4 {
    font-weight: 400;
    /*margin-top: 4rem;*/
    padding: 0.9rem;
    display: block;
    color: #064e79;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    flex-direction: column;
   text-align: left;
}


       .sidebar h4 img {
        width:25px;
    }

.sidebar_inner {
    /*padding-top: 3rem;*/
    position: relative;
}

    .sidebar_inner ul {
        margin-bottom: 2rem;
    }

.sidebar ul li a {
    padding: 10px 10px;
    transition: all 0.2s ease;
     margin-bottom:1rem;
     display: flex;
     flex-wrap: nowrap;
}

.sidebar ul li a .text {
        margin-left: 10px;
        font-size: 0.9em;
        color: #656565;
        font-weight: 400;
        /*text-transform: uppercase;*/
        /*letter-spacing: 2px;*/
    }

.sidebar .sidebar_inner .service_title {
    color: white;
    padding-left: 10%;
    position: absolute;
    top: 10%;
    font-weight: 400;
    font-size: 1.3em;
}


.sidebar ul li .info_kontakt {
    display: block;
    padding: 5px 10px;
    color: #656565;
    transition: all 0.2s ease;
    padding: 10px 10px;
}

    .sidebar ul li a .icon,
    .sidebar ul li .info_kontakt .icon {
        font-size: 1em;
        vertical-align: middle;
        transition: background 0.2s ease;
        /*color:#fff;*/
        color: #656565; /*1.10*/
    }

    .sidebar ul li .info_kontakt .text {
        margin-left: 10px;
        font-size: 0.8em;
        /*color: #fff;*/
        color: #656565;
        font-weight: 400;
    }

.info_kontakt_header {
    margin-left: 10px;
    font-size:0.9em;
    color: #656565;
    font-weight: 500;
}

.sidebar ul li a:hover {
    border-right: 3px solid #0e94d4;
    background-color: #f7f7f7;
}

    .sidebar ul li a:hover .text {
        color: #0e94d4;
        font-weight: 500;
    }

    .sidebar ul li a:hover .icon {
        color: #0e94d4;
        font-weight: 500;
    }

.hover_collapse .sidebar {
    width: 230px;
}

    .hover_collapse .sidebar ul li a .text {
        display: inline-block;
        color: #656565; /*1.10*/
        font-weight: 400; /*1.10*/
    }

.click_collapse .sidebar {
    transition: all 0.2s ease;
}


.main_container {
    height: 100%;
    min-height: 90vh;
    width: calc(100% - 230px);
    margin-left: 230px;
    background-color: #f5f5f5; /*01.10.*/
}

    .main_container .main_content {
        /*background: #fff;*/ /*01.10.*/
        /*padding: 25px;*/
        /*margin-bottom: 25px;*/
        text-align: justify;
        min-height: 90vh;
        /*padding-top:2rem;*/
    }

.click_collapse .main_container {
    width: calc(100% - 230px);
    margin-left: 230px;
    transition: all 0.2s ease;
}

.click_collapse .sidebar {
    width: 100%;
    transition: all 0.2s ease;
    text-align: center;
}


.sidebar-info {
    color: white;
}
/*------------------------------------------
  notice
 ----------------------------------------*/

.notice {
    padding: 15px;
    background-color: #fafafa;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
       -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
            box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}

.notice-sm {
    padding: 10px;
    font-size: 80%;
}
.notice-lg {
    padding: 35px;
    font-size: large;
}
.notice-success {
    border-color: #80D651;
}
.notice-success>strong {
    color: #80D651;
}
.notice-info {
    border-color: #037ea6;
}
.notice-info>strong {
    color: #037ea6;
}
.notice-warning {
    border-color: #FEAF20;
}
.notice-warning>strong {
    color: #FEAF20;
}
.notice-danger {
    border-color: #d73814;
}
.notice-danger>strong {
   color: #d73814;
}
/*-----------------------------------------
   u ime koga se radi
------------------------------------------*/

.detail-person-info {
    padding: 5px;
    background-color: #fafafa;
    /*border-left: 6px solid #7f7f84;*/
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
   /*border-color: #037ea6;*/
    text-align:left;
    flex-wrap:wrap;
}

.detail-person-info .person-details {
 
    display: inline-block;
     /*-webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);*/
     /*border: 1px solid rgba(0,0,0,.1);*/
     /*background:#FFF;*/
     padding:1rem;
     width:300px;
     min-width:150px;
}

 .detail-person-info .person-details span.first {
        /*font-size: 0.5rem;*/
        /*text-transform:uppercase;*/
    }

     .detail-person-info .person-details h4 {
        color: #037ea6;
        font-size: 1.3em;
        margin-top:0.5rem;
        /*text-transform:uppercase;*/
    }

    .detail-person-info .person-details  i {
        display: inline-block;
        font-size: 1em;
        color: #037ea6;
    }
    .detail-person-info .in_name_off_delimiter {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 0.5rem 0 2rem;
        color: #037ea6;
        font-size: 2rem;
        padding-top: 1rem;
    }

.delimiter {
    padding-left: 1rem;
    width: 50%;
    color: #037ea6;
    display: block;
}


#novi_zahtjev {
    padding:50px;
    margin-bottom: 10px;
    transition: .4s;
    border: 1px solid #f7f7f7;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    position: relative;
    background: #fff;
}

.vrsta_zahtjeva {
    padding: 1rem 2rem;
    background-color: #fafafa;
    border-top: 6px solid #7f7f84;

}
.form-title {

    margin-top: 2rem;
}

.form-title h3 {
    font-size: 1em;
    margin-bottom: 2rem;
    color: #555;
    display: inline-block;
}
    .form-title .form-title-numb {
        color: #037ea6;
        border: 2px solid #037ea6;
        font-size: 1.2em;
        height: 35px;
        width:35px;
        /*line-height: 40px;*/
        text-align: center;
        border-radius: 50%;
        background: white;
        display:inline-block;
        font-weight:600;
        margin-right:1rem;
    }

  #novi_zahtjev .option_group,
  #novi_zahtjev .button-control,
  #novi_zahtjev .email_control
  {
      margin-left:1rem;
      padding-left:20px;
  }

 #novi_zahtjev .button-control {
    padding-left:1.5rem;
    display: flex;
    justify-content:flex-start !important;
 }

 #novi_zahtjev .email_control
  {
    width:70%;
   padding-left:1.5rem;
  }

/*
    radiocheckbox
*/
.option_group input[type="radio"] {
    display: none;
    transition: all 0.5s ease;
}
    .option_group input[type="radio"] :not(:disabled) ~ label {
        cursor: pointer;
    }
    .option_group input[type="radio"] :disabled ~ label {
        color: #037ea6;
        border-color: #037ea6;
        box-shadow: none;
        cursor: not-allowed;
    }

.option_group label {
    /*height: 100%;*/
    display: block;
    background: white;
    color: #037ea6;
    border: 1px solid #037ea6;
    /*border-radius: 20px;*/
    padding: 1rem;
    margin: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
    position: relative;
    min-height:200px;
    width: 240px;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}


.option_group label:hover {

  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  border: 1px solid #4597cd;

}

    .option_group label span {
        display: block;
        font-size: 0.9em;
        margin:10px;
    }
        .option_group label span.option__label {
            font-weight:500;
        }
    .option_group label span.option_icon {
        font-size: 2em;
    }


.option_group input[type="radio"]:checked + label {
    background: #037ea6;
    color: #fff;
}
    .option_group input[type="radio"]:checked + label::after {
        color: #037ea6;
        font-family: 'Font Awesome 5 Free';
        border: 1px solid #037ea6;
        font-weight: 700;
        content: "\f00c";
        font-size: 1.5em;
        position: absolute;
        top: -5px;
        right: -5px;
        transform: translateX(10%);
        height:40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        background: white;
        /*box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);*/
    }
.option_group p {
    font-weight: 900;
}



/* =========================================
                menu_mup
============================================ */
.menu_mup {
    margin-bottom: 40px;
     display: flex;   
}
.menu_mup a {
    display: flex;
     width: 100%;
}

.menu_mup a:hover,
.menu_mup a:focus
     {
       text-decoration: none;
    }

.menu_mup-item {
    background-color: #fff;
    padding: 80px 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
     /*min-height:320px;*/
   width: 100%;
    
}

    .menu_mup-item i {
        font-size: 1.5em;
        margin: 0;
        color: #037ea6;
    }

    .menu_mup-item h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .menu_mup-item hr {
        width: 45px;
        height: 3px;
        background-color: #037ea6;
        margin: 0 auto;
        border: none;
    }

    .menu_mup-item p {
        margin-top: 20px;
       font-size: 1em;
    }
	
	
  .menu_mup-item:hover {
        background-color: #037ea6;
    }

        .menu_mup-item:hover i,
        .menu_mup-item:hover h3,
        .menu_mup-item:hover p {
            color: #fff;
        }

        .menu_mup-item:hover hr {
            background-color: #fff;
        }

        .menu_mup-item:hover i {
            transform: translateY(-20px);
        }


    /* Smooth transition */

    .menu_mup-item,
    .menu_mup-item i,
    .menu_mup-item hr {
        -webkit-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
    }

        .menu_mup-item h3,
        .menu_mup-item p {
            -webkit-transition: all 400ms linear;
            transition: all 400ms linear;
        }


        .menu_mup-item .fa-arrow-right {
            font-size: 1.37em !important;
            cursor: pointer;
            width: calc(100% - 50px);
            text-align: right;
            position: absolute;
            bottom: 20px;
            right: 50px;
        }

.menu_mup-item:hover .fa-arrow-right{
  transform:translateX(15px);
  transition: .4s;
}

/*------------------------------------------
      service choose
 ----------------------------------------*/
/*.services_box_link_choose {
    text-decoration:none;
}
.services_box_link_choose:hover {
    text-decoration:none;
}*/

.services_box_choose {
    padding: 0px 35px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: .4s;
    border: 1px solid #f7f7f7;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
     box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
     position:relative;
     min-height:350px;
}
.services_box_choose i{
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    margin-right:10px;
    color:#0e94d4;
}
.services_box_choose h6{
    margin-bottom:1rem;

    color:#0e94d4;
    font-size:1em;
    text-transform:uppercase;
    /*text-align:center;*/
}
.services_box_choose p{
    font-size: 1em;
    /*color: #808080;*/
}
.services_box_choose .fa-arrow-right{
    font-size:  1.3em !important;
    cursor: pointer;
    width:100%;
    text-align:right;
    position:absolute;
    bottom:10px;
    right:30px;

    
}

.services_box_choose:hover .fa-arrow-right{
  transform:translateX(15px);
  transition: .4s;
}
.services_box_choose:hover{
    background-color:#0e94d4;
    border-radius: 5px;
    color: #fff !important;
    box-shadow: 0 15px 15px 2px rgba(213,213,213,0.5);
}
.services_box_choose:hover p,
.services_box_choose:hover i,
.services_box_choose:hover h6{
    color: #fff !important;
}
.active-service p{
    color: #fff;
}



/*--------------------------
    TABOVI
---------------------------------*/
.tabulation .nav-pills .nav-item {
    margin-bottom: 10px;
}

    .tabulation .nav-pills .nav-item .nav-link {
        background: #fff;
        border-radius: 4px;
        color: #000000;
        font-weight: 500;
        border: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 1em;
        line-height: 25px;
        -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
        -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
        box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    }

        .tabulation .nav-pills .nav-item .nav-link span {
            color: #00bdaa;
            font-size: 1.8em;
        }

        .tabulation .nav-pills .nav-item .nav-link.active {
            color: #fff;
            background: #037ea6;
            border: 1px solid #037ea6;
        }

            .tabulation .nav-pills .nav-item .nav-link.active span {
                color: #fff;
            }

.tabulation .tab-content {
    background: #fff;
    padding: 0;
}

    .tabulation .tab-content .img {
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
    }

    .tabulation .tab-content h3 {
        font-weight: 600;
    }

        .tabulation .tab-content h3 a {
            color: #000000;
        }

/*od bootstapa defautno maknutoi*/

.nav-pills .nav-link.active {
  background-color:#037ea6;
}
.nav-pills .nav-link {
    border-radius: 0px;
}
.tabulation-2 .nav-tabs .nav-link .nav-item .nav-link {
    /*background: #34c6d3;*/
    color: rgba(139, 137, 137, 0.9);
    font-weight: 600;
    padding: 1rem;
    border-top: 3px solid rgba(139, 137, 137, 0.3);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position:relative;
}

    .tabulation-2 .nav-tabs  .nav-item .nav-link.active {
        color: #037ea6;
        background: #fff;
        border-top: 3px solid #037ea6;
    }

         .tabulation-2 .nav-tabs  .nav-item .nav-link span.badge {
            color: #fff;
            background:rgba(139, 137, 137, 0.8);
            border-color:rgba(139, 137, 137, 0.8);
            /*position:absolute;
            top:5px;
            right:5px;*/
            margin-right:10px;
            border-radius:25px;
        }


        .tabulation-2 .nav-tabs  .nav-item .nav-link.active span.badge {
            color: #fff;
            background:#037ea6;
            border-color: #037ea6;
            /*position:absolute;
            top:5px;
            right:5px;*/
            margin-right:10px;
            border-radius:25px;
        }

.tabulation-2 .nav-tabs .nav-item .nav-link,
.tabulation-2 .nav-tabs .nav-item .nav-link.active {
    padding:10px;

}

.tabulation-2 .tab-content {
    padding: 5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
}

    .tabulation-2 .tab-content .tab-pane {
       width:100%;
       /*margin:1rem;*/
    }


/* dragiciji*/

/*.tab_container {
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
    position: relative;
  
}

.tab_container input, section {
    clear: both;
    padding-top: 10px;
    display: none;
}

    .tab_container > label {
        font-weight: 700;
        font-size: 18px;
        display: block;
        float: left;
        width: 20%;
        padding: 1.5em;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: #037ea6;
    }


#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
    display: block;
    padding: 20px;
    background: #fff;
    color: #999;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top:20px;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
    -webkit-animation: fadeInScale 0.7s ease-in-out;
    -moz-animation: fadeInScale 0.7s ease-in-out;
    animation: fadeInScale 0.7s ease-in-out;
}

.tab_container .tab-content h3 {
    text-align: center;
    margin-bottom:5rem;
}

.tab_container [id^="tab"]:checked + label {
    background: #fff;
    box-shadow: inset 0 3px #0CE;
    color: #037ea6;
}

    .tab_container [id^="tab"]:checked + label .fa {
        color: #0CE;
    }

.tab_container label .fa {
    font-size: 1.3em;
    margin: 0 0.4em 0 0;
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}*/

/*=========================================
    tab-slider
============================================ */
.slide_tabs {
	display: flex;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
	padding: 0.75rem;
	border-radius: 99px; 
    z-index: 2;
    width: 390px;

}

.slide_tabs input[type="radio"] {
	display: none;
}

.slide_tabs .tab {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 200px;
	font-size: 1em;
	font-weight: 400;
	border-radius: 99px; 
	cursor: pointer;
	transition: color 0.15s ease-in;
}

.slide_tabs .notification {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-left: 0.75rem;
	border-radius: 50%;
	background-color: #e6eef9;
	transition: 0.15s ease-in;
}

.slide_tabs input[type="radio"]:checked + label {
    color: #fff;
    z-index: 2;
}
.slide_tabs input[type="radio"]:checked + label > .notification {
	background-color:  #185ee0;
    color: #fff;
}


.slide_tabs input[id="radio-1"]:checked ~ .glider {
			transform: translateX(0);
		}


.slide_tabs input[id="radio-2"]:checked ~ .glider {
			transform: translateX(100%);
		}

.slide_tabs input[id="radio-3"]:checked ~ .glider {
			transform: translateX(200%);
		}


.slide_tabs .glider {
	position: absolute;
    top:8px;
	display: flex;
	height: 45px;
	width: 180px;
	background-color:rgba(69, 171, 205,0.7);
	z-index: 1;
	border-radius: 99px;
	transition: 0.25s ease-out;
}

@media (max-width: 700px) {
	.tabs {
		transform: scale(0.6);
	}
}

/*=========================================
           select2
============================================ */


.form-select {
    display: inline-block;
    width: 100%;
    /*height: 2.375rem;*/
    padding: 0.5rem 1.75rem 0.5rem 0.75rem;
    line-height: 1.5;
    color: #76839a;
    vertical-align: middle;
    background-size: 8px 10px;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #eaedf1;
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

select.form-control:not([size]):not([multiple]) {
    height: 2.375rem;
}




.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #edeff9;
    cursor: default;
}

/*ovo je za odabrani element*/
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #4386FD;
    color: #fff;
}
/*ovo je za hover nad  elementom*/
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4386FD;
    color: white;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!za odabir pozadine dropdowna*/
.select2-container--default .select2-selection--single {
    /* background-color: #f6f7fc;  */
    border: 1px solid #eaedf1 !important;
}

.select2-container--default .select2-selection--multiple {
    background-color: #f6f7fc;
    border: 1px solid #eaedf1 !important;
    cursor: text;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eaedf1 !important;
}

.select2-container--default .select2-results > .select2-results__options {
    box-shadow: 0px 16px 18px rgba(6, 10, 48, 0.1);
}

.select2-container .select2-selection--single {
    height: 2.375rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 37px !important;
}


.select2-dropdown {
    z-index: 6 !important;
}

/*!!!!!!!strelica*/
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 2.375rem !important;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #76839a transparent transparent transparent;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        height: 0;
        left: 50%;
        margin-left: -11px;
        margin-top: -3px;
        position: absolute;
        top: 50%;
        width: 0;
    }
/*=========================================
           table
============================================ */
/*table {
    border-collapse: collapse;
    margin: 5px auto;
    width:100%;
}

tr:nth-of-type(odd) {
    background: rgba(44, 172, 215, 0.10) !important;
}

th {
    margin-top: 20px !important;
    border-bottom: 3px solid #fff !important;
    color: #fff;
    background-color: rgb(44, 172, 215) ;
    font-weight: 400;
}

td, th {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 18px;
}


.doc-item__cta {
    margin-right: 5px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.doc-item__cta_view {
    background-color: #2b668e;
}

.doc-item__cta_edit {
    background-color: forestGreen;
}

.doc-item__cta_delete {
    background-color: #64707b;
}

/*.doc-item__cta:hover {
    background: #cd1315;
}


.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #34c6d3 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    
}*/
/*=========================================
           table
============================================ */
.table {
    border-spacing: 0 0.85rem !important;
}

    .table .dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

        .table .dropdown .dropdown-item {
            /*text-align: center;*/  /* 20.11.2020*/
            border-radius: 10px;
            margin-right: 5px;
            /*border: 2px solid #037ea6;*/
            color: #037ea6;
            font-size: 1.25em;
            padding: 0px 10px;
            width: 40px;
        }

            .table .dropdown .dropdown-item:hover {
                color: #064e79;
                -webkit-box-shadow: 0px 0px 4px 2px rgba(85, 85, 85, 0.1);
                -moz-box-shadow: 0px 0px 4px 2px rgba(85, 85, 85, 0.1);
                box-shadow: 0px 0px 4px 2px rgba(85, 85, 85, 0.1);
                transition: 1s;
                /*background: #037ea6;*/
            }

    .table td,
    .table th {
        vertical-align: middle;
        margin-bottom: 10px;
        border: none;
    }

    .table thead tr,
    .table thead th {
        border: none;
        font-size: 0.75rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        /*background: transparent;*/
        background: #037ea6;
        color: #fff;
    }

    
    .table > tbody {
        border: 1px solid #037ea6;
    }

        .table > tbody tr {
            border: 1px solid #037ea6;
            -webkit-box-shadow: 0px 0px 4px 2px rgba(85, 85, 85, 0.1);
            -moz-box-shadow: 0px 0px 4px 2px rgba(85, 85, 85, 0.1);
            box-shadow: 0px 0px 4px 2px rgba(85, 85, 85, 0.1);
            transition: 1s;
        }

    /*.table > tbody tr:hover {
                transform: scale(1.02);
                z-index: 3;
                background: rgba(85, 85, 85, 0.1);
                -webkit-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
                -moz-box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
                box-shadow: 0px 0px 8px 3px rgba(85, 85, 85, 0.1);
            }*/


    .table td {
        background: #fff;
    }

        /*.table td:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }*/

        .table td:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }


.avatar {
    width: 2.75rem;
    height: 2.75rem;
    line-height: 3rem;
    border-radius: 50%;
    display: inline-block;
    background: transparent;
    position: relative;
    text-align: center;
    color: #868e96;
    font-weight: 700;
    vertical-align: bottom;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.avatar-sm {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.8em;
    line-height: 1.5;
}

.avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.avatar-blue {
    background-color: rgba(69, 171, 205,0.7);
    color: #fff;
}

.avatar-pink {
    background-color: rgba(44, 237, 250, 0.2);
    color: #467fcf;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    top: 50%;
    left: 14px;
    border: none;
    box-shadow: none;
    transform: translateY(-50%);
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
    padding-left: 48px;
}

table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

table.dataTable > tbody > tr.child span.dtr-title {
    min-width: 50%;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
    padding: 0.75rem 1rem 0.125rem;
}

div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter label {
    margin-bottom: 0;
}


.table .page-item.active .page-link {
    background-color:#037ea6;
    color:#037ea6;
}


.dataTables_paginate .paging_simple_numbers .pagination .page-item.active .page-link
 {
      background-color:rgba(69, 171, 205,0.7);
 }


table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before {
    background-color:steelblue;
}



.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .15s ease;
}


.bg-gradient-default {
  background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.opacity-8 {
  opacity: .8 !important;
}

.bg-secondary {
  background-color: #f7fafc !important;
}

.shadow {
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.card-header {
  margin-bottom: 0;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  background-color: #fff;

}

.detail-doc-info .card-header h3{
    color:#037ea6;
    font-weight:600;
    font-size:1.5em;
 
}

.detail-doc-info .card-body{
    position:relative;
    padding-left:3rem;
    padding-right:3rem;
   
}

.detail-doc-info .card-body .card-body-info{
    background-color:#fff;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 2px 1px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 2px 1px rgba(85, 85, 85, 0.1);
    transition:1s;
    border-radius:10px;
    padding:1.5rem;

}


.avatar-lg{
    width:4rem;
    height: 4rem;
    line-height: 3rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    vertical-align: bottom;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(85, 85, 85, 0.1);
    -moz-box-shadow: 0px 0px 3px 1px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 3px 1px rgba(85, 85, 85, 0.1);
}
.avatar-lg i 
{
    margin-top:1rem;
    font-size:2em;
    color: #fff;
}

.card-body .avatar-lg
{
    position:absolute;
    top:-2rem;
    left:50%;
    transform:translateX(-50%);
}

.card-header:first-child {
  border-radius: calc(.375rem - 1px) calc(.375rem - 1px) 0 0;
}
.bg-white {
  background-color: #fff !important;
}

.border-0 {
  border:none;
}

.horizontal {
    display:flex;
    margin-bottom:0.5rem;
    margin-left:1.5rem;
}
.horizontal dt {
  width:180px;
  font-weight:400;
}
.stavka-text {
  margin-left:1.5rem;
  }
.heading-small {
  font-size: 0.75em;
  padding-top: .25rem;
  padding-bottom: .25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.text-muted {
  color: #8898aa !important;
}
.card.detail-doc-info{
    background: #fbfbfb;
    border-top: 5px solid #037ea6;
    padding-bottom:3rem;
}
.card-body-details{
    list-style: none;
    padding: 0;
}
.card-body-title
{
    margin-top:2rem;
    margin-bottom:1rem;
    font-size:1em;
    /*color: #8898aa;*/
    color:#037ea6;
    font-weight:600;
    text-align:left;
}

.card_title-main {
    /* box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2); */
    padding: 5px;
    width: 100%;
    transition: 0.3s;
    font-size: 1.25em;
    text-transform: uppercase;
    color: #34c6d3;
    font-weight: 400;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}



.card-validation {
    background: linear-gradient(-20deg, rgb(255, 255, 255) 50%, #0275d8 50%);
    color: white;
    border: 0px;
}

/*---------------------------------------
footer
------------------------------------------*/

    /*footer {
    position:relative;
    background:#064e79;
    height:150px;
    width:100%;
}*/

#contact {
     margin-right: 5%; 
     margin-left:4%;

}

footer {
    background:#064e79;
    padding-top: 30px;
    border-top: 5px solid rbga(0, 0, 0, 0.1);
}

#contact-left h3,
#contact-right h3 {
    color: #fff;
    font-size: 1.125em;
    font-weight: 600;
    margin-bottom:1rem;
}

#contact-left p {
    color: #fff;
}

#contact-info {
    background-image: url("../Images/world-map.png");
    background-repeat: no-repeat;
    background-size: contain;
}

address {
    color: #fff;
    font-size:1em;
    margin-bottom:0.5rem;
}


address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}

#footer-bottom {
    background-color: rbga(0, 0, 0, 0.1);
    padding: 30px 0;
    margin-right: 5%; 
    margin-left: 5%;
}

#foother-copyrights p {
    margin: 0;
    color: #fff;
}

#foother-menu {
    float: right;
    color: #fff;
    font-size: 1em;
    font-weight: 300;
}

#foother-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#foother-menu ul li {
    display: inline-block;
}

#foother-menu a {
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}

#foother-menu a:hover {
    color: #34c6d3;
}

.text-secondary {
    color: #737374!important;
}
/*---------------------------------------
    izjava pristupacnosti
------------------------------------------*/
            #AccessibilityStatement h2 {
        font-size: 18px !important;
        font-weight: bold;
        margin-bottom: 0px;
    }

    #AccessibilityStatement a {
        text-decoration: underline;
        color: #D71920;
    }

    #AccessibilityStatement .secundary-link {
        color: black !important;
    }

    #AccessibilityStatement .nepristupacnost-list li {
        position: relative;
        padding-left: 15px;
        margin-right: 0.8rem;
    }

        #AccessibilityStatement .nepristupacnost-list li::before {
            content: '';
            top: 5px;
            width: 14px;
            height: 14px;
            background-color: #D71920;
            border-radius: 2px;
        }

        #AccessibilityStatement .nepristupacnost-list li::before,
        #AccessibilityStatement .nepristupacnost-list li::after {
            content: '';
            position: absolute;
            left: -0.8rem;
        }

    #AccessibilityStatement .nepristupacnost-list {
        padding-left: 1rem;
    }

        #AccessibilityStatement .nepristupacnost-list li::after {
            left: -0.5rem;
            top: 7px;
            width: 4px;
            height: 7px;
            border: 2px solid #fff;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
        }




@media screen and (max-width: 1400px) {
     .landing .landing-header {
            margin-top:2rem;
        }

         .landing .left-col {
            padding:2rem;
            margin-top:2rem;
            margin-bottom:2rem;
        }

        .landing .left-col h4 {
            margin-top:1.5rem;
        }
         .landing .left-col h2  {
           font-size: 3em;
        }
         .landing .left-col p  {
           font-size: 1.1em;
        }

        .landing .right-col svg {
            height:400px;
            margin-left:1rem;
        }

         .landing .right-col {
            padding:1rem;
        }
}

@media screen and (max-width: 1250px) {

    .header .arrow {
        bottom:0%;
    }

    /*27.01*/
     .hover_collapse .sidebar {
        width: 40px;
    }

        .hover_collapse .sidebar ul li a .text,
        .hover_collapse .sidebar .sidebar-info ul li .info_kontakt .text,
        .hover_collapse .sidebar .sidebar-info .info_kontakt_header,
       .hover_collapse .sidebar h4 {
            display: none;
        }

            .main_container {
        margin-left: 40px;
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 900px) {

    /*.main_container {
        margin-left: 40px;
        width: calc(100% - 40px);
    }


    .hamburger {
        display: block;
    }

  .hover_collapse .sidebar {
        width: 50px;
    }

        .hover_collapse .sidebar ul li a .text,
        .hover_collapse .sidebar .sidebar-info ul li .info_kontakt .text,
        .hover_collapse .sidebar .sidebar-info .info_kontakt_header,
       .hover_collapse .sidebar h4 {
            display: none;
        }*/

    .right-col {
        display:none;
    }

    .menu_mup-item {
           padding: 50px 30px;
            min-height:300px;
    }
 

    .section.pregled_section {
        padding: 20px 10px;
    }

    .tab_container {
        width: 98%;
    }
        .tab_container>label span {
            display: none;
        }

       #novi_zahtjev .form-title
      {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
  
      #novi_zahtjev .form-title .form-title-numb{
      display: block;
      }

     #novi_zahtjev .form-title h3{
        text-align: center;
        line-height: 1.5;
      }

      #novi_zahtjev .option_group,
      #novi_zahtjev .email_control
      {
        justify-content: center;
        align-items: center;
        padding-left: 0px;
      }

    #novi_zahtjev .button-control {
        margin-left:0;
        padding-left:0;
    }
      #novi_zahtjev .email_control
      {
         width:80%;
      }
      
     .detail-doc-info .card-body {
        padding-left: 1rem;
        padding-right: 1rem;
     }
     .detail-doc-info .card-body .card-body-info{
         padding: 0.5rem;
     }
     .detail-doc-info .card-header h3{
         font-size: 1em;
     }
     .card-body-title{
     font-size: 0.87em;
     }
     .horizontal{
         margin-top:1rem;
     }
     .horizontal dt{
        width: 130px;
     }
     .horizontal dl .text-muted{
     font-size: 1em;
      }
     .horizontal dl{
 
        font-size: 1em;
     }
 
     .btn-general {
     padding: 12px;
     font-size: 0.87em;
     }

    .menu_mup-item i {
          font-size: 1.3em;
         
    }
    .menu_mup-item h3 {
     font-size: 1.1em;

    }

	.menu_mup-item .fa-arrow-right {
    font-size:  1em !important;

    } 

     #novi_zahtjev .button-control{
               display: flex;
                align-items: center;
                justify-content:center !important;
                 margin-left: 0px; 
                 padding-left: 0px; 
        }


}


    @media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
        .table .dropdown {
            flex-direction: column;
        }

        @media (max-width: 767px) {
            div.dataTables_wrapper div.dataTables_paginate ul.pagination {
                -ms-flex-pack: center !important;
                justify-content: center !important;
                margin-top: 1rem;
            }

        }

        #novi_zahtjev {
            padding: 40px;
        }

         .dataTables_wrapper{
            font-size:0.8em;
        }

       
        .menu_mup-item {
               padding: 40px 30px;
        }
 
        .menu_mup-item i {
          font-size: 1.1em;
        }

         .menu_mup-item p {
           font-size: 1em;
       }

         .jb_newslwtteter_left h2{
         font-size:1.2em;
        }


        .landing .landing-header {
            margin-top:2rem;
        }

         .landing .left-col {
            padding:1rem;
            /*margin-top:-2rem;*/
            margin-top:2rem;
            margin-bottom:2rem;
        }

        .landing .left-col h4 {
            margin-top:1.5rem;
        }
         .landing .left-col h2  {
           font-size: 2.5em;
        }
         .landing .left-col p  {
           font-size: 1.1em;
        }

        .landing .right-col svg {
            height:300px;
            margin-left:1rem;
        }

         .landing .right-col {
            padding:1rem;
        }

        .btn-icon {
            background: #fff;
        }

            .btn-icon .bx {
                font-size: 1.1em;
            }

        .btn .bx {
            vertical-align: middle;
            font-size: 1.25em;
        }

        .table .dropdown .dropdown-menu {
            padding: 0.25rem 0;
        }
        .table .dropdown  {
            flex-direction:column;
        }


        .table .dropdown .dropdown-item {
            font-size:1.3em;
            padding: 0px 10px;
        }

        .badge {
            padding: 0.5em 0.75em;
        }

        .badge-success-alt {
            background-color: #d7f2c2;
            color: #7bd235;
        }

          table.dataTable > tbody > tr.child span.dtr-data {
            font-size: 0.9em;
             max-width: 200px;
             display: block;
             word-wrap: break-word;
            text-align: left;
            white-space: normal;
        }

        table.dataTable > tbody > tr.child span.dtr-title {
            min-width: 30%;
        }

        div.dataTables_wrapper div.dataTables_filter input {
            margin-top:10px;
        }


        .table a {
            color: #212529;
        }

            .table a:hover,
            .table a:focus {
                text-decoration: none;
            }

        table.dataTable {
            margin-top: 12px !important;
        }

        .icon > .bx {
            display: block;
            min-width: 1.5em;
            min-height: 1.5em;
            text-align: center;
            font-size: 1em;
        }

        .btn {
            font-size: 0.9em;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
        }

        .avatar-blue {
            background-color: #037ea6;
            color: #fff;
        }

        .avatar-pink {
            background-color: #fcd3e1;
            color: #f66d9b;
        }


        .horizontal {
            flex-direction:column;
        }

        footer #contact-left p,
        footer #contact-left address
        {
          font-size:0.9em;
          margin-bottom:0.5rem;
        }

        .services_box {
            min-height:150px;
        }


         .startup_isting_wrapper li i, .startup_isting_wrapper li .svg-inline--fa {
            margin-right: 10px;
        }

        .startup_isting_wrapper li span {
            font-size: 1em;
        }


    table.dataTable .avatar
    {
       width: 2rem;
       height: 2rem;
       line-height: 2rem;
   
    }
    section.pregled_section {
            padding: 40px 20px;
        }

    #novi_zahtjev .email_control
          {
             width:100%;
              padding-left:0px;
          }


    }

    @media (max-width: 480px) {


    .breadcrumb {
            font-size: 0.8rem;
        }

   .main_container .main_content {
    padding: 10px;
}
   .sidebar ul li a .text{
         font-size: 0.9em;
   }

    div.dataTables_wrapper div.dataTables_filter label {
         white-space:pre-wrap;
    }
    div.dataTables_wrapper div.dataTables_info {
        white-space:pre-wrap;
    }

     li.paginate_button.previous {
        display: inline;
    }
 
    li.paginate_button.next {
        display: inline;
    }
 
    li.paginate_button {
        display: none;
    }

     .menu_mup-item i {
          font-size: 1em;
        }
        .menu_mup-item h3 {
            font-size: 1em;
        }

        .menu_mup-item p {
           font-size: 0.9em;
       }
        section.pregled_section {
            padding: 40px 15px;
        }

        .content-title h3 {
                font-size: 1.5em;
        }


    #novi_zahtjev {
    padding: 20px;


}
    #novi_zahtjev .email_control
    {
    margin-left: 10px;
    width: 100%;
    padding-right: 15px;

    }
      #novi_zahtjev .email_control .text-muted{
            text-align: center;
      }
  
      #novi_zahtjev .option_group{
    margin-left: 0px;
    padding-left: 0px;
    width:100%;
}

       

    .form-title h3 {
     font-size: 1em;
     }

    .notice{
            margin: 0px 0.8rem;
            font-size: 0.9em;
    }

    .option_group label {
    min-height: 150px;
    width: 200px;
     }

    span.option_icon {
    font-size: 1.5em;
    }
    .option_group label span {
    font-size: 0.8em;
    }

        .nav-pills .nav-link,
        .nav-tabs .nav-link {
                font-size: 0.9em;

        }

  
    table.dataTable .avatar
    {
        display:none;
    }

    .custom-90w {
    width: 100%;
}
    .avatar-lg i {
    font-size: 1em;

}

.detail-doc-info .card-body .card-body-info {
    padding: 0.5rem;
    font-size: 0.8em;
}

        .table thead th,
        .table body td{
            font-size:0.7rem;
        }

.tabulation-2 .tab-content {
    padding: 3rem 0.5rem;
}

 

.jb_newslwtteter_left
{
 padding-left:0px;
  width:100%;
}

.services_icon_wraper h1 {
    width: calc(100% - 30px);
    padding-left: 5px;
	font-size: 1em;
}


.card-body .avatar-lg {
   display:none;

}

avatar-lg {
    width: 2rem;
    height: 2rem;
    line-height: 1rem;
    font-size: 1em;

}

.avatar-lg i {
    margin-top: 0.5rem;
}


.btn-general {
    margin: 0.8rem;
    height: 45px;
	font-size: 0.8em;
	margin-right: 0px;
	padding: 10px;

}

}

@media (max-width: 320px) {

}

