/*
file:	Cascading Style Sheet
year:	2022
author:	CREW 803
email:	info@crew803.com
site:	www.crew803.com
*/

@charset "utf-8";

/* General HTML Styles */

:root {
	--white: #ffffff;
	--black: #000000;
	--darkblue: #2e3138;
	--yellow: #aa9168;
	--gray-text: #afafaf;
}

* {
	box-sizing: border-box;
}

i, i:before {
	transition: all .2s linear;
}

.material-icons {
	transition: all .2s linear;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	margin: 0;
	padding: 0;
	background-size: cover;
	background-attachment: fixed;
}

div, span, p, em, a, strong, time, tr, th, td, dt, dd, label, input, select, button, textarea, option, iframe, ul, li, font, h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", Arial, Tahoma, Calibri, Verdana, sans-serif;
	font-size: 18px;
	color: rgba(0,0,0,0.85);
	font-weight: 500;
	text-decoration: none;
}
h1	{
	color: #464646;
	font-size: 24px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h2	{
	color: #464646;
	font-size: 22px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h3	{
	color: #464646;
	font-size: 20px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h4	{
	color: #464646;
	font-size: 19px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h5	{
	color: #464646;
	font-size: 18px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h6	{
	color: #464646;
	font-size: 17px;
	font-weight: normal;
	display: block;
	padding: 0;
}
p {
	margin: 0;
	padding: 0 0 20px;
}
em {
	font-size: 20px;
	color: rgba(0,0,0,0.95);
	margin: 0;
	font-weight: 600;
	padding: 0 0 20px;
	font-style: normal;
	display: block;
}
strong {
	font-weight: bold;
}
a {
	font-size: 18px;
	color: var(--yellow);
	font-weight: 700;
	text-decoration: none;
	transition: all .3s linear;
}
a:hover {
	font-size: 18px;
	color: var(--black);
	text-decoration: none;
}

fieldset {
	width: auto;
	border: 0;
}
legend {
	color: #494949;
	font-size: 16px;
	font-weight: normal;
	padding: 0 5px;
}
input {
	background-color: #f2f2f2;
	border: 1px solid #c2c2c2;
	font-size: 13px !important;
	margin: 3px 0;
	padding: 5px;
	outline: none !important;
}
input:hover {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
input:focus {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
select {
	font-size: 13px !important;
	background-color: #f2f2f2;
	border: 1px solid #c2c2c2;
	padding: 3px 3px;
	outline: none !important;
}
select:hover {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
select:focus {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
option {
	font-size: 13px !important;
	background-color: transparent !important;
	padding: 0 5px;
	outline: none !important;
}
textarea {
	font-size: 13px !important;
	background-color: #f2f2f2;
	border: 1px solid #c2c2c2;
	padding: 5px;
	height: 150px;
	margin: 3px 0;
	outline: none !important;
}
textarea:hover {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
textarea:focus {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}

/*wrapper*/

.wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.wrapper a, img {
	outline: none !important;
}

.wrapper a:hover, a:visited, a:active,
.wrapper input, .wrapper input:hover, .wrapper input:focus, .wrapper input:active, .wrapper input:visited {
	outline: none !important;
}

:focus {
	outline: none;
}
::-moz-focus-inner {
	border:0;
}

::-moz-selection {
	background: var(--yellow);
}
::selection {
	background: var(--yellow);
}

/*to top jQuery*/

#toTop {
	background: url("../img/ui.totop.png") no-repeat left top;
	z-index: 999999;
}

#toTopHover {
	background: url("../img/ui.totop.png") no-repeat left -40px;
}

/*header*/

header {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
	background: var(--white);
	left: 0;
	top: 0;
	z-index: 6500;
}

/*header top cnt*/
header .white_bg,
header .yellow_bg {
	width: 100%;
	background-color: var(--white);
}
header .yellow_bg{
	background-color: var(--yellow);
}

.header_top_cnt {
	width: 1200px;
	margin: 0 auto 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_top_cnt a.logo{
	font-size: 40px;
	color: var(--yellow);
}
/*logo*/

.logo {
	width: auto;
	float: left;
	margin: 0 40px 0 0;
}

.logo img {
	max-height: 76px;
	display: flex;
}

/*main navigation*/

.slicknav_menu {
	display: none;
}

header nav {
	width: auto;
	float: left;
	margin: 0px 0 0;
	padding: 20px 0;
}

header nav ul {
	list-style: none;
}

header nav ul li {
	float: left;
	margin: 0 30px 0 0;
}

header nav ul li:last-of-type {
	margin-right: 0;
}

header nav ul li a {
	font-size: 18px;
	color: var(--white);
	font-weight: 500;
}

header nav ul li a:hover,
header nav ul li a.active {
	font-size: 18px;
	color: var(--white);
	text-decoration: underline;
}

/*login cart right cnt*/

.login_cart_right_cnt {
	width: auto;
	float: right;
	margin: 7px 0;
}

/*login content*/

.login_content {
	width: auto;
	float: left;
	margin: 0 40px 0 0;
}

.login_content span.material-icons {
	font-size: 32px;
	color: var(--black);
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
}

.login {
	margin: 0 15px 0 0;
}

.login, .register {
	font-size: 14px;
	color: var(--black);
	font-weight: 600;
	display: inline-block;
	vertical-align: middle;
}

.login:hover, .register:hover {
	font-size: 14px;
	color: var(--yellow);
}

/*user account*/

.login_content nav {
	width: auto;
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	float: none;
}

.login_content nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.login_content nav ul li {
	float: none;
	display: block;
	margin: 0;
	position: relative;
}

.login_content nav ul li a {
	font-size: 14px;
	color: var(--black);
	font-weight: 600;
	margin: 0;
	padding: 7px 0;
	display: block;
}

.login_content nav ul li a:hover {
	font-size: 14px;
	color: var(--yellow);
	text-decoration: none;
}

.login_content nav ul li ul {
	position: absolute;
	z-index: 99999;
	left: -15px;
	top: 31px;
	background: var(--darkgrey);
	border-radius: 3px;
	opacity: 0;
	display: none;
	width: 200px;
	transition: all .3s linear;
}

.login_content nav ul li:hover ul {
	opacity: 1;
	display: block;
}

.login_content nav ul li ul li {
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.login_content nav ul li ul li:last-of-type {
	border: none;
}

.login_content nav ul li ul li a {
	font-size: 13px;
	color: var(--white);
	font-weight: 500;
	text-transform: none;
	margin: 0;
	padding: 10px 15px 11px;
}

.login_content nav ul li ul li a:hover,
.login_content nav ul li ul li a.active {
	font-size: 13px;
	color: var(--white);
	background: var(--yellow);
}

.login_content nav ul li ul li:first-of-type a {
	border-radius: 3px 3px 0 0;
}

.login_content nav ul li ul li:last-of-type a {
	border-radius: 0 0 3px 3px;
}

.login_content nav ul li ul li:last-of-type a {
	color: var(--black);
	background-color: var(--gold);
	text-transform: uppercase;
}

.login_content nav ul li ul li a span.material-icons {
	font-size: 20px;
	color: var(--black);
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	display: inherit;
}

/*basket content*/

.basket_content {
	width: auto;
	float: right;
	margin: 0;
}

#go_cart {
	display: flex;
	position: relative;
	align-items: center;
	gap: 10px;
}

#go_cart i.fa-cart-shopping {
	font-size: 30px;
	color: var(--black);
}
#go_cart:hover > i.fa-cart-shopping {
	color: var(--yellow);
}
.items_in_cart {
	font-size: 14px;
	color: var(--white);
	font-weight: 700;
	width: 24px;
	height: 24px;
	display: table-cell;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	background: var(--yellow);
	border-radius: 500em;
	-webkit-border-radius: 500em;
	position: absolute;
	right: -18px;
	top: -18px;
	line-height: 24px;
}

/*header bottom cnt*/


.header_bottom_cnt {
	width: 1200px;
	margin: 0 auto;
	display: table;
	background: var(--yellow);
}

/*header phone cnt*/

.header_phone_cnt {
	width: auto;
	float: left;
	margin: 0 30px 0 0;
	padding: 8px 0;
}

.header_phone_cnt a,
.header_phone_cnt i {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
}

.header_phone_cnt i {
	font-size: 22px;
	color: var(--yellow);
}

.header_phone_cnt a {
	font-size: 22px;
	color: var(--darkgrey);
	font-weight: 500;
}

.header_phone_cnt a:last-of-type {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}
.header_phone_cnt a:hover{
	color: var(--yellow);
	cursor: pointer;
}
/*header social*/

.header_social {
	width: auto;
	float: left;
	margin: 6px 0;
}

.header_social ul {
	list-style: none;
}

.header_social ul li {
	float: left;
	margin: 0 10px 0 0;
}

.header_social ul li:last-of-type {
	margin: 0;
}

.header_social ul li a {
	display: flex;
}

.header_social ul li img {
	height: 32px;
}

/*search content*/

.search_content {
	width: 600px;
	float: right;
	margin: 0;
}

.search_content form {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

.search_content input[type="search"] {
	font-size: 14px !important;
	color: #000;
	font-weight: 500;
	background: url("../img/search-icon.png") no-repeat center left #fff;
	border: none;
	border-radius: 3px;
	margin: 0;
	padding: 13px 20px 14px 50px;
	width: 100%;
	max-width: 100%;
	transition: all .3s linear;
}

.search_content input[type="search"]:hover {
	background-color: #fff;
}

.search_content input[type="search"]:focus {
	background-color: #fff;
}

.search_content input::-webkit-input-placeholder {
	color: #000;
	transition: all .3s linear;
}
.search_content input:-moz-placeholder {
	color: #000;
	opacity: 1;
	transition: all .3s linear;
}
.search_content input::-moz-placeholder {
	color: #000;
	opacity: 1;
	transition: all .3s linear;
}
.search_content input:-ms-input-placeholder {
	color: #000;
	transition: all .3s linear;
}
.search_content input:focus::-webkit-input-placeholder {
	color: transparent;
	transition: all .3s linear;
}
.search_content input:focus:-moz-placeholder {
	color: transparent;
	transition: all .3s linear;
}
.search_content input:focus::-moz-placeholder {
	color: transparent;
	transition: all .3s linear;
}
.search_content input:focus:-ms-input-placeholder {
	color: transparent;
	transition: all .3s linear;
}

.search_icon {
	font-size: 14px !important;
	color: var(--black);
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	padding: 22px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	transition: all .3s linear;
	outline: none;
}

.search_icon:hover,
.search_icon:focus,
.search_icon:active {
	font-size: 14px !important;
	color: var(--yellow);
}

/*slider content*/

.slider_content {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.bx-wrapper {
	margin: 0 auto !important;
}

.bx-wrapper .bx-pager {
	padding: 0;
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	width: 480px;
	bottom: 30px;
	height: auto;
	margin: 0;
	padding: 20px 0 15px;
	left: 5.5%;
	background: rgba(179,0,0,0.10);
}

.bx-wrapper .bx-viewport {
	border: none;
	background: none;
	left: 0;
	box-shadow: none;
}

.bxslider {
	list-style: none;
	padding: 0;
	margin: 0;
	display: table;
}

.bx-wrapper img {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: var(--yellow);
	border-color: var(--yellow);
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: transparent;
	border: 1px solid rgba(0,0,0,0.60);
	border-radius: 500em;
	margin: 0 7.5px;
	width: 15px;
	height: 15px;
}

.bx-controls-direction {
	width: 480px;
	height: 55px;
	position: absolute;
	bottom: 30px;
	left: 5.5%;
}

.bx-wrapper .bx-controls-direction a {
	z-index: 99;
	margin-top: 0 !important;
	top: 50%;
	transform: translateY(-50%);
}

.bx-wrapper .bx-prev {
	width: 48px !important;
	height: 48px !important;
	background: url("../img/controls_slider.png") no-repeat 0 0 !important;
	opacity: 1;
	left: 5px;
}

.bx-wrapper .bx-prev:hover {
	background: url("../img/controls_slider.png") no-repeat 0 -48px !important;
	opacity: 1;
}

.bx-wrapper .bx-next {
	width: 48px !important;
	height: 48px !important;
	background: url("../img/controls_slider.png") no-repeat -48px 0 !important;
	opacity: 1;
	right: 5px;
}

.bx-wrapper .bx-next:hover {
	background: url("../img/controls_slider.png") no-repeat -48px -48px !important;
	opacity: 1;
}

.bx-wrapper .bx-caption {
	width: 100%;
	left: 0;
	bottom: 0;
	background: #078b51;
	border-radius: 0;
}

.slider_content ul li aside {
	width: 480px;
	margin: 0;
	padding: 20px 20px 80px;
	display: table;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	left: 5.5%;
	bottom: 30px;
	z-index: 50;
}

.slider_content ul li aside h1 {
	margin: 0 0 10px;
	padding: 0;
}

.slider_content ul li aside h1, .slider_content ul li aside h1 a {
	font-size: 32px;
	color: var(--black);
	font-weight: 500;
}

.slider_content ul li aside h1 a:hover {
	font-size: 32px;
	color: var(--yellow);
}

.slider_content ul li aside span {
	font-size: 16px;
	color: var(--yellow);
	font-weight: 600;
	display: table;
	margin: 0 0 23px;
}

.slider_content ul li aside em {
	font-size: 16px;
	color: rgba(0,0,0,0.80);
	font-weight: 500;
	margin: 0;
	padding: 0;
	line-height: 21px;
	overflow: hidden;
	height: 44px;
}

/*main container*/

.main_container {
	width: 100%;
	margin:  0;
	padding: 0;
	display: table;
}

/*about us homepage*/
.about_us_homepage {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #eeeeee;
}
.about_us_homepage div{
	width: 1200px;
	margin: 0 auto;
	display: table;
}
.about_us_homepage h1{
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}
.about_us_homepage p{
	text-align: center;
}
.about_us_homepage .w_btn{
	margin: 0 auto;
	display: table;
	background-color: var(--yellow);
	padding: 10px 20px;
	color: var(--white);
}
.about_us_homepage .w_btn:hover{
	background-color: var(--darkblue);
	color: var(--white);
}
/*products featured cnt*/

.products_featured_cnt {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.products_featured_cnt section {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.products_featured_cnt h1 {
	font-size: 28px;
	color: var(--darkgrey);
	font-weight: 600;
	text-align: center;
	margin: 0 0 50px;
}

.products_featured_cnt article {
	width: 300px;
	float: left;
	margin: 0;
	padding: 0 0 60px;
	text-align: center;
}


.products_featured_cnt article figure {
	max-width: 300px;
	max-height: 300px;
	display: table;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid var(--yellow);
	float: none;
	margin: 0 auto;
	padding: 5px;
}

.products_featured_cnt article figure img {
	width: 250px;
	height: 350px;
	vertical-align: middle;
	text-align: center;
	box-sizing: border-box;
	object-fit: contain;
}

.products_featured_cnt article h1 {
	margin: 10px 0 5px;
	padding: 0 15px;
	text-align: center;
	line-height: 22px;
	overflow: hidden;
	height: 67px;
	box-sizing: border-box;
}

.products_featured_cnt article h1, .products_featured_cnt article h1 a {
	font-size: 18px;
	color: var(--black);
	font-weight: 600;
}

.products_featured_cnt article h1 a:hover {
	font-size: 18px;
	color: var(--yellow);
}

.products_featured_cnt article em {
	font-size: 14px;
	color: rgba(0,0,0,0.85);
	font-weight: 500;
	margin: 0 0 20px;
	padding: 0 15px;
	line-height: 18px;
	overflow: hidden;
	height: 110px;
	box-sizing: border-box;
}

.price_cnt {
	width: 300px;
	display: flex;
	/*margin: 20px 15px 0 0px;*/
	float: none;
	padding: 0 35px !important;
	height: 50px;
	align-items: start;
	justify-content: space-between;
	flex-direction: column;
	position: relative;
	box-sizing: border-box;
}

.price_cnt del {
	font-size: 14px;
	color: rgba(0,0,0,0.75);
	font-weight: 600;
	display: table;
	margin: 3px 10px 0 0;
	float: left;
}

.price_cnt strong {
	font-size: 20px;
	color: var(--yellow);
	font-weight: 600;
	display: table;
	float: left;
}

.price_cnt .sale {
	font-size: 14px;
	color: var(--black);
	font-weight: 600;
	text-align: center;
	background: var(--yellow);
	border-radius: 500em;
	display: table-cell;
	vertical-align: middle;
	width: 48px;
	height: 48px;
	line-height: 48px;
	margin-left: auto;
	position: absolute;
	top: 0;
	left: 40%;
}

.eu_price {
	padding: 8px 0 0;
	border: none;
}

.eu_price del {
	display: inherit;
	float: left;
	margin: 3px 10px 0 0;
}

.eu_price strong {
	display: inherit;
}

.eu_price strong:first-child {
	float: left;
}

.cart_cnt {
	width: 100%;
	display: flex;
	gap: 5px;
	padding: 13px 15px 0;
}

.cart_cnt form,
.cart_cnt .details_btn_icon {
	float: left;
}
.quick_view_btn{
	background: var(--yellow);
	color: var(--white);
	font-size: 12px;
	display: flex;
	align-items: center;
	padding: 10px 20px;
}
.quick_view_btn:hover{
	background: var(--darkblue);
	color: var(--white);
	font-size: 12px;
}
.shop_btn_add_to_basket {
	display: flex;
	flex-direction: row;
	padding: 10px 20px;
	background-color: var(--darkblue);
	cursor: pointer;
	color: var(--white);
	justify-content: center;
	align-items: center;
	font-size: 12px;
	gap: 10px;
	min-height: 50px;
}
.shop_btn_add_to_basket:hover {
	font-size: 12px;
	background-color: var(--yellow);
	color: var(--white);
}
.shop_btn_add_to_basket span {
	font-size: 22px;
	color: var(--white);
}

.details_btn_icon {
	margin: 0;
	padding: 0;
	display: block;
	cursor: pointer;
}

.details_btn_icon span {
	font-size: 24px;
	color: var(--black);
	display: flex;
}

.details_btn_icon:hover span {
	color: var(--yellow);
}

/*footer*/

footer {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
	background: var(--darkblue);
}

/*footer top container*/

.footer_top_container {
	width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;

}

.footer_top_container section {
	width: 300px;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.footer_top_container section.payments nav ul li {
	font-size: 14px;
	color: var(--gray-text);
}
.footer_top_container section.payments nav ul li i{
	color: var(--yellow);
}
.footer_top_container section.payments nav ul li:nth-of-type(1) {
	color: var(--white);
	font-size: 14px;
}
.footer_top_container section.payments .cards{
	margin-top: 10px;
}
.footer_top_container section.payments .cards h1{
	color: var(--white);
}
.footer_top_container section.payments .cards ul{
	display: flex;
  	flex-direction: row;
  	gap: 10px;
  	align-items: center;
  	flex-wrap: wrap;
}
.footer_top_container section.payments .cards ul li {
	width: fit-content;
}
.footer_top_container section.payments .cards ul li img{
	width: auto;
	height: 40px;
}
/*footer logo*/

.footer_logo {
	width: auto;
	margin: 0 auto 20px;
	display: table;
}

.footer_logo img {
	max-height: 40px;
	display: flex;
}

/*footer master data*/

.footer_top_container section em {
	font-size: 12px;
	color: var(--white);
	font-weight: 500;
	margin: 0;
	padding: 0 40px;
	text-align: center;
}

/*footer shop menu nav*/

.footer_top_container section h1 {
	font-size: 16px;
	color: var(--yellow);
	font-weight: 700;
	margin: 0 0 12px;
}

.footer_top_container section nav {
	width: 100%;
	display: table;
}

.footer_top_container section nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.footer_top_container section nav ul li {
	width: 100%;
	float: left;
	margin: 0 0 7px;
}

.footer_top_container section nav ul li a {
	font-size: 16px;
	color: var(--gray-text);
	font-weight: 500;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	align-items: center;
	position: relative;
}
.footer_top_container section nav ul li a i{
	color: var(--yellow);
}
.footer_top_container section nav ul li a:hover,
.footer_top_container section nav ul li a.active {
	font-size: 16px;
	color:	var(--white);
}
.footer_top_container section .social ul{
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.footer_top_container section .social ul li{
	width: auto;
}
.footer_top_container section .social ul li a i{
	font-size: 24px;
}
.footer_top_container section .social ul li a:hover >i{
	color: var(--white);
}
/* .footer_top_container section nav ul li a:before {
	content: "\eac9";
	font-family: "Material Icons";
	font-size: 16px;
	color: var(--yellow);
	position: absolute;
	right: 15px;
	top: 2px;
} */

/*footer cards pay cnt*/

.footer_cards_pay_cnt {
	width: auto;
	margin: 0 auto;
	padding: 0 0 40px;
	display: table;
	clear: both;
}

.footer_cards_pay_cnt ul {
	list-style: none;
}

.footer_cards_pay_cnt ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
}

.footer_cards_pay_cnt ul li:last-of-type {
	margin: 0;
}

.footer_cards_pay_cnt ul li a {
	display: flex;
}

.footer_cards_pay_cnt ul li img {
	max-height: 50px;
	display: flex;
}

/*footer copyright*/

.footer_copyright {
	width: 100%;
	margin: 0;
	padding: 38px 0 39px;
	display: table;
	background: var(--darkgrey);
}

.footer_copyright aside {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.footer_copyright p {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	margin: 0;
	padding: 0;
	float: left;
}

.footer_copyright p a {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
}

.footer_copyright p a:hover {
	font-size: 16px;
	color: #fff;
	text-decoration: underline;
}

.footer_copyright p:last-of-type {
	float: right;
}

/*products main container*/

.products_main_container {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.products_main_inner {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.products_main_right_cnt {
	width: 900px;
	float: right;
	margin: 0;
}

.intro_headline_cnt {
	width: 100%;
	display: table;
}

.intro_headline_cnt h1 {
	font-size: 28px;
	color: var(--darkgrey);
	font-weight: 600;
	margin: 0 0 10px;
}

.intro_headline_cnt em {
	font-size: 16px;
}

/*products main container articles*/

.products_main_container article {
	width: 225px;
	float: left;
	margin: 0;
	padding: 0 0 60px;
	display: none;
}

.products_main_container article:nth-of-type(1),
.products_main_container article:nth-of-type(2),
.products_main_container article:nth-of-type(3),
.products_main_container article:nth-of-type(4),
.products_main_container article:nth-of-type(5),
.products_main_container article:nth-of-type(6),
.products_main_container article:nth-of-type(7),
.products_main_container article:nth-of-type(8),
.products_main_container article:nth-of-type(9),
.products_main_container article:nth-of-type(10),
.products_main_container article:nth-of-type(11),
.products_main_container article:nth-of-type(12) {
	display: block;
}

.products_main_container article figure {
	max-width: 215px;
	max-height: 280px;
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	
	float: none;
	margin: 0;
	padding: 5px;
}

.products_main_container article figure img {
	max-width: 215px;
	max-height: 280px;
	vertical-align: middle;
	text-align: center;
}

.products_main_container article h1 {
	margin: 10px 0 5px;
	padding: 0 15px;
	text-align: left;
	line-height: 22px;
	overflow: hidden;
	height: 67px;
}

.products_main_container article h1, .products_main_container article h1 a {
	font-size: 18px;
	color: var(--black);
	font-weight: 600;
}

.products_main_container article h1 a:hover {
	font-size: 18px;
	color: var(--yellow);
}

.products_main_container article em {
	font-size: 14px;
	color: rgba(0,0,0,0.85);
	font-weight: 500;
	margin: 0 0 20px;
	padding: 0 15px;
	line-height: 18px;
	overflow: hidden;
	height: 73px;
}

.products_main_container article .price_cnt {
	width: 195px;
}

/*load more button*/

#loadmore_button {
	font-size: 14px;
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 auto;
	padding: 11px 20px;
	background: var(--yellow);
	border-radius: 3px;
	display: table;
	clear: both;
	cursor: pointer;
	transition: all .3s linear;
}

#loadmore_button:hover {
	font-size: 14px;
	color: var(--white);
	background: var(--darkblue);
}

/*searched term cnt*/

.searched_term_cnt {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.search_main_inner {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.searched_term_cnt header {
	width: auto;
	margin: 0 auto;
	padding: 0;
	background: transparent;
	position: inherit;
	left: inherit;
	top: inherit;
	z-index: inherit;
}

.searched_term_cnt header h1 {
	font-size: 28px;
	color: var(--darkgrey);
	font-weight: 600;
	margin: 0 0 50px;
}

.searched_term_cnt header h1 span {
	font-size: 28px;
	color: var(--darkgrey);
	vertical-align: middle;
	margin: -5px 5px 0 0;
}

.searched_term_cnt header mark {
	color: var(--white);
	background-color: var(--yellow);
}

/*search page products*/

.searched_term_cnt article {
	width: 200px;
	float: left;
	margin: 0;
	padding: 0 0 60px;
	display: none;
}

.searched_term_cnt article:nth-of-type(1),
.searched_term_cnt article:nth-of-type(2),
.searched_term_cnt article:nth-of-type(3),
.searched_term_cnt article:nth-of-type(4),
.searched_term_cnt article:nth-of-type(5),
.searched_term_cnt article:nth-of-type(6),
.searched_term_cnt article:nth-of-type(7),
.searched_term_cnt article:nth-of-type(8),
.searched_term_cnt article:nth-of-type(9),
.searched_term_cnt article:nth-of-type(10),
.searched_term_cnt article:nth-of-type(11),
.searched_term_cnt article:nth-of-type(12) {
	display: block;
}

.searched_term_cnt article figure {
	max-width: 190px;
	max-height: 250px;
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	
	float: none;
	margin: 0;
	padding: 5px;
}

.searched_term_cnt article figure img {
	max-width: 190px;
	max-height: 250px;
	vertical-align: middle;
	text-align: center;
}

.searched_term_cnt article h1 {
	margin: 10px 0 5px;
	padding: 0 15px;
	text-align: left;
	line-height: 22px;
	overflow: hidden;
	height: 67px;
}

.searched_term_cnt article h1, .searched_term_cnt article h1 a {
	font-size: 18px;
	color: var(--black);
	font-weight: 600;
}

.searched_term_cnt article h1 a:hover {
	font-size: 18px;
	color: var(--yellow);
}

.searched_term_cnt article em {
	font-size: 14px;
	color: rgba(0,0,0,0.85);
	font-weight: 500;
	margin: 0 0 20px;
	padding: 0 15px;
	line-height: 18px;
	overflow: hidden;
	height: 73px;
}






/*product details content*/

.product_details_content {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.product_details_inner {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

/*product details left cnt*/

.product_details_left_cnt {
	width: 280px;
	float: left;
	margin: 0;
	padding: 0;
}

.product_details_content figure {
	max-width: 100%;
	max-height: 100%;
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	position: relative;
	
	float: none;
	margin: 0;
	padding: 0;
}

.product_details_content figure img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	text-align: center;
}

.product_details_content figure figcaption {
	text-align: left;
	position: absolute;
	right: 15px;
	bottom: 15px;
}

.product_details_content figure figcaption .sale {
	font-size: 18px;
	color: var(--black);
	font-weight: 700;
	text-align: center;
	background: #eeca17;
	border-radius: 500em;
	display: table-cell;
	vertical-align: middle;
	width: 64px;
	height: 64px;
	line-height: 64px;
}

.product_thumbnails_cnt {
	width: 100%;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	display: table;
}

.product_thumbnails_cnt li {
	width: 47.2%;
	float: left;
	margin: 0 15px 15px 0;
	padding: 0;
}

.product_thumbnails_cnt li:nth-of-type(2n) {
	margin-right: 0;
}

.product_thumbnails_cnt li a {
	display: flex;
}

.product_thumbnails_cnt li img {
	margin: 0;
	padding: 0;
	width: 100%;
}

/*product details right cnt*/

.product_details_right_cnt {
	width: 890px;
	float: right;
	margin: 0;
	padding: 25px 30px 30px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 1px 1px 3px 0px rgb(0,0,0,0.30);
}

.product_details_right_cnt h1 {
	font-size: 28px;
	color: #000;
	font-weight: 600;
	margin: 0 0 20px;
	padding: 0;
}

/*product price button cnt*/

.product_price_button_cnt {
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
	display: table;
}

.product_price_button_cnt div {
	width: auto;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
}

.product_price_button_cnt div div {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	width: auto;
}

.product_price_button_cnt div div.pricing_cnt div {
	padding: 0 0 0 10px;
}

.product_price_button_cnt div p,
.product_price_button_cnt div del,
.product_price_button_cnt div strong {
	display: inline-block;
	vertical-align: middle;
}

.product_price_button_cnt div p {
	font-size: 12px;
	color: rgba(0,0,0,0.85);
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	padding: 2px 0 0;
	float: left;
}

.product_price_button_cnt div del {
	font-size: 14px;
	color: rgba(0,0,0,0.75);
	font-weight: 500;
	margin: 0;
	padding: 0;
	text-decoration: line-through;
}

.product_price_button_cnt div strong {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin: -2px 0 0;
	padding: 0;
}

.product_price_button_cnt div del.kn_oldprice {
	font-weight: 600;
}

.product_price_button_cnt div strong.kn_price {
	font-weight: 700;
}

/*add to cart btn*/

.product_price_button_cnt form {
	width: auto;
	display: inline-block;
	vertical-align: middle;
	margin: 0 15px 0 0;
}

.add_to_cart_btn {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	margin: 0;
	padding: 18px 15px;
	display: block;
	background: var(--yellow);
	cursor: pointer;
}

.add_to_cart_btn:hover {
	font-size: 16px;
	color: var(--white);
	background: var(--darkblue);
}

.add_to_cart_btn strong {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
}

.add_to_cart_btn:hover strong {
	font-size: 16px;
	color: #000;
	font-weight: 600;
}

.add_to_cart_btn span,
.add_to_cart_btn strong {
	display: inline-block;
	vertical-align: middle;
}

.add_to_cart_btn span {
	font-size: 22px;
	color: #fff;
	font-weight: normal;
	margin: -2px 5px 0 0;
}

.add_to_cart_btn span:hover,
.add_to_cart_btn:hover span {
	font-size: 22px;
	color: #000;
}

.product_details_left_cnt figure figcaption span{
	padding: 20px;
  	width: 60px;
  	display: flex;
  	background: var(--yellow);
  	border-radius: 50%;
  	height: 60px;
  	align-items: center;
  	justify-content: center;
}

/*product details datalist*/

.product_details_right_cnt dl {
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
	display: table;
}

.product_details_right_cnt dl div {
	width: 100%;
	display: table;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.product_details_right_cnt dl div:first-of-type {
	border-top: 1px solid rgba(0,0,0,0.15);
}

.product_details_right_cnt dl dt,
.product_details_right_cnt dl dd {
	width: auto;
	float: left;
}

.product_details_right_cnt dl dt,
.product_details_right_cnt dl dd {
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	margin: 0;
	padding: 12px 15px 11px;
}

.product_details_right_cnt dl dt {
	width: 20%;
}

.product_details_right_cnt dl dd {
	font-weight: 600;
	color: var(--yellow);
}

.product_details_right_cnt .product_price_button_cnt div{
	display: block;
	width: 360px;
	float: left;
}
.product_details_right_cnt .product_price_button_cnt div strong{
	font-size: 30px;
}
.product_details_right_cnt .product_price_button_cnt div .price_info{
	display: block;
	width: 100%;
	margin: 20px 0 0 0 ;
}
.product_details_right_cnt .product_price_button_cnt div .price_info strong{
	font-size: 18px;
}



.product_price_button_cnt .shop_add{
	margin: 44px 0 0px auto;
	float: right;
}
/*product details page right cnt description*/

.product_details_right_cnt em,
.product_details_right_cnt p {
	font-size: 14px;
	color: rgba(0,0,0,0.85);
	font-weight: 500;
	margin: 0;
	padding: 0;
}

/*product details tabs cnt*/

.product_details_tabs_cnt {
	width: 100%;
	margin: 0;
	padding: 30px 0 0;
	display: table;
}

.container {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.tabs {
	list-style: none;
	margin: 0;
	padding: 20px 0;
	width: 25%;
	float: left;
}

.tabs li {
	width: 100%;
	display: block;
	margin: 0;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	color: rgba(0,0,0,0.75);
	border-right: 5px solid transparent;
	transition: all .3s linear;
}

.tabs li:hover,
.tabs li.current {
	color: var(--gold);
	border-right: 5px solid var(--gold);
}

.tab-content {
	width: 75%;
	min-height: 320px;
	float: right;
	margin: 0;
	padding: 30px 20px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	display: none;
}

.tab-content.current {
	display: block;
}

.tab-content dl {
	width: 100%;
	margin: 0;
	padding: 0;
}

.tab-content dl div {
	width: 100%;
	display: table;
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 3px;
}

.tab-content dl div:nth-of-type(even) {
	background: rgba(0,0,0,0.05);
}

.tab-content dl dt, .tab-content dl dd {
	font-size: 14px;
	float: left;
	margin: 0;
	padding: 15px 20px 16px;
}

.tab-content dl dt {
	width: 30%;
}

.tab-content dl dd {
	width: 70%;
}

.tab-content dl dt {
	color: rgba(0,0,0,0.60);
	font-weight: 500;
	text-transform: uppercase;
}

.tab-content dl dd {
	color: rgba(0,0,0,0.75);
	font-weight: 600;
}

.tab-content iframe {
	width: 100%;
	border: none !important;
	margin: 0;
	padding: 0;
	border-radius: 3px;
}

/*related products cnt*/

.related_products_cnt {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	clear: both;
}

.related_products_cnt h1 {
	font-size: 24px;
	color: var(--darkgrey);
	font-weight: 500;
	margin: 0 0 15px;
	text-align: center;
}

.related_products_cnt article {
	width: 300px;
	float: left;
	margin: 0;
	padding: 0 0 60px;
	text-align: center;
}

.related_products_cnt article figure {
	max-width: 300px;
	max-height: 300px;
	display: table;
	overflow: hidden;
	text-align: center;
	background: transparent;
	border: 1px solid var(--yellow);
	float: none;
	margin: 0 auto;
	padding: 5px;
}

.related_products_cnt article figure img {
	width: 250px;
	height: 350px;
	vertical-align: middle;
	text-align: center;
}

.related_products_cnt article h1 {
	margin: 10px 0 5px;
	padding: 0 15px;
	text-align: center;
	line-height: 22px;
	overflow: hidden;
	height: 67px;
}

.related_products_cnt article h1, .related_products_cnt article h1 a {
	font-size: 18px;
	color: var(--black);
	font-weight: 600;
}	

.related_products_cnt article h1 a:hover {
	font-size: 18px;
	color: var(--yellow);
}

.related_products_cnt article em {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.85);
	font-weight: 500;
	margin: 0 0 20px;
	padding: 0 15px;
	line-height: 18px;
	overflow: hidden;
	height: 73px;
}

/*news page cnt*/

.news_page_cnt {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.news_page_inner {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.news_page_cnt h1 {
	font-size: 28px;
	color: var(--darkgrey);
	font-weight: 600;
	text-align: center;
	margin: 0 0 50px;
}

.news_page_cnt article {
	width: 100%;
	margin: 0 0 45px;
	padding: 0 0 45px;
	display: table;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.news_page_cnt article figure {
	max-width: 320px;
	max-height: 240px;
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	position: relative;
	
	float: left;
	margin: 0 30px 0 0;
	padding: 0 0 15px;
	box-sizing: unset;
}

.news_page_cnt article figure img {
	max-width: 320px;
	max-height: 240px;
	vertical-align: middle;
	text-align: center;
}

.news_page_cnt article figure figcaption {
	text-align: left;
	position: absolute;
	bottom: 0;
	right: 15px;
}

.news_page_cnt article time {
	font-size: 18px;
	color: var(--white);
	font-weight: 500;
	background: var(--yellow);
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 80px;
	height: 80px;
	word-break: break-all;
	padding: 0 13px;
}

.news_page_cnt article h1 {
	margin: 0 0 10px;
	padding: 0;
	text-align: left;
}

.news_page_cnt article h1, .news_page_cnt article h1 a {
	font-size: 24px;
	color: var(--yellow);
	font-weight: 600;
}

.news_page_cnt article h1 a:hover {
	font-size: 24px;
	color: var(--yellow);
}

.news_page_cnt article em {
	font-size: 16px;
	color: rgba(0,0,0,0.85);
	font-weight: 500;
	margin: 0 0 15px;
	padding: 0;
}

.read_more_btn {
	margin: 0;
	padding: 0;
	display: table;
}

.read_more_btn span {
	font-size: 28px;
	color: var(--darkgrey);
	padding: 6px;
	border-radius: 3px;
}

.read_more_btn:hover span {
	color: var(--white);
	background: var(--darkgrey);
}

.news_page_cnt article:nth-of-type(even) figure {
	float: right;
	margin: 0 0 0 30px;
}

.news_page_cnt article:nth-of-type(even) figure figcaption {
	right: inherit;
	left: 15px;
}

/*news page cnt details*/

.news_page_cnt_details {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.news_details_inner {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.news_page_cnt_details article {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.news_page_cnt_details article time {
	font-size: 18px;
	color: var(--yellow);
	font-weight: 600;
	margin: 0 0 1px;
	display: block;
}

.news_page_cnt_details article h1 {
	font-size: 32px;
	color: var(--black);
	font-weight: 600;
	margin: 0 0 17px;
	padding: 0;
}

.news_page_cnt_details figure {
	max-width: 480px;
	max-height: 360px;
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	
	float: left;
	margin: 0 30px 30px 0;
	padding: 0;
}

.news_page_cnt_details figure img {
	max-width: 480px;
	max-height: 360px;
	vertical-align: middle;
	text-align: center;
}



/*BASIC CSS*/

.main_container nav {
	width: 240px;
	float: left;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 3px;
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.30);
}

.main_container nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.main_container nav ul li {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.main_container nav ul li:last-of-type {
	border: none;
}

.main_container nav ul li a {
	font-size: 15px;
	color: rgba(0,0,0,0.85);
	font-weight: 600;
	margin: 0;
	padding: 11px 15px;
	display: block;
	position: relative;
}

.main_container nav ul li a:hover,
.main_container nav ul li a.active {
	font-size: 15px;
	color: #fff;
	background: var(--yellow);
}

.main_container nav ul li:first-child a {
	border-radius: 3px 3px 0 0;
}

.main_container nav ul li:last-child a {
	border-radius: 0 0 3px 3px;
}

.main_container nav ul li a span.material-icons {
	font-size: 18px;
	color: var(--darkgrey);
	vertical-align: middle;
	margin: -2px 5px 0 0;
}

.main_container nav ul li a:hover span.material-icons,
.main_container nav ul li a.active span.material-icons {
	color: var(--white);
}

/*main subcategories*/

.main_container nav ul li ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

.main_container nav ul li ul li a {
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	padding: 9px 15px;
	background: var(--white);
	border-radius: 0 !important;
}

.main_container nav ul li ul li a:hover,
.main_container nav ul li ul li a.active {
	font-size: 13px;
	color: #000;
	background: var(--gold);
}

.main_container nav ul li ul li:first-child a {
	border-radius: 0;
}

.main_container nav ul li ul li:last-child a {
	border-radius: 0;
}

/*jquery accordion menu*/

#accordion ul {
	display: none;
}

#accordion a {
	cursor: pointer;
}

/*contact form*/

.contact_form {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.contact_form dl {
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
	display: table;
}

.contact_form div {
	width: 310px;
	float: left;
	margin: 0 20px 20px 0;
	padding: 0;
}

.contact_form div.cnt_form_div_note {
	width: 100%;
	float: none;
	margin: 0 0 15px;
}

.contact_form div:nth-of-type(2n) {
	margin-right: 0;
}

.contact_form dd div {
	width: auto;
	float: none;
	margin: 0;
}

.contact_form .consent_data{
    display: table;
    width: 100%;
}

.contact_form dt {
	display: table;
	margin: 0 10px 0 0 ;
	padding: 0 !important;
    float: left;
}
.contact_form dt label {
	font-size: 16px;
	color: black;
	font-weight: 600;
	margin: 0;
	padding: 0 0 10px 5px;
	display: block;
	cursor: text;
}
.contact_form dd {
	width: 89% !important;
	display: table;
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}

.contact_form dd p {
	font-size: 14px;
}

.buttons_action input[type="reset"] {
	background: #a5a5a5 !important;
	box-shadow: none !important;
	border-radius: 3px !important;
	border: 1px solid #a5a5a5 !important;
	padding: 11px 30px 12px !important;
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	float: left;
	width: auto !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	transition: all .2s linear !important;
	margin: 0 5px 0 0 !important;
}

.buttons_action input[type="reset"]:hover, .buttons_action input[type="reset"]:focus {
	font-size: 12px !important;
	color: #fff !important;
	background: #a5a5a5 !important;
	border: 1px solid #a5a5a5 !important;
	opacity: 0.80;
}

.buttons_action input[type="submit"] {
	background: var(--yellow) !important;
	border: 1px solid var(--yellow) !important;
	box-shadow: none !important;
	border-radius: 3px !important;
	padding: 11px 30px 12px !important;
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	float: left;
	width: auto !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	transition: all .2s linear !important;
	margin: 0 !important;
}

.buttons_action input[type="submit"]:hover, .buttons_action input[type="submit"]:focus,
.buttons_action input[type="submit"]:valid:hover, .buttons_action input[type="submit"]:valid:focus {
	font-size: 12px !important;
	color: #fff !important;
	background: var(--yellow) !important;
	border: 1px solid var(--yellow) !important;
	opacity: 0.80;
}

.contact_form dl a {
	color: var(--yellow);
}

.contact_form dd input, .contact_form dd textarea, .contact_form dd select {
	width: 100%;
	max-width: 100%;
	padding: 11px 15px;
	margin: 0 !important;

	background: linear-gradient(#ffffff, #fafafa) !important;
	background: -webkit-linear-gradient(#ffffff, #fafafa) !important;
	border-radius: 3px !important;
	border: 1px solid #cdcdcd !important;
	box-shadow: none !important;

	transition: all .3s linear;
	color: #2d2d2d;
	font-size: 14px !important;
	opacity: 1;
}

.contact_form dd input:hover, .contact_form dd input:focus, .contact_form dd input:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd textarea:hover, .contact_form dd textarea:focus, .contact_form dd textarea:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd select:hover, .contact_form dd select:focus, .contact_form dd select:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd textarea {
	min-height: 120px;
	max-height: 120px;
	resize: none;
}

.contact_form div dd .formInfo:nth-child(2) {
	position: absolute;
	right: 5px;
	top: -22px;
}

.contact_form dd select {
	padding: 8px 10px 10px;
}

.contact_form dd input[type="file"] {
	padding: 7px 10px 7px;
}

/*invalid input*/

.contact_form dd input:invalid:focus, .contact_form dd select:invalid:focus, .contact_form dd textarea:invalid:focus {
	border: 1px solid #e10f0f !important;
}

.contact_form dd input:valid:focus, .contact_form dd select:valid:focus, .contact_form dd textarea:valid:focus {
	border: 1px solid #179d0a !important;
}

.formInfo {
	margin: 0;
	color: #C20E24;
	font-size: 18px;
	cursor: help;
}

.FormButton{
	width: auto!important;
}

.CaptchaInput {
	float:left;
	width:70px !important;
}

#CaptchaImg2 {
	margin: 7px 0 0 5px;
	border: 1px solid #b4b4b4;
}

.contact_form dd img{
	border: none;
}

#reload_ecaptcha_contact{
	border: none;
}

.contact_form dd.buttons_action {
	padding: 20px 0 0 !important;
}

.contact_form dd div p {
	font-size: 13px;
	color: #555;
	font-weight: normal;
	margin: 0 0 8px;
	padding: 0;
	display: block;
}

.error_content {
	color: #2d2d2d !important;
	margin: 20px 0;
}

.msg_content {
	color: #2d2d2d !important;
	margin: 20px 0;
}

/*sorter*/

.sorter {
	width: auto;
	margin: 0 0 30px;
	padding: 10px 15px;
	display: table;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.sorter h1 {
	font-size: 14px;
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	padding: 4px 15px 0 0;
	text-align: left;
	float: left;
}

.sorter h1 > span {
	font-size: 24px;
	color: var(--darkgrey);
	vertical-align: middle;
	margin: -2px 0 0 10px;
}

.sorter form {
	width: auto;
	float: right;
	margin: 0;
	padding: 0;
}

.sorter form div {
	width: auto;
	float: left;
	margin: 0 15px 0 0;
	padding: 0;
}

.sorter form div:last-of-type {
	margin: 0;
}

.sorter form label {
	font-size: 12px;
	color: #414141;
	font-weight: 500;
	margin: 0;
	padding: 6px 10px 6px 0;
	float: left;
	cursor: text;
}

.sorter ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}

.sorter ul li {
	width: auto;
	float: left;
	margin: 0 5px 0 0;
}

.sorter ul li:last-of-type {
	margin: 0;
}

.sorter form input[type="submit"] {
	font-size: 10px !important;
	color: #2d2d2d;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	padding: 7px;
	background: transparent;
	border: 1px solid #cdcdcd;
	border-radius: 3px;
	transition: all .3s linear;
	opacity: 1;
	width: auto;
	float: left;
	cursor: pointer;
}

.sorter form input[type="submit"]:hover,
.sorter form input[type="submit"]:focus,
.sorter form input[type="submit"].active {
	font-size: 10px !important;
	color: var(--black);
	background: var(--gold);
	border: 1px solid var(--gold);
}

/*paging content*/

.paging_content {
	width: 100%;
	margin: 0;
	padding: 40px 0 0;
	display: table;
}

.paging_content .paging, .paging_content .paging_info {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	display: table;
}

.paging_content .paging p {
	font-size: 13px;
	color: #555;
	font-weight: 400;
	text-transform: uppercase;
	margin: 12px 10px 0 0;
	padding: 0;
	float: left;
}

.paging_content .paging span {
	font-size: 12px;
	color: #555;
	font-weight: 400;
	margin: 0;
	padding: 0;
	float: left;
}

.paging_content .paging a, .paging_content .paging span {
	font-size: 11px;
	color: #414141;
	font-weight: 700;
	margin: 0 -1px 0 0;
	padding: 12px 15px;
	float: left;
	background: linear-gradient(#f5f5f5, #f0f0f0);
	background: -webkit-linear-gradient(#f5f5f5, #f0f0f0);
	border: 1px solid #d7d7d7;
	cursor: pointer;
	transition: all .3s linear;
}

.paging_content .paging span:first-of-type {
	border-radius: 3px 0 0 3px;
}

.paging_content .paging a:last-of-type {
	border-radius: 0 3px 3px 0;
}

.paging_content .paging a:hover, .paging_content .paging a:focus, .paging_content .paging a.active,
.paging_content .paging span:hover, .paging_content .paging span:focus, .paging_content .paging span.active {
	font-size: 11px;
	color: #000;
	background: #fff;
	border: 1px solid #d7d7d7;
}

.paging_content .paging_info {
	font-size: 12px;
	color: #555;
	font-weight: 500;
	padding: 8px 0 0 90px;
}

/*basic site inner content*/

.basic_site_inner_content {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.basic_site_inner {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.basic_site_inner_content article {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.basic_site_inner_content h1 {
	font-size: 32px;
	color: var(--yellow);
	font-weight: 700;
	margin: 0;
	padding: 0 0 10px;
}

.basic_site_inner_content h2 {
	font-size: 26px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.basic_site_inner_content h3 {
	font-size: 22px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.basic_site_inner_content figure {
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.12);
	border-radius: 3px;
	
	float: left;
	margin: 0 30px 30px 0;
	padding: 0;
}

.basic_site_inner_content figure img {
	vertical-align: middle;
	text-align: center;
}
.basic_site_inner ul,
.basic_site_inner ol{
	padding-left: 20px;
}

/*basic site inner content contact*/

.basic_site_inner_content_contact {
	width: 100%;
	margin: 0;
	padding: 60px 0;
	display: table;
	background: #fff;
}

.basic_site_inner_content_contact article {
	width: 500px;
	float: left;
	margin: 0;
}

.basic_site_inner_content_contact h1 {
	font-size: 32px;
	color: var(--yellow);
	font-weight: 700;
	margin: 0;
	padding: 0 0 10px;
}

.basic_site_inner_content_contact h2 {
	font-size: 26px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.basic_site_inner_content_contact h3 {
	font-size: 22px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.right_column_contact {
	width: 640px;
	float: right;
	margin: 50px 0 0;
}

.basic_site_inner_content_contact iframe {
	width: 100%;
	height: 480px;
	border: none;
	outline: none;
}











/*ecms gallery box*/

.ecms_gallery_box {
	width: 100%;
	float: none;
	display: table;
	margin: 30px 0 0;
	padding: 22px 0 0;
	border-top: 1px dashed #a5a5a5;
}

.ecms_gallery_box h1,
.ecms_gallery_box h2 {
	font-size: 22px;
	color: #000;
	font-weight: 500;
	text-transform: none;
	margin: 0;
	padding: 0 0 10px;
}

.ecms_gallery_box h1:before,
.ecms_gallery_box h2:before {
	content: "\e413";
	font-family: "Material Icons";
	font-size: 24px;
	color: var(--yellow);
	font-weight: normal;
	margin: -2px 10px 0 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.ecms_gallery_box p {
	font-size: 16px;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

.ecms_gallery_box a {
	width: 22.9%;
	float: left;
	margin: 30px 30px 0 0;
	padding: 0;
	position: relative;
}

.ecms_gallery_box a:nth-of-type(4n) {
	margin-right: 0;
}

.ecms_gallery_box a img {
	width: 100%;
	/*height: 100%;*/
	margin: 0;
	padding: 0;
	display: flex;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.15);
}

.ecms_gallery_box em {
	font-size: 16px;
	color: rgba(0,0,0,0.80);
	font-weight: 500;
	margin: 0;
	padding: 15px 0 0;
	line-height: 22px;
	overflow: hidden;
	height: 60px;
}

/*download*/

.document_category {
	width: 100%;
	margin: 40px 0 0;
	padding: 25px 20px 20px;
	clear: both;
	display: table;
	background: linear-gradient(#f2f2f2, #f0f0f0);
	background: -webkit-linear-gradient(#f2f2f2, #f0f0f0);
	border: 1px solid #e0e0e0;
	border-radius: 0;
}

.document_category h1,
.document_category h2 {
	font-size: 22px;
	color: #000;
	font-weight: 500;
	text-transform: none;
	margin: 0;
	padding: 0 0 20px;
}

.document_category h1:before,
.document_category h2:before {
	content: "\ebbd";
	font-family: "Material Icons";
	font-size: 24px;
	color: var(--yellow);
	font-weight: normal;
	margin: -2px 10px 0 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.document_category ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: table;
	width: 100%;
}

.document_category ul li {
	width: 31.4%;
	margin: 0 30px 30px 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.document_category ul li:nth-of-type(3n) {
	margin-right: 0;
}

.document_category ul li img, .document_category ul li a {
	display: inline-block;
	vertical-align: middle;
}

.document_category ul li img {
	max-height: 38px;
	margin: 0 5px 0 0;
	padding: 0;
}

.document_category ul li a {
	font-size: 14px;
	color: var(--darkgrey);
	font-weight: 500;
	margin: 0;
	padding: 0;
	line-height: 22px;
	overflow: hidden;
	max-height: 67px;
	max-width: 85%;
}

.document_category ul li a:hover {
	font-size: 14px;
	color: var(--yellow);
}

/*hist and social*/

.hist_and_social {
	width: 100% !important;
	margin: 40px 0 0 !important;
	padding: 0 !important;
	clear: both;
	display: table;
	background: none !important;
	border-radius: 0 !important;
}

.hist_and_social .social_toolbar_inside {
	width: auto;
	float: right;
	margin: 4px 0;
	padding: 0;
}

.social_toolbar_inside ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: table;
}

.social_toolbar_inside ul li {
	float: left;
	margin: 0 5px 0 0;
	padding: 0;
}

.social_toolbar_inside ul li.label {
	font-size: 13px;
	font-weight: 600;
	margin: 8px 10px 0 0 !important;
}

.social_toolbar_inside ul li:last-of-type {
	margin: 0;
}

.social_toolbar_inside ul li a {
	display: flex;
}

.social_toolbar_inside ul li img {
	max-height: 32px;
	margin: 0;
	padding: 0;
	transition: all .3s linear;
	border-radius: 0;
	opacity: 1;
}

.social_toolbar_inside ul li img:hover {
	opacity: 0.75;
}

#hist {
	width: auto;
	float: left;
	margin: 0;
	padding: 0;
}

.ecms_gallery_box #hist {
	float: none;
	clear: both;
	display: table;
	padding-top: 30px;
}

#hist a {
	font-size: 14px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 11px 15px 10px;
	display: table;
	background: var(--gold);
	border-radius: 0;
}

#hist a:hover {
	font-size: 14px;
	color: #fff;
	background: var(--darkgrey);
}

#hist a span {
	font-size: 22px;
	color: #000;
	vertical-align: middle;
	margin: -3px 5px 0 0;
}

#hist a:hover span {
	color: #fff;
}

/*FANCYBOX*/

.fancybox-skin {
	background: #fff !important;
}

.fancybox-lock {
	overflow: inherit !important;
}

.quick_view_modal {
	display: none;;
}


/*CSS ZA BOXNOW Mario - 19.9.2025*/
#boxnowmap iframe { 
	z-index: 99999 !important;
}
.boxnow-widget-button { 
	display: table;
	margin: 5px 0;
	padding: 10px; 
	background-color: #4CAF50; 
	color: white; 
}


