@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body {
    background-color: var(--body-color);
    transition: var(--tran-05);
}

::selection{
    background-color: var(--primary-color);
    color: #fff;
}


.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 10px);
    width: calc(250px + 10px);
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 1;  
    margin: 5px;
    border-radius: 15px;
    -webkit-filter: drop-shadow(1px 1px 1px rgba(134, 134, 134, 0.4));
    filter: drop-shadow(1px 1px 1px rgba(134, 134, 134, 0.4));
}
.sidebar.close{
    width: 88px;
}
.sidebar.show{
    width: 8px;
}
.sidebar.show svg{
    display: none;
}

.sidebar li{
    height: 50px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
}

.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.sidebar .grade{
    font-size: 18px;
}

.sidebar .text,
.sidebar .icon{
    color: var(--text-color);
    transition: var(--tran-03);
}

.sidebar .text{
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}
.sidebar.close .text{
    opacity: 0;
}

.sidebar header{
    position: relative;
    margin-top: 10px;
}

.sidebar header .image-text{
    display: flex;
    align-items: center;
}
.sidebar header .logo-text{
    display: flex;
    flex-direction: column;
}
header .image-text .name {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

header .image-text .profession{
    font-size: 16px;
    margin-top: -2px;
    display: block;
}

.sidebar header .image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar header .image svg{
    height: 25px;
    width: 40px;
    border-radius: 6px;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
}

.sidebar header .toggle{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
}

.sidebar.close .toggle{
    transform: translateY(-50%) rotate(0deg);
}
.sidebar.show .toggle{
    transform: translateY(-50%) rotate(180deg);
}

.sidebar .menu{
    margin-top: 18vh;
}

.sidebar li a{
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--tran-03);
}

.sidebar li .hover{
    background-color: var(--primary-color);
}
.sidebar li .hover .icon,
.sidebar li .hover .text{
    color: var(--sidebar-color);
}


.sidebar .menu-bar{
    height: calc(100% - 65px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar{
    display: none;
}

.home{
    position: absolute;
    top: 0;
    left: 250px;
    height: 100vh;
    width: calc(100% - 250px);
    background-color: var(--body-color);
    transition: var(--tran-05);
}

.sidebar.close ~ .home{
    left: 88px;
    height: 100vh;
    width: calc(100% - 88px);
}
.sidebar.show ~ .home{
    left: 28px;
    height: 100vh;
    width: calc(100% - 28px);
}
.cards {
    margin-left: 10px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.cards .card {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    margin-left: 30px;
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: white;
    height: 150px;
    width: 150px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.cards .card h2 {
    margin-left: 18px;
    margin-bottom: 18px;
    border-radius: 15px;
    margin-right: 5px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: var(--widget-text);
    background-color: var(--widget-color);
    box-shadow: 4px 3px 8px 1px #6d6d6d33;
  	-webkit-box-shadow: 4px 3px 8px 1px #6d6d6d33;
}

.footer {
    width: 100%;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    animation-name: fadeIn;
    animation-duration: 1.5s;
}

.footer .footer-text {
    color: var(--text-color);
    padding-bottom: 20px;
}
.parametre {
    margin-left: 45px;
    margin-bottom: 100px;
    animation-name: fadeIn;
    animation-duration: 1.5s;
}
.parametre h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--widget-text);
 }
 .parametre p {
    font-size: 15px;
    font-weight: 500;
    color: var(--widget-text);
 }
 .info {
    max-width: 72vw;
    background-color: var(--widget-color);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 4px 3px 8px 1px #96969633;
    -webkit-box-shadow: 4px 3px 8px 1px #96969633;
 }

 .parametre input{
     width: 500px;
     border-radius: 20px;
     padding: 5px;
     border: 0;
     box-shadow: 4px 3px 8px 1px #96969633;
       -webkit-box-shadow: 4px 3px 8px 1px #96969633;
     margin-right: 5px
 }
 .parametre select{
     width: 300px;
     border-radius: 20px;
     padding: 5px;
     border: 0;
     box-shadow: 4px 3px 8px 1px #96969633;
       -webkit-box-shadow: 4px 3px 8px 1px #96969633;
 }

.iframe {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#bgurl::placeholder {
    text-align: center;
}

button {
    border: 0;
    color: var(--widget-text);
    background-color: var(--widget-color);
    padding: 5px;
    border-radius: 10px;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
}
#previewbg {
    margin-top: 10px;
    display: flex;
    height: 100px;
    width: 400px;
    border-radius: 25px;
    background-color: var(--widget-color);
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
    background-color: #121111;
    color: white;
    object-fit: cover;
}

  ::placeholder{
    color: #fff;
    background-color: transparent;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
    text-align: center;
  }

   #searchInput {
    background-color: rgba(255, 255, 255, 0);
    font-family: inherit;
    border: 0;
    outline: 0;
    font-size: 15px;
     color: #fff;
     width: 500px;
     text-align: center;
   }
   .searchapp {
    margin-left: 10vw;
    display: flex;
    align-items: center;
    padding: 0px 17px;
    height: 40px;
    width: 600px;
    border-radius: 20px;
    background-color: #00000042;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
    backdrop-filter: blur(5px);
    animation-name: fadeIn;
    animation-duration: 1.5s;
    
    -webkit-backdrop-filter: blur(5px);
  }
  .searchapp i {
    color: #fff;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
  }
  .searchsection {
    margin-top: 50px;
    width: 90%;
    animation-name: fadeIn;
    animation-duration: 1.5s;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 60px;
  }
.banned {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    
}
.banned h1 {
    font-size: 50px;
    font-weight: 600;
    color: var(--text-color);
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
}
.banned h5 {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
}
.banned i {
    margin-top: 10px;
    font-size: 50px;
    font-weight: 500;
    color: var(--text-color);
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
}

  @media screen and (max-width: 800px) {
    .searchbar{
        display: none;
    }
    .searchapp {
        display: none;
    }
    #banniere{
        display: none;
    }
    .parametre select{
        width: 80%;
        border-radius: 20px;
        padding: 5px;
        border: 0;
        box-shadow: 4px 3px 8px 1px #96969633;
          -webkit-box-shadow: 4px 3px 8px 1px #96969633;
        margin-right: 5px
    }
    
  }



  .home .text{
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 30px;
    animation-name: fadeIn;
    animation-duration: 1.5s;
}