/* The Overlay (background) */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #1c1c1c;
    opacity: .9;
    color: #d9d9d9;
    overflow-x: hidden;
    transition: 0.5s;
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    background: #a0a0a0;
    padding: 20px;
    color: #2b2b2b;

.trigger-warning {
    color: #BC0000;
}
        
/* Style the tab */
.trigger_tab {
      overflow: hidden;
      background-color: var(--banner-color);
    }

/* Style the buttons that are used to open the tab content */
.trigger_tab button {
      background-color: var(--banner-color);
      background-image: none;
      border-radius: 0;
      float: left;
      border: none;
      outline: none;
      cursor: pointer;
      padding: 5px 10px;
      transition: 0.3s;
      font-family: 'Roboto', sans-serif;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      color: var(--main-text);
}

/* Change background color of buttons on hover */
.trigger_tab button:hover {
      color: var(--akzent);
    }
    
/* Create an active/current tablink class */
.trigger_tab button.active {
      /* background-color: #dadbda; */
      border-bottom: 3px solid var(--akzent);
      /* font-weight: 600; */
    }

/* Style the tab content */
.trigger_tabcontent {
      background: var(--banner-color);
      padding: 12px;
      border-top: none;
      animation: fadeEffect 1s; /* Fading effect takes 1 second */
    }

    /* Go from zero to full opacity */
    @keyframes fadeEffect {
      from {opacity: 0;}
      to {opacity: 1;}
    }