.ddocs .modal {
    z-index: 97;
    max-width: 1000px;
    margin: 0 1rem;
    box-shadow: 0px 16px 50px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
  }

.ddocs .modal__background {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 96;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .ddocs .modal__header {
    height: 70px;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem 0 2.5rem;
    background-color: #728db1;
  }

  .ddocs .modal__title {
    font-weight: 600;
    text-transform: uppercase;
  }

  .ddocs .modal__close-button {
    cursor: pointer;
    margin-left: 1.25rem;
    background-color: #728db1;
    color: #fff;
    font-weight: bold;
    font-size: 1.35rem;
    border: none;
  }

  .ddocs .modal__content {
    background-color: #f9f9f9;
    box-sizing: border-box;
    max-height: calc(100vh - 6.5rem);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }
  
  .ddocs .modal__body {
    flex: 1 0 auto;
  }

  .ddocs .modal__footer {
    margin-top: 1rem;
  }

  .ddocs .modal--full {
    flex: 1 1 1000px;
  }
