﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
    background: #e0e0e0 !important;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.btn {
    border: solid 1px #e0e0e0 !important;
}

.card-header {
    background-color: #fff !important;
}

.card-footer {
    background-color: #f7f7f7 !important;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 95% !important;
        padding-bottom: 40px;
        margin-top: 20px;
    }
}

.hidden {
    display: none !important;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
    }
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    margin-top: 20px;
}

a {
    text-decoration: none !important;
}
.badge-light {
    color: #212529 !important;
}

#bloqueoPantalla {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}