.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.overlay .my_modal {
  -webkit-box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.3);
  background: white;
  position: absolute;
  min-width: calc(100% - 20px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 425px) {
  .overlay .my_modal {
    min-width: 400px;
  }
}

.overlay .my_modal .my_modal_header {
  padding: 15px;
  border: 1px solid lightgrey;
}

.overlay .my_modal .my_modal_header h5 {
  margin-bottom: 0;
}

.overlay .my_modal .my_modal_body {
  padding: 10px;
}

.overlay .my_modal .my_modal_actions {
  padding: 10px;
  border-top: 1px solid lightgrey;
  display: table;
  width: 100%;
}

.overlay .my_modal .my_modal_actions button {
  margin-left: 10px;
}
/*# sourceMappingURL=modals.css.map */