/* HIDE DURING PAGE LOAD (show via JS)
-------------------------------------------------- */



/* CUSTOMIZE THE GLOBAL STYLES
-------------------------------------------------- */

body {
    font-family: 'ff-good-web-pro', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
	color: #222;
    background-color: #222;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
html, body {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #222;
}
a i {
	color: #222;
}
a:hover {
    color: #e2001a;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'ff-good-web-pro-extra-conden', sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
}
h1, .h1 {  
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: normal;
}
h2, .h2 {
    font-size: 1.4rem;
	padding-top: 1em;
    color: #e2001a;
}
h3, .h3 {
    font-size: 1.2rem;
	padding-top: 1em;
}
h4, .h4 { 
    font-size: 1rem;
}
figure {
	/* margin: 0; */
}
.fullBg {
	position: fixed !important;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
    transition: all ease 1s;
}
.persistent .fullBg {
    opacity: .5;
}
@media (min-width: 400px){
	h1, .h1 {
	    font-size: 2rem;
	}
	h2, .h2 {
	    font-size: 1.6rem;
	}
	h3, .h3 {
	    font-size: 1.4rem;
	}
	h4, .h4 {
	    font-size: 1.1rem;
	}
}
@media (min-width: 760px){
	h1, .h1 {
	    font-size: 2.4rem;
	}
	h2, .h2 {
	    font-size: 1.8rem;
	}
	h3, .h3 {
	    font-size: 1.6rem;
	}
	h4, .h4 {
	    font-size: 1.2rem;
	}
}
@media (min-width: 1020px){
	h1, .h1 {
	    font-size: 3rem;
	}
	h2, .h2 {
	    font-size: 2rem;
	}
}

/* HEADER
-------------------------------------------------- */

.siteHeader {
    background-color: #fff;
    position: absolute;
    z-index: 100;
    width: 100vw;
    height: 80px;
	box-shadow: 0 0 10px rgba(0,0,0,0.25);
	top: 0;
	left: 0;
    transition: all ease .5s;
}
.persistent .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
}
a#top {
    position: absolute;
    margin-top: -1px;
}

/* Logo */
.siteLogo {
    position: absolute;
    z-index: 10;
    left: 20px;
    top: 0;
    width: 300px;
    transition: all ease .5s;
}
.persistent .siteLogo {
    top: 0;
    width: 200px;
}
.siteLogo a {
    display: block;
    height: 80px;
    background: url("../img/logo-sob.png") no-repeat center center;
    background-size: contain;
    transition: all ease .5s;
}
.persistent .siteLogo a {
    height: 60px;
}
.siteLogo span {
	display: none;
}
@media (max-width: 500px){ 
    .siteLogo {
        width: 200px;
    }
}

/* Lang Menu */
.langMenu, .langMenu div, .langMenu ul, .langMenu li {
	display: inline;
}
.langMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.langMenu ul li.wpml-ls-item-fr span span,
.langMenu ul li.wpml-ls-item-nl span span {
    display: none;
}
.langMenu ul li.wpml-ls-item-fr span:before {
    content: 'FR';
}
.langMenu ul li.wpml-ls-item-nl span:before {
    content: 'NL';
}
.langMenu ul li a {
    background-color: #ff0000;
    background: rgb(255,0,0);
    background: linear-gradient(45deg, rgba(255,0,0,1) 0%, rgba(167,37,37,1) 100%);
    margin-left: 1em;
    font-size: 0.8em;
    padding: 8px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: all ease .5s;
    border-radius: 20px;
    display: inline-block;
}
.langMenu ul li a:hover {
    background-color: #D60000;
    background: rgb(167,37,37);
    background: linear-gradient(45deg, rgba(167,37,37,1) 0%, rgba(255,0,0,1) 100%);
    color: #fff;
}

/* Link Lang */
nav li.linkLang a, nav li.wpml-ls-item a {
    background-color: #ff0000;
    background: rgb(255,0,0);
    background: linear-gradient(45deg, rgba(255,0,0,1) 0%, rgba(167,37,37,1) 100%);
    padding: 4px 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: all ease .5s;
    border-radius: 20px;
    display: inline-block;
}
nav li.linkLang a:hover, nav li.wpml-ls-item a:hover {
    background-color: #D60000;
    background: rgb(167,37,37);
    background: linear-gradient(45deg, rgba(167,37,37,1) 0%, rgba(255,0,0,1) 100%);
    color: #fff;
}
nav li.wpml-ls-item a {
    display: block !important;
    margin-top: 10px;
}


/* navbar*/
.mobileMenu {
    cursor: pointer;
	color: #222;
	font-weight: 700;
	letter-spacing: 1px;
	position: fixed;
    z-index: 10;
	right: 10px;
	top: 15px;
	padding: 10px 20px;
	transition: all .7s ease;
}
.mobileMenu i {
	color: #f00;
}
.persistent .mobileMenu {
	position: absolute;
    top: 10px;
}
.mobileMenu:hover {
	color: #e2001a;
}
.mobileMenu:hover i {
	color: #000;
}
header nav {
    position: fixed;
    z-index: 11;
    width: 0;
	height: 100vh;
    top: 0;
	right: -10vw;
    background: linear-gradient(-90deg, rgba(226,0,26,.9) 0%, rgba(22,22,22,.65) 100%);
    transition: all ease 1s;
}
header nav.fullWidth {
    width: 100vw;
	right: 0;
}
.mobileMenuContainer {
	position: absolute;
	z-index: 12;
	top: 0;
	right: -10vw;
	background-color: #fff;
	height: 100vh;
	min-height: 100vh;
	min-width: 0;
	max-width: 0;
	margin-left: 0;
	width: 0;
	display: inline-block;
	overflow-y: auto;
    transition: all ease 1s;
}
.mobileMenuContainer.fullWidth {
	right: 0;
	min-width: 60vw;
	max-width: 90vw;
	width: auto;
	margin-right: 9vw;
}
.mainMenuClose {
	display: block;
	position: absolute;
	z-index: auto;
	right: 1.5rem;
	font-size: 2rem;
	color: #f00;
	top: 1.5rem;
	cursor: pointer;
	text-shadow: 0 0 3px rgba(0,0,0,0.25);
    transition: all ease 1s;
}
.mainMenuClose:hover {
	color: #e2001a;
}
.scrollableMenu {
	padding: 40px;
}
.logoMenu {
    display: block;
    height: 80px;
    margin-bottom: 20px;
    background-image: url("../img/logo-sob.png");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Search bar in menu */
.searchMenu {
    margin-bottom: 20px;
}
.searchMenu .is-form-style input.is-search-input {
    padding: 10px 20px !important;
    border-radius: 20px !important;
}

.mainMenuContainer {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 300px;
    -moz-column-width: 300px;
    column-width: 300px;
    column-gap: 40px;
    column-rule-style: solid;
    column-rule-width: 1px;
    column-rule-color: #e5e5e5;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav li.menu-item {
    -webkit-column-break-inside: avoid; /* WebKit fix */
    page-break-inside: avoid; /* Firefox fix */
    break-inside: avoid; /* W3C */
}
header nav li a {
    display: block;
    text-decoration: none;
	border-top: 1px solid #e5e5e5;
    color: #222;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 10px 20px;
    transition: all ease-in-out .5s;
}
header nav li li a {
    font-size: 1rem;
    padding: 5px 10px 5px 30px;
	text-shadow: none;
	border-top: none;
	color: #222;
}
header nav li li:last-child {
	padding-bottom: 10px;
}
header nav a:hover {
    background-color: #e2001a;
	color: #fff;
}
header nav .current_page_item a, header nav .current_page_item a:hover {
    color: #000;
    font-weight: 600;
    font-style: italic;
    background-color: transparent;
    cursor: default;
}
header nav .current_page_item a:before {
    margin-left: -1.5em;
    padding-right: 0.5em;
    content: "->";
    color: #f00;
}


/* Social Menu */
.socialMenu {
	margin-top: 20px;
    -webkit-column-break-inside: avoid; /* WebKit fix */
    page-break-inside: avoid; /* Firefox fix */
    break-inside: avoid; /* W3C */
}
.socialMenu a {
    display: block;
    text-decoration: none;
    color: #222;
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: all ease-in-out .5s;
}
.socialMenu a i {
    color: #f00;
}
.socialMenu a:hover {
	background-color: #e2001a;
	color: #fff;
}
.socialMenu a:hover i {
    color: #fff;
}

/* Shop menu */
nav li.linkShop a {
    background-color: #999;
    background: rgb(153,153,153);
    background: linear-gradient(45deg, rgba(153,153,153,1) 0%, rgba(34,34,34,1) 100%);
    padding: 4px 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: all ease .5s;
    border-radius: 20px;
    display: inline-block;
}
nav li.linkShop a:hover {
    background-color: #222;
    background: rgb(34,34,34);
    background: linear-gradient(45deg, rgba(34,34,34,1) 0%, rgba(153,153,153,1) 100%);
    color: #fff;
}

/* Special Menus */
.specialPagesMenu {
    -webkit-column-break-inside: avoid; /* WebKit fix */
    page-break-inside: avoid; /* Firefox fix */
    break-inside: avoid; /* W3C */
}
.linkBlock a {
    display: block !important;
    margin-top: 10px;
}

/* CONTENT
-------------------------------------------------- */

.siteMain {
    min-height: calc(100vh - 30px);
}
.container {
    color: #444;
	padding: 120px 40px;
    margin: 0 auto;
    max-width: calc(100vw - 80px);
    min-height: calc(100vh - 300px);
}
@media (min-width: 1000px){
    .container {
        max-width: 880px;
		margin: 0 5% 0 auto;
    }
}
@media (min-width: 1200px){
    .container {
        max-width: 1000px;
		margin: 0 5% 0 auto;
    }
}
.sharing strong {
    display: block;
    font-size: 10px;
    padding: 20px 0 10px 0;
}
article a, .content_block a {
    color: #000;
    border-bottom: 1px solid #e2001a;
}
article a:hover, .content_block a:hover {
    border-bottom: 1px solid #ccc;
}
article .wp-block-button a, 
.content_block .wp-block-button a,
article .wp-block-button a:hover, 
.content_block .wp-block-button a:hover {
    border-bottom: none;
}
article #cff a, article #cff a:hover {
    border-bottom: none;
}
figure img {
    max-width: 100%;
    width: auto;
    height: auto;
}
article figure a, 
article figure a:hover,
.content_block figure a,
.content_block figure a:hover {
    border-bottom: none;
}
.pageContent {
    background-color: #fff;
    padding: 40px;
}
.pageH1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 0;
    padding: 0;
    text-shadow: 0 0 4px rgba(0,0,0,.25);
}

/* Effets et positions */
.leftTopDecal {
    margin: -40px 0 0 -60px;
    border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.25);
    background-color: #fff;
}

/* accordions */
.wp-block-pb-accordion-item {
    border: 1px solid #e9e9e9;
    padding: 0 10px;
    margin-bottom: 10px;
}
.wp-block-pb-accordion-item .wp-block-pb-accordion-item {
    border: none;
    border-top: 1px solid #f00;
    padding: 0;
}
.wp-block-pb-accordion-item h2,
.wp-block-pb-accordion-item h3 {
    padding: 0;
}

h2:focus, h3:focus {
    outline: none;
}


/* FORMS
-------------------------------------------------- */
input, button, select, textarea {
    border: 1px solid #aaa;
    padding: 10px 20px;
}
input[type=text], input[type=email], select, textarea {
    width: calc(100% - 40px);
}
input[type="radio"]{
    padding: inherit;
    border-radius: 0;
}
input[type=checkbox]:focus, 
input[type=color]:focus, 
input[type=date]:focus, 
input[type=datetime-local]:focus, 
input[type=datetime]:focus, 
input[type=email]:focus, 
input[type=month]:focus, 
input[type=number]:focus, 
input[type=password]:focus, 
input[type=radio]:focus, 
input[type=search]:focus, 
input[type=tel]:focus, 
input[type=text]:focus, 
input[type=time]:focus, 
input[type=url]:focus, 
input[type=week]:focus, 
select:focus, 
textarea:focus {
    border-color: transparent !important;
    box-shadow: 0 3px 10px rgba(0,0,0,.2) !important;
}
/* no focus style for non-keyboard-inputs elements */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}

/* and for keyboard users, override everything with
   a Big Blue Border when focused on any element */
body.user-is-tabbing *:focus {
  outline: 2px solid #7AACFE !important; /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color !important;
}
label {
    font-weight: 600;
    display: inline-block;
    font-size: 1.2rem;
}

/* CF7 */
.wpcf7-list-item {
    margin: 0;
    display: block;
}
.wpcf7-list-item label {
    font-weight: 400;
    padding: inherit;
    font-size: 1rem;
}
.buttForm {
    display: block;
    background-color: #ff0000;
    background: rgb(255,0,0);
    background: linear-gradient(45deg, rgba(255,0,0,1) 0%, rgba(167,37,37,1) 100%);
    padding: 10px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 1em auto;
    transition: all ease .5s;
    width: 100%;
}
.buttForm:hover {
    background-color: #D60000;
    background: rgb(167,37,37);
    background: linear-gradient(45deg, rgba(167,37,37,1) 0%, rgba(255,0,0,1) 100%);
    color: #fff;
}

/* Google Maps */
.wpgmza_marker_holder {
    border: none !important;
}
.dataTables_wrapper {
    padding-top: 20px;
    font-size: 14px;
}
.dataTables_wrapper label {
    font-size: .9rem;
    font-weight: 300;
}
th#wpgmza_map_list_description,
td.wpgmza_table_description {
    display: none;
}

/* SINGLE
-------------------------------------------------- */


.single .container {
	padding: 40px;
}
.singleHead {
    height: 40vh;
    background-position: center center;
    background-size: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.singleHead a {
    height: 50vh;
    display: block;
}

 
/* ARCHIVES
-------------------------------------------------- */

.gridView {
  display: grid;
  grid-gap: 80px;
  grid-template-columns: repeat(auto-fill, minmax(400px,1fr));
  grid-auto-rows: 20px;
}

@media (max-width: 760px){
    .gridView {
        grid-gap: 40px;
        grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    }
}
.gridItem img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.gridItem h2, .gridItem h4 {
  font-size: 20px;
  margin-bottom: 0;
}
.gridItem h2 a, .gridItem h4 a {
  text-decoration: none;
  color: #222;
}
.gridItem h2 a:hover, .gridItem h4 a:hover {
  color: #000;
}
.gridItemCity {
  text-transform: uppercase;
}

/*  Archives Nav */
.archiveNav {
	clear: both;
	text-align: center;
	display: block;
	padding-top: 3em;
}
.archiveNav li {
	display: inline;
}
.archiveNav a,
.archiveNav a:hover,
.archiveNav .active a,
.archiveNav .disabled {
    display: inline-block;
	background-color: #445b55;
	cursor: pointer;
	color: #fff;
	text-decoration:none;
    font-size: 12px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    margin-right: 5px;
}
.archiveNav .current {
	padding: 10px;
	padding: 0.7rem;
}

.archiveNav a:hover {
    background-color: #000;
    color: #fff;
}
.archiveNav .active a,
.archiveNav .current {
	color: #b4bdbb;
	background-color: #fff;
}

/* SPLASH PAGE
-------------------------------------------------- */

.splashWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100vh;
}
.splashLogo {
    width: 100vw;
    text-align: center;
}
.splashLogo img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.splashLang {
    background-color: #fff;
    padding: 10px;
    max-width: 40%;
    margin: 1%;
    position: relative;
}
.splashLang a {
    display: block;
}
.splashLangCode {
    display: block;
    text-align: center;
    font-size: 5rem;
    font-weight: 600;
}
.splashLangTxt {
    display: block;
    text-align: center;
    font-size: 1rem;
}


/* HOME PAGE + LONG PAGE
-------------------------------------------------- */

.home img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.homeWrapper .siteTitle {
    min-height: 80vh;
    width: 50vw;
    margin-top: 20vh;
    margin-bottom: 20vh;
    margin-left: 40vw;
    transition: all ease 2s;
}
.persistent .homeWrapper .siteTitle {
    margin-top: 0;
    margin-bottom: 0;
    min-height: 0;
}
.homeWrapper .siteTitle h1 {
    color: #fff;
    padding: 20px 0;
    text-shadow: 0 0 3px rgba(0,0,0,.25);
    font-size: 4rem;
    text-align: right;
    transition: all ease 2s;
}
.persistent .homeWrapper .siteTitle h1 {
    color: #fff;
    padding: 0;
    font-size: 0;
}
@media (max-width: 900px){ 
    .homeWrapper .siteTitle {
        width: 80vw;
        margin-left: 10vw;
    }
    .homeWrapper .siteTitle h1 {
        font-size: 3rem;
    }
}

.homeNav ul {
    text-align: right;
}
.homeNav a {
    display: block;
    text-align: right;
    margin: 2px 0 0 0;
    font-weight: 600;
}
.homeNav a span {
    display: inline-block;
    background-color: #fff;
    color: #222;
    min-width: 0;
    padding: 4px;
    transition: all ease-in-out 1s;
}
.homeNav a:hover span {
    background-color: #e2001a;
    color: #fff;
    min-width: 90%;
}
.homeWrapper .homeContent {
    background-color: #fff;
}
.homeContent .container {
	background-color: transparent;
	padding: 0;
    margin: 0 auto;
    border-left: none;
    min-height: 0;
    width: 100%;
}
@media (min-width: 1000px){
    .homeContent .container {
        max-width: 940px;
		margin: 0 auto;
    }
}
@media (min-width: 1200px){
    .homeContent .container {
        max-width: 1000px;
		margin: 0 auto;
    }
}
.homeContainer {
    padding: 0 0 40px 0 !important;
}
.home footer {
    display: none;
}
.home .grecaptcha-badge { 
    visibility: hidden;
}

/* Panels */
.panel {
    background-size: cover;
}
.panelContent {
    position: relative;
    height: 100%;
    width: 40%;
    margin: 0 auto 0 50%;
}
.panelContent a {
    border: none !important;
}
.panelAdjust {
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    box-sizing: border-box;
    text-align: right;
}
.panelContent a:hover .panelAdjust {
}
.panelAdjust h2, .panelAdjust h3 {
    color: #fff;
    text-shadow: 0 0 3px rgba(0,0,0,.25);
    margin: 0;
    padding: 0 0 1rem 0;
    word-break: break-all;
}
.panelAdjust h2 {
    text-transform: uppercase;
    font-size: 3.6rem;
}
.panelText {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 0 3px rgba(0,0,0,.25);
}

/* pagination */
.pagination {
	position:fixed;
	right:20px;
	top: 50%;
    transform: translateY(-50%);
	font-size:1.4em;
	z-index: 10;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.pagination a {
	display:block;
	height:20px;
	margin-bottom:5px;
	color:white;
	position:relative;
	padding:4px;
}
.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}
.pagination a .hover-text {
	position:absolute;
	right:15px;
	top:0;
	opacity:0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
    white-space: nowrap;
}
.pagination a:hover .hover-text {
	opacity: 1;
}
.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:'';
	position: absolute;
	margin:auto;
	top:0;
	right:4px;
	bottom:0;
}



/* CATEGORY PAGE
-------------------------------------------------- */

.sameCat ul, .sameCat li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.sameCat a {
	display: block;
	font-size: 1.1rem;
	padding: 5px 0;
}
.sameCat a:hover {
	border: none;
}
.sameCat a i {
	color: #c01a22;
	font-size: 1.2rem;
}

/* CATEGORY LIST
-------------------------------------------------- */

.page-template-page-category-list .gridView {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  grid-auto-rows: 10px;
  margin-top: 40px;
}
.page-template-page-category-list .gridItem h2 {
	padding-top: 0;
	padding-bottom: 0.6rem;
}

/* FOOTER
-------------------------------------------------- */

footer {
    background-color: rgba(255,255,255,0.75);
	box-shadow: 0 0 10px rgba(0,0,0,0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
footer a {
    color: #000;
    border-bottom: 1px solid #e2001a;
}
.footerContainer {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
    max-width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
}
footer ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
footer .widget ul, footer .widget li {
	margin: 0 !important;
	padding: 0 !important;
}
footer ul.menu {
	background-color: #fff;
	position: relative;
	padding: 20px!important;
}
footer ul.menu li {
	list-style-type: none;
	padding-bottom: 1px !important;
}
footer ul.menu li a {
	display: block;
	padding: 5px 10px;
	color: #fff;
	background-color: #ff0000;
	transition: 1s background-color ease;
    border: none;
    font-weight: 600;
}
footer ul.menu li a:hover {
	background-color: #e2001a;
}
footer ul.menu li.wpml-ls-item a {

}
footer ul.menu li.wpml-ls-item a:hover {

}
footer h4 {
	margin-top: 0;
}
.gridWidgets:before, .gridWidgets:after {
    clear: both;
    content: "";
    display: block;
}
.footerGridView {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	grid-template-areas: "footer1 footer2 footer3";
}
.footerItem01 {
	grid-area: footer1;
}
.footerItem02 {
	grid-area: footer2;
}
.footerItem03 {
	grid-area: footer3;
}
@media (max-width: 766px){
    .footerContainer {
        max-width: calc(100vw - 40px);
    }
	.footerGridView {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "footer1" "footer2" "footer3";
    }
}
@media (min-width: 1200px){
    .footerContainer {
        max-width: 1100px;
    }
}

/* Widget CFF */
#cff .cff-album-cover,
#cff .cff-event-thumb,
#cff .cff-html5-video,
#cff .cff-iframe-wrap,
#cff .cff-photo,
#cff .cff-vidLink {
    border: none !important;
}
#cff .cff-lightbox-link {
    border: none !important;
}


/* Back to top */

.totop {
	position: fixed;
	bottom: 10px;
	left: 10px;
	z-index: 104400;
}
.totop a, .totop a:visited{
	background-color: #f00;
	display: block;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	line-height: 40px;
    border-radius: 50%;
}
.totop a:hover, #footer-opener a:hover {
	color: #fff;
	background-color: #e2001a;
	text-decoration: none;
}
.totop a i {
	color: #fff;
}

/* Bottom Nav */

.bottomNav {
    text-align: center;
    font-size: 10px;
    background-color: #fff;
    padding: 10px 20px 10px 60px;
    border-top: 1px solid #ccc;
}
.bottomNav nav {
    float: left;
}
.bottomNav nav li {
    display: inline-block;
}
.bottomNav nav li a {
    margin-right: 10px;
}
.bottomNav nav li:last-child a {
    margin-right: 0;
}



/* RESPONSIVE
-------------------------------------------------- */



@media (max-width: 1250px){
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
}
@media (max-width: 768px){
}
@media (max-width: 767px){
}
@media (max-width: 640px){
}
@media (max-width: 544px){
}
@media (max-width: 480px){
}
@media (max-width: 360px){
}