.test-1 {
  background: #31B7D7;
  background: -webkit-linear-gradient(-90deg, #31B7D7, #EDAC7D);
  background: linear-gradient(180deg, #31B7D7, #EDAC7D);
}

.test-2 {
  background: #E47D7D;
  background: -webkit-linear-gradient(left, #E47D7D 0%, #C195D3 50%, #4FB4E8 100%);
  background: linear-gradient(to right, #E47D7D 0%, #C195D3 50%, #4FB4E8 100%);
}

.test-3 {
  background: #B58234;
  background: -webkit-linear-gradient(48deg, #B58234 0%, #D2B545 50%, #D7C04D 50.01%, #FFFFFF 100%);
  background: linear-gradient(42deg, #B58234 0%, #D2B545 50%, #D7C04D 50.01%, #FFFFFF 100%);
}

@font-face {
  font-family: "GothamHTF-Ultra";
  src: url("../../fonts/GothamHTF/GothamHTF-Ultra.otf") format("opentype");
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  to {
    transform: scale(1);
  }
}
.fe-pulse {
  animation-name: pulse;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #666666;
  background-image: url("/assets/app/comcast_building.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.dash_box {
  border: solid 1px #006D9C;
  text-align: left;
}

.dvLoginBack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #666666;
  background-image: url("/assets/app/comcast_building.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(10px);
  z-index: -99;
}

.dvLoginBox {
  position: absolute;
  width: 100%;
  height: 110%;
  background: linear-gradient(to bottom, rgba(102, 204, 255, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.dvLogin {
  margin-bottom: 10%;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: solid 1px rgba(0, 0, 0, 0.4);
}
.dvLogin .dvLoginHeader {
  display: flex;
  align-items: center;
  background-color: #006D9C;
  color: #FFFFFF;
  padding: 10px;
  min-height: 28px;
}
.dvLogin .dvLoginForm {
  margin: 15px;
}
.dvLogin .dvLoginForm input {
  display: block;
  margin: 6px 0;
}
.dvLogin .dvLoginForm input[type=text], .dvLogin .dvLoginForm [type=password] {
  padding: 4px 6px 4px 6px;
  width: 100%;
  height: 35px;
}
.dvLogin .dvLoginForm input[type=submit] {
  padding: 4px 6px 4px 6px;
  width: 100%;
  height: 35px;
}
.dvLogin .dvLoginForm .random {
  margin: 6px 0;
}
.dvLogin .dvLoginForm .center_me {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dvLogin .dvLoginForm .dvLoginGroup {
  width: 100%;
}
.dvLogin .dvLoginForm .dvLoginGroup [type=text], .dvLogin .dvLoginForm .dvLoginGroup [type=password] {
  width: 49%;
}
.dvLogin .dvLoginForm .dvLoginGroup span {
  display: inline-block;
  width: 49%;
}
.dvLogin .dvLoginForm .dvLoginGroup a {
  color: white;
  text-decoration: none;
}
.dvLogin .dvLoginForm .dvLoginGroup a:hover {
  color: #008BCC;
}

.dvLoginMsgBoxCMS, .dvLoginMsgBox {
  position: absolute;
  width: 100%;
  min-height: 40px;
  top: 0;
  left: 0;
  text-align: left;
  z-index: 98;
}

.dvLoginMsgBox {
  margin-top: 28px;
}

.dvLoginMsgBoxCMS {
  margin-top: 28px;
}

.dvLoginMsgWarring, .dvLoginMsgInfo, .dvLoginMsgError {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 30px 0 30px;
  min-height: 40px;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  border: solid 1px rgba(255, 255, 255, 0.5);
}

.dvLoginMsgError {
  background-color: rgba(255, 0, 0, 0.8);
}

.dvLoginMsgInfo {
  background-color: rgba(50, 205, 50, 0.8);
}

.dvLoginMsgWarring {
  background-color: rgba(255, 165, 0, 0.8);
}

.ifUpdate {
  position: absolute;
  height: 100%;
  border: none;
}

.dvHelp {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  margin: 10px;
  padding: 20px;
  width: 1200px;
}
.dvHelp h1, .dvHelp h2, .dvHelp h3 {
  text-align: left;
  color: #2c3e50;
}
.dvHelp p {
  text-align: justify;
  padding-left: 40px;
  padding-right: 40px;
}

.dvAccordion {
  position: relative;
  background-color: rgba(0, 139, 205, 0.5);
  color: #FFF;
  text-shadow: 1px 1px #000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  font-weight: bold;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.dvAccordion::after {
  position: absolute;
  right: 25px;
  font-family: FontAwesome;
  font-weight: bold;
  content: "\f101";
}

.active, .dvAccordion:hover {
  background-color: rgba(0, 139, 205, 0.8);
  color: #fff;
}
.active::after, .dvAccordion:hover::after {
  content: "\f103";
}

.dvAccordionPanel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.dvGrid {
  padding: 4px 2px 4px 2px;
}

.dvAssetsSub {
  padding-left: auto;
  padding-right: auto;
  margin-left: auto;
  margin-right: auto;
}

/*# sourceMappingURL=style_php.css.map */
