<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#pcg-layer {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0px;
  right: 0px;
  width: 0px;
  top:0px;
  margin-left: 100%;
  display: block;
  position:absolute;
  z-index:10000;
}

#pcg-layer.open {
  margin-left: 0px;
  width: 100%;
  transition: margin-left 0.45s ease-in 0.3s;
}

#pcglayercontainer
{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  border:0px;
}

#pcglayercontent
{
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:calc(100vh - 20px);
  border:none;
}

.pcg-handle {
  position: absolute;
  display: none;
  right: 0px;
  width: 44px;
  min-height: 248px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10001;
}


.pcg-handle.open {
  animation-name: container-animate;
  animation-duration: 1.2s;
  top: 50px !important;
  min-height: 50px;
  right: -50px;
}

@keyframes container-animate {

  0%   {
    min-height: 248px;
    top: 250px;
    right: 0px;
  }
  50% {
    top: 50px;

  }
  95% {
    right: 0px;
    top: 50px;
  }
  100% {
    top: 50px;
    right: -50px;
  }
}

.close_wrapper {
  background-color: transparent;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  height: 500px;
}

.close_tab {
  position: absolute;
  top: 50px;
  right: -900px;
  width: 900px;
  height: 50px;
  border-radius: 6px;
  box-shadow: 0 0 3px grey;
  z-index: 10005;
  display: none;
}

.open .close_tab {
  right: -840px;
  display: block;
}

.close_tab_close_button {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  margin: 10px;
  text-align: center;
  padding-top: 2px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.upper_tab {
  width: 44px;
  height: 168px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 3px grey;
}

.open .upper_tab {
  height: 50px;
}

#pcg-handle-text {
  width: 100%;
  height:100%;
  margin: 0 auto;
}

#tab_text {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100%;
  pointer-events:none;
}


.lower_tab {
  width: 44px;
  height: 80px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 3px grey;
  padding-top: 8px;
}

.open .lower_tab {
  display: none;
}

.open #pcg-handle-text{
  display: none;
}
</pre></body></html>