/* GENERAL */
body {background:URL('/assets/img/main_bg.png'); background-repeat: no-repeat; background-position:center; background-size: cover; font-family: 'Lato', sans-serif!important; font-size: 16px; font-size: 1rem; font-weight: 600; line-height: 1.4; color: #fff; margin: 0;}
.btn {color:#FFF!important;}
h1,h2,h3,h4,h5,h6 {color: #FFF;}
p {margin-bottom: 24px; line-height: 1.9;}
label {font-size: 16px; font-size: 1rem; font-weight: 600; margin-bottom: 5px; color: #00011c;}
/* TITLE */
#title-container {
    min-height: 460px;
    height: 100%;
    color: #fff;
    background-color: #DC3545;
    text-align: center;
    padding: 105px 28px 28px 28px;
    box-sizing: border-box;
    position: relative;
    box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
    -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
    -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
}

#title-container h2 {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    padding: 0;
    margin-bottom: 0px;
}

#title-container h3 {
    font-size: 25px;
    font-weight: 600;
    color: #82000a;
    padding: 0;
}

#title-container p {
    font-size: 13px;
    padding: 0 25px;
    line-height: 20px;
}

/* FORMS */
#qbox-container {
    padding: 0 62px;
    min-height: 650px;
    margin-bottom: 90px;
    /* box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
    -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
    -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75); */
}

#steps-container {
    margin: auto;
    width: 100%;
    min-height: 420px;
    vertical-align: middle;
    align-items: center;
    position: relative;
}

.step {
    display: none;
}

.step h4 {
    margin: 0 0 26px 0;
    padding: 0;
    position: relative;
    font-weight: 500;
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1.6;
}

img .categoria_img {
    max-width: 520px;
    width: 100%;
}

.progress {
    border-radius: 0px !important;
}

.q__question {
    position: relative;
}

.q__question:not(:last-child) {
    margin-bottom: 10px;
}

.question__input {
    position: absolute;
    left: -9999px;
}

.question__label {
    position: relative;
    display: block;
    line-height: 40px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px 20px 5px 50px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.question__label:hover {
    border-color: #DC3545;
}

.question__label:before,
.question__label:after {
    position: absolute;
    content: "";
}

.question__label:before {
    top: 12px;
    left: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #ced4da;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.question__input:checked+.question__label:before {
    background-color: #DC3545;
    box-shadow: 0 0 0 0;
}

.question__input:checked+.question__label:after {
    top: 22px;
    left: 18px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.form-check-input:checked,
.form-check-input:focus {
    background-color: #DC3545 !important;
    outline: none !important;
    border: none !important;
}

input:focus {
    outline: none;
}

#input-container {
    display: inline-block;
    box-shadow: none !important;
    margin-top: 36px !important;
}

label.form-check-label.radio-lb {
    margin-right: 15px;
}

#q-box__buttons {
    text-align: center;
    position: relative;
}

#next-btn {
    position: absolute;
    right: -62px;
    top: 0px;
    cursor: pointer;
    height: 100%;
    width: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    /* align-content: flex-end; */
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 15%, rgba(0, 212, 255, 0) 100%); */
}

#prev-btn {
    position: absolute;
    left: -62px;
    top: 0;
    cursor: pointer;
    height: 100%;
    width: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
    /* align-content: flex-end; */
    /* background: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 15%, rgba(0, 212, 255, 0) 100%); */
}

.btn-disabled {
    pointer-events: none;
    opacity: 0.4;
}

input[type="text"],
input[type="email"] {
    padding: 8px 14px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border: 1px solid #DC3545;
    border-radius: 5px;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.form-check-input:checked[type=radio],
.form-check-input:checked[type=radio]:hover,
.form-check-input:checked[type=radio]:focus,
.form-check-input:checked[type=radio]:active {
    border: none !important;
    -webkit-outline: 0px !important;
    box-shadow: none !important;
}

.form-check-input:focus,
input[type="radio"]:hover {
    box-shadow: none;
    cursor: pointer !important;
}

#success {
    display: none;
}

.back-link {
    font-weight: 700;
    color: #DC3545;
    text-decoration: none;
    font-size: 18px;
}

.back-link:hover {
    color: #82000a;
}

/* PRELOADER */
#preloader-wrapper {width: 100%; height: 100%; z-index: 1000; display: none; position: fixed; top: 0; left: 0;}

#preloader {
    background-image: url('/assets/img/cruz.png');
    width: 95px;
    height: 95px;
    border-top-color: RGB(13,14,42);
    border-radius: 100%;
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -75px 0 0 -75px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#preloader-wrapper .preloader-section {
    width: 51%;
    height: 100%;
    position: fixed;
    top: 0;
    background: #F7F9FF;
    z-index: 1000;
}

#preloader-wrapper .preloader-section.section-left {
    left: 0
}

#preloader-wrapper .preloader-section.section-right {
    right: 0;
}

.loaded #preloader-wrapper .preloader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #preloader-wrapper .preloader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #preloader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #preloader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

img.nominado {
    max-width: 160px!important;
    width: 100%;
}

.nominadoTitulo {
    padding: 0;
}

.errorTxt {
    color:#FF6F05;
}

.modal .modal-title{
    font-size: 25px;
    color:#fff;
}

.modal-header {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.modal-header .btn-close {
    position: absolute;
    top: 10;
    right:10;
    margin:0 !important;
}

.modal .modal-dialog {
    margin: 11.75rem auto;
}

.modal .modal-body {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
}

.modal .modal-body #enviarVotos{
    font-size: 25px;
    width: 280px;
    background: #809aff;
    border-radius: 50px;
}

#instruccionesVoto .modal-body p {
    font-size: 18px;
}

#instruccionesVoto .modal-body #iniciarVotacion {
    font-size: 25px;
    width: 280px;
    background: #809aff;
    border-radius: 50px;
}

.modal .modal-content {
    background: rgba(1, 18, 30, .8)!important;
    box-shadow: 10px 10px 16px rgb(0 0 0 / 25%)!important;
}

footer {
    background: URL('/assets/img/footer_bg.jpg'); height:72px; left: 0; bottom: 0; width: 100%; position: fixed; background-color: #0B5345; padding: 15px;
}

/*
@media (min-width: 990px) {
    #title-container {
        padding: 80px 28px 28px 28px;
    }

    #steps-container {
        width: 85%;
    }
}
*/

/*
@media (max-width: 991px) {
    #title-container {
        padding: 30px;
        min-height: inherit;
    }
}
*/

@media (max-width: 767px) {
    #qbox-container {
        padding: 0!important;
    }

    #steps-container {
        width: 100%;
        min-height: 400px;
    }

    #title-container {
        padding-top: 50px;
    }

    #next-btn {
        right: 0;
    }
    
    #prev-btn {
        left: 0;
    }

    img.nominado {
        max-width: 120px !important;
        width: 100%;
    }

    .nominadoTitulo {
        padding: 0 15px;
    }

    footer {
        font-size: 12px;
        padding: 10px;
        position: relative!important;
    }
}

/*
@media (max-width: 560px) {
    #qbox-container {
        padding: 40px;
    }

    #title-container {
        padding-top: 45px;
    }
} */

/* HIDE RADIO */
[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* IMAGE STYLES */
[type=radio]+img {
    cursor: pointer;
}

/* CHECKED STYLES */
[type=radio]:checked+img {
    /* outline: 2px solid #f00; */
    border: none;
        border-radius: 50%;
        box-shadow: 0px 0px 5px 4px #BA5FFF;
        -webkit-box-shadow: 0px 0px 5px 4px #BA5FFF;
        -moz-box-shadow: 0px 0px 5px 4px #BA5FFF;
        outline: none;
        transition: .1s;
}