@-webkit-keyframes sidemenuRight {
  from {
    right: -330px; }
  to {
    right: 0; } }

@keyframes sidemenuRight {
  from {
    right: -330px; }
  to {
    right: 0; } }

.sidemenu__overlay {
  background: #000;
  opacity: 0.35;
  position: fixed;
  z-index: 99;
  inset: 0px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.sidemenu__disable-scroll {
  overflow: hidden; }

.sidemenu {
  position: fixed;
  background: #FFFFFF;
  right: 0;
  top: 0;
  width: 332px;
  height: 100%;
  z-index: 100;
  -webkit-animation-name: sidemenuRight;
          animation-name: sidemenuRight;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .sidemenu a {
    color: #282746;
    letter-spacing: 0.15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #cfcfd6;
    text-align: left; }
    .sidemenu a.sidemenu__close {
      border: none;
      display: inline-block; }
