@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('../fonts/roboto-mono-v22-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../fonts/roboto-mono-v22-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

  form{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: solid 1px lightgrey;
    border-radius: 24px;
    box-shadow: 0px 0px 2px 2px lightgrey;
    margin-top: 18px;
  }

  input{
    font-size: 18px;
    width: 280px;
    padding: 4px;
    font-weight: bold;
  }

  .loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }  




  /** LOADING SPINNER **/

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }

  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }

  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }

  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }

  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  #loading-spinner {
    display: none;
  }  

body{
    font-family: 'Roboto Mono';
    color: white;
}

strong{
    font-size: 28px;
}

.roboto-mono{
    font-family: "Roboto Mono";
}  

.overflow-hidden{
    overflow: hidden;
}

.bg-page{
    background-color: #1095b0;
}

.bg-green{
    background-color: #5bb511;
}

.header{
    position: relative;
    font-family:  'Roboto Mono';
    height: 50vh;
    background-image: url('../img/antenne2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid white;
    border-bottom-right-radius: 100%;
    box-shadow: 1px 1px 1px 0px black;
   
}

.privacy{
    font-size: 0.8rem;
}


.header-content{
    margin-top: 35px;
    font-size: 24px;
    color: white;
}


.welcome-text p{
    font-family:  'Roboto Mono';
    font-size: 20px;
}



.welcome-text h1{
    position: absolute;
    bottom: 50%;
    font-size: 42px;
    margin-left: 120px;
    text-shadow: 4px 3px 0 #171515;
}

.margin-top-30px{
    margin-top: 70px;
}

.margin-bottom-30px{
    margin-bottom: 70px;
}

.teamspeak h2{
    font-size: 35px;
}

.ts-img{
    width: 120px;
    height: 120px;
}

.contact h2{
    font-size: 35px;
    font-family: 'Roboto Mono';
}

.contact p{
    font-family:  'Roboto Mono';
    font-size: 20px;
}

.contact img{
    width: 235px;
}

.footer{
    font-family: 'Roboto Mono';
    min-height: 24vh;
    background-color: #00aef7;
    border-top: 5px solid white;
    padding-top: 90px;
}

.footer a{
    font-size: 17px;
    font-weight: bolder;
    color: white;
    text-decoration: none;
    cursor: pointer;
} 

.footer a:hover{
    text-decoration: underline;
}

.footer h2{
        font-size: 24px;
        color: red;
}

.footer p{
    font-size: 12px;
    color: white;
}

.w-70{
    width: 70%;

}

.w-50{
    width: 50%;

}

.w-30{
    width: 30%;

}

.nav {
    font-family:  'Roboto Mono';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    height: 65px;
    background: linear-gradient(to bottom, rgb(12 105 122) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}

nav {
    position: relative;
    height: fit-content;
}

nav:before {
    position: absolute;
    content: "";
    top: 12px;
    right: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
} 

nav.active:before {
    content: "";
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.main-menu{
    border: solid 1px white;
    border-radius: 12px;
    padding: 4px;
    color: white;
    cursor: pointer;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    margin-left: 24px;
}

.main-menu:hover{
    box-shadow: 1px 1px 1px 1px #3c515a;

}

.navbarbanner{
    height: 55px;
    cursor: pointer;
}


nav {
    cursor: pointer;

}

nav a.href {
    cursor: pointer;

}

nav a:not(.bg-green) {
    display: none;

}

nav.active a {
    display: flex;

}

.navbar {
    padding: 1rem;

}

.navbar a{
    font-size: 12px;
    border: solid white;
    text-decoration: none;
    color: white;
    padding: 6px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    width: 240px;
    font-family: 'Roboto Mono';

}

.navbar a:hover{
    color: #1095b0;
    background-color: white;

}

.submenu{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 30%;
    background-color: #1095b0;
    overflow-y: scroll;
    justify-content: center;
    z-index: 999;

}

#navImg{
    margin-left: 34px;
}

.member-menu-container{
    display: none;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgb(12 105 122) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 12px 0;
    
}


.cross{
    width: 35px;
    cursor: pointer;
    filter: invert(1);
    margin-bottom: 6px;
    margin-top: 6px;
}

.contact-form{
    width: 550px;
    border: solid 2px white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.microphone-assignment{
    width: 650px;
    padding: 32px;
    background: white;
    border-radius: 24px;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
}

.pmr-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pmr-img-container img{
    width: 250px;
    height: 150px;
    padding: 32px;
    margin: 36px;
    background: white;
    border-radius: 24px;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    
}

.europa-funk-img{
    width: 650px;
    height: 450px;
    padding: 32px;
    margin: 36px;
    background: white;
    border-radius: 24px;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
}

table {
    border-collapse: collapse;
    width: 100%;
  }
  
table td, .table th {
    border: 1px solid #ddd;
    padding: 8px;
    
  }
  
table tr:nth-child(even){
    background-color: #00aef7;
}
  
table tr:hover {
    background-color: rgba(50, 48, 48 , 20%);
    color: lime;
}
  
table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #042eaa;
    color: white;

}


#preFixList{
    max-width: 60%;

}

#radioProtectionZone{
    max-width: 70%;
}

#radioProtectionZone div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin: 10px;
    background-color: white;
    width: 225px;
    height: 45px;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    border: 3px solid #1095b0;
    border-radius: 24px;
    background-color: #1095b0;
    color: white;
    font-weight: bold;
}

.max-width-50{
    max-width: 50%;
}


.prefix{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(39, 74, 77, 0.25);
    text-align: center;
    border: solid 2px black;
    border-radius: 12px;
    background-color: rgba(39, 74, 77, 0.25);
    color: white;
    width: 320px;
    height: 75px;
    padding: 6px;
    margin: 15px;
    text-align: center;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);

}


.circuit-diagram{
    background: white;
    width: 550px;
    height: auto;
    padding: 24px;
    /* border: 2px solid black; */
    border-radius: 24px;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
}



#allMemberList img{
    width: 75px;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background:  #424242; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #b30000; 
  }

  .overlay{ 
    background-color: rgba(0,0,0,75%);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
  }

.open-start-page-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.qsl-img img{
    width: 650px;
    padding: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 12px;
    border: solid 3px black;
    background-color: white;
}

.radio{
    width: 240px;
}


.radio-content-container div{
    width: 350px;
    background-color: #1095b0;
    margin-top: 5px;
    display: flex;
    align-items: center;
    padding: 12px;
    text-align: left;
    border-bottom: solid 3.5px white;
    color: white;
}

.radio-image-container img{
    width: 85px;
    height: 85px;
    padding: 6px;
    background-color: white;
    margin: 10px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid black;
}

.cb-history-content{
    width: 50%;
}

ul{
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

li{
    padding: 24px;
    justify-content: center;
}

.cb-regulate-content{
    border: solid 1px black;
    border-radius: 24px;
    padding: 24px;
    margin-top: 25px;
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);

}

.cb-regulate-content:hover{
    background-color:rgba(152, 220, 232, 0.35);

}

.speech-content div{
    padding-bottom: 6px;
    padding-top: 6px;
    border-bottom: 2.5px solid white;
    width: 50%;

}

.letterHeadline{
    font-size: 43px;
    text-align: center;
    color: white;
    text-shadow: 4px 3px 0 #171515;
    border: 1px solid white;
    border-radius: 12px;
    box-shadow: 1px 1px 1px 1px black;
}

.submenu-headline{
    font-size: 12px;
    border: solid white;
    text-decoration: none;
    color: white;
    padding: 6px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    width: 240px;
    font-family: 'Roboto Mono';
}

.slick-slider{
    -webkit-box-shadow: 0px 6px 10px 0px #000000;   
    box-shadow: 0px 6px 10px 0px #000000;
}



.image-silder img {
    width: 100%;
    max-height: 75vh;
}

.search {
    width: 40px;
    filter: invert(1);
    cursor:  url(../img/searchcur.cur), auto;
}

.back {
    border: solid 1px white;
    border-radius: 12px;
    padding: 4px;
    color: white;
    cursor: pointer;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

#searchContainerOverlay{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,85%);
}

.close-btn{
    width: 25px;
    height: 25px;
    position: absolute;
    right: 25px;
    top: 25px;
}

.pointer{
    cursor: pointer;
}

.dropbtn {
    background-color: #1095b0;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    cursor: pointer;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.search-container{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: white;
    color: black;
    border-radius: 24px;
    max-height: 80vh;
    text-align: -webkit-center;
    padding-bottom: 12px;

}

.search-btn{
    margin-top: 12px;
    font-size: 18px;
    border-radius: 12px;
    padding: 6px;
    font-weight: bold;
    color: white;
    background: #1095b0;
    cursor: pointer;
}

@media(max-width: 1024px){
    .image-silder img {
        max-height: 50vh;
    }
}

@media(max-width: 425px){
    .ws-100 {
        max-width: 100%;
    }
    .image-silder img {
        width: 100%;
        max-height: 30vh;
    }
    
}