/* Google Font Link */

@media (max-width: 1025px) {
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins" , sans-serif;
    }
    .sidebar{
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 78px;
      background: #11101D;
      padding: 6px 14px;
      z-index: 99;
      transition: all 0.5s ease;
    }
    .sidebar.open{
      width: 170px;
    }
    .sidebar .logo-details{
      height: 60px;
      display: flex;
      align-items: center;
      position: relative;
    }
    .sidebar .logo-details .icon{
      opacity: 0;
      transition: all 0.5s ease;
    }
    .sidebar .logo-details .logo_name{
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      opacity: 0;
      transition: all 0.5s ease;
    }
    .sidebar.open .logo-details .icon,
    .sidebar.open .logo-details .logo_name{
      opacity: 1;
    }
    .sidebar .logo-details #btn{
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      font-size: 20px;
      transition: all 0.4s ease;
      font-size: 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.5s ease;
    }
    .sidebar.open .logo-details #btn{
      text-align: right;
    }
    .sidebar i{
      color: #fff;
      height: 60px;
      min-width: 50px;
      font-size: 28px;
      text-align: center;
      line-height: 60px;
    }
    .sidebar .nav-list{
      margin-top: 20px;
      height: 100%;
    }
    .sidebar li{
      position: relative;
      margin: 8px 0;
      list-style: none;
    }
    .sidebar li .tooltip{
      position: absolute;
      top: -20px;
      left: calc(100% + 15px);
      z-index: 3;
      background: #fff;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 400;
      opacity: 0;
      white-space: nowrap;
      pointer-events: none;
      transition: 0s;
    }
    .sidebar li:hover .tooltip{
      opacity: 1;
      pointer-events: auto;
      transition: all 0.4s ease;
      top: 50%;
      transform: translateY(-50%);
    }
    .sidebar.open li .tooltip{
      display: none;
    }
    .sidebar input{
      font-size: 15px;
      color: #FFF;
      font-weight: 400;
      outline: none;
      height: 50px;
      width: 100%;
      width: 50px;
      border: none;
      border-radius: 12px;
      transition: all 0.5s ease;
      background: #1d1b31;
    }
    .sidebar.open input{
      padding: 0 20px 0 50px;
      width: 100%;
    }
    .sidebar li a{
      display: flex;
      height: 100%;
      width: 100%;
      border-radius: 12px;
      align-items: center;
      text-decoration: none;
      transition: all 0.4s ease;
      background: #11101D;
    }
    .sidebar li a:hover{
      background: #FFF;
    }
    .sidebar li a .links_name{
      color: #fff;
      font-size: 10px;
      font-weight: 400;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: 0.4s;
    }
    .sidebar.open li a .links_name{
      opacity: 1;
      pointer-events: auto;
    }
    .sidebar li a:hover .links_name,
    .sidebar li a:hover i{
      transition: all 0.5s ease;
      color: #11101D;
    }
    .sidebar li i{
      height: 50px;
      line-height: 50px;
      font-size: 18px;
      border-radius: 12px;
    }
    .sidebar li.profile{
      position: fixed;
      height: 50px;
      width: 78px;
      left: 0;
      bottom: -8px;
      padding: 10px 14px;
      background: #1d1b31;
      transition: all 0.5s ease;
      overflow: hidden;
    }
    .sidebar.open li.profile{
      width: 170px;
    }
    .sidebar li .profile-details{
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
    }
    .sidebar li img{
      height: 35px;
      width: 35px;
      object-fit: cover;
      border-radius: 6px;
      margin-right: 10px;
    }
    .sidebar li.profile .name,
    .sidebar li.profile .job{
      font-size: 10px;
      font-weight: 400;
      color: #fff;
      white-space: nowrap;
    }
    .sidebar li.profile .job{
      font-size: 8px;
    }
    .sidebar .profile #log_out{
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background: #1d1b31;
      width: 100%;
      height: 50px;
      line-height: 60px;
      border-radius: 50px;
      transition: all 0.5s ease;
    }
    .sidebar.open .profile #log_out{
      width: 50px;
      background: none;
    }
    .home-section{
      position: relative;
      background: #E4E9F7;
      min-height: 100vh;
      top: 0;
      left: 78px;
      width: calc(100% - 78px);
      transition: all 0.5s ease;
      z-index: 2;
      overflow-x: hidden;
    }
  
    .sidebar.open ~ .home-section{
      left: 170px;
      width: calc(100% - 170px);
    }
    .home-section .uew h2{
      display: inline-block;
      color: #11101d;
      font-size: 15px;
      font-weight: 500;
      margin: 18px
    }
  
    .home-section .uew p, .home-section .uew h3{
      color: #11101d;
      font-size: 10px;
      font-weight: 400;
      margin-left: 15px;
      margin-bottom: 10px;  
    }
  
    .home-section .kalender{
      display: inline-block;
      color: #11101d;
      font-size: 10px;
      font-weight: 400;
      margin-left: 15px;
      width: 300px;
    }
  
    .home-section .kalender select{
      margin-left: 10px;
      width: 100px;
      font-size: 10px;
      font-weight: 400;
      color: #11101d;
      background: #E4E9F7;
      margin-bottom: 10px;
    }
  
    .home-section .kalender select option {
      background-color: #11101d;
      color: #fff;
    }
  
    .home-section .kalender table {
      margin-top: 10px;
      border-collapse: collapse;
      width: 300px;
    }
  
    .home-section .kalender table tr th, .home-section .kalender table tr td{
      padding: 5px;
      border-bottom: 1px solid #080710;
    }
  
    .wtunterbesetzt {
      background-color: rgb(212, 72, 59);
      border-radius: 5px;
    }
  
    .wtvoll {
      background-color: rgb(84, 166, 49);
      border-radius: 5px;
    }
  
    .deindienst {
      background-color: rgb(235, 221, 68);
      border-radius: 5px;
    }
  
    #logo {
      height: 12%;
      margin-right: 15px;
    }
  
    .profile .login {
      display: flex;
      color: #fff;
      text-align: center;
      justify-content: center;
      font-size: 15px;
    }
  
    .profile .login:hover {
      color: #575757;
      background: #11101D;
    }
  
    .login_form{
      width: 300px;
      background-color: #11101D;
      position: absolute;
      transform: translate(-50%,-50%);
      top: 50%;
      left: 50%;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 40px rgba(8,7,16,0.6);
      padding: 50px 35px;
    }
    .login_form *{
      font-family: 'Poppins',sans-serif;
      color: #ffffff;
      letter-spacing: 0.5px;
      outline: none;
      border: none;
    }
    .login_form h3{
      font-size: 28px;
      font-weight: 500;
      line-height: 42px;
      text-align: center;
    }
  
    .login_form label{
      display: block;
      margin-top: 30px;
      font-size: 16px;
      font-weight: 500;
    }
    .login_form input{
      display: block;
      height: 50px;
      width: 100%;
      background-color: rgba(255,255,255,0.07);
      border-radius: 3px;
      padding: 0 10px;
      margin-top: 8px;
      font-size: 14px;
      font-weight: 300;
    }
    ::placeholder{
      color: #e5e5e5;
    }
  
    .login_form .submit{
      margin-top: 50px;
      width: 100%;
      background-color: #ffffff;
      color: #080710;
      padding: 15px 0;
      font-size: 18px;
      font-weight: 600;
      border-radius: 5px;
      cursor: pointer;
    }
  
    .kalender {
      margin: 20px;
    }
  
    .nachricht h3 {
      margin-top: 40px;
      display: inline-block;
      color: #11101d;
      font-size: 17px;
      font-weight: 500;
      margin-left: 3px
    }
  
    #rot{
      color: rgb(212, 72, 59);
    }
  
    #grün{
      color: rgb(84, 166, 49);
    }
  
    .fehler {
      background-color: #1d1b31;
      width: 100px;
      padding: 10px;
      font-size: 9px;
      margin: 20px;
      border: rgb(218, 36, 20) solid;
      border-radius: 10px;
      display: inline-block;
      right: 0;
      position: absolute;
    }
  
    .jreg {
      margin-top: 8px;
      text-align: center;
    }
  
    .jreg a {
      text-decoration: none;
    }
  
    .fehler h4 {
      color: #fff;
    }
  
    .box {
      margin-top: 30px;
    }
  
    .register-form{
      width: 300px;
      background-color: #11101D;
      position: absolute;
      transform: translate(-50%,-50%);
      top: 50%;
      left: 50%;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 40px rgba(8,7,16,0.6);
      padding: 38px 23px;
    }
    .register-form *{
      font-family: 'Poppins',sans-serif;
      color: #ffffff;
      letter-spacing: 0.5px;
      outline: none;
      border: none;
    }
    .register-form h3{
      font-size: 15px;
      font-weight: 500;
      line-height: 42px;
      text-align: center;
    }
  
    .register-form .t1 tr td label{
      display: block;
      margin-top: 15px;
      font-size: 12px;
      font-weight: 500;
    }
  
    .register-form .t1 tr td input{
      margin-right: 10px;
    }
  
    .register-form .t1 tr td input{
      width: 250px;
      display: block;
      height: 25px;
      background-color: rgba(255,255,255,0.07);
      border-radius: 3px;
      padding: 0 10px;
      margin-top: 8px;
      font-size: 14px;
      font-weight: 300;
    }
    ::placeholder{
      color: #e5e5e5;
    }
  
    .register-form .t1 tr td select{
      background-color: #11101D;
      border: #11101D 1px solid;
      font-size: 15px;
      font-weight: 300;
      padding: 2px;
      padding-right: 100px;
    }
  
    .captcha {
      margin-top: 3px;
      margin-left: 50px;
    }
  
    .register-form .submit{
      margin-top: 10px;
      width: 100%;
      background-color: #ffffff;
      color: #080710;
      padding: 10px 0;
      font-size: 10px;
      font-weight: 600;
      border-radius: 5px;
      cursor: pointer;
    }
  
    .qualifikation{
      display: block;
      height: 20px;
      border-radius: 3px;
      padding: 0 10px;
      margin-top: 8px;
      font-size: 14px;
      font-weight: 300;
    }
  
    .checkbox {
      height: 20px;
    }
  
    .edit {
      text-decoration: none;
      color: white;
      background-color: #080710;
      padding: 5px;
      border-radius: 10px;
      margin-right: 10px;
    }
  
    .edit input {
      background-color: transparent;
      color: white;
      border: none;
      font-size: 10px;
      margin-bottom: 8px;
    }

    .phone  {
      width: 100%;
    }
  
    .pb {
      background-color: transparent;
      border: none;
      font-size: 10px;
    }
  
    #profilbild::-webkit-file-upload-button  {
      background: #080710;
      border: none;
      color: #fff;
      padding: 2px;
      border-radius: 5px;
    }
  
    @media (max-width: 420px) {
      .sidebar li .tooltip{
        display: none;
      }
    }
  }
  