@font-face 
{
    font-family: DejaVu;
    src: url(../font/DejaVuSerifCondensed.ttf);
}

body
{
    font-family: DejaVu;
    color: #a44f0e;
    top: 0;
    font-size: 105%;
    overflow-y: scroll;
}

a
{
    color: #ff6c4f;
    text-decoration: underline;
}

#footer_wide a, #footer_small a
{
    color: #FFF;
}

img
{
    max-width: 100%;
}

.header_logo
{
    width: 75px;
    height: 75px;  
    background-image: url("../img/logo_white.png");
    background-size: cover;
    display: inline-block;
}

.header_buddha
{
    width: 750px;
    height: 500px;  
    background-image: url("../img/header_buddha.jpg");
    background-size: cover;
    margin: auto;

}

.menu_burger
{
    width: 30px;
    height: 30px;  
    background-image: url("../img/burger_closed.png");
    background-size: cover;
    display: inline-block;
}
.menu_lang
{
    width: 30px;
    height: 30px;  
    background-image: url("../img/language.png");
    background-size: cover;
    display: inline-block;
}

#nav_menu, #lang_menu
{
    position: absolute;
    top: 0;
    min-width: 200px;
    max-width: 500px;

    z-index: 999;
    background-color: #000;
    display: none;
    overflow: auto;
}

#nav_menu
{
    min-height: 233px;
    max-height: 680px;
    background-color: #804000;
}

#nav_menu ul, #lang_menu ul
{
    color: #FFF;
    line-height: 200%;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    
    padding: 0;

}

#nav_menu ul:hover, #lang_menu ul:hover
{
    background-color: #FFF;
    color: #9e7b5b;
    cursor: pointer;
    -webkit-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
}

#display_content img
{
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

#footer_small, #footer_wide
{
    display: none;
    width: 100%;
    background-color: #000000;
}

.mediathek_file
{
    cursor: pointer;
}

#display_content
{
    margin: auto; padding: 9px; max-width: 950px; background-color: #FFF;
}

.lds-ellipsis 
{

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: none;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #9e7b5b;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }  


#mediathek_table
{
    width: 100%;
}

#mediathek_table thead tr
{
    background-color: #555;
    color: #FFF;

}


#mediathek_table tbody tr .track
{
    width: 100%;
    background-color: #FFF;
    text-align: center;
    border-bottom: 1px solid #000;
}

#mediathek_table tbody tr .track:hover
{
    background-color: #E0E0E0;
    
    -webkit-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}

#photos_album_table
{
    width: 75%; 
    margin: auto;
}

#photos_album_table tr td:nth-child(1)
{
    width: 250px;
}

#photos_album_table tr td:nth-child(2)
{
    width: calc(100% - 250px);
    text-align: center;
}

#photos_album_table tr
{
    cursor: pointer;
}

#photos_album_table tr td
{
    border-bottom: 1px solid #000;
}

#photos_album_table tr:hover
{

    background-color: #E0E0E0;
      
    -webkit-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}

#photos_album_table .photo_info
{
    text-align: left;
}


#books_table
{
    width: 75%; 
    margin: auto;
}

#books_table tr
{
    height: 250px;
}

#books_table tr td
{
    border-bottom: 1px solid #000;
}

#books_table tr td:nth-child(1)
{
  width: 200px;
  border-bottom: 1px solid #000;
}


#track_display_title
{
    text-align: center;
}


#error_headline
{
    font-size: 200%;
    text-align: center;
}

#error_information
{
    text-align: center;
    font-size: 150%;
}

#error_information a
{
    font-size: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #000;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
