.bold-my-labels label{font-weight:bold;}


.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}

.my-card:hover{
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }
  
  
  :root {
    font-size: 16px;
    font-family: 'Open Sans';
    --text-primary: #b6b6b6;
    --text-secondary: #ececec;
    --bg-primary: #23232e;
    --bg-secondary: #141418;
    --transition-speed: 600ms;
  }
  
  body {
    /* color: black; */
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  body::-webkit-scrollbar {
    width: 0.70rem;
  }
  
  body::-webkit-scrollbar-track {
    background: #4f8307;
  }
  
  body::-webkit-scrollbar-thumb {
    background: #f5f7f4;
  }
  
  main {
    margin-top: 2.5rem;
    margin-left: 5rem;
    padding: 1rem;
    display : none;
  }
  
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }

  .sidebar {
    position: fixed;
    z-index: 1;
    background-color: #4f8307;
    transition: width 600ms ease;
   
    /* overflow: scroll; */
  }

  
  .sidebar-nav {
    list-style: none;
    
    
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  
  .submenu{ 
		display: none;
    position: relative;
    left: 10px;
    width: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 999999;
	}


  hr {
    display: block;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    
    border-style: inset;
    border-width: 1px;
    color:white;
  }
	
  .nav-item {
    width: 100%;
    margin-left: -2rem;
   
  }
  
  /* .nav-item:last-child {
    margin-top: auto;
  } */
  
  .nav-link {
    display: flex;
    align-items: center;
    height: 3rem;
    color: #e4e4e4;
    text-decoration: none;
    /* filter: grayscale(100%) opacity(0.7); */
    transition: var(--transition-speed);
  }
  .submenu-link {
    display: flex;
    align-items: center;
    height: 2rem;
    color: #e4e4e4;

   
    /* filter: grayscale(100%) opacity(0.7); */
    /* transition: var(--transition-speed); */
  }
  
  .nav-link:hover {
    filter: grayscale(0%) opacity(1);
    background: var(--bg-secondary);
    color: var(--text-secondary);
  }
  .submenu-link:hover {
    filter: grayscale(0%) opacity(1);
    
    /* color: var(--text-secondary); */
  }
  
  .link-text {
    display: none;
    width: max-content;
    margin-left: 0.1rem;
  }
  
  .nav-link svg {
    width: 2rem;
    min-width: 2rem;
    margin: 0 1.5rem;
  }
  .submenu-link svg {
    width: 1.5rem;
    min-width: 1rem;
    margin: 0 1.5rem;
  }
  
  .fa-primary {
    color: #0a0a0a;
  }
  
  .fa-secondary {
    color: #eff5f5;
  }
  
  .fa-primary,
  .fa-secondary {
    transition: var(--transition-speed);
  }
  
  .logo {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-secondary);
     background: #86C232;
    /* var(--bg-secondary); */ 
    font-size: 1.5rem;
    letter-spacing: 0.3ch;
    width: 100%;
  }
  
  .logo svg {
    transform: rotate(0deg);
    transition: var(--transition-speed);
  }
  
  .logo-text
  {
    display: inline;
    position: absolute;
    left: -999px;
    transition: var(--transition-speed);
  }
  
  .sidebar:hover .logo svg {
    transform: rotate(-180deg);
  }

    /* Style the sidenav links and the dropdown button */
    #dropdeown_icon {
      padding: 6px 8px 6px 16px;
      text-decoration: none;
      font-size: 20px;
      display: block;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      outline: none;
    }
    
  .submenu li a {
    color: white;
    padding: 10px 20px 10px 20px;
   
  }
  /* unvisited link */
  .submenu li a:link {
  color: white;
}


/* mouse over link */
.submenu li a:hover {
  color: rgb(3, 231, 220);
}

/* selected link */
.submenu li a:active {
  color: blue;
}
  
  /* Add an active class to the active dropdown button */
  .active {
    /* background-color: rgb(250, 250, 250); */
    color: white;
  }
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 1.5rem;
  
  }
  
  


  
  /* Small screens */
  @media only screen and (max-width: 600px) {
    .sidebar {
      bottom: 0;
      width: 100vw;
      height: 4rem;
      overflow-x: auto;
       z-index: 9999 !important;
    }
   
    .logo {
      display: none;
      
    }
  
    .sidebar-nav {
      flex-direction: row;
      width: 10rem;
      
     
    }
  
    .nav-link {
      justify-content: center;
      width: 4rem;
      min-width: 2rem;
      margin: 1rem 1rem;

    }
    .submenu-link {
      justify-content: center;
  
    }
  
    main {
      margin: 0;
    }

    #submenu_icon{
      display :none;
    }
    
    .submenu {
      position: fixed; 
      left: 30%;
      bottom: 60px;
      display: none;
      background-color:#61892F ;
      
      border-radius: 10px;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
     
    z-index: 99999 !important; /* force above everything */
    display: block; /* or toggle with JS */
      
  }



  }
  
  /* Large screens */
  @media only screen and (min-width: 600px) {

    .submenu {
      position: relative;
      display: none;
      margin-left : 10px;
      background-color:#61892F ;
     
      border-radius: 10px;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
      z-index: 999;
      
    }
    .sidebar:hover .submenu {
    position: relative;
    display: none;
    margin-left : 10px;
    background-color:#61892F ;
  
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    z-index: 999;
    
  }


    .sidebar {
      top: 0vh;
      width: 6rem;
      height: 100vh;
      overflow-y: auto;
      /* scrollbar-color: red yellow; */
    }
    ::-webkit-scrollbar{width:6px;border-left:1px solid #E6ECF8;}
    ::-webkit-scrollbar-thumb{background-color:#4F8307;}

    .sidebar-nav{
      margin-top: 3rem;
    }
  
    .sidebar:hover {
      width: 12rem;
    }
  
    .sidebar:hover .link-text {
      display: inline;
      margin-left: 0;
    }
  
    .sidebar:hover .logo svg
    {
      margin-left: 6rem;
    }
  
    .sidebar:hover .logo-text
    {
      left: 2rem;
    }
    .sidebar:hover .fa-caret-down {
      position:relative;
      margin-left:1.5rem;
    
    }
    
  }
  
  .dark {
    --text-primary: #b6b6b6;
    --text-secondary: #fffafa;
    --bg-primary: #23232e;
    --bg-secondary: #4F8307;
  }
  
  .light {
    --text-primary: #1f1f1f;
    --text-secondary: #000000;
    --bg-primary: #ffffff;
    --bg-secondary: #e4e4e4;
  }
  
  .solar {
    --text-primary: #576e75;
    --text-secondary: #35535c;
    --bg-primary: #fdf6e3;
    --bg-secondary: #f5e5b8;
  }
  
  .theme-icon {
    display: none;
  }
  
  .dark #darkIcon {
    display: block;
  }
  
  .light #lightIcon {
    display: block;
  }
  
  .solar #solarIcon {
    display: block;
  }
  
  
  /* -----
  SVG Icons - svgicons.sparkk.fr
  ----- */
  

  
  .wrapper{
    display: inline-flex;
    
    
    background: #fff;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
  }
  .wrapper .option{
    background: #fff;
    height: 50%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    padding: 0px 10px ;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
  }
  .wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
  }
  .wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #4F8307;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  input[type="radio"]{
    display: none;
  }
  #option-1:checked:checked ~ .option-1,
  #option-2:checked:checked ~ .option-2,
  #option-3:checked:checked ~ .option-3,
  #option-4:checked:checked ~ .option-4{
    border-color: #4F8307;
    background: #4F8307;
  }
  #option-1:checked:checked ~ .option-1 .dot,
  #option-2:checked:checked ~ .option-2 .dot,
  #option-3:checked:checked ~ .option-3 .dot,
  #option-4:checked:checked ~ .option-4 .dot{
    background: #fff;
  }
  #option-1:checked:checked ~ .option-1 .dot::before,
  #option-2:checked:checked ~ .option-2 .dot::before,
  #option-3:checked:checked ~ .option-3 .dot::before,
  #option-4:checked:checked ~ .option-4 .dot::before{
    opacity: 1;
    transform: scale(1);
  }
  .wrapper .option span{
    font-size: 16px;
    color: #4F8307;
  }
  #option-1:checked:checked ~ .option-1 span,
  #option-2:checked:checked ~ .option-2 span,
  #option-3:checked:checked ~ .option-3 span,
  #option-4:checked:checked ~ .option-4 span{
    color: #fff;
  }
  @media only screen and (max-width: 700px) {
    .wrapper {
      height: 200px;
      flex-direction: column;
      
    }
  }
  