modal-dialog {
  display: flex;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
}

.modal-dialog__container {
  min-width: 50%;
  background-color: #fff;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
  margin-left: 10px;
  margin-right: 10px;
}

.modal-dialog__header {
  padding: 5px;
  border-bottom: 1px solid #eee;
  justify-content: flex-end;
  display: flex;
}

.modal-dialog__content {
  padding: 15px;
  max-width: 480px;
  /*border-bottom: 1px solid #eee;*/
  /*min-height: 100px;
  align-items: center;
  display: flex;
  padding: 5*/
}

.modial-dialog__title {
  font-size: 1.5em;
  line-height: 1.5em;
}

.modal-dialog__footer {
  padding: 15px;
  display: flex;
  justify-content: flex-end;
}

.modal-dialog__footer button {
  margin-left: 5px;
}

.modal-dialog__close-button {
  padding: 0px;
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width:960px){
  .modal-dialog__container {
    min-width: initial;
    width: 480px;
  }
}
