a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

body {
    font-family: 'Fira Sans', sans-serif;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

.inner {
    /*max-width: 1200px;*/
    margin: 0 auto;
    position: relative;
    padding: 0 4vw;
}


.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 1000;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    right: 23px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #000;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

.notice {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 40px;
    background-color: #468aad;
}

body.Ecommerce .notice,
body.EcommerceCart .notice {
    margin-bottom: 40px;
}

body.Ecommerce .notice {
    padding-left: 40px;
}

.notice h2 {
    color: #fff;
    margin: 0;
}


.offset-top {
    margin-top: 130px;
}

.row.no-margin {
    margin-right: 0;
    margin-left: 0;
}

.row.no-margin [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.row.no-col-margin [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.row>[class*=' col-']>[class*=' col-'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.row>[class*=' col-']>div>[class*=' col-'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}


.bigletter {
    font-size: 30em;
    font-family: 'Comfortaa', cursive;
    position: absolute;
    top: 0;
    margin-left: -100px;
    opacity: .3;
    z-index: -1;
}

img.fullsize {
    min-width: 100%;
}




header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100000;
    background: #fff;
    height: 130px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;

}

.mobile {
    display: none;
}

header .main-links {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
}

header .main-links li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}



header .main-links .boutique a,
header .main-links .cart a {

    font-family: 'Comfortaa', cursive;
    font-size: 27px;
    font-weight: 600;
    background-color: #E1678C;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}

header .main-links .boutique a:hover,
header .main-links .cart a:hover {
    background-color: #666;
}

header .main-links .cart a {
    padding-left: 60px;
}

header .main-links .cart .image {
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 6px;
}

header .main-links .cart svg {
    stroke: #fff;
}

header .social a {
    font-size: 28px;
}

header .social a:hover {
    background-color: #eee;
}

header .main-links .user .nomobile svg,
header .main-links .email svg {
    top: 9px;
    position: relative;
}




header .main-links>li>a {
    height: 60px;
    line-height: 60px;
    display: block;
    padding: 0 20px;
    position: relative;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}


header .main-links .user a.nomobile:hover,
header .main-links .email a:hover {
    background-color: #468AAD;
}

header .main-links .user.active a.nomobile {
    background-color: #333;
}

header .main-links .user a.nomobile:hover svg,
header .main-links .user.active a.nomobile svg,
header .main-links .email:hover svg {
    stroke: #fff;
}

header .main-links a.mobile {
    display: none;
}


header li.user .arrow_box,
header li.cart .arrow_box {
    margin-left: 0;
    right: 0;
    width: auto;
    border: 4px solid #000;
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 125%;
}

header li.user .arrow_box a,
header li.cart .arrow_box a {
    padding: 10px 15px;
    display: block;
}

header li.cart .arrow_box:before,
header li.user .arrow_box:before {
    border-color: transparent;
    border-bottom-color: #000;
    border-width: 17px;
    margin-left: -14px;
    right: -4px;
}

header li.cart .arrow_box:after,
header li.user .arrow_box:after {
    right: 1px;
}


header li.cart.addtocart .arrow_box,
header li.user.active .arrow_box {
    margin-top: 80px;
}

header li.cart .arrow_box:before {
    margin-left: -17px;
}

header li.user.online svg {
    stroke: #E1678C;
}



#Breadcrumbs {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5em;
    margin: 40px 0;
    margin-left: 40px;
    color: #468AAD;
}

#Breadcrumbs a {
    color: #000;
}

#Breadcrumbs a:hover {
    color: #666;
}

.presentation {
    display: flex;
    position: relative;
}

.presentation .title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.presentation .lettreb {
    z-index: 100;
    margin: 0 4vw 0 0;
    width: 35vw;
}

.presentation .lettreb img {
    display: block;
}

@media all and (max-width: 560px) {
    .presentation .title {
        flex-flow: row wrap;
    }

    .presentation .lettreb {
        flex: 0 0 100%;
        width: 100%;
    }

    .presentation .title .textebouclette {
        font-size: 50px;
    }

    .presentation .title .point {
        font-size: 168px;
    }

    .presentation .title .lafee {
        font-size: 50px;
    }
}

.presentation .textebouclette {
    color: #fff;
    z-index: 100;
    font-size: 6vw;
    font-family: 'Comfortaa', cursive;
    line-height: 100%;
    font-weight: 600;
}

.presentation .point {
    color: #000;
    z-index: 100;
    font-size: 24vw;
    font-family: 'Comfortaa', cursive;
    line-height: 0.75em;
    font-weight: 600;
}

.presentation .lafee {
    color: #000;
    z-index: 100;
    font-size: 6vw;
    font-family: 'Comfortaa', cursive;
    line-height: 0.8em;
    margin: 0 0 0 16px;
    font-weight: 600;
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
}

.cyan {
    color: #4FADE2
}


.presentation .left {
    width: 75%;
    position: relative;
    z-index: 1;
}

.slidernav>div {
    width: 4vw;
    height: 8vw;
    display: inline-block;
    margin: 0 .3vw;
}

.slidernav>div:hover svg {
    stroke: #468AAD;
    cursor: pointer;
    transform: scale(.8);
}

.slidernav>div svg {
    fill: transparent;
    stroke: #000;
    stroke-width: .2vw;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.slidernav {
    position: absolute;
    top: 0;
    right: 2vw;

}

.slidernav .clickleft {
    transform: rotate(180deg);
}



.presentation .lSSlideOuter .lSPager.lSpg {
    text-align: right;
    font-size: 0;
    right: 20px;
    bottom: inherit;
    top: 20px;
}

#lightSlider {
    width: 100%;
    height: 50vw !important;
    position: relative;
    padding: 0 !important;
}


#lightSlider .image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

#lightSlider .image:before,
section.image:before {
    content: "";
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    opacity: .6;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a06800+0,000000+100&0.65+0,0+100 */
    background: -moz-linear-gradient(left, rgba(160, 104, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(160, 104, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(160, 104, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6a06800', endColorstr='#00000000', GradientType=1);
    /* IE6-9 */
}


#lightSlider li.lslide {
    width: 100%;
    height: 100%;
}


#lightSlider .content {
    z-index: 1000;
    /* display: flex;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width:45vw;
	left: 100px;*/

}


.checkout .total {
    font-weight: 700;
}


.lSSlideOuter {
    position: relative;
}

.lSSlideOuter .lSPager.lSpg {
    position: absolute;
    width: 100%;
    bottom: 30px;
}

.lSSlideOuter .lSPager.lSpg>li a {
    height: 14px !important;
    width: 14px !important;
}

.lSSlideOuter .lSPager.lSpg>li.active a,
.lSSlideOuter .lSPager.lSpg>li:hover a {
    background-color: #A4A623 !important;
}

.lSSlideOuter .lSPager.lSpg>li a {
    background-color: #fff !important;
}

.lSAction>a {
    margin-top: 27px !important
}



.lSPrev,
.lSNext {
    width: 50px !important;
    height: 50px !important;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    top: 0;
    cursor: pointer;
    background-color: #fff;
    background-image: url(../images/svg/gotop.svg) !important;
    background-position: center !important;
}

.lSAction svg {
    stroke-width: 1;
    fill: #000;
    stroke: #000;
}


.lSAction a:hover svg {
    fill: #f28030;
    stroke: #f28030;
    background-color: #fff
}


.lSPrev {
    transform: rotate(-90deg) !important;
}

.lSNext {
    transform: rotate(90deg) !important;
}

.lSAction {
    display: none !important;
}


/*
header .main-links .cart a, header .main-links .cartitem {
	font-family: 'Comfortaa', cursive;
	font-size: 1.5em;
	font-weight: 600;
	background-color: #E1678C;
	color:#fff;
	height:50px;
	line-height: 50px;
	padding:0 20px;
}

.cartitem {
	background-color: #E1678C;
	color:#fff;
}
*/

.main-links .cart svg,
.main-links .user svg,
.main-links .email svg {
    fill: transparent;
    stroke: #000;
    stroke-width: 10px;
    width: 40px;
    height: 40px;
}


.menumobile svg {
    width: 28px;
    height: 28px;
    stroke: #000;
    stroke-width: 2;
    position: absolute;
    left: 20px;
    top: 17px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.menumobile:hover svg {
    transform: rotate(180deg);
    fill: #AD5570 !important;
    stroke: #AD5570 !important;
}


header.active .logo {
    width: 155px;
    height: 62px;
    top: 8px;
}

header.active {
    height: 80px;
}


.logo {
    width: 260px;
    height: 110px;
    position: absolute;
    top: 10px;
    left: 85px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}



.logo svg>g>g {
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.logo:hover svg>g>g {
    transform: scale(.9);
    transform-origin: 300px 100px;
}


nav.primary,
.VideoYoutube {
    visibility: hidden;
    opacity: 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.9);
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    z-index: 100000;
}

.VideoYoutube {
    left: 0;
    right: 0;
}


.VideoYoutube .videoWrapper {
    width: 100%;
    margin: 50px;
    padding-bottom: 51.89%;
}

.VideoYoutube-container svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 10px;
    width: 50px;
}

.VideoYoutube-container button.test {
    padding: 15px;
    background-image: inherit;
}

.VideoYoutube-container button.test:hover {
    background-color: #E1678C;
}


.VideoYoutube-container button.video {
    background-image: url(../images/tv.svg);
}

.VideoYoutube-container button.video:hover {
    border-color: #E1678C;
    background-color: #E1678C;
    color: #fff;
}




nav.primary:before,
.VideoYoutube:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #A4A623;
    opacity: .8;
}

nav.primary.active,
.VideoYoutube.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    padding: 60px 0;
    box-sizing: border-box;
}

nav.primary ul {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

nav.primary ul a {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 2em;
    color: #fff;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    display: block;
    margin: 10px 0;
}

nav.primary ul a:hover {
    transform: scale(1.1);
}

nav.primary .fermer,
.VideoYoutube .fermer {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    cursor: pointer;
    z-index: 10000;
}

nav.primary .fermer svg,
.VideoYoutube .fermer svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 5;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

nav.primary .fermer:hover svg,
.VideoYoutube .fermer:hover svg {
    stroke: #468AAD;
    transform: rotate(180deg) scale(.9);
}

.PageSpectaclesAteliersAnimations .back,
.EcommerceProductQuote .back,
.EcommerceProduct .back {
    margin-top: 20px;
}



.PageSpectaclesAteliersAnimationsPrincipale .product,
.Ecommerce .product {
    background-color: #eaeff2;
    text-align: center;
    height: 100%;
}

.product .inside {
    padding: 20px;
}

.PageSpectaclesAteliersAnimationsPrincipale .product .title,
.Ecommerce .product .title {
    font-family: 'Comfortaa', cursive;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    line-height: 100%;
}

.Ecommerce .product .categorie,
.PageSpectaclesAteliersAnimationsPrincipale .product .categorie,
.EcommerceProductQuote .categorie,
.EcommerceProduct .categorie {
    color: #4FADE2;
    font-size: 1.2em;
    font-weight: 400;
}

.PageSpectaclesAteliersAnimationsPrincipale .product img,
.PageSpectaclesAteliersAnimations .product img,
.EcommerceProductQuote .object img,
.Ecommerce .product img,
.EcommerceProduct .object img {
    width: 100%;
}

.PageSpectaclesAteliersAnimationsPrincipale .ecommerce [class*=' col-'],
.Ecommerce .ecommerce [class*=' col-'] {
    margin-bottom: 20px;
}




.PageSpectaclesAteliersAnimationsPrincipale .ecommerce .price,
.Ecommerce .ecommerce .price,
.EcommerceProduct .price,
.EcommerceProductQuote .price {
    color: #7A114A;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 2.1em;
}

.PageSpectaclesAteliersAnimationsPrincipale .ecommerce .price.strike,
.EcommerceProductQuote .price.strike,
.Ecommerce .ecommerce .price.strike,
.EcommerceProduct .price.strike {
    font-size: 90%;
    margin: 0;
    color: #666;
}

#pagination a,
#PageNumbers a {
    display: inline-block;
}

i.social.fa,
#pagination a,
#PageNumbers a {
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 100px;
    color: inherit;

    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

i.social.fa:hover,
#pagination a:hover,
#PageNumbers a:hover {
    color: #fff;
    background-color: #000;
}

i.social.fa.fa-share-alt,
#pagination a.current,
#PageNumbers a.current {
    border-color: #ccc !important;
    color: #000 !important;
    background: none !important;
    cursor: inherit !important;
}


.cart .cell.print span {
    font-family: 'Comfortaa', cursive;
}


#pagination,
#PageNumbers {
    padding: 40px 0;
}


h2 {
    margin: 20px 0;
}


.PageSpectaclesAteliersAnimations .row .object>img,
.EcommerceProductQuote .row .object>img,
.EcommerceProduct .row .object>img {
    position: relative;
    left: -40px;
    top: -40px;
}

.PageNouvelle .content,
.PageSpectaclesAteliersAnimations .content,
.EcommerceProductQuote .content,
.EcommerceProduct .content {
    position: relative;
    padding: 20px;
}

.PageSpectaclesAteliersAnimations .content:before,
.EcommerceProductQuote .content:before,
.EcommerceProduct .content:before {
    content: "";
    display: block;
    background-color: #dbe9f1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .3;
}

.PageSpectaclesAteliersAnimations .content>div,
.EcommerceProductQuote .content>div,
.EcommerceProduct .content>div {
    position: relative;
}

footer {
    text-align: right;
    padding: 60px;
    padding-right: 40px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: .8em;
}

footer a:hover {
    text-decoration: underline;
}

#SocialMediaShare {
    margin-top: 20px;
}


section h1+.content {
    margin: 30px 0;
}


.quicklink {
    padding: 50px 100px;
}

.quicklink .content {
    position: relative;
    padding: 2vw;
    box-sizing: border-box;
    text-align: center;
    background-color: #aaa;
    overflow: hidden;
    height: 22vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 38px;
}

.quicklink .content h2 {
    font-size: 4vw;
    color: #fff;
    font-weight: 600;
    margin: 0;
    padding: 0 2vw;
    line-height: 100%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.quicklink a:hover .content h2 {
    opacity: 0;
}

.quicklink .plus {
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    width: 4vw;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -2vw;
    margin-top: -2vw;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.quicklink a:hover .plus {
    visibility: visible;
    opacity: 1;
}

.quicklink .plus svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 7;
    transform: rotate(45deg);
}

.quicklink .picto {
    position: absolute;
    right: 1vw;
    top: 1vw;
    width: 4vw;
    height: auto;
    z-index: 1000;
}

.quicklink .picto svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 10;
}

.quicklink .fond.mauve:before {
    background-color: #7a114a;
}

.quicklink .fond.bleu:before {
    background-color: #084f79;
}

.quicklink .box {
    position: relative;
    z-index: 1000;
}

.quicklink .fond {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.quicklink .fond:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .7;
    transform: scale(1);

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.quicklink a:hover .fond:before {
    transform: scale(1);
    opacity: 0;
    visibility: hidden;

}

.quicklink a:hover .fond {
    transform: scale(1.1);
}

.quicklink .left {
    left: -15px;
    position: relative;
}

.quicklink .right {
    left: 15px;
    position: relative;
}


.ph {
    padding: 0 6vw;
}


.giantletter {
    position: absolute;
    color: #000;
    z-index: -10;
    font-family: 'Comfortaa', cursive;
    line-height: 100%;
    font-weight: 600;
    display: none !important;
}

.quicklink .giantletter:first-child {
    font-size: 40vw;
    margin-top: -29vw;
    margin-left: 10vw;
}

.quicklink .giantletter:last-child {
    font-size: 35vw;
    margin-top: -30vw;
    margin-left: -2vw;
}

.vedettes .giantletter {
    font-size: 60vw;
    margin-top: -51vw;
    margin-left: 69vw;
}

.nouvelles .giantletter:first-child {
    color: #434B57;
    font-size: 35vw;
    margin-top: 17vw;
    margin-left: -11vw;
}

.nouvelles .giantletter:last-child {
    color: #434B57;
    font-size: 60vw;
    margin-top: -78vw;
    margin-left: 26vw;
}

.calendrier .giantletter:first-child {
    font-size: 40vw;
    margin-top: -5vw;
    margin-left: 40vw;
}

.galerie .giantletter:first-child {
    font-size: 60vw;
    margin-top: -30vw;
    margin-left: 75vw;
    color: #454D59;
}



.calendrier .box {
    position: relative;
    height: 100%;
}

.calendrier.row>div {
    margin-bottom: 30px;
}

.calendrier .box .inside {
    padding: 50px;
    padding-right: 120px;
    position: relative;
    color: #fff;
    font-family: 'Comfortaa', cursive;
}


.calendrier .box:hover:before {
    opacity: 1;
}

.calendrier .box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #084F79;
    opacity: .9;
    content: " ";
    z-index: -1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}



.calendrier .box .inside button {
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -27px;
}

.calendrier .date {
    font-weight: 900;
    font-size: 1.2em;
}

.calendrier .title {
    font-size: 1.4em;
    text-transform: uppercase;
    font-weight: 600;
}






.vedettes span {
    display: block;
}

.vedettes .content {
    text-align: center;
    height: 100%;
}

.vedettes .subtitle,
.vedettes .title {
    font-family: 'Comfortaa', cursive;
}

.vedettes .subtitle {
    font-size: 2vw;
}

.vedettes .title {
    font-size: 4vw;
    line-height: 100%;
    font-weight: 600;
    color: #333;
    margin: 15px 0;
}

.vedettes .content {
    position: relative;
    font-family: 'Fira Sans', sans-serif;
}

.vedettes .box {
    padding: 40px;
    padding-bottom: 22vw;
    box-sizing: border-box;
}

.vedettes>div>div {
    margin-bottom: 40px;
}


.vedettes .description {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    margin: 2.9vw 0;
}

.vedettes .service:before,
.vedettes .produit:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    opacity: .75;
    z-index: -1;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.vedettes .produit:before {
    background-color: #eee;
}

.vedettes .service:before {
    background-color: #eee;
}

.box:before {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .55;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    content: "";
    top: 0;
    z-index: -1;
}

.vedettes .service .box:before {
    background-color: #e9e5e9;
}

.vedettes .produit .box:before {
    background-color: #dbe9f1;
}




.vedettes a:hover .service:before,
.vedettes a:hover .produit:before {
    opacity: 1;
}

.vedettes .image {
    line-height: 0;
    position: absolute;
    right: -0;
    bottom: 0;
    padding-left: 110px;
    left: 0;
    /*margin-top: -40px;*/
}


button.rond,
.btn.rond,
input[type="submit"].rond {
    width: 55px;
    height: 55px;
    padding: 0;
}

.vedettes button {
    left: 30px;
    bottom: 30px;
    position: absolute;
    background-image: url(../images/button-arrow-white.png);
}

.vedettes button.cyan {
    border-color: #4fade2;
    background-color: #4fade2;
}

.vedettes button.magenta {
    border-color: #E1678C;
    background-color: #E1678C;
}

.vedettes a:hover button {
    border-color: #333;
    background-color: #333;
}



.title-section {
    display: block;
    font-family: 'Comfortaa', cursive;
    font-size: 6vw;
    font-weight: 600;
    margin-bottom: 20px;
}

.nouvelles .content {

    font-family: 'Fira Sans', sans-serif;
    padding: 20px;

    position: relative;
}

.nouvelles .content:before {
    content: "";
    background-color: #f2f1f3;
    opacity: .9;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.nouvelles .content:hover:before {
    opacity: 1;
}


.nouvelles .date {
    font-family: 'Comfortaa', cursive;
    font-size: 1.3vw;
    display: block;
    margin: 10px 0;
}

.nouvelles .title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.8vw;
    display: block;
    font-weight: 600;
    margin: 15px 0;
    text-transform: uppercase;
}

.nouvelles .description {
    display: block;
    margin: 15px 0;
    line-height: 120%;
    font-weight: 300;
    padding-right: 50px;
}

.nouvelles .row {
    margin-bottom: 90px;
}

.nouvelles .row.no-margin [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.nouvelles .image {
    position: relative;
    top: -20px;
    right: -20px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.nouvelles .content:hover .image {
    transform: scale(1.1);
}

.nouvelles .odd {
    margin-right: 150px;
}

.nouvelles .even {
    margin-left: 150px;
}

.PageEvenement .nouvelles .image,
.PageBlogue .nouvelles .image,
.PageNouvelle .nouvelles .image {
    position: relative;
    top: -40px;
    left: -40px;
    right: inherit;
}

.PageEvenement .nouvelles .content:hover .image,
.PageBlogue .nouvelles .content:hover .image,
.PageNouvelle .nouvelles .content:hover .image {
    transform: scale(1)
}

.PageEvenement .content button,
.PageBlogue .content button,
.PageNouvelle .content button {
    margin-top: 40px;
}


.ss-htmleditorfield-file.embed {
    width: 100% !important;
}

.ss-htmleditorfield-file.embed,
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    margin-bottom: 20px;
}

.ss-htmleditorfield-file.embed iframe,
.videoWrapper iframe,
.videoWrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





section.tele p {
    margin-top: 20px;
    margin-bottom: 40px;
}




.alignright {
    position: relative;
    width: 100%;
    display: block;
    text-align: right;
}

.lightboxOverlay {
    z-index: 999999 !important;
}

.lightbox {

    z-index: 1000000 !important;
}


.galerie .image-container {
    line-height: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.image-container a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-color: rgba(70, 6, 51, 0);
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 5vw;
    font-weight: 100;
    z-index: 100;
}

.image-container a:hover:before {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    background-color: rgba(70, 6, 51, .7);

}

.image-container a img {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position: relative;
}

.image-container a:hover img {
    transform: scale(1.1);
}

.galerie {
    padding-right: 5vw;
    margin-top: 6vw;
}

.galerie .row {
    margin-bottom: 30px;
}


.blogues .giantletter {
    font-size: 40vw;
}

.blogues .content {
    background: #19222f;
    color: #fff;
    padding: 15vw 20vw 7vw 12vw;
    margin-right: 20vw;
    position: relative;
}

.blogues .description {
    font-style: italic;
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.2em;
    line-height: 125%;
    position: relative;
}

.blogues .description:before {
    content: "";
}

.blogues .image {
    position: absolute;
    top: 0;
    right: -6vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogues .image img {
    width: 16vw;
    height: 16vw;
    border-radius: 100vw;
}

.blogues .date {
    display: block;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
}

.blogues img.quote {
    max-width: 100%;
    height: auto;
    position: absolute;
    width: 56px;
    left: -62px;
    top: -39px;
}



.CallToAction {
    background-color: #eee;
    padding: 40px;
    margin-left: 10vw;
    margin-top: 120px;
    background-size: cover;
    min-height: 30vw;
    position: relative;
}

.CallToAction:before {
    content: "";
    background-color: #ccc;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.CallToAction .title {
    display: block;
    font-family: 'Comfortaa', cursive;
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c82679;
    line-height: 100%;
}

.CallToAction>div {
    position: relative;
    padding-right: 28vw;
}

.CallToAction>div .content {
    margin-bottom: 20px;
}




label.right+span.description {
    top: -16px;
    position: relative;
    font-size: .8em;
    color: #555;
}

#Form_EcommercePaymentForm_TermsAndConditions_Holder a,
#Form_EcommerceAccountCreationForm_TermsAndConditions_Holder a {
    color: #E1678C;
    font-weight: 400;
    text-decoration: underline;
}


.modal-holder.inactive {
    visibility: hidden;
    opacity: 0;
}

.modal-holder {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 36, 51, .8);
    opacity: 1;
    z-index: 100000;
    /*
	display: flex;
  align-items: center;
  justify-content: center;*/
    overflow-y: scroll;
    padding: 30px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    visibility: visible;
    opacity: 1;
}


.modal {
    position: relative;
    /*	top:10px;
	left:10px;
	right:10px;
	bottom:10px;*/
    padding: 30px;
    padding-top: 100px;
    margin: 30px auto;
    background-color: #fff;
    z-index: 1000000;
    max-width: 900px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}




/*
.popup {
	position:relative;
	background-color:#fff;
	z-index:10000000001;

	position: relative;

}
*/
.my.popup {
    margin: 0;
    left: 0;
    top: 0;

    display: flex;
    align-items: center;
    /*justify-content: center;*/
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}


.my.popup>div {
    /*margin-left: inherit !important;*/
    position: relative;
    left: inherit !important;
    max-width: 720px !important;
    left: inherit !important;
    padding: 90px 50px 30px;
    width: 720px;

    margin: auto;
    max-height: 100%;
    overflow: auto;
}



.popup .close,
.modal .close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;

}

.popup .close:hover,
.modal .close:hover {
    opacity: .7;
}

/*
.popupMask {
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-color: rgba(30,36,51,.8);
	opacity:1;
	z-index:10000000000;
	display: flex;
	 align-items: center;
	 justify-content: center;

}*/


.popup .Background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: 1000px;
    background-repeat: no-repeat;
    background-position: center right;
}

.my.popup img {
    padding-right: none !important;
}


.popup h3 {
    font-weight: 800;
}

.popup pre {
    padding: 0;
    margin: 10px 0;
    font-weight: 600;
}


.popup .close svg,
.modal .close svg {
    fill: transparent;
    stroke: #000;
    stroke-width: 6;
}


#UserForm_Form_3 {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 30px;
    box-sizing: border-box;
}



.CazaPlusInfolettre section .row,
.EcommerceMyAccount section .row,
.EcommerceCheckout section .row,
.EcommerceMyAccountCreation section .row,
#Form_EcommerceAccountModificationForm,
#LostPasswordForm_lostPasswordForm,
#Form_PageSpectaclesAteliersAnimationsPrincipaleForm,
#UserForm_Form_33 {
    background-color: #f4f4f4;
    border-radius: 30px;
    box-sizing: border-box;
}

.CazaPlusInfolettre .row>div,
.EcommerceMyAccount .row>div,
.EcommerceCheckout .row>div,
.EcommerceMyAccountCreation .row>div,
#Form_EcommerceAccountModificationForm,
#LostPasswordForm_lostPasswordForm,
#Form_PageSpectaclesAteliersAnimationsPrincipaleForm,
#UserForm_Form_33 {
    padding: 30px !important;
}

.CazaPlusInfolettre .row>div:first-child,
.EcommerceMyAccount .row>div:first-child,
.EcommerceCheckout .row>div:first-child,
.EcommerceMyAccountCreation .row>div:first-child {
    border-right: 2px solid #ddd;
}




.PageBlogues .blogues .content {
    margin: 0;
    padding: 0;
    background: none;
}

.PageBlogues .blogues .row>div {
    background: #19222f;
    padding: 40px;
}

.PageBlogues .blogues .blogue img {
    margin-left: -40px;
    position: relative;
    width: calc(100% + 80px);
    box-sizing: border-box;
    top: -40px;
    /* right: 40px; */
    height: auto;
    max-width: calc(100% + 80px);
}

.PageBlogues .blogues img.quote {
    position: relative;
    width: 40px;
    left: 0;
    top: 0;
}


.cyan {
    color: #4fade2;
}

.magenta {
    color: #d53486;
}

.magenta-fonce {
    color: #7a114a
}



.orderdetails a {
    font-weight: 600;
    text-decoration: underline;
}


















@media (min-width: 1200px) {

    #lightSlider {
        height: 40vw !important;
    }

}


@media (max-width: 1199px) {

    h1 {
        font-size: 3em;
    }

    #Breadcrumbs {
        font-size: 1.2em;
    }


}

@media (max-width: 991px) {

    h1 {
        font-size: 2.4em;
        margin: 20px 0;
    }

    #Breadcrumbs {
        font-size: 1.2em;
    }

    header .main-links li.social {
        display: none;
    }


    .nouvelles .even {
        margin-left: 75px;
    }

    .nouvelles .odd {
        margin-right: 75px;
    }

    .HomePage .nouvelles .row .PageNouvelle .nouvelles .row {
        flex-direction: column-reverse;
    }

    .nouvelles .image {
        top: -0;
        left: -0;
        right: inherit;
        width: calc(100%);
        margin-top: 30px;
    }

    .quicklink {
        padding: 50px;
    }


    .PageEvenement .nouvelles .image,
    .PageBlogue .nouvelles .image,
    .PageNouvelle .nouvelles .image {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin-bottom: 30px;
    }



}

@media (max-width: 767px) {

    .calendrier .title {
        font-size: 1em;
    }

    .vedettes .image {
        position: relative;
        padding-left: 0;
    }

    .vedettes .box {
        padding: 40px;
        padding-bottom: 120px;
    }

    .HomePage section.galerie {
        display: none;
    }

    .PageSpectaclesAteliersAnimations .row .object>img,
    .EcommerceProductQuote .row .object>img,
    .EcommerceProduct .row .object>img {
        left: -20px;
        top: -20px;
    }

    .CazaPlusInfolettre .row>div:first-child {
        border-bottom: 2px solid #ddd;
        border-right: 0;
    }

    .EcommerceCheckout .row>div:first-child {
        border-bottom: 2px solid #ddd;
        border-right: 0;
    }

    .calendrier.row>div {
        margin-bottom: 20px;
    }


    header .main-links li.boutique {
        display: none;
    }

    #Breadcrumbs {
        font-size: 1.1em;
        margin: 20px 0;
    }

    .logo {
        width: 188px;
        top: 10px;
        left: 72px;
    }

    header {
        height: 100px;
    }

    header .main-links li.email {
        display: none;
    }

    .offset-top {
        margin-top: 100px;
    }

    .mobile,
    header .main-links a.mobile {
        display: block;
    }

    .nomobile,
    header .main-links a.nomobile {
        display: none;
    }

    header .main-links li.user .mobile svg {
        top: 10px;
        position: relative;
    }

    .nouvelles .even,
    .nouvelles .odd {
        margin-left: -0 !important;
        margin-right: -0 !important;
    }

    .PageNouvelles .nouvelles .even,
    .PageNouvelles .nouvelles .odd {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }

    .nouvelles .title {
        font-size: 1.1em;
    }

    .nouvelles .row {
        margin-bottom: 20px;
    }

    .nouvelles .date {
        font-size: 1em;
    }

    .nouvelles .title {
        margin: 0;
    }

    .ph {
        padding: 0 20px;
    }

    .quicklink {
        padding: 25px;
    }

    .quicklink .left {
        left: 0;
    }

    .quicklink .right {
        left: 0;
    }

    .quicklink .content {
        margin-bottom: 10px;
    }

    .quicklink .content h2 {
        font-size: 1.8em;
    }

    .quicklink .picto {
        right: 10px;
        top: 10px;
        width: 30px;
    }

    .nouvelles .description {
        padding-right: 0;
    }

    .vedettes .subtitle {
        font-size: 1.4em;
    }

    .vedettes .title {
        font-size: 1.8em;
    }

    .nouvelles .content:hover .image {
        transform: scale(1);
    }

    .my.popup {
        width: auto;
        margin: 0 0;
        left: 20px;
        right: 20px;
    }

    .my.popup>div {
        /*  align-items: flex-start;*/
        /*  overflow-y: scroll;*/
        /* height: 100%; */
        width: 100% !important;
        margin-left: 0 !important;
        left: 0 !important;
    }

    .my.popup .Background {
        display: none;
    }


    .EcommerceMyAccount .row>div:first-child,
    .EcommerceMyAccountCreation .row>div:first-child {
        border-bottom: 2px solid #ddd;
        border-right: 0
    }

    .title-section {
        font-size: 30px;
    }

    .calendrier .box .inside {
        padding: 20px;
        padding-right: 90px;
    }

    .calendrier .box .inside button {
        right: 20px;
    }

    .CallToAction .title {
        font-size: 30px;
    }


}

@media (max-width: 512px) {

    .blogues .image {
        top: 30px;
        left: 50px;
        right: inherit;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .blogues .quote {
        width: 40px;
        left: -40px;
        top: -20px;
    }

    .title-section {
        margin-top: 20px;
    }

    .blogues button.white-background {
        margin-top: 30px;
    }

    .blogues .content {
        margin-right: 0;
        padding: 120px 50px 25px;
    }

    .quicklink .content {
        height: 100px;
    }

    .quicklink {
        padding: 15px;
    }

    .ph {
        padding: 0 15px;
    }

    #lightSlider {
        height: calc(100vh - 200px) !important;
    }

    .presentation .left {
        width: 100%;
    }

    .presentation .point {
        color: #E1678C;
    }

    .presentation .lettreb {
        bottom: -12%;
        left: -8%;
        font-size: 70vw;
    }

    footer {
        text-align: center;
        padding: 30px;
        padding-right: 20px;
    }

    .offset-top {
        margin-top: 80px;
    }

    nav.primary .fermer {
        width: 40px;
    }

    nav.primary ul a {
        font-size: 1.4em;
    }

    header .main-links>li>a {
        padding: 10px;
    }

    header .main-links .boutique a,
    header .main-links .cart a {
        color: #000;
        background: none;
        font-size: 20px;
    }

    header .main-links .cart svg {
        stroke: #000;
    }

    header .main-links>li>a {
        height: 42px;
        line-height: 42px;
    }

    header .main-links .cart .image {
        left: 20px;
        top: 9px;
    }

    .logo {
        width: 150px;
        top: 10px;
        left: 62px;
    }

    header {
        height: 80px;
    }

    .menumobile svg {
        top: 26px;
    }

    header .main-links {
        top: 10px;
    }


    header .main-links .cart a:hover {
        background-color: transparent;
    }

    header .main-links li.user .mobile svg {
        top: 0;
        position: relative;
    }

    .CallToAction {
        padding: 30px;
        margin-left: 0;
        margin-top: 0;
    }

    .CallToAction>div {
        padding-right: 0;
    }

}

.b_filter_content {
    margin-top: 32px;
}