@charset "UTF-8";
html,
body {
  background-color: var(--white);
  color: var(--black);
  font-variant-ligatures: none;
  font-size: min(1em, 14.4px);
  font-size: 1vw;
  position: relative;
  width: 100%;
  font-family: "Bicyclette", sans-serif;
  font-display: swap;
  font-weight: normal;
  overflow-x: hidden;
}
@media (min-width: 1600px) {
  html,
  body {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  html,
  body {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 1.2vw;
  }
}
@media (max-width: 500px) {
  html,
  body {
    font-size: 3.5vw;
  }
}

/*body::before {
    content: '';
    display: block;
    height: $header-height;
}*/
body * {
  box-sizing: border-box;
}

section,
main,
footer {
  position: relative;
}

header {
  position: absolute;
}

.middle {
  margin: 0px auto;
  width: 70rem;
  position: relative;
}
@media (max-width: 500px) {
  .middle {
    width: 25rem !important;
  }
}

.fullpage {
  min-height: calc(100vh - 7.5rem);
}

.is-half {
  width: 50%;
}
@media (max-width: 500px) {
  .is-half {
    width: 100%;
  }
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1em;
}
ul li::before, ol li::before {
  position: absolute;
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  left: 0;
}

ul li::before {
  content: "●";
  color: pink;
}

ol {
  counter-reset: list-counter;
}
ol li {
  counter-increment: list-counter;
}
ol li::before {
  content: counter(list-counter) ".";
}

.text-container p {
  margin-bottom: 1.5rem;
}

.notices {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
}
.notices.is-bottom-right {
  flex-direction: column-reverse;
  align-items: flex-end;
}
.notices .notification {
  animation-duration: 0.15s;
  margin: 0.5em 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  /* border-radius: 4px; */
  pointer-events: auto;
  min-height: 3em;
  position: relative;
  transform: translateX(calc(100% + 2em));
  transition: all 0.5s, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35), opacity 0.3s ease, height 0.5s ease;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}
.notices .notification.active {
  transform: translateX(0%);
}
.notices .notification.is-success {
  background-color: #333333;
}
.notices .notification.is-danger {
  background-color: var(--err);
}
.notices .notification.is-warning {
  background-color: var(--err);
}
.notices .notification.is-info {
  background-color: var(--black);
}
.notices .notification .progress {
  margin-top: 0.5em;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}
.notices .notification .progress::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.3);
}
.notices .notification .progress::-webkit-progress-value {
  background-color: #fff;
}
.notices .notification .progress::-moz-progress-bar {
  background-color: #fff;
}
.notices .notification .delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notices .notification .delete:before {
  content: "×";
  font-size: 1.2rem;
  line-height: 1;
  color: inherit;
  display: block;
}
.notices .notification .delete:hover {
  color: #fff;
}
.notices .notification.is-closing {
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 500px) {
  .notices {
    padding: 0;
    position: fixed !important;
  }
  .notices .notification {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .notices .notification {
    min-width: 350px;
    max-width: 600px;
    overflow: hidden;
  }
}
.page main h1 {
  padding-top: 4rem;
}
.page main h1 strong {
  display: block;
}

section.pivka .mustang {
  left: calc(50% - 9.5rem);
}
@media (max-width: 500px) {
  section.pivka .mustang {
    display: block;
  }
}

section.about {
  background-color: var(--black);
  color: var(--white);
  padding-top: 5rem;
}
section.about p {
  font-size: 1.5rem;
  line-height: 150%;
  width: 42.5rem;
}
@media (max-width: 500px) {
  section.about p {
    width: 100% !important;
  }
}

section.howto .items p {
  width: 12rem;
}
section.howto .items p:last-of-type {
  width: 15rem;
}
@media (max-width: 500px) {
  section.howto .items p {
    width: 100% !important;
  }
}

section.howto .button {
  margin-top: 0;
}
@media (max-width: 500px) {
  section.howto .button {
    margin-top: 2rem;
  }
}

section.seznam {
  background-color: var(--white);
  padding-bottom: 15rem;
}
section.seznam h1 {
  color: var(--white);
  background-color: var(--red);
  width: 19.5rem;
  padding: 1.75rem 2.25rem;
  font-size: 3rem;
  line-height: 120%;
  margin-bottom: 2.5rem;
}
section.seznam h1 + p {
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
}
section.seznam .interpreti {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
section.seznam .interpreti a {
  display: block;
  text-align: center;
  width: 22.5rem;
  height: 21.5rem;
  background-color: var(--black);
  color: var(--white);
}
section.seznam .interpreti a:hover, section.seznam .interpreti a:focus {
  text-decoration: none;
}
section.seznam .interpreti a:hover .button, section.seznam .interpreti a:focus .button {
  background-color: var(--red);
  color: var(--white);
}
section.seznam .interpreti a .picture {
  aspect-ratio: 2/1;
  background-size: cover;
  background-position: center;
}
section.seznam .interpreti a h2 {
  height: 5.5rem;
  overflow: hidden;
}
section.seznam .interpreti a h2 p {
  padding: 0 1rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.seznam .interpreti a .button:hover, section.seznam .interpreti a .button:focus {
  transform: none;
}
@media (max-width: 500px) {
  section.seznam .interpreti a {
    width: 25rem;
    height: 22.75rem;
  }
}
@media (max-width: 500px) {
  section.seznam .interpreti {
    grid-template-columns: repeat(1, 1fr);
  }
}

.interpret main h1 + p {
  padding-top: 3.5rem;
  background-image: url(../images/uliner.svg);
  background-size: auto 0.5rem;
  background-position: left 2.5rem;
  background-repeat: no-repeat;
  width: 48rem;
}
@media (max-width: 500px) {
  .interpret main h1 + p {
    width: 100%;
  }
}

.interpret section.player {
  background-color: var(--red);
  color: var(--white);
  padding: 2.5rem 0;
}
.interpret section.player audio {
  display: none;
}
.interpret section.player p {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 150%;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}
.interpret section.player p span {
  text-transform: none;
}
@media (max-width: 500px) {
  .interpret section.player p span {
    display: block;
  }
}
.interpret section.player .control {
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  background-size: auto 2.9rem;
  background-position: center;
  background-repeat: no-repeat;
}
.interpret section.player .control:hover, .interpret section.player .control:focus {
  background-color: var(--black);
}
.interpret section.player .control.play {
  background-image: url(../images/play.svg);
}
.interpret section.player .control.pause {
  background-image: url(../images/pause.svg);
  display: none;
}
.interpret section.player .track.playing .control.play {
  display: none;
}
.interpret section.player .track.playing .control.pause {
  display: block;
}
.interpret section.player .timer {
  width: 8rem;
  height: 5rem;
  font-size: 3rem;
  line-height: 5rem;
  font-weight: 300;
  text-align: right;
  user-select: none;
  flex: 0 0 auto;
}
.interpret section.player .progress {
  flex: 1 1 auto;
  margin: 0 1rem;
  height: 5rem;
  position: relative;
}
.interpret section.player .progress::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 0.5rem;
  top: 2.25rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.interpret section.player .progress .bar {
  width: 0%;
  height: 100%;
  transition: width 0.1s linear;
  position: relative;
  pointer-events: none;
}
.interpret section.player .progress .bar::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 0.5rem;
  top: 2.25rem;
  background-color: var(--white);
}
.interpret section.player .progress .bar::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  left: calc(100% - 0.25rem);
  height: 100%;
  top: 0;
  background-color: var(--white);
}

section.vote {
  padding: 6rem 0;
}
section.vote h1 {
  font-size: 2rem;
  line-height: 120%;
  font-weight: 300;
}
section.vote h1 strong {
  display: block;
  font-weight: 700;
}
section.vote h1 + p {
  padding-top: 2.25rem;
  font-size: 1rem;
  line-height: 150%;
  background-image: url(../images/uliner.svg);
  background-size: auto 0.5rem;
  background-position: left 1.25rem;
  background-repeat: no-repeat;
  width: 37.5rem;
}
@media (max-width: 500px) {
  section.vote h1 + p {
    width: 100%;
  }
}
section.vote form {
  margin-top: 1.5rem;
}
@media (max-width: 500px) {
  section.vote .button {
    margin-top: 1rem;
  }
}
section.vote .item {
  width: 48rem;
}
@media (max-width: 500px) {
  section.vote .item {
    width: 100%;
  }
}
section.vote .item.err .label {
  color: var(--err);
}
section.vote .item.err input {
  outline: 1px dotted var(--err);
}
section.vote .item .label {
  text-transform: uppercase;
  padding: 0 0.75rem;
  font-size: 0.9rem;
  line-height: 150%;
  display: block;
}
section.vote .item input {
  font-family: "Bicyclette";
  font-size: 1rem;
  line-height: 150%;
  font-weight: bold;
  background-color: var(--grey);
  padding: 0.75rem;
  border: none;
  width: 100%;
}
section.vote .item input:focus {
  outline: 1px dotted var(--black);
}

section.bigimage .middle {
  aspect-ratio: 2/1;
  background-position: center;
  background-size: cover;
}