:root {
    --header-height: 100px;
    --content-width: 1000px;
    --audio-bar-height: 70px;
    --audio-progress-height: 5px;
    --audio-list-height: 70px;
    --font-size-large: 20px;
    --font-size-normal: 17px;
    --font-size-small: 14px;
    --primary-color: #cdad00;
    --secondary-color: #b09300;
    --link-color: #3f81df;
    --audio-bar-animtation: 1s;
    --open-songlist-animtation: 1s;
    --open-songlist-button-animtation: 400ms;
}

@media screen and (max-width: 800px) {

    :root {
        --header-height: 80px;
        --audio-bar-height: 60px;
        --audio-progress-height: 3px;
        --audio-list-height: 60px;
        --font-size-large: 16px;
        --font-size-normal: 13px;
        --font-size-small: 11px;
    }
}

/* * * * *
 * * * * * DEFAULT
 * * * * */

* {
    scrollbar-width: thin;
    scroll-behavior: smooth;
    font-family: 'Ubuntu', sans-serif;
    outline: none;
}

p, h3, h4, h5, h6 {
    margin: 0;
}

a {
    color: var(--link-color) !important;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 0;
}

::selection, ::-moz-selection {
    color: white;
    background-color: var(--primary-color);
}

.noselect {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.hidden {
    display: none !important;
}

/* * * * *
 * * * * * BASIC
 * * * * */

html {
    overflow: hidden;
    height: 100vh;
    height: var(--vh, 100vh);
    height: -webkit-fill-available;
}

body {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    height: var(--vh, 100vh);
    height: -webkit-fill-available;
    margin: 0;
    overflow: hidden;
    transition: height var(--audio-bar-animtation);
}

body.show-audio-bar {
    height: calc(var(--vh, 100vh) - var(--audio-bar-height));
}

main,
aside,
#start,
#daniela,
#anfrage,
#spende {
    width: calc(100vw - 40px);
    max-width: var(--content-width);
    padding: 20px;
}

.copyright {
    text-align: center;
}

.copyright>span {
    cursor: pointer;
}

/* * * * *
 * * * * * HEADER
 * * * * */

header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    padding: 0 20px;
    background-color: white;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, .03);
}

#logo {
    cursor: pointer;
    width: 130px;
}

/* https://www.sliderrevolution.com/resources/css-hamburger-menu */
#openSonglist {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    height: 80px;
    width: 80px;
    transition: 0.3s ease transform;
    cursor: pointer;
}

body.show-menu #openSonglist {
    display: none;
}

#openSonglist>div {
    transform: rotate(-90deg);
}

#openSonglist .line {
    width: 3px;
    height: 3px;
    background-color: #444;
    margin-bottom: 7px;
    border-radius: 1.5px;
    transition: 0.3s ease width, 0.3s ease height, 0.3s ease background-color;
}

#openSonglist .line:first-child {
    width: 20px;
}

#openSonglist .line:nth-child(2) {
    width: 13px;
}

#openSonglist .line:last-child {
    width: 25px;
}

body.show-songs #openSonglist .line {
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px;
    /*background-color: var(--secondary-color);*/
}

#openMenu {
    position: absolute;
    left: 20px;
    height: 80px;
    width: 80px;
}

body.show-songs #openMenu {
    display: none;
}

@media screen and (max-width: 800px) {

    #openSonglist {
        right: 0;
    }

    #openMenu {
        left: 0;
    }
}

body.show-menu #openMenu::after {
    opacity: 0;
}

#openMenu>svg {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform var(--open-songlist-button-animtation);
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.show-menu #openMenu>svg {
    transform: rotate(45deg);
}

#openMenu .line {
    fill: none;
    transition: stroke-dasharray var(--open-songlist-button-animtation), stroke-dashoffset var(--open-songlist-button-animtation);
    stroke: #444;
    stroke-width: 4;
    stroke-linecap: round;
}

#openMenu .top {
    stroke-dasharray: 40 139;
}

#openMenu .bottom {
    stroke-dasharray: 40 180;
}

body.show-menu #openMenu .top {
    stroke-dashoffset: -98px;
}

body.show-menu #openMenu .bottom {
    stroke-dashoffset: -138px;
}

/* * * * *
 * * * * * MENU
 * * * * */

body.show-menu #menu {
    pointer-events: auto;
    visibility: visible;
}

body.show-menu #menu>div {
    transform: scale(1);
    transition-duration: .75s;
}

body.show-menu #menu>div>div {
    opacity: 1;
    transition: opacity .4s ease .4s;
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
}

#menu>div {
    width: 200vw;
    height: 200vw;
    color: white;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 50%;
    transition: all .4s ease;
    flex: none;
    transform: scale(0);
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity .4s ease;
    overflow-y: auto;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu>div>div>ul {
    list-style: none;
    padding: 0 1em;
    margin: 0;
    display: block;
    max-height: 100vh;
}

#menu>div>div>ul>li {
    padding: 0;
    margin: 30px;
    font-size: 30px;
    display: block;
}

#menu>div>div>ul>li>span {
    position: relative;
    cursor: pointer;
    transition: opacity .4s ease;
}

#menu>div>div>ul>li>span:hover {
    opacity: .8;
}

#menu>div>div>ul>li>span:hover:after {
    width: 100%;
}

#menu>div>div>ul>li>span:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    opacity: .8;
    transition: width .4s ease;
}

/* * * * *
 * * * * * MESSAGE
 * * * * */

.message {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    padding: 30px 35px;
    border-radius: 15px;
    color: var(--secondary-color);
    background-color: #cdae002a;
}

#songbook {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px 35px 15px 15px;
}

#error-404 .message {
    color: rgb(200, 0, 0);
    background-color: rgba(200, 0, 0, .1);
}

body:not(.show-404) #error-404,
html:not(.show-songbook) #songbook {
    display: none;
}

.message > a {
    display: flex;
}

.message a {
    color: var(--secondary-color) !important;
    text-decoration: none;
}

.message img {
    border-radius: 5px;
}

.message > p {
    text-align: center;
}

.closeMessage {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.closeMessage::before,
.closeMessage::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background-color: var(--secondary-color);
}

#error-404 .closeMessage::before,
#error-404 .closeMessage::after {
    background-color: rgb(200, 0, 0);
}

.closeMessage::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.closeMessage::after {
    transform: rotate(-45deg) translate(-1.5px, 1.5px);
}

/* * * * *
 * * * * * SONGLIST
 * * * * */

aside {
    position: fixed;
    z-index: 9;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    height: calc(var(--vh, 100vh) - var(--header-height) - 40px);
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%);
    margin-top: calc((var(--vh, 100vh) - var(--header-height)) * -1);
    background-color: white;
    transition: margin var(--open-songlist-animtation), height var(--audio-bar-animtation);
}

body.show-songs aside {
    margin-top: 0;
}

body.show-404 aside {
    grid-template-rows: auto auto auto 1fr auto;
}

body.show-audio-bar aside {
    height: calc(var(--vh, 100vh) - var(--header-height) - var(--audio-bar-height) - 40px);
}

#searchSongs {
    height: 36px;
    margin: 20px 0;
    padding: 0 20px;
    font-size: 100%;
    font-variant: small-caps;
    border-radius: 18px;
    border: none;
    outline: none;
    color: rgba(0, 0, 0, .7);
    background-color: rgba(0, 0, 0, .04);
}

#songsCategories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    min-width: 0;
}

#songsCategories > div {
    width: 100%;
    overflow-x: auto;
}

#songsCategories > div > div {
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
}

.categoryItem label {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 90%;
    white-space: nowrap;
    font-variant: small-caps;
    padding: 3px 8px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(0,0,0,.4);
    background-color: rgba(0,0,0,.05);
}

.categoryItem input {
    display: none;
}

.categoryItem label:hover {
    color: rgba(0,0,0,.6);
    background-color: rgba(0,0,0,.1);
}

.categoryItem input:checked + label {
    color: #cdad00;
    background-color: #cdae002a;
}

.categoryItem label::before {
    content: '✔';
    width: 15px;
    margin-right: 5px;
    overflow: hidden;
    transition: width .5s ease-in-out;
}

.categoryItem input:not(:checked) + label::before {
    width: 0;
    margin-right: 0;
}

#songsEmpty {
    display: none;
    color: rgba(0, 0, 0, .6);
}

.songlistInfo {
    position: relative;
    font-size: 70%;
    text-align: center;
    margin: 20px 20px 0 20px;
}

.songlistInfo span {
    display: inline-block;
    max-width: 450px;
}

#youtube {
    position: absolute;
    display: block;
    right: 0;
    bottom: 10px;
    transition: transform .5s ease-in-out;
}

#youtube:hover {
    transform: scale(90%);
}

@media screen and (max-width: 850px) {

    #youtube {
        position: relative;
        bottom: 0;
        margin-top: 10px;
    }
}

#youtube>image {
    user-select: none;
    pointer-events: none;
}

.donateLink {
    cursor: pointer;
    color: var(--link-color);
}

#songsContainer {
    overflow-y: scroll;
}

.songRow {
    min-height: var(--audio-list-height);
    margin-right: 10px;
}

.songRow:not(:last-child) {
    margin-bottom: 5px;
}

.songRowInner {
    display: grid;
    grid-template-columns: var(--audio-list-height) var(--audio-list-height) 1fr var(--audio-list-height);
    height: 100%;
}

.songRow:not(:last-child)::after {
    content: '';
    display: block;
    height: 3px;
    width: calc(100% - (var(--audio-list-height)*2));
    margin: 1px 0 0 calc(var(--audio-list-height) * 2);
    background: rgba(0, 0, 0, .1);
}

.songBefore {
    display: flex;
    justify-content: center;
    align-content: center;
}

.songRow:not(.playing):not(.only-pdf) .songBefore:hover {
    cursor: pointer;
}

.songPlay,
.songPlaying {
    display: none;
    width: 25px;
    height: 25px;
    margin: auto;
    opacity: .7;
}

.songNumber {
    margin: auto;
    width: 100%;
    text-align: center;
    font-weight: lighter;
    font-size: 120%;
}

.songRow:not(.playing):not(.only-pdf) .songBefore:hover .songPlay,
.songRow.playing .songPlaying {
    display: block;
}

.songRow:not(.playing):not(.only-pdf) .songBefore:hover .songNumber,
.songRow.playing .songNumber {
    display: none;
}

.songCover {
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 5px;
    margin: 5px;
    min-height: calc(var(--audio-list-height) - 10px);
    background-color: rgba(0, 0, 0, .1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.songTitles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5px;
    cursor: pointer;
}

.songTopTitle {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 850px) {

    .songTopTitle {
        flex-direction: column;
    }
}

.songCategories {
    display: flex;
    gap: 5px;
}

@media screen and (max-width: 600px) {

    .songCategories {
        flex-direction: column;
    }
}

.songCategories > div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 80%;
    font-variant: small-caps;
    padding: 3px 8px;
    border-radius: 10px;
}

.songCategories > div.topic {
    color: rgba(0,0,0,.5);
    background-color: rgba(0,0,0,.08);
}

.songCategories > div.category {
    color: rgba(0,0,0,.4);
    background-color: rgba(0,0,0,.05);
}

.songTitle {
    color: rgba(0, 0, 0, .6);
    font-size: var(--font-size-large);
}

.songSubtitle {
    color: rgba(0, 0, 0, .5);
    font-variant: small-caps;
    font-size: var(--font-size-normal);
    margin: 5px 0;
}

.songTimes {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.songTimes>p {
    text-align: center;
}

.songRow.only-pdf .songTimes>p {
    display: flex;
    align-items: center;
    font-size: 60%;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
    color: rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, .1);
}

.songTime {
    color: rgba(0, 0, 0, .8);
}

.danielaLink {
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

/* * * * *
 * * * * * SINGLE SONG
 * * * * */

main {
    display: grid;
    grid-template-rows: auto 1fr;
    margin: 0 auto;
}

body.show-start main,
body.show-daniela main,
body.show-anfrage main,
body.show-spende main {
    display: none;
}

.songHeader {
    display: flex;
    position: relative;
    margin-top: 20px;
    padding: 80px 20px 20px 20px;
    background-color: #d1d1d1;
    border-radius: 7px 7px 0 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.songHeader::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: black;
    -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .5));
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .5));
}

.songHeaderPlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
    height: 60px;
    width: 60px;
    min-width: 60px;
    background-size: 25px 25px;
    background-color: white;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(0, 0, 0, .1)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(0, 0, 0, .1)), color-stop(.75, rgba(0, 0, 0, .1)), color-stop(.75, transparent), to(transparent));
    background-image: -moz-linear-gradient(-45deg, rgba(0, 0, 0, .1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .1) 75%, transparent 75%, transparent);
    animation: move 3s linear infinite;
}

.songHeader.only-pdf .songHeaderPlay {
    display: none;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 25px 25px;
    }
}

@keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 25px 25px;
    }
}

.songHeaderPlay.playing,
.songHeaderPlay.paused {
    cursor: default;
    background-image: none;
}

.songHeaderPlay>img {
    width: 30px;
    opacity: .7;
    transform: translateX(2px);
}

.songHeaderPlay.playing>img {
    transform: translateX(0);
}

.songHeaderPlay.paused>img {
    display: none;
}

#songHeaderTitle {
    display: flex;
    position: relative;
    align-items: center;
    margin: 0 0 0 10px;
    color: white;
    text-shadow: 0 0 20px black;
}

.songPdf {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 7px 7px;
    background-color: #d1d1d1;
    overflow: hidden;
}

.songPdfLoading {
    position: absolute;
    display: inline-block;
    max-width: calc(100% - 200px);
    margin: auto;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    background: #4c494c;
    text-align: center;
    box-shadow: 0px 10px 12px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Google Sans', Roboto, arial, sans-serif;
}

#songPdfViewer {
    position: relative;
    width: 100%;
    height: 100%;
}

.songPdf-viewer {
    border: none;
}

/* * * * *
 * * * * * START
 * * * * */

body #start {
    display: grid;
    grid-template-rows: 1fr auto;
    margin: 0 auto;
    overflow-y: auto;
}

body:not(.show-start) #start {
    display: none;
}

#startContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#startContainer::before {
    content: '';
    display: block;
    position: fixed;
    top: -20vh;
    right: -60vw;
    height: 180vh;
    width: 100vw;
    background-size: 180vh 100vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/app/res/icon/violin.svg");
    opacity: .2;
}

#startContainer>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.startVerse {
    font-size: 5vh;
    font-weight: bold;
    margin-bottom: 50px;
}

.startSlogan {
    font-size: 2vh;
}

.startIcon {
    width: 15vw;
    max-width: 200px;
    margin: 0 30px;
    user-select: none;
    pointer-events: none;
}

@media screen and (max-width: 800px) {

    #startContainer {
        grid-template-columns: 1fr auto;
    }

    .startVerse {
        font-size: 3vh;
    }
}

/* * * * *
 * * * * * DANIELA WUHRMANN
 * * * * */

body #daniela {
    display: grid;
    grid-template-rows: auto 1fr;
    margin: 0 auto;
    overflow-y: auto;
}

body:not(.show-daniela) #daniela {
    display: none;
}

#danielaContainer {
    display: grid;
    grid-template-rows: 1fr auto;
}

.danielaSubtitle {
    margin-top: 20px;
}

.danielaText {
    text-align: left;
    padding-top: 10px;
}

.danielaFoto {
    width: 300px;
    max-width: 100%;
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 5px;
    user-select: none;
    pointer-events: none;
}
@media screen and (max-width: 600px) {

    .danielaFoto {
        display: block;
        margin: 0 auto;
        float: none;
    }
}

/* * * * *
 * * * * * ANFRAGE
 * * * * */

body #anfrage {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    max-width: calc(var(--content-width) / 2);
    height: calc(100vh - var(--header-height) - 40px);
    margin: 0 auto;
}

body:not(.show-anfrage) #anfrage {
    display: none;
}

#anfrageContainer {
    margin: 20px 0;
    overflow-y: auto;
}

#anfrageMessage {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: white;
    border-radius: 5px;
    user-select: none;
    height: 0;
    overflow: hidden;
    transition: all .7s ease-in-out;
}

#anfrageMessage.show {
    padding: 10px 20px;
    height: 30px;
}

#anfrageMessage.info {
    background-color: #f0ad4e;
}

#anfrageMessage.error {
    background-color: #bb2124;
}

#anfrageMessage.success {
    background-color: #22bb33;
}

#anfrageFormular {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 800px) {

    #anfrageFormular #name,
    #anfrageFormular #email {
        grid-column: 1 / span 2;
    }
}

#anfrageFormular #event,
#anfrageFormular #desc,
#anfrageFormular #send {
    grid-column: 1 / span 2;
}

#anfrageFormular input,
#anfrageFormular textarea {
    padding: 10px 15px;
    width: calc(100% - 30px);
    outline: none;
    background-color: rgba(0, 0, 0, .1);
    border: none;
    border-radius: 5px;
    font-size: 100%;
}

#anfrageFormular input.error,
#anfrageFormular textarea.error {
    color: rgb(105, 0, 0);
    background-color: rgba(199, 0, 0, 0.295);
}

#anfrageFormular input {
    height: 30px;
}

#anfrageFormular textarea {
    min-height: 86px;
    max-height: 400px;
    resize: vertical;
}

#anfrageFormular #send {
    padding: 10px 15px;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-size: 100%;
    cursor: pointer;
    transition: background-color 1s;
}

#anfrageFormular #send:hover {
    background-color: var(--secondary-color);
}

/* * * * *
 * * * * * SPENDE
 * * * * */

body #spende {
    display: grid;
    grid-template-rows: auto 1fr;
    max-width: calc(var(--content-width) / 2);
    margin: 0 auto;
    overflow-y: auto;
}

body:not(.show-spende) #spende {
    display: none;
}

#spendeContainer {
    display: grid;
    grid-template-rows: 1fr auto;
}

#spendeContainer>div {
    display: grid;
    grid-template-rows: 1fr auto;
}

#spendeContainer #qrLink {
    display: flex;
    justify-content: center;
}

.spendeThanks {
    display: block;
    margin: 30px 10px 50px 10px;
    padding: 20px;
    border-width: 2px 0;
    border-color: gray;
    border-style: solid;
    text-align: center;
}

.downloadAll {
    display: flex;
    align-items: center;
    margin: 20px auto;
    border: none;
    font-size: 100%;
    border-radius: 5px;
    padding: 15px 20px;
    color: rgba(0, 0, 0, .8);
    background-color: rgba(0, 0, 0, .1);
    cursor: pointer;
}

.downloadAll::before {
    content: '';
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/app/res/icon/download.svg');
    opacity: .6;
}


/* * * * *
 * * * * * AUDIO BAR
 * * * * */

#audioWaves {
    position: absolute;
    width: calc(100vw + 40px);
    height: calc(var(--audio-bar-height) - var(--audio-progress-height));
    bottom: 0;
    left: -20px;
    right: -20px;
    opacity: .15;
}

.audioBar {
    position: fixed;
    height: var(--audio-bar-height);
    bottom: calc(var(--audio-bar-height)*-1);
    right: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.06);
    transition: all var(--audio-bar-animtation);
}

body.show-audio-bar .audioBar {
    bottom: 0;
}

.audioControlBar,
.audioProgressBar {
    position: absolute;
    width: 100vw;
    height: var(--audio-progress-height);
    bottom: calc(var(--audio-bar-height) - var(--audio-progress-height));
    transition: height calc(var(--audio-bar-animtation) / 2);
}

.audioControlBar {
    cursor: pointer;
    z-index: 10;
    background: transparent;
}

.audioProgressBar {
    background: #eee;
}

.audioControlBar:hover,
.audioControlBar:hover~.audioProgressBar {
    height: calc(var(--audio-progress-height)*2);
}

.audioProgressBarContainer {
    width: 100%;
    height: 100%;
    background: transparent;
}

.audioProgressedBar {
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    border-radius: 0 3px 3px 0;
}

.audioControl {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: var(--audio-progress-height) auto 0 auto;
    height: calc(var(--audio-bar-height) - var(--audio-progress-height));
}

.audioControl>div {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1200px) {

    .audioControl>div:first-child::before,
    .audioControl>div:last-child::after {
        content: '';
        display: block;
        width: 3px;
        height: calc(var(--audio-bar-height) - var(--audio-progress-height) - 15px);
        background: rgba(0, 0, 0, .1);
    }
}

.play, .audioDownload {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: calc(var(--audio-bar-height) - var(--audio-progress-height));
    height: calc(var(--audio-bar-height) - var(--audio-progress-height));
    cursor: pointer;
}

.audioDownload {
    margin-left: 10px;
}

.play>img, .audioDownload>img {
    width: 30px;
    opacity: .8;
}

.audioCover {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: var(--audio-bar-height);
    height: var(--audio-bar-height);
}

.audioCover>div {
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.audioText {
    display: flex;
    flex-direction: column;
}

.audioTitle {
    font-size: var(--font-size-large);
    color: rgba(0, 0, 0, .6);
    font-weight: bold;
    line-height: 110%;
}

.audioSubtitle {
    font-size: var(--font-size-normal);
    color: rgba(0, 0, 0, .5);
    font-variant: small-caps;
    line-height: 110%;
}

.audioTime {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.audioActuellTime, .audioFullTime {
    display: inline-block;
    padding: 0;
    font-size: var(--font-size-large);
    line-height: 110%;
    color: rgba(0, 0, 0, .8);
    background: transparent;
}