/* Styling for the overlay */
.lock {
  overflow-y: hidden;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

/* Styling for the popup container */
#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

/* Styling for the form */
#disagreeForm {
  text-align: center;
}

#disagreeForm label {
  display: block;
  /*margin-bottom: 5px;*/
}

#disagreeForm input[type="text"], #disagreeForm input[type="email"] {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 28px;
  border: 1px solid #d7d7d7;
}

#disagreeForm input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #104068;
  color: #fff;
  border: none;
  cursor: pointer;
  line-height: 28px;
  border-radius: 4px;
}

/* accept cookies */
.con {
  margin-top: 8px;
  background-color: #347837;
  border-radius: 4px;
  overflow: hidden;
}
.con label {
  padding: 10px;
}
.con label input {
  position: absolute;
  display: none;
  color: #fff !important;
}
.con label input + span{color: #fff;cursor: pointer;}
.con input:checked + span {
    color: #ffffff;
    text-shadow: 0 0  6px rgba(0, 0, 0, 0.8);
}
/*.con.act input:checked + span{background-color: #F75A1B;}*/