.wizard > .steps .current-info, 
.wizard > .steps .number {
    display: none; 
}

#wizard {
    /*    min-height: 834px;*/
    position: relative;
    background: #fff;
    /*    margin-right: 60px;*/
        padding: 50px; 
}
.steps {
    margin-bottom: 30px;
}
.steps ul {
    display: flex;
    position: relative; 
}
.steps ul li {
    width: 20.16%;
    margin-right: 10px; 
}
.steps ul li a {
    display: inline-block;
    width: 100%;
    height: 7px;
    background: #e6e6e6;
    border-radius: 3.5px;
}
.steps ul li.first a, .steps ul li.checked a {
    background: #ffd400;
    transition: all 0.5s ease; 
}
.steps ul:before {
    content: "Información de Envío";
    font-size: 22px;
    color: #333;
    top: -38px;
    position: absolute; 
}
.steps ul.step-2:before {
    content: "Información para Factura";
}
.steps ul.step-3:before {
    content: "Información Usuario"; 
}
.steps ul.step-4:before {
    content: "Confirmación del Pedido"; 
}

.form-row {
    margin-bottom: 24px; 
}
.form-row label {
    margin-bottom: 8px;
    display: block;
}
.form-row.form-group {
    display: flex; 
}
.form-row.form-group .form-holder {
    width: 50%;
    margin-right: 21px; 
}
.form-row.form-group .form-holder:last-child {
    margin-right: 0; 
}
.form-row.form-group .form-holder-3 {
    width: 33%;
    margin-right: 21px; 
}
.form-row.form-group .form-holder-3:last-child {
    margin-right: 0; 
}

.form-holder {
    position: relative; 
}
.form-holder i {
    position: absolute;
    top: 11px;
    right: 19px;
    font-size: 17px;
    color: #999;
}

.form-control {
    height: 42px;
    border: 1px solid #e6e6e6;
    background: none;
    width: 100%;
    padding: 0 18px; 
    border-radius: 0;
}
.form-control:focus {
    border-color: #3921c1;
    -webkit-box-shadow:0px 0px 3px #3921c1 inset; 
    -moz-box-shadow:0px 0px 3px #3921c1 inset;  
    -o-box-shadow:0px 0px 3px #3921c1 inset;	
    box-shadow:0px 0px 3px #3921c1 inset;
}
.form-control:hover{
    border-color: #3921c1;     
}
.form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 13px; 
}
.form-control::-moz-placeholder {
    color: #999;
    font-size: 13px;
}
.form-control:-ms-input-placeholder {
    color: #999;
    font-size: 13px; 
}
.form-control:-moz-placeholder {
    color: #999;
    font-size: 13px; 
}

textarea.form-control {
    padding-top: 11px;
    padding-bottom: 11px; 
}

.option {
    color: #999;
}

.actions ul {
    display: flex;
    margin-top: 30px;
    justify-content: space-between; 
}
.actions ul.step-last {
    justify-content: flex-end; 
}
.actions ul.step-last li:first-child {
    display: none; 
}
.actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 50px;
    width: 140px;
    align-items: center;
    background: #ffb700;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    color: #000;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 600; 
}
.actions li a:before {
    content: '\f054';
    position: absolute;
    top: 14px;
    right: 24px;
    font-family: Font Awesome\ 5 Free;
    -webkit-transform: translateZ(0);
    transform: translateZ(0); 
}
.actions li a:hover {
    background: #ffd700; 
}
.actions li a:hover:before {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; 
}
.actions li[aria-disabled="true"] a {
    display: none; 
}
.actions li:first-child a {
    background: #eaeaea;
    color: #1d1d1d;
    padding-left: 48px; 
}
.actions li:first-child a:before {
    content: '\f053';
    left: 26px; 
}
.actions li:first-child a:hover {
    background: #cacaca; 
}
.actions li:last-child a {
    padding-left: 29px;
    width: 167px;
    font-weight: 600; 
}
.actions li:last-child a:before {
    right: 30px; 
}

@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px); }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px); }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px); }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px); }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px); }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0); } }
@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px); }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px); }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px); }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px); }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px); }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0); } }

@media (max-width: 1500px) {
    
}

@media (max-width: 1199px) {
    #wizard {
        margin-right: 40px;
        min-height: 829px;
        padding-left: 60px;
        padding-right: 60px; 
    } 
}

@media (max-width: 991px) {
    #wizard {
        margin-right: 0;
        padding-left: 40px;
        padding-right: 40px;
    } 
}

@media (max-width: 767px) {
    #wizard {
        min-height: unset;
        padding: 70px 20px 40px; 
    }

    .form-row.form-group {
        display: block; 
    }
    .form-row.form-group .form-holder {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px; 
    }
    .form-row.form-group .form-holder-3 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px; 
    } 
}

/*radio styles*/
.itsaradio input[type="radio"] { 
    display: none; 
}

.itsaradio input[type="radio"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: #1d1d1d;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.itsaradio input[type="radio"] + label:last-child { 
    margin-bottom: 0; 
}

.itsaradio input[type="radio"] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
    filter: alpha(opacity=90); /* For IE8 and earlier */
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.itsaradio input[type="radio"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*Checkboxes styles*/
.itsacheckbox input[type="checkbox"] { 
    display: none; 
}

.itsacheckbox input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: #1d1d1d;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.itsacheckbox input[type="checkbox"] + label:last-child { 
    margin-bottom: 0; 
}

.itsacheckbox input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
    filter: alpha(opacity=90); /* For IE8 and earlier */
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.itsacheckbox input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}




#iconos {
  list-style: none;
}
#iconos li  {
  padding-left: -1.6em;
}
#iconos li:before {
  font-family: FontAwesome;
  content: "\f04e"; /* FontAwesome Unicode */
  display: inline-block;
  margin-left: 0px;
  width: 1.6em;
}