/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--red: #ce342c;
	--red-ally: #B92F27;
	--white: #fff;
	--black: #424242;
	--error: #ce342c;

	--grey-lt: #e2e2e2;
	--grey-md: #a0a0a0;
	--grey-dk: #424242;
	--grey-xdk: #333;

	--header-height: 5rem;
	--header-height-scroll: 4.375rem;
	--section-p: 3rem;
	--section-p-sm: 3rem;

	--card-p: 2rem;
	--card-p-sm: 1rem;
	--card-p-md: 2rem;
	--card-p-lg: 2rem;

	--swiper-theme-color: #fff;
	--swiper-navigation-size: 2rem;
}

@media (min-width: 992px) {
	:root {
		--card-p-md: 3rem;
		--card-p-lg: 5rem;
		--swiper-navigation-size: 3rem;
	}
}
@media (min-width: 1400px) {
	:root {
		--section-p: 4rem;
		--section-p-sm: 3.5rem;
		--swiper-navigation-size: 4rem;
	}
}

@media (min-width: 1680px) {
	:root {
		--header-height: 5.688rem;
		--header-height-scroll: 5rem;
	}
}



/* ------------------------------------------------------------------------ Page Styles & Resets */

body {
	font: 400 100%/1.6 'Roboto', Arial, Helvetica, sans-serif; 
	color: var(--black);
	background-color: var(--white);
} 

@media (min-width: 1200px) {
	body {
		padding-top: var(--header-height);
	} 
}

/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: var(--black);
	color: var(--white);
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1050;
	padding:0.5rem 0.625rem; 
} 

.skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
	position: absolute; 
	outline: none; 
	left:0;
	outline: none; 
	width:auto; 
	height:auto;
} 

.skip-link:hover {
	color: var(--white);
	background-color: var(--grey-md);
}

a:focus, .btn:focus {
	outline: solid thin rgba(0, 0, 0, 0.5);
	box-shadow: none;
} 

.sidenav__header-link:focus, .card__header-link:focus {
	outline: solid thin rgba(255, 255, 255, 0.5);
}

a:hover, a:active { outline: none !important; } /*...not with mouse (kinda) */


/* ------------------------------------------------------------------------ Headers */

h1, h2, h3, h4
.h1, .h2, .h3, .h4  { 		
	font-weight: 700;	
	margin-bottom: 1rem;
}	

h1, .h1 {	
	font-weight: 900;	
	font-size: 2.5rem;	
	line-height:1.2;	
	text-transform: uppercase;	
}
	
h2, .h2 {
	font-size: 2rem;
	line-height:1.2; 
	text-transform: uppercase;
}

h3, .h3 { 
	font-size: 1.55rem;  
	line-height:1.3;
}	

h4, .h4 { 
	font-size: 1.25rem;
	line-height:1.4;
}

h2, h3  { 
	margin-top: 2rem;
}

hr + h2, 
hr + h3, 
section h2:first-child,
section h3:first-child {
	margin-top: 0;
}

h2 + h3 {
	margin-top: 3rem;
}
	

@media (min-width: 992px) {	
	h1, .h1 {
		font-size: 2.5rem;
	}

	h2, .h2 {
		font-size: 2rem;
	}

	.h2--product-name {
		font-size: 1.5rem;
	}

	h3, .h3 { 
		font-size: 1.75rem; 
	}

	h4, .h4 { 
		font-size: 1.5rem; 
	}

	h2, h3  { 
		margin-top: 3rem;
	}


}	


/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 1.125em;
	background: url(../../images/arrow-grey.svg) no-repeat left 0.375em;
	background-size: 0.75em 0.75em;
}

ul ul, .list__sub-list {
	margin-top: 0.25rem;
}

ul.ul--no-bullets li {	
    padding: 0 0 0.25rem 0;
	background-image: none;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}
		
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-muted {
	color: var(--grey-md)!important;
}

.text-red {
	color: var(--red);
}

.text-initial {
	text-transform: initial;
}

.intro-text {
	font-size: 1.125rem;
}

.note {
	font-size: .875rem;
}


sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}

@media (min-width: 992px) {	
	.intro-text {
		font-size: 1.25rem;
	}
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--red); 
	font-weight: 700;
	transition: all .25s ease;
	text-decoration: underline;
}	

a:hover {
	text-decoration: none;
	color: var(--red);
}

.a--no-underline {
	text-decoration: none;
}

.a--no-underline:hover {
	text-decoration: underline;
}

main a { 
	word-wrap: break-word; 
}

a img {
	border: none;
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
	transition: opacity .25s ease;
}				

a img:hover { 
	opacity: .9;
}	

/*Change value to header height*/

.a--anchor--models {
    border-top: calc(16.875rem + var(--section-p)) solid transparent;
    margin-top: calc((16.875rem + var(--section-p)) * -1) !important;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.a--anchor--videos {
    border-top: calc(16.625rem + var(--section-p-sm)) solid transparent;
    margin-top: calc((16.625rem + var(--section-p-sm)) * -1) !important;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}


@media (min-width: 768px) {	
	.a--anchor--models {
	    border-top: calc(7.5rem + var(--section-p)) solid transparent;
	    margin-top: calc((7.5rem + var(--section-p)) * -1) !important;
	}

	.a--anchor--videos {
	    border-top: calc(4.125rem + var(--section-p-sm)) solid transparent;
    	margin-top: calc(4.125rem + var(--section-p-sm)) * -1) !important;
	}
}

@media (min-width: 1200px) {	
	.a--anchor {
	    border-top: calc(var(--header-height-scroll) + var(--section-p)) solid transparent;
    	margin-top: calc((var(--header-height-scroll) + var(--section-p))* -1) !important;
	}

	.a--anchor--models {
	    border-top: calc(7.5rem + var(--section-p)) solid transparent;
	    margin-top: calc((7.5rem + var(--section-p)) * -1) !important;
	}

	.a--anchor--videos {
	    border-top: calc(var(--header-height-scroll) + var(--section-p-sm)) solid transparent;
    	margin-top: calc((var(--header-height-scroll) + var(--section-p-sm)) * -1) !important;
	}
}	

@media (min-width: 1400px) {	
	.a--anchor--models {
	    border-top: calc(var(--header-height-scroll) + var(--section-p)) solid transparent;
    	margin-top: calc((var(--header-height-scroll) + var(--section-p))* -1) !important;
	}
}

/* ------------------------------------------------------------------------ Button Styles */

.btn {
	margin-top: 1rem; 
	padding: .625rem 1.5rem;
	border-radius: .5rem;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 1.125rem;
}

.btn-primary {
	background-color: var(--red);
	border-color: var(--red);
	transition: all .25s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle { 
	background-color: var(--red);
	border-color: var(--red);
	box-shadow: none;
	filter: brightness(1.3);
}

.btn-sm {
	padding: .25rem 1.25rem;
	border-radius: .375rem;
	font-size: 1rem;
}

@media (min-width: 992px) {
	.btn {
		font-size: 1.25rem;
	}

	.btn-sm {
		padding: .25rem 2rem;
		font-size: 1.125rem;
	}
}

@media (min-width: 1400px) {	
	.btn {
		padding: .75rem 3rem;
	}

	.btn-sm {
		padding: .5rem 2rem;
		border-radius: .25rem;
	}
}


/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}

.img--logo-icon {
	width: 7rem;
}

.img--icon-support {
	width: 7rem;
	height: 6rem !important;
}

.img--icon-support-dealer {
	width: 6.125rem;
}

.img--product-features {
    width: 100%;
    aspect-ratio: 1 / .66;
    object-fit: cover;
    object-position: center;
}

.img--product-logo {
	width: 16rem;
}

.img--pack-logo {
	width: auto;
	height: 3rem !important;
}

.img--pack-bales {
 	aspect-ratio: 1 / .45;
 	display: flex;
 	align-items: end;
}

.img--pack-bales--9 img {
	width:70%;
}

.img--pack-bales--18 img {
	width:93%;
}

.img--baler-chart {
	min-width: 81rem;
}


.model__img {
    overflow: hidden;
/*    aspect-ratio: 1 / .625;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.model__img img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {	
	.img--float-left {
		float: left;
		margin: .5rem 1.5rem .375rem 0;
		max-width:33%;
	}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 .375rem 1.5rem;
		max-width:33%;
	}
}	

/*@media (min-width: 1200px) {	
	.model__img {
	    aspect-ratio: 1 / .75;
	}
}*/

@media (min-width: 1400px) {	
	.img--logo-icon {
		width: 9rem;
	}

	.img--icon-support {
		width: 9rem;
		height: 8rem !important;
	}
}


	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: var(--section-p-sm) auto;
	background-color: var(--grey-lt);
	opacity: 1;
}	

hr:not([size]) {
    height: 2px;
}

@media (min-width: 1400px) {
	hr, .hr {
		margin: var(--section-p) auto;
	}
}	


/* ------------------------------------------------------------------------ Additional Utility Classes/Bootstrap Overrides */

.p-section {
	padding: var(--section-p) 0 !important;
}

.pt-section {
	padding-top: var(--section-p) !important;
}

.pb-section {
	padding-bottom: var(--section-p) !important;
}

.pt-section-sm {
	padding-top: var(--section-p-sm) !important;
}

.pb-section-sm {
	padding-bottom: var(--section-p-sm) !important;
}

.pe-section-sm {
	padding-right: var(--section-p-sm) !important;
}

.ps-section-sm {
	padding-left: var(--section-p-sm) !important;
}

.mt-section {
	margin-top: var(--section-p) !important;
}

.mb-section {
	margin-bottom: var(--section-p) !important;
}

.mt-section-sm {
	margin-top: var(--section-p-sm) !important;
}

.mb-section-sm {
	margin-bottom: var(--section-p-sm) !important;
}

.me-section-sm {
	margin-right: var(--section-p-sm) !important;
}

.ms-section-sm {
	margin-left: var(--section-p-sm) !important;
}

.my-4b,
.mt-4b {
	margin-top: 2rem;
}

.my-4b,
.mb-4b {
	margin-bottom: 2rem;
}


.sticky-top {
    z-index: 1030;
}

.lh-14 {
	line-height: 1.4;
}

.lh-12 {
	line-height: 1.2;
}

.fw-500 {
	font-weight: 500;
}

.fw-900 {
	font-weight: 900;
}

.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.gx-4 {
    --bs-gutter-x: 2rem;
}


.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, ">");
    color: var(--black);
}

.breadcrumb-item.active {
    color: var(--black);
}

.breadcrumb-item a {
	white-space: nowrap;
	color: var(--red-ally);
}


.ratio-16x9 {
	background: var(--grey-md) url(../../images/icon-loading.svg) no-repeat center;
	background-size: 5rem;
}

 .row--baler .col-md-4 {
	position: relative;
	text-align: center;
}

.row--baler .col-md-4:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -1.5rem;
    right: 0;
    background-color: var(--red);
}

@media (min-width: 768px) {	
   	.row--baler .col-md-4:after {
    	width: 5px;
	    height: 100%;
	    top: 0;
	    bottom: auto;
	    right: -3px;
	}

	.row--baler .col-md-4:last-child:after {
    	display: none;
	}
}

@media (min-width: 1200px) {	
	.pb-xl-2 {
		padding-bottom: .5rem!important;
	}

	.pb-xxl-section {
		padding-bottom: var(--section-p) !important;
	}
}

@media (min-width: 1400px) {
	.g-xxl-5, .gy-xxl-5 {
	    --bs-gutter-y: 3rem;
	}

	.g-xxl-5, .gx-xxl-5 {
	    --bs-gutter-x: 3rem;
	}
}

@media (min-width: 1680px) {	
	.pb-xxxl-3 {
		padding-bottom: 1rem !important;
	}
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { display:none; }
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 11.25rem; 
	width: 100%;
	transition: all .25s ease;
}

.header { 
	z-index: 1040;
	position: relative;
}

.navbar--fixed-top {
	transition: all .25s ease;
}


@media (min-width: 768px) {			
	.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}
}

@media (min-width: 1200px) {

	.header--scroll .navbar--fixed-top {
	    background-color: rgba(255,255,255,.75) !important;
		backdrop-filter: blur(8px);
	}
}

/* ------------------------------------------------------------------------ Header Content Area */

.phone {
	color: var(--red);
	font-size: 1.25rem;
	font-weight: 500;
}

.country,
.language {
	position: relative;
}

.country a,
.language a {
	color: var(--black);
	font-weight: 400;
}

.country .card {
	width: 10.75rem;
}

.country .a--current,
.language .a--current {
	color: var(--black);
	font-weight: 500;
	text-transform: uppercase;
}

.country .a--current {
	font-size: 1.25rem;
	line-height: 1.4;

}

.language .a--current {
	font-size: 1rem;
	margin-bottom: .125rem;
}

.country .collapse,
.language .collapse,
.country .collapsing,
.language .collapsing {
	position: absolute;
	top: calc(100% - .5rem);
}

.country img {
	width: 1.5rem;
	margin: 0 0 .25rem .25rem;
}

.country .card,
.language .card {
	border: 1px solid rgba(0,0,0,.25);
	border-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 100%);
}

.country .card-body,
.language .card-body {
	padding: var(--card-p-sm);
}

.country li:last-child,
.language li:last-child {
	padding-bottom: 0;
}

.social__icon {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0 0 0 .5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.25rem;
}

.social__icon:hover { 
	background-color: var(--grey-lt);

}
.social__icon--twitter { 
	background-image: url(../../images/social-twitter.svg); 
}
	
.social__icon--facebook { 
	background-image: url(../../images/social-facebook.svg); 
}
	
.social__icon--youtube { 
	background-image: url(../../images/social-youtube.svg); 
}		
			
.social__icon--instagram { 
	background-image: url(../../images/social-instagram.svg); 
}		

.social__icon--linkedin { 
	background-image: url(../../images/social-linkedin.svg); 
}


/* ------------------------------------------------------------------------ Navbar Nav */

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .nav-link {
	color: var(--black);
	padding: .625rem 1.5rem .625rem 0;
	font-size: 1.125rem;
	position: relative;
	font-weight: 500;
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: var(--white);
	margin:0 0 .5rem 0;
	padding:0;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	z-index: 1080;
}

.navbar-nav .dropdown-menu li > .dropdown-item.active {
	color: var(--red);
	font-weight: 700;
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--red);
	background-color: transparent;
}

.dropdown-item.active {
	font-weight: 700;
}

.navbar-nav .dropdown-item:hover {
	background-color: transparent;
	text-decoration: underline;
}


.navbar-nav .dropdown-item {
	padding: .25rem 0 .25rem 1rem;
}

.navbar-nav .megamenu {
	width: 99.5%;
    transform: translateX(.25%);
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus {
	background-color: var(--white);
	color: inherit;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: var(--white);
	padding-left: 1rem;
}

.icon-arrow:after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}

.g-2b {
    --bs-gutter-y: 0.75rem;
}

.dropdown-toggle::after{
    display:none;
}

.dropdown-toggle .icon-arrow {
    position: absolute;
    right: 0;
}

.megamenu__products .figure.active {
	color: var(--red);
	font-weight: 700;
} 

.megamenu__products .figure__img {
	overflow: hidden;
    aspect-ratio: 1 / .625;
    display: flex;
    align-items: center;
    justify-content: center;
}

.megamenu__products .figure__img img {
	width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1200px) {	
	.navbar {
		margin-top: 0;
		border-bottom: 1px solid rgba(0,0,0,.25); 
	}

	.navbar--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1030;
	}

	.navbar-nav {
		background-color: var(--red);
		padding: 0 2rem;
	}

	.navbar-nav .nav-link {
		color: var(--white);
		font-size: 1.25rem;
		padding: 1.5rem!important;
		margin: 0;
		border-bottom: 0;
		transition: all .25s;
	}

	.navbar-nav .nav-item.active .nav-link {
	    background-color: var(--red);
	    filter: brightness(1.1);
	}

	.header--scroll .navbar-nav .nav-link {
    	padding: 1.25rem 1.5rem!important;
	}

	.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-item:hover .nav-link {
	    color: var(--black);
    	background-color: var(--white); 
	}

	.navbar-nav .dropdown-menu, .navbar-nav .dropdown-menu .dropdown-menu {
		padding: .75rem 0;
		min-width: 15rem !important;
		border: 1px solid rgba(0,0,0,.25);
		border-top: 0;
		border-radius: 0.5rem;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 100%);
	}

	.navbar-nav .dropdown-item {
		padding: .25rem 1.5rem;
	}

	.nav-item.hover .animate.dropdown-menu.megamenu.show {
	    transform: rotateX(0deg) translateX(.25%);
	    left: 0;
	}

	.nav-item.hover .animate.dropdown-menu.show {
	    left: -1px;
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.navbar-nav .dropdown-menu .dropdown-item.active:hover {
		color: var(--red);
	}

	.dropdown-menu>li:hover {
	    background-color: transparent;
	}

	.navbar-nav .megamenu {   
	    padding: 2rem 0;
	    margin-top: -1px !important;
	} 

	.dropdown-toggle:after {
	 	display: none;
	}
}

@media (min-width: 1400px) {
	.navbar-nav {
		padding: 0 3rem;
	}

	.navbar-nav .nav-link {
		font-size: 1.375rem;
	}
}

@media (min-width: 1680px) {
	.navbar-nav {
		padding: 0 4rem;
	}

	.navbar-nav .nav-link {
		font-size: 1.5rem;
		padding: 1.625rem 3.25rem!important;
	}

	.header--scroll .navbar-nav .nav-link {
    	padding: 1.25rem 3.25rem!important;
	}
}

/* ------------------------------------------------------------------------ Language Specific Nav styling */

@media all and (max-width: 1399px) and (min-width: 1200px) {	
	body.de-eu .navbar-nav .nav-link,
	body.fr .navbar-nav .nav-link,
	body.fr-eu .navbar-nav .nav-link {
	    padding-left: .75rem !important;
	    padding-right: .75rem !important;
	}
}


/* ------------------------------------------------------------------------ Mega Menu */

.megamenu__products a {
 	color: var(--black);
 	font-weight: 400;
}

.megamenu__products a:hover figcaption {
 	text-decoration: underline;
}


@media all and (max-width: 1199px) and (min-width: 0px) {	
	.megamenu__category {
		display: block;
	    width: 100%;
	    padding: 0.25rem 1rem;
	    clear: both;
	    font-weight: 400;
	    color: #212529;
	    text-align: inherit;
	    text-decoration: none;
	    white-space: nowrap;
	    background-color: transparent;
	    border: 0;
	}
}

@media (min-width: 1200px) {
	.megamenu__category {
	    color: var(--black);
	    padding: .5rem 1rem;
		border-radius: 0;
		border-top-left-radius: .375rem;
		border-bottom-left-radius: .375rem;
	    text-transform: none;
	    font-weight: 400;
	    line-height: 1.2;
	    text-decoration: none;
	    display: block;
	    position: relative;
	    width: calc(100% - 1rem);
	}

	.megamenu__category:hover,
	.megamenu__category:focus { 
		color: var(--black);
		text-decoration: underline;
	}

	.megamenu__category.active { 
		color: var(--white);
		background-color: var(--grey-dk);
	}

	.megamenu__category.active:after {
		content: "";
		position: absolute;
		top: 0;
		right: -.75rem;
		width: .875rem;
		height: 100%;
		background-color: var(--black);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		clip-path: polygon(0% 0%, 25% 0, 100% 50%, 25% 100%, 0% 100%);
	}
}



/* ------------------------------------------------------------------------ Side Nav */

.sidenav li {
	padding: 0;
	background-image: none;
}

.sidenav .nav-link {
	padding: .25rem 0;
	font-weight: 400;
	color: var(--black);
}

.sidenav .nav-link:hover {
    text-decoration: underline;
    color: var(--grey-md);
}

.sidenav .nav-link.active {
	color: var(--black);
	font-weight: 700;
}

.sidenav .submenu {
	margin: 0 0 .5rem 0;
    padding: 0 0 0 1rem;
}

.sidenav .icon-arrow.show::after {
    content: '-';
    font-size: 1.125rem;
}

.sidenav .icon-arrow::after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}


@media all and (max-width: 991px) and (min-width: 0px) {	
	.sidenav {
		border: 1px solid var(--grey-md);
		padding: 1.5rem 2rem;
	}
}



/* ------------------------------------------------------------------------ Bootstrap Menu Off Canvas Mobile */

body.offcanvas-active {
	overflow:hidden;
}

.offcanvas-header { 
	display:none;
}

.offcanvas-header .btn-close {
	width: 1.75em;
    height: 1.5em;
    background-position: center;
}

.screen-darken {
	height: 100%;
	width:0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity:0;
	visibility:hidden;
	background-color: rgba(0, 0, 0, 0.5);
	transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
	z-index:10; 
	transition:opacity .3s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}


@media all and (max-width: 1199px) {
	.offcanvas-header { 
		padding: 0;	
		display:block;
	}

	.mobile-offcanvas {
		visibility: hidden;
		transform:translateX(-100%);
	    border-radius:0; 
		display:block;
	    position: fixed;
	    top: 0; left:0;
	    height: 100%;
	    z-index: 1200;
	    width:100%;
	    overflow-y: scroll;
	    overflow-x: hidden;
	    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
	}

	.mobile-offcanvas.show {
		visibility: visible;
    	transform: translateX(0);
	}

	.mobile-offcanvas .container, .mobile-offcanvas .container-fluid {
		display: block;
	}
}	


/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0;
	border: none;
	cursor: pointer;
	border-radius: 0;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.1rem;
}

.navbar-toggler-icon {
    background-image: url(../../images/menu-icon.svg);
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../../images/menu-icon-open.svg);
}


@media (min-width: 1200px) {
	.navbar-toggler {
		display: none;
	}
}



/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

@media (min-width: 1680px){ 
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
	    max-width: 1620px;
	}
}


/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: var(--section-p) 0;
	max-width: 100%;
/*    overflow: hidden;*/
    overflow-x: clip;
}


.section--sm { 
	padding: var(--section-p-sm) 0;
}

.section--grey {
	background-color: var(--grey-lt);
}

.section--features {
	border-bottom: 2px solid var(--white);
}

.section--grey-dk {
	background-color: var(--grey-dk);
	color: var(--white);
}
.section--page-anchors {
	position: -webkit-sticky; /* For Safari */
	position: sticky;
	top: 0;
	z-index: 1;
	transform: translateZ(0); /* Force hardware acceleration */
	will-change: transform
  }
.section--red {
	background-color: var(--red);
	color: var(--white);
}

.section--red a {
	color: var(--white);
	cursor: pointer;
	transition: all .25s;
}

.section--red a:hover {
	color: var(--white);
	transform: translateY(-.5rem);
}


/* ------------------------------------------------------------------------ Banner */

.section--banner {
	background-color: var(--grey-lt);
}

.section--banner .section--banner__img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 0;
	aspect-ratio: 1 / .37;
	background-color: var(--black);
	position: relative;
	transition: all .5s;
}

.section--banner .section--banner__video {
	width: 100%;
	margin-bottom: 0;
	aspect-ratio: 1 / .37;
	position: relative;
	transition: all .5s;
}

.section--banner a {
	color: var(--black);
}

.section--banner--home .container {
	background-color: var(--grey-lt);
}



/*.section--banner a:hover .section--banner__img,
.section--banner a:hover .section--banner__video {
	transform: scale(1.02);
}*/

.section--banner--home a:hover h2 {
	text-decoration: underline;
}


/*.section--banner--inside {
	background-color: var(--grey-lt);
}


.section--banner--inside .container {	
	position: relative;
	z-index: 2;
}
*/

/*@media (min-width: 768px) {		
	.section--banner .section--banner__img {
		min-height: 20rem;
	}

	.section--banner--home .section--banner__img {
		min-height: 24rem;
	}
}

@media (min-width: 992px) {	
	.section--banner--home .section--banner__img {
		min-height: 32rem;
	}
}*/

@media (min-width: 1920px) {	
	.section--banner .section--banner__img,
	.section--banner .section--banner__video {
		min-height: 24rem;
	}

	.section--banner--home .section--banner__img,
	.section--banner .section--banner__video {
		min-height: 40rem;
	}
}



/* ------------------------------------------------------------------------ Group Page */

/* ------------------------------------------------------------------------ Bale Baron */

.features-bale-baron {
	display: flex;
	justify-content: center;
	align-items: end;
}

.features-bale-baron__53-trailer {
	width: 27.5rem;
	aspect-ratio: 1 /.44;
}

.features-bale-baron__less-handling {
	width: 16.5rem;
	aspect-ratio: 1 / .75;
}

.features-bale-baron__configurations {
	width: 18.5rem;
	aspect-ratio: 1 /.54;
}

.features-bale-baron__rasppe-knotter {
	width: 10.625rem;
	aspect-ratio: .75 / 1;
}

.features-bale-baron__large-efficiency {
	width: 16.25rem;
	aspect-ratio: 1 / .77;
}

@media (min-width: 768px) {
	.features-bale-baron {
		height: 14.125rem !important;
	}

	.features-bale-baron--53-trailer {
		height: auto !important;
	}
}

@media (min-width: 992px) {
	.features-bale-baron--53-trailer {
		height: 14.125rem !important;
	}
}


/* ------------------------------------------------------------------------ Models Page */

.page-anchors {
	display: flex;
    flex-flow: row;
	flex-wrap: wrap;
    padding: 0;
    justify-content: center;
}

.page-anchors li {
	background-image: none;
	padding: 0;
}

.h2--product-name {
	display: none;
	transition: all .25s;
}

.section--grey .a--collapse:after {
	background: linear-gradient(270deg, rgba(226,226,226,1) 0%, rgba(226,226,226,0) 100%);
}

.btn-page-anchors {
	color: var(--white);
	background-color: var(--grey-xdk);	
	margin: 0 0 1rem 0;
	text-transform: none;
	margin: 0 .5rem 1rem .5rem;
}

.page-anchors--md .btn-page-anchors {
	width: 9.5rem;
	font-size: .875rem;
}

.page-anchors--sm .btn-page-anchors,
.page-anchors--xl .btn-page-anchors {
	width: auto !important;
}

/*.page-anchors li:last-child .btn-page-anchors {
	margin-bottom: 0;
}*/

.btn-page-anchors:hover,
.btn-page-anchors:focus,
.btn-check:active+.btn-page-anchors,
.btn-check:checked+.btn-page-anchors,
.btn-page-anchors.active,
.btn-page-anchors:active,
.show>.btn-page-anchors.dropdown-toggle { 
	color: var(--white);
	background-color: var(--red);
	border-color: var(--red);
	box-shadow: none;
	filter: brightness(1.3);
}

.collapse--features {
	max-height: none;
}

.collapse--features:not(.show) {
   	display: block;
	height: 4.855rem;
    overflow: hidden;
}

.a--collapse {
	text-decoration: none;
}

.a--collapse:after {
	content: "+";
	position: relative;
	display: block;
	text-align: right;
    margin-top: -2rem;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    width:100%;
    height: 1.75rem;
    z-index: 2;  
    font-size: 1.375rem; 
}

.a--collapse:not(.collapsed):after {
	content: "-";
	margin-top: 0;
}

@media (min-width: 576px) {
	.page-anchors--sm .btn-page-anchors {
		margin: 0 .5rem;
	}
}

@media (min-width: 768px) {
	.page-anchors--md .btn-page-anchors {
		margin: 0 .5rem;
	}
}

@media (min-width: 992px) {
	.page-anchors--sm .btn-page-anchors,
	.page-anchors--md .btn-page-anchors {
		margin: 0 .75rem;
	}

	.btn-page-anchors {
		width: 12rem;
	}

	.page-anchors--md .btn-page-anchors {
		width: 13rem;
		font-size: 1.125rem;
	}
}

 @media (min-width: 1200px) {
	body:not(.fr):not(.es):not(.fr-eu):not(.de-eu)  .page-anchors--xl .btn-page-anchors {
		margin: 0 .5rem;
	}
} 

@media (min-width: 1400px) {
	body:not(.fr):not(.es):not(.fr-eu):not(.de-eu)  .btn-page-anchors {
		margin: 0 1.5rem;
	}
	body.fr .btn-page-anchors ,
	body.es .btn-page-anchors,
	body.fr-eu .btn-page-anchors,
	body.de-eu .btn-page-anchors {
		margin: 0 0.5rem;
	}
}
@media (min-width: 1680px) {
	body.fr .btn-page-anchors,
	body.es .btn-page-anchors,
	body.fr-eu .btn-page-anchors,
	body.de-eu .btn-page-anchors {
		margin: 0 1.5rem;
	}
}


/* ------------------------------------------------------------------------ Callouts (Calls to Action) */

.cta {
	display: block;
	font-weight: 400;
	position: relative;
	cursor:pointer;
	text-decoration: none;
	color: inherit;
	border-radius: .5rem;
	border: 1px solid var(--grey-md);
	background-color: var(--white);
}

.cta:hover {
	color: inherit;
	box-shadow: 0px 0px 8px 4px rgba(0,0,0,0.2);
}

.cta__summary {
	padding-bottom: 5rem;
}
.cta__link {
	position: absolute;
	bottom: var(--card-p);
	left: var(--card-p);
	width: calc(100% - (var(--card-p) * 2));
}

/*.cta:hover .cta__link {
	text-decoration: underline;
}*/

.cta-body {
	padding: var(--card-p);
	display: block;
}

.cta__image-wrapper {
    overflow: hidden;
    aspect-ratio: 1 / .625;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: all .75s;
}

.cta__image-wrapper--cropped {
    aspect-ratio: 1 / .75;
}

.cta__image-wrapper--cropped .cta__image {
    object-fit: contain;
}

.cta__image:hover {
	opacity: 1;
}

.cta:hover .cta__image {
	transform: scale(1.05);
}

.cta__arrow {
	width: 3rem;
	height: 3rem;
	background: var(--red) url(../../images/arrow-white.svg) no-repeat center;
	background-size: 1.25rem;
	border-radius: 50%;
	transition: all .25s;
}

.cta:hover .cta__arrow {
	filter: brightness(1.3);
	transform: translateX(.75rem);
}

@media (min-width: 1400px) {	
	.cta__arrow {
		width: 4rem;
		height: 4rem;
	}
}


/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
	z-index: 1;
	transition: all .25s ease;
}

.cta--stacked:hover:before {
	background: rgba(0,0,0,0.5);
}

.cta--stacked .cta__heading {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: var(--white);
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.cta--stacked:hover .cta__heading {
	color: var(--white);
	transform: translate(-50%,-60%);
}


/* ------------------------------------------------------------------------ Callouts with Icons */

.cta__icon {
	height: 0;
	width: 5em;
	padding-bottom: 5em;
	margin:0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all .25s ease;
}

.cta:hover .cta__icon {
	opacity: 0.9;
	transform: translateY(-.5em);
}


/* ------------------------------------------------------------------------ Cards */

.card {
	border-radius: .5rem;
	border: 0;
	margin-top: .5rem;
	margin-bottom: .5rem;
}

.card--grey-lt {
	background-color: var(--grey-lt);
}

.card--grey-dk {
	background-color: var(--grey-dk);
	color: var(--white);
}

.card--border {
	border: 1px solid var(--grey-md);
}

.card-body {
	padding: var(--card-p);
}

.card-body--md {
	padding: var(--card-p-md);
}

.card-body--lg {
	padding: var(--card-p-lg);
}

.card__image-wrapper {
    overflow: hidden;
}

.card__image {
    width: 100%;
    height: 100% !important;
    transition: all 1s;
    aspect-ratio: 1 / .66;
    object-fit: cover;
    object-position: center;
}


/*.card a {
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease-in-out;
}*/



/* ------------------------------------------------------------------------ List Group */

.list-group {
    border-radius: 0;
}

.list-group-item {
    padding: .75rem 1rem;
    color: var(--black);
    background-image: none;
}

.list-group-item:last-child {
    padding-bottom: .75rem;
}


/* ------------------------------------------------------------------------ Accordions */

.accordion-button {
	border: 1px solid transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--grey-lt);
}

.accordion-button:not(.collapsed)::after { 
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
    border: 1px solid transparent;
}

.accordion-flush .accordion-item:last-child {
	border-bottom: 1px solid rgba(0,0,0,.125);
}

.accordion-flush .accordion-button {
	padding: 1rem .5rem;
}

.accordion-flush .accordion-body {
    padding: 1rem .5rem;
}


/* ------------------------------------------------------------------------ Tables */

/*Override table inline styles*/

.table[style] {
	width:100% !important;
	height:auto !important;
}

.table td[style],
.table th[style] {
	height:auto !important;
}


.table {
	margin-bottom: 0;
}

.table td, .table th {
    border-bottom: 1px solid var(--grey-lt);
    padding: .75rem 1rem;
    vertical-align: middle;
}


.table td:first-child,
.table th {
    font-weight: 500;
    width: 45%;
}



.table thead th {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: var(--white);
    --bs-table-accent-bg: transparent;
}

.table-striped>tbody>tr:nth-of-type(even) {
    background-color: rgb(240, 240, 240);
    --bs-table-accent-bg: transparent;
}


.specifications-wrapper .table-xl {
	min-width: 0;
}

.table-xl {
	min-width: 69rem;
}
.table .thead-dark th {
    background: var(--grey-dk);
    color: var(--white);
    text-transform: unset;
    font-weight: 500;
	font-size: 1.25rem;
}
@media (min-width: 992px) {
	.table .thead-dark th  {
        font-size: 1.5rem;
    }
}
/*@media (min-width: 1680px) {
		column-count: 2;
		column-gap: 3rem;
	}
}*/

/* ------------------------------------------------------------------------ Pagination */

.pagination {
	flex-wrap: wrap;
	margin-top: 3rem;
}

.page-item {
	background-image: none;
	padding: 0;
	margin: 0 0 .5rem 0;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
	border-radius: 0;
}

.page-item--prev .page-link,
.page-item--next .page-link {
	background: var(--grey-md) url(../../images/arrow-white.svg) no-repeat center;
	background-size: .5rem;
}

.page-item--prev .page-link {
	transform: rotate(180deg);
}

.page-item--prev .page-link:hover,
.page-item--next .page-link:hover {
	background-color: var(--black);
	color: var(--white);
}


.page-link {
	min-width:2.5rem;
	height: 2.5rem;
	padding: .375rem .625rem 0 .625rem;
	color: var(--grey-dark);
	background-color: var(--white);
	border-color: var(--white);
	text-align: center;
	border-left:  1px solid var(--grey-lt);
}

.page-link:hover {
	background-color: var(--grey-lt);
	border-color: var(--white);
	color: var(--black);
}

.page-item.active .page-link {
	background-color: var(--black);
	border-color: var(--white);
	font-weight: bold;
}


@media (min-width: 1400px) {
	.page-link {
		min-width:2.75rem;
		height: 2.75rem;
		padding: .5rem .75rem 0 .75rem;
	}

	.page-item--prev .page-link,
	.page-item--next .page-link {
		background-size: .75rem;
	}
}



/* ------------------------------------------------------------------------ Swiper */

/* ------------------------------------------------------------------------ Swiper Pagination */

.swiper-pagination-bullet {
	width: 14px;
    height: 14px;
    border: 1px solid var(--black);
    position:relative;
    background-color: var(--white);
    opacity: 1;
}

.swiper-pagination-bullet-active:before {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--grey-md);
}


/* ------------------------------------------------------------------------ Swiper Navigation */

.swiperNavigation {
    padding: 8px;
}

.swiperNavigation .swiper-button-next, .swiperNavigation .swiper-button-prev {
    display: none !important;
    position: absolute;
    top: .5rem;
    background-color: var(--red);
    width: 5rem;
    height: calc(100% - 1rem);
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

.swiperNavigation .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 12px 0px 48px 0px rgba(255,255,255,0.375);
}

.swiperNavigation .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    box-shadow: -12px 0px 48px 0px rgba(255,255,255,0.375);
}

.swiperNavigation .swiper-button-next.swiper-button-disabled, .swiperNavigation .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

@media (min-width: 1200px) {
	.swiperNavigation .swiper-slide {
		width: 28rem;
	}

	.swiperNavigation .swiper-button-next, .swiperNavigation .swiper-button-prev {
	    display: flex!important;
	}

	.swiperNavigation .swiper-pagination {
	    display: none!important;
	}
}

@media (min-width: 1400px) {
	.swiperNavigation .swiper-slide {
		width: 22rem;
	}
}

@media (min-width: 1680px) {
	.swiperNavigation .swiper-slide {
		width: 27rem;
	}
}

/* ------------------------------------------------------------------------ Swiper Video Thumbs */

.swiperVideoThumbs .swiper-slide__overlay {
	position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}




/* ------------------------------------------------------------------------ Forms */
	
.required-input,
.Required {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight:700;
}

legend {
	font-size: 1rem;
}

.form-control, .form-select {
	border-color: var(--grey-lt);
	padding: .5rem 1rem;
	color: var(--black);
	font-size: 1rem;
}

.form-control-lg.form-control--file {
	font-size: 1rem;
}

.form-control:focus, .form-select:focus, .form-check-input:focus {
    color: var(--black);
    border-color: var(--grey-lt);
    outline: 0;
    box-shadow: 0 0 0 0.125rem rgb(0 0 0 / 25%);
}


.form-check-input {
    border: 1px solid var(--grey-lt);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.checkbox-link {
    padding-left: 1.5rem;
}


.form-switch .form-check-input {
    border-radius: 2em;
}

.form-switch .form-check-input:focus {
	background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e);
}

.form-text {
    margin-top: .5rem;
    font-size: .875rem;
    color: var(--grey-md);
}

.form-control--comments {
	height: 15rem;
}

@media (min-width: 992px) {
	.form-control--comments {
		height: 20rem;
	}
}

@media (min-width: 1400px) {
	legend,
	label,
	.form-control, 
	.form-select,
	.form-control-lg.form-control--file,
	.form-check-label {
		font-size: 1.25rem;
	}

	.form-control, .form-select {
		padding: .5rem 1rem;
	}

	.form-check-input {
	    margin-top: .313rem;
	}

	.form-text {
	    margin-top: .5rem;
	    font-size: 1rem;
	    color: var(--grey-md);
	}	

	.form-control--comments {
		height: 22.5rem;
	}
}


/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: var(--black) url(../../images/arrow-white.svg) no-repeat center;
	background-size: 1rem;
	border-radius: 50%;
	z-index: 10;
	visibility: hidden;
	transform: rotate(-90deg);
	transition: all .25s ease;
}

.to-top:hover {
	background-color: var(--grey-md)
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}


			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	color: var(--white);
	background-color: var(--black);
	margin-top: auto!important;
	padding: var(--section-p-sm) 0;
}

.rkd {
	display: inline-block;
	width: 5.625rem; 
}

.footer__link {
	margin-right: 1rem;
	text-decoration: none;
	display: block;
	color: var(--white);
	font-weight: 400;	
}


.footer__link--copyright {
	margin-right: 0;	
	display: inline;
}	

.footer__link:hover {
	color: var(--white);
	text-decoration: underline;
}	