.my-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto; }

.my-modal {
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 10px;
  background-color: #fff;
  color: #000; }
  .my-modal .modal-header {
    cursor: move;
    background-color: #38414A;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .my-modal .modal-header h2 {
      font-size: 1.2em;
      line-height: 1.5;
      padding: 0.8em;
      color: #fff;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      max-width: 80%; }
    .my-modal .modal-header .action-header {
      position: absolute;
      right: 0;
      top: 0; }
      .my-modal .modal-header .action-header a {
        background-color: #38414A;
        display: block;
        float: left;
        padding: 0.8em;
        font-size: 1.2em;
        line-height: 1.5;
        color: #fff;
        border-left: solid 1px;
        border-left-color: #0c0e10; }
        .my-modal .modal-header .action-header a:hover {
          background-color: #22282d; }
  .my-modal .modal-content {
    padding: 1em;
    text-align: left; }
  .my-modal .modal-subcontent, .my-modal .modal-subcontent-space {
    background-color: #e6e6e6;
    padding: 0.5em 1em;
    margin: 0 -1em 0 -1em; }
  .my-modal .modal-subcontent-space {
    margin-bottom: 1em; }
  .my-modal .modal-button {
    background-color: #f2f2f2;
    border-top: solid 1px;
    border-top-color: #d9d9d9;
    padding: 1em;
    overflow: hidden; }
  .my-modal .modal-button-simple {
    padding: 1em; }
  .my-modal .modal-button-delete {
    background: none;
    border: solid 1px #d15454;
    color: #d15454;
    float: right; }
    .my-modal .modal-button-delete:hover {
      color: #fff;
      background-color: #d15454; }
  .my-modal .no-space {
    margin-bottom: 0; }

.confirm-container .modal-header h2 {
  max-width: 100%; }

.no-draggable .modal-header {
  cursor: default; }
