@font-face {
   font-family: TeleGroteskNextUltra;
   src:
       url('../fonts/TeleGroteskNext-Ultra.woff2') format('woff2'),
       url('../fonts/TeleGroteskNext-Ultra.woff') format('woff');
}

@font-face {
   font-family: TeleGroteskNextBold;
   src:
       url('../fonts/TeleGroteskNext-Bold.woff2') format('woff2'),
       url('../fonts/TeleGroteskNext-Bold.woff') format('woff');
}

@font-face {
   font-family: TeleGroteskNextRegular;
   src:
       url('../fonts/TeleGroteskNext-Regular.woff2') format('woff2'),
       url('../fonts/TeleGroteskNext-Regular.woff') format('woff');
}

@font-face {
   font-family: TeleGroteskNextThin;
   src:
       url('../fonts/TeleGroteskNext-Thin.woff2') format('woff2'),
       url('../fonts/TeleGroteskNext-Thin.woff') format('woff');
}

@font-face {
   font-family: TeleIconSolid;
   src:
       url('../fonts/TeleIcon-Solid.ttf');
}

@font-face {
   font-family: TeleIconOutline;
   src:
       url('../fonts/TeleIcon-Outline.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

input:focus{
    outline: none;
}

html, body {
    font-size: 12px;
    font-family: 'TeleGroteskNextThin', monospace;
    font-weight: normal;
    line-height: 1.25rem;
    letter-spacing: 0.5px;
    width: 100vw;
    height: 100vh;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    /* flex-direction: center; */
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: #262626;
}

#setupvoice {
    font-family: 'TeleGroteskNextThin', monospace;
    padding: 1rem;
    background: #E20074;
    color: #FFF;
    font-size: 1.5rem;
    letter-spacing: 1px;
    border: 0;
    border-radius: 0.25rem;
}

#overlay {
    background: rgba(0,0,0,0.85);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
}
#close-btn {
    cursor: pointer;
    font-family: 'TeleIconOutline';
    font-size: 2rem;
    color: #FFF;
    position: absolute;
    right: 2rem;
    top: 2rem;
}

#wrapper {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    align-items: center;
}

#visuals {
    width: 50%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spoken {
    color: #FFF;
    font-size: 4rem;
    line-height: 5rem;
    text-align: center;
    margin: 3rem 0;
}


.hidden {
    display: none !important;
}
#loader {
    width: 168px;
    height: 168px;
    margin-bottom: 10rem;
}

#success {
    width: 168px;
    height: 168px;
    margin-bottom: 10rem;
}
.tma_feedback__animated .tma_feedback__success__checkmark {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: tma_feedback__dash 500ms ease-in-out forwards;
  animation-delay: 0.25s;
}
.tma_feedback__animated .tma_feedback__success__circle {
  stroke-dasharray: 515;
  stroke-dashoffset: 515;
  animation: tma_feedback__dash 500ms ease-in-out forwards;
  animation-delay: 0.25s;
}
.tma_feedback__invisible {
  opacity: 0;
  transition: opacity 50ms ease-in;
}
.tma_feedback__animated {
  opacity: 1;
  transition: opacity 250ms ease-in;
}

#visualizer {
    width: 168px;
    height: 168px;
    background: url('../images/voice-animation.png') center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10rem;
}

#invoice {
    width: 100%;
    height: 100%;
    background-image: url();
}
#tvshows {
    width: 100%;
    height: 100%;
}
#tvshows #image {
    background: url('../images/tatort.png');
    background-size: contain;
    width:100%;
    height:100%;
}
#tvshows img {
    width: 100%;
    height: auto;
}
#tvshows #title {
    margin: 0 0.5rem;
    font-size: 2.5rem;
    margin-top: 1.5rem;
    color: #FFF;
}
#tvshows #info {
    margin: 0 0.5rem;
    font-size: 2.5rem;
    margin-top: 1.5rem;
    color: #7c7c7c;
}

#voice-btn {
    display: flex;
    flex-direction: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 3;
    width: 7rem;
    height: 7rem;
    bottom: 3rem;
    border-radius: 50%;
    background: #E20074;
    color: #FFF;
    font-family: TeleIconSolid;
    font-size: 3rem;
    cursor: pointer;
    box-shadow: 0px 0px 4rem rgba(0,0,0,0.35);
}

.tma_feedback__animated .tma_feedback__loaderSmall {
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  animation: tma_feedback__dash 2000ms linear infinite;
}
.tma_feedback__animated .tma_feedback__loaderBig {
  stroke-dasharray: 515;
  stroke-dashoffset: 515;
  animation: tma_feedback__dash 2000ms linear infinite;
}
/* .tma_feedback__animated .tma_feedback__success__circle {
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  animation: tma_feedback__dash 250ms ease-in-out forwards;
  animation-delay: 0.05s;
}
.tma_feedback__animated .tma_feedback__success__checkmark {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: tma_feedback__dash 250ms ease-in-out forwards;
  animation-delay: 0.25s;
} */

#tma_feedback__loaderSmall, #tma_feedback__loaderBig {
  animation: tma_feedback__loader 2000ms linear infinite;
}

@keyframes tma_feedback__loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes tma_feedback__dash {
  to {
    stroke-dashoffset: 0;
  }
}



/* #fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    background-image: url('../images/bg-entertain-02.jpg');
    background-size: cover;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

#fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.fullscreen-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
}
