@charset "UTF-8";
/* ~~~~~~~~~ generic ~~~~~~~~~~ */
@import url(../font/fonts.css);
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body,
address,
blockquote,
div,
dl,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
table,
ul,
dd,
dt,
li,
tbody,
td,
tfoot,
th,
thead,
tr,
button,
del,
ins,
map,
object,
a,
abbr,
acronym,
b,
bdo,
big,
br,
cite,
code,
dfn,
em,
i,
img,
kbd,
q,
samp,
small,
span,
strong,
sub,
sup,
tt,
var,
legend,
fieldset {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

img,
fieldset {
  border: 0;
}

html {
  overflow-y: scroll;
}

header,
nav,
section,
article,
figure,
aside,
footer {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: “Poppins”, sans-serif;
}

:root {
  --theme-color: #0096ee;
}

@media (prefers-color-scheme: light) {
  /* Light mode styles */
  meta[name="theme-color"] {
    content: var(--theme-color);
  }
}
@media (prefers-color-scheme: dark) {
  /* Dark mode styles */
  meta[name="theme-color"] {
    content: var(--theme-color);
  }
}
body {
  background: linear-gradient(to bottom right, #0096ee 0, #2867b3 50%, #2867b3 100%);
  font-family: Srbija, sans-serif;
  font-size: 42px;
  height: 100vh;
  max-width: 100vw;
}
body.playing button {
  pointer-events: none;
  cursor: not-allowed;
}
body .wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .wrapper {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  body .wrapper {
    width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  body .wrapper {
    width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  body .wrapper {
    width: 1320px;
  }
}
body p {
  font-size: calc(1.345rem + 1.14vw);
}
@media (min-width: 1200px) {
  body p {
    font-size: 2.2rem;
  }
}
body .banners {
  background: rgba(0, 0, 0, 0.3);
}
body header {
  height: 7vh;
  box-sizing: border-box;
}
body main#main-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}
body main#main-container #slovarica-app {
  box-sizing: border-box;
  margin: 0 auto;
  height: 72vh;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  body main#main-container #slovarica-app {
    width: calc(100% - 270px);
  }
}
body main#main-container .banner-vertical {
  width: 120px;
  height: 600px;
  display: none;
}
@media screen and (min-width: 1200px) {
  body main#main-container .banner-vertical {
    display: block;
  }
}
body .banner-bottom {
  height: 20vh;
  display: block;
  margin-top: 30px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  body .banner-bottom {
    display: none;
  }
}
body footer {
  height: 5vh;
  box-sizing: border-box;
  line-height: 5vh;
}

.cursor {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 20000000000000;
  transition: transform 0.1s ease, opacity 0.1s ease, background-color 0.1s ease;
}

.cursor {
  width: 16px;
  height: 16px;
}

.cursor,
.cursor-blue {
  background-color: #fefefe;
}

.cursor-pink {
  background-color: #00fe9b;
}

.cursor-pink-hover {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px 2.5px #ffffff;
}

.cursor-blue-hover {
  background-color: rgba(49, 130, 255, 0.5);
}

.cursor-ghost,
.cursor-ghost-angry,
.cursor-ghost-happy,
.cursor-pacman {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 20000000000000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cursor-pacman,
.cursor-pacman svg {
  pointer-events: none;
  width: 40px;
  height: 40px;
}

.cursor-hide {
  display: none;
}

#monty_python-s_flying_letters .letters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
#monty_python-s_flying_letters .letters li {
  display: block;
  color: rgba(255, 255, 255, 0.05);
  list-style: none;
  font-size: 2em;
  animation: animate 50s linear infinite;
  bottom: -150px;
  text-align: center;
  z-index: 0;
  position: absolute;
}
@media screen and (min-width: 992px) {
  #monty_python-s_flying_letters .letters li {
    font-size: 5em;
    bottom: -200px;
  }
}
#monty_python-s_flying_letters .letters li:nth-child(1) {
  left: 72%;
  animation-delay: 0s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(2) {
  left: 77%;
  animation-delay: 2.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(3) {
  left: 76%;
  animation-delay: 5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(4) {
  left: 11%;
  animation-delay: 7.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(5) {
  left: 91%;
  animation-delay: 10s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(6) {
  left: 37%;
  animation-delay: 12.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(7) {
  left: 8%;
  animation-delay: 15s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(8) {
  left: 91%;
  animation-delay: 17.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(9) {
  left: 45%;
  animation-delay: 20s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(10) {
  left: 95%;
  animation-delay: 22.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(11) {
  left: 63%;
  animation-delay: 25s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(12) {
  left: 75%;
  animation-delay: 27.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(13) {
  left: 59%;
  animation-delay: 30s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(14) {
  left: 28%;
  animation-delay: 32.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(15) {
  left: 100%;
  animation-delay: 35s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(16) {
  left: 77%;
  animation-delay: 37.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(17) {
  left: 69%;
  animation-delay: 40s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(18) {
  left: 1%;
  animation-delay: 42.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(19) {
  left: 86%;
  animation-delay: 45s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(20) {
  left: 13%;
  animation-delay: 47.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(21) {
  left: 30%;
  animation-delay: 50s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(22) {
  left: 51%;
  animation-delay: 52.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(23) {
  left: 39%;
  animation-delay: 55s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(24) {
  left: 41%;
  animation-delay: 57.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(25) {
  left: 28%;
  animation-delay: 60s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(26) {
  left: 62%;
  animation-delay: 62.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(27) {
  left: 52%;
  animation-delay: 65s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(28) {
  left: 67%;
  animation-delay: 67.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(29) {
  left: 43%;
  animation-delay: 70s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(30) {
  left: 17%;
  animation-delay: 72.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(31) {
  left: 57%;
  animation-delay: 75s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(32) {
  left: 4%;
  animation-delay: 77.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(33) {
  left: 89%;
  animation-delay: 80s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(34) {
  left: 72%;
  animation-delay: 82.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(35) {
  left: 29%;
  animation-delay: 85s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(36) {
  left: 43%;
  animation-delay: 87.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(37) {
  left: 52%;
  animation-delay: 90s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(38) {
  left: 17%;
  animation-delay: 92.5s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(39) {
  left: 9%;
  animation-delay: 95s;
  animation-duration: 25s;
}
#monty_python-s_flying_letters .letters li:nth-child(40) {
  left: 89%;
  animation-delay: 97.5s;
  animation-duration: 25s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
header #logo-main {
  font-size: 0;
  display: block;
}
header #logo-main img {
  width: auto;
  max-width: 230px;
  height: 7vh;
  margin: 1vh auto;
}

#slovarica-app > :last-child {
  margin-bottom: 0;
}
#slovarica-app .info-panel {
  box-sizing: border-box;
  background: greenyellow;
  width: 100%;
  height: 10vh;
  line-height: 5vh;
  font-size: calc(1.275rem + 0.3vw);
  font-family: Srbija, sans-serif;
  text-align: center;
}
@media (min-width: 1200px) {
  #slovarica-app .info-panel {
    font-size: 1.5rem;
  }
}
#slovarica-app .info-panel .spelling-words {
  font-size: calc(1.425rem + 2.1vw);
  font-family: Srbija, sans-serif;
}
@media (min-width: 1200px) {
  #slovarica-app .info-panel .spelling-words {
    font-size: 3rem;
  }
}
#slovarica-app .info-panel .spelling-words.blinker {
  animation: blinker .5s linear 5;
}
@keyframes blinker {
  50% {
    opacity: .5;
  }
}
.reci button {
  color: #1a1a1a;
  border-radius: 15px;
  border: 3px solid #FFFFFF;
  font-size: calc(1.275rem + 0.3vw);
  font-family: Srbija, sans-serif;
  box-shadow: 0 0 15px 2.5px #0e0c0c;
}
@media (min-width: 1200px) {
  .reci button {
    font-size: 1.5rem;
  }
}
.reci button img {
  border-radius: 5px;
  min-width: 110px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .reci button img {
    min-width: 150px;
  }
}
.reci button.selected {
  color: #FFFFFF;
  background: yellowgreen;
}

.card,
.owl-item {
  transition: all 1s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  z-index: 10;
}

.owl-item.center {
  z-index: 100;
}

.owl-wrapper {
  position: relative;
  height: 23vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .owl-wrapper {
    height: 20vh;
  }
}

.cards {
  position: relative;
  height: 20vh;
  width: 100%;
  padding: 4em 0;
  background-color: #fefefe;
}

.card {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  height: 20vh;
  padding: 1vh;
  margin: 1vh 0;
  border-radius: 4px;
  opacity: 1;
  transform: scale(0.87);
  transition: transform 0.4s ease-out 0.5s, opacity 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .card {
    height: 18vh;
  }
}
.card.selected {
  transform: scale(1);
}
.active .card {
  box-shadow: 0 0px 1em rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.4s ease-in 0.5s, opacity 0.3s ease;
}
.card__content {
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 1;
}
.active .card__content {
  opacity: 1;
  transition: opacity 0.9s ease;
}
.card__title {
  display: inline-block;
  font-size: 2em;
  overflow: hidden;
}
.card__title span {
  display: inline-block;
  animation: slide-up 0.4s 0s ease both;
}
.center.active .card__title span, .center.active.cloned:last-child .card__title span {
  opacity: 1;
  animation: slide-down 0.4s 0.4s ease both;
  transition: transform 0.3s 0.4s ease, opacity 0.3s ease;
}
.center .card {
  opacity: 1;
  align-items: center;
}
.center .card:hover {
  box-shadow: 0 8px 16px -5px rgba(0, 0, 0, 0.4);
}

.owl-item .card {
  background-color: #fff;
  background: linear-gradient(to bottom right, #e8e4e4 0, #fefefe 50%, #ffffff 100%);
}

.owl-theme .owl-dots .owl-dot span {
  width: 4em;
  height: 4px;
  margin: 0 0.5em;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .3s ease;
  border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ff527b;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -120%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0%, 0);
  }
}
@keyframes slide-up {
  0% {
    opacity: 1;
    transform: translate3d(0, 0%, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -120%, 0);
  }
}
.slova {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  /* Adjust the gap between cells as needed */
  /* Adjust the gap between grid items as needed */
}
.slova.disabled button {
  pointer-events: none;
}
.slova.disabled button:not(.matched) {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}
.slova.disabled button.matched {
  color: #FFFFFF !important;
  animation: blinker 1s linear 5;
}
@keyframes blinker {
  50% {
    opacity: .5;
  }
}
.slova:not(.disabled) button.matched {
  background: #FFFFFF;
}
.slova button {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: Srbija, sans-serif;
  font-size: calc(1.425rem + 2.1vw);
  color: #FFFFFF;
  flex: 1 0 calc(22% - 10px);
  max-width: calc(22% - 30px);
}
@media (min-width: 1200px) {
  .slova button {
    font-size: 3rem;
  }
}
.slova button:nth-child(4n + 1) {
  background: #108FE8;
  border: 3px solid #fff;
  border-radius: 100%;
  box-shadow: 0 -2px 0 3px #0d72b8 inset, 0 5px 5px rgba(3, 25, 41, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
}
.slova button:nth-child(4n + 1):hover {
  background: #FFFFFF;
  box-shadow: 0 -2px 0 3px #cacaca inset, 0 5px 5px rgba(125, 125, 125, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
  color: rgba(0, 0, 0, 0.8);
}
.slova button:nth-child(4n + 1).matched {
  color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 2.5px #ffffff;
}
.disabled .slova button:nth-child(4n + 1).matched {
  background: initial;
}
.slova button:nth-child(4n + 2) {
  background: #E53030;
  border: 3px solid #fff;
  border-radius: 100%;
  box-shadow: 0 -2px 0 3px #c91919 inset, 0 5px 5px rgba(65, 8, 8, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
}
.slova button:nth-child(4n + 2):hover {
  background: #FFFFFF;
  box-shadow: 0 -2px 0 3px #cacaca inset, 0 5px 5px rgba(125, 125, 125, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
  color: rgba(0, 0, 0, 0.8);
}
.slova button:nth-child(4n + 2).matched {
  color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 2.5px #ffffff;
}
.disabled .slova button:nth-child(4n + 2).matched {
  background: initial;
}
.slova button:nth-child(4n + 3) {
  background: #0EC518;
  border: 3px solid #fff;
  border-radius: 100%;
  box-shadow: 0 -2px 0 3px #0b9512 inset, 0 5px 5px rgba(0, 7, 1, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
}
.slova button:nth-child(4n + 3):hover {
  background: #FFFFFF;
  box-shadow: 0 -2px 0 3px #cacaca inset, 0 5px 5px rgba(125, 125, 125, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
  color: rgba(0, 0, 0, 0.8);
}
.slova button:nth-child(4n + 3).matched {
  color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 2.5px #ffffff;
}
.disabled .slova button:nth-child(4n + 3).matched {
  background: initial;
}
.slova button:nth-child(4n + 4) {
  background: #FFC334;
  border: 3px solid #fff;
  border-radius: 100%;
  box-shadow: 0 -2px 0 3px #ffb401 inset, 0 5px 5px rgba(103, 73, 0, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
}
.slova button:nth-child(4n + 4):hover {
  background: #FFFFFF;
  box-shadow: 0 -2px 0 3px #cacaca inset, 0 5px 5px rgba(125, 125, 125, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
  color: rgba(0, 0, 0, 0.8);
}
.slova button:nth-child(4n + 4).matched {
  color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 2.5px #ffffff;
}
.disabled .slova button:nth-child(4n + 4).matched {
  background: initial;
}
@media screen and (min-width: 768px) {
  .slova button {
    flex: 1 0 calc(17.5% - 10px);
    max-width: calc(17.5% - 30px);
  }
}
@media screen and (min-width: 768px) {
  .slova button {
    max-width: calc(12.5% - 25px);
  }
}
@media screen and (min-width: 992px) {
  .slova button {
    flex: 1 0 calc(12.5% - 10px);
    max-width: calc(12.5% - 25px);
  }
}
@media screen and (min-width: 1200px) {
  .slova button {
    max-width: 100px;
  }
}
@media only screen and (orientation: landscape) and (min-width: 768px) and (max-height: 700px) {
  .slova button {
    flex: 1 0 calc(10% - 10px);
    max-width: calc(10% - 10px);
    max-width: 80px;
  }
}
@media only screen and (orientation: landscape) and (max-width: 855px) {
  .slova button button {
    flex: 1 0 calc(10% - 10px);
    max-width: calc(10% - 10px);
  }
}

footer {
  width: 100%;
  max-width: 1024px;
  text-align: center;
  font-size: 1rem;
  color: #FFFFFF;
}

/*# sourceMappingURL=style.css.map */
