* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #2c2c2c;
  overflow-x: hidden;
  
}

::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  display:none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c82570;
  border-radius: 10px;
  
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2aa4c6;
  border-radius: 10px;

  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}

.background{
  box-sizing: border-box;
  min-height: 120ch;
  /*min-width: auto;*/
  /*min-width: 100vw;*/
  background: url('../img/bg.png') no-repeat center; 
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 30px;

}

@media (max-width: 775px) {
  .background{
    min-height: 150ch;
  }
}
@media (max-width: 450px) {
  .background{
    min-height: 180ch;
  }
}
@media (max-width: 380px) {
  .background{
    min-height: 300ch;
  }
}

body a {
  color: inherit;
  text-decoration: none;
}

.logo img{
  width: 200px;
  display: block;
  margin: auto;
}

.text-welcome{
  text-align: justify;
}

.header__btn {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  padding: 10px 20px;
  display: inline-block;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #2c2c2c;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}
.header__btn:last-child {
  margin-right: 0;
}
.header__btn:hover, .header__btn.js-active {
  color: #fff;
  background-color: #2c2c2c;
}

.header {
  max-width: 600px;
  margin: 50px auto;
  text-align: center;
}

.header__title {
  margin-bottom: 30px;
  font-size: 2.1rem;
}

.content {
  width: 95%;
  margin-left: 2.5%;
  /*margin: 0 auto 50px;*/
}

.content__title {
  margin-bottom: 40px;
  font-size: 20px;
  text-align: center;
}

.content__title--m-sm {
  margin-bottom: 10px;
}

.multisteps-form__progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  padding-top: 20px;
  color: rgba(108, 117, 125, 0.7);
  text-indent: -9999px;
  border: none;
  background-color: transparent;
  outline: none !important;
  cursor: pointer;
}
@media (min-width: 500px) {
  .multisteps-form__progress-btn {
    text-indent: 0;
  }
}
.multisteps-form__progress-btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 13px;
  height: 13px;
  content: "";
  transform: translateX(-50%);
  transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
  border: 2px solid currentColor;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 3;
}
.multisteps-form__progress-btn:after {
  position: absolute;
  top: 5px;
  left: calc(-50% - 13px / 2);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: currentColor;
  z-index: 1;
}
.multisteps-form__progress-btn:first-child:after {
  display: none;
}
.multisteps-form__progress-btn.js-active {
  /*color: #007bff;*/
  color: #c82570;
}
.multisteps-form__progress-btn.js-active:before {
  transform: translateX(-50%) scale(1.2);
  background-color: currentColor;
}

.multisteps-form__form {
  position: relative;
}

.multisteps-form__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.multisteps-form__panel.js-active {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.multisteps-form__panel[data-animation=scaleOut] {
  transform: scale(1.1);
}
.multisteps-form__panel[data-animation=scaleOut].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  transform: scale(1);
}
.multisteps-form__panel[data-animation=slideHorz] {
  left: 50px;
}
.multisteps-form__panel[data-animation=slideHorz].js-active {
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  transition-delay: 0s;
  left: 0;
}
.multisteps-form__panel[data-animation=slideVert] {
  top: 30px;
}
.multisteps-form__panel[data-animation=slideVert].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  top: 0;
}
.multisteps-form__panel[data-animation=fadeIn].js-active {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.multisteps-form__panel[data-animation=scaleIn] {
  transform: scale(0.9);
}
.multisteps-form__panel[data-animation=scaleIn].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  transform: scale(1);
}
/*
.form-control{
  position: relative;
}
.form-control[required]:after{

  content: 'Complete este campo.';
  color: red;
  position: absolute;
  top: 100%;
  left: 0;

  position: absolute;
  color: red;
  font-size: 105px;
  left: -9px;
  top: -2px;
}*/

.empty-error-message{
  color: red;
  font-size: 12px;
  margin-left: 2px;
  display:none;
}
.empty-error-message.show{
  display:block;
}

.required-vineta{
  color: red;
  position: absolute;
  left: 10px;
  top: 6px;
}
.box-file .required-vineta, .box-label .required-vineta{
  left: -4px;
}

.form-checkbox {
  text-align: justify;
}

.form-checkbox label{
  display: inline;
}

.form-checkbox input[type='checkbox']{
  scale: 1.3;
}





.form-group input[type="file"].input_file_oculto { 
  position:absolute;
  z-index: 1; 
  opacity: 0; 
  width: 96%;
  -moz-opacity: 0; 
  filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0) 
}
.form-group input[type="file"].input_file_oculto ~ div.form-control{ 
  position:relative;
  z-index: 2; 
  cursor: pointer;
}
.button_fantasma button{ 
  position: absolute;
  right: 0;
  top: -1px;
}
.button_fantasma{ 
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.btn-primary {
  color: #fff;
  background-color: #2aa4c6;
  border-color: #2aa4c6;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(42, 164, 198, 0.4);
}
.btn-primary:hover {
  color: #fff;
  background-color: #c82570;
  border-color: #c82570;
  transform: translateY(-1px);
}
.btn-check:focus + .btn-primary, .btn-primary:focus, .btn-primary:active {
  color: #fff;
  background-color: #b02365;
  border-color: #b02365;
  transform: translateY(0);
  box-shadow: none;
}


.btn-success {
  color: #fff;
  background-color: #c82570;
  border-color: #c82570;
  transform: translateY(-1px);
}
.btn-success:hover {
  color: #fff;
  background-color: #2aa4c6;
  border-color: #2aa4c6;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(42, 164, 198, 0.4);
}
.btn-success:focus + .btn-success, .btn-success:focus, .btn-success:active {
  color: #fff;
  background-color: #2599b9;
  border-color: #2599b9;
  transform: translateY(0);
  box-shadow: none;
}


.loader{
  border: 3px solid #f3f3f3;
  border-top: 3px solid #c82570;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  float:left;
  margin-right: 7px;
}
.loaderParent{
  display:none;
}
@keyframes spin{
  0%{ transform: rotate(0deg);}
  100%{ transform: rotate(360deg);}
}