.modal__container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
}


.modal {
    /* Border */
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    z-index: 10;
}

.modal__header {
    display: flex;
    justify-content: space-between;

    /* Border */
    border-bottom: 1px solid #d1d5db;
}

.modal__footer {
    display: flex;
    /* Push the buttons to the right */
    justify-content: flex-end;

    /* Border */
    border-top: 1px solid #d1d5db;
}
/*BBE pimper*/

.rsrs-theme-dark {
  --color-background-strong: #1B2036;
  --color-background-medium: #232946;
  --color-background-small: #37406D;

  --color-border: #b8c1ec;

  --color-title-strong: #b8c1ec;
  --color-title-medium: #fffffe;
  --color-title-small: #eebbc3;

  --color-alert-error: #e53170;
  --color-alert-success: #2cb67d;
  --color-alert-warning: #ff8906;

  --color-button-background: #ffffff;
  --color-button-background-alt: #b8c1ec;
  --color-button-text: #232946;

  --color-link: #b8c1ec;
  --color-link-hover: #232946;
  --color-link-visited: #fffffe;
  --color-link-active: #232946;

  --color-font: #fffffe;
  --color-font-light: #fff;
  --color-font-dark: #000;

  --color-shadow: rgba(255, 255, 255, 0.2);
}