.component-popup-view {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1010;
}
.component-popup-view .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
}
.component-popup-view .content {
  min-height: 20%;
  max-height: 100%;
  overflow: scroll;
  background: white;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid #F4F4F4;
  border-radius: 20px 20px 0 0;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .component-popup-view .content {
    min-height: 0;
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    width: 400px;
  }
}
.component-popup-view .content::-webkit-scrollbar {
  display: none;
}

