﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Montserrat:wght@800&family=Roboto:wght@300&display=swap');

body {
    font-family: 'Lato', sans-serif !important;
}
h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
}
.hiddenheading {
    display: none;
}

a[data-command='p'],
a[data-command='h1'],
a[data-command='h2'],
a[data-command='h3'],
a[data-command='h4'],
a[data-command='h5'],
a[data-command='h6'],
a[data-command='insertimage'],
a[data-command='undo'],
a[data-command='redo'],
a[data-command='bold'],
a[data-command='italic'],
a[data-command='underline'],
a[data-command='strikeThrough'],
a[data-command='justifyLeft'],
a[data-command='justifyCenter'],
a[data-command='justifyRight'],
a[data-command='justifyFull'],
a[data-command='quote'],
a[data-command='insertUnorderedList'],
a[data-command='insertOrderedList'],
a[data-command='createlink'],
a[data-command='unlink'],
a[data-command='subscript'],
a[data-command='superscript'] {
    color: #000;
    padding-right: 8px;
    text-decoration: none;
    font-weight: bolder;
}

span a {
    font-size: 0.8rem;
}

    span a:nth-of-type(odd) {
        border-right: 1px solid #9D9D9D;
    }

#counter {
    height: 400px;
    overflow-y: auto;
}



.link-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-right: 5px;
    padding: 10px;
    margin-top: auto;
    margin-bottom: auto;
    text-decoration: none;
    font-weight:bold;
    text-transform: uppercase;
    color: black;
}

    .link-menu:hover {
        /*
            color: #f7c1b7; color anterior
        */
        color: #e51938;
        text-decoration: none;
    }

.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.control-label {
    font-weight: bold;
    text-align: right;
}

.form-horizontal {
    padding: 20px;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.Precio{
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    font-size: 2rem;
    font-weight: bolder;
}
.PrecioEspecialEspecial {
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    font-size: 2rem;
    color: #780000;
    font-weight: bolder;
}
.PrecioNormal {
    text-decoration: line-through;
    font-size: 1rem;
    color: #808080;
    font-weight: bold;
}

.btn-flotante {
    font-size: 16px; /* Cambiar el tamaño de la tipografia */
    text-transform: uppercase; /* Texto en mayusculas */
    font-weight: bold; /* Fuente en negrita o bold */
    color: #ffffff; /* Color del texto */
    border-radius: 25px 5px 5px 25px; /* Borde del boton */
    letter-spacing: 2px; /* Espacio entre letras */
    background-color: rgba(0, 0, 0, 0.3); /* Color de fondo */
    padding: 12px 30px; /* Relleno del boton */
    position: fixed;
    top: 100px;
    right: -5px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.btn-flotante:hover {
    /*background-color: #2c2fa5;  Color de fondo al pasar el cursor */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* boton custom para cambiar color de pestañas activas en chat, color 1 */
.btn-chat-seleccion {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #6c757d; /* Color gris cuando no está activo */
    border: 1px solid #6c757d;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .btn-chat-seleccion:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
    }

    .btn-chat-seleccion:focus, .btn-chat-seleccion.focus {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
        box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
    }

    .btn-chat-seleccion:active, .btn-chat-seleccion.active {
        color: #fff;
        background-color: #2d96a9; /* Color cuando está activo */
        border-color: #2d96a9;
        box-shadow: 0 0 0 0.2rem rgba(45, 150, 169, 0.5);
    }

        .btn-chat-seleccion:active:focus, .btn-chat-seleccion.active:focus {
            box-shadow: 0 0 0 0.2rem rgba(45, 150, 169, 0.5);
        }


/* boton custom para cambiar color de pestañas activas en chat, color 2 */
.btn-chat-seleccion2 {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #6c757d; /* Color gris cuando no está activo */
    border: 1px solid #6c757d;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .btn-chat-seleccion2:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
    }

    .btn-chat-seleccion2:focus, .btn-chat-seleccion2.focus {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
        box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
    }

    .btn-chat-seleccion2:active, .btn-chat-seleccion2.active {
        color: #fff;
        background-color: #28a745; /* Color cuando está activo */
        border-color: #28a745;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    }

        .btn-chat-seleccion2:active:focus, .btn-chat-seleccion2.active:focus {
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
        }



@media only screen and (max-width: 600px) {
    .btn-flotante {
        font-size: 14px;
        padding: 12px 30px;
        top: 200px;
    }

    .link-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        margin-right: 3%;
        width: 30%;
        height: 50px;
        padding: 5px;
        margin-top: 2px;
        margin-bottom: 2px;
        text-decoration: none;
        background-color: #DE464E;
        color: white;
    }

        .link-menu:hover {
            background-color: #3b3537;
            color: white;
            text-decoration: none;
        }
} 