.side-menu { grid-area: side-menu;
  background: #FFFFFF;
  width: 220px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  margin-right: 5px;
}

.slaca{
  background: linear-gradient(180deg, #FFB354 0%, #EE7A3A 100%);
  width: 220px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slaca h1{
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-size: 30px;
line-height: 35px;
color: #FFFFFF;
}

ul{
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

li{
  height: 33px;
  border-bottom: 1px solid rgb(223, 223, 223);
  display: flex;
  align-items: center;
}

li:hover{
  background-color: #FDF1EB;
  margin-left: 5px;
  transition: all .4s ease;
-webkit-transition: all .4s ease;
}

li h4{ 
  margin-left: 24px;
}

.orange-stripe{
  width: 5px;
  height: 33px;
  background: linear-gradient(180deg, #FFB455 0%, #ED7839 100%);
}

.background-li{
  background:  #FDF1EB;
}