html {
    height: 100vh; /* bugfix für chrome url bar */
    scroll-padding-top: 80px; /* height of sticky header - damit beim Navigieren der header nicht den content überdeckt */
  }
  
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(rgba(40, 37, 32, 0.6), rgba(40, 37, 32, 0.6)), url('/img/error2.png'); /* Photo by Andrew Neel on Unsplash */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  scroll-padding-top: 80px;
  }

.line-behind-link-in-paragraph {
  /* padding: 0 10px; */
  box-shadow: inset 0 -10px 0 0 #FFF;
}

.article-link, .article-link:focus, .article-link:hover {
  color: #000;
  font-weight: bold;
  font-size: 1.4em;
  text-transform: uppercase;

}

.article-links {
  color: rgb(175, 80, 13);
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: underline;
}

.article-links:hover, .article-links:focus {
  color: rgb(175, 80, 13);
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: underline;
}

.article-link-inner {
  color: rgb(175, 80, 13);
  font-weight: bold;
  text-decoration: underline;
}

.article-link-inner:focus, .article-link-inner:hover {
  color: rgb(175, 80, 13);
  font-weight: bold;
  text-decoration: underline;
}

.article-header-include {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 2px;
  white-space: nowrap;
}

.article-link-include, .article-link-include:focus, .article-link-include:hover {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

.my-article-include-card {
  background-color: rgba(32, 31, 31, 0.8);
}
  
  
  /* -----------------------BACK-TO-TOP BUTTON --------------------- */
  
  #back-to-top {
    display: inline-block;
    background-color: rgba(230, 149, 93, 0.9);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50% 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  
  #back-to-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #FFF;
  }
  
  #back-to-top:hover {
    cursor: pointer;
    background-color: rgba(230, 149, 93, 0.9);
  }
  
  #back-to-top:active {
    background-color: rgba(230, 149, 93, 0.9);
  }
  
  #back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* --------------------- INFO WHEN LAST UPDATED --------------------- */
  
  .update-info {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
  }
  
  .update-row {
    background-color:  rgba(199, 180, 172, 0.3);
  }
  
  /* --------------------- NAVBAR --------------------- */
  
  nav {
    -webkit-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
  }
  
  .scrolled {
    color: #000;
    background: #fff;
    -webkit-box-shadow: 0px 5px 8px #584a49;
    box-shadow: 0px 5px 8px #584a49;
  }
  
  .navbar-brand {
    color:  #FFF;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .scrolled .navbar-brand, .scrolled .navbar-brand:hover {
    color: #000;
  }
  
  .navbar-brand:hover {
    color:  #FFF;
    -webkit-transform: scale(1.021,1.04);
            transform: scale(1.021,1.04);
  }
  
  .nav-link {
    color:  #FFF;
    text-decoration: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .nav-link-continent {
    letter-spacing: 0.05em;
    font-weight: bold;
  }
  
  .scrolled .nav-link, .scrolled .nav-link:hover {
    color: #000;
  }
  
  .nav-link:hover {
    color:  #FFF;
  }
  
  .navbar-toggler {
    color:  #FFF;
  }
  
  .navbar-toggler:hover {
    -webkit-transform: scale(1.021,1.04);
            transform: scale(1.021,1.04);
  }
  
  .scrolled .navbar-toggler, .scrolled .navbar-toggler:hover {
    color: #000;
  }
  
  .navbar-toggler:focus, .navbar-toggler:active {
    outline: none;
  }

  .badge {
    font-weight: normal;
    color: #FFF;
    background-color: rgba(230, 149, 93, 0.9);
  }

  .menu-circle {
    background-color: rgba(230, 149, 93, 1);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    vertical-align: 0.5em;
    display: inline-block;
    margin-left: -5px;
  }
  
  /* --------------------- TRAINER CODE TABLES --------------------- */
  
  .my-table-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    white-space: nowrap;
  }
  
  .my-table {
    color: #000;
    background: #fff;
  }
  
  .card {
    border-radius: 25px;
    border: none;
  }
  
  tr td:last-child {
    width: 1%;
    white-space: nowrap;
  }
  
  .copy-btn {
    color: #000;
  }
  
  .copy-btn:hover {
    background: #fff;
    border-radius: 50% 50%;
  }
  
  .copy-btn:focus, .copy-btn:active {
    outline: none;
    border: none;
  }
  
  .my-tooltip {
    color: #000;
    cursor: pointer;
  }
  
  .my-tooltip:hover {
    color: #000;
    text-decoration: none;
  }
  
  .country-link, .country-link:active {
    text-decoration: none;
    color: #000;
  }
  
  .country-link:hover, .country-link:focus {
    text-decoration: underline;
    color: #000;
  }
  
  /* --------------------- LEGAL NOTICE LINK --------------------- */

  #page-container {
    position: relative;
    min-height: 100vh;
  }
  
  #content-wrap {
    padding-bottom: 0.2rem;    /* Footer height */
  }
  
  #footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.2rem;            /* Footer height */
  }
  
  .datenschutz-link, .datenschutz-link:active, .datenschutz-link:hover {
    color: #FFF;
  }
  
  .datenschutz-link:focus {
    color: #e6955d;
  }
  
  /* --------------------- 404 ERROR PAGE --------------------- */
  
  header {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    white-space: nowrap;
  }
  
  code {
    color: #e6955d;
    font-size: 1.1em;
    font-weight: bold;
  }

  .error-message {
    color: #FFF;
  }

  a, a:active, a:hover {
    color: #e6955d;
  }
  
  a:focus {
    color: #e6955d;
  }

  .my-card {
    background-color: rgba(255, 255, 255, 0.6);
  }

/* --------------------- QR CODE SLIDER (CAROUSEL) --------------------- */

/* CENTERED CAROUSEL */

.carousel {
  margin: 0 auto;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev{
    display:block;
}

/* CONTROLS OUTSIDE SLIDE */

.carousel-control-prev {
  margin-left: -50px;
}

.carousel-control-next {
  margin-right: -50px;
}

/* SIZE OF CONTROLS */

.carousel-control-prev-icon {
  height: 30px;
  width: 30px;
}

.carousel-control-next-icon {
  height: 30px;
  width: 30px;
}

/* CARD STYLE */

.carousel-card {
  background-color: rgba(230, 149, 93, 0.8);
}

/* TRAINER CODE STYLE */

.carousel-code {
  color: #FFF;
  /* color: #FFF; */
  /* font-weight: bold; */
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 0px;
}

/* TRAINERCODE COPY + COPY BUTTON STYLE */

.carousel-copy-code {
  color: #FFF; 
}

.carousel-copy-btn {
  color: #FFF;
}

.carousel-copy-btn:hover {
  color: #FFF;
  background-color: rgb(255, 255, 255, 0.2);
  border-radius: 50% 50%;
}

.carousel-copy-btn:focus, .carousel-copy-btn:active {
  outline: none;
  border: none;
}

.carousel-tooltip {
  color: #FFF;
  cursor: pointer;
}

.carousel-tooltip:hover {
  color: #FFF;
  text-decoration: none;
}

.carousel-country-link, .carousel-country-link:active {
  color: #FFF;
  text-decoration: none; 
}

.carousel-country-link:hover, .carousel-country-link:focus {
  color: #FFF;
  text-decoration: underline; 
}
  