
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
@import url('https://use.fontawesome.com/releases/v5.2.0/css/all.css');


@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(./fonts/Oswald-300.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
    --color1: #0D7690;
    --color2: #795548;
    --color1-alt: #1a6699;
    --color2-alt: #a12e3d;
    --gray0: #b5b3b3;
    --gray1: #DDDDDD;
    --gray2: #BBBBBB;
    --gray3: #999999;
    --gray4: #666666;
    --gray5: #333333;
	--gray6: #343333;
    --warn: #f9deb8;
    --white: #FFFFFF;
    --black: #000000;
    --transparent-white:#FFFFFF88;
	--transparent-white-card:#FFFFFF99;
    --transparent-black:#000000BB;
}


html, body{
	/*font-family: 'Rubik', Sans-serif;*/
	font-size:17px;
	text-align: justify;
}


body{
	background: var(--white);
}

h1{
    font-family: Poppins, Sans-serif;
    color: var(--color1);
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 500;
	text-align: center;
}

@media (max-width: 991px) {
    h1{
        font-size: 34px;
    }
}

h2{
    font-family: Poppins, Sans-serif;
    color: var(--gray4);
    text-transform: uppercase;
    font-size: 28px;
	text-align: center;
}

h3{
    font-family: Poppins, Sans-serif;
    color: var(--color1);
    text-transform: uppercase;
    font-size: 22px;
}

a{
    color: var(--color1);
    text-decoration: none;
}


a:hover{
	color: #0a8585;
}


/** *****************************************
 ** BOOTSTRAP
 ** *****************************************/



.btn-primary{
    background: var(--transparent-white);
    border-color: var(--color1);
    color: var(--color1);
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--color1);
    border-color: var(--color1);
    color:var(--white);
}


.btn-primary.disabled, 
.btn-primary:disabled {
    color: var(--gray4);
    border-color: var(--white);
    background:var(--gray1);
}

.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle{
    color: var(--black);
    border-color: var(--black);
    background:var(--white);
}


.page-item.active .page-link {
    z-index: 1;
    color: var(--white);
    background-color: var(--color1);
    border-color: var(--color1);
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--color1);
    border-color: var(--color1);
}

/** *****************************************
 ** HR
 ** *****************************************/
hr{
    display: block;
    margin: 25px auto;
    padding: 0;
    width: 60px;
    background: var(--color2);
    clear: both;
	opacity: 1;
}

hr, hr:not([size]) {
    height: 2px;
}

hr.hr-left{
    margin-left: 0px;
}

hr.hr-left-w{
    margin-left: 0px;
	background: #FFF;
	opacity: 1;
}


/***********************************************
 ** HEADER
 ***********************************************/

header{
    z-index: 1040;
    background-color: var(--transparent-white);
    padding: 0px 20px;
}

header .navbar-brand .logo{
    height:58px;
    width:auto;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    header .navbar-brand{
        min-width:280px;
    }

    header .navbar-brand .logo{
        height:100px;
    }
}


@media (max-width: 991px) {
	header .navbar-brand .logo {
    /*margin-left: 5px;*/

    }
}

/***********************************************
 ** HEADER - NAVBAR
 ***********************************************/
header .navbar{
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
}

header .navbar-nav .nav-item .nav-link{
    color: #000;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 100;
    transition: all 0.3s;
    border-bottom:solid 3px transparent;
}

header .navbar-nav .nav-item:hover>.nav-link,
header .navbar-nav .nav-item.active>.nav-link{
    color: var(--color1);
    border-bottom:solid 3px var(--color1);
    transition: all 0.5s;
}

header .navbar-nav .dropdown-menu{
    background: var(--black);
}

header .navbar-nav .dropdown-menu .dropdown-item{
    color: var(--gray1);
    font-size:18px;
}
header .navbar-nav .dropdown-menu .dropdown-item:hover{
    background: var(--color1);
    color:var(--black);
}

/***********************************************
 ** HEADER - STICKY MENU
 ***********************************************/

@media (min-width: 1200px) {
    header{
        position: fixed;
        width: 100%;
        top: 0px;
    }
    header.sticky {
        -webkit-box-shadow: 2px -1px 8px 0px #5c5555;
        -moz-box-shadow: 2px -1px 8px 0px #5c5555;
        box-shadow: 2px -1px 8px 0px #5c5555;
		background:white;
    }

}


/***********************************************
 ** HEADER - TOGGLER (MOBILE)
 ***********************************************/
header .navbar-toggler{
    padding: 5px 5px;
    border: none;
    color: var(--color1);
    font-size:28px;
}
header .navbar-toggler .fas{
    width:28px;
    height:28px;
}

/***********************************************
 ** HEADER - NAVIGATION MOBILE
 ***********************************************/

@media (max-width: 1200px) {
     header .navbar-collapse {
        opacity: 0;
        position: fixed;
        z-index: 200;
        background-color: var(--black);
        width: 280px;
        transform: translateX(-250px);
        height: 100%;
        overflow-y: auto;
        top: 0;
        left: 0;
        padding:20px;
    }

    header .navbar-collapse.toggling {
        transition: transform 0.35s, opacity 0.35s;
    }

    header .navbar-nav .nav-item .nav-link{
        padding:8px 0px;
    }

    header .navbar-nav .nav-item .nav-link,
    header .navbar-nav .nav-item:hover>.nav-link, 
    header .navbar-nav .nav-item.active>.nav-link{
        border-bottom-color:transparent;
        display: inline-block;
    }

    header .navbar-nav.langs,
    header .navbar-nav.langs{
        display: flex;
        flex-flow: row;
        justify-content: space-around;
    }
}
body .nav-mask {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    background: var(--transparent-black);
    opacity: 0;
    transition: opacity 0.25s, width 0s 0.25s, height 0s 0.25s;
}

body.has-mobile-menu {
    overflow: hidden;
}

body.has-mobile-menu .nav-mask {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.25s;
}

body.has-mobile-menu .navbar-collapse {
    opacity: 1;
    transform: translateX(0);
    background-color: var(--white);
}


/** *****************************************
 ** FOOTER
 ** *****************************************/

footer{
    /*background: url(../images/footer.jpg) repeat center top #FFF;*/
	background: #FFF;
    color: #54575b;
    border-top: 1px solid #bbbbbb;
    font-size: 13px;
}

footer h3{
    margin-bottom:20px;
	margin-top: 20px;
	font-size: 23px;
    text-align: left;
}

footer .logo{
    margin-top: 20px;
}

footer .navigation li a{
    color: #000;
    font-size:14px;
    display:block;
    margin-bottom:5px;
    text-decoration: none;
}

footer .navigation li a:hover {
    color: var(--color1);
    text-decoration: none;
	font-weight: bold;
}

footer .navigation,
footer .contactus{
    /*text-align: center;*/
    text-transform:uppercase;
}

footer .contactus li{
	margin-bottom: 8px;
    font-size: 16px;
    line-height: 15px;
    text-align: center;
}

footer .languages .dropdown-menu{
    min-width: inherit;
}


footer .followus a{
    font-size:40px;
    text-decoration: none;
    margin-bottom:20px;
}

footer .followus .followus-list{
    /*background: white;*/
    padding:20px 20px 0px 20px;
}
/***********************************************
 ** SIGNATURE
 ***********************************************/

.signature{
    border-top: 2px solid var(--color1);
    background:var(--gray6);
    color: var(--white);
}

.signature a{
    color: var(--white);
}
.signature a:hover{
    color: var(--color1);
	text-decoration: none;
}

.signature .social a{
    font-size:32px;
}

.signature .languages button{
    font-size:12px;

}

.signature .languages .dropdown-item{
    color: var(--gray4);
    font-size:14px;
}

.signature .languages .dropdown-item .icon{
    width:25px;
    display: inline-block;
}

.signature .languages .dropdown-item:hover {
    background: var(--gray4);
    color: #FFFFFF;
}


.signature .copyright{
    font-size:12px;
}


/*************************************
 ** HOME - SLIDER
 *************************************/

.homeSlider .tp-caption.tp-title,
.homeSlider .tp-caption.tp-subtitle,
.homeSlider .tp-caption.tp-link{
    z-index: 7;
    white-space: nowrap;
    text-transform:left;
    font-family:'Oswald';
    color:white;
    text-shadow: 2px 3px 3px var(--black);
    text-transform: uppercase;
}

.homeSlider .tp-caption.tp-link{
    border-color: #CCCCCC;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    text-decoration: none;
    background:rgba(0,0,0,0.5);
    color:#CCCCCC;
}

.homeSlider .tp-caption.tp-link:hover{
    border-color: #FFFFFF;
    color:#FFFFFF;

}

@media (max-width: 991px) {
    .homeSlider .tp-bullets{
        display:none;
    }
}



/*************************************
 ** HOME - WELCOME
 *************************************/

.homeWelcome{
    background: var(--black);

}
.homeWelcome h2{
    text-align:center;
    color:var(--white);
    cursor:pointer;
    font-family:Oswald, Helvetica, Arial, Lucida, sans-serif;
}

.homeWelcome h2 > span{
    font-weight: bold;
    text-transform: uppercase;
    color:var(--color1);
}


/*************************************
 ** HOME - Article with one photo
 *************************************/

.homeArticle h1{
    color:var(--color1);
}

.homeArticle .text:last-child{
    padding-bottom:0px;
}

.homeArticle.homeArticle-black .text{
    color:var(--white);
}

.homeArticle.homeArticle-black{
   background-image: url("/images/bg-black.jpg");
   background-attachment: fixed;
}

.homeArticle.homeArticle-white{
   /*background-image: url("/images/bg-white.jpg");*/
   background-attachment: fixed;
}

.homeArticle.homeArticle-reverse .row{
    flex-direction: row-reverse;
}




/*************************************
 ** HOME - Partner
 *************************************/


.homePartner h1 {
    text-align: center;
}

/*************************************
 ** THEMES
 *************************************/

.homeThemes {
    background-color: var(--white);
    background-attachment: fixed;
    background-size: cover;
	background-image: url("/images/bg-white.jpg");
}

.homeThemes h1,
.homeThemes h2{
    text-align: center;
}

/*************************************
 ** NEWSLETTER
 *************************************/

.homeNewsletter {
    background-color: var(--gray1);
    background-attachment: fixed;
    background-size: cover;
}

.homeNewsletter h1,
.homeNewsletter h2{
    text-align: center;
}


/***********************************************
 ** MAP
 ***********************************************/
.homeMap{
    width:100%;
    height:450px;
}


/***********************************************
 ** MAIN
 ***********************************************/

.main{
    padding:20px 0px;
    background: var(--white);
}

/***********************************************
 ** MAIN HEADER
 ***********************************************/
.main{
    padding:20px 0px;
    background: var(--main-bg);
}

/***********************************************
 ** MAIN HEADER
 ***********************************************/
.mainHeader{
    padding-top:337px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--white);
    position: relative;
    background-image: url(../images/bg-main.jpg);
}

.mainHeader .in{
    padding: 3vw 0px;
}

.mainHeader h1{
    text-transform: uppercase;
    font-size: 2.5vw;
    font-weight: 500;
}

.mainHeader h2{
    text-transform: uppercase;
    font-size: 34px;
    font-weight:100;
}

.mainHeader.empty{
   height:96px;
    overflow: hidden;
}

.mainHeader.small-breadcrumb {
	padding-top: 12px;
    background: #525256;
}

@media (min-width: 1200px){
    .mainHeader.small-breadcrumb {
        margin-top: 117px;
    }
}

.mainHeader.small-breadcrumb h1{
    display:none;
}

.mainHeader.small-breadcrumb .in{
    padding: 0px;
}


@media (max-width: 1199px){
    .mainHeader{
        padding-top:104px;
    }
}

@media (max-width: 991px) {
    .mainHeader h1{
        font-size: 6vw;
    }
    .mainHeader{
        padding-top:0px;
    }
    .mainHeader .in{
        padding: 20px 0px;
    }

    .mainHeader.empty{
        height:0px;
    }
}


/***********************************************
 ** CONTACT
 ***********************************************/


.contact-form .has-warning .form-control{
    background-color: var(--warn);
}

/***********************************************
 ** MODAL
 ***********************************************/

/** CENTER VERTICAL **/
.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  max-width: 600px;
}

.modal-header{
    background:var(--color1);
    color:var(--white);
}

.modal-header .close{
    color:var(--white);
}

.modal .modal-footer .fab{
    color:var(--gray2);
    font-size: 30px;
    margin-right:5px;
}

.modal .modal-footer .fab:hover{
    color:var(--color1);
    transition: all 0.5s;
    text-decoration: none;
}



/*************************************
 ** BREADCRUMB
 *************************************/


.breadcrumb {
    display: inline-flex;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    margin-top:4px;
}

.breadcrumb a{
    color:var(--white);
    text-decoration: none;
}

.breadcrumb a:hover{
    color:#e96e04;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #ffffff;
    content: var(--bs-breadcrumb-divider, "/");
}

/***********************************************
 ** CARD - EFFET IMAGE
 ***********************************************/

.card-text:last-child {
    margin-bottom: 0;
    text-align: justify;
  /* font-weight: bold;*/
}

.card.card-effectBW .card-img-top{
    position: relative;
}

.card.card-effectBW .card-img-top img{
    filter: none;
    -webkit-filter: grayscale(0);
    /*-webkit-transform: scale(1.1);*/
}

.card.card-effectBW:hover .card-img-top img{

        filter: gray; /* IE5+ */
    -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition: all .5s ease-in-out;
}

.card.card-effectBW .card-img-top a:after{
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    /*border: 1px solid #FFFFFF55;*/
    z-index: 100;
    content: "";
    -webkit-transition: all .5s ease-in-out;
}
.card.card-effectBW:hover .card-img-top a:after{
    border-color:var(--color1);
    -webkit-transition: all .5s ease-in-out;
}

/***********************************************
 ** CARD - BOOK
 ***********************************************/

.card.card-book{
    border:none;
}

.card.card-book .card-body {
    position: relative;
    padding:10px 0px 0px 0px;
}

.card.card-book .card-title h3,
.card.card-book .card-title h2{
    font-family: Poppins, Sans-serif;
    text-transform: uppercase;
    text-align: left;
}

.card.card-book .card-title h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    color: var(--gray5);
}

.card.card-book .card-title h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom:0px;
}

.card.card-book .card-summary {
    font-family: Poppins, Sans-serif;
}


/***********************************************
 ** CARD - SIMPLE
 ***********************************************/

.card.card-simple h1{
    text-align:center;
}

.card.card-simple .card-body {
    position: relative;
}

.card.card-simple .card-title h2,
.card.card-simple .card-title h3{
    font-size: 20px;
    padding-top:10px;
}

.card.card-simple .card-text{
    margin-bottom:10px;
}

.card.card-simple .card-icon{
       position: absolute;
    right: 9px;
    height: 56px;
    width: 56px;
    top: -41px;
    border: solid 2px var(--gray0);
    text-align: center;
    padding: 10px;
    /* border-radius: 31px; */
    color: var(--white);
    font-size: 30px;
    background: var(--white);
    z-index: 1000;
}

.card.card-simple .card-icon.card-icon-logo{
    background-image: url("/images/logo-tiny.png");
    background-position: center;
    background-repeat: none;
    background-size:cover;
}

.card.card-simple .card-link{
    text-align: center;
}

.card.card-simple .card-date{
    font-weight: bold;
}


/***********************************************
 ** CARD - LARGE (BOOK LIST)
 ***********************************************/
.card.card-large {
    border:0px;
}


.card.card-large .card-body{
    position: absolute;
    overflow: hidden;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top:0px;
    background: #00000000;
    background-image: url(/images/up.png);
    background-repeat: no-repeat;
}

.card.card-large:hover .card-body{
    background: #000000AA;
    -webkit-transition: all .5s ease-in-out;
    background-image: url(/images/up.png);
    background-repeat: no-repeat;
}


.card.card-large .card-title {
    margin-bottom:0px;
}
.card.card-large .card-title h2{
    color:var(--white);
    font-size:2vw;
    font-weight:600;
    -webkit-transition: all .5s ease-in-out;
    padding-bottom:0px;
    text-shadow: 4px 4px 3px #000;
}
.card.card-large:hover .card-title h2{
    color:var(--white);
    -webkit-transition: all .5s ease-in-out;
}

.card.card-large hr{
    margin: 0.9vw 0.3vw;
    height:0.3vw;
}

/* Card is 2 columns*/
@media (max-width: 991px){
    .card.card-large .card-title h2{
        font-size:3vw;
    }
    .card.card-large .card-subtitle h3{
        font-size:1.8vw;
    }
}

/* Card is one columns*/
@media (max-width: 576px){
    .card.card-large .card-title h2{
        font-size:5vw;
    }
    .card.card-large .card-subtitle h3{
        font-size:3vw;
    }
    .card.card-large .card-subtitle{
        max-height:300px;
        -webkit-transition: all .5s ease-in-out;
    }
}


/***********************************************
 ** NEWS DETAIL
 ***********************************************/
.newsDetail .info{
    margin-bottom:20px;
}

/***********************************************
 ** BOOK DETAIL
 ***********************************************/
.bookDetail{
    padding-top:0px;
}

.bookDetail .bookDetail-head{
    position: relative;
    overflow: hidden;
}

.bookDetail-card{
    position: absolute;
    display:block;
    max-height:calc(90% - 300px);
    top: 200px;
    right: 120px;
    width: 400px;
    background-color: var(--transparent-white-card);
    overflow-y:auto;
}

.bookDetail-back{
    position: absolute;
    top: 120px;
    font-size: 60px;
}
.bookDetail-back i {
    color: white;
    text-shadow: 3px 3px 6px black;
}

@media (max-width: 1199px) {
    .bookDetail-card{
        top: 10%;
        max-height:90%;
    }
}

@media (max-width: 992px) {
    .bookDetail-card{
        display: none;
    }
}

.bookDetail-card h1 {
    font-size: 40px;
    font-weight: 600;
	font-family: Poppins, Sans-serif;
    text-transform: uppercase;
    color: var(--gray5);
	line-height: 1em;
}

.bookDetail-card h2 {
    font-size: 18px;
    font-weight: 700;
	font-family: Poppins, Sans-serif;
    text-transform: uppercase;
}

.bookDetail-actions{
    position: absolute;
    bottom: 0px;
    right:0px;
    z-index: 1030;
    background-color: var(--gray5);
}

.bookDetail-actions li{
    padding: 20px;
    text-align: center;
    color: var(--white);
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 160px;
}
.bookDetail-actions li:hover{
    background-color: var(--color1);
}
.bookDetail-actions li:hover,
.bookDetail-actions li label:hover{
    cursor: pointer;
}
.bookDetail-actions li i{
    font-size: 24px;
    margin-bottom:8px;
}

.bookDetail-actions li.action-contact{
    background-color: var(--color1);
}
.bookDetail-actions li.action-contact:hover{
    background-color: var(--color2);
}

.bookDetail-actions li.action-play{
    display:none;
}
.bookDetail-actions li.action-next{
    /*border-right:2px solid var(--color1-alt);*/
}
.bookDetail-actions li label{
    display: block;
}
@media (max-width: 1199px) {
    .bookDetail-actions{
        position: relative;
    }
}
@media (max-width: 992px) {
    .bookDetail-actions li label{
        display: none;
    }
    .bookDetail-actions li{
        padding: 15px;
    }
}

.bookDetail-title {
    margin-top:10px;
}
.bookDetail-title h1 {
    font-size: 40px;
    font-weight: 600;
    font-family: Poppins, Sans-serif;
    text-transform: uppercase;
    color: var(--gray5);
    line-height: 1em;
    text-align: left;
}

.bookDetail-title h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: Poppins, Sans-serif;
    text-transform: uppercase;
    text-align: left;
}

.bookDetail-attributes {
    margin-top:10px;
}

.bookDetail-attributes ul li:not(:first-child) {
    border-left: 1px solid var(--gray3);
}

.bookDetail-attributes li{
    padding: 0px 20px;
    text-align: center;
    color: var(--gray5);
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    max-width: 200px;
}

.bookDetail-attributes li i{
    font-size: 24px;
    margin-bottom:8px;
}
.bookDetail-attributes li label{
    display: block;
}

.bookDetail .fancybox-slider {
    margin:-5px;
}
.bookDetail .fancybox-slider a:first-child  {
    width:100%;
}
.bookDetail .fancybox-slider a  {
    display: block;
    width:25%;
    padding:5px;
    cursor: pointer;
}
.bookDetail .fancybox-slider a img  {
    width:100%;
    height:100%;
}

/***********************************************
 ** SIMULATION DE CREDIT
 ***********************************************/
.mortage{
	background-color: var(--gray1);
}

.mortageTable,
.mortageForm{
	width:100%;
}
.mortageTable td,
.mortageTable th{
	font-size: 14px;
    padding: 3px 10px;
}

.mortageTable tr:nth-child(odd){
	background-color:#FFFFFF;
}
.mortageTable th,
.mortageTable td{
	text-align:center;
}

.mortageForm td.l{
	font-size:13px;
	font-weight:bold;
}
.mortageForm td.v{
	padding:2px 0px;
	text-align: left;
	min-width: 120px;
	height:32px;
}
.mortageForm td.v input{
	padding-left:5px;
	padding-right:5px;
}

.mortageForm .input-group{
    max-width: 150px;
}

.mortageNote{
	font-size:11px;
	padding-top:5px;
}

/***********************************************
 ** COMMUNICATION
 ***********************************************/
.communication .rev_slider{
    border-radius:0.25em;
}

/***********************************************
 ** BARRE DE COOKIE
 ***********************************************/

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    z-index: 99999;
    background-color: #000000CC;
    color: var(--white);
    font-size: 14px;
    display:none;
}

.cookie-bar a {
    color: var(--white);
    opacity: 0.5
}

.cookie-bar a:hover {
    cursor: pointer;
    text-decoration: underline
}

.cookie-bar .cookie_btn {
    display: inline;
    margin-left: 20px;
    padding: 3px 15px;
    border-radius: 30px;
    background-color: var(--color1);
    color: var(--white);
    transition: all 0.2s
}

.cookie-bar .cookie_btn:hover {
    cursor: pointer;
}

/***********************************************
 ** TINYMCE
 ***********************************************/
/*.tinymce > h2:first-child{
    margin-top:0px;
}*/
.block .tinymce > :last-child{
    margin-bottom:0px;
}

.mce-content-body{
    padding:15px;
    background: #FFFFFF;
}

.mce-content-body shortcode{
    border:dashed 2px  #999999;
    background:#EEEEEE;
    text-align: center;
    padding: 40px;
    margin:15px 0px;
    font-size: 18px;
    width:100%;
    display: block;
}

.mce-content-body [class^="col-"]{
    border:1px dashed pink;
}

/*************************************
 ** DEBUG
 *************************************/
.debug{
    display:none;
    color:#FFFFFF;
}


/*************************************
 ** PANEL PRODUIT
 *************************************/
.panel-product .block-img{
    width: 48%;
}

.panel-product.panel-product-right{
    flex-direction: row-reverse;
    }

.panel-product .block-text{
    margin: 80px 0px 40px -60px; 
    padding: 0px 100px; 
    background-color: var(--white);
    border: solid 1px var(--color1);
    z-index: 10
}

.panel-product.panel-product-right .block-text{
    margin: 40px -60px 80px 0px; 
}

@media (max-width: 991px) {
    .panel-product .block-text{
        margin: 40px 0px 20px -40px; 
        padding: 20px 50px; 
    }

    .panel-product.panel-product-right .block-text{
        margin: 20px -40px 40px 0px; 
    }

}

@media (max-width: 767px) {
    .panel-product .block-img{
        width: 100%;
    }
    .panel-product .block-text,
    .panel-product.panel-product-right .block-text{
        margin: 0px 0px 20px 0px; 
        padding: 20px; 
    }

}


.search-container .search{
    position: relative
}
.search-container i{
    position: absolute;
    top: -2px;
    right: 0px;
    color:#FFFFFF;
}
.search-container i:hover{
    cursor: pointer;
}
.search-container .search input{
    background: transparent;
    border-width: 0px 0px 2px 0px;
    border-color: #AAAAAA;
    padding-right: 22px;
    margin-top: -2px;
    color:#FFFFFF;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
    text-overflow: ellipsis;
    width:400px;
}
.search-container .search input:focus-visible {
    border-width: 0px 0px 2px 0px;
    border-color: #FFFFFF;
    outline:none;
}
.search-container .search input::placeholder {
    color: #AAAAAA;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
    font-style: italic;
}

@media (max-width: 1200px) {
    .search-container .search input{
        width:200px;
    }
}
@media (max-width: 991px) {
    .search-container{
        margin-top: -10px;
        margin-bottom: 10px;
    }
    .search-container .search input{
        width:100%;
    }
}

