  .modal.open-overlay::before {
  content: '';
  display: block;
  background-color: #535353;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  overflow: hidden;
  position: fixed;
  visibility: visible;
  z-index: 40; }

.modal .modal__content-wrapper {
  visibility: hidden;
  background-color: #fff;
  border: 4px solid #7dd69d;
  border-radius: 10px;
  margin: 0 auto;
  max-height: 70%;
  height: 100%;
  padding: 20px;
  position: fixed;
  left: 0;
  right: 0;
  top: 15%;
  width: 100%;
  z-index: 50;
  overflow: hidden; }
  .modal .modal__content-wrapper.open {
    visibility: visible; }
  @media screen and (min-width: 768px) {
    .modal .modal__content-wrapper {
      max-width: 650px;
      min-height: 350px; } }

.modal .modal__header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center; }

.modal .modal__heading {
  margin: 0; }

.modal .modal__scrollable-content {
  overflow-y: auto;
  height: 100%; }

.modal .modal__body {
  overflow-y: auto; }

.modal .modal__close-toggle {
  background-color: transparent;
  border: 0;
  height: 25px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 25px;
  cursor: pointer; }
  .modal .modal__close-toggle:hover, .modal .modal__close-toggle:focus {
    background-color: transparent;
    border: 0; }
  .modal .modal__close-toggle svg {
    display: block; }
    .modal .modal__close-toggle svg path {
      fill: #000021; }
