* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

/* HEADER BASE */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 16px;
}

/* CONTENEDOR */
.con_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;

    position: relative;
}

/* LOGO */
.logo {
    font-size: 30px;
    font-weight: 700;
    white-space: nowrap;
}

/* CHECKBOX */
#menu-bar {
    display: none;
}

/* ICONO ☰ */
.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    gap: 120px;
    margin-left: auto;
}

.menu-item {
    cursor: pointer;
}

.menu-text {
    font-size: 17px;
    font-weight: 600;
    color: #444;
    padding: 4px 6px;
    transition: all .2s ease;
}

.menu-item:hover .menu-text {
    color: #000;
    border-bottom: 2px solid #000;
}

/* MENU MOVIL ESTILO DRAWER */
.menu-alt {
    position: fixed;
    top: 89px;
    left: 0;
    width: 50%;
    max-width: 80%;
    height: calc(100vh - 60px);

    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    z-index: 50;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding-top: 20px;
    gap: 0;

    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(0.25, 0.8, 0.25, 1);

    opacity: 1;
    pointer-events: auto;
}


.menu-texto {
    width: 100%;
    text-align: left;
    padding: 16px 24px;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: background .2s;
}

.menu-texto:hover {
    background: #fafafa;
    color: #000;
}

/* TOGGLE MENU MOVIL ACTIVADO */
#menu-bar:checked~.menu-alt {
    transform: translateX(0);
}

/*  BANNER HERO */
#banner {
    position: relative;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;

}

#banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* la imagen se recorta si es necesario */
    display: block;
}

.banner-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .65), rgba(0, 0, 0, .25));
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeUp 0.8s ease-out;
    border-radius: 20px;
}

.banner-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}

.banner-subtitle {
    font-size: 20px;
    margin-top: 8px;
    opacity: .9;
}

.banner-text {
    margin-top: 15px;
    font-size: 16px;
    max-width: 520px;
    line-height: 1.5;
}

/* ANIMACIÓN SUAVE*/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-text {
        font-size: 14px;
    }

    .banner-features {
        flex-direction: column;
        gap: 10px;
    }
}



/* ===================== BIENVENIDOS===================== */
#bienvenidos {
    background: linear-gradient(to right,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .25));

    margin: 25px;
    border-radius: 20px;
    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    color: #fff;
    overflow: hidden;
}


.bienvenida-layout {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px 30px;
}



/* COLUMNA */
.bienvenida-box {
    max-width: 700px;
    margin: 0 auto;
    animation: bienvenidaFade .9s ease-out;
}

/* TITULO */
.bienvenida-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* TEXTO PRINCIPAL */
.bienvenida-lead {
    font-size: 18px;
    line-height: 1.5;
    opacity: .95;
}

/* FLUJO DE VALOR PREMIUM */
.bienvenida-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0;
}

.flow-step {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.flow-arrow,
.flow-arrow.final {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
}

.flow-step.highlight {
    background: linear-gradient(135deg, #2ecc707e, #27ae5f8c);
    border: none;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
    font-weight: 700;
}

/* DESCRIPCIÓN */
.bienvenida-desc {
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}


/* RESPONSIVE FLOW */
@media (max-width: 768px) {
    .bienvenida-flow {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }

    .flow-arrow.final {
        margin: 8px 0;
    }
}

/* ANIMACIÓN ENTRADA */
@keyframes bienvenidaFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .bienvenida-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}

@media (max-width: 500px) {
    .bienvenida-title {
        font-size: 26px;
    }

    .bienvenida-lead {
        font-size: 16px;
    }


}




/* BLOG SECTION */

#blog {
    background: #ffffff;
    margin: 25px;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    text-align: center;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    gap: 70px;
    justify-content: center;

    max-height: 650px;
    overflow-y: auto;
    padding-right: 10px;
    box-sizing: border-box;
}



/* ITEM */
.blog-item {
    width: 100%;
    max-width: 360px;
}

.blog-header {
    margin-bottom: 45px;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1f8ef1;
    border-radius: 2px;
    transform: translateX(-50%);
}


/* TARJETA */
.tarjeta {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}


/* CARAS */
.cara {
    position: absolute;
    inset: 0;
    transition: opacity .45s ease, transform .45s ease;
}

/* FRONTAL */
.cara.frontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITULO SOBRE IMAGEN */
.overlay-title {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 14px 16px;
    border-radius: 12px;

    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);

    color: #fff;
    font-size: 15px;
    font-weight: 600;
}


/* TRASERA */
.cara.trasera {
    background: linear-gradient(to bottom, #ffffff, #f3f3f3);
    padding: 26px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    font-size: 14px;
    overflow: hidden;
}

/* HOVER */
.tarjeta:hover .frontal {
    opacity: 0;
    transform: scale(1.03);
}

.tarjeta:hover .trasera {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

/*  TABLET HORIZONTAL  */
@media (max-width: 1350px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-height: 600px;
    }

    .blog-item {
        max-width: 100%;
    }

    .tarjeta {
        height: 240px;
    }
}

/*  TABLET VERTICAL  */
@media (max-width: 1023px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        max-height: 520px;
    }

    .tarjeta {
        height: 220px;
    }
}

/*  CELULAR  */
@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-height: none;
        overflow: visible;
    }

    .tarjeta {
        height: 200px;
    }
}





/*----------------INFO SECTION--------*/
#info {
    background: #ffffff;
    margin: 25px;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

/* HEADER */
.info-header {
    text-align: center;
    margin-bottom: 45px;
}

/* ================= INFO CAROUSEL ================= */

.info-carousel {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

/* CONTENEDOR SCROLL */
.info-grid {
    display: flex;
    gap: 40px;
    padding: 10px 60px;
    /* espacio para flechas */
    overflow-x: auto;
    scroll-behavior: smooth;

    /* ocultar scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge viejo */
}

.info-grid::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari */
}

/* ITEM */
.info-item {
    flex: 0 0 200px;
    text-align: center;
}

/* ICONO */
.info-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2f2f2, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.info-item:hover .info-icon {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.info-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* TITULO */
.info-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

/* FLECHAS */
.info-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background .25s ease, transform .25s ease, opacity .25s ease;
}

.info-arrow:hover {
    background: rgba(0, 0, 0, .85);
    transform: translateY(-50%) scale(1.12);
}

.info-arrow.left {
    left: 10px;
}

.info-arrow.right {
    right: 10px;
}


/* ICONO */
.info-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2f2f2, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.info-item:hover .info-icon {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.info-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* TITULO */
.info-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}



/* SUAVIDAD VISUAL */
.info-grid {
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

}

.info-item {
    scroll-snap-align: center;
}

.info-item {
    transition: transform .35s ease, opacity .35s ease;
}

.info-item:hover {
    transform: translateY(-8px) scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .info-grid {
        gap: 25px;
        padding: 10px 45px;
    }

    .info-item {
        flex: 0 0 170px;
    }

    .info-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}



/* FOOTER*/
footer {
    background: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}



/* COOKIE NOTICE */

.cookie-notice {
    width: 480px;
    max-width: 90%;
    position: fixed;
    top: 10px;
    right: 10px;
    background: #1a1a1a;
    color: #fff;
    padding: 14px;
    font-size: 14px;
    z-index: 9999;
    border-radius: 6px;
}

.cookie-title {
    width: 100%;
    background: #FFA500;
    border: none;
    padding: 12px;
    color: #fff;
    cursor: default;
}

.cookie-title span {
    display: block;
    font-size: 140%;
    text-align: center;
}

.cookie-text {
    margin: 10px 0;
    line-height: 1.4;
}

.cookie-link {
    color: #5dc1b9;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept {
    width: 100%;
    background: #5dc1b9;
    border: none;
    padding: 12px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
}

/* MODAL */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 99999;
}

.modal-box {
    background: #fff;
    width: 480px;
    max-width: 95%;
    margin: 8% auto;
    padding: 20px;
    position: relative;
    border-radius: 6px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
    font-size: 18px;
    color: #800080;
}


/* RESPONSIVE*/
@media (max-width: 768px) {

    /* ocultar menú desktop */
    .menu {
        display: none;
    }

    /* mostrar icono */
    .menu-toggle {
        display: block;
    }

    /* mostrar menú móvil cuando se hace click */
    #menu-bar:checked~.menu-alt {
        display: block;
    }
}

@media (max-width: 992px) {

    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}








.modal-box.modal-contacto{
    width: 900px;
    max-width: 95%;
}

/* CONTACTO - LAYOUT GENERAL */
.contacto-layout {
    display: flex;
    gap: 32px;
    max-width: 100%;
    align-items: stretch;
}

/* COLUMNA IZQUIERDA INFO */
.contacto-info {
    width: 35%;
    background: linear-gradient(160deg, #1c2a3a, #0e1621);
    color: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.contacto-info h3 {
    margin-bottom: 22px;
    font-size: 1.35rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding-bottom: 12px;
}

.contacto-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.contacto-item .icon,
.contacto-item i {
    font-size: 1.4rem;
    color: #1f8ef1;
    min-width: 26px;
}

.contacto-item strong {
    display: block;
    font-size: .9rem;
    color: #cfd8e3;
}

.contacto-item p {
    margin: 2px 0 0;
    font-size: .95rem;
    line-height: 1.4;
}

.contacto-footer {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255,255,255,.2);
    text-align: center;
    font-size: .9rem;
    opacity: .85;
}

/*  COLUMNA DERECHA FORM */
.contacto-form {
    width: 65%;
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

/*  AVATAR / LOGO */
.form-avatar {
    text-align: center;
    margin-bottom: 25px;
}

.form-avatar-box {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.form-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FILA FORMULARIO */
.form-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
}

/* ICONO */
.form-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: #f1f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1f8ef1;
}

/* CONTENEDOR INPUT */
.form-field {
    position: relative;
    width: 100%;
}

/* INPUT */
.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid #dce3ec;
    outline: none;
    transition: all .25s ease;
    background: #fff;
}

.form-input:focus {
    border-color: #1f8ef1;
    box-shadow: 0 0 0 3px rgba(31,142,241,.15);
}

/* LABEL FLOAT */
.form-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: .85rem;
    color: #888;
    pointer-events: none;
    transition: .2s ease;
    background: #fff;
    padding: 0 6px;
}
/* INPUTS */
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -6px;
    font-size: .75rem;
    color: #1f8ef1;
}

/* TEXTAREA */
.form-textarea {
    align-items: flex-start;
}

.form-textarea-input {
    width: 100%;
    min-height: 90px;
    resize: none;
    padding: 20px 16px 14px; /* espacio para el label arriba */
    border-radius: 12px;
    border: 1px solid #dce3ec;
    font-size: .95rem;
    outline: none;
    transition: all .25s ease;
}

.form-textarea-input:focus {
    border-color: #1f8ef1;
    box-shadow: 0 0 0 3px rgba(31,142,241,.15);
}

/* LABEL FIJO ARRIBA */
.form-textarea .form-label {
    position: absolute;
    top: 0;
    left: 14px;
    transform: translateY(-50%);
    font-size: .75rem;
    color: #1f8ef1;
    background: #fff;
    padding: 0 6px;
    pointer-events: none;
}



/* ICONOS VALIDACIÓN*/
.vestado {
    position: absolute;
    right: 14px;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%);
    font-size: 180%;
	display: none;
}

.fa-check-circle-o {
    color: #2ecc71;
}

.fa-times-circle {
    color: #e74c3c;
}

/*  TEXTO MENSAJE */
.form-msg {
    font-size: .95rem;
    color: #555;
    margin: 18px 0;
}

/* BOTÓN ENVIAR */
.BtnEnviar {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.BtnEnviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

/* RESPONSIVE*/
@media (max-width: 900px) {
    .contacto-layout {
        flex-direction: column;
    }

    .contacto-info,
    .contacto-form {
        width: 100%;
    }
}






/*------*/

html{
	scroll-behavior: smooth;
} 

    #overlay {
      display: none;
      position: fixed;
      top:200; left: 200;
      width: 60%; height: 50%;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #popup {
      background: white;
      padding: 20px;
      max-width: 800px;
      max-height: 600px;
      height: 100%;
      border-radius: 10px;
      position: relative;
    }

    #cerrarPopup {
      position: absolute;
      top: 10px; right: 10px;
      cursor: pointer;
      font-weight: bold;
    }

.workarea{
	padding:4px;
 border-radius:7px;
}

.imGenEmCon{
	width:100%;
	height:100%;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
}

.imGenEm{
	width:60%;
	height:auto;
	max-height:60%;
	display:flex;
	Margin:auto;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	Margin-top:10%;
}
.palti{
	margin-top:20px;
	width: 100%;
	text-align:center;
	font-size:320%;
	color :var(--GSombra);
}
.paldes{
	margin-top:10px;
	width: 100%;
	text-align:center;
	font-size:100%;
	color :var(--GSombra);
}


.formPswti{
	padding:15px;
	font-size:150%;
	text-align:center;
	border-top-left-radius: 7px;
	border-top-right-radius:7px;
}
.formPswCoIm{
	width: 60%;
	height : auto;
	padding: 30px 0 0 0;
	display:block;
	margin:auto;
	border-radius: 7px;
}
.FormPswCo{
	padding-top:20px;
	width:100%;
	display:block;
	margin:auto;
	overflow: auto;
}

.input-container {
	 display: -ms-flexbox; 
	 display: flex;
	 margin-bottom: 15px;
	 min-width:100%;
	 max-height:55px;

 }
 .iconre_f{
	 width: 10%;
	 min-width: 10%;
	 text-align: center;
	 font-size:150%;
	 max-height:100%;
 }
 
 .iconre_p, .iconre_p2, .iconre{
  padding: 5px;
  width: 25%;
  min-width: 25%;
  max-height:55px;
  text-align: center;
  justify-content: center;
 
 }
.input-field {
	padding: 8px;
	outline: none;
	font-size:120%;
	margin:0;
	display:block;
}

.input-field:focus {
  border: 3px solid #0075FF;
  outline: none;
  box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.input-field::placeholder{
	text-align:center;
	color:#4D4D4D;
}
.v_estado {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;
}
.btenviar{
	width:100%;
	text-align:center;
	padding:7px;
	font-size:110%;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius:7px;
	border:none;
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
	display:block;
	margin:auto;
	margin-top:6px;

}
	
.btenviar:hover {
 transform:scale(0.8);
 transform: translateY(4px);
 cursor: pointer;
}
.btenviar:active {
	transform:scale(.8);
}

.atenuado{
	width: 50%;
	margin-top:15px;
	border:none;
	cursor:pointer;
	text-align:center;
	font-size:70%;
	color: #615C5C;
}
.msg{
	width: 100%;
	padding:5px;
	margin-top:5px;
	margin-bottom:5px;
	color: #A52A2A;
	Text-align:center;
}

.formulario {
	display:flex ;
	justify-content:space-between;
	flex-wrap:wrap;
}

.formulario:active {

}
.detallado{
	width:100%;
	min-width:100%;
	height: 15%;
	min-height: 15%;
	max-height: 15%;
	overflow:auto;
	text-align:justify;
	transform: uppercase;
	padding:5px;
}

.retrato{
	width:30%;	
	padding:2px;
	border-radius: 5px;
	cursor: pointer;
	display:block;
	margin:auto;
}
.retrato:active{
	transform: scale(.8);
	Background: #333;

}

.foto{
	//width:96%;	
	//min-width:100%;
	//max-width:100%;
	//height:auto;
	//max-height: 55px;
	/* min-height: 65px;*/
	border-radius: 5px;
	//cursor: pointer;
	display:block;
	margin:auto;
}
.iconfor{
	width:10%;	
	min-width:10%;
	max-width:10%;
	max-height:100%;
	font-size:65%;
	/*writing-mode: vertical-rl;
 	 text-orientation: upright;*/
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
    }

.inContenedor1, .inContenedor2, .inContenedor3,
.inContenedor35,.inContenedor4,.inContenedor45,
.inContenedor5,.inContenedor6, .inContenedor7,
.inContenedor8{
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  //justify-content: center;
  
  
 /* text: spacing trim 3px;*/
 }
 .inContenedor{
	width:100%;
	min-width:100%;
	max-width:100%;
	padding:4px;
	height:50px;
	display:flex;
	justify-content:space-between;
}
.gdContenedor{
	width:100%;
	min-width:100%;
	max-width:100%;		
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	
}
.inContenedor1{
	width:100%;
	max-width:100%;
}
.inContenedor2{
	width:19%;
	max-width:19%;
	min-width:19%;
}
.inContenedor3{
width:29%;
max-width:29%;
}
.inContenedor35{
	width:34%;
	max-width:34%;
}
.inContenedor4{
	width:39%;
	max-width:39%;
	//min-width:39%;
}
.inContenedor45{
	width:44%;
	max-width:44%;
	//min-width:44%;
}
.inContenedor5{
	width:49%;
		//min-width:49%;
		max-width:49%;
	}
	.inContenedor6{
		width:59%;
		max-width:59%;
		}
.inContenedor7{
min-width:69%;
max-width:69%;
}
.inContenedor8{
	width:79%;
	max-width:79%;
}
/* Style the inputs */
.seLis{
	/*position: absolute;*/
	top: 7px;
	left: 0px;
	height: 100%;
	width:100%;
	border: none;
	font-size:85%;
	/*color:#4e0909;*/
	padding: 0 5px;
	outline: none;
	background: none;
	z-index: 1;
	text-align:left;
  }
  .conFecha{
	//height:100%; 
	//margin-left: 5px;
	//border-radius:5px;
	/*position: relative;*/
	/*border:solid rgb(240, 229, 229);*/
  }
  input[type="numberx"].inFecha {
	width:95%;
	min-width:95%;
	height: 90%;
	margin-left:1%;
	/*background: #333;
	border: 3px solid gold;
	/*font-size: 1.1rem;*/
	border-radius: 8px;
	color: #fff;
		&::-webkit-textfield-decoration-container {
	/*  background: #000;*/
	  padding: 0.5rem 1rem;
	  
	}
  
	&::-webkit-inner-spin-button {
	border:solid red;
	 // margin-left:15px;
	 /* appearance: none;*/
	  min-width: 10%;
	  max-width: 10%;
	  min-height: 100%;
	 // align-items:end;
	 /* background: linear-gradient(green 49%, transparent 49% 51%, red 51%);
	  box-shadow: 0 0 5px 3px #000 inset;*/
	  opacity: 1;
	  cursor: pointer;
	}
  }
	
.laFecha {
height: 20%;
width:100%;
align-items: center; 
justify-content: center;
display:flex;
}
  .inFecha{
	height: 80%;
	//border:none;
	
  }

.inCampo{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width:100%;
  border: none;
  font-size: 19px;
  padding: 0 10px;
  outline: none;
  background: none;
  z-index: 1;
}


/* Hide the placeholder texts (a) */

::placeholder {
  color: transparent;
}
/* Styling text labels */

.laCampo {
  position: absolute;
  top: 20px;
  left: 15px;
  padding: 0 4px;
 /* background-color: white;*/
  /*color: #460446;*/
  font-size: 120%;
  font-family: Arial Narrow;
  transition: 0.5s;
  z-index: 0;
}


.inCampo:focus + .laCampo{
  top: 2px;
  left: 2px;
  z-index: 10;
  font-size: 90%;
  font-weight: 400;
  /*color: purple;*/
}
.inCampo:focus{
  border: 2px solid rgb(99, 93, 99);
}
.inCampo:not(:placeholder-shown)+ .laCampo {
  top: 2px;
  left: 2px;
  z-index: 10;
  font-size: 110%;
  //font-weight: 400;
   display:none;
}
.inCampo:not(:placeholder-shown){
  font-size: 110%px;
  font-weight: 400;
  //text-align:center;
}
.BtnEnviar {
	width:120px;
	display: block;
	margin-left: auto;
	padding: 12px;
	border: none;
	text-align:center;
	border-radius: 7px;
	cursor: pointer;
	font-size: 19px;
	margin-top: 20px;
	box-shadow: 0 10px 25px rgba(179,200,220,.3);
  }
  
  .BtnEnviar:hover {
	transform: translateY(4px);
  }
  .BtnEnviar:active {
	  transform: scale(.8);
  }

.conTbl{
	margin-top: 15px;
	border: 1px solid  #EFEFEF;
	border-radius:7px;
}


/*Usuario es temporal */
.ar4{
	width:100%;
	height:120px;
	height:120px;
	padding:4px;
}
.ar4User{
	min-width:60%;
	border-top-left-radius:7px;
	border-top-right-radius:7px;
}

.BtnUsePal{
	min-width:15%;
	height:65px;
	color:#FFFFFF;
}
.conimuse {
	width:45%;
	max-height:43px;
	margin:auto;
	margin-top:8px;
}
.imusepal{
	max-width: 100%;
	max-height:43px;
	min-height:43px;
	margin:auto;
	display:block;
	border-radius:7px;
}
.imusepal:hover{
	border-radius:50px;
	cursor:pointer;
	transform:scale(.90);
}
.imusepal:active{
	transform:scale(.80);
}
.contxuse {
	width:100%;
	height:20px;
	max-height:20px;
	}
.txuse {
	padding:4px;
	font-size:60%;
	text-align:center;
}
.Btnminaux{
	 padding: 2px;
	 //display : flex;
	// flex-wrap: wrap;
	/justify-content: space-between;
//	 position: relative;
  //z-index: 1;
 // bottom: 125%;
 // left: 50%;
 margin-left: 2px;
 background:#FFFFF;
}
.Btnminaux:hover{
	transform:scale(.95);
}

#but{
position:absolute;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 2px;
    background-color: rgba(193, 37, 37, 0.3);
}

.ar4ProPal{
	margin-top:0px;
	padding:2px;
	width:100%;
	height:120px;
	border-top:solid #fff;
	overflow: auto;
}

.BtnProPal{
	width:24%;
	height:115px;
	min-height:115px;
	margin-top:10px;
	display: flex;
	flex-wrap:wrap;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	transition:all .5s ease-in-out;
}

.BtnProPal:hover{
	cursor:pointer;
	transform:scale(.95);
	transform: rotate(0deg);
	-webkit-transform: rotate(10deg);
}
.BtnProPal:active{
	transform:scale(.80);
}

.conimpal {

	min-width:100%;
	max-width:100%;
	min-height:90px;
	max-height:90px;
	margin-top:5px;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
}
.impropal{
	margin:auto;
	display: block;
	//height:auto;
	max-height: 100%;
	min-height: 100%;
	//border-top-left-radius:12px;
	//border-top-right-radius:12px;
	border-radius:12px;
}

.conimlogo {
	min-width:100%;
	max-width:100%;
	min-height:90px;
	max-height:90px;
}


.imlogo {
	//width: 120px;
	//max-height: 20%;
	//min-height: 20%;
	//margin: auto;
	//display: block;
	//border-radius: 5px;
	//border: 2px solid #333;
	//padding: 5px;
}
.ico2{
	max-width: 100%;
	max-height: 70%;
	min-height: 70%;
	margin:auto;
	display: block;
	border-radius:5px;
}
.contxpal {
	max-width:97%;
	min-width:97%;
	min-height:50px;
	max-height:50px;
	display: table;
 }
.txpal {
	font-size:100%;
	text-align:center;
	display: table-cell;
	vertical-align: middle;
}
.GBtTarCon{
	width:100%;
	max-width:100%;
	min-width:100%;
	overflow: auto;
	display: flex;
}
.GBtZonCon{
	width:100%;
	max-width:100%;
	min-width:100%;
	overflow: auto;
	display: flex;
}
.GBtZon{
	margin-left:5px;
	margin-right:5px;
	max-height:5%
	cursor: pointer;
    border-radius:7px;
	transition: all 0.5s ease 0s;
	display: flex;
	
	//background: hsl(340deg 100% 32%);
    border-radius: 7px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
}

.GBtZon:active .btnfront {
    transform: translateY(-2px);
  }
.submenu{
	margin-top:20px;
	padding:10px;
}
.lisubmenux{
	width:100%;
	max-height:100%;
	min-height:60%;
	overflow: auto;
}
.filtrarx{
max-height:40%;
width:100%;
}
.separador{
	width:100%;
	height:1px;
	margin-top: 15px;
}

.GBtTar{
	margin-left:5px;
	margin-right:5px;
	cursor: pointer;
    border-radius:7px;
	transition: all 0.5s ease 0s;
	display: flex;
	
	//background: hsl(340deg 100% 32%);
    border-radius: 12px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
}

.GBtTar:active .btnfront {
    transform: translateY(-2px);
  }
  
  .btnfront {
  width:100%;
    display: block;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
   // background: hsl(345deg 100% 47%);
    //color: white;
    transform: translateY(-6px);
  }
  
  .GBtMen{
	//margin-left:5px;
	//margin-right:5px;
	cursor: pointer;
   // border-radius:7px;
	transition: all 0.5s ease 0s;
	display: flex;
	
	//background: hsl(340deg 100% 32%);
   // border-radius: 12px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
}
 .GBtMen:active{
	transform: translateY(-6px);
	background: hsl(340deg 100% 32%);
  }

.GImTarCon{
	width:30%;
	min-height:100%;
	max-height:100%;
	padding: 5px;
	border-radius:7px;
	//border-right:3px;
	//border:solid white;
	//background:white;
}
.GImTar{
	//width:100%;
	height:auto;
	//min-height:100%;
	max-width:100%;
	max-height:100%;
    border-radius:7px;
    margin:auto;
    display:block;
    
  }
  .GImZon{
	//width:100%;
	height:auto;
	//min-height:100%;
	max-width:100%;
	max-height:100%;
    border-radius:50px;
    margin:auto;
    display:block;
    
  }
.GTxTarCon{
	width:70%;
	max-height:99%;
	text-align:center; 
	align-items: center; 
	justify-content: center;
	display:flex;
}

.GDaPag{
	max-width:100%;
	min-width:100%;
	height:90%;
	max-height: 90%;
	min-height: 90%;
	background:#FFF;
	
	
	background:#024959;
	background:#A52A2A;
	font-size:110%;
	color:#FFFFFF;
	text-align:center;
	border:none;
    border-radius:7px;
    
}
.GDaPag:hover{
	transform:scale(.85);
	cursor: pointer;
}
.GDaPag:active{
	transform:scale(.6);
}

.GDaFun{
	max-width:50%;
	height:95%;
	max-height: 95%;
	min-height: 95%;
	background:#FFF;
	margin-top:2px;
    border-radius:7px;
    transform:scale(.8);
}
.GDaFun:hover{
	transform:scale(.6);
	cursor: pointer;
}
.GDaFun:active{
	transform:scale(.5);
}
.GDaBarCon{
	width:100%;
	height: 50px;
	max-height: 60px;
	margin-top:5px;
	display:flex;
//	padding:4px;
	justify-content: space-between;
}
.GDaFunCon{
	width:38%;
	max-width:38%;
	min-width:38%;
	display:flex;
	align-items:center;
    vertical-align:middle;

}
.GDaPagCon{
	//width:47%;
	max-width:47%;
	//min-width:32%;
	max-height:99%;
	display:flex;
	justify-content: space-between;
}




.menval{
	width:100%;
	max-width:100%;
	min-width:100%;
	//max-height:40%;
	text-align:center;
	font-size:90%;
}
.GDamenu{
	max-width:20%;
	max-height: 100%;
	display :flex;
	align-items:center;
    vertical-align:middle;
    margin-right:2px;
}


.bus{
	//width:40%;
	max-width:40%;
	//min-width:40%;
	height: 100%;
	display:flex;
}
.lim{
	width:10%;
	max-width:10%;
	min-width:10%;
	height: 99%;
	margin-left:5px;
	text-align:center;
	border: 1px solid #E5E5E5;
	}

.paginacion  {
	max-width:25%;
	height: 100%;
	max-height: 100%;
	display:flex;
    align-items:center;
    vertical-align:middle;

}



.paginacion ul {
	list-style:none;
	text-align: center;
	max-height: 80%;
	display:flex;
	justify-content: space-between;
}

.paginacion ul li {
	display:inline-block;
	margin-right:10px;
	//margin-top:.6%;
	border-radius:7px;
	
}

.paginacion ul li a {
	display:block;
	padding:5px 10px;
	text-decoration: none;
	text-align:center;
}

.paginacion ul li a:hover {
	
}

.paginacion ul li .active {

}
.pagactivado {
	color:#fff;
	font-size:90%;
}
.pagactivado:hover {
	background:#862727;
	border-radius:7px;
	cursor: pointer;

}
.pagactivadon {

	background:#024959;
	color:#fff;
	font-size:85%;
}
.pagactivadon:hover {
	border-radius:7px;
	cursor: pointer;
}


@media only screen and (max-width: 2560px) and (min-width: 864px)  {
	.ar4{
		//max-width: 10.8%;
		//min-width: 10.8%;
		height:98vh;
		max-height:98vh;
		min-height:98vh;
		border-radius:7px;

	}
	
	.ar4ProPal{
		max-width: 100%;
		min-width: 100%;
		padding:0px 2px 0px 2px ;
		height: 90%;
		min-height: 90%;
		align-items: center;
		justify-content: center;
	}

	.BtnProPal{
		max-width: 99%;
		min-width: 99%;
		
	}
}



.GImFun, .icon{
	width:99%;
	min-width:99%;
	height:99%;
	max-height:99%;
	min-height:99%;
	border-radius:7px;
   //padding:5px;
  }
.funcion {
	position: relative;
	display: inline-block;
	width:40px;
	height:30px;
	cursor: pointer;
	//max-height: 98%;
	//min-height: 98%;
	border-radius:7px;
	margin-left:6px;
	background:#FFFFFF;
	padding:2px;
}
.funcion:Active {
transform:scale(.8);
}

.funcion .txfun{
  visibility: hidden;
  width: 130px;
//  border-top: 3px solid #FFFF00;
  color: #FFFFFF;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -50px;
  opacity: 1;
  transition: opacity 0.4s;
}

.funcion .txfun::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.funcion:hover .txfun {
  visibility: visible;
  opacity: 1;
}
.ForInTiCon{
	width:100%;
text-align:center; letter-spacing:5px;
	/*border-top-right-radius:7px; border-top-left-radius:7px;*/
	align-items: center; 
	justify-content: center;
	Margin:auto;
}


.GTar{
	max-width:100%;
	max-height:100%;
	min-height:100%;
	background:#4D4D4D;
	padding:12px;
	border-radius:7px;
	
	display:block;
	margin:auto;
	box-shadow:0 6px 6px 6px  #4D4D4D;
}

#conRefres{
  width: 100%;
}

	#Refres {
		min-width: 100%;
		min-height: 10%;
		display:flex;
		background:linear-gradient(red,blue,red);
	}
#alerta{
  width: 50%;
  min-height: 20%;
  margin:auto;
  
}



/* ***** FIN CSS PROCESOS EN GENERAL***** */

.Val {
	width:100%;
	min-height:20px;
	padding:6px;
	color:var(--Alerta);
	font-size:100%;
	text-align:center;
	display:none;
	margin:auto;
	overflow: hidden;
	
}

/* inicia css men100tar477.php formulario Creación empresa*/
.ForCrea{
	width: 20%;
	height:7%;
	max-height:7%;
	min-height:7%;
	margin:auto;
	display:block;
}
.ForImConx{
	width:98%;
	height:90%;
	max-height:90%;
	min-height:80%;
	border-radius:7px;
}


.ForInti, .ForImTi{
	width:100%;
	padding:12px;
	font-size:140%; font-weight:400; text-align:center; letter-spacing:2px;
	border-top-right-radius:7px; border-top-left-radius:7px;
}


.con-cei-50x{
	width:49.5%;
	padding:4px;
	min-width:49.5%;
	max-width:49.5%;
	max-height:80px;
	font-size:100%;
	font-weight: bold;
	text-align:center;
	font-weight:100;
}
.con-cei-32x{
	width:31%;
	padding:4px;
	min-width:31%;
	max-width:31%;
	max-height:80px;
	font-size:100%;
	font-weight: bold;
	text-align:center;
	font-weight:100;
}
.con-cei-25x{
	width:31%;
	padding:4px;
	min-width:25%;
	max-width:25%;
	max-height:80px;
	font-size:100%;
	font-weight: bold;
	text-align:center;
	font-weight:100;
}

.LabIn100x{
	width:100%;
	font-family:verdana;
	letter-spacing:1px;
	font-weight:500;
	font-size:110%;
	padding:2px;
}
.In100x{
	padding: 4px;
	width:100%;
	font-size:120%;
	font-weight:400;
	letter-spacing:0px;
	border:none;
	outline-color: rgb(30, 222, 121);
	border-radius:7px;
	cursor: text;
	text-align:center;
}

.In100:focus{
	border: 1px solid #FFFFFF;
	border: 1px solid rgba(179,125,125, 0,1);
	outline-color: rgb(30, 222, 121);
	font-size:140%;
	text-align:left;
}

.In100::placeholder{
	width:100%;
	font-size:90%;
}

.In100nitx{
	display: flex;   
    justify-content: center;  
    align-items: center;       
    padding: 4px;
	width:100%;
	color:#0F7799;
	font-size:140%;
	font-weight:400;
	border: 1px solid #E1F4FA;
	border-radius:7px;
	cursor: text;
}

.Bt{
	width:50%;
	padding: 10px;
	font-size:110%;
	font-weight:500;
	margin:auto;
	display:block;
	margin-top:25px;
	border: 1px solid var(--GSombra);
	box-shadow:3px 2px 3px  var(--GSombra);
	border-radius:7px;
}
.Bt:hover{
	background: var(--GClaro);
	cursor: pointer;
	color: var(--Claro);
}
.Bt:active{
	background: #FFA500;
	transform:scale(.90);
}


.ImCon {
	width:100%;
	height:88%;
	max-height:88%;
	align-items: center; 
	justify-content: center;
	display: flex;
}
.Im{

	max-width:90%;
	max-height:90%;
	border-radius:7px;
}

.seleccion{
	text-align: center;
    background: #21466B;
    border-top: 5px solid red;
    padding: 10px 0;
    border-radius: 7px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
    display:none;
}
.creaIm{
	width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.creaIm + label {
    max-width: 80%;
    font-size: 1.25rem;
	text-overflow: ellipsis;
    color:#DCEBF9;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    padding: 0.625rem 1.25rem;
}

.ImIconCon{
	width:100%;
	height:100px;
	background: #C9D2DB;
	cursor: pointer;
	border:solid #E7EEF5;
	border-radius:7px;
	display:flex;
	justify-content: space-between;
}
.ImIcon{
	width:25%;
	height:90px;
	padding:15px;
}

.Ipal1, .Ipal2, .Ipal3, .Ipal1, .Ipal4, .Ipal5, .Ipal6, .Ipal7, .Ipal8{
	width:50%;
	padding:5px;
}
.Ipal1, .Ipal2, .Ipal3, .Ipal1, .Ipal4, .Ipal5, .Ipal6, .Ipal7, .Ipal8 :hover::placeholder {
	cursor: pointer;
}


.BarraCon{
	width: 100%;
	padding:8px;
	max-height:8vh;
	min-height:8vh;
	background:#14B0DD;
	border-radius: 7px;
	border-top: 3px solid #4D4D4D;
    padding: 10px 0;
	overflow: auto;
	display: flex;
}
.BarTar{
	min-width:14%;
	margin-right:6px;
	background: #2583A0;
	color: #EBEFF0;
	cursor: pointer;
	font-size:120%;
	font-weight:400;
	text-align: center;
	border: 1px solid #246E85;
	box-shadow:2px 2px 2px  #224E5C;
    border-radius:7px;
	transition: all 0.2s ease 0s;
	display: flex;
}
.BarTar:hover {
  color:#FFFFFF;
  background: #A52A2A;
  border: 1px solid #2F667C;
  box-shadow:2px 2px 2px  #894089;
}
.BarTar:active {
	color:#DDE9EE;
	background: #2F667C;
	border: 1px solid #2F667C;
	box-shadow:2px 2px 2px  #2C4F5D;
	transform: scale(.9);
}
.BarTar::placeholder {
	color:#E54747;
	color:#ECF3F5;
}
.BarTar:hover::placeholder {
	color:#FFFFFF;
}
.ImBarCon{
	width:17%;
	border-radius:7px;
	display:block;
    margin:auto;
}
.ImBar{
	width:100%;
	max-height:20px;
    border-radius:7px;
}
.TxBarCon{
	width:83%;
	padding:4px;
	display: table;
    vertical-align: middle;
	display:flex;
	justify-content: space-between;
	margin:auto;
	
}

/*fin estilo barra inferior*/

.ceLabIn20{
	width:20%;
	color:#126783;
	font-weight:bold;
	font-size:110%;
	padding:5px;
}
.ceIn20{
	width:20%;
	margin-right:10px;
	color:#1362AF;
	font-size:110%;
	font-weight:bold;
	border: solid #2495B9;
	border-radius:7px;
	cursor: text;
}
.ceIn20::placeholder {
	width:100%;
	color:#DBB3BA;
	font-size:110%;
	text-align:center;
}

.confoclinput{
	background:#B3EEF0;
	border-radius:7px;
}
.confocldoc{
	background:#B3EEF0;
	border-radius:7px;
}
.concontrolcl{
	width:100%;
	margin-top:2px;
	padding:4px;
	background:#9FEAEC;
	border-top:solid #C9F4F5;
	display:flex;
	margin:auto;	
}
.contx100{
	width:100%;
	padding:0px;
	font-size:110%;
	color:#132639;
	font-weight:500;
	display:flex;
	margin:auto;
}
.contx50{
	width:50%;
	padding:10px;
	box-sizing: border-box;
  resize: vertical;
	font-size:100%;
	color:#132639;
	font-weight:500;
    border-radius: 4px;
	margin:auto;
	transform:scale(.99);
}
.lcl30, .lcl100{
	box-sizing: border-box;
	resize: vertical;
	font-size:100%;
	color:#132639;
	font-weight:500;
	margin-top: 0px;
	margin-bottom: 4px;
}
.lcl30{
	min-width:30%;
}
.lcl100{
	min-width:100%;
}
.icl25,.icl30, .icl40, .icl50,.icl70,.icl100{
  box-sizing: border-box;
  resize: vertical;
  font-size:100%;
  padding: 2px;
  color:#15314C;
  margin-bottom: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0px;
  }
.icl25{
	width:25%;
	text-align:center;
}
.icl30{
	width:30%;
}
.icl40{
	width:40%;
	text-align:center;
}
.icl50{
	width:50%;
}
.icl70{
	width:70%;
}
.icl100{
	width:100%;
}
.valcl{
	text-align:center;
	color:#FF0000;
}

/* consulta cliente */
	.clImTarConLis{
		width:100%;
		border-radius:7px;
		display:block;
		margin:auto;
	}
	.clImTarLis{
		width:90%;
		height:auto;
		max-height:30px;
		display:block;
		margin:auto;
		border-radius:12px;
}
/*fin consulta Cliente */

/*@media (min-width:1024px) { */
	.coclexterior{
			padding:25px;
	}
	.coclinterior{
		width:100%;
		max-height:84vh;
		min-height:84vh;
	}
	.confoclinput{
		max-height:70vh;
		min-height:70vh;
		max-width:45%;
		padding:10px;
	}
	.confocldoc{
		max-height:70vh;
		min-height:70vh;
		max-width:45%;
		padding:10px;
	}

.GConCampo{
  display: -ms-flexbox; /* IE10 */
  width: 100%;
  margin-bottom: 10px;
  display:flex;
  justify-content: space-between;
  padding: 4px;
  
}
.GCampo2{
	width: 80%;
	padding: 0px;
	outline: none;
	 font-size:120%;
	 border: none;
  }
.GCampo{
  width: 100%;
  padding: 5px;
  outline: none;
   font-size:120%;
   border: none;
}
.GCampo:focus {
  border: 1px solid var(--GSombra);
}
.GCampo::placeholder{
	font-size:90%;
	/*text-align:center;*/
	color:var(--GOscuro);
}
.GCamposel{
	/*esto es para dejarklo igual que plceholder */
	width: 100%;
	padding: 5px;
	outline: none;
	font-size:130%;
	border: none;
	outline: none;
	/*text-align:center;*/
}
.conDaCli{
	padding:1px 1px;
	font-weight:100;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.con-cei-100{
	width:99.5%;
	padding:4px;
	max-height:80px;
	font-size:100%;
	font-weight: bold;
	text-align:center;
	font-weight:100;
}

	.BtnForPedCta:hover{
		background:#1E90FF;
		color:#FFFF00;
	}
.BtnForPedCta:active {
	background:#ECBCEE;
	transform:scale(.7);
}




::placeholder {
  color: transparent;
}
/* Styling text labels */

.laCampo {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0 4px;
  background-color: white;
  font-size: 21px;
  font-family: Arial Narrow;
  transition: 0.5s;
  z-index: 0;
}



.btn_tar, .btn_tara, .btn_ar, .btn_tar0{
	display : flex;
	flex-wrap:wrap;
	justify-content: space-between;
	border-radius:5px;
	transition: width 2s;
	transition-timing-function: linear;
}
.btn_tar:hover{
	width:30%;
}
.btn_tar, .btn_tara, .btn_ar:active{
	transform:scale(.97);
}
.btn_tar:active{
	transform:scale(.9);
}

.btn_componente {
	min-width:50%;
	min-height:80%;
	font-size:120%;
	border-radius:8px;
}

.btn_componente:hover {
	transform: scale(.9);
	cursor: pointer;
}

/*ESTILO 6 TABLA*/
.tbl-st6{
    background-color: none;
    border: none;
    width: 100%; min-width: 100%;max-width: 100%;
	margin:auto;
/*    table-layout: fixed;*/
}
.tbl-st6>thead{
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    color: #ffffff;
    background-color: darkgray;
   
}
.tbl-st6>tbody{
    display:block;
     width: 100%; min-width: 100%;max-width: 100%;
	//height: 91.5%;min-height: 91.5%;max-height: 91.5%;/* Este valor es para las tablas de lista*/
    overflow: auto;
}
.tbl-st6>thead>tr{
    display: flex;
     width: 100%; min-width: 100%;max-width: 100%;
    }
.tbl-st6>tbody>tr{
	width: 100%; min-width: 100%;max-width: 100%;
    //display: flex;
}
.tbl-st6>thead>tr>th{
    border: none;
	display: flex;
    text-align: center;
    align-items: center; 
	justify-content: center;
	vertical-align: middle;
   }
.tbl-st6>tbody>tr>td{
   // border: 1px solid #ffffff;
    padding:3px;
 //   width: 100%;
//    flex-wrap: nowrap;
    display:flex;
 //   vertical-align: middle;
	//align-items: center;
//justify-content: center;
}

.tbl-st6>tbody>tr:nth-child(2n+1){
	color: #000000;
    background-color: lightgray; 
}
.tbl-st6>tbody>tr:hover{
 //  cursor: pointer;
background-color: #FAECD2;
}
.tbl-st6>tfoot{
	margin-top:2px;
	padding:4px;
	max-height: 12px;
	text-align: right;
}
.rectanx{
	display:flex;
	justify-content:space-around;
	flex-wrap:wrap;
	margin:auto;
}

