@charset "UTF-8";
:root {
  --gdpr-background-color: #f4f2e8;
  --gdpr-text-color: #212529;
  --gdpr-button-background: #105f3e;
  --gdpr-button-text-color: white;
  --gdpr-font: "Nunito Sans", sans-serif;
}

.cookie-bar-wrapper {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 40px, 800px);
  z-index: 99998;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 2px 10px, rgba(0, 0, 0, 0.15) 0 2px 20px;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper {
  padding: 40px;
  background-color: var(--gdpr-background-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-left {
  color: var(--gdpr-text-color);
  font-size: 14px;
  line-height: 180%;
  text-align: center;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-left .show-settings {
  color: var(--gdpr-text-color);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-left .show-settings:hover {
  text-decoration: none;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right button {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 15px;
  line-height: 18px;
  color: var(--gdpr-text-color);
  font-weight: 400;
  font-family: var(--gdpr-font);
  cursor: pointer;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right .accept-all-cookies-button {
  padding: 14px 22px 14px 22px;
  display: inline-block;
  background: var(--gdpr-button-background);
  border-radius: 100vh;
  border: 1px solid var(--gdpr-button-background);
  color: var(--gdpr-button-text-color);
  text-decoration: none;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right .accept-all-cookies-button:hover {
  background-color: var(--gdpr-button-text-color);
  color: var(--gdpr-button-background);
}

#evidente-cookie-popup-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: block;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  z-index: 99999;
}
#evidente-cookie-popup-container ::-webkit-scrollbar {
  width: 10px;
}
#evidente-cookie-popup-container ::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 100vw;
  margin: 10px 0;
}
#evidente-cookie-popup-container ::-webkit-scrollbar-thumb {
  background: #99cceb;
  border: 2px solid white;
  border-radius: 100vw;
}
#evidente-cookie-popup-container ::-webkit-scrollbar-thumb:hover {
  background: var(--gdpr-text-color);
}
#evidente-cookie-popup-container.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all 0.3s ease-in-out;
}
#evidente-cookie-popup-container .cookie-popup-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 600px);
  border-radius: 20px;
  background-color: var(--gdpr-background-color);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 40px 40px;
  overflow: auto;
  max-height: 90svh;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header h4 {
  color: var(--gdpr-text-color);
  font-size: 18px;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button {
  outline: none;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 16px;
  right: 16px;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:before, #evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:after {
  content: "";
  position: absolute;
  height: 25px;
  width: 3px;
  border-radius: 4px;
  background-color: var(--gdpr-text-color);
  top: -5px;
  transform-origin: center;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:before {
  transform: rotate(45deg);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:after {
  transform: rotate(-45deg);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part {
  position: relative;
  color: var(--gdpr-text-color);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part h6 {
  padding-right: 20px;
  padding-bottom: 10px;
  margin: 0;
  font-size: 15px;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  font-family: var(--gdpr-font);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox] {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #cce5f5;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: all 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:focus-visible, #evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:focus, #evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:hover {
  border: 1px solid #99cceb;
  outline: none;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]::before {
  position: absolute;
  content: "";
  display: block;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-style: solid;
  border-color: white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:checked {
  color: white;
  border-color: var(--gdpr-button-background);
  background: var(--gdpr-button-background);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:checked::before {
  opacity: 1;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:checked ~ label::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:disabled:checked {
  background: rgba(120, 120, 120, 0.5);
  border-color: transparent;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer button,
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer a {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: var(--gdpr-button-background);
  font-weight: 400;
  font-family: var(--gdpr-font);
  cursor: pointer;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer a:hover {
  text-decoration: underline;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer .cookie-popup-save-button {
  padding: 14px 22px 14px 22px;
  display: inline-block;
  background-color: var(--gdpr-button-background);
  border-radius: 100vh;
  border: 1px solid var(--gdpr-button-background);
  color: var(--gdpr-button-text-color);
  text-decoration: none;
  font-family: var(--gdpr-font);
  font-weight: 800;
  position: relative;
  z-index: 2;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer .cookie-popup-save-button:hover {
  background-color: var(--gdpr-button-text-color);
  color: var(--gdpr-button-background);
}

/* STARI ALI POTREBAN GDPR CSS */
#evidente-cookie-bar.visible,
#evidente-cookie-popup-container.visible {
  display: block !important;
}

.evidente-cookie-reset {
  font-family: var(--gdpr-font);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 0 19px 0;
  border-top: 6px solid #00c898;
  background: linear-gradient(97.1deg, #00c898 0%, #00c8c8 100%);
  z-index: 1000;
  display: none;
}

.evidente-cookie-container {
  max-width: 1260px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 991px) {
  .evidente-cookie-reset {
    width: 100%;
  }
}
.evidente-cookie-container::after {
  content: "";
  display: table;
  clear: both;
}

.evidente-cookie-info-container {
  font-size: 14px;
  float: left;
  width: calc(100% - 400px);
  padding-right: 40px;
}

.evidente-cookie-info-container p {
  font-size: 15px;
  line-height: 20px;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .evidente-cookie-info-container {
    padding-right: 0;
  }
}
.evidente-cookie-info-container .show-settings {
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.evidente-cookie-info-container .show-settings:hover {
  color: #102a39;
}

.evidente-cookie-buttons-container {
  float: left;
  width: 400px;
}

.evidente-cookie-buttons-container .accept-button {
  display: inline-block;
  width: 49%;
  text-align: center;
  margin-left: 1%;
}

.evidente-button-allow a,
.evidente-button-allow-necessary a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  border-radius: 11px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.evidente-button-allow-necessary a {
  margin-left: 1%;
}

.evidente-button-allow-necessary a {
  color: #0082ca !important;
  border: 1px solid #0082ca !important;
  background-color: #ffffff !important;
}

.evidente-button-allow a:hover {
  background-color: #153e8d !important;
  color: #ffffff !important;
  border-color: #153e8d;
}

.evidente-button-allow-necessary a:hover {
  background-color: #153e8d !important;
  color: #ffffff !important;
  border-color: #153e8d !important;
}

#evidente-cookie-popup-top::after,
#evidente-cookie-popup-bottom:after,
#evidente-cookie-popup-body:after,
.evidente-cookie-popup-form-container:after {
  content: "";
  display: table;
  clear: both;
}

#evidente-cookie-popup-save-button a {
  display: block;
  padding: 11px 17px;
  font-size: 15px;
  border-radius: 11px;
  margin-top: 11px;
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1210px) {
  .evidente-button-allow a,
  .evidente-button-allow-necessary a {
    font-size: 14px;
  }
}
#evidente-cookie-popup-save-button a:hover {
  background-color: #153e8d !important;
  color: #ffffff !important;
  border-color: #153e8d;
}

#evidente-cookie-popup .evidente-button-dismiss {
  float: right;
}

#evidente-cookie-popup .evidente-button-dismiss a {
  line-height: 0.7;
  color: #181818 !important;
}

#evidente-cookie-popup .evidente-button-dismiss a:hover {
  color: #333d2b !important;
}

#evidente-cookie-popup .evidente-button-dismiss a::after {
  cursor: pointer;
  content: "×";
  text-align: center;
  font-size: 30px;
}

#evidente-cookie-popup-container {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 99999;
  font-family: var(--gdpr-font);
}

#evidente-cookie-popup-container.visible {
  display: block !important;
}

#evidente-cookie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
}

#evidente-cookie-popup-top {
  height: auto;
  max-height: 80px;
  padding: 20px 25px;
  position: relative;
  border-bottom: 1px solid;
}

#evidente-cookie-popup-image-container {
  width: 200px;
  border-right: 1px solid;
  padding-right: 10px;
  display: inline-block;
}

#evidente-cookie-popup-image-container img {
  width: 100%;
  height: auto;
  max-height: 80px;
}

#evidente-cookie-popup-title {
  float: left;
}

#evidente-cookie-popup-title h4 {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  margin: 0;
}

#evidente-cookie-popup-body {
  min-height: 200px;
  height: auto;
}

#evidente-cookie-popup-tabs-container,
#evidente-cookie-popup-tabs-content-container {
  float: left;
}

#evidente-cookie-popup-tabs-content-container.v1 {
  width: calc(100% - 250px);
}

#evidente-cookie-popup-tabs-container {
  width: 250px;
  display: inline-block;
}

#evidente-cookie-popup .evidente-cookie-popup-tab-content {
  padding: 10px 20px;
}

#evidente-cookie-popup .evidente-cookie-popup-tab-content.v1 {
  display: none;
}

#evidente-cookie-popup .evidente-cookie-popup-tab-content.v1.active {
  display: block;
}

#evidente-cookie-popup .evidente-cookie-popup-tab-content.v2 {
  display: block;
  border-bottom: 1px solid;
}

#evidente-cookie-popup .evidente-cookie-popup-form-container h3 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  float: left;
  width: calc(100% - 42px);
}

#evidente-cookie-popup .evidente-cookie-popup-form-container form {
  float: right;
}

#evidente-cookie-popup-tabs {
  list-style-type: none;
}

#evidente-cookie-popup-tabs li {
  border-bottom: 1px solid;
  border-right: 1px solid;
  padding: 15px 25px;
  cursor: pointer;
  display: block;
}

#evidente-cookie-popup-tabs li a {
  display: block;
  padding: 15px 25px;
}

#evidente-cookie-popup-tabs li:last-child {
  padding: 0;
}

#evidente-cookie-popup-tabs li.active {
  background-color: transparent !important;
}

#evidente-cookie-popup-tabs li.active p {
  font-weight: bold;
  letter-spacing: -0.06em;
}

#evidente-cookie-popup-bottom {
  padding: 25px;
}

#evidente-cookie-popup-bottom::after {
  content: "";
  clear: both;
  display: table;
}

#evidente-cookie-popup-save-button {
  /* display: inline-block; */
  float: right;
}

@media screen and (max-width: 991px) {
  #evidente-cookie-popup-save-button {
    float: left;
  }
}
#evidente-cookie-popup-poweredby {
  /* display: inline-block; */
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}

#evidente-cookie-popup input[type=checkbox] {
  display: none;
}

#evidente-cookie-popup input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
}

#evidente-cookie-popup input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  background: #e6e6e6;
  border-radius: 15%;
  box-sizing: content-box;
}

#evidente-cookie-popup input[type=checkbox] + label:after {
  margin-left: 5px;
  display: inline-block;
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 4px;
  border-bottom: 3px solid #00a645;
  height: 11px;
  border-right: 3px solid #00a645;
  transform: rotate(40deg);
  box-sizing: content-box;
}

#evidente-cookie-popup input[type=checkbox]:checked + label:after {
  content: "";
}

#evidente-cookie-popup input[type=checkbox]:disabled + label:after {
  content: "";
  border-color: white;
}

#evidente-cookie-popup input[type=checkbox] + label {
  float: right;
}

@media screen and (max-width: 991px) {
  #evidente-cookie-bar .evidente-cookie-info-container,
  #evidente-cookie-bar .evidente-cookie-buttons-container {
    width: 100%;
    float: none;
  }
  #evidente-cookie-popup {
    height: 100%;
  }
  #evidente-cookie-bar .evidente-cookie-buttons-container:after {
    content: "";
    display: table;
    clear: both;
  }
  #evidente-cookie-bar .evidente-button-allow,
  #evidente-cookie-bar .evidente-button-more {
    margin-left: 0;
  }
  #evidente-cookie-popup {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
  }
  #evidente-cookie-popup-bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  #evidente-cookie-popup-body {
    height: calc(100% - 80px);
    padding-bottom: 80px;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 650px) {
  #evidente-cookie-popup {
    width: 100%;
  }
  #evidente-cookie-popup-title {
    width: 45%;
  }
  #evidente-cookie-popup-image-container {
    width: 40%;
  }
}
@media screen and (max-height: 425px) {
  #evidente-cookie-popup-body {
    min-height: unset !important;
  }
}
@media screen and (max-width: 320px) {
  #evidente-cookie-popup-tabs-container,
  #evidente-cookie-popup-tabs-content-container,
  #evidente-cookie-popup-tabs-content-container.v1,
  #evidente-cookie-popup-poweredby,
  #evidente-cookie-popup-save-button {
    float: initial;
    width: 100%;
    display: block;
    position: relative;
    transform: initial;
  }
  #evidente-cookie-popup-poweredby p,
  #evidente-cookie-popup-save-button {
    text-align: center;
    height: 30px;
  }
}
a.evidente-gdpr-settings {
  display: block;
  margin-top: 15px;
  color: #333d2b;
  cursor: pointer;
}

#evidente-cookie-popup-tabs,
.evidente-cookie-popup-tab-content {
  font-size: 16px;
}

#evidente-cookie-popup-tabs {
  padding: 0;
}

#evidente-cookie-popup-tabs .tabs::after,
#evidente-cookie-popup-tabs .tab::after {
  display: none;
}

#evidente-cookie-popup-tabs .tab p,
.evidente-cookie-popup-tab-content p {
  margin: 0;
  font-size: 16px;
}

a.evidente-gdpr-settings {
  font-weight: 500;
  color: #333d2b !important;
}/*# sourceMappingURL=gdpr.css.map */