.fiep-modal-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.fiep-modal {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  min-width: 300px;
  min-height: 200px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  transform: scale(0);
}

.fiep-modal-header {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  z-index: 1;
}

.fiep-modal-close {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
}

.fiep-modal-close svg {
  width: auto;
  height: 30px;
  margin-top: 2px;
}

.fiep-modal-close:hover svg * {
  stroke: #000;
  stroke-width: 1px;
}

.fiep-modal-content {
  display: block;
  position: relative;
  padding: 0 10px 10px 10px;
  width: calc(100% - 20px);
  box-sizing: content-box;
}

.fiep-modal-content a {
  display: block;
  position: relative;
  width: 100%;
}

.fiep-modal-content img {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}