@font-face {
  font-family: PoppinsLight;
  src: url(../src/fonts/Poppins-Light.ttf);
}

@font-face {
  font-family: PoppinsMed;
  src: url(../src/fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: PoppinsSemi;
  src: url(../src/fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: PoppinsBold;
  src: url(../src/fonts/Poppins-ExtraBold.ttf);
}

:root {
  --primary: ivory;
  --primaryTrans: rgba(255, 255, 240, 0.4);
  --accent: #dfc9ad;
  --accentTrans: rgba(232, 195, 195, 0.4);
  --gradient-color: linear-gradient(var(--primaryTrans), var(--accentTrans));
  --vert-gradient-color: linear-gradient(90deg, var(--accentTrans), var(--primaryTrans));
  --circle-gradient-color: radial-gradient(rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.42),
      var(--primary));
  --mainText: #3a3a3a;
  --highlight: #d4af37;
  --link: #8b5e5a;
  --blue: #0070ba;
  --blueTrans: #41b3ff1c;
  --blur: blur(20px);
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: PoppinsLight, PoppinsMed, PoppinsSemi, PoppinsBold, sans-serif;
  font-display: swap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: all 400ms ease;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  user-drag: none;
  border: none;
  -webkit-font-smoothing: antialiased;
  -webkit-scrollbar-width: thin;
  scrollbar-width: thin;
  -webkit-scrollbar-color: var(--accent) var(--primaryTrans);
  scrollbar-color: var(--accent) var(--primaryTrans);

}

*:focus, *:active {
  outline: none !important;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: var(--primaryTrans);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 20px;
  border: 2px solid var(--primaryTrans);
}

html,
body,
div#body {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  background: var(--gradient-color);
  background-position: 100%;
  background-clip: border-box;
  background-size: cover;
  background-attachment: local;
  background-repeat: no-repeat;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  top: 0 !important;
  z-index: -99999999;
  -webkit-user-select: none;
  user-select: none;
  display: block;
  flex: 1 !important;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  zoom: 100% !important;
  height: 100dvh;
}

body, html {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  overflow: hidden !important;
  visibility: hidden;
  flex: 1 !important;
  height: 100%;
  min-height: 100dvh !important;
  position: absolute;
  margin: 0 !important;
  padding: 0 !important;
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

a#scrollUp {
  position: absolute;
  background: var(--vert-gradient-color);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 999999999;
  display: flex;
  box-shadow: 0px 0px 12px var(--accent);
  text-shadow: 0px 0px 20px var(--accent);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  bottom: 20px;
  bottom: 5dvh;
  right: 20px;
  right: 5dvw;
  border: 0.2px solid var(--accentTrans);
}

a#scrollUp:hover {
  transform: scale(110%);
}

header#header {
  width: 100%;
  height: 80px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-inline: 15px;
  padding-block: 20px;
  background: transparent;
  background-color: var(--primaryTrans);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-clip: border-box;
  position: fixed;
  top: 0dvh;
  z-index: 99999;
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
  border-bottom: 0.2px solid var(--accentTrans);
}

.heightShow {
  animation: show 600ms ease-in-out 100ms forwards;
  box-shadow: 1px 1px 15px var(--accentTrans);
}

div.logoSection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: flex-start;
  width: 80%;
  min-width: 250px;
  max-width: 400px;
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.17), 1px 1px 0.6px var(--accent);
}


div#logo-div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 10px;
  object-fit: cover;
  box-shadow: 0px 2px 2px rgba(255, 255, 255, 0.17), 1px 1px 0.6px var(--accent);
}

img#nav-logo {
  width: 70px;
  height: 70px;
  transform: translateY(-5px);
}

p#web-name {
  width: auto;
  display: flex;
  align-self: center;
  justify-self: center;
  font-family: PoppinsSemi;
  font-weight: bolder;
  font-size: 1.2rem;
  line-height: 20px;
  color: var(--link);
}

div#menu {
  width: auto;
  display: none;
  place-content: center;
  cursor: pointer;
}

svg.menu, i.menu {
  fill: var(--link);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

div#nav {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-inline-end: 10px;
  justify-content: space-evenly;
}

div#nav * {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

div#nav a.nav-main {
  width: auto;
  place-items: center;
  display: flex;
  position: relative;
  cursor: pointer;
  margin-bottom: 0px;
  text-decoration: none;
}

div#nav a.nav-main:hover {
  margin-bottom: 6px;
}

div#bottom div#contacts {
  display: flex;
  flex-direction: row;
  place-content: center;
  gap: 15px;
}

div#bottom p.contactText {
  min-width: 100%;
  text-align: center;
  place-content: center;
  font-family: PoppinsSemi;
  color: var(--mainText);
  display: block;
}

a.icons svg {
  fill: var(--link);
  width: 20px;
  height: 20px;
  box-shadow: 0px 2px 2px rgba(255, 255, 255, 0.17), 1px 1px 0.6px var(--accent);
}

a.nav-main div.underline {
  width: 50%;
  height: 100%;
  padding: 13px;
  position: absolute;
  top: 0;
  align-self: center;
  right: 20%;
  border-bottom: 3px solid var(--link);
}

a.nav-main p#nav-text {
  font-size: 16px;
  font-family: PoppinsMed;
  color: var(--mainText);
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.377), -2px -1px 0.6px var(--accentTrans);
}

a.nav-main p#nav-text.active {
  color: var(--link);
  font-family: PoppinsSemi;
}

div#nav a.login {
  text-align: center;
  background-color: transparent;
  border: 2px solid var(--link);
  padding-inline: 15px;
  border-radius: 20px;
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.17), 1px 1px 0.6px var(--accent);
  box-shadow: -1px -2px 2px rgba(255, 255, 255, 0.17), 1px 1px 0.6px var(--accent);
}

div#nav a.login p.login-text {
  color: var(--link);
  font-weight: bold;
  font-family: PoppinsSemi;
}

div#nav a.login:hover {
  box-shadow: 0px 1px 8px var(--accent);
}

div#nav button.logout {
  border: none;
  color: var(--link);
  padding: 2px;
  padding-inline: 15px;
  outline: none;
  display: flex;
  width: 120px;
  letter-spacing: 1px;
  font-weight: bolder;
  place-self: center;
  align-self: center;
  font-family: PoppinsSemi;
  margin: 0;
  text-align: center;
  place-content: center;
  background: transparent;
}

div#nav button.logout:hover {
  background: red;
  color: white;
  border-radius: 20px;
  transform: scale(105%);
}

div#back-button {
  position: absolute;
  top: 22px;
  left: 20px;
  border: 0.5px solid var(--accent);
  cursor: pointer;
  background-color: var(--accentTrans);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--link);
  -webkit-backdrop-filter: var(--blur);
  text-shadow: 0px 1px 4px rgba(128, 128, 128, 0.13);
  display: flex;
  place-content: center;
  place-items: center;
  font-size: 25px;
  font-weight: bolder;
  z-index: 99;
  backdrop-filter: var(--blur);
}

div#refresh-button {
  left: 25px;
  position: absolute;
  top: 25px;
  cursor: pointer;
  background-color: var(--accentTrans);
  gap: 10px;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 30px;
  padding-inline: 10px;
  color: var(--link);
  display: flex;
  align-items: center;
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  font-size: 25px;
  font-weight: bolder;
  z-index: 99;
}

div#refresh-button p.refresh-text {
  font-size: 18px;
}

div#back-button:active, div#back-button:hover {
  transform: scale(90%);
  border-color: var(--link);
}

div#refresh-button:active, div#refresh-button:hover {
  transform: scale(90%);
  width: 180px;
  border: 1px solid var(--link);
}

span.highlight {
  font-family: PoppinsSemi;
  color: var(--highlight);
}

span.link {
  font-family: PoppinsSemi;
  color: var(--link);
  text-decoration: underline;
}

span.bold {
  font-weight: bold;
  font-family: PoppinsSemi;
}

.spinner-container {
  width: 30px;
  height: 30px;
  display: flex;
  align-content: center;
  justify-content: center;
  background: var(--accentTrans);
  border-radius: 100%;
  align-self: flex-start;
  margin-right: 4px;
}

.spinner {
  width: 25px;
  height: 25px;
  align-self: center;
  border: 4px solid transparent;
  border-left: 4px dotted var(--link);
  border-top: 4px dotted var(--link);
  border-radius: 50%;
  animation: spin 600ms linear 100ms infinite alternate forwards;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

button .spinner {
  width: 19px;
  height: 19px;
}

footer {
  width: 100%;
  padding-inline: 10%;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: var(--link);
  color: white;
  align-items: center;
}

footer div.upper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

footer div.others {
  display: flex;
  width: 100%;
  padding: 10px;
  place-content: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: row;
}

footer p.name {
  font-size: 2rem;
  width: 100%;
  max-width: 350px;
  font-family: PoppinsSemi;
  color: var(--accent);
}

footer .navs {
  width: 100%;
  padding-inline: 5px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 5px;
}

footer .navs a.nav {
  max-width: max-content;
  font-family: PoppinsMed;
  letter-spacing: 0.5px;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.2rem;
}

footer .navs a.nav.login {
  width: 60%;
  max-width: 150px;
  padding: 6px;
  padding-inline: 10px;
  border-radius: 25px;
  background-color: var(--highlight);
  margin-block: 5px;
}

footer div.others a {
  width: max-content;
  padding-inline: 20px;
  border-right: 1px solid var(--primaryTrans);
  color: rgb(238, 238, 238);
  font-family: PoppinsMed;
  font-size: 12px;
}

footer div.others a:last-child {
  border: none;
}

footer .navs a.nav.login p.login-text {
  color: black;
  font-family: PoppinsSemi;
  text-align: center;
}

footer div#bottom {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

footer div#bottom div#contacts a.icons svg {
  fill: white;
  cursor: pointer;
  width: 25px;
  height: 25px;
}

footer .copyright {
  min-width: 100%;
  padding: 20px;
  place-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-family: PoppinsMed;
}

@keyframes show {
  from {
    height: 80px;
  }

  to {
    height: 380px;
  }
}

section#newsletter {
  background: rgba(255, 241, 220, 0.541);
  padding-block: 10%;
  width: 100%;
  padding-inline: 20px;
  display: flex;
  place-content: center;
}

#newsletter .container {
  max-width: 800px;
  text-align: center;
}

#newsletter h2 {
  color: var(--link);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: PoppinsSemi;
}

#newsletter .subtext {
  color: var(--mainText);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  width: 90%;
  max-width: 500px;
  padding: 0.5rem;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  background: var(--primaryTrans);
}

.newsletter-form input:focus {
  border: 1.5px solid var(--link);
}

.newsletter-form button {
  background: var(--link);
  color: white;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 15px;
  width: auto;
  max-width: 150px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--highlight);
}

.newsletter-form button:disabled {
  background: rgb(231, 231, 231);
  color: grey;
  cursor: not-allowed;
}

.alert-message {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  top: 0;
  left: 0;
  z-index: 99999999999999999999999999999999999 !important;
  display: none;
  flex: 1;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4px) brightness(60%);
  backdrop-filter: blur(4px) brightness(60%);
  justify-content: center;
  align-items: center;
}

.alert-message .alert-div {
  width: 95%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 30px;
  background: rgba(255, 255, 255, 0.99);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 30px;
  gap: 10px;
}

.alert-message .alert-icon svg {
  fill: rgb(255, 100, 0);
  width: 50px;
  height: 50px;
  fill-opacity: 0.6;
}

.alert-title {
  font-weight: bolder;
  font-family: PoppinsMed;
  text-align: center;
  font-size: 1.4rem;
  color: black;
}

.alert-message .alert-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  place-self: center;
  color: rgba(0, 0, 0, 0.98);
  font-family: PoppinsLight;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.alert-message .alert-text span {
  min-width: 100%;
  min-height: 10px;
}

.alert-message .button-parents {
  width: 100%;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: space-evenly;
}

.alert-message .alert-button {
  width: min(100%, 160px);
  background-color: var(--link);
  padding: 10px;
  border-radius: 20px;
  color: white;
  border: none;
  font-weight: bolder;
  outline: none;
  display: flex;
  text-align: center;
  place-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: .76;
  transition: all 0.3s ease;
}


.alert-message .alert-error {
  color: rgb(255, 0, 0) !important;
  font-size: 13px;
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px;
  letter-spacing: 0.4px;
  margin-top: 10px;
  background: rgba(255, 230, 230, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.1);
  font-family: PoppinsMed;
  border-radius: 12px;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
  height: max-content;
  max-height: 200px;
}

.alert-message i:first-child {
  font-size: 2.5rem;
  color: black;
}

.alert-message i:first-child.text-warning {
  color: rgb(255, 171, 14);
}

.alert-message i:first-child.text-success {
  color: rgb(0, 182, 0);
}

.alert-message i:first-child.text-danger {
  color: rgb(255, 11, 11);
}

.alert-message .alert-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.alert-message i:first-child.fs-2 {
  font-size: 3rem;
}

.alert-message .alert-button.secondary {
  background: transparent;
  border: 2px solid var(--link);
  color: var(--link);
}


.alert-button:hover, .alert-button:active {
  opacity: 1;
}

.alert-message .alert-button.secondary:hover {
  background: var(--link);
  color: white;
}

.alert-message .alert-button:disabled {
  background: rgb(230, 230, 230);
  color: grey;
  cursor: not-allowed;
  pointer-events: none;
}

.alert-message.shop .alert-button, .alert-message.shop .alert-title {
  display: none;
}

.alert-message.shop {
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 9999999;
  display: none;
  flex: 1;
  background: none;
  justify-content: center;
  padding-bottom: 30vh;
  align-items: flex-end;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.alert-message.shop .alert-div {
  background: transparent;
}

.alert-message.shop .alert-text {
  width: max-content;
  max-width: 400px;
  text-align: center;
  padding: 8px;
  padding-inline: 18px;
  background-color: rgba(25, 25, 25, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(176, 172, 172, 0.3);
  color: white;
  border-radius: 18px;
}

* button {
  -webkit-appearance: none;
  appearance: none;
}

.loading-section, .wait-loading-section {
  text-align: center;
  padding: 40px 30px;
  width: 100vw;
  height: 100vh;
  background: white;
  position: absolute;
  flex: 1;
  display: flex;
  visibility: visible;
  flex-direction: column;
  align-items: center;
  place-content: center;
  z-index: 9999999999;
}

.loading-spinner, .mini-spinner {
  border-top: 10px dotted var(--highlight);
  border-bottom: 10px dotted var(--link);
  border-right: 10px dotted var(--mainText);
  border-left: 10px dotted var(--blue);
  width: 70px;
  height: 70px;
  animation: loading-spin 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95) alternate-reverse infinite;
  display: inline-block;
  margin: 0 auto;
  border-radius: 50%;
  transform: none;
}


.mini-spinner {
  width: 15px;
  height: 15px;
  border-width: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 20px;
}


@keyframes loading-spin {
  0% {
    transform: rotate(0deg) scale(30%);
    border-top: 10px dotted var(--blue);
    border-bottom: 10px dotted var(--highlight);
    border-right: 10px dotted var(--link);
    border-left: 10px dotted var(--blueTrans);
    border-radius: 40%;
  }

  100% {
    transform: rotate(360deg) scale(100%);
    border-top: 10px dotted var(--highlight);
    border-bottom: 10px dotted var(--link);
    border-right: 10px dotted var(--mainText);
    border-left: 10px dotted var(--blue);
    border-radius: 50%;
  }
}

#banner-upper .message button svg, #sessions div.upper-title .player svg {
  fill: var(--primary) !important;
}

.player button svg {
  font-size: 28px;
  width: 28px;
  height: 28px;
  fill: white !important;
  color: white !important;
  display: block !important;
}

.skiptranslate, .goog-te-banner-frame, .goog-te-menu-frame, .goog-logo-link, .goog-te-gadget span, #google_translate_element select {
  display: none !important;
}

span, i {
  -webkit-user-select: text !important;
  user-select: text !important;
  padding-inline: 6px !important;
}

[data-translating] {
  visibility: hidden !important;
}

#goog-gt-tt {
  display: none !important;
}

.ticker-container.animate .ticker {
  animation: slide 30s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--ticker-width)));
  }
}

input:disabled {
  cursor: not-allowed;
}

* input {
  caret-color: var(--link);
}

* ::selection {
  background-color: var(--accentTrans);
  color: var(--link);
  font-weight: bold;
}

* ::-moz-selection {
  background-color: var(--accentTrans);
  color: var(--link);
  font-weight: bold;
}