.metro-form-div {
    margin: 50px 0;
}

.metro-form-div form h4 {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 20px;
    line-height: 135%;
    width: 100%;
    word-break: break-word;
}

.exemplo1 input[type=radio], .exemplo1 input[type=checkbox]{
    display:none; /* Esconde os inputs */
}
 
.exemplo1 input[type=radio] + label.label-radio, .exemplo1 input[type=checkbox] + label.label-radio{
    display:inline-block;
    height:20px;
    padding:0 0 0 25px;
    margin:0 10px 0 0;
    background-image:url(images/ico-master.png);
    background-repeat:no-repeat;
    background-position:0 0;
}
 
.exemplo1 input[type=checkbox] + label.label-radio{
    background-position:0 -60px; /* Muda a posição do background só no checkbox */
}
 
.exemplo1 input[type=radio]:checked + label.label-radio{
    background-position:0 -30px;
}
 
.exemplo1 input[type=checkbox]:checked + label.label-radio {
    background-position:0 -90px;
}

.metro-form {
    margin: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    color: #191919;
    width: 70%;
    box-sizing: border-box;
}

.form-div {
    width: 100%;
    padding: 30px 0;
}

.metro-form-btn {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    width: 70%;
    margin: 20px 0;
    background-color: #003da5;
    border: 0;
    cursor: pointer;
    transform: all 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-transform: all 0.3s ease;
    -moz-transform: all 0.3s ease;
    -ms-transform: all 0.3s ease;
    -o-transform: all 0.3s ease;
}

.select{
  padding: 5px;
  border: 1px solid #777;
}

.metro-form-btn:hover {
    background-color: #001b4a;
}

.success {
    padding: 20px;
    background-color: #00A9B7;
    border: 1px solid #004953;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.error {
    padding: 20px;
    background-color: #cc3333;
    border: 1px solid #852332;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.metro-div-form {
    position: relative;
    z-index: 99;
}

#load-form {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    align-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
}
.Aligner-item {
  max-width: 50%;
}
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #fff;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}