/*
Arquivo: arquivos\css-custom\curriculos.css
Data: 25/01/2022
*/
.wizard-fieldset h5 {
    font-weight: bolder;
    font-size: 18px;
  }
  
  .form-wizard {
    color: #888888;
    padding: 30px;
  }
  
  .form-wizard .wizard-form-radio {
    display: inline-block;
    margin-left: 5px;
    position: relative;
  }
  
  .form-wizard .wizard-form-radio input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #dddddd;
    height: 25px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  
  .form-wizard .wizard-form-radio input[type=radio]:focus {
    outline: 0;
  }
  
  .form-wizard .wizard-form-radio input[type=radio]:checked {
    background-color: #78B74A;
  }
  
  .form-wizard .wizard-form-radio input[type=radio]:checked::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 50%;
    left: 1px;
    right: 0;
    margin: 0 auto;
    top: 8px;
  }
  
  .form-wizard .wizard-form-radio input[type=radio]:checked::after {
    content: "";
    display: inline-block;
    -webkit-animation: click-radio-wave 0.65s;
    -moz-animation: click-radio-wave 0.65s;
    animation: click-radio-wave 0.65s;
    background: #000000;
    content: "";
    display: block;
    position: relative;
    z-index:10;
    border-radius: 50%;
  }
  
  .form-wizard .wizard-form-radio input[type=radio] ~ label {
    padding-left: 10px;
    cursor: pointer;
  }
  
  .form-wizard .form-wizard-header {
    text-align: center;
  }
  
  .form-wizard .form-wizard-next-btn,
  .form-wizard .form-wizard-previous-btn,
  .form-wizard .form-wizard-submit {
    background-color: #78B74A;
    color: #ffffff;
    display: inline-block;
    min-width: 100px;
    min-width: 120px;
    padding: 10px;
    text-align: center;
  }
  
  .form-wizard .form-wizard-next-btn:hover,
  .form-wizard .form-wizard-next-btn:focus,
  .form-wizard .form-wizard-previous-btn:hover,
  .form-wizard .form-wizard-previous-btn:focus,
  .form-wizard .form-wizard-submit:hover,
  .form-wizard .form-wizard-submit:focus {
    color: #ffffff;
    opacity: 0.6;
    text-decoration: none;
  }
  
  .form-wizard .wizard-fieldset {
    display: none;
  }
  
  .form-wizard .wizard-fieldset.show {
    display: block;
  }
  
  .form-wizard .wizard-form-error {
    display: none;
    background-color: #d70b0b;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 96%;
    margin: 0 auto;
  }
  
  .form-wizard .form-wizard-previous-btn {
    background-color: #fb1647;
  }
  
  .form-wizard .form-control {
    font-weight: 300;
    height: auto !important;
    padding: 15px;
    color: #888888;
    background-color: #f1f1f1;
  }
  
  .form-wizard .form-control:focus {
    box-shadow: none;
  }
  
  .form-wizard .form-group {
    position: relative;
    margin: 25px 0;
  }
  
  .form-wizard .wizard-form-text-label {
    position: absolute;
    left: 30px;
    top: 16px;
    transition: 0.2s linear all;
  }
  
  .form-wizard .focus-input .wizard-form-text-label {
    color: #d65470;
    top: -18px;
    transition: 0.2s linear all;
    font-size: 12px;
  }
  
  .form-wizard .form-wizard-steps {
    margin: 30px 0;
  }
  
  .form-wizard .form-wizard-steps li {
    width: 16%; /*width: 25%; alterei aqui*/
    float: left;
    position: relative;
  }
  
  .form-wizard .form-wizard-steps li::after {
    background-color: #f3f3f3;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
  }
  
  .form-wizard .form-wizard-steps li span {
    background-color: #dddddd;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index:10;
  }
  
  .form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
  }
  
  .form-wizard .form-wizard-steps li.active span,
  .form-wizard .form-wizard-steps li.activated span {
    background-color: #78B74A;
    color: #ffffff;
  }
  
  .form-wizard .form-wizard-steps li.active::after,
  .form-wizard .form-wizard-steps li.activated::after {
    background-color: #78B74A;
    left: 50%;
    width: 50%;
    border-color: #78B74A;
  }
  
  .form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
    border-color: #78B74A;
  }
  
  .form-wizard .form-wizard-steps li:last-child::after {
    left: 0;
  }
  
  .form-wizard .wizard-password-eye {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
  @keyframes click-radio-wave {
    0% {
      width: 25px;
      height: 25px;
      opacity: 0.35;
      position: relative;
    }
    100% {
      width: 60px;
      height: 60px;
      margin-left: -15px;
      margin-top: -15px;
      opacity: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .wizard-content-left {
      height: auto;
    }
  }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #2c3e50;
    background-image: none;
  }
  
  /* Remove IE arrow */
  select::-ms-expand {
    display: none;
  }
  
  /* Custom Select */
  .select {
    position: relative;
    display: flex;
    line-height: 4;
    background: #dddddd;
    overflow: hidden;
    border-radius: 0.25em;
  }
  
  select {
    flex: 1;
    padding: 0 0.5em;
    color: #fff;
    cursor: pointer;
  }
  
  /* Arrow */
  .select::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #dddddd;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: 0.25s all ease;
    -o-transition: 0.25s all ease;
    transition: 0.25s all ease;
  }
  
  /* Transition */
  .select:hover::after {
    color: #f39c12;
  }
  
  .frameBox {
    margin-top: 30px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background-color: #fbfbfb;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 6px -4px, rgba(0, 0, 0, 0.14) 0px 6px 8px 0px, rgba(0, 0, 0, 0.12) 0px 2px 16px 0px;
  }
  
  .frameBox h5 {
    padding-top: 15px;
  }
  
  .btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px 0 0 3px;
  }
  
  .btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .btn {
    margin-bottom: 10px;
  }
  
  .desaparece {
    display: none;
  }
  
  /* Change placeholder text inside inputs */
  ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #d7d7d7;
  }
  
  ::-moz-placeholder {
    /* Firefox 19+ */
    color: #d7d7d7;
  }
  
  :-ms-input-placeholder {
    /* IE 10+ */
    color: #d7d7d7;
  }
  
  :-moz-placeholder {
    /* Firefox 18- */
    color: #d7d7d7;
  }
  
  body {
    font-size: 16px;
  }
  
  h3 {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    color: #3a74cb;
  }
  
  h4 {
    font-size: 1.2rem;
    color: #3a74cb;
  }
  
  .error-message {
    display: none;
    color: red;
    text-align: center;
    font-size: 0.8em;
  }
  
  .success-message {
    display: none;
    text-align: center;
  }
  
  .success-message > div {
    width: 100%;
    opacity: 0;
    animation: reveal 1s 1s forwards;
    text-align: center;
    height: 20vh;
  }
  
  /* Appear animation for success message */
  @keyframes reveal {
    0%, 75% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* 'SUCCESS!' check animation */
  svg.checkmark {
    width: 75px;
    height: 75px;
    margin: 2em auto;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #3a74cb;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #7ac142;
    transition: 1s all ease;
  }
  
  /* Trigger animation we add 'active' class via JS */
  svg.checkmark.active {
    animation: moveupwards 1s 1s forwards;
  }
  
  @keyframes moveupwards {
    0%, 75% {
      width: 75px;
      height: 75px;
      margin: 2em auto;
    }
    100% {
      width: 50px;
      height: 50px;
      margin: 1em auto;
    }
  }
  svg > .checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #3a74cb;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  svg > .checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-width: 3;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  /* Sorry IE and Edge users, no SVG animations supported for you,
          so we'll hide our SVG to prevent empty space gap */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .success-message svg {
      display: none;
    }
  }
  @supports (-ms-ime-align: auto) {
    .success-message svg {
      display: none;
    }
  }
  
 