.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000c0;
  z-index: 1000;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-buttons {
  position: absolute;
  top: 24px;
  right: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-buttons > button:not(:last-child) {
  margin-right: 24px;
}

.modal .modal-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0px;
  background-color: #ccc;
  border-radius: 0 2px 2px 0;
  -webkit-transition: width 200ms ease, height 100ms ease;
  transition: width 200ms ease, height 100ms ease;
}

.modal .modal-progress-bar.modal-progress-bar--opened {
  height: 4px;
}
/*# sourceMappingURL=modal.css.map */