@charset "UTF-8";
.playerDetail {
  width: 95% !important;
  margin: 0 2.5%;
  text-align: left;
  height: calc(100vh - 100px) !important;
}
.playerDetail .grid-container {
  display: flex;
  align-items: flex-start;
  max-height: calc(100% - 160px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.playerDetail .grid-container::-webkit-scrollbar {
  display: none;
}
.playerDetail .column {
  display: block;
  padding: 5px;
}
.playerDetail .column.left, .playerDetail .column.right {
  width: 26%;
}
.playerDetail .column.middle {
  width: 48%;
}
.playerDetail .box {
  background-color: rgba(192, 192, 192, 0.545);
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  border-radius: 0 0 50px 50px;
}
.playerDetail .box .boxHeader {
  background-color: rgba(255, 255, 255, 0.34);
  padding-left: 30px;
  text-transform: uppercase;
  line-height: 40px;
  color: #001d60;
  font-family: "Druk Wide", serif;
  font-size: 15px;
}
.playerDetail .box .boxContent {
  padding: 20px 30px;
  color: #fff;
}
.playerDetail .box .boxContent .group {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.playerDetail .box .boxContent .group .groupLeft {
  display: flex;
  align-items: center;
}
.playerDetail .box .boxContent .group .groupLeft .flag {
  width: 38px;
  height: 25px;
  margin-right: 10px;
}
.playerDetail .box .boxContent .group .groupLeft .flag img {
  width: 100%;
  height: 100%;
}
.playerDetail .box .boxContent .group .groupLeft .icon {
  width: 25px !important;
  height: 25px !important;
  margin-right: 10px;
}
.playerDetail .box .boxContent .group .groupLeft .icon img {
  width: 100%;
  height: 100%;
}
.playerDetail .box .boxContent .group .groupLeft .description {
  font-size: 20px;
  line-height: 40px;
}
.playerDetail .box .boxContent .group .groupRight {
  font-size: 15px;
  line-height: 40px;
}
.playerDetail .box .boxContent .fact {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  line-height: 27px;
}
.playerDetail .box .boxContent .overview {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  padding-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.playerDetail .box .boxContent .overview .overviewItem {
  display: flex;
  flex-direction: column;
  padding: 5px;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemTitle {
  font-size: 15px;
  height: 30px;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal .overviewItemMedalIcon {
  width: 30px;
  height: 30px;
  margin-right: 1px;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal .overviewItemMedalIcon img {
  width: 100%;
  height: 100%;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal .overviewItemMedalCount {
  font-size: 16px;
  line-height: 27px;
  display: flex;
  align-items: center;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal .overviewItemMedalCount .count {
  margin-right: 0px;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal .overviewItemMedalCount .cross {
  font-size: 8px;
  font-weight: bold;
}
.playerDetail .box .boxContent .overview .overviewItem .overviewItemMedal:last-child {
  margin-right: 0;
}
.playerDetail .box .boxContent .overview .overviewItem:first-child {
  padding-left: 0;
}
.playerDetail .box .boxContent .achievementHeader {
  font-family: "Druk Wide", serif;
  font-size: 20px;
  text-align: left;
  line-height: 27px;
}
.playerDetail .box .boxContent .bioContent .bioHeader {
  font-family: "Druk Wide", serif;
  font-size: 20px;
  text-align: left;
  line-height: 27px;
}
.playerDetail .box .boxContent .bioContent p {
  font-size: 20px;
  line-height: 27px;
}
.playerDetail .box .boxContent .btnGroup {
  display: flex;
  font-family: "Druk Wide", serif;
  padding: 20px 0;
}
.playerDetail .box .boxContent .btnGroup .btn {
  flex-grow: 1;
  margin-right: 20px;
  color: #001d60;
  background-color: #fff;
  padding: 19px 30px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.5px;
}
.playerDetail .box .boxContent .btnGroup .btn:last-child {
  margin-right: 0;
}
.playerDetail .box .boxContent .collaps {
  display: none;
}
.playerDetail .box.photoBox .boxContent {
  padding: 18px;
}
.playerDetail .box.photoBox .boxContent .photoCrop {
  height: 400px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  max-width: 100%;
}
.playerDetail .box.photoBox .boxContent .btnGroup {
  display: none;
}
.playerDetail .box.photoBox .boxContent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.playerDetail .numbersBox .boxContent {
  font-family: "Druk Wide Super", serif;
  font-size: 40px;
  color: #fff;
}
.playerDetail .collapse-icon {
  display: none;
}

.playerDetail .numbersBox .boxContent span {
  padding: 0 5px;
}

.collapse-content {
  display: none;
}

.contentHeader h1 {
  text-align: center;
}

@media screen and (max-width: 900px) {
  .playerDetail {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .playerDetail .grid-container {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .playerDetail .column {
    width: 100%;
  }
  .playerDetail .column.left, .playerDetail .column.right {
    width: 100%;
  }
  .playerDetail .column.middle {
    display: none;
  }
  .playerDetail .column.left .photoBox .boxHeader {
    display: none;
  }
  .contentHeader {
    height: auto !important;
  }
  .contentHeader h1 {
    text-align: center;
  }
  .box {
    border-radius: 0;
  }
  .box .boxContent .group .groupLeft .flag {
    width: 29px !important;
    height: 19px !important;
  }
  .box .boxContent .group .groupLeft .icon {
    width: 25px !important;
    height: 25px !important;
  }
  .box .boxContent .group .groupLeft .description {
    font-size: 15px !important;
    line-height: 35px !important;
  }
  .box .boxContent .group .groupRight {
    font-size: 12px !important;
    line-height: 35px !important;
  }
  .box .boxContent .fact {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .box .boxContent .overview {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    justify-content: center;
    grid-gap: 10px;
  }
  .box .boxContent .overview .overviewItem {
    flex: 1 0 50% !important; /* Každá položka zabere polovinu šířky řádku */
    box-sizing: border-box;
    padding: 0px !important;
  }
  .box .boxContent .overview .overviewItem:nth-child(2) {
    grid-column: span 2;
    justify-content: left;
  }
  .box .boxContent .overview .overviewItem .overviewItemTitle {
    font-size: 12px !important;
    height: 20px !important;
  }
  .box .boxContent .overview .overviewItem .overviewItemMedals .overviewItemMedal .overviewItemMedalIcon {
    width: 38px !important;
    height: 38px !important;
  }
  .box .boxContent .overview .overviewItem .overviewItemMedals .overviewItemMedal .overviewItemMedalCount {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .box .boxContent .achievementHeader {
    font-size: 16px !important;
    line-height: 27px !important;
  }
  .box .boxContent .collaps {
    display: block !important;
    text-align: center;
    font-size: 12px;
    height: 35px;
    text-decoration: #fff underline;
  }
  .box.photoBox .boxContent .btnGroup {
    display: flex !important;
    flex-direction: column;
  }
  .box.photoBox .boxContent .btnGroup .btn {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .collapse-icon {
    display: block !important;
    float: right;
    padding-right: 30px;
  }
  .collapse-text {
    float: none !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1200px) {
  .grid-container {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .column {
    width: 50% !important;
  }
  .btn {
    margin-right: 0.3em !important;
    padding: 0.5em 1em !important;
    font-size: 1em !important;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1500px) {
  .overview {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    justify-content: center;
    grid-gap: 10px;
  }
  .overview .overviewItem {
    flex: 1 0 50% !important; /* Každá položka zabere polovinu šířky řádku */
    box-sizing: border-box;
    padding: 0px !important;
  }
  .overview .overviewItem:nth-child(2) {
    grid-column: span 2;
    justify-content: left;
  }
  .overview .overviewItem .overviewItemTitle {
    font-size: 12px !important;
    height: 20px !important;
  }
  .overview .overviewItem .overviewItemMedals .overviewItemMedal .overviewItemMedalIcon {
    width: 38px !important;
    height: 38px !important;
  }
  .overview .overviewItem .overviewItemMedals .overviewItemMedal .overviewItemMedalCount {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .boxContent .group .groupLeft .flag {
    width: 33px !important;
    height: 20px !important;
  }
  .boxContent .group .groupLeft .description {
    font-size: 13px !important;
    line-height: 27px !important;
  }
  .boxContent .group .groupRight {
    font-size: 11px !important;
    line-height: 27px !important;
  }
  .fact {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .achievementHeader {
    font-size: 16px !important;
    line-height: 27px !important;
  }
  .bioContent .bioHeader {
    font-size: 17px !important;
    line-height: 27px !important;
  }
  .bioContent p {
    font-size: 15px !important;
    line-height: 27px !important;
  }
}
@font-face {
  font-family: "Druk";
  src: url("../fonts/Druk-Medium.otf");
}
@font-face {
  font-family: "Druk Wide";
  src: url("../fonts/DrukWide-Medium.otf");
}
@font-face {
  font-family: "Druk Wide Super";
  src: url("../fonts/DrukWide-Super.otf");
}
@font-face {
  font-family: "Druk Super Italic";
  src: url("../fonts/Druk-CondSuperItalic.otf");
}
*,
body {
  margin: 0;
  padding: 0;
  background-image: none;
}

body {
  box-sizing: border-box;
  font-family: "Druk", serif;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: relative;
  overflow: hidden;
  background-color: black;
}

.mainScreen {
  height: 100vh;
  width: 100vw;
  background-color: black;
}

.content {
  height: 100vh;
  width: 100vw;
  background-image: url("../img/bg-main-menu.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  overflow: hidden;
  top: 0;
  z-index: 10;
  transition: filter 0.5s;
}
.content .video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}
.content .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
}
.content .video video.visible {
  display: block;
}
.content .video video.intro {
  z-index: 10;
}
.content .video video.hallLoop {
  z-index: 11;
}
.content .video video.moveLeft {
  z-index: 12;
}
.content.blur {
  filter: blur(10px);
}

.header {
  height: 76px;
}

.mainMenu {
  background-color: white;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  justify-content: center;
  padding-top: 0px;
  z-index: 1000;
  font-family: "Druk Wide";
}
@media only screen and (max-width: 900px) {
  .mainMenu_wrapper {
    height: 0px;
    transition: all 0.5s ease-in-out;
    padding-top: 0px;
    overflow: hidden;
  }
  .mainMenu_wrapper.active {
    overflow: auto;
    display: block;
    height: 100vh;
    padding-top: 70px;
  }
}
.mainMenu_item {
  display: block;
  padding: 23px 15px;
  position: relative;
  border-bottom: 1px solid #001d60;
}
.mainMenu_item.active {
  background-color: #001d60;
}
.mainMenu_item.active a {
  color: #fff;
}
.mainMenu_item.active a:hover {
  color: #fff;
}
.mainMenu_item a {
  text-decoration: none;
  color: #001d60;
  font-size: 20px;
  transition: color 0.3s ease-in-out;
  display: block;
}
.mainMenu_item a:hover {
  color: #d3002c;
  text-decoration: none;
}
.mainMenu_icon {
  display: block;
  width: 46px;
  height: 40px;
  z-index: 1000;
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
}
.mainMenu_icon span {
  height: 3px;
  width: 46px;
  background-color: #fff;
  display: block;
  transition: all 0.5s;
  position: absolute;
}
.mainMenu_icon span:nth-child(1) {
  top: 0px;
}
.mainMenu_icon span:nth-child(2) {
  top: 15px;
}
.mainMenu_icon span:nth-child(3) {
  top: 30px;
}
.mainMenu_icon.active {
  top: 20px;
}
.mainMenu_icon.active span {
  background-color: #001d60;
}
.mainMenu_icon.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}
.mainMenu_icon.active span:nth-child(2) {
  opacity: 0;
}
.mainMenu_icon.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}
@media only screen and (min-width: 900px) {
  .mainMenu_wrapper {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    height: auto;
  }
  .mainMenu_close {
    display: none !important;
  }
  .mainMenu_item {
    display: inline-block;
    border-bottom: none;
  }
  .mainMenu_item a {
    font-size: 15px;
  }
  .mainMenu_icon {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .mainMenu_item {
    padding: 23px 30px;
  }
  .mainMenu_item a {
    font-size: 20px;
  }
}

.subMenu {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: block;
  position: relative;
  top: 0;
  z-index: 50;
  transform: translateY(-80px);
  transition: all 0.5s;
  border-top: 1px solid #001d60;
  opacity: 0;
}
.subMenu.active {
  transform: translateY(0px);
  opacity: 1;
  border-top: 1px solid #001d60;
}
.subMenu .subMenu_item {
  font-size: 20px;
  padding: 23px 0px;
  display: inline-block;
}
.subMenu .subMenu_item a {
  text-decoration: none;
  color: #001d60;
  font-size: 20px;
  font-family: "Inter";
  transition: color 0.3s ease-in-out;
  text-transform: uppercase;
  padding-right: 70px;
}
.subMenu .subMenu_item a:hover {
  color: #d3002c;
}
.subMenu_resetFilter {
  float: right;
  display: block;
  text-decoration: underline;
  color: #001d60;
  font-size: 15px;
  font-family: "Inter";
  transition: color 0.3s ease-in-out;
  line-height: 76px;
  cursor: pointer;
}

.filterSection {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-bottom: 1px solid #001d60;
  transform: translateY(-180px);
  transition: all 0.5s;
  opacity: 0;
  z-index: 40;
  position: relative;
}
.filterSection.active {
  transform: translateY(0px);
  opacity: 1;
}

.visibleContent {
  user-select: initial;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding-top: 100px;
  transform: scale(1);
  transition: all 5s ease-in-out;
  opacity: 1;
  text-align: center;
}
.visibleContent.hidden {
  opacity: 0;
  transform: scale(0.7);
  user-select: none;
}
.visibleContent.scrollable {
  max-height: 100vh;
  overflow-y: auto;
}
@media only screen and (min-width: 600px) and (orientation: landscape) {
  .visibleContent {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 900px) {
  .visibleContent {
    user-select: initial;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-top: 150px;
    transform: scale(1);
    transition: all 5s ease-in-out;
    opacity: 1;
    text-align: center;
  }
  .visibleContent.hidden {
    opacity: 0;
    transform: scale(0.7);
    user-select: none;
  }
  .visibleContent.scrollable {
    max-height: 100vh;
    overflow-y: auto;
  }
}

.owl-stage-outer {
  overflow: visible !important;
}

.owl-item.center .menuCard {
  opacity: 1;
  transform: scale(1);
  z-index: 500;
}

.lobby .owl-carousel,
.players .owl-carousel {
  width: 150%;
  transform: translateX(-25vw);
}
.lobby .owl-carousel .owl-item,
.players .owl-carousel .owl-item {
  transform: translateY(0) scale(1.1);
}
.lobby .owl-carousel .owl-item.center,
.players .owl-carousel .owl-item.center {
  transform: translateY(-25px);
  z-index: 500;
}
.lobby .owl-carousel .owl-item.center .menuCard,
.players .owl-carousel .owl-item.center .menuCard {
  transform: scale(1.2);
}
@media only screen and (min-width: 600px) and (orientation: landscape) {
  .lobby .owl-carousel,
  .players .owl-carousel {
    width: 80%;
    transform: translateX(12%);
  }
  .lobby .owl-carousel .owl-item,
  .players .owl-carousel .owl-item {
    transform: translateY(0) scale(0.9);
  }
  .lobby .owl-carousel .owl-item.center,
  .players .owl-carousel .owl-item.center {
    transform: translateY(-25px);
    z-index: 500;
  }
  .lobby .owl-carousel .owl-item.center .menuCard,
  .players .owl-carousel .owl-item.center .menuCard {
    transform: scale(0.9);
  }
}
@media only screen and (min-width: 900px) {
  .lobby .owl-carousel,
  .players .owl-carousel {
    width: 100%;
    transform: translateX(0vw);
  }
  .lobby .owl-carousel .owl-item,
  .players .owl-carousel .owl-item {
    transform: translateY(0) scale(0.9);
  }
  .lobby .owl-carousel .owl-item.center,
  .players .owl-carousel .owl-item.center {
    transform: translateY(-25px);
    z-index: 500;
  }
  .lobby .owl-carousel .owl-item.center .menuCard,
  .players .owl-carousel .owl-item.center .menuCard {
    transform: scale(1);
  }
}

.players .menuCard .title {
  font-size: 40px;
  top: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 15px;
  padding-right: 15px;
}
.players .owl-carousel {
  width: 150%;
  transform: translateX(-25vw);
}
.players .owl-carousel .owl-item {
  transform: translateY(0) scale(1.1);
}
.players .owl-carousel .owl-item.center {
  transform: translateY(-25px);
  z-index: 500;
}
.players .owl-carousel .owl-item.center .menuCard {
  transform: scale(1.2);
}
@media only screen and (min-width: 900px) {
  .players .owl-carousel {
    width: 130%;
    transform: translateX(-12%);
  }
  .players .owl-carousel .title {
    font-size: 50px;
  }
  .players .owl-carousel .owl-item {
    transform: translateY(0) scale(0.9);
  }
  .players .owl-carousel .owl-item.center {
    transform: translateY(-25px);
    z-index: 500;
  }
  .players .owl-carousel .owl-item.center .menuCard {
    transform: scale(0.9);
  }
}
@media only screen and (min-width: 120px) {
  .players .menuCard .title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1600px) {
  .players .menuCard .title {
    font-size: 80px;
  }
}

.menuCard {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: auto;
  aspect-ratio: 45/63;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0 0 50px 50px;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all 0.5s;
  overflow: hidden;
}
.menuCard img {
  user-drag: none;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: all 0.4s;
}
.menuCard span.title {
  position: absolute;
  top: 0px;
  color: #fff;
  font-family: "Druk Super Italic";
  font-size: 60px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
}
.menuCard:hover {
  opacity: 1;
}
.menuCard:hover img {
  transform: translateX(-50%) scale(1.03);
}
@media only screen and (min-width: 900px) {
  .menuCard {
    opacity: 0.8;
    transform: scale(0.9);
  }
  .menuCard span.title {
    top: 0px;
    color: #fff;
    font-size: 170px;
  }
}

.section {
  position: absolute;
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  transform: translateY(0px);
  z-index: 1;
}
.section.hidden {
  transform: scale(0.4) translateY(-5%);
  opacity: 0;
  user-drag: none;
  z-index: 0;
}
.moments {
  width: 90%;
  margin: 0 5%;
}

.players .playersContent {
  margin-top: 100px;
}

.contentHeader {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 10px;
  color: #fff;
  padding-right: 50px;
}
.contentHeader_centerText {
  flex-grow: 1;
  max-height: 100%;
}
.contentHeader_centerText h1 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Druk Wide Super", serif;
}
.contentHeader_rightBtn, .contentHeader_leftBtn {
  display: none;
}
@media only screen and (min-width: 900px) {
  .contentHeader {
    height: 30px;
  }
  .contentHeader_rightBtn, .contentHeader_leftBtn {
    display: block;
  }
}
@media only screen and (min-width: 900px) {
  .contentHeader {
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
    color: #fff;
    height: 80px;
  }
  .contentHeader h1 {
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Druk Wide Super", serif;
  }
}

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