@font-face {
  font-family: 'RobotoSlab';
  src: url('/static/font/RobotoSlab-Light.ttf') format('truetype');
}
* {
margin: 0; padding: 0; border: 0; box-sizing: border-box;
font-weight: 100;
scrollbar-color: #4CAF50 #f1f1f1;
scrollbar-width: thin;
box-sizing: border-box;
}

html{
  margin: 0;
  padding: 0;  
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
  /* border: solid 4px green; */
}

body { 
  /* border: solid 5px rgb(0, 44, 240); */
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: RobotoSlab, sans-serif;
  font-size: 16px;
  background-color: #ffffff21;
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
  position: relative; 
  width: 100%;
}

.navigationTop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12%;
  background-color: #558b2fda;
  height: 50px;
  position: fixed;
  top: 0; left: 0;
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 0;
  width: 100%;
  z-index: 100;
  /* box-shadow: 0 4px 6px 0 rgba(142, 230, 107, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19); */
  /* border: solid 5px rgb(247, 0, 255); */
  
}



.navigationBottom{
  display: none;
 
 }

 .bottomNavBtn{
  border-left: solid 1px white;
  color: white;
  text-align: center;
  padding-block: 10%;
  border-right: solid 1px white;
  box-sizing: border-box;
 }
 .bottomNavBtn a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  
  color: white;

 }


.navigationSide {
  width: 300px; height: 100%;
  position: fixed;
  left: 0; margin-top: 50px;
  background-color: rgba(253, 253, 253, 1);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
  padding-bottom: 20px;
  z-index: 10;
  transition: left 0.3s ease;
}

.countWindow{
  font-weight: bold;
  position: relative;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.88);
  /* margin: 25px; */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2) inset, 0 2px 8px 0 rgba(0, 0, 0, 0.19) inset;
  /* box-shadow: 2px 2px 2px rgb(81, 81, 82) inset; */
}

/* .shadowHighlightLeft::after{
  content: '';
  position: absolute;
  top: 0px; 
  left: 4px; 
  bottom: 5px;
  border: 1px solid rgba(255, 0, 0, 0.8);
  box-shadow: 0 5px 10px rgba(255, 0, 0, 0.8) ; 
  pointer-events: none; 
  z-index: 999; 
  
}
.shadowHighlightRight::after{
  content: '';
  position: absolute;
  top: 5px;
  right: 4px; 
  bottom: 0px;
  border: 1px solid rgba(255, 0, 0, 0.8);
  box-shadow: 0 5px 10px rgba(255, 0, 0, 0.8) ; 
  pointer-events: none; 
  z-index: 999;
} */


#leftWindowarrow {
  position: absolute;
  left: 0;
  top: 40%;
  cursor: default;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2) , 0 2px 8px 0 rgba(0, 0, 0, 0.19) ;
  background-color: rgba(253, 253, 253, 1);
  transition:  box-shadow 0.4s ease, background-color 0.2s ease;
  font-family: sans-serif;
  
}
#rightWindowarrow {
  position: absolute;
  right: 0;
  top: 40%;
  cursor: default;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2) , 0 4px 8px 0 rgba(0, 0, 0, 0.19) ;
  font-family: sans-serif;
  background-color: rgba(253, 253, 253, 1);
  transition:  box-shadow 0.4s ease, background-color 0.2s ease;
}
#rightWindowarrow:hover , #leftWindowarrow:hover {
  box-shadow: -1px 0 12px 0 rgba(0, 0, 0, 0.4)
}
.end_highlight #leftWindowarrow:hover, .end_highlight #rightWindowarrow:hover {
  box-shadow: -1px 0 15px 0 rgba(255, 0, 0, 0.9);
  background-color: rgba(255, 0, 0, 0.2);
}



.menuWinLoader{
  position: absolute;
  top: 25%; left: 30%;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #e6ee9c;
  border-left: 5px solid #e6ee9c;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.menuListBox{
  height: 70%;
  padding: 20px;
  align-items: center;
  border-top: solid 1px #e6ee9c;
  overflow-y: auto;
}
.menuHeads{
  margin-block: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  height: auto;
 
}
.menuItems{
  /* border: solid 1px red; */
  font-size: 1rem;
  margin-left: 10px;
  overflow: hidden;
  height: 0px;
  transition: height 0.2s ease
}

.menuItems > li {
  margin-block: 10px;
  cursor: pointer;
}
a {
  color: black;
  text-decoration: none;
}

#mobile_menuIcon{
 visibility: hidden;
 cursor: pointer;
}
.menuIcon{
 
  width: 25px;
  height: 25px;
}


/* <<<<<<<nav and sid bar <<<<<<<  >>>>>>>>>navBar content >>>>>>>>>>>>>>> */


.navLogo{
  color: white;
  font-size: 2em;
}



/* #mobile_menuIcon{
 
} */
.navPages{
  display: flex;
  justify-content: flex-end;
  align-items: center;

}
.navPages > a {
  color: white;
  font-size: 1rem;
  margin-inline: 10px;
  
}
#sessionUserName{
 color: black;
 background-color: white;
 padding: 5px;
 border-radius: 20px;
 font-size: 0.9rem;
}


::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #e6ee9c; /* Color of the scrollbar thumb */
  border-radius: 6px; /* Rounded corners */
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the scrollbar track */
}
#loginContent{
    margin-left: 300px;
    margin-top: 0px;
    position: relative;
    width: 99%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: solid 1px blue; */
}

.loginWindow{
  border: solid #e6ee9c;
  margin-top: 150px;
  padding: 2ch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 350px;
  
}
.loginField > input {
font-size: 1.8ch;
margin-block: 2px;
padding: 8px;
font-weight: 100;
width: 100%;
transition: box-shadow 0.3s ease;
outline: none;
border: none;
border-bottom: solid 1px black;
}

.loginField > input:hover {
  box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.4) ;

}

.loginField {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-block: 20px;
  position: relative;
  width: 90%;
  font-weight: 100;
  }
  .loginField > label{
    font-size: 0.8em;
    position: absolute;
    pointer-events: none;
    transition: 0.3s ease all;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
  }
  
#loginBtn{
display: inline-block;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
color: white;
cursor: pointer;
border: 1px solid #e6ee9c;
background-color: #558b2fda;
border-radius: 5px;
position: relative;
transition: transform 0.2s, box-shadow 0.2s;
}
#loginBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); 
}

#progressBar{
  visibility: hidden;
  width: 80%; height: 8px;
  background-color: #e6ee9c;
  margin-bottom: 10px;
  margin-top: 15px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pregressLoader{
  width: 100%; height: 100%;
  background-color: #81d884;
  border-radius: 5px;
  animation: moveLeftRight 1s linear infinite;
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
#forgotPasword{
font-size: 0.8em;
color: blue;
text-decoration: underline;
transform: translateX(115%);
}
#loginPwd{
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    /* padding-left: 5px;
    border-left: solid 1px black; */
}

/*======================== radio styling ===============*/
.radioContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radioContainer.pin_radio{
  background-color: white;
  border-radius: 10px;
  padding-left: 25px;
  padding-right: 8px;
  
  white-space: nowrap; 
  display: inline-block;
  min-width: max-content; 
  
}

.radioContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eaeecc;
  border: solid 3px #e6ee9c;
  border-radius: 50%;
}
.radioContainer:hover input ~ .checkmark {
  background-color: #ecf1b7;
}
.radioContainer input:checked ~ .checkmark {
  background-color: #81d884;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radioContainer input:checked ~ .checkmark:after {
  display: block;
}


/* ===========================media querries =================================*/

@media (max-width: 920px){
  #mobile_menuIcon{
  visibility: visible;
   
}
.navPages{
  display: none;

}
.navigationTop {
  justify-content: space-between;
  padding-inline: 30px;
  min-width: 350px; min-height: 50px;
}

}


@media (max-width: 800px){
  .navigationSide {
    left: -300px;
    overflow: hidden;
  }
  #allContent{
    margin-left: 0px;
  }
 
 .navigationBottom{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  position: fixed;
  bottom: 0; left: 0;
  background-color: #558b2f;
  width: 100%;
  height: 70px;
  z-index: 10;

 }

.showSideBar{
  left: 0;
}

.loginField > input {
  font-weight: 200;

  }

}
