/* 
 * ---------------------------------------------------------------------
 * Filename:            HU Berlin.css
 * Description:         Design for the moveon 4 Form
 * Website:             moveon4.com
 * Author:  			Isabelle Bekema
 * --------------------------------------------------------------------- 
 */
 
/* For the logo */
.pageCover {
  background: url("https://box.hu-berlin.de/seafhttp/f/93d60be0fa694d16ba4a/?op=view") no-repeat scroll;
  padding-top: 160px;
  background-size: 44% 17%;
  background-position-y: 30px;
}

/* For the responsiveness */
@media screen and (max-width: 767px) {
  .pageCover {
    background-position: calc(100% - 10px) 40px;
    padding-top: 140px;
    background-size: 230px;
  }
}

/* For the tooltips */
.cssTooltip {
  background: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 22px 15px 16px 18px;
  margin-left: -267px;
  position: absolute;
  cursor: default;
  font-size: 12px;
  text-decoration: none;
  font-style: normal;
  color: #000;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0px 0 #000;
  z-index: 10;
}

/* For the footer */
.pageFooter {
  width: 100%;
  max-width: 1435px;
  color: #fff;
  background: #00376c;
  padding: 0px;
    padding-bottom: 0px;
  margin-bottom: -24px;
  text-align: center;
  padding-bottom: 15px;
}

/* For text input fields that are not disabled */
.rowControl > input[type=text]:enabled, 
.rowControl > input[type=password]:enabled, 
.genericControl:enabled {
  color: #000;
}

/* For dropdown fields that are not disabled */
.rowControl > select,
.rowControl > select > option {
  color: #000; 
  font-weight: 300;
}

/* For any disabled fields */
.rowControl > input[type=text]:disabled,
.rowControl > input[type=password]:disabled,
.genericControl:disabled,
.rowControl > select:disabled {
  color: rgb(86 86 87);
}