:root {
  --color-sky: #5bc8f5;
  --color-yellow: #ffdd00;
  --color-green: #4caf50;
  --color-brick: #c0453a;
  --color-white: #ffffff;
  --color-text: #2c2c2c;
  --color-hotspot: rgba(255, 220, 0, 0.7);
  --color-hotspot-border: #ff8c00;

  --font-main: "Nunito", sans-serif;

  --floor-max-width: 1811px;

  --zlijeb-height: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.main {
  background: linear-gradient(
    180deg,
    #bae5f6 0%,
    #aae3fa 53.37%,
    #3ea1c8 86.54%
  );
}

.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-sky);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/oblaki.png");
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  min-height: 100vh;
}

.header__suncobran {
  position: absolute;
  left: 5%;
  bottom: 24%;
  width: 1024px;
}

.header__golub {
  position: absolute;
  top: 20%;
  left: 10%;
  width: clamp(40px, 5vw, 80px);
}

.header__tekst {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header__naslov {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
}

.header__naslov span {
  display: block;
}

.subhead {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
}

.lead {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 32.5px */
  max-width: 724px;
  margin: 0 auto;
}

.header__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 35px 70px;
  color: #ffd261;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 32.5px */
  font-weight: 800;
  text-decoration: none;
  border-radius: 20px;
  background: #3d4850;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.logo {
  display: block;
  margin: 0 auto;
  max-width: 1045px;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.zgrada {
  position: relative;
  width: 100%;
  max-width: var(--floor-max-width);
  margin: 0 auto;
  margin-top: -42vh;
  z-index: 5;
  pointer-events: none;
}

.kat {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
  pointer-events: all;
}

.kat__slika {
  width: 100%;
  height: auto;
  display: block;
}

.kat__zlijeb {
  width: 100%;
  height: var(--zlijeb-height);
  background-size: 100% 100%;
  line-height: 0;
}

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #cf2418;
  border: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.hotspot::before,
.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #cf2418;
  animation: ring-expand 2.4s ease-out infinite;
}

.hotspot::after {
  animation-delay: 1.2s;
}

@keyframes ring-expand {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.hotspot {
  animation: pulse 2.5s infinite;
}

.hotspot:hover,
.hotspot:focus {
  transform: translate(-50%, -50%) scale(1.15);
  animation: none;
  box-shadow: 0 0 0 6px rgba(255, 140, 0, 0.3);
}

.hotspot3 {
  left: 49%;
  top: 35%;
}

.hotspot2 {
  left: 83%;
  top: 32%;
}

.hotspot11 {
  left: 31.5%;
  top: 38%;
}

.hotspot12 {
  left: 66%;
  top: 58.8%;
}

.hotspot0 {
  left: 61.2%;
  top: 25.8%;
}

.hotspot__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #3d4850;
  color: var(--color-text);
  color: #fff;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.hotspot__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #3d4850;
}

@media (hover: hover) {
  .hotspot:hover .hotspot__tooltip,
  .hotspot:focus .hotspot__tooltip {
    opacity: 1;
  }
}

.hotspot.is-active .hotspot__tooltip {
  opacity: 1;
}

.kat--dimnjaci {
  pointer-events: none;
}

.trava {
  position: relative;
  width: 100%;
  margin-top: -4rem;
  z-index: 0;
}

.travaimg {
  width: 100%;
  height: auto;
}

.kviz {
  position: relative;
  width: 100%;
  padding: 4rem 1.5rem;
  text-align: center;
  max-width: 970px;
  margin: 0 auto;
}

.kviz__labela {
  overflow: hidden;
  color: #ffd261;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "ff-cocon-pro";
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 45px */
  border-radius: 20px;
  background: #3d4850;
  width: 260px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px auto;
}

.kviz__naslov {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 110px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kviz__slika {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.kvizlead {
  overflow: hidden;
  color: #3d4850;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "ff-cocon-pro";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 47.25px */
  margin: 30px auto 50px auto;
  max-width: 700px;
}

.kviz__loader {
  width: 100%;
  max-width: 800px;
  height: 20px;
  background: #dce2e6;
  border-radius: 13.767px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.kviz__loader-bar {
  height: 100%;
  background: #3d4850;
  border-radius: 13.767px;
  width: 70%;
  transition: width 0.3s;
}

.kviz__counter {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.kviz__pitanje {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 32.5px */
  margin-top: 30px;
}

.kviz__odgovori {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: 100%;
  max-width: 591px;
  margin: 45px auto 45px auto;
}

.kviz__odgovor {
  border-radius: 13.767px;
  background: #ffd261;
  color: #333;
  text-align: center;
  width: 100%;
  font-family: "ff-cocon-pro";
  padding: 15px 30px;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 32.5px */
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.kviz__odgovor:hover,
.kviz__odgovor.is-selected {
  background: #ff6161;
}

.kviz__submit,
.nominate {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 20px;
  background: #3d4850;
  color: #ffd261;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 32.5px */
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
  max-width: 415px;
  padding: 38px 0;
}

.kviz__submit:hover,
.nominate:hover {
  transform: translateY(-2px);
}

.inv {
  background: #ffd261;
  color: #3d4850;
}

.btnrow {
  margin-top: 120px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.iskustva {
  padding: 100px 1.5rem;
  background: var(--color-white);
  text-align: center;
}

.iskustva__naslov,
.savjeti__naslov {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 110px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.savjeti__naslov {
  color: #ffd261;
}

.iskustva__podnaslov,
.savjeti__podnaslov {
  overflow: hidden;
  color: #3d4850;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "ff-cocon-pro";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 47.25px */
  padding: 30px 0 80px 0;
}

.savjeti__podnaslov {
  color: #f7f6f5;
}

.iskustva__grid {
  display: flex;
  gap: 150px;
  max-width: 1560px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.qup,
.qud {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.qup {
  top: -32px;
}

.qud {
  bottom: -32px;
}

.iskustvo-kartica {
  background: #ffd261;
  text-align: center;
  position: relative;
  width: 661px;
  height: 431px;
  padding: 60px;
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.arc-left {
  position: absolute;
  left: -34px;
  top: -34px;
}

.arc-right {
  position: absolute;
  right: -34px;
  bottom: -34px;
}

.iskustvo-kartica__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.iskustvo-kartica__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-sky);
  flex-shrink: 0;
}

.iskustvo-kartica__ime {
  font-weight: 700;
  font-size: 0.95rem;
}

.iskustvo-kartica__lokacija {
  font-size: 0.8rem;
  opacity: 0.6;
}

.iskustvo-kartica__tekst {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
}

.who {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 130%; /* 26px */
  padding-top: 18px;
}

.savjeti {
  padding: 150px 0 0 0;
  background: #3d4850;
  text-align: center;
}

.savjeti__inner {
  max-width: 1308px;
  margin: 0 auto;
  text-align: center;
}

.savjeti__lista {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: left;
}

.savjet-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.savjet-item__broj {
  color: #ffd261;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 90px */
  font-style: italic;
}

.savjet-item__tekst {
  color: #f7f6f5;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer__scena {
  background: none;
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.footer__logoi {
  background: var(--color-white);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
}

.legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

.link {
  color: #3d4850;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  text-decoration: none;
}

.footer__logo-img {
  width: auto;
  object-fit: contain;
}

.img24 {
  height: 99px;
}

.imgstudenac {
  height: 122px;
  padding-top: 0.6rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #3d4850;
  border-radius: 20px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  background: #3d4850;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text);
}

.modal__naslov {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.modal__tekst {
  color: #fff;
  text-align: center;
  font-family: "ff-cocon-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
}

.prijavnica-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.prijavnica-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.prijavnica {
  background: #3d4850;
  width: 100%;
  max-width: 860px;
  border-radius: 16px;
  padding: 3rem 2rem 3.5rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s;
}

.prijavnica-overlay.is-open .prijavnica {
  transform: translateY(0);
}

.prijavnica__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffd261;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 800;
  color: #3d4850;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.prijavnica__close:hover {
  transform: scale(1.1);
}

.prijavnica__naslov {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffd261;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-family: "ff-cocon-pro";
}

.prijavnica__podnaslov {
  font-size: 1rem;
  font-style: italic;
  color: #ffd261;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: "ff-cocon-pro";
}

.prijavnica__opis {
  color: #eefaff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  font-family: "ff-cocon-pro";
}

.prijavnica__opis strong,
.prijavnica__opis a {
  color: #ffd261;
}

.prijavnica__opis a {
  text-decoration: underline;
}

.prijavnica__forma {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.prijavnica__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prijavnica__label {
  color: #eefaff;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "ff-cocon-pro";
}

.prijavnica__input,
.prijavnica__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #eefaff;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 0;
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.prijavnica__input::placeholder,
.prijavnica__textarea::placeholder {
  color: rgba(238, 250, 255, 0.35);
}

.prijavnica__input:focus,
.prijavnica__textarea:focus {
  border-bottom-color: #ffd261;
}

.prijavnica__textarea {
  resize: none;
  min-height: 72px;
}

.prijavnica__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.prijavnica__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
}

.prijavnica__checkbox-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #eefaff;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.prijavnica__checkbox-label input[type="checkbox"]:checked {
  background: #ffd261;
  border-color: #ffd261;
}

.prijavnica__checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #3d4850;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.prijavnica__uvjeti {
  font-size: 0.85rem;
  color: #eefaff;
  font-family: "ff-cocon-pro";
}

.prijavnica__uvjeti a {
  color: #ffd261;
  text-decoration: underline;
}

.prijavnica__submit {
  display: block;
  margin: 0 auto;
  padding: 1rem 3rem;
  background: #ffd261;
  color: #3d4850;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
}

.prijavnica__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.arc-left-m,
.arc-right-m {
  display: none;
}

@media (max-width: 640px) {
  .prijavnica {
    padding: 2.5rem 1.25rem;
  }

  .prijavnica__close {
    top: -1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .hotspot {
    width: 14px;
    height: 14px;
  }

  .header__suncobran {
    width: 120px;
    right: 0;
  }

  .footer__scena {
    min-height: 140px;
  }
}

@media (min-width: 1024px) {
  .header {
    min-height: 750px;
  }
}

@media (max-width: 1681px) {
  .logo {
    max-width: 800px;
  }
  .header__suncobran {
    width: 800px;
    bottom: 22%;
  }
  .header__tekst {
    gap: 10px;
  }
  .zgrada {
    margin-top: -45vh;
  }
}

@media (max-width: 1461px) {
  .iskustva__grid {
    gap: 100px;
  }
  .iskustvo-kartica {
    width: 560px;
  }
  .iskustvo-kartica__tekst {
    font-size: 16px;
  }
}

@media (max-width: 1369px) {
  .zgrada {
    margin-top: -38vh;
  }
}

@media (max-width: 1025px) {
  .logo {
    max-width: 600px;
  }
  .subhead {
    font-size: 30px;
  }
  .lead {
    font-size: 20px;
  }
  .header__suncobran {
    left: 0;
    bottom: 28%;
  }
  .savjeti__lista {
    padding: 0 16px;
  }
}

@media (max-width: 970px) {
  .logo {
    width: 80%;
    max-width: 380px;
  }
  .header__suncobran {
    left: -25%;
    width: 100%;
    bottom: unset;
    top: 0;
  }
  .kviz__naslov,
  .iskustva__naslov,
  .savjeti__naslov {
    font-size: 45px;
  }
  .savjeti__lista {
    grid-template-columns: repeat(1, 1fr);
    gap: 46px;
  }
  .savjet-item__tekst {
    font-size: 16px;
  }
  .savjet-item__broj {
    font-size: 80px;
  }
  .kviz__submit,
  .nominate {
    width: 90%;
    font-size: 20px;
  }
  .header__cta {
    width: 100%;
    font-size: 20px;
    padding: 30px;
  }
  .header__tekst {
    padding: 1rem 0.5rem;
  }
  .legal {
    flex-direction: column;
  }
  .kvizlead {
    font-size: 16px;
  }
  .kat--dimnjaci {
    display: none;
  }
  .zgrada {
    margin-top: -30vh;
  }
  .kat,
  .footer__scena {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .kat__slika,
  .footerimg {
    width: 300%;
    max-width: 300%;
  }
  html {
    overflow-x: hidden;
  }
  .iskustvo-kartica {
    width: 90%;
    padding: 20px;
    height: auto;
    padding: 3rem 1rem;
    border-radius: 40px;
    margin-top: 0;
  }
  .iskustva__podnaslov,
  .savjeti__podnaslov {
    font-size: 16px;
  }
  .iskustva,
  .savjeti,
  .kviz {
    padding: 4rem 0;
    width: 100%;
  }
  .kviz {
    padding: 4rem 1rem;
  }
  .iskustvo-kartica__tekst {
    font-size: 13px;
  }
  .qup,
  .qud {
    width: 43px;
  }
  .qup {
    top: -15px;
  }
  .qud {
    bottom: -15px;
  }
  .who {
    font-size: 13px;
  }
  .arc-left,
  .arc-right {
    display: none;
  }
  .arc-left-m,
  .arc-right-m {
    display: block;
    position: absolute;
  }
  .arc-left-m {
    top: -11px;
    left: -11px;
  }
  .arc-right-m {
    bottom: -11px;
    right: -11px;
  }
  .kviz__odgovor {
    font-size: 15px;
  }
}
