@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: 'MyriadPro-Regular';
	src: url('../fonts/MyriadPro-Regular.eot');
	src: local('☺'), url('../fonts/MyriadPro-Regular.woff') format('woff'),
		url('../fonts/MyriadPro-Regular.ttf') format('truetype'),
		url('../fonts/MyriadPro-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Black';
	src: url('../fonts/Gotham Black.eot');
	src: local('☺'), url('../fonts/Gotham Black.woff') format('woff'),
		url('../fonts/Gotham Black.ttf') format('truetype'),
		url('../fonts/Gotham Black.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
/*   pagina de HOME inicia aqui   */

:root {
    --home-blue: #6CA6D9;
    --home-blue-soft: rgba(108, 166, 217, 0.08);
    --home-blue-border: rgba(108, 166, 217, 0.14);
    --home-green: #9CBF4E;
    --home-yellow: #F2D335;
    --home-red: #D93636;
    --home-black: #0D0D0D;
    --home-muted: #66717F;
    --home-white: #FFFFFF;
    --home-shadow: 0 14px 36px rgba(61, 82, 118, 0.08);
    --home-shadow-hover: 0 20px 46px rgba(61, 82, 118, 0.14);
}

html {
    background: #F6F8FC;
}

body.body-home {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 5%, rgba(108, 166, 217, 0.10), transparent 24%),
        radial-gradient(circle at 92% 16%, rgba(242, 211, 53, 0.08), transparent 18%),
        linear-gradient(180deg, #F7F9FC 0%, #F4F7FB 100%);
    color: var(--home-black);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.body-home *,
body.body-home *::before,
body.body-home *::after {
    box-sizing: border-box;
}

.header-home {
    position: relative;
    z-index: 20;
    width: 100%;
    min-height: 82px;
    margin: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--home-blue-border);
}

.home-header-inner {
    width: min(1320px, calc(100% - 42px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.home-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 205px;
    max-height: 58px;
    object-fit: contain;
}

.home-quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-quick-link {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--home-blue-border);
    border-radius: 11px;
    background: #FFFFFF;
    color: var(--home-black);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.home-quick-link:hover {
    transform: translateY(-1px);
    border-color: rgba(108, 166, 217, 0.30);
    background: var(--home-blue-soft);
    box-shadow: 0 7px 18px rgba(108, 166, 217, 0.08);
}

.home-quick-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--home-blue);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 62px 0 54px;
}

.home-hero {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--home-blue);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
}

.home-hero-logo img {
    display: block;
    width: min(460px, 78vw);
    max-height: 150px;
    object-fit: contain;
}

.home-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.home-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-service-card {
    --card-accent: var(--home-blue);
    --card-accent-soft: rgba(108, 166, 217, 0.09);
    position: relative;
    min-height: 262px;
    padding: 24px 24px 21px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(108, 166, 217, 0.12);
    border-radius: 20px;
    background: #FFFFFF;
    color: var(--home-black);
    text-decoration: none;
    box-shadow: var(--home-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent);
    box-shadow: var(--home-shadow-hover);
}

.home-service-card--green {
    --card-accent: var(--home-green);
    --card-accent-soft: rgba(156, 191, 78, 0.11);
}

.home-service-card--yellow {
    --card-accent: #D1AD00;
    --card-accent-soft: rgba(242, 211, 53, 0.14);
}

.home-service-card--red {
    --card-accent: var(--home-red);
    --card-accent-soft: rgba(217, 54, 54, 0.09);
}

.home-card-topline {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent);
}

.home-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.home-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
}

.home-card-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
    font-size: 8px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-card-copy {
    flex: 1 1 auto;
}

.home-card-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--card-accent);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
}

.home-card-copy h2 {
    margin: 0 0 8px;
    color: var(--home-black);
    font-size: 24px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.025em;
}

.home-card-copy p {
    max-width: 450px;
    margin: 0;
    color: var(--home-muted);
    font-size: 11px;
    line-height: 1.65;
    font-weight: 500;
}

.home-card-action {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--home-black);
    font-size: 10px;
    font-weight: 800;
}

.home-card-action span {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
    font-size: 17px;
    transition: transform .18s ease;
}

.home-service-card:hover .home-card-action span {
    transform: translateX(3px);
}

.home-support-strip {
    margin-top: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--home-blue-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 24px rgba(61, 82, 118, 0.05);
    backdrop-filter: blur(7px);
}

.home-support-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--home-blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.home-support-strip strong {
    display: block;
    color: var(--home-black);
    font-size: 17px;
    font-weight: 800;
}

.home-support-strip p {
    margin: 4px 0 0;
    color: var(--home-muted);
    font-size: 10px;
    line-height: 1.5;
}

.home-support-button {
    min-height: 44px;
    padding: 0 16px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    background: var(--home-blue);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 9px 21px rgba(108, 166, 217, 0.18);
    transition: transform .16s ease, box-shadow .16s ease;
}

.home-support-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(108, 166, 217, 0.25);
}

.home-support-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-footer {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #84909E;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .header-home,
    .home-header-inner {
        min-height: 70px;
    }

    .home-header-inner {
        width: calc(100% - 24px);
        gap: 12px;
    }

    .home-brand img {
        max-width: 154px;
        max-height: 44px;
    }

    .home-quick-actions {
        gap: 5px;
    }

    .home-quick-link {
        width: 38px;
        min-height: 38px;
        padding: 0;
        border-radius: 10px;
    }

    .home-quick-link span {
        display: none;
    }

    .home-quick-link svg {
        width: 16px;
        height: 16px;
    }

    .home-main {
        width: calc(100% - 20px);
        padding: 38px 0 36px;
    }

    .home-hero {
        margin-bottom: 27px;
    }

    .home-eyebrow {
        margin-bottom: 8px;
        font-size: 8px;
    }

    .home-hero-logo {
        margin-bottom: 14px;
    }

    .home-hero-logo img {
        width: min(320px, 84vw);
        max-height: 110px;
    }

    .home-hero p {
        max-width: 540px;
        font-size: 10px;
        line-height: 1.65;
    }

    .home-services {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-service-card {
        min-height: 224px;
        padding: 20px 18px 18px;
        border-radius: 17px;
    }

    .home-card-head {
        margin-bottom: 18px;
    }

    .home-card-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        border-radius: 13px;
    }

    .home-card-copy h2 {
        font-size: 21px;
    }

    .home-card-copy p {
        font-size: 10px;
    }

    .home-support-strip {
        margin-top: 12px;
        padding: 18px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        border-radius: 16px;
    }

    .home-support-button {
        width: 100%;
    }

    .home-footer {
        width: calc(100% - 24px);
        padding-bottom: 22px;
        font-size: 7px;
    }
}

@media (max-width: 390px) {
    .home-brand img {
        max-width: 132px;
    }

    .home-quick-link {
        width: 35px;
        min-height: 35px;
    }
}

/*   pagina de HOME termina aqui   */


/*   pagina de login inicia aqui   */

body {
	font-family: "Montserrat", serif;
	background-color: white;
}

.header-login{
	background-color: #05C7F2;
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
	
}



head {
	margin: 0;
padding: 0;
box-sizing: border-box;
}
.header {
	margin: 0;
padding: 0;
box-sizing: border-box;
}

.login-container {

	font-family: "Montserrat", serif;
	width: 360px;
	height: 220PX;
	margin: 100px auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.login-container h2 {
	text-align: center;
	margin-bottom: 10px;
	transform: translateY(-10PX);
}
.login-container input[type="text"]{
	align-items: center;
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;


}
.login-container input[type="password"] {
	align-items: center;
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}
.login-container input[type="submit"] {
	font-family: "Montserrat", serif;
	width: 100%;
	padding: 10px;
	background-color: #05C7F2;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}
.login-container input[type="submit"]:hover {
	background-color: #05C7F2;
}
.imagen_logo{

	text-align: center;
	position: relative;

}
.buttons-top{
	padding-top: 30px;
	margin-right: 10px;
	
}

.logo-header-login button{
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
    justify-content: center; 
    align-items: center; 
}


/*   pagina de login termina aqui   */


/*   pagina de paso 1 termina aqui   */

.head-paso1 {
    background-color: #C81A1A;
	 height: 130px;
	 margin-top: -22px;
	 margin-left: -10px;
	 margin-right: -10px;
	 border-bottom-left-radius: 35px;
	 border-bottom-right-radius: 35px;
}

.logo-paso1 button{
   background: none;
    float: left;
    margin-top: 30px;
     margin-left: 10px;
      background: none;
       border: none;
       cursor: pointer;
}
.bienvenido-paso1 {
    float: center;
    padding-top: 15px;
    margin-left: 320px;
     margin-right: 500px;
	padding-bottom: 0%;
      background: none;
       border: none;
       color: white;
	   font-family: Arial, Helvetica, sans-serif;
}
.horario-servicio {
float: center;
color: white;
margin-left: 320px;
font-family: Arial, Helvetica, sans-serif;

transform: translateY(-20px);
}
.soporte-tecnico-txt {
	float: center;
	color: white;
	margin-left: 320px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0%;
	transform: translateY(-25px);
}
.soporte-tecnico {
	position: absolute;
	float: center;
color: white;
margin-left: 480px;
font-family: Arial, Helvetica, sans-serif;
font-style: bold;
top: 114px;
transform: translateY(-25px);
text-decoration: none;
font-weight: bold;
}
.soporte-factura-txt {
	float: center;
	color: white;
	margin-left: 610px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0%;
	transform: translateY(-65px);
}
.soporte-factura {
	position: absolute;
	float: center;
color: white;
margin-left: 690px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
top: 114px;
transform: translateY(-26px);
text-decoration: none;
}

#wrapper{
	max-width: 1024px;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
	background:#fff;
}
#ticketEjemplo {
	display: flex;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

div.alert {
	font-family: "Gotham-Black";
	font-size: 12px;
	color: #da0606;
	text-transform: uppercase;
	float: left;
	padding: 0 0 0 28px;
	line-height: 23px;
	background: url(../imagenes/alert.png) no-repeat;
	margin: 15px 0;
	clear: both;
	width: 100%;
}

.alert2{
	font-family: "Gotham-Black";
	font-size: 12px;
	color: #da0606;
	text-transform: uppercase;
	float: left;
	padding: 0 0 0 28px;
	line-height: 23px;
	background: url(../imagenes/alert.png) no-repeat;
	margin: 15px 0;
	clear: both;
	width: 550px;
	margin: 10px 0 20px 66px;
}

.alert3{
	font-family: "Gotham-Black";
	font-size: 12px;
	color: #79ba1f;
	text-transform: uppercase;
	float: left;
	padding: 0 0 0 28px;
	line-height: 23px;
	background: url(../imagenes/verificado.svg) no-repeat;
	margin: 15px 0;
	clear: both;
	width: 550px;
	margin: 10px 0 20px 66px;
}

div.nav {
	float: right;
	overflow: hidden;
}

div.nav button {
	float: right;
	margin-left: 12px;
}

div#overlay{
	overflow-y:hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
	background: url(../imagenes/overlay.png);
}
div#overlay div#ovr_contan {
	width: 530px;
	margin: 0 auto;
	background: #fff !important;
	padding: 8px;
	overflow: hidden;
	margin-top: 100px;
}

div#pre-load-web {
	overflow-y:hidden;
	position:fixed;
	left: 0;
	top: 0;
	width: 100% !important; 
	height: 100% !important;
	
}
div#pre-load-web div#imagen-load{
	left:50%;
	margin: 0 auto;
	margin-left:-30px;
	position:absolute;
	overflow: hidden;
	cursor: wait; 
}
div#overlay div#ovr_contan h2 {
	width: 500px;	
	margin: 0;
	color: #fff;
	font-weight: normal;
	padding: 8px 18px 8px 12px;
	background: #00A9E0;
}

div#overlay div#ovr_contan form {
	width: 500px;
	margin: 0;
	color: #7a7373;
	font-size: 12px;
	font-weight: normal;
	padding: 20px 18px 20px 12px;;
	background: #eeeeee;
}

div#overlay div#ovr_contan form label#lrfc {
	width: 500px;
	padding: 35px 0 20px 0;
	float: left;
}

div#overlay div#ovr_contan form label#lemail {
	width: 500px;
	padding: 0 0 100px 0;
	float: left;
}

div#overlay div#ovr_contan form label input {
	width: 500px;
	background: #fff;
}

.csInEmail{
	width:100%;
}
.csLgEmail{
	background-color:transparent;
	font-size:80%;
}
.csFsEmail{
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.csMonto{
	text-align:right !important;
}

#ticketEjemplo { 
	background: #ededed;
	width: 200px;
	float: left;
	margin-left: 20px;
	padding: 0.2em;
	margin: 0 auto;
	margin-bottom: 5px;
}


#infoform1Nota { width: 350px; float: left; background-color: #fff;}

#contNotasVenta { float:left; width: 465px;}

.btnValidaDtsFiscales {
  padding: 5px 5px !important;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  bottom: 5px;
  right: -290px;
}

.btnValidaDtsFiscales:hover {
  box-shadow: 0px 0px 6px #aaaaaa;
  border-radius: 4px;
}

.validaDtsFiscales {
  background: url(../imagenes/rfc.svg) no-repeat center;
  background-size: 20px;
}

.dtsFiscalesValidado {
  background: url(../imagenes/rfc-correcto.svg) no-repeat center;
  background-size: 20px;
}

.dtsFiscalesNoValidado {
  background: url(../imagenes/errores-rfc_V02.svg) no-repeat center;
  background-size: 20px;
}

.dtsFiscalesLN {
  background: url(../imagenes/rfc-listaNegra_V02.svg) no-repeat center;
  background-size: 20px;
}

input[type="text"]{ 

	align-items: center;
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
    }
input:hover{ background: #fff; }
input:focus{ background-color:#fff; border: 1px solid #4400ff;
    box-shadow: 0px 0px 5px #4400ff;
    -o-box-shadow: 0px 0px 5px #4400ff;
    -ms-box-shadow: 0px 0px 5px#4400ff;
    -moz-box-shadow: 0px 0px 5px #4400ff;
    -webkit-box-shadow: 0px 0px 5px #4400ff;
    -khtml-box-shadow: 0px 0px 5px #4400ff;
    }

select {
	
	border: 1px solid #ccc;
	background: #e1e1e0;
	/*padding: 3px 3px 2px 3px;
	margin-bottom: 5px;*/
	padding: 0.2em; 
	margin-bottom: 0.5em;
	font-family: "MyriadPro-Regular", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	border-radius: 0.5em;
    -o-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    -khtml-border-radius: 0.5em;
    text-shadow: 0px 1px #eee;
    -o-text-shadow: 0px 1px #eee;
    -ms-text-shadow: 0px 1px #eee;
    -moz-text-shadow: 0px 1px #eee;
    -webkit-text-shadow: 0px 1px #eee;
    -khtml-text-shadow: 0px 1px #eee;
    width: 457px;
}
select:hover{background: #fff;}
select:focus {
	
	background-color:#fff; border: 1px solid #ff7300;
    box-shadow: 0px 0px 5px #ff7300;
    -o-box-shadow: 0px 0px 5px #ff7300;
    -ms-box-shadow: 0px 0px 5px #ff7300;
    -moz-box-shadow: 0px 0px 5px #ff7300;
    -webkit-box-shadow: 0px 0px 5px #ff7300;
    -khtml-box-shadow: 0px 0px 5px #ff7300;
}
select:disabled {
	
	background-color:#fff; border: 1px solid #ccc;
	background: #e1e1e0;
	padding: 3px 3px 2px 3px;
	margin-bottom: 5px;
	font-family: "MyriadPro-Regular", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #7a7373;
}
/*//JPTF agregado por la incidencia 87096*/
form.verify label select {
	float: right;
}



form#idform1Nota { 
	display: block;
	padding: 0.5em;
	width: 310px;
	font-size: 28px;
	color: #fff;
	background: #44a7d4;
	    text-shadow: 0px 2px #7d7e7e;
    -o-text-shadow: 0px 2px #7d7e7e;
    -ms-text-shadow: 0px 2px #7d7e7e;
    -moz-text-shadow: 0px 2px #7d7e7e;
    -webkit-text-shadow: 0px 2px #7d7e7e;
    -khtml-text-shadow: 0px 2px #7d7e7e;
    margin-bottom: 5px;
}

form a.note {
	color: #00A9E0; /*#9d9c9a;*/
	font-size: 14px;
}

form.add_nota {
	width: 185px;
}
form.add_nota input {
	width: 300px;
}
form.add_nota input.small {
	width: 50px;
	margin-right: 3px;
}
form.add_nota select.small {
	width: auto;
	margin-right: 3px;
}

form.intro_rfc {
	margin: 35px 0 150px 66px;
	width: 500px;
}
form.intro_rfc input {
	margin: 0 15px;
}

form.intro_rfc_2 {
	margin: 10px 0 20px 66px;
	width: 565px;
}
form.intro_rfc_2 input {
	margin: 0 15px;
}
form.intro_rfc_2 p {
	margin-top: 30px;
}

form.verify {
	margin-left: 66px;
	margin-bottom: 30px;
	width: 155px;
}
form.verify label {
	float: left;
	width: 280px;
	font-size: 15px;
	margin-bottom: 5px;
	margin-right: 5px;
	overflow: hidden;
}
form.verify label p{
	margin-top: 5px;
	padding-right: 5px;
	float: left;
}
form.verify label.full {
	width: 560px;
	overflow: hidden;
}
form.verify label input {
	float: right;
	width: 170px;
}
form.verify label.full input {
	width: 450px;
}
form.verify > input {
	width: 455px;
}

div.notasventa {
	width: 397px;
	overflow: hidden;
}
div.notasventa h3 {
	float: left;
	width: 450px;
	background: #f6b019;
	color: #fff;
	margin: 0;
	font-weight: bold;
	padding: 10px;
}
div.notasventa table {
	border:0;
	/*float: left;*/
	width: 470px !important;
	background: #eeeeee;
	border-collapse: collapse;
	border-top: 20px solid #eeeeee;
	border-left: 13px solid #eeeeee;
	border-right: 12px solid #eeeeee;
	color: #7a7373;
}

.divBotton{
	background: #eeeeee;
	height: 25px;
	margin-bottom: 8px;
}

div.notasventa  table.notasventa tbody tr.treven{background:#fff  !important;}
div.notasventa  table.notasventa tbody tr.trodd{background:#dbdbda  !important;}

div.notasventa table thead tr{
	background: none;
	font-weight: normal;
	font-size: 12px;
	text-align: center;
}
div.notasventa table thead tr th {
	font-weight: normal;
	vertical-align: middle;
	padding-bottom: 10px;
}

div.notasventa table  tbody tr td {
	text-align: center;
	font-size:12px;
	padding: 3px 0 4px 0;
}

div.notasventa table tbody tr td a.remove {
	display: block;
	width: 16px;
	margin-left: 20px;
	height: 16px;
	text-indent: -5000px;
	background: url(../imagenes/icn_delete.png) no-repeat;
	cursor:pointer;
}

div.notasventa  table tbody  tr.trodd td a.remove{
	background-position: left -16px;
}
.green{
	white-space: nowrap;
	text-decoration:none; 
	text-align:center; 
	padding:13px 35px; 
	border:solid 0px #0D0D0D; 
	-webkit-border-radius:4px;
	-moz-border-radius:4px; 
	border-radius: 4px; 
	font:18px "Montserrat", serif; 
	font-weight:bold; 
	color:#E5FFFF; 
	background-color: transparent;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 ); 
	background-image: linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);   
	cursor: pointer;
	margin-bottom: 10px;
	margin-top: 10px;



}
#btnContinuar1{
	
	white-space: nowrap;
	text-decoration:none; 
	text-align:center; 
	padding: 20px 20px; 
	border:solid 0px #0D0D0D; 
	-webkit-border-radius:4px;
	-moz-border-radius:4px; 
	border-radius: 4px; 
	font:18px "Montserrat", serif; 
	font-weight:bold; 
	color:#E5FFFF; 
	background-color: #F5C411; 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 ); 
	background-image: linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);   
	margin-bottom: 100px;
	cursor: pointer;
	

}
.flechaR{


	white-space: nowrap;
	text-decoration:none; 
	text-align:center; 
	padding:13px 20px; 
	border:solid 0px #0D0D0D; 
	-webkit-border-radius:4px;
	-moz-border-radius:4px; 
	border-radius: 4px; 
	font:18px "Montserrat", serif; 
	font-weight:bold; 
	color:#E5FFFF; 
	background-color: #F5C411; 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 ); 
	background-image: linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);   
	margin-bottom: 100px;
	cursor: pointer;
}

/*   pagina de paso 1 termina aqui   */

/*   pagina de paso 2 empieza aqui   */

.regresarpaso2 {
	white-space: nowrap;
	text-decoration:none; 
	text-align:center; 
	padding: 10px 20px; 
	border:solid 0px #0D0D0D; 
	-webkit-border-radius:4px;
	-moz-border-radius:4px; 
	border-radius: 4px; 
	font:18px "Montserrat", serif; 
	font-weight:bold; 
	color:#E5FFFF; 
	background-color: #F5C411; 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 ); 
	background-image: linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);   
	margin-bottom: 100px;
	cursor: pointer;
	

}
.regresarpaso2-1 {
	white-space: nowrap;
	text-decoration:none; 
	text-align:center; 
	padding: 10px 20px; 
	border:solid 0px #0D0D0D; 
	-webkit-border-radius:4px;
	-moz-border-radius:4px; 
	border-radius: 4px; 
	font:18px "Montserrat", serif; 
	font-weight:bold; 
	color:#E5FFFF; 
	background-color: #F5C411; 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 ); 
	background-image: linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);   
	margin-bottom: 100px;
	cursor: pointer;
	width: 124.58px;




}


/*   pagina de paso 2 termina aqui   */


/*   pagina de paso 3 empieza aqui   */

strong{
	color: red;

}
#wrapper-paso3 {
	
	max-width: 1024px;
	overflow: hidden;
	
	margin: 0 auto;
	background:#fff;
}

/*   pagina de paso 3 termina aqui   */






/*   pagina de checador de precio empieza aqui   */

.header-checador {
	background-color: #05C7F2;
	 height: 100px;
	 margin-top: -10px;
	 margin-left: -10px;
	 margin-right: -10px;
	 border-bottom-left-radius: 35px;
	 border-bottom-right-radius: 35px;
	 

}

.header-checador-mayoreo {
	background-color: #6Fd513;
	 height: 100px;
	 margin-top: -10px;
	 margin-left: -10px;
	 margin-right: -10px;
	 border-bottom-left-radius: 35px;
	 border-bottom-right-radius: 35px;
	
	}

.logo-header-checador button{
    float: left;
	 margin-top: 12px;
	  margin-left: 10px;
	   background: none;
	    border: none;
		cursor: pointer;
}
.buttons-top1{
   float: right;
	   background: none;
	    border: none;
		cursor: pointer;
		padding-right: 100px;
		padding-top: 20px;
}
.buttons-top2{
	float: right;
		background: none;
		 border: none;
		 cursor: pointer;
		 padding-right: 30px;
		 padding-top: 20px;
 }

.texto-bt1 {
	font-weight: bold;
	font-family: 'MyriadPro-Regular';
	color: white;
	}

.texto-bt2 {
	font-weight: bold;
	font-family: 'MyriadPro-Regular';
	color: white;
	

}

.containter-titulo{
	
		height: 100vh; /* Asume que quieres centrar respecto a todo el alto de la pantalla */
		width: 100%;
		display: flex; /* Propiedad flexbox */
		justify-content: center; /* Centra el contenido horizontalmente */
		align-items: center; /* Centra el contenido verticalmente */
	
}
.titulobuscador {
	padding-top: 120px;
	text-align: center;
	padding-bottom: auto;
	font-family: 'MyriadPro-Regular';
}

.bt1 {
	display: block;
}
.bt2 {
	display: block;
}


.form {

    display: flex;
    justify-content: center; /* Alinea los elementos al final del contenedor */
    align-items: center; /* Centra verticalmente */
    padding: 40px; /* Espaciado para separar del borde superior */
}

.input-container {
    display: flex;
    align-items: center; /* Centra verticalmente */
}

.input-container input {
    margin-right: 0px; /* Espacio entre el input y el botón */
	width: 350px;
	padding: 10px;
	padding-right: 35px;
	border-radius: 5px 0 0 5px;
	border: 1px solid #ccc;
	outline: none;
	font-size: 1rem;
	height: 54px;
	font-family: 'MyriadPro-Regular';
    }


.boton-borrar {

    background-color: crimson;
		padding: 10px 15px;
		border: 0;
		bottom: 0;
		right: -1;
		border-radius: 0 5px 5px 0;
		color: #fff;
		cursor: pointer;
		margin-top: -15px;
		height: 54px;
			display: flex;
			justify-content: center; /* Centra horizontalmente */
			align-items: center; /* Centra verticalmente */
			
}
.encabezado{
    background-color: #c81a1a;
    color: #ffffff;
    font-weight: bold;
	align-content: center;
	font-family: 'MyriadPro-Regular';
}
.filaA{
    background-color: rgb(188, 235, 175);
    color: #05314c;
	font-family: 'MyriadPro-Regular';
	font-weight: 900;
	

}

.filaB{
    background-color: rgb(250, 229, 142);
    color: #05314c;
	font-family: 'MyriadPro-Regular';
	font-weight: 900;
	
	

}

/*   pagina de checador de precio termina aqui   */

.row.align-content-center {
    background-color: crimson; /* Cambia el color según tus preferencias */
}

