@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 {
    min-height: 100vh;
    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 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 .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 .menu{
    margin-top:  18vh;
}
.sidebar .grade{
  font-size: 18px;
}

.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);

}

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

.sidebar.close ~ .home{
  left: 88px;
  height: 100vh;
  width: calc(100% - 88px);
}
.widget{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.widget1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 30px;
    height: 200px;
    width: 830px;
    border-radius: 25px;
    background-color: var(--widget-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
      animation-name: fadeIn;
      animation-duration: 1.5s;

}
@media screen and (max-width: 800px) {
  .widget1 {
    width: 600px;
  }
}

.widget2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 30px;
    height: 200px;
    width: 400px;
    border-radius: 25px;
    background-color: var(--widget-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
      animation-name: fadeIn;
      animation-duration: 1.5s;

}
.widget1 h5 {
  margin-top: 50px;
  padding-bottom: 5px;
  font-size: 23px;
  font-weight: 500;
  color: white;
  filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
}

 .activite .text5 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 25px;
    font-size: 23px;
    color: var(--widget-text);
    font-weight: 500;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
 }



 .username{
    margin-left: 10px;
    margin-right: 10px;
 }
 .datetime .timetext {
  
    justify-content: center;
    display: flex;
    color: white;
    font-size: 30px;
    font-weight: 700;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
 }
 .datetime i {
    padding-top: 7px;
 }


 .datetime .datetext {
  
    padding-left: 25px;
    padding-top: 25px;
    color: white;
    font-size: 20px;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
 }
 .activite {
    margin-left: 30px;
    margin-bottom: 30px;
    height: 200px;
    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;
      animation-name: fadeIn;
      animation-duration: 1.5s;
}


.activite .activity a{
    margin-left: 35px;
    display: flex;
    align-items: center;
}
.activite .activity .appname{
    margin-left: 25px;
    font-size: 20px;
    font-weight: 500;
    color: var(--widget-text);
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));

}

.activite .activity .imgcont {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.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;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  border-radius: 15px;
}


.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
  transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
.fa-magnifying-glass {
    color: var(--text-color);
  }
  
  .flex-center {
    display: flex;
    justify-content: center;
  }
  
  .header-center {
    align-items: center;
    flex-direction: column;
    margin-top: 10%;
  }
  
  #uv-error {
    color: #ff6666 !important;
    color: rgb(0, 0, 0);
  }
  
  #uv-error-code {
    font-size: 12px;
    color: #000000;
    font-family: "Courier New", Courier, monospace;
    white-space: pre-line;
  }
  
  .desc{
    width: 600px;
    }
  
    
  .searchbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 17px;
    height: 45px;
    margin-top: 20px;
    width: 500px;
    margin-bottom: 30px;
    border-radius: 20px;
    background-color: #00000042;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  ::placeholder{
    color: #fff;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
    text-align: center;
  }
  .searchbar i {
    color: #fff;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.4));
  }
  
  #uv-address {
   background-color: rgba(255, 255, 255, 0);
   font-family: inherit;
   border: 0;
   outline: 0;
   font-size: 15px;
    color: #fff;
    width: 400px;
    text-align: center;
  }
  .theme-switch {
    display: inline-block;
    height: 30px;
    position: relative;
    width: 52px;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
  }
  
  .theme-switch input {
    display:none;
  }
  
  .slider {
    background-color: var(--primary-color-light);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  
  .slider i {
    color: var(--box-bg);
  }
  .slider i.globe {
    margin-left: 7px;
    color: var(--text-color);
  }
  .slider i.mask {
    margin-right: 6px;
    color: var(--text-color);
  }
  
  .slider:before {
    background-color: var(--body-color);
    bottom: 4px;
    content: "";
    height: 22px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 22px;
    border-radius: 15px;
  }
  
  input:checked + .slider {
    background-color: var(--primary-color-light);
  }
  
  input:checked + .slider:before {
    transform: translateX(23px);
  }
  .mode {
    display: flex;
    align-items: center;
  }
  .userchange{
    background-color:var(--widget-color);
    position: absolute;
    right: 0;
    margin-top: 30px;
    margin-right: 20px;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
    padding: 5px 20px;
    border-radius: 10px;
  }
  .top {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .usertext {
    
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--widget-text);
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
  }

.bottombar {
  display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 30px;
    height: 140px;
    width: 830px;
    border-radius: 25px;
    background-color: var(--widget-color);
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
      animation-name: fadeIn;
      animation-duration: 1.5s;
}
.bottombar img {
  height: 100px;
 
}
.homecard {
  display: flex;
  justify-content: center;
  height: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 20px;
  margin-left: 7px;
  margin-right: 7px;
  box-shadow: 4px 3px 8px 1px #96969633;
  -webkit-box-shadow: 4px 3px 8px 1px #96969633;
}
@media screen and (max-width: 820px) {

  .searchbar{
      display: none;
  }
  
  .widget1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 30px;
    height: 200px;
    width: 400px;
    border-radius: 25px;
    background-color: var(--widget-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
      animation-name: fadeIn;
      animation-duration: 1.5s ;

  }
  .widget1 h5 {
    text-align: center;
    font-size: 23px;
    font-weight: 500;
    color: white;
    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
  }
}
@media screen and (max-width: 900px) {

  .bottombar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 30px;
   height: auto;
    width: 830px;
    margin-right: 30px;
    border-radius: 25px;
    background-color: var(--widget-color);
    box-shadow: 4px 3px 8px 1px #96969633;
  	-webkit-box-shadow: 4px 3px 8px 1px #96969633;
      animation-name: fadeIn;
      animation-duration: 1.5s;
      flex-wrap: wrap;
  }
  .homecard {
    margin: 7px;
  }

}
@media screen and (max-width: 400px) {
  .appname {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sidebar header .toggle{
    display: none;
}
}
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

