#panel_modal {
    position: absolute;
    z-index: 888;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 300ms;
    padding: 20px;
  }
  #panel_modal .container {
    border-radius: 20px;
    position: relative;
    z-index: 8;
    overflow: hidden;
  }
  #panel_modal .backdrop {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  #panel_modal.visible {
    opacity: 1;
    pointer-events: all;
  }
  #panel_modal img {
    width: 100%;
    height: auto;
  }
  #panel_modal .close {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 30px;
    width: 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
  }
  #panel_modal .close:before,
  #panel_modal .close:after {
    content: '';
    height: 3px;
    width: 20px;
    background-color: #404040;
    display: block;
    margin-left: 5px;
  }
  #panel_modal .close:before {
    transform: rotateZ(45deg);
    margin-top: 13px;
  }
  #panel_modal .close:after {
    transform: rotateZ(-45deg);
    margin-top: -3px;
    margin-left: 5px;
  }
  