/*
	Theme Name: SMA 2.0
	Theme URI: https://sma-solutions.it
	Description: Custom Wordpress theme
	Version: 1.0
	Author: Gabriel Nastase 
	Author URI: https://www.gabrielnastase.com
	Tags: HTML5, CSS3
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}

/* albert-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/albert-sans-v4-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* albert-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/albert-sans-v4-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
	font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
	color:#5C5C5C;
    font-size: 1.6rem;
    overflow-x: hidden;
    background-color: #fff;
}
/* clear */

.clear {
    clear: both;
    height: 0;
}
img {
	max-width:100%;
	vertical-align:bottom;
    height: auto;
}
a {
	color:#23366C;
	text-decoration:none;
    transition: all 200ms;
}
a:hover {
	color:#00299a;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}

.privacy-policy main a, .cookie-policy main a {
    text-decoration: underline;
}
video {
    max-width: 100%;
}
h1, h2, .h2 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #23366C;
}

h3 {
    font-size: 2.6rem;
}
h4 {
    font-size: 2.2rem;
    font-weight: 400;
}

p {
    line-height: 1.5;
    font-size: 1.6rem;
}

.uppercase {
    text-transform: uppercase;
}
.white {
    color: #fff;
}
.blu {
    color: #23366C;
}
.giallo {
    color: #FFDD30;
}
.bg-giallo {
    background-color: #FFDD30;
}
.bg-blu {
    background-color: #23366C;
}
.dark {
    color: #fff;
}
.dark a{
    color: #fff; 
}
.dark a:hover {
    color: #FFDD30;
}
.dark h2, .dark h1 {
    color: #fff;
}

/* Icon 1 */

#nav-icon1 {
  width: 25px;
  height: 25px;
    margin-left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
    display: none;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}
button, input, select, textarea {
    border: solid 1px #DCDCDC;
    background: #fff;
    padding: 10px;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
	color:#5C5C5C;
    font-size: 1.6rem;
}
input:hover, textarea:hover {
   border: solid 1px #FFDD30;
}
input:focus, textarea:focus {
    border: solid 1px #23366C;
}
input[type="checkbox"], input[type="radio"] {
    width: auto!important;
}
.wpcf7-submit {
    border: none;
    background: #FFDD30;
    color: #23366C;
    width: 120px;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms;
    border: none;
}
.wpcf7-submit:hover {
    background: #debd17;
    border: none;
}
.wpcf7 input[type="file"] {
    background: none;
}

.bigger {font-size: 6rem; margin: 0;}
p.bigger {
    font-size: 2.2rem;
}
.fullheight {
    min-height: 100vh;
}

.height-100 {
    height: 100%;
}
.fullwidth, .fullwidth img, .fullwidth video {
    width: 100%;
}
.has-decor::before {
    content: '';
    display: block;
    width: 3px;
    height: 30px;
    background-color: #FFDD30;
    margin-bottom: 20px;
}

.border-card {
    border: solid 2px #FFDD30;
    padding: 20px;
    position: relative;
}
.border-card h3 {
    color: #23366C;
    font-size: 1.6rem;
}
.border-card i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: block;
    width: 30px;
    height: 30px;
    color: #FFDD30;
    transition: all 300ms;
    text-align: center;
    line-height: 30px;
    font-size: 22px;
}
.border-card:hover i {
    background-color: #23366C;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */

.wrapper {
	max-width: 1200px!important;
	width: 90%;
	margin: 0 auto!important;
	position: relative;
}
.narrow-wrapper {
	max-width:800px!important;
	width:95%;
	margin:0 auto;
	position:relative;
}

.no-margin-bottom {
    margin-bottom: 0;
}
.no-margin-top {
    margin-top: 0;
}
.no-margin {
    margin: 0!important;
}
.no-gap {
    gap: 0!important;
}

.center {
    text-align: center;
}

.align-right {
    text-align: right;
}
.flex-container {
    display: flex;
}

/* header */
.header {
    position: fixed;
    width: 100%;
    z-index: 900;
    padding: 20px 0;
    top: 0;
    left: 0;
    background: transparent;
    transition: all 500ms;
}
body.logged-in .header {
    margin-top: 31px;
}
.header-scroll {
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 5px 25px rgba(8, 18, 107, 0.08);
}
.header-scroll {
    background-color: #23366C;
}
.header-home .logo-scroll {
    position: absolute;
    top: -200px;
    left: 0;
}

.header-home.header-scroll .logo-scroll {
    top: 0;
    left: 0;
}

.header .flex-container {
    justify-content: space-between;
    align-items: center;
}

/* logo */

.logo {
    max-width: 130px;
    height: auto;
    position: relative;
}
.logo img {
    transition: all 400ms ease-out;
}

/* nav */
.nav {
    line-height: 0;
}
.nav ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.nav ul li {
    list-style: none;
    margin: 0 7px;
    padding: 0;
    position: relative;
}
.nav ul li a {
    font-size: 1.6rem;
    transition: all 200ms;
    border-bottom: solid 4px transparent;
    padding: 7px 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.nav ul li a:hover {
    color: #FFDD30;
}
.nav ul .sub-menu {
    display: block;
    background: #fff;
    position: absolute;
    top: 35px;
    left: 0;
    width: auto;
    padding: 20px;
    padding-top: 0;
    transition: all 200ms ease-out;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 20px 30px rgba(9, 23, 95, 0.2);
}
.nav ul li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 10px;
}
.nav ul .sub-menu li {
    display: block;
    margin: 10px 0;
    width: 220px;
    line-height: normal;
}
.nav ul .sub-menu li a {
    font-size: 1.3rem;
    padding: 10px 0;
    border: none;
    display: block;
    text-transform: uppercase;
}
.nav ul .sub-menu li a:hover {
    color: #23366C;
}
.nav .current-menu-item a, .current-menu-parent a {
    border-bottom: solid 4px #FFDD30;
}
.nav .current-menu-item .sub-menu a {
    border: none;
}
.nav .sub-menu a {
   border-bottom: none!important;
}
.nav .sub-menu .current-menu-item a {
    border-bottom: solid 4px #FFDD30!important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.content-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.content-padding-s {
    padding: 50px 0;
}
.content-padding-bottom {
    padding-bottom: 80px;
}
.content-padding-top {
    padding-top: 80px;
}
.page-header {
    background-image: url(img/metallo-blu.jpg);
    background-size: cover;
    padding-top: 200px;
}
.page-header .flex-container {
    align-items: center;
    justify-content: space-between;
}
.page-header .breadcrumbs {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;
}
.page-header h1 {
    text-transform: uppercase;
}
.wrap-left {
    padding-left: calc( (100vw - 1200px) / 2)!important;
    padding-right: 2em;
}
.wrap-right {
    padding-right: calc( (100vw - 1200px) / 2)!important;
    padding-left: 2em;
}
.negative-top-50 {
    margin-top: -50px;
    position: relative;
    z-index: 100;
}
.negative-bottom-80 {
    margin-bottom: -80px;
}

.first-content {
    margin-top: 200px;
}
.no-padding-top {
    padding-top: 0;
}
.box-padding {
    padding: 60px;
}
.box-padding-xs {
    padding: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FFDD30;
    color: #23366C;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.btn-verde i {
    font-size: 2.4rem;
}
.btn i {
    margin-left: 20px;
}


/* sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -700px;
    max-width: 600px;
    width: 100%;
    height: 100%;
    z-index: 700;
    background: rgba(255, 255, 255, .7);
    padding: 80px 5%;
    color: #fff;
    box-shadow: 0 5px 65px rgba(0, 13, 97, 0.12);
    transition: all 500ms ease-in;
    text-align: left;
    backdrop-filter: blur(30px);
}
.sidebar-open {
    left: 0;
}
.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar ul li {
    margin: 20px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.sidebar .current-menu-item {
    border-bottom: solid 2px #FFDD30;
}
/* footer */
.footer {
    background-image: url(img/metallo-grigio.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.footer h3 {
    text-transform: uppercase;
    color: #FFDD30;
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer-icons {
    display: flex;
    justify-content: flex-end;
    font-size: 30px;
}
.footer-icons i {
    margin-left: 20px;
}


.visual-accordion-list {
    list-style: none; /* Remove default bullets */
    margin: 0;
    padding: 0;
}

.accordion-title-wrapper a {
    border-top: none;
    background-color: #FFEE00;
    padding: 10px;
    margin-bottom: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.accordion-submenu {
    margin-bottom: 2px;
}
.accordion-submenu .accordion-title-wrapper  a{
    background: none;
    margin-bottom: auto;
    box-shadow: none;
}
.solutions-main-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 20px;
    order: -1;
    margin-top: -40px!important;
    position: relative;
    z-index: 10;
}
.solutions-main-content .content-block {
    background-color: #fff;
    position: relative;
}
.solutions-main-content .filters {
    order: -1;
    background-color: #FFDD30;
    padding: 10px;
}

/* ---------------------------------- */
/* The main container for the link and the button */
.accordion-title-wrapper {
    display: flex; /* Aligns link and button side-by-side */
    justify-content: space-between; /* Pushes button to the right */
    align-items: center;
    cursor: pointer;
    font-size: 14px; 
}

/* Styling for the page link itself */
.accordion-page-link {
    flex-grow: 1; /* Allows the link to take up most of the space */
    text-decoration: none;
    color: inherit;
    display: block;
    color: #23366C;
    font-weight: 700;
}

/* Styling for the plus/minus button */
.toggle-handle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    color: #23366C;
    font-weight: bold;
}

/* Submenu/nested content styling */
.accordion-submenu {
    padding-left: 0; /* Ensures submenus start at the same horizontal position */
    /* Hide by default (JS will change this) */
    display: none; 
}

/* Hide the default collapse class if using custom JS/CSS */
.accordion-submenu.collapse {
    /* If you are NOT using Bootstrap JS, remove the line below and use custom JS */
    display: none; 
}

.accordion-submenu.open {
    display: block;
}

/* CSS for nested levels (to mimic the indentation in the image) */
.visual-accordion-list.level-2 .accordion-title-wrapper {
    padding-left: 10px; /* Indent level 2 */
}
.visual-accordion-list.level-3 .accordion-title-wrapper {
    padding-left: 15px; /* Indent level 3 */
}

.filters .level-2 {
    border-left: solid 1px #23376c29;
}
.filters .level-3 {
    border-left: solid 5px #23376c3a;
}
.filters .level-4 {
   border-left: solid 5px #23376c3a;
}
/* CSS for the current page highlight */
.accordion-page-link.is-current-page {
    /* Example: Yellow background like in your image */
    background-color: #fff!important; 
    font-weight: bold;
    padding: 10px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .2)!important;
    margin-right: 32px;
}

/* Ensure the submenu is visible if it has the 'initial-open' class */
.accordion-submenu.initial-open {
    display: block !important;
}

/* Update the symbol for the open state */
.toggle-handle.initial-open .plus-minus-symbol {
    content: '–'; /* This is the key to visually showing it's open */
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
.intro {
    padding-top: 100px;
    background-image: url(img/metallo-grigio.jpg);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: top right;
}
.news-home .kb-post-list-item {
    padding: 7px;
    border: solid 2px #FFDD30;
}
.machines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.machines-grid .border-card {
    padding: 5px;
}
.machines-grid .border-card i {
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 18px;
}
.machines-grid .item .thumbnail {
    width: 100%;
    height: 160px;
    background-color: #c0c0c0;
}
.machines-grid .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.resins ul {
    padding-left: 20px;
}
.resins h5 {
    color: #00299a;
}
.downloads img {
    max-height: 60px;
}
/*------------------------------------*\
    SINGLE MACHINE
\*------------------------------------*/
.product-code {
    font-size: 2.4rem;
}
.datasheet-grid .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.datasheet-grid .row .col {
    border-bottom: solid 1px #DCDCDC;
    padding: 10px 0;
}
.datasheet-grid .row .col h4 {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #23366C;
    font-size: 1.4rem;
}
.datasheet-grid .row .no-border {
    border: none;
}
#printDataSheet:hover {
    cursor: pointer!important;
}
.machine-description p {
    text-align: justify;
}
.titolo-macchina {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.4rem;
    color: #fff;
    text-shadow: 3px 3px 5px #000;
    margin: 0;
    padding: 20px;
    width: 100%;
    min-height: 200px;
    background: #000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 72%);
}
.prima-foto {
    margin-bottom: .5em;
}
.prima-foto img {
    width: 100%;
}
/*------------------------------------*\
    WORDPRESS
\*------------------------------------*/
.wp-block-button__link {
    text-transform: uppercase;
    font-weight: 700;
}
.wp-block-columns {
    gap: 20px!important;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1200px) {
   .intro {
        padding-top: 100px;
        background-image: url(img/metallo-grigio.jpg);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top right;
    }
    .wrap-left {
        padding-left: 5%!important;
        padding-right: 2em;
    }
    .wrap-right {
        padding-right: 5%!important;
        padding-left: 2em;
    }
    h1, h2, .h2 {
        font-size: 2.8rem;
    }
    .wp-block-button__link {
        font-size: 1.4rem;
    }
    .nav ul li a {
        font-size: 1.4rem;
    }
    .border-card h3 {
        font-size: 1.4rem;
    }
    .border-card i {
        transform: scale(.8);
        bottom: 7px;
        right: 7px;
    }
    h4 {
        font-size: 1.8rem;
    }
}
@media only screen and (max-width:782px) {
    .header {
        background-color: #23366C;
        background-image: url(img/metallo-blu.jpg);
        background-size: 100%;
        box-shadow: 0 5px 25px rgba(8, 18, 107, 0);
    }
    .header-scroll {
        padding: 10px 0;
        box-shadow: 0 12px 25px rgba(8, 18, 107, 0.3);
    }

    .header-home .logo-scroll {
        position: absolute;
        top: 0;
        left: 0;
    }
    .header .logo {
        max-width: 90px;
        margin-left: -25px;
    }
    .header .nav {
        display: none;
    }
    #nav-icon1 {
        display: block;
    }
    .content-padding {
        padding: 50px 0;
    }
    .content-padding-top {
        padding-top: 50px;
    }
    .content-padding-bottom {
        padding-bottom: 50px;
    }
    .page-header {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .intro {
        padding-top: 0;
        background: none;
        position: relative;
        padding-bottom: 100px;
    }
    .intro .wp-block-column:nth-child(2) {
        position: absolute;
        left: 5%;
        bottom: -50px;
        background-image: url(img/metallo-grigio.jpg);
        background-attachment: fixed;
        padding: 20px;
    }
    .intro .has-decor::before {
        display: none;
    }
    .solutions-main-content {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }
    .solutions-main-content .filters {
        order: 2;
    }
    .page-header .flex-container {
        align-items: baseline;
    }
    .page-header h1 {
        margin-bottom: 0;
    }
    .page-header .btn {
        margin-bottom: 10px;
    }
    h1, h2, .h2 {
        font-size: 2.4rem;
    } 
    .page-header .breadcrumbs p {
        font-size: 1.2rem;
    }
    .btn {
        font-size: 1.4rem;
        padding: 8px 10px;
    }
    .btn i {
        margin-left: 10px;
    }
    .machines-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .wp-block-cover {
        min-height: 300px!important;
    }
    .reverse {
        flex-direction: column-reverse;
    }
    .wp-block-columns.has-background {
        padding: 0;
    }
    .align-right-none-mobile .alignright {
        float: none!important;
    }
    .certificate {
        padding: 30px 0!important;
    }
    .contact .box-padding {
        padding: 5%;
    }
    button, input, select, textarea {
        max-width: 100%;
    }
}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.wp-block-cover, .wp-block-cover-image {
    overflow-y: hidden;
    padding: 0;
}
.wp-block-columns-gap-1 {
    gap: 1em!important;
}
.wp-block-columns-gap-3 {
    gap: 3em!important;
}
.alignnone {
	margin:0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:0 auto 0 auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

.wp-block-image img {
    height: auto!important;
}
hr {
    opacity: .3;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	.footer, .breadcrumbs, .filters {
        display: none;
    }
    body {
        -webkit-print-color-adjust: exact; /* For Chrome, Safari, Edge */
        print-color-adjust: exact;
    }
    .header {
        background-color: #23366C;
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact;
        position: absolute;
    }
    .header .nav, .post-edit-link {
        display: none;
    }
    .page-template-template-single-machine .product-code {
        color: white!important;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99999;
        font-size: 4rem;
        font-weight: bold;
        display: none;
    }
    .solutions-main-content {
        display: block;
    }
    .page-header {
        padding-top: 100px;
        background-color: #23366C;
        background-image: none;
    }
    .page-header h1 {
        color: #fff!important;
    }
    #printDataSheet {
        display: none;
    }
    .machine-title {
        color: #23366C!important;
    }
    .page-beak {
        break-after: page;
    }
    .machine-description, .datasheet-parent {
        page-break-inside: avoid;
    }
    .prima-foto img {
        width: 100%!important;
    }
    @page {
        /* Step 1: Set the printer's physical page margin to zero.
        This is the key to hiding the browser's header/footer. */
        margin: 0;
    }
    body {
        /* You can use cm, in, or a relative unit like 5rem */
        margin: 0; /* Ensures no default body margin interferes */
    }
    .sidebar {
        display: none;
    }
}
