* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 0.9rem;
}

body {
  background-image: linear-gradient(
      rgba(192, 192, 192, 0.7),
      rgba(192, 192, 192, 0.7)
    ),
    url(/assets/images/1920x1093.jpg);
  background-position: center;
  background-size: cover;
  min-width: 100%;
  color: rgb(53, 53, 53);
}

/* for chrome hidding scrollbar  */
::-webkit-scrollbar {
  width: 0px !important;
}

@media screen and (min-width: 769px) {
  .container {
    margin: 1.5% auto;
    min-height: 920px;
  }
  html {
    scroll-behavior: smooth;
  }
}
@media screen and (max-width: 768px) {
  .container {
    margin: 0% auto;
    min-height: 1020px;
  }
}
.container {
  width: auto;
  max-width: 750px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

h2 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #555;
}
h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #555;
}
.center {
  width: auto;
  max-width: 600px; /* must be same as container form max-width */
  margin: auto;
  position: relative;
  padding: 5%;
}
.container form {
  width: 100%;
  position: relative; /* must change to absolute */
  top: 5px;
  max-width: 600px; /* must be same as center max-width */
}
form input {
  padding: 10px 5px;
  margin: 5px 0;
  border: 0px;
  border-bottom: 1px solid #888;
  outline: none;
  background: transparent;
  text-indent: 0px;
}
input[type="text"] {
  width: 100%;
}
input[type="email"] {
  width: 100%;
}
form select {
  width: 100%;
  padding: 10px 5px;
  margin: 5px 0;
  border: 0px;
  border-bottom: 1px solid #888;
  outline: none;
  background: transparent;
  color: #555;
}
::placeholder {
  color: rgb(53, 53, 53);
}
.btn-box {
  width: 100%;
  margin: 30px auto;
  text-align: center;
}
form button {
  width: 110px;
  height: 35px;
  position: relative;
  margin: 0 10px;
  background: linear-gradient(to right, #ff105f, #ffad06);
  border-radius: 30px;
  border: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
}
.homepage {
  width: 160px;
  height: 35px;
  position: relative;
  margin: 0 10px;
  background: linear-gradient(to right, #ff105f, #ffad06);
  border-radius: 30px;
  border: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
}
input,
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="radio"] {
  display: none;
}
input[type="checkbox"] {
  display: none;
}

.radio__input {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__radio {
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #555;
  border-radius: 50%;
  margin-right: 10px;
  box-sizing: border-box;
  padding: 2px;
}

.radio__radio::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #ff1024;
  border-radius: 50%;
  transform: scale(0);
}

.radio__input:checked + .radio__radio::after {
  transform: scale(1);
}

label {
  display: inline-flex;
  padding: 5px;
  color: rgb(53, 53, 53);
}
.step {
  display: none;
}
.step.active {
  display: block;
}
.animate-fadeout {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.animate-fadein {
  animation: opac 0.5s;
}
@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.step-row {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(207, 207, 207);
  position: relative;
}
.step-col {
  width: calc(100% / 13);
  text-align: center;
  color: rgb(32, 32, 32);
  position: relative;
}
#progress {
  position: absolute;
  height: 100%;
  width: calc(100% / 13);
  background: linear-gradient(to right, #ff105f, #ffad06);
  transition: 1.5s;
}
#progress::after {
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 20px solid #ffad06;
}
.SpacerBox1 {
  display: inline-block;
}
.SpacerBox2 {
  display: inline-block;
  font-weight: bold;
  margin-right: 6px;
  font-size: 1.1em;
}
.SpacerBox3 {
  /* display: inline-block; */
  margin-top: 4px;
  margin-bottom: 10px;
}
.SpacerBox4 {
  display: inline-block;
  width: 280px;
}
.SpacerBox5 {
  display: inline-block;
  margin-bottom: 6px;
}
.strong1 {
  font-weight: bold;
  font-size: 1.1em;
}
.validation1 {
  font-weight: bold;
  font-size: 1.1em;
}

.BriggsQuestions {
  display: inline-block;
  font-weight: bold;
  margin-right: 6px;
  font-size: 1.1em;
  margin-bottom: 8px;
}
.radio__input1 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__input2 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__input3 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__input4 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__input5 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__input6 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
.radio__input1:checked + .radio__radio::after {
  transform: scale(1);
}
.radio__input2:checked + .radio__radio::after {
  transform: scale(1);
}
.radio__input3:checked + .radio__radio::after {
  transform: scale(1);
}

body,
html {
  min-height: 100%;
  margin: 0;
}
