.c-modal {
  height: 100vh;
  display: none;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  z-index: 999;
}
.c-modal.is-open {
  display: block;
  pointer-events: auto;
}
.c-modal header {
  padding-right: 40px;
}

.c-modal__overlay {
  -webkit-box-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
          justify-content: center;
}

.c-modal__wrapper {
  background-color: var(--cor-white);
  -webkit-box-shadow: 4px 4px 40px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 40px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  margin-left: 28px;
  margin-right: 28px;
  max-height: 80vh;
  max-width: 660px;
  padding: 28px;
  position: relative;
}
@media (min-width: 48em) {
  .c-modal__wrapper {
    padding: 40px;
  }
}

.c-modal__content {
  max-height: 50vh;
  overflow-y: auto;
}

.c-modal__heading {
  color: var(--cor-black);
  font-family: "Merriweather", serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 48em) {
  .c-modal__heading {
    font-size: 1.1111111111rem;
  }
}

.c-modal__close {
  --cor-i-close: url(../../../images/icons/close.svg);
  -webkit-box-align: stretch;
          align-items: stretch;
  background-color: transparent;
  height: 22px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  content: "";
  display: -webkit-box;
  display: flex;
  width: 22px;
  top: 20px;
  right: 20px;
  -webkit-box-pack: stretch;
          justify-content: stretch;
  padding: 0;
  position: absolute;
}
.c-modal__close::after {
  background-color: var(--cor-green-forest);
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-mask: var(--cor-i-close) no-repeat center/22px;
          mask: var(--cor-i-close) no-repeat center/22px;
  position: absolute;
}
.c-modal__close:focus {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 2px solid var(--cor-green-forest);
  outline-offset: 2px;
}

.c-modal__content {
  padding: 12px 2px 0;
}