/* 
    Created on : Nov 10, 2017, 4:45:56 PM
    Author     : pramirez
*/

:root {
    --color-primary: rgb(47, 97, 146);
    --inverse-color-primary: #d9534f;
}

* {
    padding: 0;
    margin: 0;
}

html,
body,
#fullheight {
    min-height: 100% !important;
    height: 100%;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

body {
    min-height: 0 !important;
    height: auto;
    background: -moz-linear-gradient(165deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    background: -webkit-linear-gradient(165deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    background: var(--color-primary) url(../img/pattern_3.svg) repeat-y center left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

input {
    outline: none !important;
}

.checkbox {
    padding-left: 20px;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
}

.checkbox input[type="checkbox"]:focus+label::before {}

.checkbox input[type="checkbox"]:checked+label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled+label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
    display: inline-block;
    line-height: 1em;
}

.checkbox.checkbox-inline.w-50 {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked+label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked+label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked+label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    /* margin-left: -20px; */
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    /* margin-left: -20px; */
    border-radius: 50%;
    background-color: var(--color-primary);
    background-color: var(--inverse-color-primary);
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
    width: 0!important;
    height: 0!important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(24, 75, 168, .5);
}

element.style {}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(24, 75, 168, .5);
}

.radio input[type="radio"]:focus+label::before {}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
    opacity: 0.65;
}

.radio input[type="radio"]:disabled+label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
    display: inline-block;
    line-height: 1em;
}

.radio-primary input[type="radio"]+label::after {
    background-color: var(--color-primary);
}

.radio-primary input[type="radio"]:checked+label::before {
    border-color: var(--color-primary);
}

.radio-primary input[type="radio"]:checked+label::after {
    background-color: var(--color-primary);
}

.radio-danger input[type="radio"]+label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"]+label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::after {
    background-color: #5cb85c;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 33, 33, .7);
    z-index: 9999;
}

.loaded .loader {
    display: none;
}

.sk-fading-circle {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1862b6;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}


body {}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 3;
}

#main {
    /* margin-top: 100px; */
    /*margin-bottom: 100px;*/
    max-width: 1500px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.print #main {
    margin: 0;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.steps {
    justify-content: center;
    margin: 0 auto;
}

.steps .step {
    display: none;
    visibility: hidden;
    position: absolute;
    max-width: 1000px !important;
    background: rgba(0, 0, 0, .3);
    background: #1862b6;
    background: rgba(11, 44, 82, 0.8);
    color: #fff;
}



.blk-01 {
    background: rgba(0, 0, 0, .3);
    border-radius: 5px;
    padding: 20px;
}

.steps .step.current {
    display: block;
    visibility: visible;
    margin: 0 auto;
    margin-bottom: 50px;
}

/*BLOQUES*/
.card-header {
    padding: 20px 30px;
}

.card-body {
    padding: 30px;
}

/*
ESTE ES EL BLOQUE DE PREGUNTAS


*/
.question {
    margin-bottom: 20px;
    background: #ededed;
    padding: 15px 15px 25px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 3px;
    position: relative;
    background: none;
}

.question-text {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
    display: block;
    min-width: 100%;
}

.question-options {
    min-width: 100%;
}

.question-wrapper {}

.pre-options-text,
.post-options-text {
    display: inline-block;
}

.options-headers-wrapper {
    display: none;
}

@media(max-width: 1024px) {
    .radio.radio-inline {
        display: block;
        margin-left: 0;
        padding-left: 0;
    }

    .post-options-text {
        padding-left: 0;
        margin-left: 0 !important;
    }
}

@media screen and (min-width: 1025px) {
    .options-headers-wrapper {
        display: grid !important;
    }

    .card {
        display: none;
    }

    .question {
        display: grid;
        grid-template-columns: 2fr 3fr;
        padding-bottom: 15px;
    }

    .question p {
        margin-bottom: 0;
    }

    .question-options {
        padding-top: 5px;
    }

    .question .question-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .question .radio.radio-inline {
        /* width: 100%; */
        text-align: center;
        margin: 0 auto;
        /* position: relative; */
    }

    .question .radio.radio-inline label {
        text-indent: -99999rem;
        display: block;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .question .radio.radio-inline label::before {
        top: -15px;
        left: -20px;
    }

    .question .radio.radio-inline label::after {
        top: -12px;
        left: -17px;
    }

    .pre-options-text {
        display: none;
    }

    .post-options-text {
        display: none;
    }
}


@media(max-width: 576px) {
    .card {
        border-radius: 0;
    }
}

.options-headers-wrapper {
    display: none;
    grid-template-columns: 2fr 3fr;
}

.options-headers-wrapper .options {
    display: flex;
    justify-content: space-between;
    /* display: none; */
}

.options-headers-wrapper .options .option-header {
    min-width: 0;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    text-align: center;
}

.post-options-text {
    margin-left: 10px;
}

.pre-options-text {
    text-align: right;
}

.post-options-text {
    text-align: left;
}

.center {
    text-align: center;
}

select.form-control {
    display: inline-block;
    width: auto;
}

.form-group {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 0;
}

span.error,
label.error {

    background: #720b06;
    color: #fff;
    padding: 2px 10px;
    border-radius: 0 0 3px 3px;
    font-size: .8em;
    line-height: 20px;
    left: -1px;
    display: block;
    position: absolute;
    bottom: -10px;
    right: -1px;
}

.finish span.error,
.finish label.error {
    bottom: 0;
    left: 0;
    right: 0;
}


.fill-height-or-more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fill-height-or-more>div {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.list {
    margin-left: 1em;
}

ol.list>li {
    margin-bottom: 1em !important;
}


.progressbar {
    counter-reset: step;
    margin-left: -30px;

}

.progressbar li {
    list-style-type: none;
    float: left;
    font-size: 15px;
    line-height: 0.9em;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    display: block;
    padding-left: 30px;
}

@media(max-width: 1024px) {
    .progressbar li {
        padding-left: 5px;
    }
}


.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 25px !important;
    border: 3px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #7d7d7d;
}

.progressbar li:after {
    width: 100%;
    height: 20px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 5px;
    left: -40%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active {
    color: green;
}

.progressbar li.active:before {
    background-color: #55b776;
    border-color: #55b776;
    color: #fff;
}

.progressbar li.active+li:after {
    background-color: #55b776;
}

.stepcounter {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin: 0 auto;
    margin-bottom: 25px;
    margin-top: 0px;
    max-width: 90%;
}

.main-title {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
    font-size: 2rem;
    margin: 2rem 0 1rem;
    position: relative;
    z-index: 1;
}

#pgFooter {
    bottom: 0;
    background: #333;
    padding: 30px 30px 15px 30px;
    display: block;
    color: #fff;
    z-index: 999;
    position: static;
    text-align: justify;
    width: 100vw;
}

.modal {
    color: #000;
}

@media(max-width: 1024px) {
    #pgFooter {
        padding-left: 0;
        padding-right: 0;

    }
}


@page {
    size: A4;
    margin: 0;
}

@media print {

    html,
    body {
        width: 210mm;
        height: 297mm;
    }
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: rgba(24, 75, 168, .5);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(24, 75, 168, .5);
    outline: 0 none;
}

