.pc-modal:not(.pc-active) {
  display: none;
}
.pc-modal .pc-back-layer,
.pc-modal .pc-container {
  position: fixed;
}
.pc-modal .pc-back-layer {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}
.pc-modal .pc-button-close-modal {
  position: absolute;
  border: 0px !important;
  background: transparent !important;
  outline: 0 !important;
  padding: 0px !important;
}
.pc-modal .pc-container {
  max-height: 90vh;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 101;
}
.pc-modal .pc-container .pc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.pc-modal .pc-container .pc-content.pc-v-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pc-modal .pc-container .pc-content.pc-v-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pc-modal .pc-container .pc-content.pc-v-bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (min-width: 1025px) {
  .pc-modal .pc-container .pc-button-close-modal {
    top: -30px;
    right: -30px;
  }
  .pc-modal .pc-container .pc-button-close-modal svg {
    width: 26px;
    height: 26px;
  }
}
@media only screen and (max-width: 1024px) {
  .pc-modal .pc-container .pc-button-close-modal {
    top: -35px;
    right: 0px;
  }
  .pc-modal .pc-container .pc-button-close-modal svg {
    width: 24px;
    height: 24px;
  }
}