.leftMenu {
  display: none;
}
.leftMenu.active{
  display: block;
  height: 100vh;
  scroll-margin: 0;
  width:280px;
  left:0;
  top:0;
  background-color: #292935;
  position: fixed;
  animation: slideToRightMenu .3s ease-in-out forwards;
  z-index: 100;
}
/***** to simulate the olybet.ee menu ******/

/* .leftMenu.active{
  overflow-y: auto;
}
.leftMenu::-webkit-scrollbar {
  background: #787878;
  width: 5px;
  height: 10px;
}
.leftMenu::-webkit-scrollbar-thumb {
  background-color: #d6d6d6;   
  border-radius: 20px;       
}  */

/****************************************/
@keyframes slideToRightMenu {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.leftMenu nav {
    margin-top: 0px;
}
.iconsMenu {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  top: 20px;
  left: 15px;
  
}
.iconsMenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /*gap: 14px;*/
  position: absolute;
  margin-top: 50px;
  
}
.iconsMenu div {
  display: flex;
  align-items: center;
  /*height: 24px;*/
  width: 250px;
  color: #F9F9F9;
}
.iconsMenu div:hover{
  color: #F73535;
  background-color: #19191C;
  /*height: 4.2968vh;*/
  border-radius: 5px;
}
.iconsMenu img {
  width: 24px;
  filter: invert(1);
  background-color: transparent;
  left: 10px;
  position: relative;
}
.iconsMenu li {
  margin: 11.5px;
  font-size: 12px;
  height: 24px;
  line-height: 24px; 
  left: 11px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
} 

/*** RESPONSIVE DESIGN ***/

/* Mobiles */
@media only screen and (max-width: 320px) {
}
@media only screen and (min-width: 321px) and (max-width: 767px) {

}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {  
}

/* Laptop */
@media only screen and (min-width: 992px) and (max-width: 1365px) {
}
@media only screen and (min-width: 1366px) {

   .iconsMenu {
      top: 106px;
      
    }
}