body{
  font-size:20px;
  background-color:black;
  color: white;
  margin-bottom: 200px;
}
p, p span, .da {
    font-size: 22px;
}
span {
    font-weight: 700;
}
input,select {
  font-size: 20px;
  padding: 5px;
  background-color: #262626;
  border-radius: 10px;
  color: white;
}
option {
  color: yellow;
}
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

button.fixedsubmit {
  position: fixed;
  right: 0px;
  bottom: 0px;
}

@media screen and (max-width: 1000px) {
  img {
    min-width: 50%;
  }
  .radioimg {
    /*min-width: 40%!important;*/
  }
  p, p span, .da {
    font-size: 20px;
  }
  .checkmark {
  height: 30px;
  width: 30px;
 }
 .container {
  padding-left: 70px;
 }
 .container .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
}
button {
  font-size: 30px;
}
}