@media screen {
  .hy-drawer-scrim {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(0);
    -webkit-tap-highlight-color: transparent;
  }

  .hy-drawer-content {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 30;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(0);
    width: 300px;
    background: #e8e8e8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    contain: strict;
    -webkit-overflow-scrolling: touch;
  }

  .hy-drawer-content.hy-drawer-left {
    left: -300px;
  }

  .hy-drawer-content.hy-drawer-right {
    right: -300px;
  }

  .hy-drawer-content.hy-drawer-left.hy-drawer-opened {
    left: 0 !important;
    transform: translateX(0) !important;
  }

  .hy-drawer-content.hy-drawer-right.hy-drawer-opened {
    right: 0 !important;
    transform: translateX(0) !important;
  }

  .hy-drawer-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
  }

  .hy-drawer-grabbing {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
  }
}

@media print {
  .hy-drawer-scrim {
    display: none !important;
  }

  .hy-drawer-content {
    transform: none !important;
  }
}
