

/******************** Structure ******************/

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Nunito:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,700;0,800;1,300;1,400;1,700;1,800&family=Exo:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');


@font-face {
    font-family: 'burbank_big_condensedblack';
    src: url('../fonts/burbank_big_condensed_black-webfont.woff2') format('woff2'),
         url('../fonts/burbank_big_condensed_black-webfont.woff') format('woff');
    font-weight: normal !important;
    font-style: normal;
}

/* Global
------------------------------- */
:root {

    /* Font/text values */
    --font-titre: 'Poppins';
    --font-body: 'Nunito';
    --font-alt: 'Lobster';
    --font-alt2: 'burbank_big_condensedblack';

    --site-width: 1200px;
    --content-width: 33em;
    --box-width: 29em;
    --padding-container: 1.42em;

    --height-header:5.7571em;
    --height-header-sticky:calc(var(--height-header));
    --width-drawer:26em;
}
@media (min-width: 1024px) {  
    :root {
        --height-header:90px;
    }
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html {
    height: 100%;
    font-size: 11px;
}
@media (min-width: 320px) {  
    html {
        font-size: 12px;
    }
}
@media (min-width: 375px) {  
    html {
        font-size: 13px;
    }
}
@media (min-width: 428px) {  
    html {
        font-size: 14px;
    }
}
@media (min-width: 768px) {  
    html {
        font-size: 15px;
    }
}
@media (min-width: 1024px) {  
    html {
        font-size: 16px;
    }
}
@media (min-width: 1140px) {  
    html {
        font-size: 18px;
    }
}
body{
    min-height: 100%;
    font-family: var(--font-body), sans-serif;
    font-weight:400;
    color:#FFFFFF;
    margin:0 !important;
    padding: 0;
    font-size: 1em;
    line-height: 1.2;
    background-color: #17001A;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    position: relative;

    background-color: #020516;

    display: flex;
    flex-direction: column;
}


/* Typo global
------------------------------- */

h1, h2, h3, h4, h5, h6 ,
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.2;
    margin: 0 0 1em;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-titre), sans-serif;
}

h1, .h1{
    font-size:2.14em;
}
h2, .h2{
    font-size:1.3em;
}
h3, .h3{
    font-size:1.1em;
}
h4, .h4{
    font-size:1.35em;
}
h5, .h5{
    font-size:1.14em;
}
h6, .h6{
    font-size:1.07em;
}

p{
    margin-top:0;
    margin-bottom:1em
}
small,
.small {
    font-size: 0.8em;
}
.center{
    text-align: center;
}
.justify{
    text-align: justify;
}
.left{
    text-align: left;
}
.right{
    text-align: right;
}
.txt-small-notice{
    font-size: 0.85em;
    color: #E07DFF;
}

.highlight-rose{
    color: #F90070;
}
.highlight-violet{
    color: #A840FF;
}
.highlight-rouge{
    color: #FF0B6F;
}
.highlight-rose-clair{
    color: #F167FD;
}
.highlight-rose-pale{
    color: #D4B6E6;
}
.highlight-violet-pale{
    color: #AC93FF;
}
.highlight-skin{
    color: #FDC9C4;
}

a, a:visited{
    text-decoration: none;
    color: #E07DFF;
}
p a {
    text-decoration: underline;
}
a:hover, a:active, a:focus {
    text-decoration: none;
     outline:  none;
    outline-color: transparent;
    -webkit-tap-highlight-color: transparent;
    transition: color .3s ease-in-out;
    -webkit-transition: .3s color ease-in-out;
    -o-transition: .3s color ease-in-out;
}

.invert{
    color: #AD83FF;
}
.invert a{
    color: #FFFFFF;
}
img{    
    border-style: none;
    height: auto;
    max-width: 100%;
}
b, strong {
    font-weight: 700;
}
/* Formulaires
------------------------------- */
/* couleur placeholder */
::-webkit-input-placeholder {   color: #FFFFFF;}
:-moz-placeholder {             color: #FFFFFF;   opacity: 1;}
::-moz-placeholder {            color: #FFFFFF;   opacity: 1;}
:-ms-input-placeholder {        color: #FFFFFF;}

/* couleur placeholder focus */
:focus::-webkit-input-placeholder {   color: rgba(224, 125, 255, .4);}
:focus:-moz-placeholder {             color: #E07DFF;   opacity: .4;}
:focus::-moz-placeholder {            color: #E07DFF;   opacity: .4;}
:focus:-ms-input-placeholder {        color: rgba(224, 125, 255, .4);}

input::-webkit-datetime-edit-fields-wrapper{
    padding: 0;
}

input:focus {
     outline:  none;
}

label {
    display: block;
    margin-bottom: 5px;
}


.line-form{
    margin-bottom: 1.2em;
}

.choix {
    margin-bottom: 1.2rem;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=tel], input[type=number], input[type=date], textarea, select {
    width: 100%;

    background: rgba(224, 125, 255, 0.2) ;
    color: #FFFFFF;
    border: 2px solid  #E07DFF;
    border-radius: 1.25em;

    max-width: 100%;

    /*padding: .8rem 1rem;
    min-height: calc(1.5em + 1rem + 2px);*/

    padding: .8em;
    display: flex;

    font-family: var(--font-body), sans-serif;
    font-size: 1.14em;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    
    outline: none;
    outline-color: transparent;

    margin: 0;

    transition: background .3s ease-in-out;
    -webkit-transition: .3s background ease-in-out;
    -o-transition: .3s background ease-in-out;
}
textarea {
    height: 12rem;
}
input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=date]:focus, textarea:focus, select:focus {
    color: #FFFFFF;
    background-color: rgba(224, 125, 255, 0.1) ;
    border-color: #E07DFF;
}
input[type=button], button[type=submit], input[type=submit] {
    cursor: pointer;
}
a.btn, .btn, input[type=button], button[type=submit], input[type=submit] {
    font-family: var(--font-titre), sans-serif;

    width: 100%;
    border: 0 ;
    font-weight: 400;
    font-size: 1.57em;
    line-height: 100%;
    text-decoration: none;
    text-align: center;
    /*padding: .8rem 1rem;
    min-height: calc(1.5em + 1rem + 2px);*/

    padding: .6em .8em;

    outline: none;
    outline-color: transparent;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    background-color: #FF0B6F  ;
    color: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 3.9em;

    -webkit-transition: border .5s, background .5s, color .5s;
    -o-transition: border .5s, background .5s, color .5s;
    transition: border .5s, background .5s, color .5s;
}
a.btn.small, .btn.small {
    font-size: 1.35em;
    width: auto;
    min-height: auto;
    text-transform: none;
    padding: .35em .4em;

}
a.btn.outline, .btn.outline {
    background-color: transparent;
    border-color: #E07DFF;
    color: #E07DFF;
}
a.btn.outline svg, .btn.outline svg {
    fill: #E07DFF;
    -webkit-transition: fill .5s;
    -o-transition: fill .5s;
    transition: fill .5s;
}
a.btn.rose-pale, .btn.rose-pale {
    background-color: hsla(286, 100%, 75%, 1);
    color: hsla(294, 86%, 22%, 1);
}
a.btn.green, .btn.green {
    background-color: hsla(92, 100%, 49%, 1);
    color: #17001A;
}

a.btn.white, .btn.white {
    background-color:#FFFFFF;
    color: #60086A;
}

a.btn:hover, a.btn:active, .btn:hover, .btn:active, input[type=button]:hover, button[type=submit]:hover, input[type=submit]:hover {
    /*background-color:#FF0B6F;*/
}


a.btn.rose-pale:hover, a.btn.rose-pale:active {
    background-color: hsla(286, 100%, 85%, 1);
}

a.btn.green:hover, a.btn.green:active {
    background-color: hsla(92, 100%, 59%, 1);
}

a.btn.outline:hover, .btn.outline:hover {
    background-color: transparent;
    border-color: #FFF;
    color: #FFF;
}
a.btn.outline:hover svg, .btn.outline:hover svg{
    fill: #FFF;
}


/* Bouton relief */

a.btn.relief, .btn.relief{    
    font-size: 1.78em;
    font-weight: 900;
    border-radius: 0.36em;
    background-color: transparent ;
    background-image: linear-gradient(180deg, #CA52FF 0%, #7E2BFF 100%);
    border: 0;
    box-shadow: 0px 0.2222em 0 #4C00C4;
    padding: 0.36em .5em;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: .3em;
}
a.btn.relief:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #4C00C4;
    top: 0.1111em;
}

a.btn.relief.orange, .btn.relief.orange{  
    background-image:  linear-gradient(180deg, #FCCA27 0%, #FF5F23 100%);
    box-shadow: 0px 0.2222em 0 #D80051;
}

a.btn.relief.orange:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #D80051;
}


a.btn.relief.bleu, .btn.relief.bleu{  
    background-image:  linear-gradient(180deg, #0070FF 0%, #6600FF 100%);
    box-shadow: 0px 0.2222em 0 #3A009F;
}

a.btn.relief.bleu:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #3A009F;
}


a.btn.relief.rose, .btn.relief.rose{  
    background-image:  linear-gradient(180deg, #FB0078 0%, #920075 100%);
    box-shadow: 0px 0.2222em 0 #540054;
}

a.btn.relief.rose:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #540054;
}

a.btn.relief.rose-pale, .btn.relief.rose-pale{  
    background-color: #E0C4FD ;
    background-image: none;
    box-shadow: 0px 0.2222em 0 #C681E9;
}

a.btn.relief.rose-pale:active {
    background-color: #E0C4FD ;
    box-shadow: 0px 0.1111em 0 #C681E9;
}

a.btn.relief.rose-pale-plus, .btn.relief.rose-pale-plus{  
    background-image:  linear-gradient(180deg, #E4BDF9 0%, #FFFFFF 100%);
    box-shadow: 0px 0.2222em 0 #B073D1;
}

a.btn.relief.rose-pale-plus:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #B073D1;
}

a.btn.relief.rose-clair, .btn.relief.rose-clair{  
    background-image:  linear-gradient(180deg, #FF9FF9 0%, #E740FF 100%);
    box-shadow: 0px 0.2222em 0 #AC00CC;
}

a.btn.relief.rose-clair:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #AC00CC;
}

a.btn.relief.violet-pale, .btn.relief.violet-pale{  
    background-image:  linear-gradient(180deg, #FFFFFF 0%, #AA91FF 100%);
    box-shadow: 0px 0.2222em 0 #7D57FF;
}
a.btn.relief.violet-pale:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #7D57FF;
}

a.btn.relief.violet-pale-inverse, .btn.relief.violet-pale-inverse{  
    background-image:  linear-gradient(180deg, #AA91FF 0%, #FFFFFF 100%);
    box-shadow: 0px 0.2222em 0 #7D57FF;
}
a.btn.relief.violet-pale-inverse:active {
    background-color: transparent ;
    box-shadow: 0px 0.1111em 0 #7D57FF;
}

a.btn.relief.rose-paler,.btn.relief.rose-paler {
    background-image: linear-gradient(180deg,#FFFFFF 0%,#E07DFF 100%);
    box-shadow: 0 .2222em 0 #8e2ded
}

a.btn.relief.rose-paler:active {
    background-color: transparent;
    box-shadow: 0 .1111em 0 #8e2ded
}

a.btn.relief span.subtitle {
    position: absolute;
    top: calc( 100% + 0.45em);
    display: block;
    left: 0;
    right: 0;
    text-align: center;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.6em;
    font-weight: bold;
}

input[type=button]:disabled , input[type=submit]:disabled {
    cursor: default;
    background-color: #CCC;
    color: #FFFFFF;
}

/* Bouton icone offset */

a.btn-offset, .btn-offset{ 
    font-size: 1.35em;   
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-titre), sans-serif;

    display: flex;
    align-items: center;
    position: relative;
    gap: 1em;
}
a.btn-offset:after, .btn-offset:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2.1em;
    transform: translateY(-50%);
    right: 0;
    left: .7em;
    z-index: -1;
    background: #3B0442;
    border-radius: 1.3em;
}




/* Helpers */
.big_lien{     
    margin-top: 1.53rem;
    text-align: center;
}
.big_lien a{ 
    font-weight: bold;
    font-family: var(--font-titre), sans-serif;  
}

.spacing-double{
    margin-bottom: var(--spacing-double);
}


.bg-box-opacity{
    background: rgba(21, 0, 62, 0.5);
    border: 1px solid #AD83FF;
    border-radius: 5px;
    padding: 1em;
    text-align: center;
}
.bg-box-opacity.orange{
    background: rgba(255, 155, 46, 0.16);
    border: 1px solid #FF9B2E;
}


/* Blocs Généraux */

#page{
    flex-grow: 1;
    position:relative;
    padding-top: var(--height-header);
    padding-bottom: 2em;
}
body.home  #page{
    padding-top: 0;
}
body.banner-footer #page{
    padding-bottom: 5em;
}
.container{
    max-width:var(--site-width);
    margin:0 auto;
    padding:0 var(--padding-container);
    width:100%;
    position: relative;

}



/* 
Header 
-------------- */

#masthead{
    padding:  0;
    position: absolute;
    left: 0 ;
    right: 0;
    top: 0;
    background-color: transparent;
    z-index: 1100;
    height: var(--height-header);
    display: flex;
    align-items: stretch;
    transition: all .1s ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
}
.scrolling #masthead{
    position: fixed;
    background: rgba(23,0,26,0.4);
    height: var(--height-header-sticky);
}
#masthead .container-header{
    display: flex;
    justify-content: space-between;

}
#masthead .center-header{    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    flex-shrink: 0;
    padding-top: .7em;
}
#masthead .center-header .logo-bb{
    width: 147px;
   display: block;
   transition: width .1s ease-in-out;
}
.scrolling #masthead .center-header .logo-bb{
    width: 95px;
}

#masthead .left-header,
#masthead .right-header{
    width: 20%;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    padding-top: .7em;
    position: relative;
}
#masthead .left-header{
    justify-content: flex-start;
}
#masthead .right-header{
    justify-content: flex-end;
    align-items: flex-start;
}

#masthead .right-header a img{
    max-width:80px;
}

@media screen and (max-width: 768px) {
	#masthead .right-header a img{
		max-width:60px;
	}
}

.scrolling #masthead .center-header,
.scrolling #masthead .left-header,
.scrolling #masthead .right-header{
    padding-top: 0;
    align-items: center;
}





#masthead .bt-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent;
    flex-shrink: 0;

    margin-top: .4em;
}

#masthead .bt-menu-header img {
    width: 2.07em;
}
#masthead .bt-menu img {
    width: 2.84em;
}

#masthead .bt-menu img.bt-menu-caret {
    width: auto;


    -webkit-animation:leftright 1s infinite;
    -moz-animation:leftright 1s infinite;
    -o-animation:leftright 1s infinite;
    animation:leftright 1s infinite;
}

#masthead .bt-menu img.bt-menu-bbgalaxy {
    width: 6em;
}

@-webkit-keyframes leftright{
  0%   { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
  50% { transform:translateX(-0.8em); -webkit-transform:translateX(-0.8em); }
  100% { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
}
@-moz-keyframes leftright{
  0%   { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
  50% { transform:translateX(-0.8em); -webkit-transform:translateX(-0.8em); }
  100% { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
}
@-o-keyframes leftright{
  0%   { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
  50% { transform:translateX(-0.8em); -webkit-transform:translateX(-0.8em); }
  100% { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
}
@keyframes leftright{
  0%   { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
  50% { transform:translateX(-0.8em); -webkit-transform:translateX(-0.8em); }
  100% { transform:translateX(-0.3em); -webkit-transform:translateX(-0.3em); }
}

#masthead a.bt-bbcam  {
    width: 70px;
    height: 70px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/bt-boobycam.png);
    transition: transform .2s ease-in-out;
}
#masthead a.bt-bbcam:hover{
    transform: rotate(10deg);
}
@media screen and (max-width: 768px) {
    #masthead a.bt-bbcam {
        height:55px;
        width: 55px
    }
}


#masthead .bt-back {
    background-color: #E07DFF;
    width: 2.62em;
    height: 2.62em;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
#masthead .bt-back img{
    width: 1.35em;
}

#masthead .bt-close{
    width: 2.62em;
    height: 2.62em;
}
#masthead .bt-close img{
    width: auto;
}


#switch-nsfw {
    position: absolute;
    top: calc(100% + 1em);
    left: 0em;
    --switch-width: 1.1685em;
    cursor: pointer;
    margin:  0 0 0;
    width: 4.14em;
    background-color: rgba(249, 0, 112, 0.1);
    border: 1px solid #F90070;
    height: 1.92em;
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 100000;
}

#switch-nsfw.active {
    background-color: rgba(0, 249, 133, 0.1);
    border: 1px solid #00F985
}

#switch-nsfw .text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(var(--switch-width) + 2px);
    left: 2px;
    text-align: center;
    color: #F90070;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-weight: bold;
}

#switch-nsfw.active .text {
    color: #00F985;
    right: 2px;
    left: calc(var(--switch-width) + 2px);
}

#switch-nsfw .text:after { 
    font-size: 0.7em;   
    content: "NSFW"
}

#switch-nsfw.active .text:after {
    font-size: 0.7em;
    content: "SAFE"
}

#switch-nsfw .cursor {
    display: flex;
    align-items: center;
    justify-content: center;    
    width: var(--switch-width);
    top: 2px;
    right: 5px;
    bottom: 2px;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out
}

#switch-nsfw .cursor img {
    width: 100%
}


#switch-nsfw.active .cursor {
    right: calc(100% - var(--switch-width) - 5px);
}






/* 
Drawer */

.drawer{ 
    position: fixed;
    top: 0;
    width: var(--width-drawer);
    bottom: 0;
    z-index: 100000001;
    background-color: #17001A;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(../img/bg-2022a-drawer@2x.png);
    color: #FFFFFF;

    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

#menu-drawer{ 
    left: calc( 0px - var(--width-drawer));
}
#menu-drawer.open{ 
    left: 0;
    transition-property: left;
}


.drawer .section{    
    padding: 1.71em;
    height: 100%;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    position: relative;
}
.drawer .close-drawer{
    position: absolute;
    top: 1.71em;
    right: 1.71em;
    cursor: pointer;
}


/* infos-vip */

.infos-vip{
    position: relative;
    background-color: #3B0442;
    border: 2px solid #E07DFF;
    border-radius: 1.78em;
    padding: 1.22em 1.42em ;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
}

.infos-vip .titre{
    margin-bottom:0.2em;
}
.infos-vip .txt{
    color: #E07DFF;
    margin-bottom: 0;
}

/* Vip btn */
.infos-vip .btn-vip{
    margin-top: 1em;
    z-index: 1;
    display: inline-flex;
    gap:.5em;
}
.infos-vip .btn-vip img{
    width: 3.26em;
    margin-top: -.3em;
}
.infos-vip .btn-vip span{
    margin-right: 1em;
}
.infos-vip .btn-vip:after{
    background-color: #F90070;
    height: 1.8em;
}



/* middle-nav */

.middle-nav  {
    margin-top: 3.5em;
}
.middle-nav h3  {
    font-size: 1.1em;
    margin-bottom: 0.5em;
}
.middle-nav .ext-links{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    row-gap:calc(1em + 0.2222em);
    margin-bottom: 3em;
}

.middle-nav .ext-links > .btn,
.middle-nav .ext-links .holder{
    width: calc(50% - 0.5em);
}


a.btn-big{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(102, 0, 255, 0.3);
    border: 2px solid #AD83FF;
    border-radius: 0.8em;
    font-size: 1em ;
    padding: 0.3em 1em;
    color: #FFF;
    font-weight: bold;
    gap: 0.5em;
}

a.btn-big.btn-bell{
   width: 10em;
}
a.btn-big.btn-bell img.check,
a.btn-big.btn-bell.active img{
    display: none;
}
a.btn-big.btn-bell.active img.check{
    display: block;
    margin-top: -0.7em;
}


a.btn-big.btn-phone{
    background-color: transparent;
    border: 0;
    border-radius: 0;
    text-align: center;
    padding: 0;
    margin-left: 1em;

}



/* bottom-nav */

.bottom-nav{
    margin-top: auto;
}
.bottom-nav .liste-dropdown{
    width: 5em;
    margin-bottom: 1em;
    font-weight: 900;
}
.bottom-nav .links-bottom{
    margin-top: 1em;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.bottom-nav .links-bottom a{
    color: #FFFFFF;
    text-decoration: none;
}

.bottom-nav .links-bottom a img{
    width: 2em;
}

.bottom-nav a.btn.btn-promote {
    font-size: .9em;
    margin-bottom: 1em;
}

/* Hide body */

.hide-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100001;
    display: none;
    background: rgba(0, 0, 0, .6) ;


}


/* 
Footer 
-------------- */

#footer-adthink{
	display:flex;
	align-items:flex-end;
	justify-content:center;
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	max-height:90px;
	overflow:hidden;
}

/***************** 
 * 
 * Waiting Screen 
 * 
 * *****************/


body.waiting #page{
    display: flex;
    flex-direction: column;

    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(../img/bg-2022a-desktop.png);
}

@media (max-width: 768px) {  
    body.waiting #page{
        background-image: url(../img/bg-2022a@2x.png);
    }
}

.container-waiting{
    padding: var(--padding-container);
    flex-grow: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container-waiting h1{
    font-size: 2.35em;
    margin: 0;
    font-family: var(--font-alt), sans-serif;
}
.container-waiting h1 .days{
    /*color: #CA52FF;*/
}
.container-waiting p.tagline{
    font-size: 1.28em;
    margin: 0;
    font-family: var(--font-alt), sans-serif;
}





/*
    Tags
*/
.container-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto 20px auto
}

a.wrapper-tag {
    position: relative;
    border: 1px solid #E07DFF;
    box-sizing: border-box;
    padding: 5px 10px 5px 22px;
    color: #E07DFF;
    font-size: .7em;
    text-transform: uppercase;
    border-radius: 100px;
    font-weight: 700;
    margin: 5px
}

a.wrapper-tag::before {
    content: '';
    display: block;
    border-radius: 100%;
    background: #E07DFF;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translate(0,-50%)
}

a.wrapper-tag span {
    color:#E07DFF;
    text-transform: lowercase;
    font-size: .6rem;
    padding-left: 4px
}




/*********************
 * 
 *  Page Single jour
 * 
 * ***********************/
 
 .single-jour  {
    --height-header: 4.71rem;
 }
 .single-jour #page {
    padding-bottom: 0;
 }


.header-detail{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    background-color:#17001A;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    text-align:center;
    height:var(--height-header);
}
.header-detail .container{
    height: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-detail .day-number{
    font-size:1.71em;
    color:#FFF;
    font-weight:bold;
}


.header-detail .close-right{
    width: 80px;
    text-align: right;
}

#details{
    margin:0;
    padding:0;
}

#details-video.blur{
    filter:blur(10px);
}

#details-video-wrapper{
   /* overflow-y:scroll;*/ 
    position: fixed;
    left: 0;
    right: 0;
    top: var(--height-header);
    z-index: 1;
}

#details-video-wrapper.fullscreen{
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index:1000;
    background-size:contain;
    background: #000;
}
#details-video-wrapper.fullscreen video{
    min-height: 100%;
    min-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
    background-size: contain;
    background-position: center center;
	position: fixed;
	background-color: #000;
}


#details-video{
/*
    width:100%;
    height:var(--content-width);
    max-width:var(--content-width);
    max-height:var(--content-width);
*/

    width:100%;
    max-width: var(--content-width);
    max-height: var(--content-width);
    
    margin:0 auto;
    padding:0;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
    background-color:#000;
    overflow:hidden;
}
#details-video video{
    min-height: 100%;
    min-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    background-size: cover;
    background-position: center center;
}


#details-video-wrapper.fullscreen #details-video{
    max-width: 100%;
    max-height: 100%;
    background-size: contain;
    background-size: contain;
    aspect-ratio: auto;
    height: 100%;
}

#details-video-cache{
    /*width:0;
    height:0;*/

    position:absolute;
    left:0;
    top:0;
    left:50%;
    transform: translateX(-50%);

    width:100%;
    max-width: var(--content-width);
    max-height: var(--content-width);

    margin:0 auto;
    padding:0;
    cursor:pointer;
    background-color:rgba(255,255,255,0);
    background-image:url(../img/play.png);
    background-position:center center;
    background-repeat:no-repeat;
    background-size:20%;
    overflow:hidden;
}

/*Video Loading*/
#details-video-cache.loading{
    background-image:url(../img/loading.gif);
}
/*Video playing*/
#details-video-cache.playing{
    background-image:none;
}
/*Video played*/
#details-video-cache.played{
    background-image:none;
}

#details-video-cache.deleted{
    background-image:url(../img/play_deleted.png);
}


#details-video-wrapper.fullscreen #details-video-cache{
    display: none;
}

#details-video-cache .duration{
    position:absolute;
    top:1rem;
    left:1rem;
    color:#FFF;
    font-size:0.7rem;
    text-shadow: 0 0 3px rgba(0,0,0,1);
    z-index: 1;
    display: none;
}

#details-video-cache.playing .duration,
#details-video-cache.played .duration{
    display:block !important;
}

#details-video-cache:after{
    display: none;
    content: "";
    position:absolute;
    top:1rem;
    right:1rem;
    color:#FFF;
    font-weight: 900;
    padding: .3em 1em;
    border-radius: 1.5em;
    z-index: 1;
}

.live #details-video-cache {
	background-image: none !important;
}

.live #details-video-cache:after,
.offline #details-video-cache:after{
    display:block;
}
.live #details-video-cache:after {
    content: "LIVE";
    font-size:1.21rem;
    background-color: #F90070;
}
.offline #details-video-cache:after{
    content: "OFFLINE";
    font-size:1rem;
    background-color: rgba(96, 8, 106, 0.3);
    border: 1px solid #60086A;
}

#details-html-specific{
    margin:50px 0 100px 0;
    display:none;
}

@-webkit-keyframes zoomdezoom{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.9); -webkit-transform:scale(0.9); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@-moz-keyframes zoomdezoom{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.9); -webkit-transform:scale(0.9); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@-o-keyframes zoomdezoom{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.9); -webkit-transform:scale(0.9); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@keyframes zoomdezoom{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.9); -webkit-transform:scale(0.9); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@-webkit-keyframes zoomdezoomfat{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.7); -webkit-transform:scale(0.7); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@-moz-keyframes zoomdezoomfat{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.7); -webkit-transform:scale(0.7); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@-o-keyframes zoomdezoomfat{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.7); -webkit-transform:scale(0.7); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
@keyframes zoomdezoomfat{
  0%   { transform:scale(1); -webkit-transform:scale(1); }
  50%  { transform:scale(0.7); -webkit-transform:scale(0.7); }
  100% { transform:scale(1); -webkit-transform:scale(1); }
}
#details-video-cache .bt-fullscreen{
    width:2.5em;
    height:2.5em;
    position:absolute;
    right:1em;
    bottom:1em;
    display:none;
}

/*Video playing */
#details-video-cache.playing .bt-fullscreen{
    display:block !important;
    -webkit-animation:zoomdezoom 1s infinite;
    -moz-animation:zoomdezoom 1s infinite;
    -o-animation:zoomdezoom 1s infinite;
    animation:zoomdezoom 1s infinite;
}
#details-video-cache.moartosee .bt-fullscreen{
    width:3.5em;
    height:3.5em;
}
#details-video-cache.playing.moartosee .bt-fullscreen{
    display:block !important;
    -webkit-animation:zoomdezoomfat 1s infinite;
    -moz-animation:zoomdezoomfat 1s infinite;
    -o-animation:zoomdezoomfat 1s infinite;
    animation:zoomdezoomfat 1s infinite;
}
#details-video-cache.playing.hidebtfullscreen .bt-fullscreen, #details-video-cache.playing.moartosee.hidebtfullscreen .bt-fullscreen{
    display:none !important;
}


/* --------------------
share container
------------------------*/
.share-container{
    position: absolute;
    right: 0;
    bottom: 3em;
    /* margin-right: calc(0px - (var(--content-width) / 2));*/
    padding: 0 1.2em;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: bottom .4s ease-in-out;
}
#details-video-cache.playing .share-container{
    bottom: 6.2em;    
}

/*Share */
.share-outside,
a.share-outside{
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    margin:.4rem 0 0;

    width:3em;
    height:3em;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    background-image:url(../img/paper-plane-fill.svg);
}

.share-container .bb-sharethis{
    visibility: hidden;
    opacity: 0 ;

    transition:  all .5s ease-in-out;

    position: absolute;

    width: 40px;
    height: 230px;
    bottom: 0em;
    right: 1.2em;
}

.share-container.active-bb-sharethis .bb-sharethis{
    visibility: visible;
    opacity: 1 ;
    bottom: 4em;
}

.share-container .bb-sharethis .st-btn{
    display: inline-block !important;

    margin-top: 6px;
    margin-right: 0 !important;
}
.share-container .bb-sharethis .st-btn:hover{
    top: 0 !important;
}

/*Landscape*/
.landscape .share-container .bb-sharethis{
    width: 232px;
    height: 40px;
    bottom: 0.35em;
    right: 3em;
}
.landscape .share-container.active-bb-sharethis .bb-sharethis{
    bottom: 0.35em;
    right: 5em;
}
.landscape .share-container .bb-sharethis .st-btn{
    display: inline-block !important;
    margin-top: 0;
    margin-right: 6px !important;
}



/* --------------------
 Promo Livecam
------------------------*/

.special-event-live{
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: flex-end;
    gap: 1em;

    width: 100%;
    max-width: 19em;
}
.special-event-live > img{
    width: 7.143em;
    flex-shrink: 0;
}

.special-event-live .details-countdown{
    position: relative;
}
.special-event-live .details-countdown .details{
    background-color: rgba(102, 0, 255, 0.5);
    border: 2px solid #C3A5FF;
    border-radius: 0.8em;
    padding: 1em;   
    margin: 0 .5em -1em;
    font-weight: bold;  
    text-align: center;
}
.special-event-live .details-countdown .details .title{
    font-size: 0.786em;
    margin-bottom: 0.5em;
}
.special-event-live .details-countdown .details .title span{
    display: inline-block;
    background-color: #6B20FF;
    border-radius: 3px;
    padding: 2px;
}


.special-event-live .details-countdown .details .info-live{
    font-style: italic;
    font-size: 1.214em;
}


.special-event-live .details-countdown .btn{
    width: 10em;
    font-size: 1.143em;
    padding: 0.3em 0.3em;
    font-weight: bold;
    margin-bottom: 1em; 
}
.special-event-live .details-countdown .btn img{
    width: 1.063em;
}




/* --------------------
Onlyfans model Promo
------------------------*/

.onlyfans-model-promo{
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 1em;

    width: 100%;
    max-width: 15em;
}
.onlyfans-model-promo .details{
    background-color: rgba(36, 0, 90, 0.5);
    border-radius: 0.8em;
    padding:0 1em 1.5em;   
    margin: 0 1em -2em;
    font-weight: bold;  
    text-align: center;
}
.onlyfans-model-promo .details > img{
    width:2.143em ;
    margin-top: -2em;
}
.onlyfans-model-promo .details .info-promo{
    font-size: 0.929em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.onlyfans-model-promo .details .info-promo img{
    width: 2.077em;
}

.onlyfans-model-promo .btn{
    width: 12.5em;
    font-size: 1.143em;
    padding: 0.3em 0.3em;
    font-weight: bold;
    margin-bottom: 1.5em; 
    background-color: #00AEEF;
}
.onlyfans-model-promo .btn img{
    width: 1.063em;
}




/* --------------------
 Day Details
------------------------*/

#details-scroller{
    /*
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    overflow-y:scroll;
    overflow-x:hidden;*/
    position: relative;
    z-index: 2;
}

#details-banner{
    margin:20px 0 20px 0;
}

#details-text{
    width:100%;
    max-width:var(--content-width);
    margin:0 auto;
    padding:0 var(--padding-container) 2em;
    background-color:#17001A;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(../img/bg-stars-mobile@3x.jpg);
    text-align:center;
    position: relative;
    background-color: #020516;
}
body.day.home #details-text {
	background-color: #D0D2F7;
	background-image: url(/img/bg-2022a@2x-day.jpg);
}

body #details-text.no-details{
	background:none !important;
}
#details-text #disqus_thread{
    margin-bottom:200px;
}

/*
#details-text:before {
    content: '';
    position: absolute;    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-image: linear-gradient(to bottom,rgba(2, 5, 22, 0) 0%,rgba(2, 5, 22, 1) 50%);
}
*/

.container-title-like{
    transform: translate(0,-50%);
    display:flex;
    align-items: flex-start;
    justify-content: center;
    gap: .7em;
}

#details-title{
    height:2.2em;
    border-radius:2.2em;
    padding: 0 .2em 0 1.2em;
    color:#fff;
    font-weight:900;
    font-size:1.28em;
    background:#E07DFF;
    background:linear-gradient(to right, #E07DFF 0%,#8B25D8 100%);
    cursor:pointer;
    white-space:nowrap;
    min-width:10em;
    max-width:12em;
    overflow:hidden;
    font-family: var(--font-titre);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 0;
}


/*Views*/
.details-views{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5em;
    gap: 1em;
}

/*btn promote*/

a.btn.btn-promote{
    font-size: 0.75em;
    width: auto;
    min-height: auto;
    text-transform: none;
    border-width: 1px;
    background-color: rgba(40, 0, 45, 0.25) !important;
}

a.btn.btn-promote-of{
    border-color: #00AEEF;
    color: #FFF;
}
a.btn.btn-promote-of img{
    width: 1.4em;
}

a.bt-meet-and-fuck {
    display: flex;
    align-items: center;
    justify-content: center;
    margin:1.5em 0;
    border-radius: 3.9em;
    border: 2px solid #E07DFF;
    padding: 0.5rem 0.6rem;
    position: relative;
    box-sizing: border-box;
    color: #FFF;
    font-size: 1.6em;
    font-family: var(--font-alt2),sans-serif;
    box-sizing: border-box;
    background-color: rgba(224, 125, 255, 0.07);
}

a.bt-meet-and-fuck::before {
    content: '';
    display: block;
    height: 1em;
    width: 1em;
    background-image: url(../img/heart-meet.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
	margin-right:15px;
}


/* --------------------------
 Promo bbchristmas -x- bbcam
---------------------------*/

.bbchristmas-x-bbcam{

    display: flex;
    align-items: flex-end;
    justify-content: center;

}
.bbchristmas-x-bbcam > img{
    width: 11.571em;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.bbchristmas-x-bbcam .details-crossover{
    position: relative;
    z-index: 1;
    margin-left: -4em;
}
.bbchristmas-x-bbcam .img-crossover{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8em;
    margin-bottom: .8em;
    padding-left: 1em;
}
.bbchristmas-x-bbcam .img-crossover img{
    width: 5.714em;
    flex-shrink: 0;
}
.bbchristmas-x-bbcam .details-crossover .details .info-crossover{
    background-color: rgba(102, 0, 255, 0.3);
    border: 2px solid #6B20FF;
    border-radius: 0.8em;
    padding: 1em 1em 1.5em 4.5em;   
    margin: 0 .5em -1em;
    font-weight: bold;  
    text-align: center;
    font-style: italic;
    font-size: 0.8em;
}
.bbchristmas-x-bbcam .details-crossover .btn{
    width: auto;
    font-size: 0.857em;
    padding: 0.5em 0.5em;
    font-weight: bold;
    margin-bottom: 1em; 
    margin-left: 2em;
}
.bbchristmas-x-bbcam .details-crossover .btn img{
    width: 1.063em;
}



/*Detail Profile */
/*
.container-networks{
    background:rgba(224, 125, 255, 0.07);
    padding:4em 2em 2em 2em;
    border-radius:1.78em;
    margin:6em auto 2em auto;
    position:relative;
    border-radius:1.78em;
    border: 2px solid #E07DFF;
}

.container-networks .image{
    position:absolute;
    top:-3.39em;
    left:50%;
    transform:translate(-50%,0);
    width:6.78em;
    height:6.78em;
    border-radius:100%;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}*/

/**/

.container-networks{
    background:#2E004D;
    padding:3.5em 2em 2em 2em;
    border-radius:1.78em;
    margin:2em auto 2em auto;
    position:relative;
    border-radius:1.78em;
    
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    overflow: hidden;
}
.container-networks:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:linear-gradient(to bottom, #8E2DED40 0%, #2E004D 11.7em);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.container-networks .image{
    /*position:absolute;
    top:-3.39em;
    left:50%;
    transform:translate(-50%,0);*/
    margin: 0 auto 1em;
    display: block;
    width:6.78em;
    height:6.78em;
    border-radius:100%;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    position: relative;
    z-index: 2;
    border: 2px solid #28002D;
}


#details-seemore{
    margin:0 0 10px 0;
    font-size:1.42em; 
    font-weight: 700;
    color:#FFF;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    font-family: var(--font-titre), sans-serif;
    font-weight: 700;
}
#details-seemore:before{
    content: '';
    position: absolute;
    width: 68%;
    aspect-ratio: 224/146;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: .5;
    background-image: radial-gradient(closest-side at 50% 50%,#6600FF 0%,#6600FF00 100%);
    z-index: -1;
}

#details-seemore .name{
    font-size:1em;
    font-weight:normal; 
    color: #FFF;
    font-weight: 700;
}
#details-seemore .seemoreofheron{
    font-family: var(--font-titre), sans-serif;
    font-size:0.7em;
    font-weight:700; 
    color: #E07DFF;
    margin-top: 1.2em;
}

#details-networks{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#details-networks a{
    display:inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .4em;
    padding:.5em 1em;
    background:#FFF;
    border-radius:100px;
    color:#60086A;
    font-weight: bold;
    font-size:.85em;
    margin: 0.5em;
    /*text-transform: lowercase;*/
}

#details-networks a img{
    width:1.33em;
}

#details-networks a:hover{
    background:#FCFCFC;
}

#details-premium{
    display: none;
}

body.overflowhidden{
    overflow:hidden !important;
    position:fixed !important;
}

/*Cam*/
.cam-network #details-seemore .seemoreofheron{
    margin-top: 0.3em;
    font-size: 0.666em;
    display: none;
}
.live #details-seemore .seemoreofheron.live,
.offline #details-seemore .seemoreofheron.offline{
    display: block;
}
.details-cam a.btn{
    width: auto;
    padding: 0.36em 1em;
}

.play-end {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 0, 26, 0.7);
    z-index: 2;
}

/*Video played*/
#details-video-cache.played .play-end{
    display:block !important;
}

.play-end .flex{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;  
}
.play-end .flex.xmascam,
.live .play-end .flex.bbxmas,
.offline .play-end .flex.bbxmas{
    display: none;
}

.live .play-end .xmascam,
.offline .play-end .xmascam{
    display:flex;
}

.live .play-end .xmascam .replay-button{
    display: none;
}
.play-end .xmascam .moreboobs{
    display:none;
}
.play-end .xmascam .moreboobs.live{  
    margin-top: 0;  
    font-weight:bold;
    font-size: 2.14em;
    font-family: var(--font-titre);
}
.live .play-end .xmascam .moreboobs.live,
.offline .play-end .xmascam .moreboobs.offline{
    display:block;
}

.play-end .flex .replay-button{
    color:#FFF;
    text-align:center;
    font-weight:bold;
    font-size: 2.14em;
    font-family: var(--font-titre);
}

.play-end .flex .replay-button img{
    width:1.8em;
}

.play-end .flex a.btn.relief{
    width: auto;
    padding: 0.46em 1em;
}
.play-end .flex .moreboobs{
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: 1.2em;
    text-align: center;
}

/*#ad-replay iframe{
    border:none;
    width:300px;
    height:250px;
    overflow:hidden;
}*/


#ad-replay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom:0;
    right:0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index:10000000;
    
    overflow: auto;
    flex-direction: column;
}
#ad-replay .flex{
    flex-grow: 1;
    padding: 2em;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
}

#ad-replay .close-btn{
    display: block;
    position: absolute;
    right: 1em;
    top: 1em;
}
#ad-replay .close-btn svg{
    width: 2.14em;
    height: 2.14em;
    fill: #FFF;
}

#ad-replay .countdown-wrapper{
    color:#FFF;
    text-align:center;
    font-size:1.2em;
    margin:0 0 1.42em 0;
    font-weight:bold;
}

#ad-replay .countdown-wrapper.available {
	cursor: pointer;
}
#ad-replay .countdown-wrapper .replay {
	display: none;
}
#ad-replay .countdown-wrapper.available .wait {
	display: none;
}
#ad-replay .countdown-wrapper.available .replay {
	display: inline-block;
}

.boobycam-ad-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--content-width);
}
.boobycam-ad-iframe-wrapper {
    width: 100%;
    height: 100%;
}
.boobycam-ad {
    display: block;
    width: 100%;
}
.boobycam-ad-logo {
    position: absolute;
    right: 5px;
    top: 8px;
    width: 45%;
    max-width: 200px;
    pointer-events: none;
}
.boobycam-ad-name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    background: rgba(255,255,255,0.66);
	color: #000;
    padding: 3px 5px;
    text-align: center;
}
.boobycam-ad-name .live {
    font-weight: bold;
    color: #FC0070;
    white-space: nowrap;
}
.boobycam-ad-name .bull {
    color: red;
    font-size: 1.5em;
    line-height: 1em;
    vertical-align: top;
}
.boobycam-ad-link {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.check-boobycam {
    color: #5F0768;
    font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
}
#ad-replay .check-boobycam {
    color: #fff;
}
.check-boobycam span {
    color: #FF0B6F;
}
.bt-boobycam {
    display: flex;
    align-items:center;
    justify-content:center;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    border-radius: 50px;
    border: 2px solid #F66EF1;
    padding: 10px 30px;
    position: relative;
    box-sizing: border-box;
    font-size: 20px;
    font-family: var(--font-titre), sans-serif;
    padding:0 20px;
    height:49px;
    width: 100%;
    max-width: 250px;
}
#ad-replay .bt-boobycam {
    background: #fff;
    border: none;
}
.bt-boobycam img {
    width: 100%;
}


#ad-replay .crossell{
    margin-top: 1em;
}



@media screen and (max-width: 768px) {

   
   #details-video-cache .bt-fullscreen{
    bottom:30px;
   }
   #details-video-cache .premium-text{
    font-size:1rem;
    margin:-20px 0 10px 0;
   }

   #details-video-cache .img-premium{
    width:50px;
   }

}




/*Box*/
.box{
    border-radius: 1.78em;
    border-width: 2px;
    border-style: solid;
    border-color: #E07DFF;
    background-color: rgba(224, 125, 255, 0.07);
    text-align: center;

    width: 100%;
    max-width: var(--box-width);
    margin: 0 auto  2.85em;
}
.box.nobg{
    border-radius:0;
    border-width: 0;
    background-color: transparent;
}
.box .box-header{
    width: 100%;
    min-height: 15em;
    aspect-ratio: 1 / 0.54;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    position: relative;
    z-index: 1;
}
.box .box-header:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
}
.box h2{
    margin-bottom: 0.6em;
}

.box .box-content{
    padding: 1.42em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-content h2, .box-content p, .box-content li a, .box-content li, .box-content h3{
	color:#BCB3FF;
}



/*********************
 * 
 *  Page GOTO
 * 
 * ***********************/

body.goto #page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2em;
    padding-bottom: 2em;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(../img/bg-2022a-desktop.png);
}
@media (max-width: 768px){
    body.goto #page {
		background-image: url(../img/bg-2022a-goto.png);
		justify-content: normal;
    }

}


.container-goto{
    max-width: var(--content-width);
}

.logo-goto{
    text-align: center;
    margin-bottom: 2em;
}
.box.box-loader .box-content{
    flex-direction: row;
    gap:1em;
}
.box.box-loader .image{
    width: 4.85em;
    height: 4.85em;
    border-radius: 4.85em;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.box.box-loader .content-loader{
    flex-grow: 1;
    text-align: center;
}
.box.box-loader .content-loader .content-count,
.box.box-loader .content-loader .content-social{
    display: none;
}
.box.box-loader .content-loader.loading .content-count{
    display: block;
}
.box.box-loader .content-loader.loaded .content-social{
    display: block;
}

.box.box-loader .content-loader p{
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0.3em;
}
.box.box-loader .content-loader .count{
    font-family: var(--font-titre);
    font-size: 2.14em;
    color: #F90070;
}

.rect-cam{
    width: 100%;
    max-width: 351px;
    max-height: 197px;
    margin: 0 auto 2em;
}

.crossell{
    text-align: center;
}

.crossell .title{
    font-weight: bold;
    font-size: 1.2em;
}
.crossell .title span{
    color: #FF177F;
}
.crossell a.btn{
    width: auto;
    padding: 0.46em 1em;
}

/** special encart pub adthink ***/

.ad-goto-adthink{
	width:300px;
	height:250px;
	margin:20px auto;
	overflow:hidden;
}

/*********************
 * 
 *  Page Legal Notice
 * 
 * ***********************/
body.legal-notice #page {
     padding-top: calc( var(--height-header) + 3em);
}
.container-legal-notice .box{
    text-align: left;
}
.container-legal-notice .box .box-content{
    display: block;
}

/*********************
 * 
 *  Page Contact
 * 
 * ***********************/
 body.contact #page {
     padding-top: calc( var(--height-header) + 3em);
 }
.container-contact .box{
    text-align: left;
}
.container-contact .box .box-content{
    display: block;
}
.container-contact button[type=submit]{
    font-size: 2em;
    padding: 0.4em 0.8em;
}

/*********************
 * 
 *  Banner Footer
 * 
 * ***********************/


.boobycam-banner{
    
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

/* Popup
------------------------------- */
.popup-akn{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000000;
    background-color:rgba(0, 0, 0, 0.6);
    overflow-y: auto;

    display:none;

    align-items: center ;
    justify-content:center  ;

    padding: 50px 35px;
    max-height: 100vh;
}
.popup-akn-ouverte, .popup-akn-ouverte body {
    overflow: hidden;
    height: 100vh;
}
.popup-akn .close-btn{
    display: block;
    position: absolute;
    right: 0;
    top: -43px;
}
.popup-akn .close-btn svg{
    width: 30px;
    height: 30px;
    fill: #FFF;
}

.popup-akn .inner-popup{
    background-color: rgba(37, 9, 42, 0.6);
    border: 2px solid #E07DFF;
    position: relative;
    margin: auto 0;
    border-radius: 1.78em;
    /*
    flex-grow: 1;
    width: 100%;
    */

    max-width: var(--site-width);
}

.content-popup{
    padding: 3em 3.14em;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .popup-akn-classic {
        padding: 0;
        flex-direction: column;
        justify-content:stretch  ;
        align-items: stretch;

    }
    .popup-akn-classic .inner-popup{
        padding: 35px 0;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        flex-grow: 1 !important;
        border: 0;
    }
    .popup-akn-classic .close-btn {
        right: 1.25em;
        top: 1.25em;
    }
    .popup-akn-classic .close-btn svg {
        width: 20px;
        height: 20px;
    }
    .popup-akn-classic .content-popup{
        width: 100% !important
    }
}


/* 

Popup Disclaimer 

*/
.content-popup-disclaimer{
    text-align: center;
    max-width: calc(var(--box-width) - 2em);
}
.content-popup-disclaimer h2{
    font-size:2.71em;
}
.content-popup-disclaimer p.txt-disclaimer{
    font-size:1.21em;
}
.content-popup-disclaimer p.txt-quit{
    margin-top: 1.4em;
    margin-bottom: 1.5em;
}
.content-popup-disclaimer p.txt-quit a{
    font-weight: 700;
}

.content-popup-disclaimer a.btn{
    width: auto;
    font-size: 2.14em;
    padding: 0.4em 1.8em;
}

/* 

Popup Countdown 

*/
.content-popup-countdown{
    text-align: center;
}
.popup-akn-countdown .inner-popup{
    background-color: rgba(37, 29, 76, 0.85);
    border: 0;
}
.content-popup-countdown p.txt-countdown{
    margin-top: 1em;
    font-size:1.5em;
    font-family: var(--font-titre);
}



/*********************
 * 
 *  Box special
 * 
 * ***********************/

.container-seo{
    position: relative;
    padding-top: 2em;
    background-position: center top;
    background-color: #020516;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/bg-stars-mobile@3x.jpg);
}
@media screen and (min-width: 1081px) {
    .container-seo{
        background-image: url(../img/bg-stars.jpg);
    }
}
/*
.container-seo:before {
    content: '';
    position: absolute;    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-image: linear-gradient(to bottom,rgba(2, 5, 22, 0) 0%,rgba(2, 5, 22, 1) 50%);
}*/

.box-special{
    margin-bottom: 0;
    position: relative;
}
.box-special .box-content{
    padding: 1em 0;
}
.box-special.glow:before {
    content: '';
    position: absolute;
    width: 36%;
    aspect-ratio: 154/100;
    top: 2em;
    left: 50%;
    transform: translate(-50%,0);
    opacity: .5;
    background-image: radial-gradient(closest-side at 50% 50%,#6600FF 0%,#6600FF00 100%);
    z-index: -1;
}

.box-special .box-content .picto{
    width: 3.1em;
}
.box-special .box-content .title{
    margin-top: 1em;
    margin-bottom: 1em;
}

.box-special .box-content .container-tags {    
    max-width: none;
}


.box-special .box-content a.wrapper-tag {
    font-size: 0.55em;
    margin: 3px;
}


.box-special .box-content .col2 {
    display: flex;
    gap: 10%;
    justify-content: center;
    width: 100%;
    margin-bottom: 2em;
}
.box-special .box-content .col2 > .col{
    width: 45%;
    flex-shrink: 0;
}

.box-special .box-content.left{
    align-items: flex-start;
}



.box-special .ext-links{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1em;
    row-gap:calc(1em + 0.2222em);
    margin-top: 2em;
    margin-bottom: 0;
}

.box-special .ext-links.no-mg{
    margin-top: 0;
}

.box-special .ext-links.sm-mg{
    margin-top: 0.5em;
}

.box-special .ext-links .title{
    margin: 0;
}
.box-special .ext-links .title span{
    display: block;
    color: #FFF;
    font-weight: 300;
    font-size: 0.8em;
}
.box-special .ext-links .holder{
    width: calc(33.33% - 1em);
    flex-shrink: 0;
}
.box-special .ext-links .btn{
    margin-top: .3em;
    height: 3.71rem;
}
.box-special .ext-links .btn img{
    max-height: 1.3em;
    width: auto;
}


.box-special .ext-links .location{
    font-size: 0.8em;
    margin-top: 1em;
}


.copyright-links a{
    font-size: 0.7em;
    text-decoration: none;
}


/***************************
 * 
 *  Banner Bottom
 * 
 * ***********************/

.banner-bottom {
     position: fixed;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     z-index: 125;
}

.banner-pagejour{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
}


.booby-cam-small{
    width:300px;
    height: 100px;
    display: flex;
}
.booby-cam-small .logo{
    background-color: #FF248E;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}
.booby-cam-small .gif{
    position: relative;
    text-decoration: none;
    flex-shrink: 0;
}
.booby-cam-small .gif .status{
    background-color: #1CF114;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 .5em;
    line-height: 1;
    border-radius: 1em;
    border: 0;
    font-size: 1em;
    color: #FFF;
}

.container-prelinker{
	width:100%;
	margin:0 auto;
}



/***************************
 * 
 *  Onlyfans Promoting
 * 
 * ***********************/

.spacing-onlyfans{
    height: 5.555em;
}

@media (max-width: 1000px) {
     /*.spacing-onlyfans{
        height: 4em;
    }*/
}

.container-onlyfans{
    --site-width:1260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11.111em;
}
@media (max-width: 1600px) {
    .container-onlyfans{
        gap: 5em;
    }
}
@media (max-width: 1200px) {
    .container-onlyfans{
        gap: 2em;
    }
}
@media (max-width: 1000px) {
    .container-onlyfans{
        flex-direction: column;
    }
}

.container-onlyfans img{
    flex-shrink: 0;
}

.container-onlyfans .wrapper-infos h2{
    font-size: 2.77em;
    text-transform: uppercase;
    font-weight: 800;
}
.container-onlyfans .wrapper-infos h1 span, .container-onlyfans .wrapper-infos h2 span{
    color: #F60D72;
}
.container-onlyfans .wrapper-infos h1 span.break, .container-onlyfans .wrapper-infos h2 span.break{
    display: block;
}

.container-onlyfans .wrapper-infos p{
    font-size: 0.83333em;
    max-width: 29.8em;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .container-onlyfans .wrapper-infos p{
        font-size: 1em;
    }
}


.container-onlyfans .wrapper-infos .triade{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    font-weight: 800;
    text-align: center;
    margin-top: 2em;

    max-width: 24.833em;

}

.container-onlyfans .wrapper-infos .triade .wrapper-tri{
    width: 33.333%;

}
.container-onlyfans .wrapper-infos .triade .wrapper-tri strong{
    color: #CC54FF;
    font-size: 1.666em;
}

.container-onlyfans .wrapper-infos .triade .wrapper-tri span{
    display: block;
    font-size: 0.88em;
    margin-top: 0.3em;
}


.container-onlyfans .wrapper-infos .btn{
    background: linear-gradient(268deg, #CC54FF 0%, #F60D72 100%);
    border: 0;
    padding: 1em 2.5em;
    font-size: 0.88em;
    font-weight: 800;
    margin-top: 3em;

}

@media (max-width: 1000px) {
    .container-onlyfans .wrapper-infos .btn{
        font-size: 1em;
        width: 20em;
        padding: 1.3em 2.5em;
        margin-left: auto ;
        margin-right: auto ;
        display: block;
    }
}


.container-onlyfans .title-bloc img{
    display: none;
}
@media (max-width: 1000px) {
    .container-onlyfans .title-bloc{
        display: flex;
        align-items: center;
        margin-right: calc(0px - var(--padding-container));
        margin-bottom: 2em;
        overflow: hidden;
    }
    .container-onlyfans .title-bloc h2{
        margin: 0;
    }
    .container-onlyfans .title-bloc img{
        display: block;
        
        margin-right: -6.69em;
    }
}

/* -----------------------
promote-onlyfans-models 
 ----------------------- */
.promote-onlyfans-models > img{
    width:37.0555em ;
    margin-right: -3.333em;
}
@media (max-width: 1600px) {
    .promote-onlyfans-models > img{
        margin-right: 0;
    }
}
@media (max-width: 1000px) {

    .promote-onlyfans-models .wrapper-infos{
        width: 40em;
        max-width: 100%;
    }
    .promote-onlyfans-models >  img{
        display: none;
    }
}

/*  -----------------------
how-promote-your-onlyfans 
 ----------------------- */
.how-promote-your-onlyfans > img{
    width:28em ;
    margin-left: -3.333em;
}
@media (max-width: 1600px) {
    .how-promote-your-onlyfans img{
        margin-left: 0;
    }
}
@media (max-width: 1000px) {

    .how-promote-your-onlyfans .wrapper-infos{
        width: 40em;
        max-width: 100%;
    }
    .how-promote-your-onlyfans >  img{
        display: none;
    }
    .how-promote-your-onlyfans h2{        
        max-width: 9em;
    }
    .how-promote-your-onlyfans .title-bloc img{
        width: 15em;
        margin-right: -3.69em;
    }
}
.how-promote-your-onlyfans .sum{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2em;
    font-weight: 800;
    text-align: center;
    margin-top: 2em;

}
.how-promote-your-onlyfans .sum .wrapper-tri{
    flex-shrink: 0;
    width: 6.72em;
    height: 6.72em;
    background-color: #fff;
    border-radius: 1.6666em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5em;
}
.how-promote-your-onlyfans .sum .wrapper-tri strong{
    color: #F60D72;
    font-size: 1em;
}
.how-promote-your-onlyfans .sum > img{
    width: 2em;
    flex-shrink: 0;
}

.how-promote-your-onlyfans .sum .sum-equals{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2em;
}
.how-promote-your-onlyfans .sum .sum-equals .wrapper-tri img{
    width: 9.72em;
    max-width: none;
    margin-left: 1em;
}

@media (max-width: 1000px) {
    .how-promote-your-onlyfans .sum{
        flex-wrap: wrap;
        justify-content: center;    
    }
    .how-promote-your-onlyfans .sum .sum-equals{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.7em;
    }
}


/*  -----------------------
monetize-traffic 
 ----------------------- */
.monetize-traffic{
    gap: 0;
}
.monetize-traffic img{
    width:45.38888em ;
    margin-right: -10em;
}
@media (max-width: 1600px) {
    .monetize-traffic img{
        margin-right: 0;
    }
}
@media (max-width: 1000px) {
    .monetize-traffic{
        padding-left: 0;
        padding-right: 0;
        flex-direction: column-reverse;
        overflow: hidden;
    }
    .monetize-traffic .wrapper-infos{
        padding-left: var(--padding-container);
        padding-right: var(--padding-container);
    }
    .monetize-traffic img{
       max-width: calc(100% + (2 * var(--padding-container)) );
    }
}
@media (max-width: 600px) {
    .monetize-traffic .wrapper-infos{
        width: 100%;
    }
}

/*  -----------------------
booby-galaxy-promote-onlyfans 
 ----------------------- */
.booby-galaxy-promote-onlyfans img{
    width:28.16666em ;    
    margin-left: -3.333em;
}
@media (max-width: 1600px) {
    .booby-galaxy-promote-onlyfans img{
        margin-left: 0;
    }
}
@media (max-width: 600px) {
    .booby-galaxy-promote-onlyfans .wrapper-infos{
        width: 100%;
    }
}

/*  -----------------------
you-are-the-star
 ----------------------- */
.you-are-the-star{
    gap: 5em;
}
.you-are-the-star img{
    width:47.77777em ;
    margin-right: -10em;
}
@media (max-width: 1600px) {
    .you-are-the-star img{
        margin-right: 0;
    }
}
@media (max-width: 1000px) {
    .you-are-the-star{
        flex-direction: column-reverse;
        gap: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }
    .you-are-the-star .wrapper-infos{
        padding-left: var(--padding-container);
        padding-right: var(--padding-container);
    }
    .you-are-the-star img{
       max-width: calc(100% + (2 * var(--padding-container)) );
    }
}
@media (max-width: 600px) {
    .you-are-the-star .wrapper-infos{
        width: 100%;
    }
}

/*  -----------------------
our-offers-onlyfans 
 ----------------------- */
.our-offers-onlyfans {
    gap: 2.777em;
}

.our-offers-onlyfans .offers{
    display: flex;
    gap: 1.2em;
    width: 36em;
    flex-shrink: 0;
    margin-left: -3.333em;
}
@media (max-width: 1600px) {
    .our-offers-onlyfans .offers{
        margin-left: 0;
    }
}
@media (max-width: 1000px) {
    .our-offers-onlyfans{
        overflow: hidden;
    }
    .our-offers-onlyfans .offers{
        flex-direction: column;
        width: auto;
        padding: 4em 0 0 0;
    }
}


.our-offers-onlyfans .offers .offer{
    border-radius: 2.777em;
    padding: 1.5em;
    border: 2px solid #FFAC06;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.43em;
    flex-basis: 50%;
}
.our-offers-onlyfans .offers .offer h3{
    font-size: 1.44em;
}
/*Launch*/
.our-offers-onlyfans .offers .launch-offer img{
    margin-top: -4.5em;
    width: 5.8888em;
}
.our-offers-onlyfans .offers .launch-offer h3{
    margin: 0;
    color: #FFAC06;
}
.our-offers-onlyfans .offers .launch-offer h4{
    margin: 0;
    font-size: 1.44em;
}
.our-offers-onlyfans .offers .launch-offer h4 span{
    color: #F60D72;
}
.our-offers-onlyfans .offers .launch-offer p{
    margin: 0;
    font-size: 0.72em   ;
}
.our-offers-onlyfans .offers .launch-offer .btn {
    background: linear-gradient(79deg, #FFAC06 0%, #F60D72 100%) ;
    border: 0;
    padding: 1em 2.5em;
    font-size: 0.88em;
    font-weight: 800;
    width: 85%;
}
/*More*/
.our-offers-onlyfans .offers .more-offer{
    border: 0;
    background: linear-gradient(159deg, #F60D72 0%, #CC54FF 100%);
    color: #FFF;
}
.our-offers-onlyfans .offers .more-offer img{
    margin-bottom: -8em;

    width: 9.722222em;
}
.our-offers-onlyfans .offers .more-offer h3 span{
    display: block;
    margin-top: .3em;
    font-size: 1.5em;
}

@media (max-width: 1000px) {

    .our-offers-onlyfans .wrapper-infos{
        width: 25.8em;
        max-width: 100%;
    }

    .our-offers-onlyfans .offers .more-offer{
        position: relative;
    }
    .our-offers-onlyfans .offers .more-offer h3{
        margin: 0;
    }
    .our-offers-onlyfans .offers .more-offer img{
        position: absolute;
        right: -6em;
        margin: 0;
    }
}
@media (max-width: 600px) {
    .our-offers-onlyfans .wrapper-infos{
        width: 100%;
    }
}

/*  -----------------------
contact-us-onlyfans 
 ----------------------- */

.contact-us{
    width: 27.7777em;
    max-width: 100%;
}

@media (max-width: 1000px) {
    .contact-us-onlyfans .wrapper-infos{
        width: 25.8em;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-us-onlyfans .wrapper-infos{
        width: 100%;
    }
    .contact-us{
        width: 100%;
    }
}
.contact-us input[type=text], 
.contact-us input[type=email],
.contact-us input[type=url], 
.contact-us input[type=password], 
.contact-us input[type=tel], 
.contact-us textarea, 
.contact-us select{
    font-size: .888em;
    border-color: #CC54FF;
} 
.contact-us select{
    color: #FFAC06;
}
.contact-us button[type=submit]{
    font-size: 1.14em;
}

.contact-us .line-form.col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1em;
    grid-row-gap: 1em;
}

@media (max-width: 1000px) {
    
    .contact-us .line-form.col2 {
        grid-template-columns: 1fr;
    }
}


/*  -----------------------
faq-onlyfans 
 ----------------------- */
.faq-onlyfans {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}
.faq-onlyfans .wrapper-infos h3{
    color: #F60D72;
    border-bottom: 1px solid #F60D72;
}
.faq-onlyfans .wrapper-infos p{
    max-width: none;
    margin-bottom: 3em;
}




/*  -----------------------
Follow Box accueil 
 ----------------------- */
.follow-box{
    position: absolute;
    left: 50%;
    bottom: 7%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5em;

    background-color: #6600FF4D;
    border: 2px solid #AD83FF;
    padding: 0.7em 1em;
    border-radius: 10px;

    width: 100%;
    max-width: 17.857em;
}
@media screen and (min-width: 1081px) {
    .follow-box{
        bottom: 7.5%;
    }
}

.follow-box .txt{
    flex-shrink: 0;
    margin-right: 0.5em;
}
.follow-box .txt span{
    display: block;
    font-weight: 700;
    font-size: 1.3em;
}
.follow-box a{
    display: block;
    flex-shrink: 0;
}
.follow-box a img{
    width: 2em;
}




/* --------------------------
 Landing bbchristmas -x- bbcam
---------------------------*/
body.bbchristmas-x-bbcam-page{
}
body.bbchristmas-x-bbcam-page #page{
    padding-top: 0;
}
.header-crossover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 1em;
    gap: 1em;
}
.header-crossover img{
    width: 8.714em;
    flex-shrink: 0;
}
.header-crossover strong{
    font-size: 1.571em;
}


.container-landing-crossover {
    position: relative;
    background-position: center top;
    background-color: #160C80;
    background-repeat: no-repeat;
    background-size: auto;
    /*aspect-ratio: 1400/2162;*/
}
.container-landing-crossover #wrapper {
    width: 100%;
    max-width: 1080px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    background-size: cover;
    aspect-ratio: 1080/1967;
    box-sizing: border-box;
    background-image: url(/img/bg-landing-mobile.jpg);
}

.container-landing-crossover #tagline {
    position: absolute;
    left: 0;
    top: 14%;
    margin: 0;
    padding: 0 30px;
    z-index: 10;
    width: 100%;
    text-align: center;
    font-size: 1.429em;
    font-family: var(--font-alt), sans-serif;
}

.container-landing-crossover #wrapper-inner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: 1080/1967;
    box-sizing: border-box;
}

.container-landing-crossover .windowcam {   
    position: absolute; 
    width: 16%;
    aspect-ratio: 1/1;
    background: #000;
    border: 1px dashed rgba(255,255,255,0.75);
    border-radius: 3px;
}

@media screen and (min-width: 1081px) {
    .container-landing-crossover{
        background-image: url(/img/bg-landing-desktop-xl.jpg);
        background-position: center top;
        aspect-ratio: 1920/1080;
    }
    .container-landing-crossover #wrapper {
        background-image: none !important;
        aspect-ratio: 1080/1080;
    }

    .container-landing-crossover #tagline {
        top: 12%;
    }

    .container-landing-crossover #wrapper-inner {
        aspect-ratio: 1080/1080;
    }

    .container-landing-crossover .windowcam {   
        width: 11%;
    }
}


/* --------------------------
 boobylegend-banner
---------------------------*/

.boobylegend-banner {
    max-width: 816px;
    max-height: 80px;
    margin: 0 auto;
    background: #161834;
    overflow: hidden;
    padding: 0 0 0 1em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    font-family: "Poppins", Arial, Sans-Serif;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    background-image: url(/img/ads-elements/bg-desktop.jpg);
    font-size: 16px;
}
@media (max-width: 1080px) {
    .boobylegend-banner {
        background-image: url(/img/ads-elements/bg-mobile.jpg);
        max-width: 1080px;
        max-height:170px;
        align-items: center;
        font-size: calc(100vw * 0.0148);
    }
}
.boobylegend-banner .bb-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.75em;
    gap: 1em;
    padding:0.5em 0;
    margin-right: 1em ;
    flex-shrink: 0;
}
@media (max-width: 1080px) {
    .boobylegend-banner .bb-logo{
        width: 16.625em;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }
}
.boobylegend-banner.animate .bb-logo{
    opacity: 0;
    animation-name:headplay ;
    animation-duration: 0.8s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
@keyframes headplay{
  0%   { transform:translateX(-1em);opacity:0  }
  100% { transform:translateX(0);opacity:1   }
}
.boobylegend-banner .bb-logo img{
    width: 9.625em;
    flex-shrink: 0;
}
@media (max-width: 1080px) {
    .boobylegend-banner .bb-logo img{
        max-width: 15em;
        width: 86%;
    }
}
.boobylegend-banner .bb-logo .title{
    font-size: 1.5em;
    color: #FFF;
    font-family: "Exo";
    font-weight: 900;
}
@media (max-width: 1080px) {
    .boobylegend-banner .bb-logo .title{
        font-size: 1.7em;
    }
}
.boobylegend-banner .bb-logo .title span{
    color: #F900FF;
}


.boobylegend-banner .bb-cards{
    padding-top: 0.33em;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: .7em;
    row-gap: .9em;
    width: 21em;
    flex-shrink: 0;
}
.boobylegend-banner .bb-cards img{
    border-radius: 0.375em;
    width: 3.5em;
    box-shadow: 0px 0.313em 0.625em #000000;
}
@media (max-width: 1080px) {
    .boobylegend-banner .bb-cards{
        width: 37em;
        padding: .9em 0;
        max-height:10.5em;
        overflow: hidden;
    }
    .boobylegend-banner .bb-cards img{
        width: 5.438em;
    }
}

.boobylegend-banner.animate .bb-cards img{
    opacity: 0;
    animation-name:upcard ;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
@media (min-width: 1081px) {
    .boobylegend-banner.animate .bb-cards img:last-child{
        display: none;
    }
}
.boobylegend-banner.animate .bb-cards img:nth-child(1){
    animation-delay: 0.9s;
}
.boobylegend-banner.animate .bb-cards img:nth-child(2){
    animation-delay: 1.1s;
}
.boobylegend-banner.animate .bb-cards img:nth-child(3){
    animation-delay: 1.3s;
}
.boobylegend-banner.animate .bb-cards img:nth-child(4){
    animation-delay: 1.5s;
}
.boobylegend-banner.animate .bb-cards img:nth-child(5){
    animation-delay: 1.7s;
}
.boobylegend-banner.animate .bb-cards img:nth-child(6){
    animation-delay: 1.9s;
}
@keyframes upcard{
  0%   { transform:translateY(1em);opacity:0 ;  }
  100% { transform:translateY(0);opacity:1 ;  }
}


.boobylegend-banner .bb-play{
    width: 9em;
    flex-shrink: 0;
}
@media (max-width: 1080px) {
    .boobylegend-banner .bb-play{
        width: 11.5em;
    }
    .boobylegend-banner .bb-play img{
        margin-top: 1.5em;
    }
}
.boobylegend-banner .bb-play img{
    width: 100%;
}

.boobylegend-banner.animate .bb-play img{
    opacity: 0;
    animation-name:
        zoomplay, zoomdezoomplay;
    animation-duration:
        0.5s, 1s;
    animation-delay:
        2s, 2.5s;
    animation-iteration-count:
        1, infinite;
    animation-fill-mode:
        forwards;
}


@keyframes zoomdezoomplay{
  0%   { transform:scale(1);  }
  50%  { transform:scale(1.07); }
  100% { transform:scale(1);  }
}

@keyframes zoomplay{
  0%   { transform:scale(0.5);opacity:0  }
  100% { transform:scale(1);opacity:1  }
}
