/* CSS Stylesheet */
@charset "UTF-8";
@font-face {
    font-family: 'FSMe';
    src: url("../font/FSMeW05-Regular.woff2") format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'FSMe';
    src: url("../font/FSMeW05-Bold.woff2") format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
* {
  box-sizing: border-box;
  background-repeat: no-repeat;
}
html {
  font-smoothing: antialiased;
  font-weight: 400;
  text-rendering: geometricprecision;
	scrollbar-width: none;
}
html,
body {
}
body {
	position: relative;
	margin: 0;
	padding: 0;

  color: #000;
	font-family: "FSMe";
  font-size: 36px;

  background-image: url(../png/background.png);
  background-size: cover;
}
.player-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
/* General */
/* Content padding */
.cp {
  padding: 50px;
}
.cp-v {
  padding-top: 50px;
  padding-bottom: 50px;
}
.cp-top {
  padding-top: 50px;
}
@media (max-width: 900px) {
  body {
    font-size: 30px;
  }
  .cp {
    padding: 25px;
  }
  .cp-v {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cp-top {
    padding-top: 25px;
  }
}
.button {
  width: 200px;
  height: 200px;
  background-position: center center;
}
/* Player */
.player-wrapper {
  min-height: 100vh;
}
.player-button {
  background-image: url(../svg/play.svg);
}
.player-button.playing {
  background-image: url(../svg/pause.svg);
}
.player-title {
  max-width: 650px;
}
.notification-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
/* Template single */
.player-wrapper {
  display: flex;
  justify-content: center;
}
.template-single.player-wrapper {
  align-items: center;
}
.player-wrapper.template-single {
  flex-direction: column;
  height: 100%;
}
.template-single .player-title {
  margin-bottom: 25px;
  color: #FFF;
}
.template-single .player-button {
  margin-bottom: 50px;
}
/* Template list */
.player-list-title {
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  margin: 0;
  color: #FFF;
  background-color: #4C625A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.template-list.player-wrapper {
  width: 100%;
  overflow-x: hidden;
}
.player-table {
  border-collapse: collapse;
}
.player-table tr td {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.player-table tr:nth-of-type(even) .player-table__title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1000vw;
  height: 100%;
  background-color: rgba(0,0,0,0.1);
  transform: translateX(-50%);
  z-index: 0;
}
.player-table__title {
  padding-right: 50px;
}
.player-table__title__inner {
  position: relative;
  z-index: 10;
}
.button.lang-button {
  width: 100px;
  height: 100px;
  display: inline-block;
  margin-left: 50px;
  flex-shrink: 0;
}
.lang-button--de {
  background-image: url(../svg/01_Button_DE.svg);
}
.lang-button--en {
  background-image: url(../svg/01_Button_EN.svg);
}
@media (max-width: 900px) {
  .player-title {
    font-size: 0.7em;
  }
  .player-table__title {
    padding-right: 25px;
  }
  .button {
    width: 100px;
    height: 100px;
  }
  .button.lang-button {
    margin-left: 25px;
  }
}

/* Notification */
.notification {
  color: #FFF;
  font-weight: bold;
  max-width: 650px;
}
.notification > span {
  display: block;
  font-size: 1.5em;
}
