@charset "UTF-8";
/* CSS Document */
html, body {
 font-family: 'PT Sans', sans-serif;
}
h1 {
  color: #cc0056;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 110%;
}
.question, .battery {
  font-weight: 700;
}
.dangerer {
  font-weight: 700;
  color: #cc0056;
}
.hero {
  min-height: 60vh;
  background: url("../images/title-image-compressed.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nr{
	font-size: 2.5rem;
}
a{
	color:#ffffff;
	transition: all 0.8s;
}
a:hover{
	color:#cc0056;
	text-decoration: none;
}
.btn-danger{
background: #cc0056;	
}
@keyframes click-wave {
  0% {
    height: 4rem;
    width: 4rem;
    opacity: 0.8;
    position: relative;
  }
  100% {
    height: 8rem;
    width: 8rem;
    margin-left: -2.15rem;
    margin-top: -2.15rem;
    opacity: 0;
  }
}
.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 6px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4rem;
  width: 4rem;
  transition: all 0.8s ease-out 0s;
  background: #ffffff;
  border: 1px solid #cc0056;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  outline: none;
  z-index: 1000;
}
.option-input:hover {
  background: #ffffff;
  border: 1px solid #cc0056;
}
.option-input:checked {
  background: #cc0056;
  border: 1px solid #ffffff;
}
.opa:checked::before {
  position: absolute;
  content: "A";
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  ;
}
.opa::before {
  position: absolute;
  content: "A";
  color: #cc0056;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
}
.opb:checked::before {
  position: absolute;
  content: "B";
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  ;
}
.opb::before {
  position: absolute;
  content: "B";
  color: #cc0056;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
}
.opc:checked::before {
  position: absolute;
  content: "C";
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  ;
}
.opc::before {
  position: absolute;
  content: "C";
  color: #cc0056;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.8s;
  -moz-animation: click-wave 0.8s;
  animation: click-wave 0.8s;
  background: #ffffff;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -0.5rem;
  transform: translate(-50%, -50%);
}
.option-input.radio::after {
  border-radius: 50%;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0rem;
  /* transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; */
}
label {
  color: #000000;
  font-size: 1.3rem;
  transition: all 0.8s;
}
label:hover, label:checked, label:active, label:enabled {
  color: #ffffff;
  background-color: #cc0056;
  cursor: pointer;
}
.rounded-pill {
  border-radius: 1rem !important;
}
.submitgreen {
  border-radius: 15rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background-color: #cc0056;
  border: 1px solid #cc0056;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.8s;
}
.submitgreen:hover {
  background-color: #ffffff;
  color: #cc0056;
  border: 1px solid #cc0056;
}
.modal-content {
  border: 1px solid #000000;
  border-radius: 1rem;
  outline: 0;
}
.modal-backdrop.show {
  background-color: #c20037;
  opacity: 0.85;
}
button:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
.modal-header {
  border-bottom: none;
}
.modal-footer {
  border-top: none;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ffffff;
    background: #000000;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
@media (min-width: 768px) and (max-width: 991.98px) { h1{
	font-size:2.3rem;
	} }