html, 
body {
	padding: 0;
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
	font-size: 12pt; 
	background: #000;
	color: #eee; 
	overflow: hidden;
	overflow-y: auto;
}

:root {
	--var-main-color: #b78700;
};

* {
	box-sizing: border-box;
}

a {
	color: var(--var-main-color);
}

input[type=checkbox]:before {
	display: inline-block;
	border-radius: 0px; 
	background: #fff; 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px #b0b0b0;
	width: 10px; 
	height: 10px; 
	position: relative;
	content: ' ';
	transition: all 0.4s;
}

input[type=checkbox]:checked:before {
	display: inline-block;
	border-radius: 0px; 
	background: var(--var-main-color); 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px var(--var-main-color);
	width: 10px; 
	height: 10px; 
	position: relative;
	content: ' ';
}

input[type=checkbox]:indeterminate:before {
	display: inline-block;
	border-radius: 0px; 
	background: #b0b0b0; 
	border: 7px 3px solid #fff;
	margin: -3px 0px 0px -3px; 
	box-shadow: 0px 0px 0px 1px #b0b0b0;
	width: 12px; 
	height: 4px; 
	position: relative;
	content: ' ';
}

input[type=radio]:before {
	display: inline-block;
	border-radius: 0px; 
	background: #fff; 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px #b0b0b0;
	width: 10px; 
	height: 10px; 
	position: relative;
	content: ' ';
	transition: all 0.4s;
}

input[type=radio]:checked:before {
	display: inline-block;
	border-radius: 0px; 
	background: var(--var-main-color); 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px var(--var-main-color);
	width: 10px; 
	height: 10px; 
	position: relative;
	content: ' ';
}

input[type=text], 
input[type=url], 
input[type=submit], 
input[type=button] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

:focus {
	outline: 0;
}

hr {
	height: 1px; 
	background: #ccc;
	border: 0;
}

textarea {
	resize: vertical;
}

button, 
a.hrefLikeButton, 
input[type=submit], 
input[type=button] {
	box-sizing: border-box;
	font-size: 15pt;
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px 40px 10px;
	background: #333;
	border:0;
	border-radius: 0px !important; 
	text-decoration: none;
	display: inline-block;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-family: "Poppins", sans-serif;
	/*border-bottom: 3px solid #bbb;*/
}

.uni-background-1 {
	background: linear-gradient(to top right, #fb7e74, #d32325, #3f0704, #210502);
}

.btn-green {
	background: #8dbb3f !important;
	/*border: 2px solid #00803e !important;*/
	/*border-bottom: 3px solid #080 !important;*/
	color: #fff !important;
}

.btn-blue {
	background: #00aeef !important;
	/*border: 2px solid #0096cc !important;*/
	/*border-bottom: 3px solid #048 !important;*/
	color: #fff !important;
}

.btn-red {
	background: #e00 !important;
	/*border: 2px solid #a00 !important;*/
	/*border-bottom: 3px solid #a00 !important;*/
	color: #fff !important;
}

.btn-orange {
	background: #e60 !important;
	/*border: 2px solid #a00 !important;*/
	/*border-bottom: 3px solid #a00 !important;*/
	color: #222 !important;
}

.btn-main {
	background: var(--var-main-color) !important;
	/*border: 2px solid #a00 !important;*/
	/*border-bottom: 3px solid #a00 !important;*/
	color: #222 !important;
}

select, 
textarea, 
input[type=text], 
input[type=search], 
input[type=date], 
input[type=tel], 
input[type=email], 
input[type=date], 
input[type=url], 
input[type=password], 
input[type=number] {
	padding: 8px 12px;
	border: 1px solid #555;
	/*border-bottom: 3px solid #ccc;*/
	-webkit-appearance: none;
	font-size: 14pt;
	box-sizing: border-box;
	border-radius: 0px;	
	-webkit-user-select: auto; /* Safari */        
	-moz-user-select: auto; /* Firefox */
	-ms-user-select: auto; /* IE10+/Edge */
	user-select: auto; /* Standard */
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	display: block;
	background: rgba(60, 60, 60, 0.9);
	color: #ccc;
}

input[type="date"]::-webkit-clear-button, 
input[type="time"]::-webkit-clear-button, 
input[type="date"]::-ms-clear, 
input[type="time"]::-ms-clear {
    display: none;
}

input[type="checkbox"].on-off-checker:after {
	display: block;
	border-radius: 0px; 
	width: 26px; 
	height: 26px; 
	position: absolute;
	top: 4px; 
	left: 4px; 
	background: #ccc;
	content: '';
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker:before {
	display: block;
	border-radius: 0px;
	border: 2px solid #ccc;
	background: #eee;
	width: 60px;
	height: 30px;
	content: '';
	position: relative;
	top: 0;
	left: 0;
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker:checked:after {
	left: 33px; 
	background: #8dbb3f;
}

input[type="checkbox"].on-off-checker:checked:before {
	border: 2px solid #8dbb3f;
	background: #eaede5;
}

input[type="checkbox"].on-off-checker {
	position: relative;
	width: 68px;
	height: 40px;
	padding: 0;
	margin: 0 3px;
	top: 2px;
	line-height: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
}

input[type="checkbox"].on-off-checker-smaller:after {
	display: block;
	border-radius: 0px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 4px;
	left: 5px;
	background: #ccc;
	content: '';
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker-smaller:before {
	display: block;
	border-radius: 0px;
	border: 2px solid #ccc;
	background: #eee;
	width: 50px;
	height: 26px;
	content: '';
	position: relative;
	top: 0;
	left: 0;
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker-smaller:checked:after {
	left: 27px;
	background: #8dbb3f;
}

input[type="checkbox"].on-off-checker-smaller:checked:before {
	border: 2px solid #8dbb3f;
	background: #eaede5;
}

input[type="checkbox"].on-off-checker-smaller {
	position: relative;
	width: 54px;
	height: 30px;
	padding: 0;
	margin: 0 3px;
	top: 2px;
	line-height: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
}

iframe[allowfullscreen="allowfullscreen"] {
	background: #fff;
	border-radius: 0px; 
}

.error {
	padding: 10px; 
	margin: 10px 0; 
	background: #e00;
	color: #fff;
	text-align: center;
	border-radius: 0px; 
}

#site-messages > div > div {
	padding: 10px 15px 0; 
}

#site-messages > div > div > label > p {
	padding: 0;
	margin: 8px 0;
	user-select: none;
}

#site-messages > div > div > label {
	font-size: 12pt; 
	text-align: center;
	display: block;
	padding: 20px 30px 20px; 
	margin: 0;
	color: #fff;
	user-select: none;
}

#site-messages > div {
	padding: 0; 
	display: none;
}

#site-messages div.msg-info label {
	/*background: #0af;*/
	background: #fff;
	color: #0af;
	border: 2px solid #0af;
}

#site-messages div.msg-success label {
	/*background: #2a851b;*/
	background: #fff;
	color: #2a851b;
	border: 2px solid #2a851b;
}

#site-messages div.msg-error label {
	/*background: #e00;*/
	background: #fff;
	color: #e00;
	border: 2px solid #e00;
}

#site-messages div.msg-notification label span.message-close {
	position: absolute;
	color: #e00;
	font-size: 14pt;
	top: 2px;
	right: 10px;
	display: block;
	padding: 5px 20px;
	cursor: pointer;
}

#site-messages div.msg-notification label span.message-title {
	position: absolute;
	top: 0px; 
	left: 0px;
	border-bottom: 0.6px solid #f60;
	background: rgba(255, 120, 0, 0.1);
	width: 100%; 
	text-align: left;
	padding: 10px 30px;
	font-size: 10pt; 
}

#site-messages div.msg-notification label {
	/*background: #f60;*/
	background: #fff;
	color: #f60;
	border: 2px solid #f60;
	position: relative;
	padding: 50px 30px 20px;
}

#site-messages > div > div > label {
	border-radius: 0px; 
	/*border: 5px solid #fff;*/
	/*box-shadow: 2px 0 50px rgba(0, 0, 0, 0.2);*/
}

#site-messages {
	z-index: 99999;
	left: 0;
	width: 100%;
	position: fixed;
	top: 90px; 
}

#working table td svg {
	width: 64px; 
	height: 64px; 
}

#working table td {
	text-align: center;
}

#working table {
	width: 100%; 
	height: 100%; 
}

#working {
	position: fixed;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.8);
	width: 100vw; 
	height: 100vh; 
	top: 0;
	left: 0;
	display: none;
}

#main-window-container > table > tbody > tr > td {
	padding: 0;
}

#main-window-container > table {
	width: 100%; 
	height: 100%; 
	border-spacing: 0;
}

#main-window-container {
	z-index: 199;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%; 
	background: rgba(200, 200, 200, 0.6);
	display: none;
	backdrop-filter: blur(6px);
}

#main-window-content-out {
	max-width: 600px; 
	padding: 0 15px; 
	margin: 0 auto; 
}

#main-window-content {
	border-radius: 0px; 
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	max-height: calc(100vh - 120px);
	overflow: hidden;
	overflow-y: auto;
}

#main-window-title > span {
	display: block;
}

#main-window-title > label {
	cursor: pointer;
	display: block;
	position: absolute;
	left: 5px; 
	top: 5px; 
	padding: 2px 10px 0; 
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0px; 
	user-select: none;
}

#main-window-title {
	position: relative;
	font-size: 20pt; 
	padding: 7px 10px 7px 40px; 
	text-align: center;
	cursor: default;
}

#main-window-progress > div {
	height: 3px; 
	width: 0;
	background: rgba(255, 255, 255, 0.6);
}

#main-window-progress {
	position: relative;
}

.top-distance {
	height: 77px; 
}

div.main-breadcrumb ol li a {
	color: #777; 
	text-decoration: none;
	padding: 5px 5px 5px 10px;
}

div.main-breadcrumb ol li:before {
	content: '\2022';
	display: inline-block;
	position: relative;
	top: 1px; 
	color: #aaa; 
}

div.main-breadcrumb ol li:first-child:before {
	content: '';
}

div.main-breadcrumb ol li:first-child a {
	padding-left: 0;
}

div.main-breadcrumb ol li {
	display: inline-block;
	margin: 1px; 
	padding: 0;
}

div.main-breadcrumb ol {
	list-style: none;
	padding: 0; 
}

div.main-breadcrumb {
	max-width: 1100px; 
	margin: 20px auto 30px; 
}

div.page-main-title h1 {
	max-width: 1100px; 
	width: 100%; 
	margin: 0 auto 20px; 
	padding: 250px 15px 200px; 
	color: #fff; 
	font-size: 32pt; 
	font-weight: 200;
	text-shadow: rgba(0, 0, 0, 0.2) 0 0 10px, rgba(0, 0, 0, 0.6) 0 0 2px;
}

div.page-main-title {
	background-size: cover;
	background-position: center;
}

div.page-main-title-container {
	background-image: url(/images/header-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#mainInContent {
	min-height: calc(100vh - 100px - 600px);
}

header {
	display: block;
	padding: 0;
	width: 100%; 
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	position: fixed;
	z-index: 109;
	top: 0;
	left: 0;
	width: 100%; 
	/*background: rgba(0, 0, 0, 1);*/
}

header > div div#nav-icon label {
	display: block;
	background: rgba(255, 255, 255, 1);
	height: 2px;
	width: 26px;
	margin: 0 0 7px;
	border-radius: 0px;
}

header > div div#nav-icon {
	position: absolute;
	top: 22px;
	right: 20px;
	padding: 0px 20px 20px;
	cursor: pointer;
	z-index: 110;
}

header > div {
	max-width: 1100px; 
	position: relative;
	margin: 0 auto;
	padding: 25px 20px;
}

header svg.mobile {
	display: none;
}

header svg.brand {
	height: 60px; 
	margin: -18px 0 -23px;
}

header svg {
	/*width: 240px; */
	height: 20px; 
	position: relative;
	z-index: 110;
	/*display: block;*/
	/*margin: 0 auto;*/
}

div.company-image-container {
	height: 400px; 
	background-size: cover;
	/*object-fit: cover;*/
	/*display: block;*/
}

div.company-brand-container {
	text-align: center;
}

div.company-brand-container img {
	width: 200px; 
	border-radius: 0px; 
	margin: -100px 0 20px; 
	border: 5px solid #fff;
}

section.company-header h3 {
	text-align: center;
	font-size: 16pt; 
	color: #c4161c;
}

section.pg-content {
	display: block;
	margin: 0 auto 20px; 
	max-width: 1100px; 
	padding: 0 20px; 
}

section.pg-content-small {
	max-width: 500px; 
}

section.pg-content-white {
	padding: 20px;
	background: #222;
	border-radius: 0px; 
	box-shadow: 0 0 20px rgba(10, 10, 10, 0.01);
}

section.pg-content-centered {
	text-align: center;
}

section.pg-slider-top > div {
	height: 100%; 
	background-position: center;
	background-size: cover;
	border-radius: 0px; 
}

section.pg-slider-top {
	margin-top: 20px; 
	height: 230px; 
}

#nav-icon {
	width: 0;
	height: 16px;
	margin: 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-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #aaa;
	border-radius: 0px;
	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-icon span:nth-child(1) {
	top: 8px;
}

#nav-icon span:nth-child(2) {
	top: 18px;
}

#nav-icon span:nth-child(3) {
	top: 28px;
}

html.to-menu-opened #nav-icon span:nth-child(1) {
	top: 17px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

html.to-menu-opened #nav-icon span:nth-child(2) {
	opacity: 0;
	left: 50px;
}

html.to-menu-opened #nav-icon span:nth-child(3) {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

header > div > table {
	width: 100%; 
	border-spacing: 0;
	padding: 0;
}

header > div > table > tbody > tr > td {
	padding: 0;
	/*position: relative;*/
}

header > div > table > tbody > tr > td > ul > li > span, 
header > div > table > tbody > tr > td > ul > li > a {
	text-transform: uppercase;
	color: #aaa;
	font-weight: 600;
	text-decoration: none;
	display: block;
	margin: 0;
	padding: 25px 10px;
	/*font-family: 'Spartan', sans-serif;*/
	/*height: 71px;*/
	/*font-size: 9pt; */
}

/* header > div > table > tbody > tr > td > ul > li[rel="ul-li-laser-shopping"] > a {
	color: var(--var-main-color);
} */

header > div > table > tbody > tr > td > ul > li > ul > li > span, 
header > div > table > tbody > tr > td > ul > li > ul > li > a {
	display: block;
	/*color: #333; */
	text-decoration: none;
	margin: 0;
	padding: 10px 25px; 
	transition: color 0.4s;
}

header > div > table > tbody > tr > td > ul > li > ul > li.is-active > span, 
header > div > table > tbody > tr > td > ul > li > ul > li.is-active > a, 
header > div > table > tbody > tr > td > ul > li > ul > li:hover > span, 
header > div > table > tbody > tr > td > ul > li > ul > li:hover > a {
	color: var(--var-main-color);
	background: rgba(150, 150, 150, 0.8);
}

header > div > table > tbody > tr > td > ul > li > ul > li {
	display: block;
	padding: 0;
	margin: 0;
}

header > div > table > tbody > tr > td > ul > li.lang-dropdown > ul a {
	white-space: nowrap;
}

header > div > table > tbody > tr > td > ul > li.lang-dropdown > ul {
	min-width: initial;
}

header > div > table > tbody > tr > td > ul > li > ul {
	position: absolute;
	top: 100px; 
	left: 0;
	background: rgba(0, 0, 0, 0.9);
	padding: 5px 0 15px;
	margin: 0;
	list-style: none;
	min-width: 300px; 
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.4s;
}

header > div > table > tbody > tr > td > ul > li:hover > ul {
	top: 75px; 
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	opacity: 1;
	max-height: 150vh;
}

header > div > table > tbody > tr > td > ul > li {
	padding: 0;
	margin: 0 0 -3px;
	border-bottom: 4px solid transparent;
	display: inline-block;
	transition: border-bottom .4s;
	position: relative;
}

header > div > table > tbody > tr > td > ul > li:hover {
	border-bottom: 4px solid var(--var-main-color);
}

header > div > table > tbody > tr > td > ul > li.is-active > a {
	color: #fff;
	/*color: var(--var-main-color);*/
	background: rgba(150, 150, 150, 0.8);
}

header > div > table > tbody > tr > td > ul > li.is-active {
	border-bottom: 4px solid var(--var-main-color);
}

header > div > table > tbody > tr > td > ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 108;
	position: relative;
	margin: -25px 0;
	float: right;
}

header > div > label {
	position: relative;
	z-index: 109;
}

.menu-custom {
	z-index: 111; 
}

.menu-custom > li > ul li a.hrefLikeButton {
	/*color: var(--var-main-color);*/
}

.menu-custom > li > ul li a:not(.hrefLikeButton) {
	/*color: #fff;*/
	color: #555;
	display: block;
}

.menu-custom > li > ul li > p {
	padding-left: 8px; 
	padding-right: 10px; 
}

.menu-custom > li > ul li > span.links {
	padding-left: 8px; 
	padding-right: 10px; 
	display: block;
}

.menu-custom > li > ul li {
	/*color: #fff;*/
	padding: 5px 10px; 
	white-space: nowrap;
}

.menu-custom > li > ul {
	position: absolute;
	top: 100px; 
	right: 0;
	left: initial;
	border-bottom: 0px solid #000;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	border-top: 0px solid #000;
	background: rgba(0, 0, 0, 0.9);
	/*background: #fff;*/
	list-style: none;
	padding: 0 10px; 
	margin: 0;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.4s;
}

.menu-custom > li:hover > ul {
	top: 60px; 
	border-bottom: 2px solid #000;
	border-top: 5px solid #000;
	max-height: calc(100vh - 140px);
	padding: 10px 10px; 
	opacity: 1;
}

h1 {
	/*color: var(--var-main-color);*/
	text-align: center;
	max-width: 1100px; 
	padding-left: 15px; 
	padding-right: 15px; 
	text-transform: uppercase;
	margin-left: auto;
	margin-right: auto;
	font-family: "Poppins", sans-serif;
	font-size: 40pt; 
	font-weight: 900;
}

h2 {
	font-weight: normal;
	padding: 0 0 20px; 
	margin: 20px 0;
	border-bottom: 1px solid var(--var-main-color);
	font-size: 22pt;
}

#mainWindowContainer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%; 
	background: rgba(0, 0, 0, 0.7);
	z-index: 110;
}

#mainWindowContainer.opened {
	display: block;
}

#mainWindow {
	margin: 0 auto;
	background: #fff;
	max-width: 600px; 
	border-radius: 0px; 
}

#mainWindowHeader {
	position: relative;
}

#mainWindowHeader label {
	font-size: 14pt; 
	padding: 10px;
	margin: 0; 
	border-bottom: 1px solid #ccc;
	display: block;
}

#mainWindowHeader span {
	position: absolute;
	color: #e00;
	font-size: 16pt; 
	top: 0;
	right: 0;
	padding: 10px 20px; 
	display: block;
	cursor: pointer;
}

#mainWindowContent {
	max-height: 80vh;
	overflow: hidden;
	overflow-y: auto;
	padding: 10px; 
}

div.section label {
	font-size: 10pt; 
	display: block;
	padding: 5px 2px; 
}

div.section input[type="text"], 
div.section input[type="password"], 
div.section input[type="email"] {
	width: 100%; 
}

div.section {
	margin: 20px 10px;
	padding: 0;
}

fieldset.section legend {
	padding: 0 10px; 
	color: #888; 
}

fieldset.section {
	border: 0;
	border-top: 1px solid #aaa; 
}

section.action-section {
	padding: 20px 0 10px;
	margin: 20px 0 0;
	border-top: 2px solid #ddd;
	text-align: right;
}

html.to-filter-opened, 
html.to-menu-opened {
	overflow: hidden;
}

.main-cookies table tr:first-child td:last-child {
	padding: 5px 20px 5px 10px; 
	font-weight: bold;
}

.main-cookies table tr:first-child td:first-child {
	padding: 0;
	vertical-align: top;
	width: 40px; 
}

.main-cookies table {
	border-spacing: 0;
}

.main-cookies {
	position: fixed;
	bottom: 20px; 
	left: 20px; 
	background: #222; 
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	border-radius: 0px; 
	width: 50px; 
	height: 50px; 
	overflow: hidden;
	z-index: 108;
}

.main-cookies .cookie-content-close {
	display: none;
}

.cookie-content-details-access {
	text-align: center; 
}

.cookie-content-details {
	display: none;
}

.main-cookies.main-cookies-opened .cookie-content-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 18pt; 
	color: #e00;
	display: block;
	padding: 5px 18px; 
	cursor: pointer;
}

.main-cookies.main-cookies-opened {
	/*width: calc(100% - 40px);*/
	width: initial;
	height: initial;
	overflow: auto;
}

.cookie-image svg {
	width: 40px; 
	height: 40px; 
	padding: 5px; 
	display: block;
}

.cookie-image label {
	float: left;
}

.cookie-image:after {
	float: none;
	clear: left;
	display: block;
	content: '';
}

.cookie-image {
}

.cookie-image path {
	fill: var(--var-main-color);
}

.cookie-content input {
	width: 100%; 
}

.cookie-content {
	padding: 0 20px 20px; 
	font-size: 10pt; 
	white-space: normal;
	max-width: 300px; 
}

footer > div > table td > div {
	margin: -10px 0 -20px;
	position: relative;
}

footer > div > table td h3 strong {
	font-size: 20pt; 
	color: #fff; 
}

footer > div > table td h3 {
	margin-top: 0;
	font-size: 16pt; 
}

footer > div > table td {
	padding: 0 20px; 
	border-left: 5px solid rgba(255, 255, 255, 0.3);
	vertical-align: top;
	color: #fff; 
	/*font-size: 10pt; */
	width: 25%; 
}

footer > div > table tr td:last-child {
	border-right: 5px solid rgba(255, 255, 255, 0.3);
}

footer > div > table {
	border-spacing: 0;
	width: 100%; 
}

footer > div:nth-child(2) {
	padding: 20px 0px 70px 0px; 
	margin: 0 auto; 
	max-width: 1200px;
	text-align: center;
	font-size: 10px; 
	color: #fff; 
}

footer > div:nth-child(1) {
	padding: 60px 15px 15px 15px; 
	margin: 0 auto; 
	max-width: 1200px;
}

footer {
	display: block;
	background-color: #555;
	/*background: url(/images/footer-background.jpg) fixed;*/
	background-size: cover;
	background-position: top center;
}

.brand-footer path {
	fill: #fff;
}

.brand-footer {
	width: 90%; 
}

.social-footer a {
	display: inline-block;
	margin: -5px 5px 0 0;
	color: #555; 
	background: #fff; 
	width: 43px; 
	height: 40px; 
	border-radius: 0px; 
	font-size: 21pt; 
	text-align: center;
}

.full-guest-blog-links a img {
	border-radius: 0px 0px 0 0;
	width: 100%; 
	display: block;
}

.full-guest-blog-links a span {
	display: block;
	margin: 5px 0;
	padding: 0 10px 5px; 
	color: #555; 
	text-decoration: none;
}

.full-guest-blog-links a {
	display: inline-block;
	width: calc((100% / 5) - 20px);
	margin: 0 10px 20px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 0px; 
	text-align: center;
	text-decoration: none;
	color: #555; 
}

.full-guest-blog-links {
	margin: 0 -10px;
	display: flex;
	flex-wrap: wrap;
}

section.article-item > div:nth-child(1) {
	width: calc(100% / 6);
	margin-right: 20px; 
	float: left;
}

section.article-item > div:nth-child(2) {
	width: calc((100% / 6) * 5);
	margin-right: -20px;
	position: relative;
	float: left;
}

.footer-links li a {
	display: block;
	margin: 10px 10px; 
	color: #fff; 
	text-decoration: none;
}

.footer-links li {
	display: block;
	margin: 1px; 
	padding: 0;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: -5px 0 0;
}

.slideshow {
	width: 100%; 
	height: calc(100vh - 77px - 180px);
	min-height: 350px; 
}

.article-static-item div.article-more-side {
	float: left;
	width: 340px; 
	padding-left: 40px; 
}

.article-static-item div.article-more-side div#product-list {
	margin-right: -20px; 
}

.article-static-item div.article-content-side {
	float: left;
	width: calc(100% - 380px);
}

.article-static-item {
}

.news-list a {
	display: block;
	padding: 10px 0;
	margin: 1px 0;
	color: #555; 
	text-decoration: none;
}

.news-list {
	margin: 10px 0;
}

.pg-content-articles > div {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -10px;
	text-align: center;
	justify-content: center;
	width: calc(100% + 20px);
}

.pg-content-articles > div a {
	display: inline-block;
	background: #fff;
	border-radius: 0px;
	width: calc(25% - 20px);
	margin: 10px;
	text-decoration: none;
	color: #555;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.pg-content-articles > div a img {
	border-radius: 0px 0px 0 0;
	width: 100%;
}

.pg-content-articles > div a label {
	display: block;
	text-align: center;
	padding: 5px 5px 10px;
	text-decoration: none;
}

.pg-faq-container {
	border-radius: 0px; 
	background: #fff; 
	border: 2px solid #eee; 
	margin-top: 50px !important; 
}

.pg-faq-item {
	margin: 20px 0;
	padding: 0;
	/*background: #fff;*/
	/*border-radius: 10px;*/
	/*border: 2px solid #ddd;*/
	/*box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);*/
	display: block;
}

.faq-arrow.opened {
	transform: rotate(90deg);
}

.faq-arrow {
	transition: all 0.4s;
}

.pg-faq-item .pg-faq-question.pg-faq-opened label {
	transform: rotate(45deg);
}

.pg-faq-item .pg-faq-question label {
	display: inline-block;
	border-radius: 0px;
	background: #f4f4f4;
	padding: 0 2px;
	width: 22px;
	height: 22px;
	text-align: center;
	margin-right: 10px;
	transition: all .5s;
	font-size: 18pt;
	line-height: 16pt;
	position: relative;
	top: 3px;
	margin-top: -8px;
}

.pg-faq-item .pg-faq-question.pg-faq-opened {
	font-weight: bold;
}

.pg-faq-item .pg-faq-question {
	padding: 20px 30px;
	cursor: pointer;
}

.pg-faq-item .pg-faq-answer.pg-faq-opened {
	max-height: 3000px;
}

.pg-faq-item .pg-faq-answer {
	overflow: hidden;
	max-height: 0;
	transition: all .5s;
}

.pg-faq-item .pg-faq-answer > div {
	border-top: 2px solid #f4f4f4;
	padding: 20px 30px 30px;
}

.bg-grey {
	background: #777; 
	color: #fff; 
}

.pg-main-content {
	margin: 0 0 30px; 
	padding: 1px 0 60px;
}

.default-uni-main-centered td {
	vertical-align: top;
}

.default-uni-main-centered {
	text-align: center;
}

.bg-grey {
	background: #222; 
}

.default-uni-main > table > tbody > tr > td img {
	width: 100%; 
	height: 100%; 
	object-position: center;
	object-fit: cover;
	display: block;
	border-radius: 0px; 
}

.default-uni-main > table > tbody > tr > td {
	padding: 0;
	width: 50%; 
	position: relative;
}

.default-uni-bottoms > table, 
.default-uni-main > table {
	border-spacing: 30px; 
	width: calc(100% + 60px); 
	height: 100%; 
	margin: 0 -30px;
}

.default-uni-main iframe {
	width: 100%; 
	height: 100%; 
	padding: 0;
	margin: 0;
	display: block;
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.default-uni-main h1 {
	margin-top: 0;
	padding-top: 0;
}

.bg-grey .default-uni-main h1 {
	color: #fff; 
}

.default-uni-main ul li:before {
	content: "\f058";
	display: block;
	font-family: FontAwesome;
	color: var(--var-main-color);
	position: absolute;
	left: -39px;
	top: 1px;
	font-size: 16pt; 
	opacity: 0.88;
}

.default-uni-main ul ol {
	margin: 10px 0 0;
	padding: 0;
}

.default-uni-main ul li {
	margin: 0 0 15px; 
	padding: 0;
	position: relative;
	line-height: 16pt; 
}

.default-uni-main ul {
	padding: 0 0 0 40px; 
	margin: 5px 0;
	list-style: none;
}

.default-uni-main td > div {
	margin: -5px 0 0px;
}

.default-uni-main {
	max-width: 1100px; 
	margin: 50px auto; 
}

.pg-content-therapic-img > section {
	margin-bottom: 0;
}

.pg-content-therapic-img {
	background-image: url(/images/anatomy-bg.jpg);
	background-size: cover;
	background-position: center;
}

.default-uni-main-sic h1 {
	text-transform: uppercase;
	margin: 0; 
	padding: 80px 0 40px;
	color: #fff; 
	font-size: 28pt; 
}

/*.default-uni-main-sic table td ul li a {*/
.default-uni-main-sic table td ul li label {
	text-transform: uppercase;
	text-decoration: none;
	font-size: 16pt; 
	font-weight: bold;
	color: #fff; 
}

.default-uni-main-sic table td ul li > div {
	display: block;
	position: relative;
	top: -2px; 
}

.default-uni-main-sic table td ul li {
	margin: 40px 0;
	padding: 0 20px; 
	display: block;
	position: relative;
}

.default-uni-main-sic table td ul {
	padding: 0;
	margin: 0;
	list-style: none;
	width: 50%; 
}

.default-uni-main-sic table td:nth-child(1) ul li {
	border-left: 3px solid var(--var-main-color);
}

.default-uni-main-sic table td:nth-child(2) ul li {
	text-align: right;
	border-right: 3px solid var(--var-main-color);
}

.default-uni-main-sic table td:nth-child(2) ul {
	margin: 0 0 0 auto;
}

.default-uni-main-sic table td {
	width: 50%; 
	padding: 0;
	vertical-align: top;
}

.default-uni-main-sic table {
	width: 100%; 
	border-spacing: 0;
	color: #fff; 
}

.default-uni-main-sic > div a {
	color: var(--var-main-color);
}

.default-uni-main-sic > div {
	text-align: right;
	padding-bottom: 60px; 
}

.default-uni-main-sic {
	padding-bottom: 30px; 
}

.pg-content-devices-img {
	background-image: url(/images/devices-bg.jpg);
	background-size: cover;
	background-position: center;
}

.default-uni-main-devices ul li:before {
	content: "\f111";
	font-family: FontAwesome;
	position: absolute;
	left: 4px; 
	top: 6px; 
	color: #bbb; 
	font-size: 20pt; 
}

.default-uni-main-devices ul li.therapic-sel-device:before {
	color: var(--var-main-color);
	font-size: 26pt; 
	top: 5px; 
	left: 0px; 
}

.default-uni-main-devices ul li {
	position: relative;
	margin: 30px 0 30px -20px; 
	padding: 5px 0 5px 50px; 
	line-height: 16pt; 
}

.default-uni-main-devices ul li.therapic-sel-device {
	color: var(--var-main-color);
	font-weight: bold;
}

.default-uni-main-devices ul {
	margin: 0 0 0 20px; 
	padding: 0;
	list-style: none;
	border-left: 5px solid #bbb; 
}

.default-uni-main-devices h1 {
	text-transform: uppercase;
	margin: 0; 
	padding: 30px 0 20px;
	font-size: 28pt; 
}

.default-uni-main-devices > div > div {
	padding: 50px 0 80px 50px; 
}

.default-uni-main-devices > div {
	max-width: 650px; 
}

.default-buy-safelaser h1 {
	text-transform: uppercase;
	margin: 0; 
	padding: 0 30px 0 0;
	font-size: 28pt; 
}

.default-buy-safelaser {
	margin: 50px auto; 
	border-spacing: 20px; 
}

.bg-white {
	background: #fff;
}

.cl-red {
	color: var(--var-main-color);
}

.default-products-content td {
	width: 50%; 
	vertical-align: top;
}

.default-products-content h1 {
	padding: 0;
	margin: 0;
	color: #444; 
	font-size: 28pt; 
}

.default-products-content {
	border-spacing: 20px; 
	width: 100%; 
}

.default-device-text-content-text > div {
	margin: -20px 0;
}

.default-device-text-content-text {
	margin: 0;
	padding: 0 0 0 20px; 
	border-left: 3px solid var(--var-main-color);
}

.default-device-text-content-link {
	padding: 40px 0 50px 23px;
}

.default-device-text-content {
	line-height: 22pt; 
	padding-right: 50px; 
}

.default-device-image-content {
	/*padding-left: 50px; */
}

.default-device-image-content img {
	display: block;
	margin: 25px 0;
}

.default-device-image-content img:nth-child(1) {
	width: 50%; 
}

.default-device-image-content img:nth-child(2) {
	width: 70%; 
}

.article-static-item .hrefLikeButton {
	white-space: nowrap;
	color: var(--var-main-color);
}

.pg-content-family-img section.pg-content {
	margin-bottom: 0;
}

.pg-content-family-img {
	background-image: url(/images/people-bg.jpg);
	background-size: cover;
	background-position: center;
}

.default-laset-family h1 {
	text-transform: uppercase;
	margin: 0; 
	padding: 80px 0 40px;
	color: #fff; 
	font-size: 28pt; 
}

.default-family-content-1 > div {
	margin: -20px 0;
}

.default-family-content-1 * {
	color: #fff;
}

.default-family-content-1 {
	margin: 30px 0;
	padding: 0 0 0 20px; 
	border-left: 3px solid var(--var-main-color);
	max-width: 800px; 
	color: #fff; 
	line-height: 18pt; 
}

.default-family-content-2 {
	margin: 50px 0 30px; 
	color: #fff; 
	max-width: 800px; 
	line-height: 18pt; 
}

.default-family-links {
	padding: 30px 0 50px; 
}

.default-gel-content td img {
	width: 70%; 
}

.default-gel-content td {
	width: 50%; 
	color: #fff; 
}

.default-gel-content {
	width: 100%; 
	border-spacing: 20px; 
}

.default-gel-content h1 {
	text-transform: uppercase;
	margin: 0; 
	padding: 20px 0 20px;
	color: #fff; 
	font-size: 28pt; 
}

.pg-section-margin-0 section.pg-content {
	margin-bottom: 0;
}

.pg-content-resellers h1 {
	margin: 0;
	padding: 20px 0;
	text-transform: uppercase;
	font-size: 28pt; 
}

.pg-content-resellers {
}

.pg-content-resellers-container img {
	margin: 0 3px 0;
	object-fit: contain;
	width: 200px; 
	height: 160px; 
}

.pg-content-resellers-container {
	margin: 20px 0;
	padding: 0;
	text-align: center;
}

.pg-content-resellers-more {
	padding: 20px 0 40px; 
	text-align: right;
}

.resellers-container p {
	margin: 5px 0;
}

.resellers-container {
	columns: 2;
	column-gap: 20px; 
}

.reseller-item {
	-webkit-column-break-inside: avoid;
	column-break-inside: avoid;
	background: rgba(255, 255, 255, 0.8); 
	padding: 10px 20px; 
	border-radius: 0px; 
}

header > div > table > tbody > tr > td > ul > li[rel="ul-li-blog"] ul, 
header > div > table > tbody > tr > td > ul > li[rel="ul-li-webinar"] ul {
	display: none !important;
}

.article-list-item-limited {
	padding: 0 20px; 
	max-height: 200px; 
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.admin-link-container > div svg {
	width: 20px; 
	height: 20px; 
	display: block;
}

.admin-link-container table td a {
	display: inline-block;
	margin: 0 0 0 5px; 
	text-decoration: none;
	color: #777;
}

.admin-link-container table td {
	padding: 0;
	position: relative;
	width: initial;
	line-height: initial;
}

.admin-link-container table {
	border-spacing: 20px 10px; 
}

.admin-link-container-inline > div {
	background: #fff; 
	border-radius: 0px; 
	border: 2px solid #ccc;
	margin: 5px; 
	position: relative;
}

.admin-link-container-inline-block > div {
	background: #fff; 
	border-radius: 0px; 
	border: 2px solid #ccc;
	margin: 5px 5px 1px; 
	position: relative;
	display: inline-block;
}

.admin-link-container-inline-down > div {
	position: absolute;
	top: 0;
	background: #fff; 
	border-radius: 0 0 0px 0px; 
	border: 2px solid #ccc; 
	border-top: 0;
}

.admin-link-container-inline {
	/*margin-bottom: 20px;*/
}

.admin-link-container {
	position: relative;
}

.btn-cookie-limited, 
.btn-cookie-refuse {
	font-weight: normal !important;
	font-size: 10pt !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.pg-item-separator svg {
	display: block;
	margin: 0 auto; 
	width: 500px; 
	max-width: 60%; 
	opacity: 0.4;
}

.pg-item-separator {
	margin: 20px 0;
}

.footer-map div {
	margin: 0 -1000px; 
}

.footer-map img {
	display: block;
	margin: 0 auto; 
}

.footer-map {
	overflow: hidden;
	background: #cff6da;
	text-align: center;
}

.biggest-p {
	font-size: 16pt; 
	text-align: center;
	font-weight: bold;
}

.btn-container {
	text-align: center;
}

.program-list li label {
	float: right;
}

.program-list li:before {
	display: none !important;
}

.program-list li {
	padding: 0 0 2px; 
	margin: 5px 0; 
	border-bottom: 1px solid #555; 
}

.program-list {
	list-style: none;
	margin: 0;
	padding: 0 !important;
	text-align: left;
}

.map-content img {
	display: block;
	width: 100%; 
}

.map-content {
	display: block;
}

.price-items table tr td {
	padding: 20px !important; 
}

.price-items table tr td:nth-child(2) {
	text-align: left;
}

.price-items table tr td:nth-child(1) {
	color: #222; 
	background: var(--var-main-color);
}

.default-uni-bottoms table, 
.price-items table {
	margin: 0;
	width: 100%; 
}

.price-items {
	background: #111; 
}

.default-uni-bottoms, 
.def-price {
	font-size: 40pt; 
	font-weight: 900;
}

.default-uni-bottoms label {
	display: block;
	margin: -20px auto 0;
	background: var(--var-main-color); 
	width: 80%; 
	position: relative;
	z-index: 1; 
	padding: 5px; 
	color: #222; 
	font-size: 18pt; 
	text-align: center;
}

.default-uni-bottoms img {
	display: block;
	width: 100%; 
}

a.hrefLikeButton.btn-biggest {
	font-size: 20pt; 
	padding: 10px 30px; 
}

.top-pr-text label {
	display: inline-block;
	border-bottom: 3px solid #444; 
	padding: 5px 0;
	margin-bottom: -10px; 
}

.top-pr-text {
	max-width: 1200px; 
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -10px; 
}

.flag-icon-css {
	height: 14px;
}

.img-map-background img {
	display: block;
	max-width: 1200px; 
	width: 100%; 
	margin: 0 auto; 
}

.img-map-background {
	position: relative;
	background: #c49a6c; 
}

@media screen and (max-width: 1580px) {
	
	div.main-breadcrumb ol {
		padding: 0 15px; 
	}

	div.page-main-title h1 {
		max-width: 1100px; 
	}

	.pg-content-articles > div a {
		width: calc(33.33% - 20px);
	}

}

@media screen and (max-width: 1280px) {

	.top-distance {
		height: 102px; 
	}

	header > div > table > tbody > tr > td > ul.menu-custom {
		margin: -35px 0 -10px;
	}

	.pg-content-articles > div a {
		width: calc(50% - 20px);
	}

	.pg-faq-container {
		border-radius: 0;
		border-left: 0;
		border-right: 0;
	}

}

@media screen and (max-width: 610px) {

	h1 {
		font-size: 32pt; 
	}
	
	h1.mobile-smallest {
		font-size: 28pt; 
	}

	header svg.desktop {
		display: none;
	}

	header svg.mobile {
		display: inline-block;
		height: 60px; 
		margin: 0 0 -5px;
	}

	header svg {
		height: 50px;
	}

	header > div {
		padding: 10px 10px;
	}

	html, 
	body {
		overflow: hidden;
		overflow-y: auto;
		/*min-height: 100vh;*/
	}

	header > div > label {
		position: absolute;
		top: 20px; 
		right: 20px; 
	}
	
	#nav-icon {
		display: block;
	}

	.slideshow {
		min-height: calc(100vh - 77px - 60px);
	}

	.top-distance {
		height: 62px; 
	}

	header > div > table > tbody > tr > td > ul > li > a {
		height: initial;
	}

	header > div > table > tbody > tr > td > ul > li {
		display: block;
		margin: 0 20px;
		border-bottom: 0;
		/*border-left: 2px solid #000;*/
	}

	header > div > table > tbody > tr > td > ul > li.is-active {
		border-bottom: 0;
		border-left: 2px solid #fff;
	}

	header > div > table > tbody > tr > td > ul:not(.menu-custom) {
		display: none;
	}

	header > div > table > tbody > tr > td > ul.menu-custom li {
		display: inline-block;
		margin: 0;
	}
	
	header > div > table > tbody > tr > td > ul.menu-custom li ul li {
		display: block;
		margin: 0;
	}

	header > div > table > tbody > tr > td > ul.menu-custom {
		/*position: absolute;*/
		/*top: 23px;*/
		right: 65px; 
		margin: -25px 0;
	}

	html.to-menu-opened header > div > table > tbody > tr > td > ul:not(.menu-custom) {
		display: block;
		position: fixed;
		top: 102px;
		left: 0;
		width: 100%; 
		height: calc(100vh - 80px - 10px - 30px - 20px); 
		/*height: 100%; */
		background: rgba(0, 0, 0, 0.9);
		/*background: rgba(255, 255, 255, 0.9);*/
		/*background: rgba(0, 0, 0, 0.9);*/
		padding-top: 10px; 
		padding-bottom: 30px; 
		overflow: hidden;
		overflow-y: scroll;
	}

	#mainWindow {
		max-width: calc(100vw - 20px);
	}

	section.pg-slider-top {
		margin-top: 10px; 
		height: 100px; 
	}

	section.pg-content {
		margin: 15px auto 15px; 
		padding: 0 15px;
	}

	section.pg-content-small {
		max-width: calc(100vw - 20px);
	}

	.menu-custom > li > ul {
		right: -70px; 
		max-width: calc(100vw - 20px);
	}

	#header-menu-container {
		width: 200px;
		white-space: nowrap;
	}

	header > div > table > tbody > tr > td > ul > li > ul {
		position: relative;
		display: block;
		top: initial;
		max-height: initial;
		opacity: 1;
		padding-left: 10px; 
	}

	header > div > table > tbody > tr > td > ul > li:hover > ul {
		top: initial;
		box-shadow: initial;
		opacity: initial;
		max-height: initial;
	}

	.main-cookies.main-cookies-opened {
		bottom: 0;
		left: 0;
		width: 100%; 
		border-radius: 0px 0px 0 0;
	}

	.cookie-content {
		max-width: initial;
	}

	footer > div > table td > div {
		margin: 0;
	}

	footer > div > table td {
		width: calc(100% - 90px);
		display: block;
		border-left: 0;
		border-right: 0 !important;
		/*border-top: 5px solid rgba(255, 255, 255, 0.5);*/
		padding-top: 15px;
		padding-bottom: 30px;
	}

	.footer-links li a {
		margin: 15px 0;
	}

	div.main-breadcrumb ol li {
		/*display: block;*/
	}

	.article-static-item div.article-more-side {
		float: none;
		width: initial; 
		padding: 10px 0;
	}

	.article-static-item div.article-content-side {
		float: none;
		width: initial;
		padding: 10px 0;
	}

	.default-uni-main td > div {
		margin: 10px 0 15px;
	}

	.default-uni-main > table > tbody > tr > td {
		width: 100%; 
		display: block;
		/*min-height: 300px; */
	}

	.price-items table tr td {
		width: calc(100% - 40px) !important;
	}

	.default-uni-bottoms label {
		margin-bottom: 20px; 
		font-size: 14pt; 
	}

	.default-uni-main > table {
		border-spacing: 10px 15px; 
		width: calc(100% - 0px);
		margin: 0;
	}

	.pg-content-therapic-img {
		background: #7b3636;
	}

	.default-uni-main {
		margin: -10px -10px 0px;
	}

	.default-uni-main-sic h1 {
		padding: 10px 0 30px; 
		text-align: center;
	}

	.default-buy-safelaser h1 {
		padding: 0;
		text-align: center;
	}

	.default-uni-main-sic table td {
		width: 100%; 
		display: block;
	}

	.default-uni-main-sic table td:nth-child(2) ul, 
	.default-uni-main-sic table td ul {
		padding: 0;
		margin: 0;
		list-style: none;
		width: 100%;
	}

	.default-uni-main-sic table td:nth-child(1) ul li, 
	.default-uni-main-sic table td:nth-child(2) ul li {
		border-left: 0;
		border-right: 0;
		text-align: center;
	}

	.default-uni-main-sic table td ul li {
		margin: 40px 0;
		padding: 0 20px;
		display: block;
		position: relative;
	}

	.default-uni-main-sic > div {
		text-align: center;
	}

	.default-buy-safelaser td {
		display: block;
		width: 100%; 
	}

	button, 
	a.hrefLikeButton, 
	input[type=submit], 
	input[type=button] {
		font-size: 11pt;
		padding: 8px 20px;
		/*font-weight: normal;*/
	}

	.default-products-content td {
		display: block;
		width: 100%; 
	}

	.default-products-content {
		border-spacing: 0 20px; 
	}

	.default-device-text-content-link .hrefLikeButton {
		padding: 2px 14px 4px;
		margin: 0 -150px 0 0;
	}

	.default-device-text-content-link {
		padding: 40px 0 50px;
	}

	.default-device-image-content img {
		margin: 25px auto; 
	}

	.default-laset-family h1 {
		padding-top: 10px; 
	}

	.default-family-links .hrefLikeButton {
		margin-bottom: 15px; 
	}

	.default-gel-content td {
		display: block;
		width: 100%; 
	}

	.default-gel-content {
		border-spacing: 0 15px; 
	}

	.pg-section-margin-0 section.pg-content {
		margin-top: 0;
	}

	.hide-from-mobile {
		display: none !important;
	}

	.pg-item-separator {
		margin: 20px 0 40px;
	}

	.pg-faq-container {
		margin-top: 0 !important;
		margin-bottom: 0px !important;
	}

	.biggest-p {
		font-size: 14pt;
	}

	.default-uni-bottoms > table {
		border-spacing: 10px; 
	}

	header > div > table > tbody > tr > td > ul > li.lang-dropdown > span {
		display: none;
	}

}