.c-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: .2s;
  transition: .2s;
  z-index: 1000; }
  .c-modal--active {
    opacity: 1; }

.c-modal__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0; }

.c-modal__holder {
  display: flex;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: .25rem;
  width: 62.5rem;
  max-width: calc(100% - 2rem); 
  max-height: calc(100% - 2rem); }

.c-modal__close {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #9c1f31;
  color: #fff;
  font-weight: bold;
  height: 2rem;
  width: 2rem;
  cursor: pointer;
  border-top-right-radius: .25rem; }

.c-modal__content {
  width: 100%;
  max-height: calc(100% - 2rem);
  padding: 1rem 2rem;
  overflow: auto; }