﻿#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

    #loading img {
        /* Agrega estilos adicionales según sea necesario */
    }

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semi-transparente */
    z-index: 9999; /* Asegura que el overlay esté por encima de todo */
    display: none; /* Inicialmente oculto */
}

#mainForm.disabled {
    filter: blur(2px); /* Aplica un efecto de difuminado al formulario */
    pointer-events: none; /* Evita la interacción con los elementos del formulario */
}

#codigoLoginRequest {
    text-align: left; /* Centra el contenido horizontalmente */
}

.codigo-input-container {
    display: flex;
    justify-content: center; /* Centra los elementos horizontalmente */
    width: 80%; /* Ancho del contenedor */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
}

.codigo-input {
    width: 80px;
    height: 80px;
    margin: 0 5px; /* Espacio entre los campos de entrada */
    text-align: center; /* Centra el texto dentro de los campos de entrada */
    font-size: 18px;
    font-weight: bold;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay semi-transparente */
    z-index: 999; /* Asegura que esté por encima de todos los demás elementos */
    display: none; /* Oculto por defecto */
}

.ventana-notificacion {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #ffffff;
    z-index: 1000; /* Asegura que esté por encima del overlay */
}


.logo {
    width: 100px; /* Ajusta el tamaño del logo según tus necesidades */
    height: auto;
}

#tituloNotificacion {
    font-size: 24px;
    margin-top: 10px;
}

#detalleNotificacion {
    font-size: 16px;
    margin-top: 10px;
}



#opciones {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    background-color: #FF4D00;
    color: white;
    border: 2px solid #FF4D00;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    text-align: left; /* Alinea el texto a la izquierda */
    display: flex; /* Añade flexbox para poder alinear la imagen y el texto */
    align-items: center; /* Alinea los elementos verticalmente */
}

    button:hover {
        background-color: #FF4D00;
        color: white;
    }

.icono {
    width: 48px;
    height: 48px;
    margin-right: 10px; /* Ajusta el espacio entre la imagen y el texto */
    background-color: white;
    border: 2px solid #FF4D00;
    border-radius: 5px;
}

.texto {
    vertical-align: middle;
}

/* Estilos para los inputs */
input[type="text"],
input[type="password"] {
    border: 2px solid #FF4D00; /* Agrega un borde naranja alrededor del input */
    border-radius: 5px; /* Agrega bordes redondeados */
    padding: 10px; /* Ajusta el espacio interno */
    width: 100%; /* Establece el ancho al 100% */
    margin-bottom: 10px; /* Agrega espacio entre los inputs */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

/* Estilos para los textareas */
textarea {
    border: 2px solid #FF4D00; /* Agrega un borde naranja alrededor del textarea */
    border-radius: 5px; /* Agrega bordes redondeados */
    padding: 10px; /* Ajusta el espacio interno */
    width: 100%; /* Establece el ancho al 100% */
    margin-bottom: 10px; /* Agrega espacio entre los textareas */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

.styled-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #FF4D00; /* Naranja Original */
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

    .styled-checkbox:checked {
        background-color: #FF4D00; /* Naranja Original */
    }

    .styled-checkbox + label {
        padding-left: 8px;
        cursor: pointer;
    }

/* Para ventas de  ofertas */
.plan-selector {
    display: flex;
    flex-direction: column;
}

.plan-option {
    margin-bottom: 10px;
    padding: 10px;
    border: 2px solid #E2E2E2;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

    .plan-option:hover {
        border-color: #FF8819;
    }

    .plan-option.selected {
        border-color: #FF4D00;
    }

.plan-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.plan-price {
    color: #00ACC5;
    margin-bottom: 5px;
}

.plan-image {
    max-width: 80%;
    height: auto;
    align-content: center;
}

/* Estilos para el formulario de ingreso de número de teléfono */
#divphoneform {
    display: none; /* Ocultar inicialmente el formulario */
}

/* Estilo para reportes */
/* Estilos personalizados */
.orange-bg {
    background-color: #FF4D00;
    color: white;
    text-align: center;
}

.gray-bg {
    background-color: #F5F5F5;
}

/* camara preview box */
#detection-overlay {
    position: absolute;
    border: 2px solid red; /* Borde rojo para resaltar el área detectada */
    background-color: rgba(255, 0, 0, 0.3); /* Color de fondo semitransparente */
    pointer-events: none; /* Evitar que la superposición interfiera con eventos de clic */
}

.btn-close {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    background-image: url('../images/close.png'); /* Cambia la ruta a la imagen de cerrar */
    background-size: cover;
    background-position: center;
    z-index: 1000; /* Asegura que esté encima de otros elementos */
}

.screenshot-image {
    width: 150px;
    height: 90px;
    border-radius: 4px;
    border: 2px solid whitesmoke;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 5px;
    left: 10px;
    background: white;
}

.display-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 5% auto;
    position: relative;
}

video {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.video-options {
    position: absolute;
    left: 20px;
    top: 30px;
}

.controls {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
}

    .controls > button {
        width: 45px;
        height: 45px;
        text-align: center;
        border-radius: 100%;
        margin: 0 6px;
        background: transparent;
    }

        .controls > button:hover svg {
            color: white !important;
        }

@media (min-width: 300px) and (max-width: 400px) {
    .controls {
        flex-direction: column;
    }

        .controls button {
            margin: 5px 0 !important;
        }
}

.controls > button > svg {
    height: 20px;
    width: 18px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.controls button:nth-child(1) {
    border: 2px solid #D2002E;
}

    .controls button:nth-child(1) svg {
        color: #D2002E;
    }

.controls button:nth-child(2) {
    border: 2px solid #008496;
}

    .controls button:nth-child(2) svg {
        color: #008496;
    }

.controls button:nth-child(3) {
    border: 2px solid #00B541;
}

    .controls button:nth-child(3) svg {
        color: #00B541;
    }

.controls > button {
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 100%;
    margin: 0 6px;
    background: transparent;
}

    .controls > button:hover svg {
        color: white;
    }