/* numbered buttons */
#status-buttons {}

#status-buttons a {
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	margin-right: 10px;
	text-align: center;
	text-transform: uppercase;
}

#status-buttons a:hover {
	text-decoration: none;
}

#status-buttons span {
	background: #080808;
	display: block;
	height: 30px;
	margin: 0 auto 10px;
	padding-top: 5px;
	width: 30px;
	border-radius: 50%;
}

/* form styling */
#form-container {
	background: #f1f2f2;
	margin-bottom: 20px;
	border-radius: 5px;
	color: white;
}

#form-container .page-header {
	background: #151515;
	margin: 0;
	padding: 30px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

/* active buttons */
#status-buttons a.active span {
	background: #5ad9c1;
}

/* ANIMATION STYLINGS
============================================================================= */
#signup-form {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	padding: 30px;
}

/* basic styling for entering and leaving */
/* left and right added to ensure full width */
#form-views.ng-enter,
#form-views.ng-leave {
	position: absolute;
	left: 30px;
	right: 30px;
	transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-webkit-transition: 0.5s all ease;
}

/* enter animation */
#form-views.ng-enter {
	-webkit-animation: slideInRight 0.5s both ease;
	-moz-animation: slideInRight 0.5s both ease;
	animation: slideInRight 0.5s both ease;
}

/* leave animation */
#form-views.ng-leave {
	-webkit-animation: slideOutLeft 0.5s both ease;
	-moz-animation: slideOutLeft 0.5s both ease;
	animation: slideOutLeft 0.5s both ease;
}

/*/ NOTIFICATION TYPES */
.notif-type {
	background: #fff;
	width: 30%;
	display: inline-block;
	margin-bottom: 1em;
	margin-right: 1em;
	height: 10em;
	color: black;
}

.notif-type:hover {
	background: #5ad9c1;
}

.notif-type i {
	margin-top: 1em;
}

#form-container a {
	text-decoration: none;
}

/* ANIMATIONS
============================================================================= */
/* slide out to the left */
@keyframes slideOutLeft {
	to {
		transform: translateX(-200%);
	}
}

@-moz-keyframes slideOutLeft {
	to {
		-moz-transform: translateX(-200%);
	}
}

@-webkit-keyframes slideOutLeft {
	to {
		-webkit-transform: translateX(-200%);
	}
}

/* slide in from the right */
@keyframes slideInRight {
	from {
		transform: translateX(200%);
	}

	to {
		transform: translateX(0);
	}
}

@-moz-keyframes slideInRight {
	from {
		-moz-transform: translateX(200%);
	}

	to {
		-moz-transform: translateX(0);
	}
}

@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translateX(200%);
	}

	to {
		-webkit-transform: translateX(0);
	}
}

.imagen-background {
	background-image: url(/images/retro.jpg);
	background-size: 100% 100% !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.tr-red {
	background-color: #f56954 !important;
}

.shadow-3p {
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2) !important;
}

/* cuando lleva iva */
.totales-con-iva {
	height: 145px;
}

.totales-con-iva .ion {
	margin-top: 45px;
}

/* cuando lleva comision por ser de cliente */
.total-con-comision {
	height: 145px;
}

.total-con-comision .ion {
	margin-top: 45px;
}

/* cuando lleva iva y aparte lleva comision por ser de cliente */
.totales-con-iva.total-con-comision {
	height: 190px;
}

.totales-con-iva.total-con-comision .ion {
	margin-top: 70px;
}

.info-box-icon-folio {
	width: 55px !important;
	height: 55px !important;
	font-size: 30px !important;
	line-height: 55px !important;
}

.modal-footer {
	border-top: 0px !important;
}

.help-block {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background-color: #001f3f !important;
	border-color: #001f3f !important;
}

.pagination>li>a,
.pagination>li>span {
	position: static !important;
}

.info-box-icon-abono {
	height: 220px !important;
}

.info-box-icon-abono i {
	margin-top: 85px !important;
}

.icon-total-abono-iva {
	height: 310px !important;
}

.icon-total-abono-iva i {
	margin-top: 125px !important;
}

/* reporte de araña */
.node {
	cursor: pointer;
}

.node circle {
	fill: #fff;
	stroke: steelblue;
	stroke-width: 1.5px;
}

.node text {
	font: 10px sans-serif;
}

.link {
	fill: none;
	stroke: #ccc;
	stroke-width: 1.5px;
}

@page {
	size: auto;
	margin: 3mm 3mm 3mm 3mm;
}

.add-manita-pointer {
	cursor: pointer;
}

/* para que no cuando se abra el dialog de cancelar no se sobrepongan los select2 */
.input-group .form-control {
	z-index: 1 !important;
}


/* estilo para los radio */
.radio-custom {
	display: none;
}

.radio-custom+label span:nth-of-type(1) {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: transparent;
	vertical-align: middle;
	border: 2px solid#00c0ef;
	border-radius: 50%;
	padding: 2px;
	margin: 0 5px;
	font-size: 15px !important;
}

.radio-custom:checked+label span:nth-of-type(1) {
	width: 15px;
	height: 15px;
	background: #00c0ef;
	background-clip: content-box;
	font-size: 15px !important;
}

.radio-custom+label span:nth-of-type(2) {
	padding-left: 30px;
	font-style: italic;
	color: grey;
}

.fs-19 {
	font-size: 19px !important;
}

.border-top-gris {
	border-top: 1px solid #eee;
}

.cb-grande {
	width: 20px;
	height: 20px;
}

@media print {
	.gastos-rpt {
		margin: 4.0cm !important;
		size: letter !important;
		display: block !important;
	}
}

.table-presupuesto tbody tr {
	font-weight: normal;
}

.mb-20 {
	margin-bottom: 20px;
}

.pl-0 {
	padding-left: 0px;
}

.mr-10 {
	margin-right: 10px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mt-30 {
	margin-top: 30px;
}

.fs-25 {
	font-size: 25px !important;
}

.materiales-ui-select {
	max-width: 520px;
}

.materiales-ui-select .ui-select-choices .ui-select-choices-row-inner {
	white-space: normal;
	word-wrap: break-word;
}

.materiales-ui-select .ui-select-choices {
	white-space: normal !important;
}

.materiales-ui-select .ui-select-choices .ui-select-choices-row-inner,
.materiales-ui-select .ui-select-choices .ui-select-choices-row-inner span,
.materiales-ui-select .ui-select-choices .ui-select-choices-row-inner strong {
	white-space: normal !important;
	word-wrap: break-word !important;
}