﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #E9EDEB;
    line-height: 1.5;
}

/* Grid Layout */

.cuadricula {
    background-color: #E9EDEB;
    max-width: 1280px;
    margin-top: 10px;
    padding: 5px;
    display: grid;
    /* grid-template-columns: repeat(5, 1fr); */
}

.objeto {
    font-size: 14px;
    font-weight: 500;
    padding: 2px;
    display: flex;
    flex-direction: column;
}

/* Estilos generales: Imagenes */

#imagen, imagenFirma {
    margin-top: 8px;
}

/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
/*
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 100% !important;
}
*/

/* Set widths on the form inputs since otherwise they're 100% wide */
/*
input,
select{
    max-width: 280px;
}
*/

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

span[id^="jqxWidget"] {
    color: transparent !important;
}

#ui-datepicker-div {
    z-index: 999 !important;
}

#imagen {
    width: 300px; /* ajusta el tamaño del contenedor aquí */
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ItemPreview {
    width: 200px;
    height: 200px;
}

/* Estilos de la tarjeta */
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 208px;
    padding: 24px;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Estilos del título */
.card-title {
    font-size: 24px;
    margin: 0 0 16px 0;
    color: #3C3C3C;
}

/* Estilos de la descripción */
.card-description {
    font-size: 16px;
    color: #707070;
    margin: 0 0 24px 0;
}

/* Estilos del botón */
.card-button {
    display: inline-block;
    color: white;
    background-color: #4059AD;
    font-size: 16px;
    width: 128px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.9;
    transition: 0.3s;
    position: absolute;
    top: 136px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
}

.card-button:hover {
    opacity: 1;
    background-color: #2C3E50;
}

a:hover {
    text-decoration: none;
    color: white;
}

#btnAdd {
    background-image: url(../Images/add.png);
}

/* Botones */

.botonPrimario {
    color: white;
    background-color: #4059AD;
    font-size: 14px;
    min-width: 100px;
    padding: 0 16px;
    height: 46px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.botonPrimario:hover {
    opacity: 1;
}

.botones {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#botones {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}


/* Campos */

.campo {
    margin-top: 8px;
    width: 100%;
    height: 40px;
    border: 2px solid gainsboro;
    transition: 0.3s;
    padding: 8px 16px;
}

.campo:hover {
    border-color: #4059AD;
}

select {
    padding-left: 12px;
}

/* Checkbox */

.checkbox-wrapper-31:hover .check {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-31 {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-top: 8px
}

.checkbox-wrapper-31 .background {
    fill: #ccc;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 .stroke {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 .check {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    stroke-dashoffset: 22;
    stroke-dasharray: 22;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 input[type=checkbox] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    -appearance: none;
    -webkit-appearance: none;
}

.checkbox-wrapper-31 input[type=checkbox]:hover {
    cursor: pointer;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + svg .background {
    fill: #6cbe45;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + svg .stroke {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + svg .check {
    stroke-dashoffset: 0;
}

.caja {
    width: min-content;
    align-items: center;
}

/* Columnas */

.col-1 {
    grid-column: 1 / 2;
}

.col-2 {
    grid-column: 2 / 3;
}

.col-3 {
    grid-column: 3 / 4;
}

.col-4 {
    grid-column: 4 / 5;
}

.col-1-2 {
    grid-column: 1 / 3;
}

.col-1-3 {
    grid-column: 1 / 4;
}

.col-1-4 {
    grid-column: 1 / 5;
}

/* General */

#dialogo {
    width: 100%;
    height: 100px !important;
    display: none;
    z-index: 10;
}

#messageDialog {
    width: 100%;
    height: 100px !important;
}