@charset "utf-8";



@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap&subset=latin-ext');



* {
	box-sizing: border-box;
}

body {
	margin: 0px;
	color: black;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	font-weight: 300;
}

h1, h2, h3, h4 {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}

h1 {
	color: #1a161a;
	font-size: 48px;
	text-transform: uppercase;
}
table h1 {
	font-size: 38px;
}

h2 {
	padding: 90px 15px 20px 15px;
	background-color: #f6b637;
	color: white;
	font-size: 60px;
	text-transform: uppercase;
}

h3 {
	color: #f6b637;
	font-size: 20px;
	text-transform: uppercase;
}
h3 span {
	color: black;
}

h4 {
	margin-bottom: 30px;
	font-size: 18px;
}

p {
    margin: 0;
}

a {
	color: black;
}

img {
	border-style: none;
    font-size: 9px;
}

button, input, optgroup, select, textarea {
	margin: 0;
}

textarea {
	overflow: auto;
	padding: 12px 32px;
	border: 1px solid #707070;
	width: 100%;
	height: 86px;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 300;
	
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
}

input[type="text"] {
	padding-right: 32px;
	padding-left: 32px;
	border: 1px solid #707070;
	width: 100%;
	height: 50px;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
}

select {
  	margin: 0px;
	padding-left: 32px;
	padding-right: 36px;
  	width: 100%;
	height: 50px;
  	border: 1px solid #707070;
  	background-image: url('/images/icon_select.png');
  	background-position: right 20px center;
  	background-repeat: no-repeat;
	font-size: 16px;
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
	
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
}

button {
	padding: 0;
	border: 0;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	cursor: pointer;
}
button[type="submit"] {
	padding-left: 45px;
	padding-right: 45px;
	background-color: #fdb813;
	color: black;
	line-height: 37px;
	
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

table {
	border-collapse: collapse;
}
table:not(.not-responsive) {
	width: 100%;
}

table img {
	max-width: 100%;
	height: auto;
}

td {
	vertical-align: top;
}

hr {
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 0;
	margin-right: 0;
	border-style: none;
	border-width: 0;
	width: 250px;
	height: 1px;
	background-color: #a1a1a1;
}


.container {
}

.container-half {
	width: 50%;
}

.content {
	margin: 0 auto;
	width: 100%;
	max-width: 1170px;
}

.container-half.left {
}

.container-half.right {
}

.container-half .content {
	margin-left: 0;
	margin-right: 0;
	max-width: 585px;
}

.tablet-show {
	display: none;
}

.mobile-show {
	display: none;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.center {
	text-align: center;
}

.block {
	display: inline-block;
}

.column,
.column-mobile {
	float: left;
}

.left,
.left-mobile {
	float: left;
}

.right,
.right-mobile {
	float: right;
}

.clear {
	clear: both;
}

.table {
	display: table;
}

.table-cell {
	display: table-cell;
}

.align-items-center {
	display: -webkit-flex;
	display: -ms-flex;
	display: -moz-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.justify-content-center {
	display: -webkit-flex;
	display: -ms-flex;
	display: -moz-flex;
	display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}

.justify-content-space-between {
	display: -webkit-flex;
	display: -ms-flex;
	display: -moz-flex;
	display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}

.align-justify-center,
.align-justify-center-mobile {
	display: -webkit-flex;
	display: -ms-flex;
	display: -moz-flex;
	display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.align-center-justify-content-space-between {
	display: -webkit-flex;
	display: -ms-flex;
	display: -moz-flex;
	display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
	-webkit-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.transition {	
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.round-corner {
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
}

.circle {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.shadow {
	-webkit-box-shadow: 0px 4px 29px #3f3d3d, 0px -4px 29px #3f3d3d;
  	-moz-box-shadow: 0px 4px 29px #3f3d3d, 0px -4px 29px #3f3d3d;
  	box-shadow: 0px 4px 29px #3f3d3d, 0px -4px 29px #3f3d3d;
}

.drop-shadow {
	-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	-moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.error {
	color: red;
	font-size: 14px; 
}

.ok {
	
}

.title {
	overflow: hidden;
	position: relative;
}
.title span {
	position: absolute;
	bottom: 0px;
	margin-left: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #a1a1a1;
	width: 100%;
	font-weight: 500;
}

.more {
	display: inline-block;
	padding-left: 45px;
	padding-right: 45px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
	background-color: #352e2a;
	color: white;
	font-size: 16px;
	line-height: 48px;
	text-decoration: none;
}

.list {
    padding-left: 20px;
    list-style-image: url('/images/list_style_square.jpg');
}

.list > li ul {
	margin-left: 40px;
    padding-left: 0;
	list-style-image: none;
}

.box-iframe {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.box-iframe iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.checkbox {
	display: block;
	position: relative;
	padding-top: 0px;
	padding-left: 40px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.checkbox .checkmark {
	position: absolute;
	top: 1px;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: white;
}
.checkbox input:checked ~ .checkmark {
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkbox input:checked ~ .checkmark:after {
	display: block;
}
.checkbox .checkmark:after {
	left: 7px;
	top: 3px;
	width: 7px;
	height: 12px;
	border: solid #3d3d3d;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.radio {
    display: block;
    position: relative;
    padding-left: 50px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio .checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
	border: 1px solid #b7b7b7;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
    border-radius: 50%;
    height: 20px;
    width: 20px;
	background-color: #f9f9f9;
}
.radio input:checked ~ .checkmark {
    background-color: #f9f9f9;
}
.radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.radio input:checked ~ .checkmark:after {
    display: block;
}
.radio .checkmark:after {
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #4ab68a;
}

.pagination {
	text-align: center;
}

.pagination a {
	text-decoration: none;
}
.pagination .pages a {
	margin-left: 3px;
	padding-left: 2px;
	padding-right: 2px;
}
.pagination a:first-child {
	margin-left: 0;
}
.pagination a.bw {
	margin-left: 3px;
	margin-right: 3px;
	padding-left: 2px;
	padding-right: 2px;
}
.pagination a.fw {
	margin-left: 3px;
	margin-right: 3px;
	padding-left: 2px;
	padding-right: 2px;
}

.pagination strong {
	margin-left: 3px;
	margin-right: 3px;
	padding-left: 2px;
	padding-right: 2px;
	color: #fbb040;
	font-family: 'Ubuntu Bold', sans-serif;
}
.pagination strong:first-child {
	margin-left: 0;
}

.languages {
}
.languages > li {
	position: relative;
	padding-left: 14px;
	padding-right: 14px;
}
.languages ul {
	position: absolute;
	right: 0px;
	display: none;
	border: 1px solid #f6b637;
	background-color: white;
}
.languages ul li {
	padding-left: 14px;
	padding-right: 14px;
	border-top: 1px solid rgba(246, 182, 55, .3);
}
.languages ul li:first-child {
	border-top: 0;
}
.languages ul li.active {
	background-color: #f6f6f6;
}
.languages a {
	display: block;
	color: #1a161a;
	text-decoration: none;
}
.languages .active {
	cursor: pointer;
}

.royalSlider {
	margin: auto;
    width: 100%;
	background-color: transparent !important;
}
.rsOverflow {
	background-color: transparent !important;
}
.rsSlide  {
	background-color: transparent !important;
}
.rsGCaption {
	height: 100%;
}
.rsGCaption .content {
	height: 100%;
}
/*
.rsMinW .rsBullet {
	margin-left: 8px !important;
	width: 15px !important;
	height: 15px !important;
	background-color: #4ab68a;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.rsMinW .rsBullet.rsNavSelected {
	background-color: #ee1e7b;
}
.rsMinW .rsBullet span {
	width: 15px !important;
	height: 15px !important;
}
*/
.rsMinW .rsArrow {
    width: 36px !important;
    height: 64px !important;
}
.rsMinW .rsArrowLeft {
    left: 2% !important;
}
.rsMinW .rsArrowRight {
    right: 2% !important;
}
.rsMinW .rsArrowIcn {
    width: 36px !important;
    height: 64px !important;
	background-position: 0px 0px !important;
	background-repeat: no-repeat !important;
}
.rsMinW.rsHor .rsArrowRight .rsArrowIcn {
	background-image: url('/images/icon_next.png');
}
.rsMinW.rsHor .rsArrowLeft .rsArrowIcn {
	background-image: url('/images/icon_previous.png');
}

.popup {
	display: none;
	z-index: 200;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(73, 73, 73, .6);
}
.popup .container {
	height: 100%;
}
.popup .content {
	position: static;
	margin: 0;
	padding: 0 !important;
	width: auto;
	max-width: none;
	border: 2px solid #c2c2c2;
	background-color: white;
}

.product .photo {
	padding-top: 101px;
	width: 35%;
	text-align: center;
}
.product .photo .frame {
	position: relative;
	height: 400px;
}
.product .photo .frame > a {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain
}
.product .photo .frame > a.active {
	display: block;
}
.product .photo .row {
	margin-top: 20px;
}
.product .photo .column-mobile {
	margin-left: 2%;
	border: 1px solid #dbdbdb;
	width: 49%;
	height: 100px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}
.product .photo .column-mobile:first-child {
	margin-left: 0;
}
.product .photo .column-mobile:nth-child(n+3) {
	margin-top: 10px;
}
.product .photo .column-mobile:nth-child(2n+3) {
	margin-left: 0;
	clear: both;
}
.product .photo .column-mobile.active {
	border: 1px solid #999999;
}
.product .description {
	width: 60%;
}
.product:first-child .photo {
	padding-top: 50px;
}
.product:first-child .description {
	padding-top: 50px;
}
.product h4 {
	margin-bottom: 25px;
	color: black;
	font-size: 20px;
}
.product .description span {
	font-weight: 500;
}
.product .documents {
	margin-top: 35px;
}
.product .documents li {
	margin-left: 5px;
}
.product .documents li:first-child {
	margin-left: 0;
}
.product .more {
	background-color: #b7b7b7;
	font-size: 14px;
	font-weight: 500;
	line-height: 40px;
	text-transform: uppercase;
}

font-color-orange {
	color: #f6b637;
}

.text-regular {
	font-weight: 400;
}

.text-medium {
	font-weight: 500;
}

.text-semibold {
	font-weight: 600;
}

.text-bold {
	font-weight: 700;
}


.table-content-basic {
	table-layout: fixed !important;
}

.table-content-advanced {
	table-layout: fixed !important;
}



#all {
}


#toggle-menu {
	z-index: 100;
	display: none;
	position: fixed;
	top: 25px;
	right: 2%;
	padding: 0;
	width: 25px;
	height: 23px;
	background-color: transparent;
	background-image: url('/images/toggle_menu.png');
	background-repeat: no-repeat;
}
#toggle-menu.active {
	background-position: -25px 0px;
}


#header .content {
	padding-top: 58px;
	padding-bottom: 17px;
}


#logo a {
	font-size: 0px;
}

#logo img {
	margin-left: 2px;
}


#languages {
	z-index: 2;
	position: relative;
	margin-top: 20px;
}


#menu {
	margin-top: 20px;
	margin-right: 95px;
}


#footer {
	background-color: #3b3b3b;
}

#footer .content {
	padding-top: 50px;
	padding-bottom: 80px;
	color: white;
	font-size: 14px;
}

#footer .column-mobile {
	position: relative;
	padding-bottom: 120px;
	min-height: 340px;
}

#footer h4 {
	font-weight: 400;
}

#footer a {
	color: white;
	text-decoration: none;
}


#footer-contact {
	padding-left: 9%;
	width: 41%;
}

#footer-contact img {
	position: absolute;
	bottom: 0px;
}


#footer-categories {
	padding-left: 1%;
	width: 32%;
}

#footer-categories ul:last-child {
	position: absolute;
	bottom: 0px;
}

#footer-categories ul:last-child::after {
    content: "";
    clear: both;
    display: table;
}

#footer-categories ul:last-child li {
	float: left;
	margin-left: 4px;
}
#footer-categories ul:last-child li:first-child {
	margin-left: 0;
}


#footer-patrtners {
	padding-left: 1%;
	width: 27%;
}

#footer-patrtners img {
	position: absolute;
	bottom: 0px;
}


#author {
	background-color: #3b3b3b;
}

#author .content {
	color: white;
	font-size: 12px;
	line-height: 28px;
	text-align: right;
}

#author a {
	color: white;
	text-decoration: none;
}


#popup .container {
	height: 100%;
}

#popup .content {
	position: relative;
	padding: 12px 30px;
	border: 2px solid #fbb040;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	max-width: 600px;
	background-color: white;
}

#popup td img {
	max-width: 100%;
	height: auto;
}

#close-popup {
	position: absolute;
	top: 9px;
	right: 9px;
	width: 29px;
	height: 29px;
	background-color: black;
	color: white;
	font-size: 16px;
	text-align: center;
}