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

::-webkit-input-placeholder {
	font-style: italic;
}

:-moz-placeholder {
	font-style: italic;  
}

::-moz-placeholder {
	font-style: italic;  
}

:-ms-input-placeholder {  
	font-style: italic; 
}

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

* {
	box-sizing: border-box;
}

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

input[type=checkbox]:before {
	display: inline-block;
	border-radius: 3px; 
	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: 3px; 
	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: 50px; 
	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: 50px; 
	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=file], 
input[type=submit], 
input[type=button] {
	box-sizing: border-box;
	font-size: 14pt;
	text-transform: uppercase;
	font-weight: bold;
	padding: 6px 40px 8px;
	background: #eee;
	border:0;
	border-radius: 100px !important; 
	text-decoration: none;
	display: inline-block;
	text-align: center;
	font-weight: normal;
	font-family: "Open Sans", sans-serif;
	/*border-bottom: 3px solid #bbb;*/
}

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

.color-green {
	color: #8dbb3f !important;
}

.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;
}

.color-red {
	color: #ed1c24 !important;
}

.btn-red {
	background: #ed1c24 !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: #fff !important;
}

.btn-yellow {
	background: #ee0 !important;
	/*border: 2px solid #a00 !important;*/
	/*border-bottom: 3px solid #a00 !important;*/
	color: #444 !important;
}

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

.btn-transparent {
	background: transparent; !important;
	/*border: 2px solid #a00 !important;*/
	/*border-bottom: 3px solid #a00 !important;*/
	color: #fff !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: 1.5px solid #aaa;
	/*border-bottom: 3px solid #ccc;*/
	-webkit-appearance: none;
	font-size: 14pt;
	box-sizing: border-box;
	border-radius: 25px;	
	-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: #fafafa; 
	color: #555; 
}

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: 100px; 
	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: 100px;
	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: 100px;
	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: 100px;
	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: 10px; 
}

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

#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: 10px; 
	/*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(100, 100, 100, 0.6);
	display: none;
	backdrop-filter: blur(6px);
}

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

#main-window-content {
	border-radius: 10px; 
	border: 2px solid rgba(30, 30, 30, 0.2);
	position: relative;
	background: rgba(30, 30, 30, 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 2px; 
	/*border: 1px solid rgba(255, 255, 255, 0.3);*/
	background: #444; 
	border-radius: 3px; 
	user-select: none;
	font-size: 13pt; 
}

#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: 70px; 
}

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: 1200px; 
	margin: 20px auto 30px; 
}

div.page-main-title h1 {
	max-width: 1200px; 
	width: 100%; 
	margin: 0 auto 20px; 
	padding: 80px 15px 140px; 
	color: #fff; 
	/*color: var(--var-main-color); */
	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;*/
	text-shadow: rgba(0, 0, 0, 0.2) 0 0 2px;
}

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

div.page-main-title-container {
	background-color: #c7b299;
	background-image: url(/images/top-bg-2.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#mainInContent {
	min-height: calc(100vh - 100px - 413px);
	margin-top: 45px; 
}

header {
	display: block;
	padding: 0;
	width: 100%; 
	background: rgba(255, 255, 255, 0.9);
	/*background: rgba(255, 255, 255, 1);*/
	/*background: rgba(0, 0, 0, 1);*/
	/*background: rgba(0, 0, 0, 1);*/
	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: 10px;
}

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

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

header svg.mobile {
	display: none;
}

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

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: 1000px; 
	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: 1200px; 
	padding: 0 20px; 
	position: relative;
}

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

section.pg-content-white {
	padding: 20px;
	background: #fff;
	border-radius: 5px; 
	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: 5px; 
}

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: #555;
	border-radius: 9px;
	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;
}

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

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

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: #034ea2; 
	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);
}

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

header > div > table > tbody > tr > td > ul > li > ul {
	position: absolute;
	top: 130px; 
	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: var(--var-main-color);
}

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: 130px; 
	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: #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: 75px; 
	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);
}

#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: 10px; 
}

#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: #fff; 
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	border-radius: 25px; 
	width: 50px; 
	height: 50px; 
	overflow: hidden;
	z-index: 108;
	color: #555; 
}

.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.vip-footer > div > table td > div {
	margin: -10px 0 -20px;
	position: relative;
}

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

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

footer.vip-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.vip-footer > div > table tr td:nth-child(1) {
	border-left: 0;
}

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

footer.vip-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.vip-footer > div:nth-child(1) {
	padding: 60px 0px 15px 40px; 
	margin: 0 auto; 
	max-width: 1200px;
}

footer.vip-footer {
	display: block;
	/*background: #c7b299;*/
	background: #000;
}

footer.secret > div:nth-child(1) table td h2 label {
	position: relative;
	top: 50px; 
}

footer.secret > div:nth-child(1) table td h2 {
	height: 60px; 
	padding-bottom: 30px; 
}

footer.secret > div:nth-child(1) table td {
	width: 33.33%; 
	font-size: 10pt; 
	vertical-align: top;
	padding: 0
}

footer.secret > div:nth-child(1) table {
	width: 100%; 
	border-spacing: 0;
}

footer.secret > div:nth-child(1) svg.brand-footer {
	width: 200px; 
	display: block;
	padding-bottom: 10px; 
	/*margin: 0 auto; */
}

footer.secret > div:nth-child(1) {
	max-width: 1200px; 
	margin: 0 auto 20px; 
	padding: 150px 15px 0;
	/*background: url('/images/footer-bg.jpg'); */
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100%;
}

footer.secret > div:nth-child(2) {
	padding: 0 15px 20px; 
	text-align: center;
	font-size: 9pt; 
}

footer.secret {
}

.brand-footer polygon, 
.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: 100px; 
	font-size: 21pt; 
	text-align: center;
}

.full-guest-blog-links a img {
	border-radius: 5px 5px 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: 5px; 
	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 0px; 
	/*color: #fff; */
	color: #777; 
	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 - 200px);
	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 {
	position: relative;
}

.article-car-item h2 label {
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-size: 14pt; 
	display: inline-block;
	margin-left: 10px; 
}

.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: 10px;
	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: 10px 10px 0 0;
	width: 100%;
}

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

.pg-faq-item {
	margin: 20px 0;
	padding: 0;
	background: #fff;
	border-radius: 10px;
	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: 100px;
	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-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);
}

.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: 10px; 
	border: 2px solid #ccc;
	margin: 5px; 
	position: relative;
}

.admin-link-container-inline-block > div {
	background: #fff; 
	border-radius: 10px; 
	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 10px 10px; 
	border: 2px solid #ccc; 
	border-top: 0;
}

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

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

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

.main-video {
	width: 100%; 
	height: calc(100vh - 420px);
	min-height: 380px; 
	object-fit: cover;
	object-position: top;
	display: block;
}

.article-under-video > section table td {
	width: 50%; 
	color: #fff; 
}

.article-under-video > section table {
	width: 100%; 
	height: 100%; 
}

.article-under-video > section p {
	color: #fff; 
	font-size: 18pt; 
	font-weight: 100;
}

.article-under-video > section h1 {
	color: #fff; 
	font-size: 26pt; 
	font-weight: normal;
}

.article-under-video > section {
	height: 100%; 
}

.article-under-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%; 
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	/*background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);*/
}

.articles-container-mini > a svg.girl-vip {
	position: absolute;
	width: 80px;
	top: -10px;
	left: 50%;
	margin: 0 -40px;
}

.articles-container > article > a svg.girl-vip {
	position: absolute;
	width: 100px;
	top: -15px;
	left: 50%;
	margin: 0 -50px;
}

.articles-container-mini div.girl-new label, 
.articles-container div.girl-new label {
	position: absolute;
	width: 100%; 
	display: block;
	text-align: center;
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	color: #fff; 
	top: 20px; 
	left: 0;
	font-size: 14pt; 
	font-weight: normal !important;
	transform: rotate(-20deg);
}

div.girl-new svg {
	width: 60px; 
	display: block;
}

div.girl-new {
	position: absolute;
	bottom: 10px; 
	right: 5px; 
}

.articles-container > article > a > div.girl-new svg {
	padding: 0;
}

.articles-container > article > a > div.girl-new {
	position: absolute;
	bottom: initial;
	left: 10px; 
	top: 10px; 
	right: initial;
	background: transparent;
	padding: 0;
	width: initial;
	height: initial;
}

.articles-container > article > a > div.girl-new label {
	top: 16px; 
	left: -10px; 
}

.articles-container-mini > a img, 
.articles-container > article > a img {
	width: 100%; 
	border-radius: 10px; 
}

.articles-container-mini > a > div > *, 
.articles-container > article > a > div > * {
	display: block;
	color: #fff; 
	padding: 3px 10px; 
}

.articles-container-mini > a > div span, 
.articles-container > article > a > div span {
	font-family: "Lora", serif;
	font-optical-sizing: auto;
}

.articles-container > article > a > div label {
	font-size: 14pt; 
	font-weight: bold;
}

articles-container-mini > a > div label {
	font-size: 12pt; 
	font-weight: bold;
}

.articles-container-mini > a > div, 
.articles-container > article > a > div {
	position: absolute;
	padding: 60px 10px 10px; 
	border-radius: 0 0 10px 10px; 
	bottom: 0;
	left: 0;
	width: calc(100% - 20px); 
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
}

.articles-container-mini > a {
	text-align: left;
	margin: 20px; 
	position: relative;
	display: inline-block;
	width: calc((100% / 6) - 40px);
}

.articles-container > article > div > div {
	padding-top: 1px; 
	text-align: center;
	font-size: 9pt; 
}

.articles-container > article > div {
	position: absolute;
	top: 2px; 
	right: 10px; 
	font-size: 20pt; 
	text-align: center;
	color: #fff; 
}

.articles-container > article > a {
	display: block;
}

.articles-container > article {
	text-align: left;
	margin: 10px; 
	position: relative;
	display: inline-block;
	width: calc((100% / 2) - 20px);
}

.articles-container-mini, 
.articles-container {
	margin: 10px -10px 0; 
	position: relative;
	text-align: center;
}

.main-car-table-container table td img {
	width: 100%; 
	display: block;
	border-radius: 10px; 
	margin-bottom: 20px; 
	/*border: 2px solid #fff; */
}

.main-car-table-container table td h2 {
	margin-top: -5px; 
}

.main-car-table-container table td {
	width: 50%; 
	padding: 0;
	vertical-align: top;
}

.main-car-table-container table {
	border-spacing: 20px; 
	width: 100%; 
}

.main-car-table-container article h3 {
	font-weight: normal;
	margin: -20px -30px 20px; 
	padding: 15px 30px;  
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	border-radius: 10px 10px 0 0;
	background: rgba(0, 0, 0, 0.05); ; 
	/*border: 2px solid #fff; */
}

.main-car-table-container article {
	display: block;
	padding: 20px 30px;  
	border-radius: 10px; 
	background: rgba(240, 240, 240, 1); 
	margin: 0 0 20px;
}

.main-car-table-container ul.descriptions li label {
	/*float: right;*/
	font-weight: bold;
}

.main-car-table-container ul.descriptions li:after {
	display: block;
	float: none;
	clear: right;
	content: '';
}

.main-car-table-container ul.services li {
	display: inline-block;
	padding: 10px 20px; 
	margin: 5px; 
	background: rgba(0, 0, 0, 1); 
	border-radius: 100px; 
	border: 1px solid #ccc; 
}

.main-car-table-container ul.descriptions li {
	margin: 0 0 2px; 
	padding: 2px 0;
	border-bottom: 1px solid #eee; 
}

.main-car-table-container ul.descriptions li:last-child {
	border-bottom: 0;
}

.main-car-table-container ul.services  {
	list-style: none;
	padding: 0;
	margin: -10px -10px -5px; 
}

.main-car-table-container ul.descriptions {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-car-table-container .call i {
	position: relative;
	left: -7px; 
	top: 6px; 
	font-size: 26pt; 
	color: #25D366;
	margin: -10px 0 0;
}

.main-car-table-container .call {
	display: block;
	margin: 0 0 20px; 
	padding: 20px 30px 27px; 
	border-radius: 10px; 
	color: var(--var-main-color);
	background: #fff; 
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-size: 16pt; 
	text-align: center; 
	font-style: italic;
}

.main-car-table-container {
	margin: 0 -20px; 
}

.article-car-photo-item .main-car-table-container {
	margin: 0; 
	columns: 2; 
	gap: 30px; 
}

.girl-main-photo div.social-options table td > div, 
.main-car-table-container > div div.social-options table td > div {
	padding-top: 1px; 
	font-size: 9pt; 
}

.girl-main-photo div.social-options table td i, 
.main-car-table-container > div div.social-options table td i {
	display: block;
}

.girl-main-photo div.social-options table td, 
.main-car-table-container > div div.social-options table td {
	padding: 0; 
	text-align: center;
	font-size: 22pt; 
	width: initial;
	line-height: initial;
	cursor: pointer;
}

.girl-main-photo div.social-options table, 
.main-car-table-container > div div.social-options table {
	border-spacing: 10px; 
	padding: 0;
	margin: 0;
}

.girl-main-photo div.social-options, 
.main-car-table-container > div div.social-options {
	position: absolute;
	bottom: 10px; 
	right: 10px; 
	border-radius: 10px; 
	background: rgba(0, 0, 0, 0.15);
	color: #fff; 
}

.main-car-table-container > div {
	position: relative;
}

.main-car-table-container img {
	display: block;
	margin: 0 0 30px; 
	width: 100%; 
	/*width: calc((100% / 2) - 34px);*/
	border-radius: 10px; 
	/*border: 2px solid #fff; */
}

.girl-main-photo {
	position: relative;
}

.main-car-table-container > video {
	display: inline-block;
	margin: 15px 15px 12px; 
	width: calc((100% / 2) - 34px);
	border-radius: 10px; 
	aspect-ration: 9/16;
	/*border: 2px solid #fff; */
}

.filters select {
	text-align: center;
	display: inline-block;
	margin: 5px; 
}

.filters {
	text-align: center;
	margin: -20px 0 -10px;
}

.badges svg {
	display: block;
	width: 150px; 
	margin: 0 auto; 
}

.badges {
	margin: -10px 0 20px; 
}

.articles-more a {
	background: #c7b299 !important; 
}

.articles-more {
	text-align: center;
	margin: 10px 0 40px; 
}

.allow-18 > table > tbody > tr > td > div h1 {
	font-size: 18pt; 
}

.allow-18 > table > tbody > tr > td > div p {
	font-size: 10pt; 
}

.allow-18 > table > tbody > tr > td > div {
	max-width: 300px; 
	margin: 0 auto; 
	background: #222;
	padding: 30px 20px 20px; 
	text-align: center;
}

.allow-18 > table > tbody > tr > td {
	padding: 0;
}

.allow-18 > table {
	width: 100%; 
	height: 100%; 
	border-spacing: 20px; 
}

.allow-18 {
	display: block;
	z-index: 999999;
	position: fixed;
	width: 100%; 
	height: 100%; 
	background: rgba(60, 60, 60, 0.9);
	backdrop-filter: blur(20px);
	top: 0;
	left: 0;
}

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

.container-login > div, 
.container-register > div {
	padding: 20px 30px; 
	margin: 20px; 
	border-radius: 10px; 
	background: rgba(255, 255, 255, 0.03);
}

.container-login h3, 
.container-register h3 {
	padding: 20px 30px; 
	margin: -20px -30px 20px; 
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px 10px 0 0;
}

.container-login, 
.container-register {
	float: left;
	width: 50%; 
}

.girl-list a label {
	display: block;
	margin-top: 5px; 
}

.girl-list a img {
	border-radius: 200px; 
	width: 160px; 
	display: block;
	padding: 20px; 
}

.girl-list a {
	display: inline-block;
	padding: 10px; 
	margin: 10px; 
	background: rgba(255, 255, 255, 0.1);
	color: #aaa; 
	text-decoration: none;
	border-radius: 10px; 
}

.girl-list {
	text-align: center;
}

.girl-list-new article table tr td:last-child div a i {
	display: inline-block;
	margin-right: 5px; 
}

.girl-list-new article table tr td span, 
.girl-list-new article table tr td a {
	text-decoration: none;
	display: inline-block;
	padding: 4px 16px 4px; 
	background: #000; 
	border-radius: 200px; 
	color: #fff; 
}

.girl-list-new article table tr td:last-child div {
	margin: 0 0 10px; 
}

.girl-list-new article.new-items table tr td:last-child {
	vertical-align: middle;
	text-align: left;
}

.girl-list-new article table tr td:last-child {
	vertical-align: top;
	text-align: right;
}

.girl-list-new article table tr td:first-child > div > div > div {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%; 
	text-align: center;
}

.girl-list-new article table tr td:first-child > div > div {
	position: relative;
}

.girl-list-new article table tr td:first-child {
	width: 30px; 
}

.girl-list-new article table tr td {
	padding: 0;
	position: relative;
	vertical-align: top;
}

.girl-list-new article table {
	width: 100%; 
	border-spacing: 15px; 
}

.girl-list-new article img {
	width: 200px; 
	height: 200px; 
	display: block;
	border-radius: 5px; 
}

.girl-list-new article.new-items img {
	width: 80px; 
	height: 80px; 
	display: block;
}

.girl-list-new article label {
	padding-top: 5px; 
	display: block; 
	white-space: nowrap;
}

.girl-list-new article {
	display: inline-block;
	text-align: left;
	background: rgba(255, 255, 255, 0.1);
	color: #aaa; 
	text-decoration: none;
	border-radius: 10px; 
	margin: 10px; 
	width: calc(50% - 24px);
	border: 2px solid rgba(255, 255, 255, 0.15);
}

.girl-list-new article.expiring-subscription {
	border: 2px solid #06f;
}

.girl-list-new article.expiring-valid {
	border: 2px solid #8dbb3f;
}

.girl-list-new article.expiring-soon {
	border: 2px solid #e80;
}

.girl-list-new article.expiring-expired {
	border: 2px solid #e00;
}

.girl-list-new section {
	display: block;
	margin: 0 0 -13px; 
}

.girl-list-new {
	text-align: center;
}




.select2-drop {
	background: #555 !important; 
	color: #eee !important; 
}

.select2-results .select2-highlighted {
	background: #8dbb3f;
}

.select2-container-multi .select2-choices {
	border: 1px solid #555 !important; 
	border-radius: 20px; 
}

.select2-container-multi .select2-choices .select2-search-choice {
	border-radius: 25px !important; 
	padding: 4px 15px 5px 28px !important;
}

.select2-container-multi .select2-search-choice-close {
	left: 13px !important;
}

.select2-container-multi .select2-choices {
	background: #333 !important;
}

.container-inputs-full iframe, 
.container-inputs iframe {
	width: calc(100% - 0px);
	height: calc(100vh - 140px);
	padding: 0;
	margin: 0 0 0;
	border: 0;
	background: #222;
	border-radius: 16px; 
}

.container-inputs fieldset legend {
	font-size: 14pt;
	padding: 4px 20px;
	background: #222;
	border-radius: 5px; 
}

.container-inputs fieldset {
	margin: 30px 0;
	padding: 20px; 
	position: relative;
	border: 0;
	background: #222;
	border-radius: 16px; 
}

.container-inputs fieldset fieldset {
	margin: 10px 0;
}

.container-inputs section obs {
	display: block;
	padding: 2px 0 10px;
	font-size: 9pt;
}

.container-inputs section span.small {
	display: block;
	font-size: 9pt;
}

.container-inputs section label {
	color: #888;
	display: block;
	padding: 0 0 3px 2px;
	font-size: 10pt;
}

.container-inputs section.langs-main > div > label > label {
	display: inline-block;
	padding: 2px 6px 3px; 
	margin: -2px 5px -3px;
	background: #ccc;
	border-radius: 100px; 
	color: #fff;
}

.container-inputs section.langs-main > div > label {
	padding: 20px 0 10px;
}

.container-inputs section input[type=number] {
	text-align: right;
}

.container-inputs section textarea, 
.container-inputs section select, 
.container-inputs section input[type=number], 
.container-inputs section input[type=tel], 
.container-inputs section input[type=email], 
.container-inputs section input[type=date], 
.container-inputs section input[type=date], 
.container-inputs section input[type=url], 
.container-inputs section input[type=password], 
.container-inputs section input[type=text] {
	width: 100%; 
}

.container-inputs section.div-small {
	display: block;
	max-width: 300px; 
	margin: 0 auto 0 0;
}

.container-inputs section.div-quarter:first-child, 
.container-inputs section.div-half:first-child {
	margin-right: 8px; 
}

.container-inputs section.div-quarter:last-child, 
.container-inputs section.div-half:last-child {
	margin-left: 8px; 
}

.container-inputs section.div-half {
	/*float: left;*/
	width: calc(50% - 10px);
	display: inline-block;
}

.container-inputs section.div-quarter {
	width: calc(25% - 10px);
	display: inline-block;
}

section.main-actions a, 
section.main-actions input {
	margin-left: 10px;
}

section.main-actions a:first-child, 
section.main-actions input:first-child {
	margin-left: 0px;
}

section.main-actions {
	text-align: right;
	margin: 20px 0 0;
	padding: 15px 0 20px !important;
	/*background: rgba(59, 115, 162, 0.15);*/
	border-top: 3px solid #333;
}

.container-inputs section.main-actions-top {
	text-align: right;
	margin: 0 0 20px;
	padding: 10px;
	background: rgba(59, 115, 162, 0.15);
	border-bottom: 2px solid #ccc;
}

.container-inputs div.divided-3 section:nth-child(2) {
	margin: 0 20px;
}

.container-inputs div.divided-3 section {
	float: left;
	width: calc(33% - 11px);
}

.container-inputs div.divided-2 section:nth-child(2) {
	margin: 0 0 0 20px;
}

.container-inputs div.divided-2 section {
	float: left;
	width: calc(50% - 11px);
}

.container-inputs section {
	display: block;
	padding: 25px 0;
	position: relative;
}

.girl-list a img.expiring-expired {
	border: 3px solid #e00; 
	padding: 17px; 
}

.girl-list a img.expiring-soon {
	border: 3px solid #e80; 
	padding: 17px; 
}

.girl-list a img.expiring-valid {
	border: 3px solid #8dbb3f; 
	padding: 17px; 
}

.girls-action a:hover {
	text-decoration: underline;
	background: rgba(255, 255, 255, 0.2);
}

.girls-action a {
	display: inline-block;
	padding: 5px 20px 8px; 
	border-radius: 100px; 
	background: rgba(255, 255, 255, 0.12);
	text-decoration: none;
	transition: all 0.4s;
	margin: 0 20px 20px 0;
	border: 1px solid #555;
}

.girls-action {
	margin: 0 0 30px; 
	padding: 10px 0;
}

.btn-default-position {
	position: absolute;
	top: 4px; 
	right: 15px; 
}

#filters-new h3 {
	font-size: 18pt; 
	font-weight: normal;
	margin: 5px 10px; 
	display: inline-block;
}

#filters-new span, 
#filters-new label {
	position: relative;
	font-size: 9pt; 
	margin: 0 0 -10px; 
	display: inline-block;
	color: #aaa; 
}

#filters-new {
	background: #222; 
	border-radius: 10px; 
	padding: 5px; 
	margin: 10px 0;
	text-align: center;
}

#firter-now-visible {
	cursor: pointer;
}

.filter-zone-container a.filter-city-item {
	color: #ccc; 
}

.filter-zone-container a {
	text-decoration: none;
	display: inline-block;
	margin: 6px 10px; 
}

.filter-zone-container {
	border-radius: 5px; 
	border: 1px solid #888; 
	text-align: left;
	margin: 10px 0 0;
	padding: 2px 10px; 
}

#firter-now-applicable-close {
	padding: 20px; 
	text-align: center;
	color: var(--var-main-color) !important;
}

#firter-now-applicable {
	display: none;
}

#filters-key-zone-city > div button {
	display: inline-block;
	padding: 7px; 
	width: 39px; 
	margin-right: 10px; 
}

#filters-key-zone-city > div input {
	display: inline-block;
	width: calc(100% - 69px); 
	margin-right: 10px; 
}

#filters-key-zone-city > div select {
	display: inline-block;
	width: calc(50% - 10px); 
	margin-left: 10px; 
}

#filters-key-zone-city > div {
	margin: 10px; 
	display: inline-block;
	width: calc((100% / 2) - 20px);
}

#filters-key-zone-city {
	margin: 10px -10px; 
}

li[rel=ul-li-cities] ul {
	display: none !important;
}


.admin-video-manager table td video {
	width: 100%; 
	display: block;
	aspect-ratio: 9/16;
}

.admin-video-manager table td {
	width: 50%; 
	vertical-align: top;
	padding: 0; 
}

.admin-video-manager table {
	width: 100%; 
	border-spacing: 20px; 
}

.admin-video-manager {
	margin: 0 -20px; 
}

.girl-links a {
	display: block;
	margin: 8px 0;
}

.girl-links {
	margin: 10px 0 30px; 
}

.label-ai {
	font-family: 'Roboto', sans-serif !important;
	font-size: 10pt !important; 
	padding: 3px 10px !important; 
	font-weight: bold;
	background: #ed1c24 !important;
	color: #fff !important;
	position: relative;
	top: -4px; 
	margin: 0 !important;
	border-radius: 5px; 
}

.label-ai.label-ai-list {
	padding: 2px 10px !important; 
	top: -3px; 
}

.home-bottom-instructions ul {
	padding: 0;
	margin: 20px -10px 10px; 
	list-style: none;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}

.home-bottom-instructions li i {
	color: #034ea2; 
	font-size: 32pt; 
}

.home-bottom-instructions li title {
	font-size: 14pt; 
	display: block;
	margin: 15px 0 5px; 
	font-weight: bold;
}

.home-bottom-instructions li {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px; 
	padding: 20px 15px 10px; 
	margin: 10px; 
	/*height:100px;*/
	flex-basis: calc((100% / 5) - 20px);
	box-sizing: border-box;
	text-align: center;
	border: 0.5px solid rgba(19, 111, 206, 0.6);
}

.home-bottom-instructions > strong {
	text-align: center;
	display: block;
	font-size: 16pt; 
	font-weight: normal;
}

.home-bottom-instructions > div {
	margin: 20px 0 10px; 
	text-align: center;
}

.home-bottom-instructions {
	padding-top: 20px !important; 
	padding-bottom: 0px !important; 
}

article.sw-slideshow .swiper {
	width: 100%; 
	height: 100%; 
}

article.sw-slideshow img {
	object-fit: cover;
	object-position: center;
	width: 100%; 
	height: 100%; 
}

article.sw-slideshow {
	width: 100%; 
	height: 100%; 
	display: block;
	padding: 0; 
	margin: 0;
}

article.sw-slideshow .swiper-button-next, 
article.sw-slideshow .swiper-button-prev {
	color: #eee; 
}

.swiper-pagination-bullet-active {
	background: #eee; 
}

.video-background {
	background: #000;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: -99;
}

.video-foreground,
.video-background iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
	.video-foreground { 
		height: 500%; 
		top: -200%; 
	}
}

@media (max-aspect-ratio: 16/9) {
	.video-foreground { 
		width: 500%; 
		left: -200%; 
	}
}

.car-make-model {
	position: absolute;
	bottom: 20px; 
	right: 20px; 
	width: calc(100vw - 40px);
	font-size: 20pt; 
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	text-align: right;
}

.car-make-model-smallest {
	font-size: 14pt; 
	white-space: initial;
}

.map-img {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.map-contact {
	position: absolute;
	bottom: 52vh;
	left: 50%; 
	width: 240px; 
	margin: 0 0 0 -150px;
	padding: 1px 30px; 
	background: #fff; 
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}









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

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

	.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);
	}

}

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

	header svg.desktop {
		display: none;
	}

	header svg.mobile {
		display: block;
		height: 36px; 
		margin: 12px 4px 7px;
	}

	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 - 150px);*/
		min-height: calc(100vw * 0.7);
		height: calc(100vw * 0.7);
	}

	.top-distance {
		height: 75px; 
	}

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

	header > div > table > tbody > tr > td > ul > li {
		display: block;
		margin: 0 0 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: 100px;
		left: 0;
		width: 100%; 
		height: calc(100vh - 100px - 10px - 30px - 20px); 
		/*height: 100%; */
		background: rgba(0, 0, 0, 1);
		/*background: rgba(255, 255, 255, 1);*/
		/*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;
		/*border-top: 2px solid #d6d6d6;*/
	}

	#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;
		position: relative;
	}

	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: 25px 25px 0 0;
	}

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

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

	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;
	}

	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-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;
	}

	.main-video {
		/*object-position: left;*/
		/*object-position: top;*/
	}

	.article-under-video > section h1 {
		font-size: 20pt; 
	}

	.article-under-video > section p {
		font-size: 16pt; 
	}

	.article-under-video > section table tr td:nth-child(1) {
		width: 25%; 
	}

	.article-under-video > section table tr td:nth-child(2) {
		width: 75%; 
	}

	.articles-container-mini > a > div label {
		font-size: 11pt; 
	}

	.articles-container > article > a > div label {
		font-size: 13pt; 
	}

	.articles-container-mini > a > div span {
		font-size: 9pt; 
	}

	.articles-container > article > a > div span {
		font-size: 11pt; 
	}

	.articles-container-mini > a > div, 
	.articles-container > article > a > div {
		padding: 60px 10px 10px; 
		width: calc(100% - 20px); 
		background: linear-gradient(0deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
	}

	.articles-container-mini > a {
		margin: 10px; 
		width: calc((100% / 3) - 20px);
	}

	.articles-container > article {
		margin: 10px; 
		width: calc((100% / 1) - 20px);
	}

	.articles-container-mini, 
	.articles-container {
		margin: 0 -10px; 
	}

	.main-car-table-container table td {
		display: block;
		width: 100%; 
	}

	.main-car-table-container > img {
		margin-bottom: 15px; 
		/*margin: 10px 10px 0px; */
		/*width: calc((100% / 1) - 34px);*/
		/*border-radius: 10px; */
		/*border: 2px solid #fff; */
	}

	.main-car-table-container > video {
		margin: 10px 10px 0px; 
		width: calc((100% / 1) - 34px);
		border-radius: 10px; 
		aspect-ration: 9/16;
		/*border: 2px solid #fff; */
	}

	.articles-container-mini > a svg.girl-vip {
		width: 50px;
		top: -10px;
		margin: 0 -25px;
	}

	.articles-container > article > a svg.girl-vip {
		width: 60px;
		top: -10px;
		margin: 0 -30px;
	}

	div.girl-new label {
		top: 14px !important; 
		left: 0;
		font-size: 9pt !important; 
		font-weight: normal !important;
	}

	div.girl-new svg {
		width: 35px; 
		display: block;
	}

	div.girl-new {
		position: absolute;
		bottom: 5px; 
		right: 0px; 
	}

	.filters select {
		font-size: 11pt; 
		margin: 5px;
		padding: 3px 10px; 
	}

	.filters {
		margin: -20px 0 -10px;
	}

	div.page-main-title h1 {
		padding: 50px 15px 100px; 
	}

	footer.secret > div:nth-child(1) table td {
		width: 100%; 
		display: block;
	}

	footer.secret > div:nth-child(1) {
		padding-top: 70px; 
	}

	.container-login, 
	.container-register {
		float: none;
		width: initial; 
	}

	.girl-list a img {
		border-radius: 200px; 
		width: 120px; 
		display: block;
		padding: 10px; 
	}
	
	.girl-list a img.expiring-valid, 
	.girl-list a img.expiring-expired, 
	.girl-list a img.expiring-soon {
		padding: 7px; 
	}

	.girl-list a label {
		font-size: 11pt; 
	}

	.girl-list-new article img {
		width: 120px; 
		height: 120px; 
	}

	.girl-list-new article.new-items img {
		width: 70px; 
		height: 70px; 
	}
	.girl-list-new article {
		width: calc(100% - 24px); 
	}

	.girl-list-new article table {
		border-spacing: 10px; 
	}

	.girl-list-new article table tr td:last-child div span, 
	.girl-list-new article table tr td:last-child div a {
		font-size: 9pt; 
		padding: 4px 10px 4px; 
	}


	.btn-default-position {
		top: 4px; 
	}

	.lang-selection > li > ul {
		max-height: 0;
		/*padding: 5px 0 15px;*/
		padding: 0;
	}

	.lang-selection > li:hover > ul {
		max-height: 200px;
		padding: 5px 0 15px;
		padding: 0;
	}

	.lang-selection {
		position: absolute;
		top: 20px; 
		left: 0;
		z-index: 2; 
		display: block !important;
	}

	.articles-container > article > a > div.girl-new label {
		top: 9px !important; 
		left: -10px; 
		font-size: 7pt !important;
	}

	.articles-container > article > a > div.girl-new {
		top: 3px; 
		/*right: 3px; */
	}

	#filters-new h3, 
	#filters-new span, 
	#filters-new label {
		display: block;
		margin: 3px 0; 
	}

	.filter-zone-container a { 
		display: block;
		padding: 8px 10px; 
	}

	#filters-key-zone-city > div {
		width: initial;
		display: block;
	}

	#filters-key-zone-city > div select:first-child {
		margin: 0 5px 0 0;
	}

	#filters-key-zone-city > div select:last-child {
		margin: 0 0 0 5px;
	}

	.article-car-photo-item .main-car-table-container {
		columns: 1;
		gap: 0;
	}

	.home-bottom-instructions ul {
		padding: 0;
		margin: 20px 0 10px; 
		list-style: none;
		display:block;
	}

	.home-bottom-instructions li i {
		color: #136fce; 
		font-size: 20pt; 
		position: absolute;
		left: 15px; 
		top: 15px; 
	}

	.home-bottom-instructions li title {
		font-size: 14pt; 
		display: block;
		margin: 15px 0 5px; 
	}

	.home-bottom-instructions li {
		padding: 1px 15px 8px 70px; 
		margin: 10px; 
		/*height:100px;*/
		text-align: left;
		position: relative;
	}

	.swiper-slide article {
		margin: 0;
		width: calc(100% - 4px);
	}

}