.radios{
	position: relative;
  text-align: center;
}
.radio-input{
}
.input-replace {
  height: 55px;
  width: 55px;
  background: white;
  border: 2px solid #efefef;
  cursor: pointer;
  float: left;
  margin-right: 30px;
  border-radius: 50%;
  position: relative;
}
.input-replace:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  height: 35px;
  width: 35px;
  background: #c65d4f;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.1s;
  display: hidden;
}
@media(max-width: 1080px){
  .input-replace {
  height: 50px;
  width: 50px;
  background: white;
  border: 2px solid #efefef;
  cursor: pointer;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
  position: relative;
}
.input-replace:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  height: 30px;
  width: 30px;
  background: #c65d4f;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.1s;
  display: hidden;
}
}
@media(max-width: 380px){
  .input-replace {
  height: 45px;
  width: 45px;
  background: white;
  border: 2px solid #efefef;
  cursor: pointer;
  float: left;
  margin-right: 10px;
  border-radius: 50%;
  position: relative;
}
.input-replace:after {
  content: '';
  position: absolute;
  top: 7px;
  left: 7px;
  height: 27px;
  width: 27px;
  background: #c65d4f;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.1s;
  display: hidden;
}
}

.input-replace.checked:after {
  transform: scale(1);
  display: visible;
}

.checks .input-replace:after {
  background: #e74c3c;
}

label {
  display: block;
  height: 40px;
  line-height: 35px;
  cursor: pointer;
}

form {
  text-align: center;
  justify-content: center;
}

a {
  text-decoration: underline;
  cursor: pointer;
}