/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Luna Signup Form Wizard
Version:	1.0
Last change:	09/11/17 [first release]
Assigned to:	Wmedya
Primary use:	Multi Step Form. 
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
0. colores
1. Body 
2. Input & Labels
3. Buttons
    4. Loader / .luna-loader-container
    5. Signup Container / .luna-signup-container
        5.1. Left Panel / .luna-signup-left
            5.1.1. Logo / .luna-signup-logo
            5.1.2. Testimonial Slider / .luna-slider-container
        5.2. Right Panel / .luna-signup-right
            5.2.1. Steps Counts / .steps-count
                    Header      / .steps-header 
            5.2.2. Steps / .luna-steps
            5.2.2.1 Step Content / .step
            5.2.2.2 Confirm Step / .step-confirm
            5.2.3. Buttons / .button-container
6. Animations
7. Responsive Styles
8. Bootstrap Select

-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[0. colores]
*/
:root {
    --theme-brand-color: #000000;
    /*#000111;*/
    --theme-primary-color: #65b32e;
    /* --theme-secondary-color: rgb(219 153 37);  rgb(165, 113, 20); */
    --theme-secondary-color: #f4b223;
    --theme-accent-color: #e97117;
    --theme-error-color: #c8102e;
    --theme-primary-dark-color: #328000;
    --theme-button-background: #d2d2d2;
    --theme-font-color: #292323;
    --theme-input-bg: #f5f5f5;
    --theme-input-bg--hover: #e9e9e9;
    --theme-input-border-color: #747474;
    --theme-input-border-color--hover: #b1b1b1;
    --theme-anchor-color: #1b8998;
    --theme-anchor-visited-color: #007888;
    --theme-anchor-hover-color: #41a8b6;
    --header-color: white;
    --footer-top-color: white;
    --footer-bottom-color: white;
    --footer-social-bg-color: white;
    --footer-social-color: #54606c;
    --footer-top-font-weight: var(--font-thin);
    --text-light: #ffff;
    --main-bg-color: #007888;
    --footer-bg-color: #54606c;
    --result-summary-background: #e5f1f3;
    --loading-carousel-title: #54606c;
    --loading-carousel-text: #707b85;
    --loading-separator-color: #74bcc6;
    --loading-animation-color: #74bcc6;
    --loading-text: #74bcc6;
    --continue-process-title: #007888;
    --alliance-background: #f4f8fb;
    --result-error-title: #007888;
    --result-error-text: #707b85;
    --result-error-button: #007888;
    --stepper: #65b32e;
    --stepper-inner-active: #007888;
    --stepper-outter-active: #007888;
}

.w-100{
    width: 100% !important;
}

.h-100{
    height: 100% !important;
}







/*------------------------------------------------------------------
[1. Body / body]
*/
body {
    font-size: 13px;
    font-family: 'Open Sans', arial, helvetica, sans-serif;
    color: #565555;
    background: #FFF;
}

body.background-image {
    /* background: url(../images/bg.jpg) #fff;  */
    background-size: cover;
}

* {
    -webkit-font-smoothing: antialiased;
}

.row {
    margin: 0px;
}

h1 {
    font-size: 34px;
    font-weight: 300;
    color: #34ba6d;
}

p {
    font-size: 16px;
    line-height: 30px;
}

.bold{
    font-weight: bold;
}
.steps-footer {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
}

.steps-footer-banner {
    background: var(--theme-secondary-color);
    padding: 1rem;
}

.steps-footer-aviso-derechos{
    width: 100%;
    display: block;
    text-align: center;
}
.steps-footer-aviso-derechos img{
    height: 60px;
    margin-top:0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
}
.steps-footer-aviso-group{
    width: 100%;   
    text-align: center;
    margin-top: 5px;
}
.steps-footer-aviso a{
    text-decoration: none;
    color: #fff;
}
.steps-next-back{
    text-align: center;
}
#lblEstadoMunicipio {
    font-size: 1.25rem;
    font-weight: bold;
    width: 100%;
}

.span-error {
    color: red;
    display: inline-block;
    width: 100%;
}

/*------------------------------------------------------------------
[2.Input & Labels ]
*/

.form-group {
    margin-bottom: 25px;
    position: relative;
}


.formLabel {
    display: block;
    position: absolute;
    font-size: 20px;
    color: #999;
    font-weight: 500;
    line-height: 1.2;
    transition: all .2s
}

.formLabel.active {
    -webkit-transform: translateY(-140%);
    transform: translateY(-140%);
    font-size: 16px;
}


.formInput {
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 24px;
    width: 100%;
    border-bottom: 2px solid #EEE;
    display: block;
}

.formInput:focus {
    outline: none;
    border-bottom: 2px solid #CCC;
    -webkit-transition: border-bottom .5s;
    -moz-transition: border-bottom .5s;
    -ms-transition: border-bottom .5s;
    -o-transition: border-bottom .5s;
    transition: border-bottom .5s;
}

.formInput.input-error {
    border-bottom-color: rgba(0, 0, 0, 0.5);
}

.formInput.error {
    border-bottom-color: #ff6d6d;
}

.errorIcon {
    position: absolute;
    top: 8px;
    right: 0;
    display: none;
}

.errorIcon i {
    color: #ff6d6d;
    font-size: 18px;
}

.error {
    color: #ff6d6d;
}


.help-error {
    font-size: 14px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    padding: 10px 0;
    display: none;
    text-align: right;
}

.help-error i {
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
    float: right;
    margin-left: 20px;
}

.help-info {
    text-align: right;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    padding: 10px 0;
}

.help-block {
    color: #ecb200;
    font-size: 14px;
}

.steps-footer-derecho {
    color: #000;
    display: inline-block;
}

.steps-footer-aviso {
    color: #000;
    text-transform: uppercase;
}
.steps-footer-aviso a {
    color: #000;
    text-transform: uppercase;
}

.steps-footer-terminos {
    color: #000;
    text-transform: uppercase;
}

.steps-footer-creado {
    color: var(--theme-input-bg);
    text-transform: uppercase;
}

.procesandoValidacion_1 {

    font-size: 3rem;
    font-weight: bold;
    color: var(--theme-brand-color);
    display: block;
}

.procesandoValidacion_2 {
    font-size: 2rem;
    color: var(--theme-secondary-color);
    display: block;
}

.procesandoValidacion_3 {

    font-size: 2rem;
    color: var(--theme-font-color);
}

.autorizado_Header {
    font-size: 3rem;
    font-weight: bold;
    color: var(--theme-brand-color);
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.autorizado_Monto {
    font-size: 5rem;
    font-weight: bold;
    color: var(--theme-primary-dark-color);
    display: block;
}
.autorizado_subtexto {
    font-size: 1.5rem;
    color: var(--theme-anchor-visited-color);
    display: block;
}

.waitCodeSpinner {
    font-size: 3rem;
    font-weight: bold;
    color: var(--theme-brand-color);
    display: block;

}
.waitCodeImage {
    width: 100%;
    height: auto;
}


/*------------------------------------------------------------------
[3. Buttons ]
*/
.btn {
    font-weight: 700;
    font-size: 15px;
}

.btn-rounded {
    border-radius: 30px;
}

.btn-blue {
    background: #48A5EA;
    color: #FFF;
    padding: 10px 30px !important;
}

.btn-blue:hover {
    background: #317db5;
    color: #FFF;
}

.btn-green {
    background: #32b367;
    color: #FFF;
    padding: 10px 30px !important;
}

.btn-green:hover {
    background: #12b957;
    color: #FFF;
}

.btn-white-transparent {
    border: 2px solid #FFF;
    background: none;
    color: #FFF;
    padding: 10px 30px !important;
}

.btn-white-transparent:hover {
    background: #FFF;
    color: #777;
}

.btn-reenvio {
    background-color: var(--theme-secondary-color) !important;
    color: var(--theme-input-bg);
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 0px;
}
.date-old {
    display: flex;
}

.date-old span {
    margin-top:auto;
}
.date-old input {
    width: 25% !important;
    text-align: center;
}
.date-old select {
    width: 45% !important;
}
.input_date-old .form-group{
    margin: 0px;
}

.bg-segundo-plano {
    /* background-color: var(--theme-button-background); */
    background-color: #fff;
    color: var(--theme-input-border-color);
}

.bg-primer-plano {
    background-color: var(--theme-secondary-color);
    color: #fff;
}
.bg-primer-plano:focus{
    color: #fff;
}

.btnchk {
    background-color: transparent !important;
    color: var(--color-principal);
    font-size: 2.5rem;
    line-height: 1;
    padding: 0;
    margin-left: 5px;
    box-shadow: none !important;
}

.btnchk:hover, .btnchk:active, .btnchk:focus {
    background-color: transparent  !important;
    color: var(--color-principal)  !important;
    border: 0px !important;
    outline: none !important;
}

.btn-group-switch button{
    /* margin: 0px; */
    width: 100px;
    border: 1px solid #ebebeb;
    box-shadow: 1px 4px 10px -4px #bcbcbc;
}
/*------------------------------------------------------------------
[4. Loader / .luna-loader-container]
*/
.luna-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #FFF;
    z-index: 1000;
}

.luna-loader {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 50%;
    margin-left: -25px;
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}


/*------------------------------------------------------------------
[5. Signup Container / .luna-signup-container]
*/
.luna-signup-container {
    display: none;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
}


/*------------------------------------------------------------------
[5.1 Left Panel / .luna-signup-left]
*/
.luna-signup-left {
    padding: 60px 5px 30px;
    background: var(--theme-brand-color);
    position: fixed;
    width: 200px;
}

.luna-signup-left-overlay {
    z-index: -1;
    position: fixed;
    height: auto;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 19%;
    background: url("../images/bg-left.png") right bottom no-repeat var(--theme-brand-color);

}

.luna-signup-left p {
    font-size: 18px;
    line-height: 30px;
    color: #999;
}

.luna-navigation {
    height: calc(100% - 70px);
    position: relative;
}

.dots {
    list-style: none;
    margin: 0;
    padding: 0;
    position:
        absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -20px;
}

.dots li {
    margin-bottom: 6px;
    text-align: center;
    width: 20px;
}

.dots span {
    position: relative;
    width: 8px;
    height: 8px;
    display: block;
    margin: auto;
    border-radius: 50%;
    background: #FFF;
    opacity: 0.8;
}

.dots span:hover {
    cursor: default;
}

.dots span.selected {
    width: 10px;
    height: 10px;
    opacity: 1;
    margin-top: 10px;
}

.dots span.selected:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 5px;
    border-color: transparent transparent #ffffff transparent;
}

.toPrev,
.toNext {
    width: 40px;
    height: 40px;
    border: 2px solid #FFF;
    color: #FFF;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    line-height: 40px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    z-index: 1000;
}

.toNext:hover,
.toPrev:hover {
    text-decoration: none;
}

.toNext {
    bottom: 0;
}

.label-block {
    display: block;
    margin: 16px 0 !important;
}

/*------------------------------------------------------------------
[5.1.1. Logo / .luna-signup-logo]
*/
.luna-signup-logo {
    margin-bottom: 20px;
    max-width: 200px;
    width: 100%;
}

/*------------------------------------------------------------------
[5.2. Right Panel / .luna-signup-right]
*/
.luna-signup-right {
    position: relative;
    margin-left: 200px;
    /*overflow-y: auto;*/
    padding: 60px 0px 0 0
}

/*------------------------------------------------------------------
[5.2.1 Steps Counts / .steps-count]
*/
.steps-count {
    font-weight: bold;
    font-size: 13px;
    text-align: right;
}

.steps-header {
    margin-bottom: 0rem;
}

.steps-header .steps-header_title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--theme-brand-color);
    text-align: center;
}

.steps-header .steps-header_subtitle {
    font-size: 1.50rem;
    text-align: center;
}

/*------------------------------------------------------------------
[5.2.2 Steps / .luna-steps]
*/
.luna-steps {
    height: 500px;
    position: relative;
}

.luna-steps .step {
    padding-left: 30px;
    padding-right: 30px;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.step.step-active {
    transform: none;
    visibility: visible;
    opacity: 1;
}

.step .form-group {
    display: none;
}

.step.step-active .form-group {
    display: block;
}

.step-hide {
    -webkit-transform: translateY(-50px) !important;
    transform: translateY(-50px) !important;
}

.step-label {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #999;
    margin-top: -29px;
}

.luna-steps .checkbox-inline,
.luna-steps .radio-inline {
    font-size: 20px;
    font-weight: 500;
    padding-left: 25px;
    line-height: 20px;
    margin-right: 20px;
    margin: 10px 20px 10px 0;
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
    margin-left: 0;
}

.luna-steps-footer{
    margin-bottom: 10px;
    padding-right: 50px;
}
.step-title {
    color: var(--theme-font-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.step-subtitle {
    font-weight: var(--font-thin);
    font-size: 1.25rem;
    border-bottom: 1px solid #EEE;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

/*------------------------------------------------------------------
[5.2.2.2 Confirm Step / .step-confirm]
*/

.step-confirm {
    height: 0;
    overflow: hidden;
}

.step-confirm.step-active {
    height: initial;
    overflow: initial;
}

.step-confirm.step-active .fadeTop {
    opacity: 0;
    animation: animateInput .3s forwards;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}



.step-confirm.step-active .fadeTop:nth-of-type(1) {
    animation-delay: 0.5s;
}

.step-confirm.step-active .fadeTop:nth-of-type(2) {
    animation-delay: 0.7s;
}

.step-confirm.step-active .fadeTop:nth-of-type(3) {
    animation-delay: 0.9s;
}

.step-confirm.step-active .fadeTop:nth-of-type(4) {
    animation-delay: 1.05s;
}

.step-confirm.step-active .fadeTop:nth-of-type(5) {
    animation-delay: 1.20s;
}

.step-confirm.step-active .fadeTop:nth-of-type(6) {
    animation-delay: 1.35s;
}

.step-confirm.step-active .fadeTop:nth-of-type(7) {
    animation-delay: 1.5s;
}

.step-confirm.step-active .fadeTop:nth-of-type(8) {
    animation-delay: 1.65s;
}

.step-confirm.step-active .fadeTop:nth-of-type(9) {
    animation-delay: 1.75s;
}

.step-confirm.step-active .fadeTop:nth-of-type(10) {
    animation-delay: 1.85s;
}

.step-confirm.step-active .fadeTop:nth-of-type(11) {
    animation-delay: 1.95s;
}

.step-confirm.step-active .fadeTop:nth-of-type(12) {
    animation-delay: 2s;
}

.step-confirm.step-active .fadeTop:nth-of-type(13) {
    animation-delay: 2.05s;
}

.step-confirm.step-active .fadeTop:nth-of-type(14) {
    animation-delay: 2.08s;
}

.step-confirm.step-active .fadeTop:nth-of-type(15) {
    animation-delay: 2.1s;
}

.step-confirm-buttons {
    padding: 15px;
    text-align: center
}

.agreement {
    font-size: 14px !important;
}

.agreement a {
    color: #48a5ea;
    text-decoration: underline;
    font-weight: 600;
}

.confirm-label,
.confirm-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.confirm-label {
    color: #999
}



/*------------------------------------------------------------------
[5.2.3 Buttons / .button-container]
*/
.button-container {
    text-align: right;
    position: relative;
    z-index: 10000;
    width: 100%;
}

.button-container>div {
    display: inline-block;
    text-align: center;
    float: right;
    margin: 0 0 10px 10px;

}

.button-container>div a {
    margin-bottom: 10px;
    display: block;
}

.prevStep {
    outline: none;
    display: none;
}

.button-container a,
.button-container a:hover,
.button-container a:focus,
.button-container a:active,
.button-container a:active:focus {
    outline: none;
}

.step-body {
    margin-top: 2rem;
}

.step-body .btn-principal {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 1px 2px 5px #7f7f7f;
    border: 0px;
    outline: none;
    display: grid;
    width: 30%;
    margin-left: 10px;
    white-space: pre-wrap;
    min-height: 80px;    
}

.step-body .btn-principal:hover {
    background-color: var(--theme-brand-color);
    outline: none;
    color: var(--theme-input-bg--hover);
    transition: all .5s;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0px 3px 5px
}

.step-body .btn-principal:active,
.step-body .btn-principal:focus {
    background-color: var(--theme-secondary-color);
    outline: none;
    color: var(--theme-input-bg--hover);
}


.step-body .btn-principal span {
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;    
}

.step-body .btn-principal small {
    font-size: 1.25rem;
    display: block;
    font-weight: 500;
    font-size: 80%;
    text-align: center;
    padding-left: 45px;
    padding-right: 45px;
}
.btn-principal .contenedor-img {
    height: 30px;
    width: 15%;
    position: absolute;
    bottom: 15px;
    text-align: center;
}
.contenedor-img img{
    height: 30px;
    width: auto;
}




.step-body .btn-list {
    display: block;
    /* color: var(--theme-font-color); */
    /* background-color: var(--theme-button-background); */
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 1px 2px 5px #7f7f7f;
    border: 0px;
    outline: none;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 1px 2px 5px #7f7f7f;
    border: 0px;
    outline: none;
    min-height: 110px;
}

.step-body .btn-list:hover {
    /* background-color: var(--theme-brand-color);
    outline: none;
    color: var(--theme-input-bg--hover);
    transition: all .5s;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0px 3px 5px */
  
    transform: translateX(0.15em);
}

  

.step-body .btn-list:active,
.step-body .btn-list:focus {
    background-color: var(--theme-secondary-color);
    outline: none;
    color: var(--theme-input-bg--hover);
}


.step-body .btn-list span {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;    
    white-space: pre-wrap;
}

.step-body .btn-list small {
    font-size: 1.25rem;
    display: block;
    font-weight: 500;
    font-size: 80%;
}


.step-image {
    max-height: 450px;
    max-width: 100%;
}

.step-btn-next {
    background-color: var(--theme-brand-color);
    color: var(--theme-input-bg);
    outline: none;
}

.step-btn-back {
    background-color: var(--theme-secondary-color);
    color: var(--theme-input-bg);
    outline: none;
}

.nextStep:hover,
.nextStep:focus {
    background-color: var(--theme-secondary-color);
    color: var(--theme-input-bg--hover);
    outline: none;
}

.prevStep:hover,
.prevStep:focus {
    color: var(--theme-secondary-color);
    outline: none;
}

/*------------------------------------------------------------------
[6. Animations]
*/

.luna_loading {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animateInput {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes animateInput {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.survey-description {
    margin: 30px 0;
}

/*------------------------------------------------------------------
[9. BootStrap Select]
*/
.bootstrap-select.form-control {
    background: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
}

.bootstrap-select button {
    border: none;
    background: none;
    color: #333 !important;
    font-weight: normal;
    border-bottom: 2px solid #EEE;
    border-radius: 0;
    box-shadow: none;
    outline: none !important;
    font-size: 20px;
}

.bootstrap-select .btn-default:hover,
.bootstrap-select.open>.dropdown-toggle.btn-default:hover {
    background: none;
    border-color: #CCC;
    box-shadow: none !important;
}

.btn-group.open .dropdown-toggle {
    box-shadow: none;
}

.bootstrap-select .btn-default.active,
.bootstrap-select .btn-default:active,
.bootstrap-select.open>.dropdown-toggle.btn-default,
.bootstrap-select .btn-default.focus,
.bootstrap-select .btn-default:focus {
    background: none;
    outline: none !important;
    border-color: #CCC;
    color: #333;
}

.bootstrap-select .dropdown-menu {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background-color: #FFF;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu a:focus {
    outline: none;
}

.bootstrap-select.btn-group .dropdown-menu li a {
    padding: 6px 20px;
}

.bootstrap-select.btn-group .dropdown-menu li.selected a {
    color: #FFF;
    background: #48A5EA;
}

.tooltip-inner {
    color: #8a8a8a;
    background: #FFF;
    border: 2px solid #999;
    font-size: 14px;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #999;
}





/* Luna Default Theme  */

.luna-default .bootstrap-select button {
    border: 2px solid #c9c9c9;
    border-radius: 3px;
    font-size: 18px;
}

.luna-default .errorIcon {
    top: 37px;
    right: 10px;
}

.luna-default .input-group-addon {
    border: 2px solid #c9c9c9;
}

.luna-default .input-group-addon:first-child {
    border-right: 0;
}

.form-control {
    border: 0px;
    border-bottom: 1px solid var(--theme-input-border-color);
    box-shadow: none;
    border-radius: 3px;
    height: 40px;
    font-size: 18px;
}

.form-control.error {
    border-color: #ff6d6d;
}

.form-control:focus {
    outline: none;
    border-bottom: 1px solid var(--theme-secondary-color);
    box-shadow: none;
}

#lunaStepsFooterError {
    color: var(--theme-error-color);
}


.luna-default .form-group {
    margin-bottom: 30px;
}

.luna-default .step-label {
    margin-top: 0;
}


/*---------------------------------------------------------------------------
7.1 Header de los bootbox
*/
.modal-header-negro {
    background-color: rgb(0, 0, 0) !important;
    padding: 5px;
}

.modal-header-conexion-red {
    background-color: midnightblue !important;
    padding: 5px;
}

.modal-header-danger {
    background-color: crimson !important;
    padding: 5px;
    display: block;
    height: 2.5rem;
}

.modal-header-salir {
    background-color: #FFFFFF !important;
    color: rgba(0, 0, 0, .125);
    padding: 5px;
}

.modal-header-aviso-restriccion {
    background-color: gold !important;
    padding: 5px;
    display: block;
}

.container {
    width: 100%;
    padding: 0;
}

.steps-count{
    visibility: hidden;
}

/*------------------------------------------------------------------
[8. Responsive Styles]
*/
@media (min-width: 1200px) and (max-width: 1799px){
    .step-body .btn-principal{
        height: 200px;
    }
    .btn-principal .contenedor-img{
        height: 60px;
    width: auto;
    position: relative;
    /* bottom: 15px; */
    /* text-align: center;*/
    margin-left: auto;
    margin-right: auto;
    }
    .steps-footer-aviso-derechos{
        display: flex;
        text-align: left;
    }
    .steps-footer-aviso-derechos img{
        margin: 0px;
    }
    
    .steps-footer-aviso-derechos .steps-footer-derecho {
        margin-top: 22px;
    }
    .steps-footer-aviso-group{
        margin-top: 10px;
    }

    .step-body .btn-principal small {
        width: auto;
        /* margin-left: auto; */
        /* margin-right: auto; */
        height: 70px;
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 10px;
    } 
}
@media (min-width: 992px) and (max-width: 1199px) {
    .step-body .btn-principal small {
        width: 55%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }  
    .step-image {
        margin-top: 45px;
    }
    .steps-footer-aviso-group{
        margin-top: 15px;
    }

}

@media only screen and (max-width: 990px) {
    .luna-signup-left {
        padding: 60px 15px 30px
    }

    .luna-signup-right {
        padding-right: 0;
    }


    .luna-steps .step {
        padding-left: 15px;
    }
    .steps-footer-aviso-group
    {
        margin-top: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        width: 100%;
    }

    .luna-signup-logo {
        margin: 20px auto;
    }

    .step-hide {
        height: 0;
        overflow: hidden;
    }

    .luna-signup-container:after {
        display: none;
    }

    .luna-signup-left {
        padding: 15px;
        width: 100%;
        position: initial;
    }

    .luna-navigation {
        position: relative;
        height: auto;
        padding: 20px;
    }

    .luna-navigation:after {
        clear: both;
        content: '';
        display: block;
    }

    .dots {
        position: initial;
    }

    .dots {
        text-align: center;
    }

    .dots li {
        display: inline-block;
    }

    .toNext {
        float: right;
        transform: rotate(270deg);
        right: 0;
        top: 0;
        left: auto;
    }

    .toPrev {
        float: left;
        transform: rotate(270deg);
        left: 0;
        top: 0;
        bottom: auto;
        left: auto;
    }

    .luna-signup-right {
        min-height: 400px;
        padding: 20px 0;
        margin-left: 0;
    }

    .luna-steps {
        height: auto;
    }

    .luna-steps .step {
        padding: 0 15px;
        position: relative;
    }

    .steps-count,
    .button-container {
        padding-right: 15px;
    }

    .step-confirm .form-group {
        margin-bottom: 0;
        padding: 10px 0;
    }

    .step-confirm .control-label {
        font-size: 16px;
    }

    .step-confirm input,
    .step-confirm .bootstrap-select button {
        padding: 6px 15px;
        font-size: 16px;
    }

    .button-container {
        bottom: 15px;
    }

    .formLabel,
    .formInput,
    .step-label {
        font-size: 20px;
    }

    .luna-signup-left:after {
        display: none;
    }

    .confirm-label {
        text-align: left;
        margin-bottom: 5px;
    }

    .confirm-text {
        margin-bottom: 20px;
    }

    .step-confirm-buttons {
        padding: 15px 0;
    }

    

}


@media only screen and (min-width: 768px) {

    .step-body .btn-principal small {
        padding-left: 25px;
        padding-right: 25px;
    }

    .btn-principal .contenedor-img {
        height: 60px;
        width: 15%;
        position: absolute;
        bottom: 15px;
        text-align: center;
    }

    .contenedor-img img {
        height: 45px;
        width: auto;
    }


    .steps-footer {
        position: fixed;
    }

    .luna-steps-footer {
        margin-top: 300px;
        padding-right: 50px;
    }

}

@media only screen and (min-width: 992px) {
    .luna-steps-footer {
        margin-top: 10px;
        padding-right: 50px;
    }
    .steps-next-back{
        text-align: end;
    }
}