.dialogShader {width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; background-color: #000; opacity: 0.4; z-index: 99;}
.dialogCont {width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 100;}
.dialogCont .centerer {width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-around;}
.dialogCont .dialogFrame {width: 600px; float: left; background-color: #FFF; position: relative;}
.dialogCont .dialogFrame.size-1 {width: 800px;}
.dialogCont .dialogFrame.size-2 {width: 1000px;}
.dialogCont .dialogFrame .close {width: auto; height: auto; float left; position: absolute; color: #FFF; font-size: 40px; top: -30px; right: -27px; line-height: 20px; opacity: 0.7;}
.dialogCont .dialogFrame .close:HOVER {opacity: 1;}
.dialogCont .headerFrame {width: 100%; padding: 10px 20px; float: left; background-color: #2db3cc; border-bottom: 1px #1b9fb8 solid; color: #FFF; font-size: 20px; font-weight: 500; text-transform: uppercase; text-align: center;}
.dialogCont .headerFrame .small {font-size: 16px; font-weight: 300; text-transform: none;}
.dialogCont .headerFrame.red {background-color: #d9001a; border-bottom: 1px #c20003 solid;}
.dialogCont .bodyFrame {width: 100%; padding: 30px; float: left; background-color: #FFF; font-size: 14px; font-weight: 300;}
.dialogCont .bodyFrame B {font-weight: 700;}
.dialogCont .bodyFrame .imageFrame {width: 50%; float: left; padding: 0px 20px 0px 0px; display: flex; justify-content: space-around;}
.dialogCont .bodyFrame .imageFrame IMG {width: 100%; height: auto; float: left;}
.dialogCont .bodyFrame .descFrame {width: 50%; float: left; padding: 0px 0px 0px 20px;}
.dialogCont .bodyFrame .descFrame .firstHeading {margin-top: 0px;}
.dialogCont .scroller {width: 100%; max-height: 50vh; float: left; overflow-y: scroll;}
.dialogCont .scroller.size-2 {max-height: 80vh;}
.dialogCont .bodyFrame .formFrame .formSubmit {width: 100%;}
.dialogCont .bodyFrame .buttonHalf {width: calc(50% - 10px); height: 200px; float: left; font-size: 30px; display: flex; align-items: center; justify-content: space-around; border: 1px #ddd solid; background-color: #f7f7f7; text-align: center;}
.dialogCont .bodyFrame .buttonHalf:HOVER {border: 1px #000 solid; cursor: pointer;}
.dialogCont .bodyFrame .buttonHalf:first-child {margin-right: 20px;}
.dialogCont .bodyFrame .buttonHalf.notActive {
background-image: 
    repeating-linear-gradient(
      45deg,
      #ddd,
      #ddd 1px,
      transparent 1px,
      transparent 10px /* determines size */
    ),
    repeating-linear-gradient(
      -45deg,
      #ddd,
      #ddd 1px,
      transparent 1px,
      transparent 10px /* determines size */
    );
  background-size: 28px 28px;
  cursor: not-allowed;
}
.dialogCont .bodyFrame .buttonsFrameLine {width: 100%; float: left; display: flex; justify-content: space-between;}
.dialogCont .bodyFrame .buttonsFrameLine .buttonHalf {flex: 1; margin-right: 20px;}
.dialogCont .bodyFrame .buttonsFrameLine .buttonHalf:last-child {margin: 0px;}
.requestsFrame {width: 100%; float: left;}
.requestsFrame .requestFrame {width: 100%; height: 80px; margin: 0px 0px 10px 0px; font-size: 20px; float: left; display: flex; align-items: center; justify-content: space-around; border: 1px #ddd solid; background-color: #f7f7f7; display: flex; justify-content: space-between; align-items: center;}
.requestsFrame .requestFrame:HOVER {border: 1px #000 solid; cursor: pointer;}
.requestsFrame .requestFrame:last-child {margin-bottom: 0px;}
.requestsFrame .requestFrame .colPadding {padding: 10px;}
.requestsFrame .requestFrame .colCover {width: 40%; font-size: 24px; font-weight: 700;}
.requestsFrame .requestFrame .colCnt {text-align: center; font-size: 24px; font-weight: 700; line-height: 22px;}
.requestsFrame .requestFrame .colOK {font-size: 24px; font-weight: 700;}
.requestsFrame .requestFrame .small {font-size: 14px; font-weight: 500;}
.requestsFrame .requestFrame .dot {width: 20px; height: 20px; float: left; margin: 4px 10px 0px 0px; border-radius: 50%; background-color: #ccc;}