.sub header {
	height: 380px;
}

aside, main {
	padding: calc(var(--sectionPadding) / 2) 0;
}

main::before,
main::after {display: none;}

.sub h1 {
	margin-top: 0;
	margin-bottom: 30px;
}


aside h4 {
	font-size: var(--h5);
	margin: 0 0 30px;
}


aside .nav {
	margin: 0;
	padding: 0;
	width: 100%;
}

aside .nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

aside .nav a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	line-height: 1.3;
	padding: 10px 25px;
	text-decoration: none;
	border-left: 2px solid var(--borderColor);
	transition: all .2s;
	color: var(--textColor);
}

aside .nav a:hover,
aside .nav .active > a,
aside .nav a.active {
	border-left-color: var(--primary);
}

aside .nav a:hover {
	padding-left: 30px;
	padding-right: 20px;
}

aside .nav .active > a,
aside .nav a.active {color: var(--primary);}



.container .container {
	margin: 0;
	width: 100%;
}

.gallery a {
	overflow: hidden;
}

.gallery img {
	display: block;
	width: 100%;
	transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery a:hover img {
	transform: scale(1.1);
}


.downloads a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding: 15px 30px;
	text-decoration: none;
	color: var(--textColor);
	transition: all var(--fastSpeed);
	box-shadow: 0 0 30px hsl(0, 0%, 0%, .1);
}

.downloads a:hover {
	color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 15px 20px -5px hsl(0, 0%, 0%, .2);
}

.downloads a img:not(.download-icon) {
	height: 52px;
	border-radius: 0;
}

.download-icon {
	height: 18px;
	display: block;
	margin-left: 30px;
	border-radius: 0;
	filter: grayscale(1);
}

.downloads .text {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 30px;
}

.downloads strong {
	font-weight: normal;
	line-height: 1.3;
	display: block;
	padding-right: 30px;
}

form {
	width: 100%;
}

fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

label {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 1.125rem;
}

label p {
	margin: 0;
}

input,select,textarea {
	width: 100%;
	box-sizing: border-box;
	padding: .8rem 1rem;
	border: 2px solid var(--borderColor);
}

[type="checkbox"],
[type="radio"] {
	width: auto;
	flex-shrink: 0;
}

textarea {
	height: 15rem;
}

.ok {
	border-color: var(--borderColor);
}

.error {
	border-color: red;
}

.error-msg {
	color: red;
	font-size: 1rem;
	margin-top: 5px;
}

.star {
	color: red;
	font-family: sans-serif;
}

#alert {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5rem 1rem;
	color: white;
	font-weight: bold;
}

#alert.success {
	background-color: rgb(0, 133, 22);
}


#alert.danger {
	background-color: rgb(165, 0, 0);
}


label p,
label li {
	font-size: 0.875rem;
}

label li {
	margin-bottom: 0.5em;
}

.sub main .btn {
	padding: 1.3em 2em;
}


.card {
	padding: 30px;
	border-radius: .5rem;
	box-shadow: 0 10px 40px -5px hsl(0, 0%, 0%, .1);
	transition: all .3s;
}

.card:hover {
	cursor: pointer;
	transform: translateY(-2px);
	box-shadow: 0 15px 30px -10px hsl(0, 0%, 0%, .15);
}

.card .swiper-product-image > img {
    display: block;
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center bottom;
}

.swiper-product-content {opacity: 1; padding-top: 45px;}

.swiper-product-content strong a {
	color: var(--secondary);
	text-decoration: none;
}

table {
	width: 100%;
	margin: 60px 0;
    box-shadow: 0 0 0 12px #f4f4f4;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}

tr {
    border-bottom: #f4f4f4;
}

td, th {
    padding: 2rem;
    border: none;
	text-align: left;
    border-bottom: 1px solid #f4f4f4;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

tr:hover td {
    background: #f4f4f4;
}




/*

		M  E  D  I  A
		Q U E R I E S

*/

@media screen and (max-width: 1010px) {
	.sub header {
		height: 200px;
	}

	aside:not(main+aside) {
		display: none;
	}
}


@media screen and (max-width: 590px) {
	h1 {font-size: var(--h3)}
	h2 {font-size: var(--h4)}
	h3 {font-size: var(--h5)}
	h4 {font-size: var(--h6)}
	h5 {font-size: var(--h6)}

	table {
		display: block;
		overflow-x: auto;
		box-shadow: none;
		border: 1px solid var(--bgLight);
	}

	th, td {
		padding: 0.5em;
		font-size: 0.875rem;
	}

	.thumbnail.right {
		max-width: 100%;
		margin: 0 0 30px 0;
	}
}