*,
::before,
::after {
/*
	margin: 0;
	padding: 0;
*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root {
	--body-bg: #FAF7F7;
	--body-txt-clr: #000;
	--link-clr: #145bc7;

	--primary-clr-300: aliceblue;
	--primary-clr-400: #0099cc;
	--primary-clr-700: #00465d;

	--secondary-clr-400: #ffcc00;
	
	--green: hsl(90 83% 36%);
	
	--block-bg: #FFF;
	--block-clr: #000;
	--block-radius: 5px;
	--block-border: #dbdbdb;
/*	--block-margin-block: 1rem 0;*/
	--block-margin-block: 1rem 1rem;
	--block-margin-inline: 1.5rem;
	
	--fields-bg: #FFF;
	--fields-clr: #000;
	--fields-radius: 3px;
	--fields-border: #b7bec2;
	
	--zebra-odd: hsla(0, 0%, 98%);
	--small-screen-only: inline-block;
	--large-screen-only: none;
	--link-list-cols: 1;
	
	--translate-bg: rgba(195, 243, 147, 0.24);
	--inner-w: 100%;
	--inner-w-max:100%;
	--footer-bg: #eee;
	--header-pos: relative;
	--header-logo-w: 32px; /* this is actually only used when showing the icon logo <320px */
	--header-country-x:66px;
	--header-country-y:35px;
	--main-margin-top:0;
	--nav-rad:8px;
	--nav-bg:#F3F3F3;
	--nav-border:#FFF;
	--nav-spacing:0.5rem;
	
	--shadow: 0 3px 20px 0 #EEEEEE;
}

:focus {
		outline: 1px solid var(--link-clr);
}

html {
	-webkit-text-size-adjust: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
body {
	color: var(--body-txt-clr);
	background-color: var(--body-bg);
	font-size: 1.0311rem; /*17px*/
	font-weight: 400;
	margin: 0;
	padding: 0;
	
}
body {
	line-height: 1.4em;
	position: relative;
	min-height: 100%;
}
body.modal{ 
	background: #FFF;
	padding:1.0rem;
}

img {
	color: #adadad;
	display: block;
	border: none;
	transition:transform 300ms ease-in-out;
}
img.user{
	border-radius: 50%;
	 object-fit:cover;
}
strong,
b {
	font-weight: 600;
}
ul {
	margin: 1em 2em;
	padding:0;
}
p {
	margin: 10px 0px;
}
a {
	color: var(--link-clr);
	text-decoration: none;
}
a:not(.btn):active {
	color: var(--link-clr);
}
a:not(.btn):hover {
	color: #212121;
	text-decoration: underline;
}

.anchor {
	color: var(--link-clr);
	cursor: pointer;
}

span["bt-modal-open"]{
	cursor:pointer;
	padding-left:5px;
	display: inline;
	color:var(--link-clr);
}

.float_r {
	float: right;
}
.float_l {
	float: left;
}
.small-screen-only {
	display: var(--small-screen-only) !important;
}
.small-screen-no {
	display: var(--large-screen-only) !important;
}

.hidden {
	display: none;
}

.fa-heart {
	cursor: pointer;
	color: #ddd;
}
.fa-heart:hover {
	color: red;
}
.loveit .love-in i.fa {
	color: var(--primary-clr-400) !important;
}
li.marked .fa-heart,
li.marked .fa-heart-o,
.love-in i.fa {
	color: red !important;
}
.fa-star,
.fa-star-o,
.fa-circle,
.fa-circle-o {
		color: var(--secondary-clr-400);
}
.box-shadow {
	box-shadow: 0 2px 10px 0 rgba(160, 160, 160, 0.3);
}
.note {
	font-size: 0.85em;
	font-style: italic;
	color: green;
}
.show-map,
.clickable,
*["link-ext"] {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-rendering: optimize-legibility;
	 margin: 0;
	padding: 0;
	scroll-margin-top:4em; /* scroll to offset */
}
h1 {
	font-size: 1.4em;
	margin: 1rem var(--block-margin-inline);
	padding:0;
	font-weight: 700;
	color: #000;
	line-height: 1em;
}
h2 {
	font-size: 1.2em;
	padding: 4px 20px;
	font-weight: 500;
}
h3 {
	font-size: 1em;
	padding: .25rem 2rem;
	font-weight: 500;
}
h4 {
	font-size: 1em;
	padding: 2px 20px;
	font-weight: 500;
}
h5 {
	font-size: 1em;
	font-weight: normal;
}
h2 a .fa:hover {
	color: var(--primary-clr-400);
}
h2 a.btn {
	float: right;
	font-size: 0.8em !important;
	font-weight: 300;
	padding: 5px 10px !important;
}
em {
	font-style: italic;
}

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

/* modal windows */
:modal{
	width:100vw;border:none;
	background-color: transparent;
}
:modal::backdrop {
	background-color: #0099cc;
	opacity: .3;
}
:modal .modal__container{
	width: fit-content;
	min-width:300px;
	max-width: 90vw;
	max-height: 80svh; 
	
	border:1px solid white;
	border-radius: 10px;
	background-color: #FFF;
	margin: 3rem auto;
	overflow: hidden;
	box-shadow: var(--shadow);
/* 	 */
}
:modal .modal__inner{
/* 	overflow: hidden; */
}
:modal .modal__title{
	position: sticky;
	top:-1.2rem;
	left:0;
	width:100%;
	padding:.5rem 1em;
	font-size: 1em;
	font-weight: 500;
	background: var(--primary-clr-300);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
:modal[open]{
	animation: 
	fade-in 1000ms forwards;
}
:modal[open]::backdrop{
	animation: fade-in 400ms forwards;
}
.modal__contents{
	padding: 1em 1.5rem;
	overflow-y: scroll;
	height: 80svh;
	width: 100%;
	position: relative;
}
.modal__contents p{
	margin-top:0;
}
.modal__bt-close{
	width:20px;
	height:20px;
	color:#000;
	font-size: 1.0rem;
	border:transparent;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 2;
	position: relative;
	top:0;
	right:0;
}

/* warning messages */
.alert-msg {
	padding: 1em 1.5em;
	margin-block: var(--block-margin-block);
	margin-inline:var(--block-margin-inline); 
	background: #ffffff;
	position: relative;
	overflow: hidden;
	border-radius: var(--block-radius);
	border: 1px solid var(--block-border);
transition:height 300ms ease-in;
}
.block .alert-msg {
	margin: 1px 0 0 0;
	border: none;
	border-radius: 0;
}
.alert-msg__close{
	position: absolute;
	top:-5px;
	right:2px;
	padding:5px;
	font-size:.6em;
	cursor: pointer;
}
.alert-msg ul {
	margin:0;
	padding:0;
}
.alert-msg ul{
	margin-left:1rem;
}
.alert-msg.hide{
	display:none;
}
.alert-msg .btn,
.alert-msg a {
	margin-left: 10px;
}
.alert-msg.info {
	background-color: #ffffe7;
}
.alert-msg.alert {
	background-color: #ffecec;
}
.alert-msg.advice {
	background-color: #eaffc2;
}
.alert-msg.ok {
	background-color: #e2f1d6;
}
.alert-msg.question {
	background-color: #eaffc2;
}
.alert-msg.center {
	text-align: center;
}
.alert-msg li.selected {
	font-weight: 600;
}

.not-verified,
.not-verified a {
	color: red;
}
.verified{
	color:green;
}


/* page container to enable footer to be placed at the bottom of the page*/
#container {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* HEADER */
.header {
	background: #fff;
	position: var(--header-pos);
	isolation:isolate;
	z-index: 1;
	box-shadow: 0 0 10px 0 #171b241a;
	/* following not needed on small screens but on desktop header is position fixed */
	width:100%; 
	top:0;
}
.header__inner {
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--nav-spacing);
	padding: .75em var(--block-margin-inline);
	 background: #fff; /* to hide lang dropdown animation*/
}
.header__logo {
	width: var(--header-logo-w,32px);
	min-width: var(--header-logo-w);
	position: relative;
}
.header__logo img {
	width: 100%;
}
.header__logo a:focus img{
	border:1px solid var(--link-clr);
}
.header__country {
	position: absolute;
	left: var(--header-country-x);
	top: var(--header-country-y);
	margin-left: 10px;
	font-weight: 500;
	font-size: .9em;
}
.header__dev {
	font-size: 1.2em;
	font-weight: 700;
	color: red;
	margin-left: 10px;
	white-space: nowrap;
}
.header__spacer {
	flex-shrink: 1;
	width: 100%;
}

body.home h1,
body.error-404 h1 {
	margin: 2em 0;
	padding: 0 20px;
	text-align: center;
}
.main__inner,
.header__inner,
div.inner,
.breadcrumbs ul {
	margin: 0 auto;
	position: relative;
	text-align: left;
	width: var(--inner-w);
	max-width: var(--inner-w-max);
}
main {
	margin-top: var(--main-margin-top);
/* 	padding-top: 2rem; */
}
/*
body.list main,
body.item-details main,
body.home main{
	padding-top:0;
}
*/
details {
	padding: 1em 1.5em;
	margin-bottom: 0;
	border-bottom: 1px solid var(--block-border);
}
summary {
	font-size: 1.05em;
	font-weight: 500;
	cursor: pointer;
	color: var(--link-clr);
}


.bt-back-top {
	padding: 1rem 1.5rem;
	display: inline-block;
}
.bt-back-top .fa {
	font-size: 0.75em;
}


ul.list-cat {
	scroll-margin-top:4em; /* scroll to offset */
	display: flex;
	width: 100%;
	list-style: none;
	margin: .5rem 0;
	padding: 0 var(--block-margin-inline);
	align-items: center;
	border-bottom: 1px solid #ddd;
	gap: 1rem;
/* 	overflow: hidden; */
}
ul.list-cat li span,
ul.list-cat li a {
	display: block;
	border-bottom: 4px solid #fff;
	padding: .25rem;
	font-size: clamp(.9em, 2vw, 1em);
	white-space: nowrap;
}
ul.list-cat li a:hover {
	border-color: #ddd;
}
ul.list-cat li span.current,
ul.list-cat li a[aria-current="page"],
ul.list-cat li.selected {
	border-color: var(--primary-clr-400);
}


/* footer */
footer {
	font-size: 0.9em;
	line-height: 1.1em;
	margin: 0;
	 margin-top: 2rem;
	overflow: hidden;
	background: var(--footer-bg);
	padding: 30px 20px 70px;
	height: auto;
}
.footer__title {
	margin-bottom: 15px;
	font-size: 1.1em;
}
.footer__nav {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.footer__nav nav {
	flex: 1;
}
.footer__nav li::marker {
	color: #666;
}
.footer__nav li {
	margin: 5px 0 10px;
}
.footer__nav li a {
	padding: 2px 0;
	display: inline-block;
}

ul.footer__icons {
	margin: 0;
	list-style: none;
	display: flex;
	gap: 15px;
}
footer .fa {
	font-size: 2em;
	color: #888;
}
.footer__copy{
	margin-top: 20px;
	text-align: center;
}

/* COMMON BLOCKS AND FORMS */
.block {
/* 	margin-block: var(--block-margin-block); */
margin-block: 1rem 0;
	margin-inline:  var(--block-margin-inline);
	background: var(--block-bg);
	border-radius: var(--block-radius);
	color: var(--block-clr);
	padding: 0px;
	position: relative;
	box-shadow: var(--shadow);
}

.block__no_border{
	border:none !important;
}

.ad-publish .block,
.block__border {
/*
	border: 1px solid var(--block-border);
	margin:0 0 var(--block-margin-block) 0;
*/
}
.ad-publish .block:first-of-type {
 	margin-top: var(--block-margin-block);
}
.block__center {
		text-align: center;
}
.block--transparent{
	background: transparent;
	box-shadow: none;
}
.alert-msg.single,
.block--single {
	margin-inline: auto;
		max-width: 600px;
/* 		margin-inline:auto; */
/*	 	margin: 0 auto var(--block-margin-block); */
}

.block	h2,
.block .block__title {
	font-weight: 500;
	font-size: 1em;
	padding: .8em 1.5em;
	background: var(--primary-clr-300);
	display:flex;
	align-items: center;
}

.block__title a{
	margin-left:auto;
}
.block__inner {
	padding: 1em 1.5em;
}
.block__inner ul ul {
	list-style: circle;
}
.block__inner li {
	text-align: left;
}
.block__inner li a:not(.btn) {
	padding: 6px 10px;
	display: block;
}

/*
.block .instructions {
	background: rgba(255, 254, 240, 0.8);
	padding: 10px 20px;
}
*/
.block__inner--flex{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:.5em;
}
.block__footer {
	text-align: right;
	padding: 10px 20px;
	overflow: hidden;
	border-top: 1px solid var(--block-border);
	background: #DDD;
}
.block__footer.alert-msg {
	margin-bottom: 0;
	text-align: left;
}
.block__footer.alert-msg p {
	margin: 0;
}
.block-button {
/* 	margin: var(--block-margin-block) var(--block-margin-inline) ; */
	margin-block: var(--block-margin-block);
	margin-inline: auto;
	text-align: center;
}

input.icons {
	padding-left: 30px;
}
.list-total {
	font-size: 0.85em;
	color: #666;
}
.list-total.alert {
	color: red;
}
ul.list-links{
	column-count: var(--link-list-cols);
	background: var(--block-bg);
	border-radius: var(--block-radius);
	color: var(--block-clr);
/* 	border: 1px solid var(--block-border); */
	margin:.5rem 0 1rem;
	padding:1rem 2rem;
	list-style: none;
	box-shadow: var(--shadow);
}
ul.list-links--small{
	font-size: 0.9rem;
	line-height: 1.4rem;
}
ul.list-links.single-col{
	column-count: 1;
}
.list-links__title{
	list-style:none;
	font-weight:500;
	margin-left:-1rem;
	font-size:1.1rem;
}
.list-links__title:not(:first-child){
	margin-top:1rem;
}
ul.list-links li{
	padding:.25rem 0;
	margin:0;
}
ul.list-links li::marker {
	color: #cccccc;
}
ul.list-links ul{
	margin:.25rem .25rem .25rem .5rem;
}
#email-reminder {
	flex-direction: column;
}
#bt-send-reminder {
	margin-top: 10px;
}

.grid-container {
 	display:grid;
/* 	grid-template-columns: 1fr; */
	grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
	gap: 3em;
	margin:0 var(--block-margin-inline) 2rem;
}

/* call to action - publish ad */
.publish-promote {
	padding: 1em;
	border-radius: var(--block-radius);
	text-align: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 0;
	background-image: url("/assets-web/images/bg-publish.jpg");
}
.publish-promote__title {
	font-size: clamp(1rem, 2.5vw, 1.3rem);
	margin: 0 0 20px;
	padding: 0;
	background: transparent !important;
	border: none;
}
body.publish .publish-promote {
	background-position-y: -20px;
	min-height: 160px;
	padding-top: 20px;
	text-align: center;
 
}
body.publish .block{
	margin-top:2em;
}

.num-reviews {
	margin-left: 4px;
	text-transform: lowercase;
}

/* contract options */
.contracts{
	position: relative;
	height:200px;
}
.contracts__rows{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	transform: translateX(0);
	transition: transform 1000ms ease-in-out;
	background: #FFF;
	}
.conctacts__rows.start-point{
	left:-1000px;
}
.contracts__rows.hide{
	animation: run-out 1000ms forwards;
}
.contracts__rows.show{
	animation: run-in 1000ms forwards;
}


.price-period,
.price-currency {
	font-size: 0.8em;
	font-weight: 300;
	text-transform: lowercase;
}

ul.payments{
margin:1em 0;
}
ul.payments li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:.3em 0;
}
ul.payments li + li{
	border-top:1px solid #DDD;
}
ul.payments .payments__price{
	font-weight: 700;
}



.contract-types{
	border:1px solid var(--block-border);
	border-radius: var(--block-radius);
	margin:0 1.5rem 2rem;
}
.contract-types__row{
	display: flex;
}
.contract-types__row > *{
	flex:20;
	border-right:1px solid var(--block-border); 
}
.contract-types__row > *:first-child{
	width:40%;
	min-width:40%;
	
}
.contract-types__row > *:last-child{
	border-right:none;
	
}
.contract-types__row:nth-of-type(2n) {
	background-color: var(--primary-clr-300);
}

.contract-types__title{
	padding: 1rem 0;
	text-align: center;
	font-weight: 500;
	font-size: clamp(1.0rem, 2.5vw, 1.3rem);
	color: var(--primary-clr-400);
}
.contract-types__title .ad-price-title-note {
	color: #333;
	font-size: 0.7em;
	padding-top: 10px;
	font-weight: 400;
}
.contract-types__price {
	margin-top:.5rem;
	font-size: clamp(1.0rem, 2.5vw, 1.4rem);
	color: var(--green); 
}
.contract-price-notes {
	font-weight: 300;
	font-size:	clamp(0.8rem, 2.5vw, 0.9rem);
	flex-grow: 1;
 }
 
 
.contract-types___desc,
.contract-types___advantage,
.contract-types___check{
	margin:0;
	padding:1rem 1.5rem;
}

.contract-types___check{
	text-align: center;
	color: var(--green);
}
.contract-types__list .notes{
	font-size: 0.9em;
	color: #999;
	font-weight: 400;
}


.contract-types___desc {
	font-size:0.9rem;
}
.publish-points{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
	gap:2rem;
	list-style: none;
	padding:0;
	margin:0 1.5rem 2rem;
}
.publish-points li{
	border:1px solid var(--block-border);
	border-radius: var(--block-radius);
	padding:1rem;
}
.publish-points__title{
	font-weight: 700;
	
}

.skeleton {
  animation: skeleton-loading 3s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 90%);
  }
}

.skeleton-text {
  width: var(--skeleton-w, 100%);
  height: 0.7rem;
  margin-block: 0.25rem;
  border-radius: 0.25rem;
  background-color: hsl(200, 20%, 80%);
}

/*
.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}
*/



@media all and (min-width: 768px) {
	.publish-points,
	.contract-types{
		margin:0 0 2rem;
	}
}


/* reservations 8ads & client zone */

.reserve__data{
	margin:0;
	padding:0;
}
.reserve__data li{
	display: flex;
	align-items: center;
	padding-block:.25rem;
}
.reserve__data .val{
	margin-left:auto;
}
.reserve__total{
	border-top:1px solid #DDD;
	font-weight: 700;
}

.reserve .date-picker{
	border:none;
	width:100%;
	background: transparent;
	padding:0 1rem 0 2.5rem;
	height: 3rem; /* use height rather than padding to keep the hieht if the element has no text*/
	font-size: 1rem;
	color: var(--link-clr);
	cursor: pointer;
	background-image: url( '/assets-web/svg/calendar.svg' );
	background-repeat: no-repeat;
	background-position: .5rem center;
	text-align: left;
}

.login-tabs{
	width: 100%;
	display: flex;
}
.login-tabs > * {
	width: 100%;
	flex: 1 1 100%;
	text-align: center;
	padding: 1rem;
	border-bottom: 4px solid #FFF;
	color: #000;
	font-weight: normal;
}
.login-tabs > *.active{
	border-color: var(--primary-clr-400);
	color: #333;
	font-weight: 700;
}
.login-tabs > *:not(.active):hover{
	border-color: var(--primary-clr-300);
}
/* //designpieces.com/2012/12/social-media-colors-hex-and-rgb*/
.fa-facebook,
a:hover .fa-facebook {
	color: #3b5998 !important;
}
.fa-twitter,
a:hover .fa-twitter {
	color: #00aced !important;
}
.fa-linkedin,
a:hover .fa-linkedin {
	color: #007bb5 !important;
}
.fa-tiktok,
a:hover .fa-tiktok {
	color: #55acee !important;
}
.fa-reddit,
a:hover .fa-reddit {
	color: #ff4500 !important;
}
.fa-instagram,
a:hover .fa-instagram {
	color: #e95950 !important;
}
.fa-whatsap,
a:hover .fa-whatsap {
	color: #25d366 !important;
}
.fa-youtube,
a:hover .fa-youtube {
	color: red !important;
}
.fa-discord,
a:hover .fa-discord {
	color: #7289da !important;
}
.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.fa-fw {
	/* Very useful to design list */
	width: 1.28571429em;
	text-align: center;
}
.fa-lg {
	font-size: 1.33333333em;
	line-height: 0.75em;
	vertical-align: -15%;
}
.fa-2x {
	font-size: 2em;
}
.fa-3x {
	font-size: 3em;
}
/* Icon pulse */
.fa-pulse {
	display: inline-block;
	animation: pulse-icon 2s infinite linear;
}
.pulse {
	animation: pulse-button 2s infinite;
}
.flash-field {
	/* used when translating text */
	animation: yellow-fade 2s ease-in-out 0s;
}




@-webkit-keyframes run-out {
	0% {
		left: 0;
	}
	100% {
		left: 1000px;
	}
}
@-webkit-keyframes run-in {
	0% {
		left: -1000px;
	}
	100% {
		left: 0;
	}
}

@keyframes fade-in{
	0%{ opacity:0;}
	100%{opacity:100%;}
}
@keyframes pulse-button {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}
@keyframes pulse-icon {
	0% {
		color: #fff;
	}
	50% {
		opacity: 1;
		color: red;
	}
	100% {
		color: #fff;
	}
}
@keyframes yellow-fade {
	from {
		background-color: #fffcdc;
	}
	to {
		background-color: #fff;
	}
}


/* MEDIA QUERIES */
@media (hover: none) {
	a:hover {
		color: inherit;
	}
}



/* 481 to 800 */
@media all and (min-width: 480px) {
	:root{
		--link-list-cols: 2;
	}
}

@media (prefers-color-scheme: dark){
	:root{
/*
		--body-bg: #333;
		--block-bg: #777;
		--body-txt-clr: #FFF;
*/
/*
	--body-txt-clr: #000;
	--link-clr: #145bc7;

	--primary-clr-300: aliceblue;
	--primary-clr-400: #0099cc;
	--primary-clr-700: #00465d;

	--secondary-clr-400: #ffcc00;
	
	--green: hsl(90 83% 36%);
	
	--block-bg: #FFF;
	--block-radius: 3px;
	--block-border: #dbdbdb;
	--block-margin-block: 1em;
	--block-margin-inline: 1.5rem;
	
	--fields-bg: #FFF;
	--fields-clr: #000;
	--fields-radius: 3px;
	--fields-border: #dcdcdc;
	
	--zebra-odd: hsla(0, 0%, 98%);
	--small-screen-only: inline-block;
	--large-screen-only: none;
	--link-list-cols: 1;
	
	--translate-bg: rgba(195, 243, 147, 0.24);
	--inner-w: 100%;
	--inner-w-max:100%;
	--footer-bg: #eee;
	--header-pos: relative;
	--header-logo-w: 32px; /* this is actually only used when showing the icon logo <320px * /
	--header-country-x:66px;
	--header-country-y:35px;
	--main-margin-top:0;
	--nav-rad:8px;
	--nav-bg:#F3F3F3;
	--nav-border:#FFF;
	--nav-spacing:0.5rem;
	
	*/
	}
}
@media all and (min-width: 768px) {
	:root {
		--block-rad: 6px;
		--block-margin-inline:0;
		--small-screen-only: none;
		--large-screen-only: inline-block;
		--link-list-cols: 3;
		--inner-w: 95%;
		--inner-w-max:95%;
		--header-logo-w:180px;
		--header-pos: fixed;
		
		--main-margin-top:4rem; /* important - if we remove the fixed header we must also remove this margin */
		--header-country-x:90px;
		--header-country-y:45px;
		--footer-bg: #eee url("/assets-web/images/bg-footer.png") no-repeat right 50%;
	}
	
	h1,
	h2,
	h3,
	.header,
	.bt-back-top,
	ul.list-cat,
	.block-list h3,
	.block-list .block__title {
		padding-left: 0;
	}
	.footer__nav,
	#email-reminder {
		flex-direction: row;
	}
	.publish-promote {
		background-image: url("/assets-web/images/bg-promote.jpg");
	}
	body.publish .publish-promote {
		background-position-y: -70px;
	}
	#cookie-wrapper {
		bottom: 0;
	}
	.block {
/* 		border: 1px solid var(--block-border);  */
	}
	#bt-send-reminder {
		margin-top: 0;
		
	}
}

@media all and (min-width: 1200px) {
	:root{
		--inner-w: 100%;
		--inner-w-max:1152px;
	}
}