/* efectos generales */
.clickable {
    cursor: pointer;
    z-index: 10000;
}

.noVisible {
    display: none !important;
}

.centrado {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.ocultar {
    display: none !important;
}

.h20 {
    margin-top: 20px;
}

.separacion {
    clear: both;
}

.separacionH5 {
    clear: both;
    padding-top: 5px;
}

.separacionH7 {
    clear: both;
    padding-top: 7px;
}

.separacionH10 {
    clear: both;
    padding-top: 10px;
}

.separacionH15 {
    clear: both;
    padding-top: 15px;
}

.separacionH20 {
    clear: both;
    padding-top: 20px;
}

.separacionH24 {
    clear: both;
    padding-top: 24px;
}

.separacionH25 {
    clear: both;
    padding-top: 25px;
}

.separacionH26 {
    clear: both;
    padding-top: 26px;
}

.separacionH28 {
    clear: both;
    padding-top: 28px;
}

.separacionH30 {
    clear: both;
    padding-top: 30px;
}

.separacionH35 {
    clear: both;
    padding-top: 35px;
}

.separacionH40 {
    clear: both;
    padding-top: 40px;
}

.separacionH60 {
    clear: both;
    padding-top: 60px;
}

.separacionH80 {
    clear: both;
    padding-top: 80px;
}

.separacionH100 {
    clear: both;
    padding-top: 100px;
}

.lineaSeparacionH10 {
    clear: both;
    height: 10px;
    margin: 0 20px;
    border-bottom: solid 1px #e7eaec;
}

.lineaSeparacionH20 {
    clear: both;
    height: 20px;
    margin: 0 20px;
    border-bottom: solid 1px #e7eaec;
}

.hr-line-dashed-10 {
    margin: 10px 0 !important;
}

.textoDerecha {
    text-align: right !important;
}

.textoIzquierda {
    text-align: left !important;
}

.textoNormal {
    font-weight: normal !important;
}

.textoNegrita {
    font-weight: bold !important;
}

.textoCursiva {
    font-style: italic !important;
}

.textoCentrado {
    text-align: center !important;
}

.textoDerecha {
    text-align: right !important;
}

.textoVerde {
    color: #18a689;
}

.texto-tam-0-8 {
    font-size: 0.8em !important;
}

.texto-tam-1-0 {
    font-size: 1.0em !important;
}

.texto-tam-1-1 {
    font-size: 1.1em !important;
}

.texto-tam-1-2 {
    font-size: 1.2em !important;
}

.textoGrande {
    font-size: 1.4em;
}

.textoSuperGrande {
    font-size: 2.0em;
}

.fondoAmarillo {
    background-color: #FFFB00 !important;
}

.fondoAzul {
    background-color: #ecf6ff;
}

.fondoNaranja {
    background-color: #FFE3CD;
}

.fondoVerde {
    background-color: #d4edda !important;
}

.fondoRojo {
    background-color: #f8d7da !important;
}

.fondoRojoIntenso {
    background-color: #fc7d88 !important;
}

.fondoRosa {
    background-color: #ead4ed !important;
}

.fondoGrisClaro {
    background-color: #e0e0e0 !important;
}

.admin {
    color: #ad4091;
}

.amarillo {
    color: #E3A835;
}

.azul {
    color: #337ab7;
}

.naranja {
    color: #FF5300;
}

.rojo {
    color: #FF0000;
}

.verde {
    color: #18a689;
}

.gris {
    color: #777777;
}

.parpadea {
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: revert;
    animation-iteration-count: infinite;

    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: revert;
    -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes parpadeo {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.vibra {
    animation-name: vibra;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    -webkit-animation-name: vibra;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes vibra {
    0%, 50%, 100% {
        -webkit-transform: translateX(0);
    }
    2%, 4%, 6%, 8%, 10%, 12%, 14%, 16%, 18%, 20%, 22%, 24%, 26%, 28%, 30%, 32%, 34%, 36%, 38%, 40%, 42%, 44%, 46%, 48% {
        -moz-transform: translateX(-2px);
    }
    1%, 3%, 5%, 7%, 9%, 11%, 13%, 15%, 17%, 19%, 21%, 23%, 25%, 27%, 29%, 31%, 33%, 35%, 37%, 39%, 41%, 43%, 45%, 47%, 49% {
        -moz-transform: translateX(2px);
    }
}

@-webkit-keyframes vibra {
    0%, 50%, 100% {
        -webkit-transform: translateX(0);
    }
    2%, 4%, 6%, 8%, 10%, 12%, 14%, 16%, 18%, 20%, 22%, 24%, 26%, 28%, 30%, 32%, 34%, 36%, 38%, 40%, 42%, 44%, 46%, 48% {
        -webkit-transform: translateX(-2px);
    }
    1%, 3%, 5%, 7%, 9%, 11%, 13%, 15%, 17%, 19%, 21%, 23%, 25%, 27%, 29%, 31%, 33%, 35%, 37%, 39%, 41%, 43%, 45%, 47%, 49% {
        -webkit-transform: translateX(2px);
    }
}

@keyframes vibra {
    0%, 50%, 100% {
        transform: translateX(0);
    }
    2%, 4%, 6%, 8%, 10%, 12%, 14%, 16%, 18%, 20%, 22%, 24%, 26%, 28%, 30%, 32%, 34%, 36%, 38%, 40%, 42%, 44%, 46%, 48% {
        transform: translateX(-2px);
    }
    1%, 3%, 5%, 7%, 9%, 11%, 13%, 15%, 17%, 19%, 21%, 23%, 25%, 27%, 29%, 31%, 33%, 35%, 37%, 39%, 41%, 43%, 45%, 47%, 49% {
        transform: translateX(2px);
    }
}

.nowrap {
    white-space: nowrap;
}

.b-l {
    border-left: 1px solid #e7eaec;
}

.b-l-darker {
    border-left: 1px solid #c8c8c8;
}

.ancho-min-160 {
    min-width: 160px !important;
}

.enlaceIconoAccion {
    color: #1ab394;
    font-size: 24px;
}

/* para loader generico en la aplicacion */
.loader-overlay {
    position: relative;
}

.loader-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-radius: 50%;
    border: 4px solid #ccc;
    border-top-color: #3498db;
    animation: spin 1s linear infinite;
    z-index: 9999;
    background: transparent;
    pointer-events: none;
}

.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 9998;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* FIN para loader generico en la aplicacion */

.btnSeleccionarTodos, .btnSeleccionarNinguno {
    color: #337ab7;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9em;
}

.btnCerrarGrande {
    color: #ff9898;
    cursor: pointer;
    font-size: 3.7em;
    font-weight: bold;
    padding: 0;
    text-align: center;
    margin-top: 40px;
}

.btnPProvNovedades {
    display: inline-block;
    padding: 5px 10px;
    color: #FFFFFF;
    background-color: #FF0000 !important;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
}

.textoPProvNovedades {
    display: inline-block;
    color: #FF0000;
    border: none;
    font-weight: bold;
}

.iconoAzul {
    color: #23527c;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.subarayadoAzulTooltip {
    cursor: pointer;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #337ab7;
    text-underline-offset: 2px;
}

.enlaceAzul {
    color: #23527c;
    cursor: pointer;
    text-decoration: underline;
}

.enlaceAzul:hover {
    text-decoration: none;
}

.btnLink {
    color: #337ab7;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
    border: none;
    padding: 0;
}

.btnLink:hover {
    color: #23527c;
}

.btnTarea {
    padding: 12px 0;
    font-size: 17px;
    line-height: 1.5;
    width: 195px;
}

.btn-gris {
    background-color: #777;
    border-color: #777;
    color: #FFFFFF;
}

.btn-gris:hover, .btn-gris:focus, .btn-gris:active, .btn-gris.active, .open .dropdown-toggle.btn-gris, .btn-gris:active:focus, .btn-gris:active:hover, .btn-gris.active:hover, .btn-gris.active:focus {
    background-color: #888;
    border-color: #888;
    color: #FFFFFF;
}

.selectAlto {
    height: 600px !important;
}

.b-r-color-medio {
    border-right: 1px solid #cccccc !important;
}

.label-lila, .badge-lila {
    background-color: #c571ff;
    color: #FFFFFF;
}

.label-naranja, .badge-naranja {
    background-color: #ff6400;
    color: #FFFFFF;
}

.label-azul, .badge-azul {
    background-color: #428bca;
    color: #FFFFFF;
}

.proveedorTipoPago {
    border: 1px solid #d9e0e7;
    border-left-width: 4px;
    border-radius: 3px;
    color: #374151;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    padding: 1px 8px 1px 7px;
    white-space: nowrap;
}

.proveedorTipoPago-pagarAntes {
    background-color: #f4f2fa;
    border-left-color: #6657a8;
}

.proveedorTipoPago-pagarDespues {
    background-color: #fbf3f0;
    border-left-color: #c65d45;
}

.proveedorTipoPago-domiciliado {
    background-color: #eff7f7;
    border-left-color: #2f7f83;
}

.lote {
    padding: 5px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #f00;
}

.btnInstrucciones {
    padding: 5px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #f00;
    border-radius: 3px;
    cursor: pointer;
}

.interrogacion {
    font-weight: bold;
    font-size: 13px !important;
    color: #5e5e5e;
    border: solid 1px #333;
    margin: 0 5px;
    border-radius: 30px;
    padding: 0 6px;
    line-height: 18px;
    background-color: #EEE;
    cursor: pointer;
}

.interrogacionAzulMini {
    font-weight: bold;
    font-size: 11px !important;
    line-height: 18px;
    text-decoration: none !important;
    color: #337ab7;
    border: solid 1px #337ab7;
    border-radius: 30px;
    padding: 1px 6px;
    background-color: #FFF;
    cursor: pointer;
}

.precioOfertaInicial {
    font-size: 0.95em;
    font-weight: normal;
    white-space: nowrap;
    color: #888888;
    text-decoration: line-through;
}

td.icono, th.icono {
    width: 40px;
    text-align: center;
}

tr.filaVacia td, .table > tbody > tr.filaVacia td {
    background-color: #ffffff;
    border: none;
}

tr.filaBordeSuperior > td {
    border-top: solid 1px #333;
}

tr.filaLila td {
    background-color: #F4E8FF;
}

tr.filaLila:hover td {
    background-color: #F4E8FF;
}

tr.filaNaranja td {
    background-color: #FFE3CD;
}

filaNaranja td {
    background-color: #FFE3CD;
}

tr.filaAzul td, tr.filaAzul th {
    background-color: #cae5ff;
}

tr.filaAzul:hover td {
    background-color: #a3e1d4;
}

tr.filaVerde td {
    background-color: #cfffcb;
}

tr.filaRoja td {
    background-color: #f8b3b3;
}

tr.filaGris td {
    background-color: #CCCCCC;
}

tr.filaCorte td {
    background-color: #000000;
    color: #FFFFFF;
}

/* height y max-height */
.h-50 {
    height: 50px !important;
}

.h-180 {
    height: 180px !important;
}

.h-260 {
    height: 260px !important;
}

.h-400 {
    height: 400px !important;
}

/* margins */
.m-v-10 {
    margin: 10px 0;
}

.m-r-10 {
    margin-right: 10px;
}

.m-r-20 {
    margin-right: 20px;
}

.m-r-30 {
    margin-right: 30px;
}

.m-r-40 {
    margin-right: 40px;
}

.m-r-50 {
    margin-right: 50px;
}

.m-r-70 {
    margin-right: 70px;
}

.m-t-0 {
    margin-top: 0 !important;
}

.m-t-4 {
    margin-top: 4px !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-t-40 {
    margin-top: 40px !important;
}

.m-t-60 {
    margin-top: 60px !important;
}

.m-t-200 {
    margin-top: 200px !important;
}

.m-r-0 {
    margin-right: 0px !important;
}

.m-r-10 {
    margin-right: 10px !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-11 {
    margin-bottom: 11px !important;
}

.m-l-0 {
    margin-left: 0px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.m-l-10 {
    margin-left: 10px !important;
}

.m-l-12 {
    margin-left: 12px !important;
}

.m-l-20 {
    margin-left: 20px !important;
}

.m-l-30 {
    margin-left: 30px !important;
}

.m-l-40 {
    margin-left: 40px !important;
}

/* padding */
.p-5 {
    padding: 5px !important;
}

.p-l-0 {
    padding-left: 0px !important;
}

.p-r-0 {
    padding-right: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-t-1 {
    padding-top: 1px !important;
}

.p-b-1 {
    padding-bottom: 1px !important;
}

.p-l-4 {
    padding-left: 4px !important;
}

.p-r-4 {
    padding-right: 4px !important;
}

/* width */
.width-30 {
    width: 30px !important;
}

.width-50 {
    width: 50px !important;
}

.width-60 {
    width: 60px !important;
}

.width-70 {
    width: 70px !important;
}

.width-75 {
    width: 75px !important;
}

.width-90 {
    width: 90px !important;
}

.width-100 {
    width: 100px !important;
}

.width-120 {
    width: 120px !important;
}

.width-140 {
    width: 140px !important;
}

.width-150 {
    width: 150px !important;
}

.width-200 {
    width: 200px !important;
}

.width-300 {
    width: 300px !important;
}

/* en las lineas de una tabla, para que ocupe menos espacio */
.input-linea {
    padding: 3px 6px;
}

/* personalizamos ul */
ul.lista li {
    font-size: 14px;
    margin-top: 10px;
}

/* personalizamos tamaño de modal */
.modal-xl {
    width: 1450px;
}

/* personalizamos popovers */
.popover {
    max-width: 70%;
    min-width: 350px !important;
    z-index: 9999;
}

input.focoControlEspacio {
    border-left: solid 2px #1a7bb9 !important;
}

/* personalizamos form-inline para que el botón salga alineado con los textboxes */
.form-inline .form-group {
    vertical-align: inherit !important;
}

/* inputs de formularios */
.form-control {
    border: 1px solid #999 !important;
}

.form-group > .control-label {
    line-height: 17px; /* para que salga el texto bien alineado cuando le ponemos algún icono */
}

.input-con-error {
    border-color: #ed5565 !important;
    color: #ed5565 !important;
}

/* inputs de formularios */
.form-inputPequeno {
    height: 22px !important;
}

/* icheck input radio en linea */
.radioInLine {
    display: inline-block;
    margin-right: 20px;
}

.radioInLine label {
    cursor: pointer;
}

.localizacion {
    padding: 10px 20px;
    background-color: #ff0000;
    text-align: center;
    font-weight: bold;
    width: 150px;
}

.localizacionMediana {
    display: inline-block;
    padding: 5px 3px;
    background-color: #ff0000;
    text-align: center;
    font-weight: bold;
    width: 150px;
}

.localizacionPequena {
    display: inline-block;
    padding: 5px 3px;
    background-color: #ff0000;
    text-align: center;
    font-weight: bold;
    width: 95px;
}

.localizacionMini {
    display: inline-block;
    padding: 2px 2px;
    background-color: #ff0000;
    text-align: center;
    font-weight: bold;
    min-width: 75px;
}

.eanMini {
    display: inline-block;
    padding: 2px 2px;
    text-align: center;
    font-weight: bold;
    min-width: 75px;
}

/* boton de bloquear para preparacion */
.formBloquear {
    display: inline;
}

/* para tablas en general */
table.verticalAlignMiddle > tbody > tr > td {
    vertical-align: middle !important;
}

tr.bordeResaltadoAbajo td {
    border-bottom: solid 1px #555 !important;
}

/*for headers with 2 rows*/
thead tr.header-row-1 th {
    border-bottom: none !important;
    padding-bottom: 2px;
}

thead tr.header-row-2 th {
    border-top: none !important;
}

/* lista de productos ordenable */
tr.lineaSeparacion:hover {
    background-color: inherit !important;
}

tr.lineaSeparacion td {
    padding: 0 !important;
    margin: 0 !important;
}

tr.lineaSeparacion td div {
    height: 6px;
    background-color: #999;
}

tr.lineaSeparacion.over td div {
    background-color: #deffd8;
    border: solid 2px #deffd8 !important;
}

/* para chosen */
.chosen-container, .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    min-width: 120px;
}

/* tabla con filas desplegables */
.tabla-desplegable tr.filaHija {
    display: none;
}

.tabla-desplegable tr.negrita {
    font-weight: bold;
}

.tabla-desplegable tr.filaHija {
    display: none;
}

.tabla-desplegable tr.filaHija td {
    border-top: none;
}

/* tabla imprimir localizacion */
#tablaImprimirLocalizacion td {
    padding: 10px !important;
    line-height: 27px !important;
    vertical-align: middle !important;
}

#tablaImprimirLocalizacion td.localizacion {
    padding: 0px !important;
    background-color: transparent;
}

#tablaImprimirLocalizacion td.localizacion > div {
    background-color: #000;
    color: white;
    font-weight: bold;
    font-size: 1.4em;
    padding: 5px !important;
    margin-top: 5px;
    margin-bottom: 5px;
}

#tablaProductoLineas .tablaProductoLineasTr td {
    border: 0px;
}

#tablaProductoLineas .tablaProductoLineasTrLinea2 td {
    border: 0px;
    border-top: 1px dotted #ccc;
    border-bottom: 2px solid #ccc;
    text-align: right;
}

#tablaProductoLineas .tablaProductoLineasTrLinea2 td .inputProducto {
    display: inline;
    width: 60px;
    padding: 4px;
}

/* talba completar caducidad */
.tablaCompletarCaducidad td {
    background-color: #fff !important;
}

/* etiquetas de estados de pedidos a proveedor */
.label-cancelado {
    background-color: #ED5565;
    color: #FFFFFF;
}

.label-finalizado {
    background-color: #1C84C6;
    color: #FFFFFF;
}

.label-solicitado {
    background-color: #f8ac59;
    color: #FFFFFF;
}

.label-recibido {
    background-color: #1ab394;
    color: #FFFFFF;
}

.label-recibido-parcial {
    background-color: #23c6c8;
    color: #FFFFFF;
}

/* estilos albaran alta */
#tablaAlta .tdSubtotal {
    font-weight: bold;
    width: 100px;
    text-align: center;
}

#tablaAlta .tdTotal {
    font-weight: bold;
    text-align: center;
}

#tablaAlta .tdResumen {
    font-weight: bold;
    width: 100px;
    text-align: center;
}

#tablaAlta .tdResumen .finalCantidad {
    color: #1A7BB9;
    padding: 0 5px 0 0;
}

#tablaAlta .tdResumen .cantidadSolicitada {
    padding: 0 0 0 5px;
}

#tablaAlta .tdResumen .finalCoste {
    color: #1A7BB9;
}

#tablaAlta .tdResumen .finalCosteAnteriorMayor {
    color: #1A7BB9;
    padding: 3px;
    border-radius: 2px;
    background-color: #ffd4d4;
}

#tablaAlta .tdResumen .finalCosteAnteriorMenor {
    color: #1A7BB9;
    padding: 3px;
    border-radius: 2px;
    background-color: #cbffdc;
}

#tablaAlta .tdResumen .porcentajeCambio {
    margin-left: 5px;
}

/* lista de tickets */
.tablaTickets td {
    cursor: pointer;
}

.tablaTickets tr.ticketNoAtendido td {
    font-weight: bold;
}

.tablaTickets td .masArchivos {
    font-weight: normal;
    font-size: 0.9em;
    margin-left: 5px;
}

/* ver ticket */
.ticketMensaje {
    float: left;
    width: 60%;
    margin-top: 10px;
    background-color: #fafafa;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    border: solid 1px #ddd;
}

.ticketMensajeDeCliente {
    float: right !important;
    background-color: #d9fdd3 !important;
}

.ticketMensaje .fecha {
    text-align: right;
    color: #777;
    font-size: 0.9em;
}

.ticketMensaje .lineaSeparacion {
    clear: both;
    height: 10px;
    margin: 0px 0px 10px 0;
    border-bottom: solid 1px #999;
}

.ticketMensaje .warning {
    color: #FF5300;
    font-size: 0.95em;
}

.ticketMensajeDeCliente {
    float: right;
    width: 60%;
    background-color: #d9fdd3;
    color: #333;
    padding: 10px;
    border-radius: 10px;
}

textarea.respuestaIa {
    color: #004cff;
    font-style: italic;
}


/* lista de productos preparacion*/
#tablaProductoPreparacion td {
    padding: 8px 3px;
}

.productoPreparacionImagenVolumenAlto {
    box-sizing: border-box;
    border: solid 2px #ed5565;
    padding: 2px;
    background-color: #fff;
}

.botonMarcador {
    width: 35px;
    height: 35px;
    border: solid 2px #666;
    background-color: #eee;
    cursor: pointer;
    margin-top: 0px;
}

.botonMarcador.verde {
    border: solid 2px #1ab394 !important;
    background-color: #1ab394 !important;
}

.botonMarcador.rojo {
    border: solid 2px #ec4758 !important;
    background-color: #ec4758 !important;
}

/* modal asistente para listadoProductosPreparacion.jsp */
#modalAsistente .modal-dialog {
    margin: 5px auto;
}

#modalAsistente .modal-body {
    padding: 5px;
}

/* menu de inicio */
.inicioIboxMenu {
    float: left;
    clear: inherit;
    margin-right: 0.6%;
    margin-bottom: 20px;
    width: 16%;
}

.inicioIboxMenu > .ibox-content {
    padding: 8px 10px 20px 10px;
}

.inicioIboxMenu > .ibox-content a:hover {
    background-color: #d9eefa;
}

.inicioIboxMenu .atajo {
    color: #337ab7;
    font-weight: bold;
}

/* Precios */
.iconoPrime {
    width: 14px;
    height: 14px;
    background: transparent url("../images/prime-14.png") no-repeat;
    display: inline-block;
    vertical-align: middle;
}

/* Tarifa */
.icono-envio {
    transform: scaleX(-1) !important;
}

/* diff */
.diff {
    max-height: 425px;
    overflow-y: auto;
}

.diff-tag-added {
    background-color: #c6ffc6;
}

.diff-tag-removed {
    background-color: #ffc6c6;
    text-decoration: line-through;
}

.borde-color-pendiente {
    border: 1px solid rgba(255, 192, 203, 0.3);
}

.color-pendiente {
    color: #C2185B;
}

.fondo-color-pendiente {
    background-color: rgba(255, 192, 203, 0.3); /* Este es un color rosado con una opacidad del 30% */
}


@media screen and (max-width: 991px) {
    .separacionMovil {
        display: block;
        clear: both;
    }

    .separacionMovilH20 {
        clear: both;
        padding-top: 20px;
    }

    /* menu de inicio */
    .inicioIboxMenu {
        float: left;
        clear: inherit;
        margin: 0 1.5% 20px 0;
        width: 47%;
    }
}


.toast {
    opacity: 1;
    -ms-filter: alpha(Opacity=100);
    filter: alpha(opacity=100);
}

#toast-container > div {
    opacity: 1;
    -ms-filter: alpha(Opacity=100);
    filter: alpha(opacity=100);
}

.divBotonPasarALaDerecha {
    padding: 10px;
    text-align: center;
    color: green;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #73AD21;

    /* Cursor de enlace */
    cursor: pointer;
}

/* on divBotonPasarALaDerecha hover, destacarlo */
.divBotonPasarALaDerecha:hover {
    background-color: #73AD21;
    color: white;
}


.listaPreparacionImagenesFila {
    border-bottom: 1px solid #ccc;
}

.listaPreparacionImagenesFila.azulCielo, .listaPreparacionImagenesFila .azulCielo {
    background-color: #cae5ff;
}

.listaPreparacionImagenesFila:hover {

}

.listaPreparacionImagenesFila.filaRoja, .listaPreparacionImagenesFila.filaRoja:hover {
    background-color: #f8b3b3;
}

.listaPreparacionImagenesFila.filaGris, .listaPreparacionImagenesFila.filaGris:hover {
    background-color: #CCCCCC;
}


.listaPreparacionImagenesFila .imagenCaja {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esta propiedad es útil para mantener las proporciones de la imagen */
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: all;
}

#boton-home {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#boton-home a {
    font-size: 1.3em;
    height: 40px;
    width: 40px;
    padding: 8px;
    display: block;
    background: #1ab394;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}

#boton-subir {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 9999;
}

#boton-subir a {
    font-size: 1.3em;
    height: 40px;
    width: 40px;
    padding: 8px;
    display: block;
    background: #1ab394;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}

.eanPropio {
    color: #C40392;
}

.eanPropioTextBox {
    color: #C40392 !important;
}

.iconoCupon {
    width: 16px;
    height: 16px;
    background: transparent url("../images/icono-cupon.png") no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.iconoCuponInactivo {
    width: 16px;
    height: 16px;
    background: transparent url("../images/icono-cupon-inactivo.png") no-repeat;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 350px) {

    #boton-home {
        bottom: 10px;
        left: 10px;
    }

    #boton-subir {
        bottom: 10px;
        right: 10px;
    }

}


/* sobreescribimos estilos de Inspinia */
.hr-line-dashed {
    border-top: 1px dashed #AAA !important;
}

.ibox-title .label {
    float: none !important;
}

/*
 * dropzone de producto ver
 */
/* para que no se vea la respuesta del server al hacer hover, ni el icono para eliminar que ponen sobre la imagen */
.dz-preview .dz-details,
.dz-preview .dz-error-message,
.dz-preview .dz-success-mark,
.dz-preview .dz-error-mark {
    display: none !important;
}

.dropzone .dz-preview.dz-image-preview {
    background: transparent !important;
}

.dropzone-footer-flotante {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: white;
    z-index: 900;
}

.dropzone {
    background: transparent !important;
    color: #fff !important;
    height: 135px;
    min-height: 135px;
    padding: 0;
}

.dropzone .dz-preview .dz-image {
    width: 95px;
    height: 95px;
    border-radius: 3px;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
}

.dropzone .dz-preview {
    margin: 8px 14px 0px 14px;
}

/*para que no emborrone la imagen (blur) cuando poner el cursor encima*/
.dropzone .dz-preview:hover .dz-image img {
    transform: none;
    filter: none;
    cursor: all-scroll;
}

.dropzone .icono-eliminar {
    padding: 0;
}

.imagen-ko .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            rgba(255, 0, 0, 0.25),
            rgba(255, 0, 0, 0.25) 10px,
            transparent 10px,
            transparent 20px
    );
    pointer-events: none;
    z-index: 10;
}

.icono-eliminar {
    display: block;
    margin-top: 5px;
    cursor: pointer !important;
    color: red;
    font-weight: bold;
    background: transparent;
    border: none;
    padding: 5px;
}

.message {
    position: absolute;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
    font-weight: bold;
}

.canvas-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.canvasFabric, .canvasFabricImagen, .canvasFabricArea {
    width: 100px;
    height: 100px;
    border: 1px solid #666;
    transition: width 0.3s, height 0.3s;
}

/*
 * widget de color hexadecimal reutilizable del backoffice
 */
.colorpicker-hex-widget {
    position: relative;
}

.colorpicker-hex-widget .colorpicker-spectrum {
    border-right: 0;
    text-transform: uppercase;
}

.colorpicker-hex-widget .colorpicker-hex-trigger {
    background: #fff;
    border-color: #d1d5da;
    padding: 0;
    position: relative;
    width: 42px;
    overflow: hidden;
    cursor: pointer;
}

.colorpicker-hex-widget .colorpicker-hex-trigger i {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    display: block;
    margin: 6px auto;
}

.colorpicker-hex-widget .colorpicker-hex-native {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    cursor: pointer;
}

.colorpicker-hex-widget.colorpicker-hex-disabled .colorpicker-hex-trigger {
    background: #f5f5f5;
    cursor: not-allowed;
}

.colorpicker-hex-widget.colorpicker-hex-disabled .colorpicker-hex-trigger i {
    opacity: 0.6;
}

.producto-personalizado-fondo-texto {
    background-color: #f3e3c9;
    border-radius: 5px;
}

.icono-asc::after {
    content: " \25B2";
}

.icono-desc::after {
    content: " \25BC";
}

/* complemento intl para el telefono */
.iti {
    display: flex !important;
    width: 100%;
}
