.modal {
    display: flex;
    flex-direction: row;
    position: fixed;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    padding: 12px;
    width: 85vw;
    z-index: 999;
    gap: 0.4rem;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 15px;
  }
  .modal.gallery-modal {
    background-color: transparent;
    border: none;
    color: #FFFFFF;
  }
  .modal.gallery-modal .close-btn {
    width: 43px;
    height: 43px;
    top: -28px;
    right: -20px;
    background-image: url("../icon/icon_close_w.svg");
  }
  .modal.fullsize-modal {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px;
  }
  
  .close-btn {
    top: 13px;
    right: 23px;
    position: absolute;
    width: 28px;
    height: 28px;
    background-image: url("../icon/icon_close.svg");
    background-size: cover;
  }
  
  .overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.5;
    backdrop-filter: blur(3px);
    z-index: 998;
  }
  
  .hidden {
    display: none !important;
  }
  
  @media only screen and (min-width: 1024px) {
    .modal.gallery-modal .close-btn {
      top: -28px;
      right: -20px;
    }
    .modal.fullsize-modal {
      max-width: 1232px;
      height: auto;
      border-radius: 15px;
    }
  }
  
  /*# sourceMappingURL=modal.css.map */
  