/*  CSS definations for Sys Kosher  */
/*-------------------------------------------------------------------------------------------

INDEX:

0. RESET

1. SETUP
	1.1 Defaults
	1.2 Common Tages

2. SITE STRUCTURE & APPEARANCE
	2.1 Header
		2.1.1 Logo
		2.1.2 Subtitle
		2.1.3 User
	2.2 Container
		2.2.1 Calculator Area
		2.2.2 Total Area
		2.2.3 Content Box
		2.2.4 Featured List
		2.2.5 News Box
		2.2.6 Fillform

-------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------*/
/* 0. RESET */
/*-------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
	outline:none;
}

/*-------------------------------------------------------------------------------------------*/
/* 1. SETUP */
/*-------------------------------------------------------------------------------------------*/
/* 1.1 Defaults */
h1, h2, h3, h4, h5, h6, strong {
	font-weight:bold;
}
i, em { 
	font-style:italic; 
}
.left {
	float:left;
}
.right {
	float:right;
}
.alignleft{
	text-align:left;	
}
.alignright{
	text-align:right;	
}
.aligncenter{
	text-align:center;	
}
.clear  {
	clear:both;
	line-height:1px;
	height:1px;
}
.clearfix:before, .clearfix:after { 
	display: table; content: " "; 
}
.clearfix:after { 
	clear: both; 
}
textarea{
	overflow:auto;
	font-family:Arial, Helvetica, sans-serif; /* Body Font Family Will Come Here */
}
a { 
	color:#333;
	text-decoration:none;
}
a:hover {
	color:#000;
}
address {
	font-style:normal;
}

/* 1.2 Common Tags */
.input {
	box-sizing:border-box;
	border:1px solid #231f20;
	width:100%;
	height:51px;
	line-height:59px;
	padding:0 10px;
	margin-bottom:14px;
	color:#231f20;
	font-size:32px;
	text-align:left;
}

/*-------------------------------------------------------------------------------------------*/
/* 2. SITE STRUCTURE & APPEARANCE */
/*-------------------------------------------------------------------------------------------*/
body {
	background:#fff;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#231f20;
}
html, body {
	direction:ltr;
}
.box {
/*	width:1175px;*/
	margin:0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;

}

/* 2.1 Header */
.header {
	background:#e6e7e8;
	border-bottom:1px solid #5e5f61;
	box-shadow:rgba(199, 201, 203, 1) 0px 1px 0px;
	padding:8px 0;
	color:#939598;
	font-size:24px;
	position:relative;
}
.header-left {
	float:left;
}
/* 2.1.1 Logo */
.logo {
	width:180px;
	padding-top:10px;
	margin-right:32px;
	float:left;
}
/* 2.1.2 Subtitle */
.subtitle {
	width:195px;
	line-height:50px;
	float:left;
	font-size:26px;
	text-align:left;
}
.header-right {
	float:right;
}
.btn-login {
	border:1px solid #d47b68;
	width:222px;
	height:48px;
	line-height:48px;
	float:right;
	color:#939598;
	font-weight:bold;
	text-align:center;
}
.btn-login:hover {
	background:#d68572;
	color:#fff;
}
/* 2.1.3 User */
.user {
	line-height:50px;
	margin-right:28px;
	float:right;
}
.user strong {
	margin-left:8px;
	float:right;
}
.header-mid {
	line-height:50px;
	margin-left:5px;
	float:left;
	text-align:center;
}
.header-mid span {
	margin-left:30px;
	float:right;
}
.home .header-mid {
	margin-left:0;
	float:none;
	-moz-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	top:50%;
	left:50%;
	position:absolute;
}
.btn-warning,
.btn-close {
	border:1px solid #555658;
	width:95px;
	height:95px;
	line-height:95px;
	text-align:center;
	display:block;
	right:0;
	position:absolute;
	z-index: 10;
}
.btn-warning {
	top:26px;
	line-height: 35px;
	font-size: 21px;	

}

.btn-warning:active {
	background:#949698;
}
.btn-prev {
	background:url(../images/sprite_arrow.png) no-repeat left top;
	width:98px;
	height:98px;
	display:block;
	bottom:30px;
	text-indent:-9999px;
	position:absolute;
}

.btn-next {
	background:url(../images/sprite_arrow.png) no-repeat left top;
	width:98px;
	height:98px;
	display:block;
	bottom:30px;
	text-indent:-9999px;
	position:absolute;
	background-position:right bottom;
}


.btn-prev {
	background-position:left top;
	left:0;
}
.btn-prev:hover,
.btn-prev.active {
	background-position:left bottom;
	left:0;
}
.btn-next {
	right:0;
}
.btn-next:active {
	background-position:right top;
}


.btn-undo {
	border:1px solid #555658;
	width:95px;
	height:95px;
	line-height:95px;
	text-align:center;
	display:block;
	left:0;
	bottom: 0;
	position:absolute;
}
.btn-undo:active {
	background:#949698;
}

.btn-start {
	border:1px solid #cc3433;
	background: #cc3433;
    color: #fff;
    font-size: 40px;
    padding: 20px 40px;
    position: absolute;
    bottom: 20px;
    right: 0px;	
}

.btn-start:active {
	background: #fff;
    color: #cc3433;
}

/* 2.2 Container */
.container {
/*	
	width:1175px;
	height:calc(100% - 68px);
	margin-left:-587px;
	left:50%;
	position:absolute;
*/
	position: absolute;
    top: 80px;
    left: 40px;
    right: 40px;
    bottom: 20px;
}

#text_alert {
	color: #e60000;	
	display: none;
}

/* 2.2.1 Calculator Area */
.calculator-area {
	width:290px;
	top:50%;
	-moz-transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	left:0;
	position:absolute;
}
.inner-page2 .calculator-area {
/*
	top:175px;
	left:50%;
	-moz-transform:translate(-50%,0);
	-webkit-transform:translate(-50%,0);
	transform:translate(-50%,0);
*/
    top: 50%;
    left: 50%;
    -moz-transform: translate(-70%,-50%);
    -webkit-transform: translate(-70%,-50%);
    transform: translate(-70%,-50%);
}
.calculator-area .row {
	margin-bottom:17px;
}
.calculator-area .row span {
	color:#bcbdc0;
	font-size:36px;
}
.calculator ul {
	margin-left:-16px;
}
.calculator li {
	width:84px;
	height:84px;
	line-height:82px;
	margin:0 0 13px 16px;
	float:left;
	color:#231f20;
	font-size:67px;
	font-weight:bold;
	text-align:center;
}
.calculator li a {
	border:1px solid #373537;
	display:block;
	color:#231f20;
}
.calculator li a:active {
	background-color: #ccc;
}

.calculator li button {
	border: 1px solid #373537;
    display: block;
    color: #231f20;
    width: 84px;
    height: 84px;
    color: #231f20;
    font-size: 67px;
    font-weight: bold;
    text-align: center;
    background-color: #fff;
 }

/*.calculator li button:active {
	background-color: #ccc;
}*/

@-webkit-keyframes boton_activo {
    0% {
        background-color: #ccc;
    }
    100% {
        background-color: #fff;
    }
}
    
.boton_activo {
    -webkit-animation-name: boton_activo;
    -webkit-animation-duration: 200ms;
    -webkit-animation-iteration-count: 1;
/*    -webkit-animation-timing-function: ease-in-out;*/
}  

.content-area {
	-moz-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	top:50%;
	left:50%;
	position:absolute;
	color:#231f20;
	font-size:125px;
}
.content-area-login {
	top:50%;
	left:50%;
	position:absolute;
	color:#231f20;
	font-size:125px;
    margin-left: -140px;
    margin-top: -70px;
	width: 280px;
    height: 126px;
    border-bottom: 5px solid #231f20;        
}

.content-label {
	font-size: 25px;
    line-height: 20px;
    border: none;
    color: #939598;
}

.content-area-max {
	top:50%;
	left:50%;
	position:absolute;
	color:#231f20;
	font-size:125px;
    margin-left: -140px;
    margin-top: -70px;
	width: 280px;
    height: 146px;
    border-bottom: 5px solid #231f20;        
}

#campo_login {
	width: 280px;
    height: 126px;
    border-bottom: 5px solid #231f20;        
    font-weight: bold;
}

.mensaje {
	margin-top: 30px;
	font-size: 40px;
	text-align: center;
}

.content-list {
	border-bottom:1px solid #d0d2d4;
	width:270px;
	left:0;
	position:absolute;
/*
	top:175px;
*/	
	-moz-transform:translate(0,-50%);
	-webkit-transform:translate(0,-50%);
	transform:translate(0,-50%);
	top:50%;
}

.content-list li {
	border-top:1px solid #d0d2d4;
	line-height:64px;
	padding:0 5px;
	color:#231f20;
	font-size:63px;
	font-weight:700;
	text-align:right;
}
.content-list li strong,
.content-list li strong a {
	color:#cc3333;
}
.content-list li strong {
	margin-right:25px;
	float:right;
	margin-left:25px;
}

.content-list-paso-1 {
    height: 416px;
    overflow-x: hidden;
    overflow-y: scroll;
    transform: none;
    top: 30px;
}

/* 2.2.2 Total Area */
.total-area {
/*
	-moz-transform:translateY(-80%);
	-webkit-transform:translateY(-80%);
	transform:translateY(-80%);
*/	
	top:50%;
	right:0;
	position:absolute;
	color:#231f20;

	width: 430px;
	height: 132px;
	margin-top: -66px;
}
.total-area strong {
	padding-bottom:10px;
	font-size:121px;
	position:relative;

	display: block;
	text-align: right;
	border-bottom: 5px solid #231f20;
	float: left;
	width: 280px;
	height: 136px;
}
.btn-close {
	background:#cc3433;
	line-height:95px;
	margin:12px 0 0 53px;
	color:#fff;
	font-size:77px;
	font-weight:700;
	right:auto;
	float:right;
	position:static;
}
.btn-close:hover {
	background:#e54544;
	color:#fff;
}
/* 2.2.3 Content Box */
.content-box {
	width:100%;
/*	transform:translateY(-50%);
	top:50%;*/
	top: 0;
	position:absolute;
}
.content-column-left {
	width:413px;
	min-height:575px;
	padding-right:60px;
	float:left;
}
.content-column-left-in {
    width:413px;
    float:left;
}
.content-column-left.border-right {
	border-right:1px solid #373537;
}
.content-column-left h3 {
	margin:0 -10px 11px -10px;
	color:#231f20;
	font-size:121px;
	text-align:left;
}
.content-column-left h3 big {
	float:left;
}
.content-column-left h3 strong {
	margin-left:24px;
	padding-top:36px;
	color:#cc3333;
	font-size:78px;
	float:left;
}
.content-column-left h3 span {
	margin-left:27px;
	padding-top:50px;
	font-size:52px;
	color:rgba(0, 0, 0, 0.30);
	font-weight:normal;
	float:left;
}
.content-column-left h3 span samp {
	margin-top:-17px;
	font-size:79px;
	float:left;
}
.inner-page4 .content-column-left h3 {
	margin-bottom:20px;
}
/* 2.2.4 Featured List */
.featured-list {
	margin-bottom:44px;
}
.featured-list ul {
	margin-left:-19px;
	float:right;
}
.featured-list li {
	width:97px;
	margin-left:19px;
	float:left;
}
.featured-list li .numerical-area {
	border:1px solid #c1c2c4;
	box-shadow:rgba(228, 229, 230, 1) 1px 1px 0px;
	width:95px;
	height:95px;
	line-height:80px;
	margin-bottom:21px;
	color:#231f20;
	font-size:93px;
	font-weight:700;
	text-align:center;
}
.featured-list li .numerical-position {
	border:1px solid #c0c2c4;
	height:35px;
	line-height:33px;
	padding:0 6px;
	color:#231f20;
	font-size:28px;
	font-weight:700;
}
.featured-list li .numerical-position strong {
	width:38px;
	font-size:33px;
	float:left;
	text-align:left;
}
.featured-list li .numerical-position span {
	padding-top:3px;
	float:left;
}
.featured-list li.font-size .numerical-area {
	line-height:95px;
	font-size:77px;
}
.featured-list li.font-size .numerical-position strong {
	line-height:38px;
	font-size:28px;
}
.content-list2 {
	border-bottom:1px solid #231f20;
}
.content-list2 li {
	border-top:1px solid #231f20;
	width:100%;
	padding:9px 0 2px 0;
	float:left;
	color:#f1f1f2;
	font-weight:700;
}
.content-list2 li .td {
	float:left;
	color:#231f20;
	font-size:42px;
}
.content-list2 li .td2 {
	margin:-6px 0 0 42px;
	float:left;
	font-size:50px;
}
.content-list2 li .td3 {
	margin-left:86px;
}
.content-list2 li .td4 {
	margin:-3px 0 0 83px;
	float:left;
	font-size:46px;
}
.content-list2 li .active {
	color:#cc3333;
}
.content-column-right {
	width:680px;
	min-height:575px;
	float:right;
	position:relative;
}
.content-column-right .btn-warning {
	top:0;
}
.content-column-right .imgb {
	padding-top:30px;
	text-align:center;
}
.content-column-right .btn-prev,
.content-column-right .btn-next {
	bottom:0;
}
/* 2.2.5 News Box */
.news-box .date-area {
	margin-bottom:108px;
}
.news-box .date-area h4 {
/*	
	line-height:95px;
	float:left;
	color:#cc3333;
	font-size:69px;
*/
    line-height: 95px;
    color: #cc3333;
    font-size: 120px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 10px;	
}
.news-box .date-area ul {
/*	
	margin-left:-19px;
	float:right;
*/
	margin: 0 auto;
    width: 250px;	
}
.news-box .date-area li {
	border:1px solid #ccced0;
	width:95px;
	height:95px;
	line-height:85px;
	margin-left:19px;
	float:left;
	font-size:93px;
	font-weight:700;
	text-align:center;
}
.news-box .date-area li a {
	display:block;
	color:rgba(0, 0, 0, 0.30);
}
.news-box .date-area li.red {
	background:#cc3433;
	border:1px solid #373537;
	color: #fff;
}
.news-box .date-area li.red a {
	color:#fff;
}
.calendar-area {
	margin-right:-15px;
	text-align:center;
}
.calendar-area h4 {
	margin-bottom:22px;
	color:rgba(0, 0, 0, 0.50);
	font-size:69px;
}
.calendar li {
	width:61px;
	height:61px;
	line-height:61px;
	margin-bottom:2px;
	float:left;
	font-size:36px;
	font-weight:700;
	text-transform:uppercase;
}
.calendar li a {
	border:1px solid transparent;
	display:block;
	color:rgba(0, 0, 0, 0.30);
}
.calendar li.active a {
	background:#cc3433;
	border:1px solid #353030;
	color:#fff !important;
}
.calendar .month-row li a {
	color:rgba(0, 0, 0, 0.50);
}
.content-list3 {
	width:485px;
	height:534px;
	float:left;
	overflow:hidden;
	overflow-y:scroll;
}
.content-list3 .content-list-in {
	border-top:1px solid #949698;
	padding-top:5px;
	margin-right:27px;
}
.content-list3 li {
	border-bottom:1px solid #949698;
	width:100%;
	padding-top:2px;
	float:left;
	font-weight:700;
}
.content-list3 strong {
	float:left;
	color:#231f20;
	font-size:63px;
}
.content-list3 span {
	margin:-3px 0 0 53px;
	float:left;
	color:#cc3333;
	font-size:66px;
}
.content-list3 li ul {
	padding:5px 30px 0 0;
	margin-left:-30px;
	float:right;
}
.content-list3 li li {
	border:1px solid #2b2829;
	-moz-border-radius:100%;
	-webkit-border-radius:100%;
	border-radius:100%;
	width:45px;
	height:45px;
	padding:0;
	margin-left:30px;
	float:left;
	text-indent:-9999px;
}
.content-list3 li li.red {
	background:#cc3433;
}

.content-list3 .content-list-in.fechas {
	padding-top: 0;
	border: none;
}

.content-list3 .content-list-in.fechas > ul > li {
	border: 1px solid #949698;
    width: 100%;
    padding: 10px 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.content-list3 .content-list-in.fechas > ul > li strong {
	float: none;
	font-size: 61px;
}

.paddin-left-200 {
	padding:35px 0 0 200px;
}
.btn-row {
	margin-bottom:24px;
}
.btn-row ul {
	margin-left:-19px;
}
.btn-row li {
	width:98px;
	line-height:82px;
	margin-left:19px;
	float:left;
	font-size:95px;
	font-weight:700;
	text-align:center;

	border:1px solid #474749;
	height:98px;
	display:block;
	color:#231f20;	
}
.btn-row li a {
	border:1px solid #474749;
	height:98px;
	display:block;
	color:#231f20;
}
.btn-row li.small-font {
	line-height:110px;
	font-size:53px;
}
.btn-row li.active, .btn-row li a:hover,
.btn-row li.active a {
	background:#cc3433;
	color:#fff;
}

.lista_empaque {

	overflow: hidden;
    overflow-y: scroll;
    height: 350px;
    width: 890px;

}

.lista_fechas {

	overflow: hidden;
    overflow-y: scroll;
    height: 490px;
    width: 480px;
    padding: 5px;
    margin: 20px auto;

}

.lista_fechas > ul > li {
    border: 1px solid #949698;
    width: 100%;
    padding: 10px 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.lista_fechas > ul > li strong {
    font-size: 61px;
    color: #231f20;
}

/* 2.2.6 Fillform */
.fillform {
	margin-left:-42px;
}
.fillform .fillform-col {
	width:270px;
	margin-left:42px;
	float:left;
	text-align:center;
}
.fillform .fillform-col h3 {
	margin-bottom:13px;
	color:#cc3333;
	font-size:47px;
}
.fillform .fillform-col2 {
	margin-left:35px;
	float:left;
	color:#231f20;
	font-size:47px;
	font-weight:700;
	text-align:left;
}
.padding-top-0 {
	padding-top:0;
}
.fillform2 h4 {
	margin-bottom:13px;
	color:#231f20;
	font-size:52px;
	text-align:left;
}
.fillform-col3 {
	width:312px;
	margin-right:32px;
	float:left;
}
.fillform-col4 {
	line-height:60px;
	overflow:hidden;
	color:#cc3333;
	font-size:52px;
	font-weight:700;
	text-align:left;
}
.fillform-col3 .input {
	border:1px solid #949698;
	height:60px;
	margin-bottom:10px;
}
.fillform-col3 .input.ico-calendar {
	background:url(../images/ico_calendar.png) no-repeat right center;
	padding-right:75px;
}
.inner-page8 .btn-row {
	padding:34px 0 0 80px;
}
.fillform3 {
	width:812px;
	margin:0 auto 30px auto;
}
.fillform3 .fillform-in {
	height:382px;
	overflow:hidden;
	overflow-y:scroll;
}


#loader {
	background-color: #fff;
	opacity: 0.8;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: 1000;
}

#loader img {

	width: 120px;
	height: 120px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -60px;
	margin-left: -60px;

}

#loader div {

    width: 300px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -120px;
    margin-left: -150px;
    text-align: center;
    font-size: 40px;
    
}

#contenedor_pulmon {
	width: 428px;
	height: 509px;
	margin: 0 auto;
	position: relative;
}

#contenedor_pulmon .imagen {
	position: absolute;
	top: 0;
	left: 0;
	width: 428px;
	height: 509px;
	z-index: 1;
}

#contenedor_pulmon .puntos {
	position: absolute;
	top: 0;
	left: 0;
	width: 428px;
	height: 509px;
	z-index: 2;
}

#contenedor_pulmon .puntos .punto {

    border: 1px solid #2b2829;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    text-indent: -9999px;
    background: #cc3433;
    position: absolute;

}

.boton_seleccionado {
    background: #cc3433;
    color: #fff !important;
}

.boton_deshabilitado {
	opacity: 0.6;
}

/*
@media screen and (max-width:1280px) {
	.content-box {
		margin-top:30px;
		padding-bottom:30px;
		top:0;
		-moz-transform:translateX(0);
		-webkit-transform:translateX(0);
		transform:translateX(0);
		position:relative;
	}
	.content-list {
		padding-bottom:60px;
		position:relative;
	}
}
*/