﻿.numbers {
    color: #00649c;
    text-align: center;
    margin-bottom:30px;
}

.number-register {
   position: absolute;
  color: #fff;
  left: 25px;
}

.pay-for-use{
    text-decoration: underline;
}

.questions {
    padding-top: 30px;
    font-size: 11px;
}

.questions a{
    font-weight:bold;
    margin-right: 10px;
}

.question-dev{
    color: #000000;
    font-weight: normal !important;
    text-decoration: none;
}

.terms {
    font-size: 11px;
    font-weight: 500;
}

.incorrect {
    color:red;
}

.correct {
    color:blue;
}

input[type=checkbox], input[type=radio] {
    margin: 1px 0 0;
}

#register-mod-dev, #register-checklist {
    background-image: url('../../../images/background-2.jpg');
}

#register-mod-dev h1, #register-checklist h1 {
    color: #fff;
}

#register-mod-dev .first-word, #register-checklist .first-word {
    color: #00649c;
}

#register-mod-dev label, #register-checklist label {
    font-weight: 400;
    color: #fff;
}

.blue-bgd {
    background-color: rgba(1, 45, 70, 0.78);
    min-height: 777px;
}

.color-white{
    color: #FFF;
}

.color-warning{
    color: orange;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.section-heading {
    margin-bottom: 30px;
    text-align:center
}

h1.section-heading {
    color: #00649c;
    font-family: 'latobold';
    font-size: 48px;
}

h2.section-subheading {
    font-size:18px;
    color:black;
    padding-bottom: 20px;
    text-align:center;
}

a.button.register, .button.register{
	display: block;
	margin: 0 auto;
	text-transform: none;
	text-align: center;
	font-size: 18px;
	color: #ffffff;
	border: 1px solid #FFF;
	padding: 10px 20px;
	width: 200px;
	background: #00649c;
	-webkit-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

.css-form.submitted select.ng-invalid {
    color: red;
    background-color: #f2dede;
}

.required-field {
    font-size:16px;
    color:red;
}

.center-store-button {
    display: block;
    margin: auto;
    width: 40%;
}

.margin-store-button {
    margin-top: 10px;
    margin-bottom: 15px;
}

/**********ESTILOS DE LOS ESTADOS**********/

.pr5{
    padding-right: 5px !important;
}

.status {
  padding-top: 5px;
}

.step-1 {
    color: #f6bb42;
    font-size: 11px;
}

.step-2 {
    color: #932F66;
    font-size: 11px;
}

.step-3{
    color: #4D7F17;
    font-size: 11px;
}

/* -------------------------------- 

Basic Style

-------------------------------- */
.cd-multi-steps {
  /*width: 90%;
  max-width: 768px;*/
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #edeff0;
  border-radius: .25em;
}
cd-multi-steps:after {
  content: "";
  display: table;
  clear: both;
}
.cd-multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}
.cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}
.cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 1.4rem;
  color: #2c3f4c;
}
.cd-multi-steps li.current > * {
  /* selected step */
  color: #006699;
}
.cd-multi-steps a:hover {
  /* steps already visited */
  color: #006699;
}

@media only screen and (min-width: 768px) {
  .cd-multi-steps {
    padding: 0 1.2em;
  }
  .cd-multi-steps li {
    margin: 1.2em 0;
  }
  .cd-multi-steps li::after {
    margin: 0 1em;
  }
  .cd-multi-steps li > * {
    font-size: 1.3rem;
  }
}


/* -------------------------------- 

Multi steps indicator 

-------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-multi-steps {
    /* reset style */
    background-color: transparent;
    padding: 0;
    text-align: center;
  }

  .cd-multi-steps li {
    position: relative;
    float: none;
    margin: 0.4em 49px 0.4em 0;
  }
  .cd-multi-steps li:last-of-type {
    margin-right: 0;
  }
  .cd-multi-steps li::after {
    /* this is the line connecting 2 adjacent items */
    position: absolute;
    content: '';
    height: 4px;
    background: #777;
    /* reset style */
    margin: 0;
  }
  .cd-multi-steps li.visited::after {
    background-color: #006699;
  }
  .cd-multi-steps li > *, .cd-multi-steps li.current > * {
    position: relative;
    color: #2c3f4c;
  }

  .cd-multi-steps.custom-separator li::after {
    /* reset style */
    height: 4px;
    background: #edeff0;
  }

  .cd-multi-steps.text-center li::after {
    width: 100%;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%) translateX(-1px);
    -moz-transform: translateY(-50%) translateX(-1px);
    -ms-transform: translateY(-50%) translateX(-1px);
    -o-transform: translateY(-50%) translateX(-1px);
    transform: translateY(-50%) translateX(-1px);
  }
  .cd-multi-steps.text-center li > * {
    z-index: 1;
    padding: .6em 1em;
    border-radius: .25em;
    background-color: #edeff0;
  }
  .cd-multi-steps.text-center a:hover {
    background-color: #2c3f4c;
  }
  .cd-multi-steps.text-center li.current > *, .cd-multi-steps.text-center li.visited > * {
    color: #ffffff;
    background-color: #006699;
  }

  .cd-multi-steps.text-top li, .cd-multi-steps.text-bottom li {
    width: 144px;
    text-align: center;
  }
  .cd-multi-steps.text-top li::after, .cd-multi-steps.text-bottom li::after {
    /* this is the line connecting 2 adjacent items */
    position: absolute;
    left: 50%;
    /* 40px is the <li> right margin value */
    width: calc(100% + 40px);
  }
  .cd-multi-steps.text-top li > *::before, .cd-multi-steps.text-bottom li > *::before {
    /* this is the spot indicator */
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #777;
  }
  .cd-multi-steps.text-top li.visited > *::before,
  .cd-multi-steps.text-top li.current > *::before, .cd-multi-steps.text-bottom li.visited > *::before,
  .cd-multi-steps.text-bottom li.current > *::before {
    background-color: #006699;
  }
  .cd-multi-steps.text-top , .cd-multi-steps.text-bottom  {
    color: #006699;
  }
  .cd-multi-steps.text-top a:hover::before, .cd-multi-steps.text-bottom a:hover::before {
    box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.3);
  }

  .cd-multi-steps.text-top li::after {
    /* this is the line connecting 2 adjacent items */
    bottom: 4px;
  }
  .cd-multi-steps.text-top li > * {
    padding-bottom: 20px;
  }
  .cd-multi-steps.text-top li > *::before {
    /* this is the spot indicator */
    bottom: 0;
  }

  .cd-multi-steps.text-bottom li::after {
    /* this is the line connecting 2 adjacent items */
    top: 3px;
  }
  .cd-multi-steps.text-bottom li > * {
    padding-top: 20px;
  }
  .cd-multi-steps.text-bottom li > *::before {
    /* this is the spot indicator */
    top: 0;
  }
}
/* -------------------------------- 

Add a counter to the multi-steps indicator 

-------------------------------- */
.cd-multi-steps.count li {
  counter-increment: steps;
}

.cd-multi-steps.count li > *::before {
  content: counter(steps) " - ";
}

@media only screen and (min-width: 768px) {
  .cd-multi-steps.text-top.count li > *::before,
  .cd-multi-steps.text-bottom.count li > *::before {
    /* this is the spot indicator */
    content: counter(steps);
    height: 26px;
    width: 26px;
    line-height: 26px;
    font-size: 1.4rem;
    color: #ffffff;
  }

  .cd-multi-steps.text-top.count li:not(.current) em::before,
  .cd-multi-steps.text-bottom.count li:not(.current) em::before {
    /* steps not visited yet - counter color */
    color: #2c3f4c;
  }

  .cd-multi-steps.text-top.count li::after {
    bottom: 11px;
  }

  .cd-multi-steps.text-top.count li > * {
    padding-bottom: 34px;
  }

  .cd-multi-steps.text-bottom.count li::after {
    top: 11px;
  }

  .cd-multi-steps.text-bottom.count li > * {
    padding-top: 34px;
  }
}

.cd-multi-steps li a {
    cursor: default;
}


.cd-multi-steps li.current > * {
    font-weight: 600;
    font-style: normal;

}

.next {
    font-style: italic;
}

/**********FIN DE LOS ESTILOS DE LOS ESTADOS**********/
