
/* -------------------------------------------------
	
	01 . IMPORT
	02 . BASE
	03 . HERO
    04 . PAGE FOOTER
    05 . FAQ
    06 . CONTACT
    07 . POPUP
    08 . xxxxxx
    09 . xxxxxx
    10 . xxxxxx
	
------------------------------------------------- */





/* ////////////////////////////////////////////////////////////////////////////

    01 . IMPORT

//////////////////////////////////////////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400..600&display=swap');

@import url('libs/normalize.css');
@import url('libs/magnific-popup.css');
@import url('libs/dropzone.css');
@import url('libs/rangeSlider.css');
@import url('libs/rangeSlider-skin.css');
@import url('libs/kenburns.css');
@import url('libs/lightgallery.css');

@import url('interface.css');
@import url('horses.css');
@import url('member.css');
@import url('about.css');
@import url('blog.css');
@import url('auction.css');
@import url('home.css');
@import url('_fix.css');

@font-face {
    font-family: 'font-title';
    src: url('../fonts/font-title.woff2') format('woff2'),
         url('../fonts/font-title.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'font-title-medium';
    src: url('../fonts/font-title-medium.woff2') format('woff2'),
         url('../fonts/font-title-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'font-title-bold';
    src: url('../fonts/font-title-bold.woff2') format('woff2'),
         url('../fonts/font-title-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {

    --font-title: 'font-title', sans-serif;
    --font-title-medium: 'font-title-medium', sans-serif;
    --font-title-bold: 'font-title-bold', sans-serif;
    --font-text: 'Onest', sans-serif;

    --color-dark: #040F31; /* rgba(4,15,49,1); */
    --color-light: #FDFBF6; /* rgba(253,251,246,1); */
    
    --color-primary-1: #E5C98C; /* rgba(229,201,140,1); */
    --color-primary-2: #040F31; /* rgba(4,15,49,1); */

    --color-red: #9E2A2B; /* rgba(158,42,43,1); */
    --color-green: #426B69; /* rgba(66,107,105,1); */
    
    --color-grey: #8A9295; /* rgba(138,146,149,1); */
    --color-grey-light: #CDD0D1; /* rgba(205,208,209,1); */
    --color-grey-xlight: #F3F3F4; /* rgba(243,243,244,1); */
    --color-grey-dark: #515457; /* rgba(81,84,87,1); */

    /* --- INTERFACE --- */
    --site-width: 1470px;
    --site-width-inner: 1440px;
    --btn-radius: 2em;

}





/* ////////////////////////////////////////////////////////////////////////////

    02 . BASE

//////////////////////////////////////////////////////////////////////////// */

html {
	background-color: var(--color-light);
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-text);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden!important;

    opacity: 0;
    
    /* user-select: none;
    -webkit-user-select: none; */
}
body.open {
	overflow-y: hidden;
}

/* SCROLLBAR */
body::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }

::-moz-selection { background-color:var(--color-dark); color:var(--color-light); }
::selection { background-color:var(--color-dark); color:var(--color-light); }

/* LIENS */
a {
	color: var(--color-dark);
	text-decoration: none;
	-webkit-transition: all .25s;
	transition: all .25s;
}
.no-touch a:hover { color: var(--color-dark); outline:0; text-decoration:none; }

a[href^=tel]{
    color: inherit!important;
    text-decoration: inherit!important;
    font-size: inherit!important;
    font-style: inherit!important;
    font-weight: inherit!important;
}

/* TEXTE */
br { font-size: 0; line-height: 0; }
strong, b { font-weight: 600; }

/* IMAGE */
img { position: relative; max-width: 100%; user-select: none; -webkit-user-drag: none; }

/* LISTES */
ol, ul { margin: 0; padding: 0; list-style: none; }

/* PARAGRAPHES */
p { margin: 0 0 10px 0; padding: 0; }
p:last-child { margin: 0; }

/* TITRES */
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
    font-weight: inherit;
    margin: 0;
    /* font-family: var(--font-title); */
}

/* PADDING */
.no-padding { padding:0; }





/* ////////////////////////////////////////////////////////////////////////////

    03 . HERO

//////////////////////////////////////////////////////////////////////////// */

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 140px);
    /* min-height: 350px; */
    background-color: var(--color-dark);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: luminosity;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4,15,49,1);
    opacity: .75;
}

.hero_caption {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero_caption-inner {
    position: relative;
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 25px;
}
.hero_caption-content {
    max-width: 1000px;
    margin: 0 auto;
}
.hero_caption h1 {
    font-family: var(--font-title-bold);
    font-size: 60px;
    line-height: 1.1;
    font-weight: normal;
    color: var(--color-primary-1);
}
.hero_caption h2 {
    font-family: var(--font-title);
    font-size: 48px;
    line-height: 1.1;
    font-weight: normal;
    color: var(--color-grey-xlight);
    margin: 10px 0 0 0;
}


#scroll-down {
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 50px;
}
#scroll-down::before {
    /* -webkit-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite; */
    content: " ";
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 50px;
    background: var(--color-primary-1);
}

@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0); transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1); transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%; transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1); transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%; transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0); transform: scale(1, 0);
    }
}

@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0); transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1); transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%; transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1); transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%; transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0); transform: scale(1, 0);
    }
}


.next_date {
    font-size: clamp(24px, 8vw, 30px);
    line-height: 1.1;
    font-weight: 500;
    margin: 15px 0 0 0;
    color: var(--color-light);
}
.next_date i {
    margin: 0 10px 0 0;
}

.next_desc {
    font-size: 19px;
    margin: 15px 0 0 0;
    color: var(--color-light);
}

.next_cta {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}


@media only screen and (max-width: 992px) {
    .hero {
        height: calc(75vh - 70px);
    }
    .hero_caption {
        position: relative;
    }
    .hero_caption-inner {
        padding: 50px 15px;
    }
    .hero_caption h1 {
        font-size: 38px;
    }
    .hero_caption h2 {
        font-size: 30px;
        line-height: 1.2;
        margin: 10px 0 0 0;
    }
    .next_date {
        font-size: 22px;
        margin: 10px 0;
    }
    .next_date i {
        margin: 0 10px 0 0;
    }
    .next_cta {
        flex-direction: column;
        align-items: center;
    }
}


/* -------------------------------------------
    HERO PAGE 
------------------------------------------- */
.hero.light {
    overflow: inherit;
    height: auto;
    min-height: 120px;
    background-color: rgba(243,243,244,.75);
}
.hero.light.member {
    background-color: var(--color-primary-1);
}

.hero.light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: url(../img/interface/bg-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .75;
    mix-blend-mode: multiply;
}
.hero.light::after {
    display: none;
}

.hero.light .hero_caption {
    transform: translateY(0);
    align-items: center;
    text-align: left;
    padding: 0 10px;
}
.hero.light .hero_caption-inner {
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.hero.light .hero_caption h1 {
    display: flex;
    align-items: center;
    font-family: var(--font-title-bold);
    font-size: 42px;
    line-height: 1.1;
    font-weight: normal;
    color: var(--color-primary-2);
}
/* .hero.light .hero_caption-inner h1:only-child {
    text-align: center;
    width: 100%;
} */
.hero.light .hero_caption h1 i {
    margin: 0 10px 0 0;
}

@media only screen and (max-width: 992px) {
    .hero.light {
        min-height: auto;
    }
    .hero.light .hero_caption {
        padding: 0;
    }
    .hero.light .hero_caption-inner {
        padding: 20px 15px;
    }
    .hero.light .hero_caption h1 {
        font-size: 26px;
    }
    .hero.light .hero_caption h1 i {
        margin: 0 6px 0 0;
    }
}

/* CTA */
.hero_cta {
    position: relative;
    margin: 0 0 0 auto;
}

.hero_cta select {
    box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
    outline: none;
    position: relative;
	width: 100%;
    min-width: 150px;
    max-width: 250px;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--color-dark);
	border-radius: 0;
	padding: 0 35px 0 0;
	font-size: 20px;
	line-height: 50px;
    color: var(--color-dark);
	background: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero_cta select:focus {
	outline: none;
}

.select_wrap {
    position: relative;
    margin: 0 35px 0 0;
}
.select_wrap:last-child {
    margin: 0;
}
.select_wrap::after {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: calc(50% - 6px);
    right: 3px;
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-dark);
    border-right: 2px solid var(--color-dark);
    transform: rotate(135deg);
}


/* -------------------------------------------
    IMAGE 
------------------------------------------- */
.hero_image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: scroll;
    background-position: top center;
    mix-blend-mode: luminosity;
}
.hero_image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* -------------------------------------------
    KEN BURNS 
------------------------------------------- */
#slideshow {
    background-color: var(--color-primary-2)!important;
    mix-blend-mode: luminosity!important;
}

/* -------------------------------------------
    VIDEO MP4 
------------------------------------------- */
.hero > .videoHero {
    position: relative;
    width: 100%;
    height: 100%;
}
.videoHero > video {
    display: flex;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/* -------------------------------------------
    VIDEO YT 
------------------------------------------- */
#videoHero {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
}
.ytplayer-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.2, 1.2) translate(-15px,-10px);
    transform-origin: center center;
}

@media only screen and (max-width: 992px) {
    .ytplayer-container {
        left: 50%;
        transform: scale(1.2, 1.2) translateX(-50%);
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    04 . PAGE FOOTER

//////////////////////////////////////////////////////////////////////////// */

.page {
    position: relative;
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 100px 10px!important;
}

/* CONTENT */
.page a {
    text-decoration: underline;
}
.no-touch .page a:hover {
    text-decoration: none;
}
.page h2 {
    font-family: var(--font-title-medium);
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: normal;
}
.page h3 {
    font-family: var(--font-title-medium);
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: normal;
}
.page p {
    margin-bottom: 10px;
}
.page p:last-child {
    margin-bottom: 0;
}
.page p + h2 {
    margin: 40px 0 10px 0;
}
.page p + h3 {
    margin: 40px 0 10px 0;
}

@media only screen and (max-width: 992px) {
    .page {
        padding: 50px 0!important;
    }
    .page h2 {
        font-size: 22px;
    }
    .page h3 {
        font-size: 20px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    05 . FAQ

//////////////////////////////////////////////////////////////////////////// */

.accordion-wrap {
    margin: 0 0 75px 0;
}
.accordion-wrap:last-child {
    margin: 0;
}
.accordion-wrap h2 {
    font-family: var(--font-title-medium);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.05;
    font-weight: normal;
    /* text-transform: uppercase; */
    color: var(--color-primary-1);
    margin: 0 0 25px 0;
}

.accordion-list {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
}

.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: rgba(138,146,149,.25) solid 1px;
    padding: 15px 0;
    margin: 0 0 0 0;
}
.accordion-list li:last-child {
    margin: 0;
}
.accordion-list li:first-child {
    border-top: rgba(138,146,149,.25) solid 1px;
}
.accordion-list li.active {
    display: block;
    padding: 15px 0 25px 0;
}

.accordion-list li h3 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
}
.accordion-list li h3 span {
    padding: 0 20px 0 0;
    flex: 1;
}
.accordion-list li h3:after {
    content: "\f30f";
    font-family: "Ionicons";
    position: relative;
    margin-left: auto;
    color: var(--color-primary-1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.25s, color 0.25s;
    font-size: 22px;
}
.no-touch .accordion-list li:hover h3:after,
.accordion-list li.active h3:after {
    transform: rotate(90deg);
    color: var(--color-dark);
}

.accordion-list li div.answer {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 56px 0 0;
}
.accordion-list li div.answer p {
    position: relative;
    display: block;
}
/* .accordion-list li div.answer p:first-child {
    padding-top: 10px;
} */

@media only screen and (max-width: 992px) {
    .accordion-wrap {
        margin: 0 0 50px 0;
    }
    .accordion-list li h3 {
        font-size: 17px;
        line-height: 1.2;
    }
    .accordion-list li div.answer {
        margin: 0;
        padding: 10px 0 0 0;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    06 . CONTACT

//////////////////////////////////////////////////////////////////////////// */

.contact_title {
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 35px 0;
}

/* -------------------------------------------
    INFOS 
------------------------------------------- */
.contact_infos {
    background-color: rgba(229,201,140,.16);
    padding: 35px;
    border-radius: 6px;
}

.contact_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 30px 0;
}
.contact_item:last-child {
    margin: 0;
}

.contact_item:first-child img {
    filter: invert(1) brightness(0);
    height: 80px;
    margin: 0 0 30px 0;
}

.contact_item strong {
    font-family: var(--font-title-bold);
    font-size: 22px;
    text-transform: none;
    font-weight: normal;
    margin-bottom: 10px;
}

.contact_item ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.contact_item li {
    display: flex;
    align-items: flex-start;
    margin: 0 0 10px 0;
}
.contact_item li:last-child {
    margin: 0;
}
.contact_item li i {
    position: relative;
    top: 0.15em;
    text-align: center;
    width: 16px;
    font-size: 115%;
    color: var(--color-yellow);
    margin: 0 10px 0 0;
}

/* SOCIAL */
.social {
    display: flex;
    align-items: center;
}
.social a {
    position: relative;
    font-size: 24px;
    line-height: 1;
    padding: 0 10px;
    text-decoration: none;
}
.social a:first-child {
    padding: 0 10px 0 0;
}
.social a img {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 26px;
}

@media only screen and (max-width: 992px) {
    .contact_title {
        font-size: 18px;
        margin: 0 0 25px 0;
    }
    .contact_infos {
        padding: 25px;
        margin: 0 0 50px 0;
    }
    .contact_item {
        margin: 0 0 20px 0;
    }
    .contact_item strong {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .contact_item strong span {
        font-size: 18px;
        letter-spacing: 0.025em;
    }
    .contact_item:not(:first-child) strong {
        font-size: 20px;
    }
}


/* ------------------------------------------- 
	RADIO - ASK
------------------------------------------- */
.ask {
    display: flex;
    align-items: center;
    margin: 0 0 25px 0;
}
.ask label {
    line-height: 1;
    border-right: var(--color-dark) solid 1px;
}
.ask label:last-child {
    border-right: none;
}

.ask input[type="radio"] {
    opacity: 0;
}
.ask [type="radio"]:checked,
.ask [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.ask input[type="radio"]:checked + .box {
    background-color: var(--color-dark)!important;
    color: var(--color-light)!important;
}
.ask input[type="radio"]:checked + .box span {
    color: var(--color-primary-2)!important;
}

.ask .box {
    text-align: center!important;
    cursor: pointer;
    position: relative;
    font-size: 15px;
    line-height: 45px;
    font-weight: 400;
    color: var(--color-dark);
    padding: 0 25px;
    border-top: var(--color-dark) solid 1px;
    border-bottom: var(--color-dark) solid 1px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    transition: color .25s, background-color .25s;
}

.no-touch .ask .box:hover {
    background-color: rgba(4,15,49,.08);
    color: var(--color-dark);
}
.ask .box:active {
    color: var(--color-light);
}

.ask label:first-child .box {
    border-left: var(--color-dark) solid 1px;
    border-radius: 6px 0 0 6px;
}
.ask label:last-child .box {
    border-right: var(--color-dark) solid 1px;
    border-radius: 0 6px 6px 0;
}

@media only screen and (max-width: 992px) {
    .ask {
        width: 100%;
    }
}


/* ------------------------------------------- 
	AUTO COMPLETE CHROME
------------------------------------------- */
#contact_form input:-webkit-autofill,
#contact_form input:-webkit-autofill:hover,
#contact_form input:-webkit-autofill:focus,
#contact_form input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0px 1000px var(--color-light) inset;
}

/* ------------------------------------------- 
	BOUTON SUBMIT
------------------------------------------- */
#contact_form .btn-form {
    display: flex;
    width: 100%;
    margin-top: 10px;
}

#contact_form .bloc_form-wrap {
    justify-content: flex-start;
    text-align: left;
}
#contact_form .bloc_form-wrap button {
    font-family: var(--font-text);
    text-transform: none;
    font-size: 17px;
    margin: 0 0 0 auto;
}
#contact_form .bloc_form-wrap button span {
    font-size: 17px;
    font-weight: 600;
    margin: 0 5px!important;
    padding: 0!important;
}
#contact_form .bloc_form-wrap button.btn::before,
#contact_form .bloc_form-wrap button.btn::after {
    display: none;
}





/* ////////////////////////////////////////////////////////////////////////////

    07 . POPUP

//////////////////////////////////////////////////////////////////////////// */

/* ------------------------------------------- 
	ANIMATION
------------------------------------------- */

/* FADE */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
	background:rgba(4,15,49,.9);
}
.mfp-fade.mfp-bg.mfp-ready { opacity: 0.9; }
.mfp-fade.mfp-bg.mfp-removing { opacity: 0; }
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content { opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing .mfp-content { opacity: 0; }

/* ZOOM */
.mfp-zoom-in .mfp-with-anim { opacity: 0; transition: all 0.2s ease-in-out; transform: scale(0.9); }
.mfp-zoom-in.mfp-bg { opacity: 0; transition: all 0.2s ease-out; }
.mfp-zoom-in.mfp-ready .mfp-with-anim { opacity: 1; transform: scale(1); }
.mfp-zoom-in.mfp-ready.mfp-bg { opacity: 0.65; }
.mfp-zoom-in.mfp-removing .mfp-with-anim { transform: scale(0.9); opacity: 0; }
.mfp-zoom-in.mfp-removing.mfp-bg { opacity: 0; }

/* VERTICAL */
.mfp-move-vertical {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-move-vertical .mfp-with-anim { opacity: 0; transition: all 0.2s; transform: translateY(50px); }
.mfp-move-vertical.mfp-bg { opacity: 0; transition: all 0.2s; }
.mfp-move-vertical.mfp-ready .mfp-with-anim { opacity: 1; transform: translateX(0); }
.mfp-move-vertical.mfp-ready.mfp-bg { opacity: 0.45; }
.mfp-move-vertical.mfp-removing .mfp-with-anim { transform: translateY(50px); opacity: 0; }
.mfp-move-vertical.mfp-removing.mfp-bg { opacity: 0; }


/* ------------------------------------------- 
	BASE
------------------------------------------- */
.popup {
	position: relative;
	background: var(--color-light);
	color: var(--color-dark);
	padding: 0;
	width:auto;
	max-width: 540px;
	margin: 10px auto;
    border-radius: 6px;
}
.popup .mfp-close {
	/* background-color: var(--color-yellow)!important; */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 65px!important;
    height: 70px!important;
}
.popup .mfp-close:after {
	color: var(--color-dark)!important;
    font-size: 60px!important;
}

.popup-inner {
    padding: 20px;
}

.popup-header {
    display: flex;
    align-items: center;
}
.popup-title {
	position: relative;
    font-family: var(--font-title-medium);
    font-size: clamp(20px, 6vw, 26px);
	line-height: 1.05;
    text-transform: uppercase;
	color: var(--color-dark);
    padding: 0 50px 0 0;
}
.popup-close {
    position: absolute;
    z-index: 1;
    top: 18px;
    right: 20px;
    color: var(--color-dark);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 62px;
    line-height: 1;
    cursor: pointer;
}
.popup-close i {
    position: relative;
}

.popup-content {
    
}





.tv {
    padding: 50px 0;
}

.wrapper.tv {
    padding: 0;
}

.wrapper.tv form {
    display: none;
}
.wrapper.tv .live_bid-current {
    font-size: 18px;
}
.wrapper.tv .live_bid-current span {
    font-size: 18px;
}
.wrapper.tv .live_bid-now h3 {
    font-size: 32px;
    font-family: var(--font-title-medium);
}

@media only screen and (max-width: 992px) {
    .wrapper.tv {
        padding: 0;
    }
}










