@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif !important;
  font-size: 16px !important; 
}

.container {
  width: 90% !important;
  margin: auto;
  max-width: 1400px !important;
}

a {
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
  color: lightgrey;
}

.sviKorisnici {
  width: 120px;
  display: block;
  background-color: rgb(166, 166, 214);
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 15px;
  margin: 50px auto 20px auto;
  box-shadow: 0 0 5px rgb(166, 166, 214);
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
form input, form select, form option, form textarea {
  padding: 10px;
  border: none;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgb(166, 166, 214);
  font-size: 16px;
}
form input[type=submit], form select[type=submit], form option[type=submit], form textarea[type=submit] {
  background-color: rgb(166, 166, 214);
  color: #fff;
}
form .wrapper input[type=radio] {
  visibility: hidden;
}
form .wrapper label {
  cursor: pointer;
}
form .input-group .input-group-btn .btn {
  height: 51px;
  margin-top: -20px;
  border-radius: 0px 15px 15px 0;
  font-size: 17px;
  line-height: 40px;
}
form .custom-file {
  box-shadow: 0 0 5px rgb(166, 166, 214);
  border-radius: 15px;
  height: auto;
  margin-bottom: 20px !important;
}
form .custom-file label {
  padding: 10px;
  border-radius: 15px;
  height: 45px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgb(166, 166, 214);
}
form .custom-file label::after {
  height: 100%;
  padding-top: 10px;
}

.izmeni form option {
  font-size: 14px;
}

/*****
TOOLTIP
*****/
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/******
HEADER
*******/
header {
  background-color: rgb(166, 166, 214);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
header nav {
  width: 100% !important;
}
header nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
}
header nav .container:before, header nav .container:after {
  display: none;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
header nav ul li {
  margin-right: 20px;
}
header nav ul li:last-child {
  margin-right: 0;
}
header nav ul li a {
  text-decoration: none;
  color: #fff;
}
header .brand a, header .brand p {
  color: #fff;
  text-decoration: none;
}
header #klijentForma, header #kategorijaForma {
  display: none;
}

/*****
RADOVI
******/
.radovi {
  padding: 50px 0;
}
.radovi article {
  margin-bottom: 20px;
  background-color: rgba(136, 136, 240, 0.234);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 15px;
}
.radovi article h2 {
  font-weight: 300;
  margin-bottom: 20px;
  display: inline-block;
}
.radovi article .singleLink {
  display: inline-block;
  width: 150px;
  padding: 10px;
  border-radius: 7px;
  background-color: #fff;
  color: rgb(166, 166, 214);
  text-align: center;
  text-decoration: none;
  margin-left: 20px;
}
.radovi article p span:first-child {
  color: green;
}
.radovi article p span:nth-child(2) {
  color: red;
}
.radovi article p span:nth-child(3) {
  color: lightgray;
}
.radovi article p:nth-child(2) {
  margin: 10px 0;
  font-size: 12px;
}
.radovi article p:last-child {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.radovi article p:last-child span:first-child {
  color: blue;
}

#mobnav {
  display: none;
}

.mobile {
  display: none;
}

@media (max-width: 768px) {
  header .desktop {
    display: none;
  }
  header .mobile {
    display: block;
  }
  header .mobile .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10vh;
  }
  header .mobile .container .toggler {
    height: 30px;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  header .mobile .container .toggler .bar {
    height: 4px;
    width: 100%;
    background-color: #fff;
  }
  #mobnav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 10vh;
    left: -100%;
    overflow: hidden;
    transition: 0.3s;
    width: 100%;
    height: 90vh;
    z-index: 2;
    align-items: start;
    padding: 30px 0;
    justify-content: flex-start;
    align-items: center;
  }
  #mobnav .topBar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 100% !important;
  }
  #mobnav .topBar .container p {
    text-align: center;
  }
  #mobnav .topBar .container .forms {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  #mobnav .topBar .container .forms form {
    display: flex;
    max-width: 100% !important;
  }
  #mobnav .topBar .container .forms form:first-child {
    margin-bottom: 20px;
  }
  #mobnav .topBar .container .forms form input[type=submit] {
    width: 80px;
    padding: 10px 0;
  }
  #mobnav nav {
    margin-top: 50px;
  }
  #mobnav nav .container {
    align-items: flex-start;
  }
  #mobnav nav .container ul {
    flex-direction: column;
  }
  #mobnav nav .container ul li {
    margin-bottom: 10px;
  }
  #mobnav.active {
    left: 0;
  }
  .radovi .rad .singleLink {
    display: block;
    margin: 0 auto 20px auto;
  }
  .radovi .rad .detalji p:last-child {
    flex-direction: column;
  }
  .singleRad form .flex-row-reverse {
    flex-direction: column !important;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */