﻿/* Agrega tus estilos CSS personalizados aquí */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.degradado {
    background: linear-gradient(-45deg, #8F2F50, #9E2A68, #842C75, #6D2D8C, #553274);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

.menu {
    background: #8F2F50;
}

.chip .avatar {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin: 0 0.5rem 0 -0.75rem;
    height: 2rem;
    width: 2rem;
    background-size: cover;
}

.ml-3, .mx-3 {
    margin-left: 1rem !important;
}

a {
    color: #27ae60;
    text-decoration: none;
    background-color: transparent;
}

.colorgris {
    color: #6e7687;
}

.chip {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    font-weight: 500;
    background-color: #E8E9E9;
    color: #6e7687;
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    font-size: .875rem;
    padding: 0 0.75rem;
}

.perfil {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    font-weight: 500;
    color: #6e7687;
    display: inline-flex;
    height: 10rem;
    line-height: 5rem;
    font-size: .875rem;
    align-items: center;
}

    .perfil .avatarPerfil {
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        float: left;
        margin: 0 0.5rem 0 -0.75rem;
        height: 7rem;
        width: 7rem;
        background-size: cover;
    }

#map {
    height: 500px;
    width: 100%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*@media screen {
    .dropdown:hover .dropdown-menu,
    .btn-group:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        margin: auto;
    }

    .dropdown-toggle {
        margin: auto;
    }

    .navbar .dropdown-toggle,
    .nav-tabs .dropdown-toggle {
        margin: auto;
    }
}*/

div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 15px !important;
}
