:root {
  --dark-body: #4d4c5a;
  --dark-main: #141529;
  --dark-second: #79788c;
  --dark-hover: #323048;
  --dark-text: #f8fbff;

  --light-body: #f3f8fe;
  --light-main: #fdfdfd;
  --light-second: #c3c2c8;
  --light-hover: #edf0f5;
  --light-text: #151426;

  --blue: #0000ff;
  --white: #fff;

  --shadow: rgba(100,100,111,0.2) 0px 7px 29px 0px;

  --font-family: ;

}



html, body {
  
  
  /* place-items: center; */
  font-family: var(--font-family);
 

}

.indexImg{
  height: 100px;
  width: 100px;
}

button{
  cursor: pointer;
}

/*Header vir Stocklist*********************************************************/

.headingdescription{
    align-items: center;
   }
 
   .header {
     display: flex;
     justify-content: space-between;
     position: fixed;
     align-items: center;
     height: 100px;
     top:0px;
     left:0px;
     background-color: #e7ded9;
     max-height: 100px;
     width: 100%;
     z-index: 1;
     text-align: center;
     font-family: Arial,
     Helvetica,
     sans-serif;
     font-weight: bold;
     color: rgba(40, 37, 35, 0.89);
 
     
   }
   
   .header h4 {
    color: rgba(40, 37, 35, 0.89);
     
     text-align: center;
     max-height: 100px;
     max-width: 100%;
    
   }
   .navbuttons{
    
    display: grid;
    font-size: small;
    
   }
   .navbtn {
    color: rgba(226, 205, 205, 0.959);
    background-color: rgb(135, 127, 127);
     float: right;
     margin-right: 15px;
     text-align: center;
     
     border-style: none;
     border-radius: 10px;
     padding: 10px;
     box-shadow: inset -3px -3px 5px #ededed, inset 5px 5px 8px #7e7979;
     cursor: pointer;
     display: flex;
     transition: 2s;
   }
   .header a {
    color: rgba(40, 37, 35, 0.89);
     float: right;
     margin-right: 15px;
     text-align: center;
     border-radius: 10px;
    
     display: flex;
     transition: 2s;
   }
   
   .header a:hover{
     color: rgb(218, 117, 117);
     background-color: lightgray;
     box-shadow: var(--shadow-2);
     
   } 
   
   .header img, .container-header img {
     border-radius: 10px;
      margin-left:  15px;
     box-shadow: 3px 3px 7px rgb(250, 249, 249),-3px -3px 7px rgb(82, 79, 79);
     vertical-align: middle;
     float: left;
     max-height: 80px;
   }

   .searchbar {
    background-color: darkgray;
    padding: 5px;
    text-align: center;
    overflow: hidden;
    max-width: 99%;
    left: 0px;
    border-radius: 10px;
    position: relative;
    top: 100px;
    width:100%;
    position: fixed;
    
  }
  .IndexList{
    width: max-content;
    display: flex;
    flex-direction: column;
    padding: 5px;
  }
  .IndexList button, .IndexList a {

    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: rgba(226, 205, 205, 0.959);
    background-color: rgb(135, 127, 127);
    font-size: small;
    border-radius: 5%;
    margin: 5px;
}
@media screen and (min-width: 540px){

  
   
  body {
  place-items: center;
      
  }
  .navbuttons{
    font-size: x-small;
  }

}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-light);
}
.loader{
  
  display: grid;
  z-index: 1;
  flex-direction: column;
  top: 50px;
  padding: 50px;
  margin: auto;
  
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.loader img{
  position: relative;
  
  margin: auto;
  height: 80px;
  padding: 20px;
  text-align: center;
  align-items: center;
 animation: rotate 3s infinite;
}

@keyframes rotate {
  from{transform: rotate(0deg);}
  to {transform: rotate(359deg);}
}