.background-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.background-modal .wrapper-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  border: 2px solid #F7EC45;
  width: 70%;
  max-height: 90%;
  border-radius: 1.5rem;
}
.background-modal .wrapper-modal .wrapper-title {
  width: 100%;
  position: relative;
  align-items: center;
}
.background-modal .wrapper-modal .wrapper-title .title {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}
.background-modal .wrapper-modal .wrapper-title .close-button {
  position: absolute;
  top: 0;
  right: 0;
  margin: 30px 30px 0 0;
  cursor: pointer;
}
.background-modal .wrapper-modal .wrapper-title .close-button .icon-close {
  height: 1.5rem;
}
.background-modal .wrapper-modal .wrapper-info {
  width: 90%;
  padding-right: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.background-modal .wrapper-modal .wrapper-info .image-receipt {
  height: 600px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
