.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1002; }
  .modal.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002; }
  .modal.display {
    position: fixed;
    background: #ffffff;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.6);
    z-index: 1002;
    pointer-events: all;
    height: auto;
    width: auto;
    padding: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .modal.display .close {
      position: absolute;
      top: 13px;
      right: 18px;
      color: #4c5159;
      cursor: pointer;
      z-index: 1003; }
    .modal.display .text {
      position: relative;
      margin: 0 auto;
      color: #4c5159;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 24px;
      text-align: center;
      width: 70vw;
      max-width: 352px; }
  .modal.overlay {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001; }

