﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
#msjInf {
    color: gray;
}

/*.navbar {
    background-color: #222 !important;
    border-color: #080808 !important;
}

.navbar-inverse a{
    color: white !important;
}*/

#btnDisabled, #btnDisabled:hover {
    cursor: not-allowed;
}

#Checks {
    background: #5050501c;
    margin-left: 0px;
    margin-right: 15px;
    margin-top: 15px;
}

    #Checks .form-check {
        padding-bottom: 8px;
    }

#frmPrincipal {
    background: #5050501c;
    margin-left: 0px;
    margin-right: 0px;
}

h3 {
    margin-top: 10px;
    padding-top: 20px;
}

#Cabecera {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 11px;
    padding-left: 41px;
    /*background-color: #f17513b0;*/
    background-color: #fd9f1c;
    border-radius: 5px;
    padding: 12px;
    text-align: center;
    /*background: linear-gradient(0deg, rgba(254,243,19,0.8491771708683473) 0%, rgba(249,143,5,0.804359243697479) 13%);*/
    color: white;
    font-weight: bold;
    box-shadow: rgb(100 100 111 / 43%) 0px 7px 29px 0px;
    /*background-image: radial-gradient(49% 81% at 45% 47%, #FFE20345 0%, #073AFF00 100%),radial-gradient(113% 91% at 17% -2%, #FF5A00FF 1%, #FF000000 99%),radial-gradient(142% 91% at 83% 7%, #FFDB00FF 1%, #FF000000 99%),radial-gradient(142% 91% at -6% 74%, #FF0049FF 1%, #FF000000 99%),radial-gradient(142% 91% at 111% 84%, #FF7000FF 0%, #FF0000FF 100%);*/
}

    #Cabecera h1 {
        font-size: 29px;
        color: #ffffffe6;
    }

    #Cabecera p {
        font-size: 17px;
        color: #ffffffe6;
    }

#frmPrincipal button {
    margin-top: 30px;
    margin-bottom: 10px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.container {
    max-width: 100% !important;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

quiz {
    padding: 45px;
    border-radius: 10px;
    margin: auto;
    background-color: #5050501c;
}

    quiz label {
        width: 72px;
        font-weight: bold;
        display: inline-block;
    }

    quiz input[type = "text"],
    quiz input[type="email"] {
        width: 100%;
        border: 1px solid #f6f6f6;
        border-radius: 3px;
        margin: 2px 0;
    }

    quiz input[type = "submit"] {
        width: 100%;
        padding: 8px 16px;
        margin-top: 32px;
        border: 1px solid #000;
        border-radius: 5px;
        display: block;
        color: #fff;
        background-color: #000;
    }

        quiz input[type = "submit"]:hover {
            cursor: pointer;
        }

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


/* ========================= PRUEBA LOADING ======================= */

.loader-container {
    top: 53PX;
    position: absolute;
    background: linear-gradient(90deg, rgba(0,0,0,0.4948354341736695) 100%, rgba(245,245,245,1) 100%);
    height: 100%;
    width: 100%;
    z-index: 998;
}

.loader {
    /*border: 16px solid #f3f3f3;*/ /* Light grey */
    /*border-top: 16px solid #3498db;*/ /* Blue */
    /*border-radius: 50%;
        width: 120px;
        height: 120px;
        animation: spin 2s linear infinite;*/

    border: 7px solid #b3a3a3;
    border-top: 7px solid #3498db;
    border-radius: 99%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 35%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}