﻿#divTituloPantalla p {
    color: white !important;
    font-size: 30px !IMPORTANT;
    font-weight: 600;
}

 .sticky-header {  
        transition: all 0.3s ease;
        width: 100%; 
    }

.sticky {
    position: sticky;
    margin-left:-30px;
    top: 0px;
    left: 0px;
    width: 102%;
    z-index: 1000; 
}
.rotate-phone {
    width: 150px;
    height: 150px;
    display: inline-block;
    animation: rotatePhone 2s infinite ease-in-out;
    transform-origin: center;
}

@keyframes rotatePhone {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
@media (max-width:1300px) and (min-width: 1000px) {
    #MenuPrincipal
    {
        display: none !important;
    }
    .title-delito {
        font-size: 30px;
    }

    .title-tablaVariacion {
        font-size: 15px;
        align-self: center;
        margin: 0;
        text-align: center;
    }

    .indicadoresTabla .pl-4 {
        padding-top: 15px !important;
        font-size: 20px !important;
    }

    .indicadorestexto {
        font-size: 20px;
        align-self: baseline;
    }
}

@media (max-width: 1000px) {
    #MenuPrincipal
    {
        display: none !important;
    } 
    .title-delito {
        font-size: 20px;
        align-self: center;
        margin: 0;
    }
    .title-tablaVariacion
    {
        font-size:10px;
    }
    .indicadoresTabla .pl-4 {
        padding-top: 15px !important;
        font-size: 12px
    }
    .indicadorestexto {
        font-size: 13px;
        align-self: baseline;
    }
    .bg-primary {
        background-color: #007bff !important;
        height: 59px;
    }
    #content {
        margin-left: 0px;
    }

        .menuVertical img {
        vertical-align: unset;
        float: left; 
     }
 

}

@media (min-width: 576px) and (max-width: 768px) {
    .rotate-message {
        display: none; 
    }
    .container {
        max-width: 600px !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
        margin-right: 0% !important;
        margin-left: 10% !IMPORTANT;
    }
    #menuVertical {
        width: 108%;
    }
}

@media screen and (max-width: 576px) and (orientation: portrait) {
    /* Si la pantalla está en modo retrato, se mostrará este mensaje */
 
    .rotate-message {
        display: block;
        font-size: 24px;
        font-weight: bold;
        color: white; 
    }

    #tablacontainer {
        display: none; /* Ocultamos el contenido */
    }
}

@media screen and (orientation: landscape) {
    /* En modo horizontal, mostramos el contenido de la página */
    .rotate-message {
        display: none;
    }

    #tablacontainer {
        display: block;
    }
}