.wrapper_mpcl {
  display: flex;
}

.fsdvlp-mpcl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.fsdvlp-mpcl-overlay.is-open {
  display: flex;
}

.fsdvlp-mpcl-modal {
  background: #fff;
  max-width: min(900px, 92vw);
  max-height: 84vh;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.fsdvlp-mpcl-close {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.fsdvlp-mpcl-body {
  padding: 20px;
  overflow: auto;
}

.fsdvlp-mpcl-title {
  margin-top: 0;
}

.fsdvlp-mpcl-entry > *:first-child {
  margin-top: 0;
}

.fsdvlp-mpcl-entry img {
  max-width: 100%;
  height: auto;
}

button.fsdvlp-mpcl-btn.btn_hover:hover {
  border-color: red;
  color: red;
}

body.fsdvlp-mpcl-locked {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .fsdvlp-mpcl-body {
    padding-top: 50px;
  }
}

.fsdvlp-mpcl-close {
    margin-right: 10px;
    border: solid 1px #000;
    border-radius: 0.2em;
    background-color: white;
}