

.menu-click{
        position: relative;
    cursor: pointer;
    transition: width .4s;
}

.menu-list{
    list-style: none;
    position: absolute;
    top: 40px;
    display: block;
    background: url(../images/menu-bg.png);
    background-size:100% 100%;
    background-position: top;
        width:250px;
    right: 0;
    text-align: center;
    border-radius: 5px;
    display: none;
        padding: 16px 24px 15px 16px;
        z-index: 99999;
}

.menu-list li{
        line-height: 35px;
    padding: 8px 0px;
    margin: 0 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: 1px dashed #000;
}
.menu-list li:last-child{
    border-bottom: none;
}

.menu-list li:hover:first-child{
    border-radius: 5px 5px 0 0;
}
.menu-list li:hover:last-child{
    border-radius: 0 0 5px 5px;
}
.menu-list li a{


text-decoration: none;
    color: #333;
  font-family:ElmsSans-Medium ;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 180%; 
letter-spacing: 0.75px;
}


.menu-list li:hover a{
    color: #000;
}






/* active image */
.menu-list li a.active::after {
content: "";
  
    bottom: 0;

    width: 17px;
    height: 17px;
    background-image: url(../images/reel-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
   
    position: relative;
    top: 5px;
    right: -10px;
}

#menuBtn {
    cursor: pointer;
}

.menu-list li a.active {
      font-family:ElmsSans-Bold ;
      color: #cc1127;
}

.plus-icon-menu {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* smoother easing */
}

 /* Rotate when parent has "open" class */
  .menu-click.open .plus-icon-menu {
    transform: rotate(45deg);
  }
