﻿:root {
    --header-height: auto;
    --footer-height: auto;
    --materialDesignColor: #0B9DCC;
}

 /* Inicialización de CSS*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: none; /* Para que no se vea la página sin css antes de aplicar el css de las variables */
}

/* Máximas dimensiones el 100% de su contenedor */
img {
    max-width: 100%;
    max-height: 100%;
}

.fecha {
    width: 170px;
}

.disabled-div {
    pointer-events: none;
    opacity: 0.4;
}

.fig {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thead-fixed {
    position: fixed;
    display: flex;
    left: 0;
    top: 50px;
    width: 100%;
}

.footer {
    position: fixed;
    display: flex;
    left: 0;
    bottom: 0;
    width: 100%;
}

.btn-sin-bordes {
	border: none;
}
	.btn-sin-bordes:focus {
		border: none;
		outline: none;
	}

.text-save {
	color: #00488A
}

.asterisco {
    color: darkred;
    font-weight: 900;
}

/*Quitar las flechitas de los inputs numéricos*/
/*Chrome, Safari, Edge, Opera*/
.sin-flechitas::-webkit-outer-spin-button, .sin-flechitas::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0 !important;
}

/*Firefox*/
.sin-flechitas {
    -moz-appearance: textfield;
}

.barra-sup-icono {
    background-color: #123B69;
    color: #f9ae2e;
    cursor: pointer;
    font-size: 32px;
}

.glyphicon-menu-down {
    color: #123B69;
}

.glyphicon-menu-up {
    color: #123B69;
}

.frm-control {
    height: 2rem !important;
    padding: 0 0.25rem 0.2rem 0.25rem !important;
}

.frm-group {
    border: 2px solid lightgrey;
    padding: 0.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

hr {
    margin: 0;
    padding: 0;
}

.hr-1px {
    height: 1px;
    border-width: 0;
    color: gray;
    background-color: gray;
    padding: 0;
    margin: 1px 0;
}

.hr-2px {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: gray;
    padding: 0;
    margin: 5px 0;
}

.hr-1rem {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: gray;
    padding: 0;
    margin: 1rem 0;
}

.boton {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    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;
    cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
    .boton {
        transition: none;
    }
}

.boton:hover {
    color: black;
    text-decoration: none;
    border: 1px solid #212529;
}

.boton-outline {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #212529;
    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;
    cursor: pointer;
}

.boton-outline:hover {
    color: black;
    text-decoration: none;
    border: 2px solid black;
}

    .boton-outline:focus {
        color: black;
        text-decoration: none;
        border: 2px solid black;
    }

.botonMsgBox {
    width: 100px !important;
}

.botonPuntos {
    cursor: pointer;
    color: red;
}

.botonMetro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: auto;
    height: 70px;
    min-width: 75px;
    color: white;
    margin-right: 4px;
    padding: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.botonLimon {
    background-color: #00FF00;
}

.botonAguaMarina {
    background-color: #7FFFD4;
}

.botonVerde {
    background-color: #00B058;
}

.botonNaranja {
    background-color: #F27634;
}

.botonCeleste {
    background-color: #31B0D5;
}

.botonRojo {
    background-color: #D01040;
}

.botonAmarillo {
    background-color: #FBC324;
}

.botonVerdeAgua {
    background-color: #00ABA9;
}

.botonAzul {
    background-color: #2D89EF;
}

.botonAzulOscuro {
    background-color: #2B5797;
}

.botonMarron {
    background-color: #B91D47;
}

.botonMorado {
    background-color: #603CBA;
}

.botonNegro {
    background-color: #1D1D1D;
}

.botonVisible {
    display: flex;
}

.botonInvisible {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

.titulo-tabla {
    color: red;
    font-weight: bolder;
}

.icono-svg {
    fill: whitesmoke;
}

.icono-botob-ofrenda {
    width: auto;
    height: 16px;
}

.icono-eliminar-item:hover {
    fill: red;
}

.icono-add-favoritos:hover {
    fill: deeppink;
}
.icono-add-carrito:hover {
    fill: forestgreen;
}

.iconoBoton-16px {
    width: 16px;
    height: 16px;
    color: whitesmoke;
    font-size: 16px;
    font-weight: bolder;
}

.iconoBoton-24px {
    width: 24px;
    height: 24px;
    color: whitesmoke;
    font-size: 24px;
    font-weight: bolder;
}

.iconoBoton-32px {
    width: 32px;
    height: 32px;
    color: whitesmoke;
    font-size: 32px;
    font-weight: bolder;
}

.iconoBoton-48px {
    width: 48px;
    height: 48px;
    color: whitesmoke;
    font-size: 48px;
    font-weight: bolder;
}

.iconoBoton-64px {
    width: 64px;
    height: 64px;
    color: whitesmoke;
    font-size: 64px;
    font-weight: bolder;
}

.searchicon {
    display: none;
}

.addicon {
	cursor: pointer;
	color: #ffc107;
	font-weight: bold;
	font-size: 1.75rem;
	display: none;
}

.editicon {
	cursor: pointer;
	color: #9B5278;
	font-weight: bold;
	font-size: 1.5rem;
	display: none;
}

.delicon {
	cursor: pointer;
	color: #dc3545; /*D01040;*/
	font-weight: bold;
	font-size: 1.75rem;
	display: none;
}

.saveicon {
	cursor: pointer;
	color: #28a745;
	font-weight: bold;
	font-size: 1.5rem;
	display: none;
}

.cancelicon {
	cursor: pointer;
	color: #dc3545; /*D01040;*/
	font-weight: bold;
	font-size: 1.5rem;
	display: none;
}

.undoicon {
	cursor: pointer;
	color: #007bff;
	font-weight: bold;
	font-size: 1.75rem;
	display: none;
}

#fav:hover {
    color: fuchsia;
}

.msgbox {
    width: 95vw;
    height: 27.5vh;
    border: 1px solid var(--fwcolor-body);
    padding: 5px 5vw 5vw;
    background-color: white;
}

.tpv {
    max-width: 360px !important;
    left: calc((100vw - 360px) / 2) !important
}

.input-tpv {
    height: 50px;
    border: 2px solid #ced4da !important;
    border-radius: 0.4rem !important;
}

@media screen and (display-mode: browser), (min-width: 768px) {
    .msgbox {
        width: 20vw;
        height: 20vh;
        border: 1px solid var(--fwcolor-body);
        border: 1px solid black;
        padding: 5px 15px 15px;
        background-color: white;
    }
}

@media only screen and (max-width: 1920px) and (max-height: 1080px) {
    .responsive-text {
        font-size: 1.5vw;
    }
}

@media only screen and (max-width: 1024px) and (max-height: 768px) {
    .responsive-text {
        font-size:2vw;
    }
}
