﻿.navbar-brand {
    font-size: 2rem;
}

.home .card-header {
    font-size: 4rem;
}

span.role {
    font-size: .8rem;
}

.new-campaign fieldset {
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.date {
    /*width: calc(100% - 80px);*/
}

.time-zone {
    float: right;
    width: 70px;
    margin-top: -37px;
}

.home-logo {
    max-width: 600px;
}

@media (max-width: 576px) {
    .dropdown-menu {
        border: none;
    }
}

/*------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/

.lightbox {
    display: none; /* oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    color: white;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}