@import url(https://fonts.googleapis.com/css?family=Hind:400,300,700&subset=latin-ext);
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

#editor, .ql-editor {
	font-family: Arial, Helvetica, sans-serif!important;
}

*:not(.ql-editor):not(.ql-align-left):not(.ql-align-right):not(.ql-align-center):not(.ql-font-monospace) {
	font-family: 'Hind', sans-serif;
}

*.ql-editor {
	font-family: Arial, Helvetica, sans-serif!important;
	margin: 1em!important;
	box-decoration-break: slice;
}

.ql-editor p {
	font-family: Arial, Helvetica, sans-serif!important;
}

.ql-editor strong {
	font-family: Arial, Helvetica, sans-serif!important;
}



body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background: #ecf0f1;
  background: -moz-radial-gradient(center, ellipse cover, #ecf0f1 0%, #bdc3c7 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #ecf0f1 0%, #bdc3c7 100%);
  background: radial-gradient(ellipse at center, #ecf0f1 0%, #bdc3c7 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ecf0f1', endColorstr='#bdc3c7', GradientType=1);
  display: table;
}

.login-wrapper {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.login-wrapper * {
  transition: all 1s;
}

.login-wrapper .login-panel {
  box-sizing: border-box;
  display: table;
  background-color: white;
  width: 500px;
  margin: 0 auto;
  padding: 60px 40px 40px 40px;
  animation: fade-in 1s ease-in 0s 1 alternate;
}

.login-wrapper .login-panel:hover {
  box-shadow: 0 0 50px rgba(1, 1, 1, .3);
}

.login-wrapper .login-panel label {
  font-size: 16px;
  display: block;
  margin: 5px 0;
  color: #34495e;
  opacity: 0;
  animation: fade-in 1s ease-in 1s 1 forwards;
}

.login-wrapper .login-panel input[type="text"] + label,
.login-wrapper .login-panel input[type="password"] + label {
  position: relative;
  color: #c4cacd;
  transition: all .3s;
  animation: label .3s ease-in 0s 1 forwards;
  animation-play-state: paused;
  animation-play-state: running;
}

.login-wrapper .login-panel input[type="text"]:focus + label,
.login-wrapper .login-panel input[type="password"]:focus + label {
  font-size: 16px;
  color: #34495e;
  animation-fill-mode: forwards;
}

.login-wrapper .login-panel input[type="text"],
.login-wrapper .login-panel input[type="password"],
.login-wrapper .login-panel input[type="submit"] {
  font: 400 20px 'Hind', sans-serif;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-left: 3px solid transparent;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  display: block;
  padding: 10px 20px;
  opacity: 0;
  animation: fade-in 1s ease-in 1.5s 1 forwards;
}

.login-wrapper .login-panel input[type="text"],
.login-wrapper .login-panel input[type="password"],
.login-wrapper .login-panel input[type="checkbox"] {
  margin-bottom: 20px;
  background-color: #ecf0f1;
  color: #34495e;
}

.login-wrapper .login-panel input[type="text"]:focus,
.login-wrapper .login-panel input[type="password"]:focus {
  background-color: #E1E6E7
}

.login-wrapper .login-panel input[type="text"]:focus,
.login-wrapper .login-panel input[type="password"]:focus,
.login-wrapper .login-panel input[type="submit"]:focus {
  outline: none;
}

.login-wrapper .login-panel input[type="text"]:valid,
.login-wrapper .login-panel input[type="password"]:valid {
  border-left: 3px solid #3498db;
}

.login-wrapper .login-panel input[type="text"]:valid + label,
.login-wrapper .login-panel input[type="password"]:valid + label {
  color: #3498db !important;
}

.login-wrapper .login-panel input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.login-wrapper .login-panel input[type="checkbox"],
.login-wrapper .login-panel label[for='remember'] {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.login-wrapper .login-panel label[for='remember'] {
  position: relative;
  font-size: 16px;
  margin-top: -25px;
}

.login-wrapper .login-panel input[type="checkbox"] + [for='remember']:before {
  content: '';
  background: #ecf0f1;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  text-align: center;
  opacity: 0;
  animation: fade-in 1s ease-in 2s 1 forwards;
}

.login-wrapper .login-panel input[type="checkbox"]:checked + [for='remember']:before {
  background: #3498db;
  box-shadow: inset 0px 0px 0px 5px #ecf0f1;
}

.login-wrapper .login-panel input[type="checkbox"]:checked + [for='remember'] {
  color: #3498db;
}

.login-wrapper .login-panel input[type="checkbox"]:focus + [for='remember'] {
  outline: 1px solid #ddd;
}

.login-wrapper .login-panel input[type="submit"] {
  text-transform: uppercase;
  width: 100%;
  background-color: #3498db;
  color: white;
  font-weight: 300;
  letter-spacing: 10px;
  margin-top: 15px;
  cursor: pointer;
}

.login-wrapper .login-panel input[type="submit"]:hover {
  background-color: #2980b9;
}

.login-wrapper .login-panel .forget-password {
  margin-top: 20px;
  display: block;
  text-align: center;
  color: #bdc3c7;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  animation: fade-in 1s ease-in 2s 1 forwards;
}

.login-wrapper .login-panel .forget-password:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-wrapper .login-panel {
    width: 90%;
    padding: 60px 20px 20px 20px;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes label {
  0% {
    top: -58px;
    left: 20px;
    opacity: 1;
  }
  100% {
    top: -98px;
    left: 0;
    opacity: 1;
  }
}
/* Off-topic */

.adobewordpress {
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  text-align: center;
  bottom: 10px;
}

.adobewordpress img {
  width: 30px;
  opacity:.3;
  transition:all .5s;
}

.adobewordpress img:hover {
  width: 60px;
  opacity:1;
  -ms-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.header-wrapper {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  display: table;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  /* padding: 60px 40px 40px 40px; */
  animation: fade-in 1s ease-in 0s 1 alternate;
}

.iframe {
	width: 100%;
    border: 0px;
}


.menuTile {
	padding-left: 10px;
	padding-right: 10px;
	margin: 5px;
}

.menuTile:hover {
	opacity: 0.8;
}

.presupuestoinput {
	height: 2em;
    width: 20vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
}
/*
select {
	display:inline!important;
}
*/

.presupWrap {
	width: 75%;
    margin: 10px;
    background-color: #ffc107;
    border-radius: 5px;
}

.submitpresupuesto {
	height: 2em;
    width: 20vw;
    margin: 5px;
    font-size: 1em;
    border: 0px;
    border-radius: 2px;
    box-shadow: darkgrey 1px 1px;
    color: white;
    background-color: green;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}


.presupuestoinputmat, .presupuestoinputtareas {
	height: 2em;
    width: 20vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
}

.presupuestoinputcant {
	height: 2em;
    width: 15vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
}

.presupuestoinputmanos, .presupuestoinputlitros,.presupuestoinputrend {
	height: 2em;
    width: 10vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
}

.presupuestoinputcost {
	height: 2em;
    width: 10vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
}

.ui-menu-item {
	background-color:white;
	height: auto;
    width: 20vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
	list-style-type: none;
	
}

.comentariosPresup {
	margin: 5px;
    width: 61.5vw;
    min-height: 25vh;
    max-height: auto;
    border-radius: 5px;
    border: 0px;
}

.presupuestoHeaderTable {
	width: 80vw;
    background-color: white;
    border: 1px solid #ecf0f1;
    font-size: 1.5em;
	table-layout: fixed;
	border-collapse: collapse;
}

.presupuestoHeaderTR {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #FFB600;
	color: white;
	border: 1px solid #ecf0f1;
	border-collapse: collapse;
	text-shadow: black 1px 1px;
}

.presupuestoHeaderTD {
	text-align: left;
	background-color: #FFB600;
	color: white;
	border: 1px solid #ecf0f1;
	border-collapse: collapse;
	text-shadow: black 1px 1px;
	font-weight:bold;
}

.presupuestoHeaderID {
	border: 1px solid #ecf0f1;
	border-collapse: collapse;
}

.presupuestoHeaderTitulo {
	
}

.presupuestoHeaderFecha {
	border: 1px solid #ecf0f1;
	text-align: right;
	border-collapse: collapse;
}

.presupuestoMaterialesTable {
	background-color: white;
	width: 80vw;
	border: 2px solid #ecf0f1;
	border-collapse: collapse;
	table-layout: fixed;
}

#presupuestoMaterialesTable td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

.presupuestoTR:nth-child(even){background-color: #f2f2f2;}

.presupuestoTR:hover {background-color: #ddd;}

.totalMaterialesTable {
	border: 2px solid #ecf0f1;
	background-color: white;
	width: 80vw;
	border-collapse: collapse;
	table-layout: fixed;
}

.adjuntosTable {
	border: 2px solid #ecf0f1;
	background-color: white;
	width: 50vw;
	border-collapse: collapse;
	table-layout: fixed;
}


.totalMaterialesTable2 {
	border: 2px solid #ecf0f1;
	background-color: white;
	border-collapse: collapse;
	table-layout: fixed;
	width: auto;
}

.grandTotal {
	background-color: white;
    color: green;
    font-weight: bold;
    font-size: 2em;
}

.configInput {
	background-color: transparent;
	border: 0px solid;
}

.configUpdate {
	width: 100%;
    font-size: 1em;
    background-color: #FFB600;
    border: 0px;
    border-radius: 2px;
    box-shadow: 1px 1px #cecece;
    cursor: pointer;
}

.presupuestoinputedit {
    width: 100%; 
    margin: 0px; 
	background-color: transparent;
}

.acciones {
	margin-left: 1em;
    margin-right: 1em;
    padding: 5px;
}


.popups input, .popups textarea, .popups select { 
  font-family: inherit; 
  text-transform: inherit; 
  font-size: inherit;
  border: 1px solid gray;
  display: block; 
  width: 280px; 
  padding: .4em;
    
}

.operariosselect {
	width: 100%!important;
	height:auto!important;
}


.formBtn { 
  width: 140px;
  display: inline-block;
  background: #FFB600;
  color: #fff;
  font-weight: 100;
  font-size: 1.2em;
  border: none;
  height: 30px;
}


#operarioForm, #gastoForm, #altaoperarioForm, #adjuntoForm, #pagoForm, #asociarForm, #gastoFormP, #adelantoForm, #altaTexto { 
  display: none;
  border: 6px solid #FFB600; 
  padding: 2em;
  width: 60%;
  text-align: center;
  background: rgba(244, 244, 244, 0.9);
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%)
}


.tabs {
  max-width: 90%;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}


/* --- Tabs base --- */
.tabSection { display: none; }

.tabbedLabel {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #abc;
  border: 1px solid transparent;
}
.tabbedLabel:hover { color: #789; cursor: pointer; }

/* Ocultar radios sin romper :checked */
.tabbed { position: absolute; left: -9999px; }

/* Activa la sección cuando el radio está checked (1→1) */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7,
#tab8:checked ~ #content8 { display: block; }

/* (opcional) íconos Font Awesome 4.7: familia correcta */
.tabbedLabel:before { font-family: "FontAwesome"; font-weight: normal; margin-right: 10px; }
label[for='tab1']:before { content: '\f1ec'; }
label[for='tab2']:before { content: '\f0c0'; }
label[for='tab3']:before { content: '\f02a'; }
label[for='tab4']:before { content: '\f03a'; }
label[for='tab5']:before { content: '\f0d6'; }
label[for='tab6']:before { content: '\f155'; }
label[for='tab7']:before { content: '\f0d6'; }
label[for='tab8']:before { content: '\f1c1'; }





@media screen and (max-width: 800px) {
  .tabbedLabel {
    font-size: 0;
  }
  .tabbedLabel:before {
    margin: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .tabbedLabel {
    padding: 15px;
  }
}


@media only screen and (max-width: 1024px) {
  .pcAlerts {
    display: none;
  }
	.comentariosPresup {
	margin: 5px;
    width: 91.5vw;
    min-height: 25vh;
    max-height: auto;
    border-radius: 5px;
    border: 0px;
	}
	.presupuestoinputmat, .presupuestoinput, .submitpresupuesto, .presupuestoinputtareas {
		height: 4em;
		width: 30vw;
		font-size: 1em;
	}
	
	.presupuestoinputrend, .presupuestoinputmanos, .presupuestoinputlitros, .presupuestoinputcant, .presupuestoinputcost {
		height: 4em!important;
		width: 15vw;
		font-size: 1em;
	}
	
	.submitpresupuesto {
		width: 50vw;
	}
	 .presupuestoHeaderTable, .totalMaterialesTable, .presupuestoMaterialesTable, .adjuntosTable {
	width: 95vw!important;
	table-layout:fixed;
	}

}

@media only screen and (min-width: 1024px) {
  .mobileAlerts {
    display: none;
  }
  
}

.selectjornalera {
	font-size: 12px;
    width: auto;
    text-align: center;
}

.thjornalera:nth-child(odd) {
    background-color: #ffcc4d!important;
}

.tdjornalera:nth-child(odd) {
    background-color: #f0f0f0!important;
}

.busquedainput {
	width: 100%;
	height: 3vw;
	font-size: 1em;
	border: 0px;
}

.busquedatabla {
	width: 40vw;
}

.inputoperarios {
	border: 0px;
    font-size: 1em;
	width:100%;
}

.operariosTable {
	border: 2px solid #ecf0f1;
	background-color: white;
	width: 95vw;
	border-collapse: collapse;
}

.guardarcambios {
    width: 50%;
    font-size: 1em;
    background-color: #FFB600;
    border: 0px;
    border-radius: 2px;
    box-shadow: 1px 1px #cecece;
    cursor: pointer;
    color: white;
    text-shadow: 1px 1px 1px black;
}

.tablatab {
    border: 2px solid #ecf0f1;
    background-color: white;
    border-collapse: collapse;
    table-layout: fixed;
    width: 70vw;
}

.textoacciones {
    font-size: 12px;
    text-align: center;
}

.editHeaderPresup {
	font-size: 0.5em;
    font-style: italic;
    font-weight: bold;
    color: cornflowerblue;
}

.editHeaderPresup2 {
	font-size: 0.7em;
    font-style: italic;
    font-weight: bold;
    color: cornflowerblue;
	border: 0px solid;
}

.totales {
	width: 60vw;
    border: 1px solid #ecf0f1;
    background: white;
	border-collapse: collapse;
}

.totalestr {
}

.totalestd {
	font-size: 2em;
    height: 3em;
    width: 3em;
	text-align: center;
	border: 3px solid #ecf0f1;
	border-collapse: collapse;
}

.h3p {
	margin: 5px;
}


.filtro {
    text-decoration: none;
    color: white;
    font-weight: bold;
    border: 1px solid #00000020;
    background-color: #00000020;
}

.filtro:hover {
    zoom: 1.1;
}

/*PLANILLA*/

.paycheck {
    display: inline-block;
}

.paycheck-border {
    color: #858585;
    font-size: 1.465vw;
    font-style: italic;
    padding: 0 4px;
    white-space: nowrap;
}

.paycheck-border-sides {
    letter-spacing: 0.1px;
    padding: 1px 0;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}

.paycheck-content {
    display: flex;
}
.paycheck-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.1vw 1.3vw;
}
.paycheck-header {
    display: flex;
}
.paycheck-payer {
    flex-grow: 1;
}
.paycheck-payer,
.paycheck-date,
.paycheck-number {
    font-size: 1.653vw;
    line-height: 1.25;
}
.paycheck-payer-name,
.paycheck-date-header,
.paycheck-number-header {
    font-size: 1.85vw;
    font-weight: 600;
}
.paycheck-date {
    padding: 0 8vw;
}
.paycheck-number {
    text-align: right;
}

.paycheck-pay {
    margin: 0.3vw -0.8vw 0 -0.4vw;
}
.paycheck-pay-top {
    align-items: flex-end;
    display: flex;
}
.paycheck-pay-label {
    padding-bottom: 0.2vw;
}
.paycheck-pay-amount-long {
    flex-grow: 1;
    padding: 0 1vw 0.4vw;
}
.paycheck-pay-bank {
    padding-bottom: 0.4vw;
    text-align: right;
}
.paycheck-pay-short-value {
    border: 0.2vw solid;
    border-bottom: none;
    border-right: none;
    padding: 0.1vw 0.2vw 0.4vw 2vw;
}
.paycheck-pay-label,
.paycheck-pay-amount-long,
.paycheck-pay-amount-short {
    border-bottom: 0.2vw solid;
}
.paycheck-pay-amount-long,
.paycheck-pay-amount-short {
    font-size: 1.85vw;
}
.paycheck-pay-label,
.paycheck-pay-bank,
.paycheck-pay-bottom {
    font-size: 1.48vw;
}
.paycheck-pay-bottom {
    text-align: right;
}

.paycheck-footer {
    display: flex;
    justify-content: space-between;
    margin: 1vw 5.5vw 0 -0.4vw;
}

.payee {
    display: flex;
    padding-top: 6vw;
}
.payee-label {
    padding-right: 1.4vw;
}
.payee-label,
.payee-address1 {
    font-size: 1.48vw;
}
.payee-name {
    font-size: 1.85vw;
    font-weight: 600;
}
.paycheck-endorsement {
    font-size: 2.2vw;
    font-style: italic;
    font-weight: 600;
}

.pay-stub {
    margin-top: 2.2vw;
}

.pay-stub-header {
    background: #c0c0c0;
    border: 0.22vw solid;
    border-radius: 1.32vw;
    display: flex;
    font-family: sans-serif;
    font-size: 1.85vw;
    justify-content: center;
    padding: 0.6vw 1.54vw;

    
}
.pay-stub-context {
    justify-content: space-between;
}
.pay-stub-context-date {
    font-weight: 600;
}

.flex-col-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-item {
    flex-basis: calc(50% - 1.32vw);
    margin-bottom: 1vw;
    overflow: hidden;
}

.section-content {
    padding: 0 1.3vw;
}
.space-for-legend {
    padding-left: 2vw;
}
.summary {
    margin: 2vw 0 1vw;
}

.pairs {
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: space-between;
}
.item,
.value {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.43vw;
    padding: 0.2vw 0;
}
.item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-basis: 38%;
}
.value {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-basis: 62%;
    font-weight: 600;
    text-align: right;
}

.planillas {
    border-collapse: collapse;
    margin-top: 0.33vw;
    width: 100%;
}

.planillas TD {
    font-size: 1.43vw;
    text-align: right;
}

.planillas TD:first-child {
    text-align: left;
}

.tbodyfirst TD {
    padding-top: 0.22vw;
}
.tbodylast TD {
    padding-bottom: 0.2vw;
}
.thead TH {
    font-size: 1.87vw;
    text-align: left;
}
.thead TH {
    border-bottom: 0.2vw solid #4e4e4e;
    padding-top: 1vw;
    vertical-align: bottom;
}

.tfoot TD {
    border-top: 0.2vw solid #4e4e4e;
    font-weight: 600;
    padding-top: 0.22vw;
}

.payment-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 1.4vw 0 3.3vw;
}

.item,
.value {
    padding: 0.33vw 1.54vw;
    text-align: right;
}
.highlighted {
        background: #c0c0c0;
        border: 0.11vw solid;
        border-radius: 1vw;
        padding-bottom: 0.16vw;
        padding-top: 0.16vw;
    }
.item {
    flex-basis: calc(65% - 3.08vw);
    font-size: 1.87vw;
}
.value {
    /*flex-basis: calc(35% - 3.41vw);*/
    font-size: 1.8vw;
    font-weight: 600;
}

.table-footnote {
    font-size: 1.48vw;
    font-style: italic;
    margin-top: 2vw;
}

.legend-marker {
    position: relative;
}

.legend-marker::before {
        content: "*";
        left: -15px;
        position: absolute;
}

.footnote {
    font-size: 1.51vw;
    font-style: italic;
    font-weight: 600;
    text-align: center;
}

@media print {
    .noprint {
        display:none!important;   
    }
}

.ql-size, .ql-header, .ql-color, .ql-background, .ql-font, .ql-align {
	display:none;
}

.ql-toolbar, .ql-snow {
    border: 1px solid #ccc!important;
    box-sizing: border-box!important;
    font-family: helvetica neue,helvetica,arial,sans-serif!important;
    padding: 8px!important;
}

.header, .header-space,
.footer, .footer-space {
  height: 100px;
}
.header {
  position: fixed;
  top: 0;
}
.footer {
  position: fixed;
  bottom: 0;
}


button.print-button {
  width: 100px;
  height: 100px;
}
span.print-icon, span.print-icon::before, span.print-icon::after, button.print-button:hover .print-icon::after {
  border: solid 4px #333;
}
span.print-icon::after {
  border-width: 2px;
}

button.print-button {
  position: relative;
  padding: 0;
  border: 0;
  
  border: none;
  background: transparent;
}

span.print-icon, span.print-icon::before, span.print-icon::after, button.print-button:hover .print-icon::after {
  box-sizing: border-box;
  background-color: #fff;
}

span.print-icon {
  position: relative;
  display: inline-block;  
  padding: 0;
  margin-top: 20%;

  width: 60%;
  height: 35%;
  background: #fff;
  border-radius: 20% 20% 0 0;
}

span.print-icon::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 12%;
  right: 12%;
  height: 110%;

  transition: height .2s .15s;
}

span.print-icon::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 12%;
  right: 12%;
  height: 0%;
  background: #fff;
  background-repeat: no-repeat;
  background-size: 70% 90%;
  background-position: center;
  background-image: linear-gradient(
    to top,
    #fff 0, #fff 14%,
    #333 14%, #333 28%,
    #fff 28%, #fff 42%,
    #333 42%, #333 56%,
    #fff 56%, #fff 70%,
    #333 70%, #333 84%,
    #fff 84%, #fff 100%
  );

  transition: height .2s, border-width 0s .2s, width 0s .2s;
}

button.print-button:hover {
  cursor: pointer;
}

button.print-button:hover .print-icon::before {
  height:0px;
  transition: height .2s;
}
button.print-button:hover .print-icon::after {
  height:120%;
  transition: height .2s .15s, border-width 0s .16s;
}












