@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.ttf");
    src: url("fonts/Poppins-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Italic.ttf");
    src: url("fonts/Poppins-Italic.ttf") format('truetype');
    font-weight: 400;
    font-style: italic;
	font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Medium.ttf");
    src: url("fonts/Poppins-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-MediumItalic.ttf");
    src: url("fonts/Poppins-MediumItalic.ttf") format('truetype');
    font-weight: 500;
    font-style: italic;
	font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-SemiBold.ttf");
    src: url("fonts/Poppins-SemiBold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-SemiBoldItalic.ttf");
    src: url("fonts/Poppins-SemiBoldItalic.ttf") format('truetype');
    font-weight: 600;
    font-style: italic;
	font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Bold.ttf");
    src: url("fonts/Poppins-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-BoldItalic.ttf");
    src:  url("fonts/Poppins-BoldItalic.ttf") format('truetype');
    font-weight: 700;
    font-style: italic;
	font-display: swap;
}

:root{
	--ks-cookiemate-white: #fff;
	--ks-cookiemate-grey: #D9D9D9;
	--ks-cookiemate-black: #000;

	--ks-cookiemate-icon-svg: url('icons/cookie-header.svg');
	--ks-cookiemate-icon-svg: url('icons/cookiemate.svg');
	--ks-cookiemate-icon-close-svg: url('icons/close.svg');

	--ks-cookiemate-first-primary: #440CFF;
	--ks-cookiemate-first: #fff;
	
	--ks-cookiemate-secondary-primary: #440CFF;
	--ks-cookiemate-secondary: #fff;

	--ks-cookiemate-links: #1c1c1c;
	--ks-cookiemate-links-hover: #440CFF;

	--ks-cookiemate-popup-bgc: #F9F8F5;
	--ks-cookiemate-popup-text: #1c1c1c;
	--ks-cookiemate-popup-text-header: #1c1c1c;

	--ks-cookiemate-accordion-text: #1c1c1c;
	--ks-cookiemate-accordion-bgc: #fff;

	--ks-cookiemate-outline: #00d288;
}

.cookiemate-blur{
	position: fixed;
	top: 0px;
    left: 0px;
    width: 100vw;
    height: 100%;
	background-color: var(--ks-cookiemate-black);
    overflow: hidden;
	opacity: 0.8;
    z-index: 21474835;
}

.cookiemate-widget .cookiemate-menu{
	position: fixed;
	bottom: 5px;
	left: 5px;
	z-index: 21474834;
}

.cookiemate-widget .cookiemate-menu .cookiemate-menu-button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 5px;
	border-radius: 8px;
	border: none;
	font-size: 14px;
	font-weight: 400;
	background:none;
	pointer-events: all;
	cursor: pointer;
	opacity: 1;
	transition: transform 0.3s ease,opacity 1.2s ease-in;
	background: none!important;
}
.cookiemate-widget .cookiemate-menu .cookiemate-menu-button:hover{
	transform: scale(1.1);
}
.cookiemate-widget .cookiemate-menu .cookiemate-menu-button.cookiemate-button-hide{
	opacity: 0;
	pointer-events: none;
}

.cookiemate-widget .cookiemate-menu .cookiemate-menu-button .cookie-icon{
	background-image: var(--ks-cookiemate-icon-svg);
	display: block;
    width: 52px;
    height: 52px;
    background-size: cover;
}

.cookiemate-widget .cookiemate-panel{
	display: none;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open{
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100vw;
	visibility: visible;
	pointer-events: all;
	z-index: 21474837;
	overflow: auto;
	opacity: 1;
	transition: opacity 2s ease;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body{
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	width: 650px;
	background-color: var(--ks-cookiemate-popup-bgc);
	padding: 20px;
	border-radius: 15px;
	gap: 20px;
	box-sizing: border-box;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-header{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-header a:focus,body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-header #cookiemate-close:focus, body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block a:focus, body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button .cookies-option:focus, body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label:focus, body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block .cookiemate-button:focus, body:not(.using-mouse) .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-footer a:focus{
	outline: 3px solid var(--ks-cookiemate-outline)!important;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-header #cookiemate-close{
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	padding: 10px 0;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-header #cookiemate-close.cookiemate-hide{
	opacity: 0;
	display: none;
	visibility: hidden;
	pointer-events: none;
	cursor: auto;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-header #cookiemate-close .cookie-close-icon{
	display: block;
	background-image: var(--ks-cookiemate-icon-close-svg);
	width: 24px;
	height: 24px;
	background-size: cover;
	background-position: center;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-text-bold{
	display: flex;
	position: relative;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 10px 0;
	padding: 0 0 0 30px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ks-cookiemate-popup-text-header);
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-text-bold::after{
	content: '';
	position: absolute;
	left: 0px;
	display: block;
	background-image: url('icons/cookie-header.svg');
	background-size: cover;
	width: 22px;
	height: 22px;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-text,.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-read-more {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: var(--ks-cookiemate-popup-text);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-read-more-hide{
	display: none;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block a{
	font-size: 14px;
	color: var(--ks-cookiemate-links);
	font-weight: 500;
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: color .4s ease;
	cursor: pointer;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block a:hover{
	color: var(--ks-cookiemate-links-hover);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-read-more a{
	text-decoration: none;
	color: var(--ks-cookiemate-links);
	cursor: pointer;
	transition: color .4s ease;
}
.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-text-block .cookiemate-read-more a:hover{
	color: var(--ks-cookiemate-links-hover);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 50px;
	width: 100%;
	border: none;
	border-radius: 10px;
	-webkit-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
	box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
	background-color: var(--ks-cookiemate-accordion-bgc);
	cursor: pointer;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button .cookies-option{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding-left: 10px;
	text-decoration: none;
	border: none;
	outline: none;
	background: none;
	font-size: 14px;
	color: var(--ks-cookiemate-accordion-text);
	cursor: pointer;
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button  .cookies-option::before{
	content: '+';
    display: inline-block;
	font-size: 18px;
	width: 10px;
	color: var(--ks-cookiemate-accordion-text);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button .cookies-option.expand::before{
	content: '-';
	display: inline-block;
	font-size: 18px;
	width: 10px;
}
.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block  .cookiemate-option-toggle-content{
	font-size: 14px;
	color: var(--ks-cookiemate-black);
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
}
.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block  .cookiemate-option-toggle-content p {
	margin: 10px 0px;
	padding: 0 10px;
	color: var(--ks-cookiemate-popup-text);
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
}
.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block  .cookiemate-option-toggle-content.hidden{
	display: none;
	visibility: hidden;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label{
	position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
	display: block;
	width: 64px;
	height: 32px;
	background-color: #6A6B6C;
	border-radius: 200px;
	cursor: pointer;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label:after {
	content: "";
	width: 22px;
	height: 22px;
	position: absolute;
	top: 5px;
	left: 6px;
	background: var(--ks-cookiemate-white);
	border-radius: 180px;
	box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button input {
	width: 0;
	height: 0;
	visibility: hidden;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button input:checked + label {
	background: #00D288!important;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block   .cookiemate-cookies-button input:checked + label:after {
	left: 58px;
	transform: translateX(-100%);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button input:disabled + label {
    cursor: not-allowed;
	background-color: #91e1c5!important;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button .cookiemate-popup{
    position: absolute;
    top: -10px;
    right: 0px;
    transform: translateX(-50%);  
    padding: 15px;
	border-radius: 10px;
    width: 160px; 
    z-index: 1000; 
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    background-color: var(--ks-cookiemate-popup-bgc);
	color: var(--ks-cookiemate-popup-text);
	-webkit-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
    box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button .cookiemate-popup.cookiemate-popup-visible{
	opacity: 1;
    visibility: visible;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label, .cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label:after {
    transition: width 0.3s ease, left 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block:not(:first-child) .cookiemate-cookies-button label:active::after {
	width: 52px;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block .cookiemate-button{
	height: 52px;
	width: 190px;
	padding: 0;
	margin: 0;
	font-weight: 600;
	font-size: 13px;
    border-radius: 48px;
	border: none;
	-webkit-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
    box-shadow: 0px 5px 12px -6px rgba(0,0,0,0.2);
	background-color: var(--ks-cookiemate-secondary);
	color: var(--ks-cookiemate-secondary-primary);
	outline: none;
	cursor: pointer;
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
	transition: background-color .4s ease, color .4s ease;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block .cookiemate-button:hover{
	background-color: var(--ks-cookiemate-secondary-primary);
	color: var(--ks-cookiemate-secondary);	
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block .cookiemate-button:last-child{
	color: var(--ks-cookiemate-first);
	background-color: var(--ks-cookiemate-first-primary);
	transition: background-color .4s ease, color .4s ease;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block .cookiemate-button:last-child:hover{
	background-color: var(--ks-cookiemate-first);
	color: var(--ks-cookiemate-first-primary);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-footer{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-footer a:first-child {
	color: var(--ks-cookiemate-links);
	font-size: 12px;
	font-family: inherit;
	font-family: sans-serif;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	transition: color .4s ease;
	cursor: pointer;
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-footer a:first-child:hover{
	color: var(--ks-cookiemate-links-hover);
}

.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-footer #cookiemate-footer-logo{
	cursor: pointer;
	display: flex;
}

@media (max-width: 720px ) {
	
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body {
		width: 97%;
		margin-top: 200px;
	}
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block {
		flex-direction: column-reverse;
		gap: 10px;
	}
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-buttons-block .cookiemate-button{
		width: 100%;
	}

}

@media (max-width: 360px ) {

	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label {
		width: 50px;
		height: 25px;
	}
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button label:after{
		top: 4px;
		left: 5px;
		width: 16px;
		height: 16px;
	}
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block .cookiemate-cookies-button input:checked + label:after {
		left: 45px;
	}
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body .cookiemate-cookies-blocks .cookiemate-cookies-block:not(:first-child) .cookiemate-cookies-button label:active::after  {
		width: 40px;
	}
}

@media (max-width: 380px ) {
	.cookiemate-widget .cookiemate-panel.cookiemate-open .cookiemate-panel-body {
		padding: 10px;
	}
}