.load__icon {
  animation: linear load 2s infinite;
  width: 32px;
  height: 32px;
}

.load__icon-wrap {
  margin: auto;
}

.load {
  height: calc(100vh - 16px);
  width: 100%;
  display: flex;
  align-items: center;
}

.policy_questions{
  width: 100%;
}

.policy_questions_label{
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 3px;
  flex: 1 1 0%;
}

.policy_answers{
  margin-top: 10px;
  margin-left: 50px;
  width: 500px;
  height: 40px;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 #FFFFFF;
  border-color: -moz-use-text-color #FFFFFF #FFFFFF -moz-use-text-color;
  border-image: none;
  border-radius: 6px 6px 6px 6px;
  border-style: none solid solid none;
  border-width: medium 1px 1px medium;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  color: #37414F;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px 8px;
  transition: background-color 0.2s ease 0s;
}

.policy_answers:focus {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
  outline-width: 0;
}

.ques_btn{
  display: flex;
  align-items: center;
  justify-content: center;
}

.questions{
  width:80%;
  background-color: white;
  padding:50px;
  margin: 20px;
}

@keyframes load {
  from {
    transform: rotate(0deg) scale(2);
  }
  to {
    transform: rotate(360deg) scale(2);
  }
}