/* Define la fuente usando @font-face */
@font-face {
    font-family: 'CenturyGothic'; /* Nombre que quieres darle a la fuente */
    src: url('../fonts/centurygothic.ttf') format('truetype'); /* Ruta al archivo TTF */
    font-weight: normal; /* Puedes especificar 'bold' si es una fuente en negrita */
    font-style: normal; /* Puedes especificar 'italic' si es una fuente en cursiva */
}

@font-face {
    font-family: 'CenturyGothicBold'; /* Nombre que quieres darle a la fuente */
    src: url('../fonts/centurygothic_bold.ttf') format('truetype'); /* Ruta al archivo TTF */
    font-weight: normal; /* Puedes especificar 'bold' si es una fuente en negrita */
    font-style: normal; /* Puedes especificar 'italic' si es una fuente en cursiva */
}

.iconoPatas{
    width: 50px;
    border-radius: 3px;
    cursor:pointer;
}

#imgpata2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para asegurarse de que no interfiera con interacciones */
}
.iconoPatas:hover {
    opacity: 0.3;
}
#barrapatas {
    overflow-x: scroll;
}
/* Ahora puedes aplicar la fuente en cualquier parte de tu sitio web */
body {
    background-color: #FBFBF4;
    margin: 0px;
    padding: 0px;
    text-align: center;
}
body * {
    font-family: 'CenturyGothic', sans-serif; /* Uso de la fuente */
    
    
}
body * {
    color: #AAA793;
}
.clic {
    opacity: 1;
}
.clic:hover {
    opacity: 0.5;
}
#ContenedorPrincipal {

    text-align: center;
}


.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: wait;
}

.loader {
    width: 120px;
    height: 120px;
    /* animation: spin 2s linear infinite; */
    height: 120px;
    animation: spin 2s linear infinite;
    width: 200px;
    /* top: 25%; */
    /* position: fixed; */
    /* left: 35%; */
    text-align: center;
}
#ContenedorEscenarios {
    width: 30%;
    text-align: center;
    display: inline-block;
}

.DivEscenario {    
    display: inline-block;
    width:40%;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    filter: grayscale(100%);
}

.DivEscenario:hover { 
    filter: grayscale(0%);
    transition: opacity 0.5s ease-in-out;
}
.DivEscenario img {
    width: 100%;    
    border-radius: 10px;
}
#contenedor_sim{
    width:350px;
}
#barra_telas_response{
   
        overflow-x: auto;
        white-space: nowrap;
    
}
.barra_icono {
    width:50px;
    height:50px;
    display: inline;
    padding:2px;
    border-radius:5px;
    margin-right:2px;
}
.barra {
        background-color: #fafafb;
        /* height: 36px; */
        margin: 0px;
          margin-bottom: 0px;
        border-radius: 8px;
        margin-bottom: 6px;
        padding: 0px; 
        text-align: left;
}

@media (max-width: 2400px) {
    /* #contenedor_sim{
        width: 40%;
    } */
    
}


@media (max-width: 1000px) {
    #ContenedorEscenarios {
        width: 50%;
    }
    /* #contenedor_sim{
        width: 40%;
    } */
    
}

/* Tamaño de texto para móviles */
@media (max-width: 700px) {
    #ContenedorEscenarios {
        width: 100%;
    }
    #contenedor_sim{
        width: 90%;
    }

    .loader {
        width: 120px;
        height: 120px;
        /* animation: spin 2s linear infinite; */
        height: 120px;
        animation: spin 2s linear infinite;
        width: 200px;
        /* top: 15%; */
        /* position: fixed; */
        /* left: 24%; */
        text-align: center;
    }
}


