/*******************************************************************************
* .overlay- v 0.2.0
*******************************************************************************/

.overlay-Blocker {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;  height: 100%;
  overflow: hidden;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0,0,0, 0.75);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-Dialog {
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.overlay-Waiting {
    cursor: wait;   
}

.overlay-Waiting input[type="submit"] {
    cursor: wait;
}

.overlay-Waiting .overlay-panel-Footer button[type="submit"]:hover:disabled {
    cursor: wait;
    background-color: #61adff;
}


/*******************************************************************************
* .overlay-button-
*******************************************************************************/

.overlay-button-Close {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: none;
  font-size: 20px;
  background-color: #000;
  color: #fff;
}

.overlay-button-Close:hover {
    background-color: #61adff;
}


/*******************************************************************************
* overlay-panel-
*******************************************************************************/

.overlay-Panel {
display: table-row;
}

.overlay-panel-Content > div {
    padding: 10px 20px;
    text-align: left;
    font-size: 0.9em;
     min-width: 20vw;
    max-width: 90vw;
    max-height: 70vh;
    overflow: auto;
    background-color: #fff;
}

.overlay-panel-Content > div p {
    margin-left: 0;
}

.overlay-panel-Footer > div {
    clear: both;
    padding-bottom: 8px;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.overlay-panel-Footer > div > div {
    border-top: 1px solid #007bff;
    text-align: right;
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.overlay-panel-Footer button {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .5em .75em;
    line-height: 1.25;
    border-radius: .25em;
    transition: all .15s ease-in-out;
}

.overlay-panel-Footer button:hover {
    background-color: #61adff;
    cursor: pointer;
}

.overlay-panel-Header > div {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: left;
    font-weight: bold;
    min-height: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    background-color: #007bff;
    border-bottom: 1px solid #007bff;
}