@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Ubuntu&display=swap");
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#content {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-family: "Ubuntu", sans-serif;
  color: #222;
  padding-bottom: 30px;
  background: #222;
}
body a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDownTop {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.slide-out {
  animation-name: slideOut;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000000;
  opacity: 1;
  transition: opacity 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo_preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.logo_preloader .logoImage {
  max-width: 100%;
  height: auto;
  animation: twinkling 2s ease-out forwards;
}

/* @keyframes ... */
@keyframes twinkling {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
body {
  overflow: hidden;
}

@keyframes dropdown-animation {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes dropdown-animation {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.nav {
  position: fixed;
  background-color: #222;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.nav .showMe {
  display: inline-block;
}
.nav .hideMe {
  display: none;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
}
.nav .container ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}
@media (max-width: 650px) {
  .nav .container ul {
    display: none;
  }
}
.nav .container .mobile_corner {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  gap: 1rem;
}
.nav .container .mobile_corner .dropdown {
  position: relative;
  display: inline-block;
}
.nav .container .mobile_corner .dropdown .dropdown-button {
  background-color: #84a0fb;
  color: white;
  text-shadow: 2px 2px #000000;
  padding: 5px 8px;
  font-size: 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
}
.nav .container .mobile_corner .dropdown .dropdown-button:focus {
  background-color: #537af9;
  outline: none;
}
.nav .container .mobile_corner .dropdown .dropdown-button:focus ~ .dropdown-content {
  visibility: visible;
  opacity: 1;
  animation-name: dropdown-animation;
  animation-duration: 0.3s;
}
.nav .container .mobile_corner .dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
  z-index: 1;
  border-radius: 10px;
  opacity: 0;
  border: #537af9 solid 2px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  top: 100%;
  background: linear-gradient(180deg, #537af9 0%, rgba(36, 54, 82, 0.5333333333) 98%);
  right: 0;
}
.nav .container .mobile_corner .dropdown .dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
  border-radius: 10px;
  text-shadow: 2px 2px #000000;
}
.nav .container .mobile_corner .dropdown .dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.8470588235);
  color: #fff;
  border-radius: 10px;
}
.nav .container .mobile_corner .dropdown .dropdown-content a .speed_menu {
  display: flex;
  flex-direction: column;
}
.nav .container .mobile_corner .dropdown .dropdown-content a .speed_menu .row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1.2rem;
}
.nav .container .mobile_corner .dropdown .dropdown-content a .speed_menu .col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.nav .container .mobile_corner .dropdown .dropdown-content a .speed_menu .small_font {
  font-size: 1rem;
  padding-top: 0.5rem;
  text-align: left;
  width: 100%;
}
.nav .container a {
  color: #fff;
  text-decoration: none;
  padding: 7px 15px;
  transition: all 0.3s ease-in-out;
}
.nav .container a:hover,
.nav .container .active {
  color: #c0392b;
}
.nav .on-scroll {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 0px 0;
}
.nav .on-scroll a {
  color: #000;
}
.nav .hamburger {
  display: none;
  z-index: 9;
}
@media (max-width: 650px) {
  .nav .hamburger {
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 0.5rem;
  }
}
.nav .hamburger span {
  height: 4px;
  background: #84a0fb;
  transition: all 0.3s ease-in-out;
}
.nav .hamburger.active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.nav .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav .hamburger.active span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.logo {
  width: 210px;
}

#logoImage {
  width: auto;
  height: 50px;
}

.ShowMe {
  display: inline-block;
}

.HideMe {
  display: none;
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

.fade-in2 {
  animation: fadeIn 1.5s ease-in-out forwards;
}

#ap2 {
  text-shadow: #000 0px 50px 500px;
  padding-bottom: 10px;
}
#ap2 span {
  text-shadow: #000000 2px 2px 2px;
  font-size: 28px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  color: #fff;
  transition: color 1.5s ease;
}
#ap2 span:nth-child(odd) {
  animation-name: slideInLeft;
}
#ap2 span:nth-child(even) {
  animation-name: slideInLeft;
}
#ap2 span:nth-child(1) {
  animation-delay: 0.65s;
}
#ap2 span:nth-child(2) {
  animation-delay: 0.8s;
}
#ap2 span:nth-child(3) {
  animation-delay: 0.95s;
}
#ap2 span:nth-child(4) {
  animation-delay: 1.1s;
}
#ap2 span:nth-child(5) {
  animation-delay: 1.25s;
}
#ap2 span:nth-child(6) {
  animation-delay: 1.4s;
}
#ap2 span:nth-child(7) {
  animation-delay: 1.55s;
}
#ap2 span:nth-child(8) {
  animation-delay: 1.7s;
}

.hero {
  margin-top: 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}
.hero #choose {
  position: relative;
  top: 0px;
  color: antiquewhite;
  text-align: center;
}
.hero .centralMenu {
  animation: slideDownTop 1s ease-in-out forwards 1.5s;
  padding: 1px;
  max-width: 100%;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.7960784314);
  box-shadow: 1px 1px 50px #84a0fb;
  margin: 5px 5px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 10;
  opacity: 0;
  transform: translateY(100%);
}
@keyframes changeBorderColor {
  0% {
    border-color: #6cff03;
  }
  25% {
    border-color: #03ff6c;
  }
  50% {
    border-color: #ffee03;
  }
  75% {
    border-color: #ffd103;
  }
  100% {
    border-color: #6cff03;
  }
}
.hero .centralMenu video {
  width: 100%;
  /* Širina je 100% kako bi popunila cijelu širinu roditelja */
  height: auto;
  /* Visina je automatski prilagođena kako bi zadržala izvorni omjer stranica */
  max-width: 100%;
  /* Maksimalna širina je 100% kako bi se spriječilo širenje izvan roditelja */
  min-width: 300px;
}
.hero .centralMenu .button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .centralMenu .button .btn-text {
  flex: 2;
}
.hero .centralMenu .button .btn-icon {
  flex: 1;
  text-align: right;
}
.hero .centralMenu .button .btn-icon img {
  max-width: 100%;
  height: auto;
}
.hero .centralMenu a {
  background-color: rgba(0, 90, 108, 0.0784313725);
  text-shadow: #000000 2px 2px 2px;
  color: #fff;
  border-radius: 7px;
  border-color: solid 2px #ffb700;
  padding: 1px;
  min-width: 240px;
  display: block;
}
.hero .centralMenu a img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.hero .centralMenu a:hover {
  background-color: rgba(85, 108, 0, 0.436);
  color: #ffffff;
}
.hero h1 {
  font-size: 46px;
  margin: 0px 0 10px;
  text-shadow: #000 2px 2px 1px;
  color: aliceblue;
}
.hero h3 {
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: #000 2px 2px 1px;
  color: rgba(255, 255, 255, 0.7333333333);
}
@keyframes fade {
  from {
    background-color: rgb(0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  animation: fade 5s ease-out forwards;
  z-index: -1;
}
.hero p {
  font-size: 20px;
  letter-spacing: 1px;
}

.content h2,
.content h3 {
  font-size: 150%;
  margin: 40px 0;
}
.content p {
  color: #555;
  line-height: 30px;
  letter-spacing: 1.2px;
}

.button {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  padding: 0.5em 0.5em;
  color: #fff;
  background-color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 15rem;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
}
.button a {
  display: block;
}
.button:hover {
  background-color: #d1fb84;
  color: #000;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 1.5em;
    padding: 0.75em 1.5em;
  }
}

.promotion_button {
  display: inline-block;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5rem;
  color: #fff;
  background-color: #84a0fb;
  text-shadow: 2px 2px black;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  margin: 5px;
}
.promotion_button:hover {
  background-color: #000;
}

.share_button {
  display: inline-block;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5rem;
  color: #fff;
  background-color: #000000;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  margin: 5px;
}
.share_button:hover {
  background-color: #d1fb84;
  color: #000;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
#mobile_menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  animation: slideDown 1s ease forwards;
  flex-direction: column;
  align-items: center;
}
#mobile_menu::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.721);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#mobile_menu .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}
#mobile_menu .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  text-align: center;
}
#mobile_menu .grid-item img {
  width: 100%;
  height: auto;
}
#mobile_menu .grid-item p {
  margin: 10px 0;
}
#mobile_menu .grid-item:hover {
  background-color: rgba(233, 222, 119, 0.742);
  color: aliceblue;
}

.box {
  background-color: steelblue;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.5s, transform 0.5s;
}
.box:nth-of-type(even) {
  background-color: rgb(70, 180, 70);
}
.box.show {
  opacity: 1;
  transform: translateY(0);
}
.box h2 {
  font-size: 45px;
}

.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.card-container .responsive-image {
  max-width: 100%;
  height: auto;
}
.card-container .card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  max-width: 45%;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.5s, transform 0.5s;
}
.card-container .card .ai {
  color: #fff;
  padding: 0px 3px;
  background: #000;
  border-radius: 5px;
}
.card-container .card .promo {
  display: flex;
  flex-direction: column;
}
.card-container .card .promo .promotion_headline {
  font-weight: 400;
  color: #ffffff;
  font-size: 1.5rem;
  text-shadow: #000 2px 2px;
  background-color: rgba(0, 0, 0, 0.8549019608);
  text-align: center;
  margin-top: -50px;
  padding: 10px;
}
.card-container .card .promo span {
  color: #eeff00;
}
.card-container .card .promo .small_font {
  font-size: 1em;
  padding-top: 0.5rem;
  text-align: left;
  width: 100%;
  text-shadow: 0px 2px 0 #000, 2px 0px 0 #000;
}
.card-container .card .naslov_kartice {
  position: relative;
  margin-top: -50px;
  top: 0;
  left: 0;
  font-size: 1.6rem;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  font-weight: 1000;
  line-height: 1.5;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0;
  text-shadow: 2px 2px 4px #637ee6, -2px -2px 4px #A06C2A, 2px -2px 4px #A06C2A, -2px 2px 4px #000;
  letter-spacing: 0.2em;
  width: 100%;
}
.card-container .card .card_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.card-container .card:nth-of-type(even) {
  background-color: rgb(255, 255, 255);
}
.card-container .card.show {
  opacity: 1;
  transform: translateY(0);
}
.card-container .card .card-img-top {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-container .card .dropdown {
  position: relative;
  display: inline-block;
}
.card-container .card .dropdown .dropdown-button {
  background-color: #ff6600;
  color: white;
  text-shadow: 2px 2px #000000;
  padding: 5px 8px;
  font-size: 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
}
.card-container .card .dropdown .dropdown-button:focus {
  background-color: #cc5200;
  outline: none;
}
.card-container .card .dropdown .dropdown-button:focus ~ .dropdown-content {
  visibility: visible;
  opacity: 1;
  animation-name: dropdown-animation;
  animation-duration: 0.3s;
}
.card-container .card .dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
  z-index: 1;
  border-radius: 10px;
  opacity: 0;
  border: #cc5200 solid 2px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  bottom: 100%;
  background: linear-gradient(0deg, #cc5200 0%, rgba(255, 255, 255, 0) 98%);
  right: 0;
}
.card-container .card .dropdown .dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
  border-radius: 10px;
  text-shadow: 2px 2px #000000;
}
.card-container .card .dropdown .dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.8470588235);
  color: #fff;
  border-radius: 10px;
}
.card-container .card .dropdown .dropdown-content a .speed_menu {
  display: flex;
  flex-direction: column;
}
.card-container .card .dropdown .dropdown-content a .speed_menu .row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1.2rem;
}
.card-container .card .dropdown .dropdown-content a .speed_menu .col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.card-container .card .dropdown .dropdown-content a .speed_menu .small_font {
  font-size: 1rem;
  padding-top: 0.5rem;
  text-align: left;
  width: 100%;
}
.card-container .card .dropdown .card-img-top {
  border-radius: 10px 10px 0 0;
}
.card-container .card .dropdown .row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1.2rem;
}
.card-container .card .dropdown .col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.card-container .card .dropdown .dropdown-content {
  display: none;
}
.card-container .card .dropdown .dropdown-content.show {
  display: block;
}
.card-container .card .card-body {
  padding: 1.25rem;
}
.card-container .card .card-body .card-title {
  position: relative;
  margin-top: -10px;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  z-index: 0;
  text-align: center;
}
.card-container .card .card-body .card-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #84a0fb;
  width: 100%;
  height: 1px;
  z-index: -1;
}
.card-container .card .card-body .card-text {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 1.19rem;
}
@media (max-width: 650px) {
  .card-container .card {
    max-width: 95%;
  }
  .card-container .card .card-img-top {
    height: auto;
    transition: transform 0.3s;
  }
  .card-container .card .card-body {
    padding: 1rem;
  }
}
.card-container .card .btn {
  background-color: #84a0fb;
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  padding: 10px;
  font-size: 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-right: 5px;
  text-shadow: 2px 2px black;
}
.card-container .card .btn:hover {
  background-color: black;
  outline: none;
}

footer {
  width: 100%;
  color: white;
  background-color: rgba(51, 51, 51, 0.6431372549);
  padding: 20px;
  font-family: Arial, sans-serif;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  footer .footer-container {
    flex-direction: row;
    justify-content: space-around;
  }
}
footer .footer-container .footer-column {
  text-align: center;
  min-width: 200px;
  margin-bottom: 5px;
}
footer .footer-container .footer-column h3 {
  margin-bottom: 5px;
}
footer .footer-container .footer-column p,
footer .footer-container .footer-column ul {
  margin: 0;
  text-align: left;
  line-height: 1.5rem;
}
footer .footer-container .footer-column .footer_links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
footer .footer-container .footer-column .footer_links li {
  list-style: none;
}
footer .footer-container .footer-column .footer_links li a {
  border-radius: 5px;
  border: 1px solid #84a0fb;
  padding: 7px;
  text-shadow: 2px 2px #000000;
  text-decoration: none;
  color: antiquewhite;
  transition: all 0.3s ease;
}
footer .footer-container .footer-column .footer_links li a:hover {
  border: 1px solid rgb(207, 221, 11);
}
footer .footer-container .footer-column svg {
  width: 50px;
  height: 36.5px;
}
footer .footer-container .footer-column .quote-highlight {
  text-align: center;
  font-weight: 700;
  text-shadow: 1px 1px #000000;
  color: #c9b9b9;
}

#cookies-policy {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  bottom: 0;
  width: auto;
  background-color: #000000;
  border-radius: 15px;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  font-size: 1rem;
  z-index: 9999;
}
#cookies-policy #close_cookie:hover {
  color: aquamarine;
  cursor: pointer;
}
#cookies-policy #cookie_icon {
  background-color: #000;
  padding: 2px;
}
#cookies-policy p {
  margin: 0;
  padding: 0 10px;
  line-height: 1.5;
}
#cookies-policy p a {
  color: #007bff;
}

#open-dialog {
  cursor: pointer;
}

dialog {
  width: 400px;
  padding: 20px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
dialog::backdrop {
  background-color: hsla(0, 0%, 0%, 0.746);
}

#close-dialog {
  position: absolute;
  top: 0;
  right: 0;
}

h2 {
  margin-top: -56px;
  text-align: center;
  width: 100%;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

p {
  line-height: 1.5;
}

#close-dialog:hover {
  background-color: #bbb;
}

/* Stilovi za modal dialog */
.modal-dialog {
  width: 95%;
  max-width: 600px;
}
.modal-dialog .dialog_img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Stilovi za sadržaj modala */
.modal-content {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: row;
}

/* Stilovi za gumb za zatvaranje modala */
.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.dialog_wrapper {
  display: flex;
  flex-direction: column;
  color: rgb(255, 255, 255);
  background-color: #000;
}
.dialog_wrapper .buttons_area {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-items: center;
}
.dialog_wrapper strong {
  font-size: 1.8rem;
  color: #fbff00;
  text-shadow: 2px 2px 2px rgb(255, 60, 0), -2px -2px 2px rgb(255, 60, 0), 2px -2px 2px rgb(255, 60, 0), -2px 2px 2px rgb(255, 60, 0);
}
.dialog_wrapper a {
  padding: 5px;
  background-color: #ffffff;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.dialog_wrapper a:hover {
  background-color: #377cca;
  color: antiquewhite;
}

.online-service {
  color: rgb(108, 201, 1);
  padding: 5px;
  text-align: center;
}
.online-service .online-status {
  color: rgb(193, 249, 156);
}

.offline {
  color: #84a0fb;
}

#success-dialog p {
  text-align: center;
  /* Centrira tekst unutar <p> elementa */
  font-size: 18px;
  /* Postavlja veličinu fonta */
  margin-top: 10px;
  /* Dodaje prostor iznad teksta */
  margin-bottom: 10px;
  /* Dodaje prostor ispod teksta */
  font-weight: 600;
  /* Čini tekst malo debljim */
  color: #f1ffe7;
  /* Postavlja boju teksta */
  max-width: 80%;
  /* Ograničava širinu teksta unutar dijaloga */
  margin-left: auto;
  /* Automatska margina s lijeve strane (kombinacija s margin-right centra sadržaj) */
  margin-right: auto;
  /* Automatska margina s desne strane */
}

.support_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.support_box .support_seller {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  background-color: rgba(245, 245, 245, 0.1294117647);
  margin-bottom: 10px;
}
.support_box .support_seller div, .support_box .support_seller .button {
  font-family: Arial, sans-serif;
  font-size: 16px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.support_box .support_seller .button {
  padding: 12px 12px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background-color: #007bff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  align-items: center;
  text-align: center;
}
.support_box .support_seller .button:hover {
  background-color: #0056b3;
}
.support_box .support_seller .button i {
  margin-right: 0;
}

.swiper {
  width: 100%;
  height: auto;
  z-index: -1;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  color: rgba(47, 47, 47, 0.5);
  padding: 0;
  margin: 0;
}
.swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  max-width: 100%;
  height: auto;
}
.swiper .swiper-button-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  padding-top: 10px;
  z-index: 9999;
  background-color: rgba(103, 107, 110, 0.759);
  border-radius: 5px;
  color: #fff;
}
.swiper .swiper-button-fullscreen:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}
.swiper .swiper-button-fullscreen i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.galery {
  z-index: 1;
}

.form {
  border-radius: 20px;
  height: auto;
  padding: 10px;
  width: auto;
}

.title {
  color: #eee;
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
}

.subtitle {
  color: #eee;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.ic1 {
  margin-top: 10px;
}

.ic2 {
  margin-top: 20px;
}

.input {
  background-color: #303245;
  border: 1px solid #303245;
  border-radius: 12px;
  box-sizing: border-box;
  color: #fff;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 5px;
  width: 100%;
}

.cut {
  background-color: #fff;
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 76px;
}

.cut-short {
  width: 90px;
}

.input:not(:-moz-placeholder-shown) ~ .cut {
  transform: translateY(10px);
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(10px);
}

.placeholder {
  color: #ffffff;
  font-family: sans-serif;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}

.input:not(:-moz-placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:-moz-placeholder-shown) ~ .placeholder {
  color: #808097;
}

.input:not(:placeholder-shown) ~ .placeholder {
  color: #808097;
}

.input:focus ~ .placeholder {
  color: #dc2f55;
}

.submit {
  background-color: #08d;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  text-align: center;
  width: 100%;
}

.submit:active {
  background-color: #06b;
}

.textarea {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}

.textarea-container {
  height: auto;
}
.textarea-container textarea {
  font-size: 16px;
  padding-top: 10px;
}

.med_za_pcele {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #3498db;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

input:invalid {
  border-color: red;
}

#phone:invalid, #message:invalid {
  border-color: red;
}

#clearAttachments {
  background-color: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
  color: #777;
}
#clearAttachments:hover {
  color: #555;
}

.ai-responsive-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block; /* Dodato da bismo osigurali da je slika blokovni element */
  margin-bottom: -148px;
  position: relative;
  z-index: 1;
}

.hidden-input {
  display: none;
}

table {
  width: 100%;
  margin-bottom: 2rem;
  color: #212529;
  border-collapse: collapse;
}

td {
  padding: 0.5rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
td:first-child {
  color: #003366;
}

tbody:before {
  content: "-";
  display: block;
  line-height: 1em;
  color: transparent;
}

tr:hover {
  background-color: #e8f0fe;
}

#box9 {
  padding: 10px;
}
#box9 .card-img-top {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}
#box9 .card-body .card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
#box9 .card-body .card-text {
  font-size: 14px;
}
#box9 .card-body .custom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
#box9 .card-body .custom-list li {
  font-size: 18px;
  padding-bottom: 10px;
}
#box9 .card_footer {
  font-size: 14px;
}

.card .chat-container {
  position: relative;
  bottom: 0;
  top: 0px;
  overflow-y: auto;
  padding: 10px 0px 35px;
}
.card .chat-bubble {
  position: relative;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
  clear: both;
}
.card .chat-bubble.user {
  background-color: #ddd;
  color: black;
  align-self: flex-end;
}
.card .chat-bubble.user:before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  padding-right: 10px;
}
.card .chat-bubble.ai {
  background-color: rgb(0, 123, 255);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 10px;
  margin-left: 10%;
  border-radius: 10px;
}
.card .chat-bubble.ai:before {
  content: "Geko";
  font-family: "Font Awesome 5 Free";
  padding-right: 10px;
}
.card .chat-bubble.ai:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 20px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: rgb(0, 123, 255);
  border-bottom: 0;
  margin-left: 0;
  transform: translateX(0%);
}
.card .chat-input-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 10px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
}
.card .chat-input-container input {
  flex: 1;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
}
.card .chat-input-container input:focus {
  outline: none;
  border-color: #007bff;
}
.card .chat-input-container button {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}
.card .chat-input-container button:hover {
  background: #006fe6;
}
.card .chat-input-container button:focus {
  outline: none;
}

.text-center {
  text-align: center;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #007bff;
}

.bg-primary {
  background-color: #007bff;
}

.bg-success {
  background-color: #28a745;
}

.bg-danger {
  background-color: #dc3545;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-circle {
  border-radius: 50%;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */