/**
* Cookie-Notice formatting, used by oldapp
*/
 
#cookieNotice{
  position: fixed;
  padding: 20px;
  bottom: 0;
  z-index: 1337;
  background-color: rgba(200, 200, 200, 0.8);
  width: 100%;
  font-family: verdana,sans-serif;
  font-size: 12px;
  width: 330px;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 80px;
  text-align: left;
  background-color: white;
  border-radius: 10px;
}
#cookieNotice p{
  margin: 0;
}
#cookieNotice > div{
  text-align: center;
}
#cookieNotice a#cookieMoreInfoLink {
  /*margin-left: 1em;*/
  padding-top: 10px;
  display: block;
  font-weight: bold;
  text-decoration: underline;
}
#cookieNotice button#cookieAcceptButton {
  background-color: #010066;
  color: white;
  padding: 10px 30px;
  border-radius: 5px;
  border-width: 0;
  font-size: 20px;
  cursor: pointer;
}
#cookieConfigureBox {
  position: fixed;
  top: 30px;
  margin: 0px auto;
  right: 0;
  left: 0;
  width: 300px;
  background-color: #FFFFFF;
  font-family: verdana,sans-serif;
  font-size: 12px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #000;
}
#cookieConfigureBox > p{
  text-align: left;
  margin-top: 0;
}
#cookieConfigureBox #cookieAcceptButton{
  margin-top: 20px;
  background-color: #010066;
  color: white;
  padding: 10px 30px;
  border-radius: 5px;
  border-width: 0;
}
.cookieSwitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookieSwitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.cookieSwitch span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.cookieSwitch span:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.cookieSwitch input:checked + span {
  background-color: #010066;
}

.cookieSwitch input:focus + span {
  box-shadow: 0 0 1px #010066;
}

.cookieSwitch.disabled input + span {
  background-color: #ccc;
}

.cookieSwitch input:checked + span:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
#cookieConfigureBox div p {
  float: right;
  //display: inline-block;
}
#cookieConfigureBox div label {
  float: left;
  //display: inline-block;
}
#cookieConfigureBox div {
  clear: both;
  padding: 10px;
  /* display: block; */
}