/*
 * Overlay - covers entire screen with slightly darkened non-interactive overlay
 *
 * 25-Sep-2021
 *    Added scrollbar to popup window 'dcch-popup_body' with overflow: auto
 *    Restricted height to viewport height with max-height: 100vh
 */
.overlay {
  background: rgba(50, 50, 50, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
  popup
*/
.dcch-popup_title {
  text-align: center;
  font-weight: bold;
  font-size: 1.05em;
  margin: 3px 3px 6px 3px;
  padding-bottom: 6px;
  border-bottom: solid 1px #888888;
}
.dcch-popup_body {
  margin: 2px 10px 4px 10px;
  overflow: auto;
  /* 100vh === viewport height */
  max-height: 100vh;
}
.dcch-popup_overlay {
  display: none;
  max-width: 300px;
  width: 50%;
  position: absolute;
  z-index: 101;
  border-radius: 8px;
  padding: 4px;
  margin: 10px;
  background: #ffffff;
  overflow: hidden;
}
.dcch-popup_inline {
  display: none;
  max-width: 350px;
  border-radius: 8px;
  padding: 4px;
  margin: 10px;
  background: #ffffff;
  overflow: hidden;
}
.dcch-popup_outer {
  border: 3px solid #CCCCCC;
  border-radius: 8px;
  padding: 4px;
}
.dcch-popup_outer .closeButton {
  float: right;
  height: 26px;
  width: 26px;
}
.dcch-popup_outer .title {
  margin: -4px -4px 0 0;
}
.dcch-popup_outer .noTitle {
  margin: -2px -12px 0 0;
}
/*
  expand_overlay
*/
.dcch-expand_over {
  display: block;
  position: absolute;
  z-index: 101;
}
.dcch_expand_over_txt {
  text-align: center;
  display: none;
  font-size: 1.25em;
  font-weight: bold;
  color: #666;
  background-color: #eee;
  padding: 4px 0 6px 0;
  margin: 0 20px 0 20px;
  clear: both;
}
.dcch-expand_close-div {
  float: right;
  height: 20px;
  width: 20px;
  margin: 0px 4px 0 0;
  display: none;
}
.dcch-expand_overlay-el {
  /*
    Making the position absolute suppresses the extra space at the bottom,
    which can create a "needless" scrollbar.
    However, it prevents the auto-expand left for a right-hand element
  */
  position: absolute;
}
.whats_new_gloss {
  margin: 2px 20px 0px 20px;
  font-weight: normal;
  font-size: 0.9em;
  border: 1px solid gray;
  padding: 1px 5px 3px 5px;
  border-radius: 4px;
}
