/*--------------------------------------------------------------
>>> FONTS
----------------------------------------------------------------*/
/*OpenSans*/
@font-face {
    font-family: 'OpenSans-Bold';
    src: url('./OpenSans/OpenSans-Bold.ttf');
}

@font-face {
    font-family: 'OpenSans-BoldItalic';
    src: url('./OpenSans/OpenSans-BoldItalic.ttf');
}

@font-face {
    font-family: 'OpenSans-ExtraBold';
    src: url('./OpenSans/OpenSans-ExtraBold.ttf');
}

@font-face {
    font-family: 'OpenSans-ExtraBoldItalic';
    src: url('./OpenSans/OpenSans-ExtraBoldItalic.ttf');
}

@font-face {
    font-family: 'OpenSans-Italic';
    src: url('./OpenSans/OpenSans-Italic.ttf');
}

@font-face {
    font-family: 'OpenSans-Light';
    src: url('./OpenSans/OpenSans-Light.ttf');
}

@font-face {
    font-family: 'OpenSans-LightItalic';
    src: url('./OpenSans/OpenSans-LightItalic.ttf');
}

@font-face {
    font-family: 'OpenSans-Medium';
    src: url('./OpenSans/OpenSans-Medium.ttf');
}

@font-face {
    font-family: 'OpenSans-MediumItalic';
    src: url('./OpenSans/OpenSans-MediumItalic.ttf');
}

@font-face {
    font-family: 'OpenSans';
    src: url('./OpenSans/OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('./OpenSans/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: 'OpenSans-SemiBoldItalic';
    src: url('./OpenSans/OpenSans-SemiBoldItalic.ttf');
}

/*--------------------------------------------------------------
>>> Reset
----------------------------------------------------------------*/
p {
    margin: inherit;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

dl, ol, ul {
   margin-top: 0;
   margin-bottom: 0;
   padding-left: 0;
}

ol {
    padding-left: 15px;
}

body {
   margin: 0;
   font-family: 'OpenSans', Arial, sans-serif;
   width: 100%;
   padding-bottom: 60px;
}

/*--------------------------------------------------------------
>>> Page
----------------------------------------------------------------*/
.container-page 
{
    max-width: 1075px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1074px) {
    .container-page 
    {        
        justify-content: center;
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
>>> Event
----------------------------------------------------------------*/
.container-evenement {
    width: 600px;
    max-width: calc(100% - 30px);
    height: fit-content;
    margin-top: 30px;
    background: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 4px;
}

@media (max-width: 1074px) {
    .container-evenement 
    {
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
}

.type-label { 
    text-transform: uppercase;
    font-size: 16px;
    font-family: "OpenSans-ExtraBold";
    margin-bottom: 30px;
 }

.title {
    font-size: 28px;
    font-family: "OpenSans-ExtraBold";
    color: black;
}

.date_evenement
{
    font-size: 20px;
    font-family: "OpenSans-SemiBold";
    color: #4D5B66;
    margin-top: 20px;
    margin-bottom: 20px;
}

.image {
    width: 100%;
    height: 280px;  
}

.intervenants {
    margin-top: 15px;
    /*padding-left: 15px;*/
}

.mentions-legales
{
    margin-top: 15px;
    font-size: 10px;
    color: #A1A7B3;
    font-family: "OpenSans-SemiBold";
}

.intervenants-bloc
{
    margin-top: 30px;
    background-color: white;
    padding: 15px 30px;
    border: 1px solid #ECEBEF;
    border-radius: 4px;
}

.intervenants-titre
{
    color: #071621;
    font-family: 'OpenSans-Bold';
    text-transform: uppercase;
    font-size: 12px;    
}

/*COLLAPSE*/
.accordion 
{
    margin-top: 30px;
    
}

.accordion-button {
    padding: 12px;
    color: #071621;
    font-family: 'OpenSans-Bold';
    text-transform: uppercase;
    font-size: 12px;    
    background-color: #FAFAFA;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-right: 15px;
    margin-left: auto;
    margin-top: 2px;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 18px;
    transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button::before {
   display: none;
}

.accordion-button:focus {
    border-color: #F5FAFB;
    /*box-shadow: 0 0 0 0.25rem rgb(0 151 135 / 25%);*/
    box-shadow: none !important;
}

.accordion-table
{
    font-family: "Gotham";
    font-size: 14px;
}

.accordion-item
{
    margin-bottom: 15px;
    border-radius: 4px !important;
    min-height: 45px;
    border: 1px solid #FAFAFA;
}

.accordion-button 
{
    min-height: 45px;
    border-radius: 4px !important;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: #FAFAFA;
    /*box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);*/
    box-shadow: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius:0 !important;
}

.accordion-header
{
    overflow: hidden;
}


@media (max-width: 767px) 
{
    .type-label { font-size: 14px; margin-bottom: 15px;}
    .title { font-size: 20px; }
    .date_evenement { font-size: 14px; }

    .accordion-button {
        font-size: 12px;
    }

    .accordion-button::before {
        margin-right: 20px;
        margin-left: 0;
    }
    
}
/*FIN TOGGLE*/

/*--------------------------------------------------------------
>>> Compte à rebours
----------------------------------------------------------------*/
.container-countdown
{
    width: 460px;
    max-width: calc(100% - 30px);
    max-height: max-content;
    margin-top: 30px;
    background: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 4px;
}

#countdown 
{
    border-radius: 4px;
    color: white;
}

#countdown li {
    display: inline-block;
    width: calc((100% / 4) - 4px);
    font-family: 'OpenSans-Bold';
    font-size: 12px;
    list-style-type: none;
    padding: 10px 0 15px 0;
    text-transform: uppercase;
    text-align: center;
    position: relative
}

#countdown li:not(:first-child):before {   
    content: '';
    height: 50px;
    width: 2px;
    left: -6px;
    border-radius: 2px;
    position: absolute;
    background-color: white;
}
  
#countdown li span {
    display: block;
    font-size: 20px;
}

@media (max-width: 1074px) {
    .container-countdown
    {
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
}

/*--------------------------------------------------------------
>>> Formulaire
----------------------------------------------------------------*/
.container-inscription
{
    width: 460px;
    max-width: calc(100% - 30px);
    max-height: max-content;
    margin-top: 15px;
    background: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 4px;
}

h2 {
    font-family: 'OpenSans-ExtraBold';
    font-size: 20px;
}

.form-line
{
    width: 100%;
    margin: 20px 0;
    background-color: #ECEBEF;
    opacity: 1;
}

.formulaire
{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.form-1, .form-2, .form-3, .form-reduce
{
    text-align: left;
}

.form-1
{
    width: 100%;
}

.form-2
{
    width: calc(50% - 15px);
}


.form-select, .form-input, .form-control
{
    width: 100%;
    height: 40px;
    border: 2px solid #D9D9D9;
    border-radius: 6px;
    padding: 0 10px;
}

.form-control
{
    border-right: 0;
    border-top-right-radius: none;
    border-bottom-right-radius: none;
    font-size: 14px;
}

.form-control-simple
{
    border-right:  2px solid #D9D9D9;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.form-input-disabled
{
    background-color: #EEF5F7;
    color: #A1A7B3;
    cursor: text;
}

.form-label
{
    margin-top: 15px;
    font-family: 'OpenSans-SemiBold';
    font-size: 16px;
}

.cta-inscription
{
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    height: 45px;
    font-family: 'OpenSans-SemiBold';
    font-size: 14px;
    text-align: center;
    color: white;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.cta-inscription:not(.cta-disabled):hover
{
    font-size: 13.5px;
}

.cta-disabled, .cta-disabled:hover{
    background-color: #EEF5F7 !important;
    color: #A1A7B3 !important;
    cursor: not-allowed;
}

.reponse-inscription
{
    margin-top: 30px;
    margin-bottom: 45px;
    font-family: 'OpenSans-SemiBold';
    font-size: 14px;
}

.share-line
{
    position: relative;
    width: 100%;
    padding-bottom: 15px;
}

.share-line hr 
{
    width: 100%;
    margin: 20px 0;
    background-color: #000000;
    opacity: 1;
}

.share-line div 
{
    position: absolute;
    text-align: center;
    top: -11px;
    width: 100%;
}

.share-line div p 
{    
    background-color: white;
    font-family: 'OpenSans-SemiBold';
    font-size: 14px;
    width: fit-content;
    justify-content: center;
    display: flex;
    margin: auto;
    padding: 0 15px;
}

.copy-btn
{
    background: white;
    background-image: url('../img/icones/copy.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16.5px;
    height: 40px;
    padding: 0 30px 0 15px;
    cursor: pointer;
    border: 2px solid #D9D9D9;
    border-radius: 6px;
    border-left: none;
    transition: 0.3s;
}

.copy-btn:hover
{
    background-size: 16px;
}

@media (max-width: 1074px) {
    .container-inscription
    {
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 767px) 
{
    h2 { font-size: 18px; }
}

/*--------------------------------------------------------------
>>> Live
----------------------------------------------------------------*/
.container-live
{
    width: 460px;
    max-width: calc(100% - 30px);
    max-height: max-content;
    margin-top: 30px;
    background: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.label-rappel 
{
    font-family: 'OpenSans-Bold';
    font-size: 14px;
    text-transform: uppercase;
}

.texte-rappel 
{
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: 'OpenSans';
    font-size: 14px;
}

@media (max-width: 1074px) {
    .container-live 
    {
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
}

/*Checkbox*/
.control {
    font-family: 'OpenSans-SemiBold';
    display: block;
    position: relative;
    padding-left: 30px;
    margin-top: 0; /*33*/
    padding-top: 0px;
    cursor: pointer;
    font-size: 14px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control_indicator {
    position: absolute;
    top: 3px; /*calc(50% - 10px);*/
    left: 0;
    height: 20px;
    width: 20px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #ffffff;
}

.control input:checked ~ .control_indicator {
    background: #ffffff;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #ffffff;
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
   /* left: 7px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); */
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: 0 auto;    
    transform: translateY(-50%);
    border-radius: 20%;
    transition: 0.3s ease-in-out;
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}


/**/
/*Modal*/
.modal-content
{
    padding: 30px;
    font-size: 12px;
}


/*--------------------------------------------------------------
>>> EVENTS
----------------------------------------------------------------*/
.title-catalogue
{
    font-size: 24px;
    font-family: 'OpenSans-Bold';
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.events
{
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
    gap: 30px;
    margin: auto;
    justify-content: center;
}

.event-bloc
{
    position: relative;
    background-color: #A1A7B3;
    background-size: cover;
    height: 220px;
    width: 400px;
    display: flex;
}

.event-bloc:before
{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: black;
    opacity: 20%;
}

.event-bloc-titre-bouton
{
    z-index: 2;
    margin: auto;  
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 30px);
}

.event-bloc-bouton
{
    width: 100%;
    background-color: #007461;
    color: white;
    font-family: "OpenSans";
    font-size: 16px;
    border: none;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 5px 5px;
    cursor: pointer;
    transition: 0.3s;
}

.event-bloc-bouton:hover
{
    background-color: #00584a;
}

.event-bloc-titre
{
     
    max-width: 100%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 10px;
    color: white;
    font-family: "OpenSans";
    font-size: 16px;
    text-align: center;
}

.event-bloc-titre > small 
{
    font-size: 10px;
}

.event-bloc-type
{
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 4px;
    padding: 2px 8px;
    font-family: "OpenSans-SemiBold";
    font-size: 14px;
    color: white;
}

.event-bloc-type-webinaire { background-color: #007461; }
.event-bloc-type-jeu { background-color: #B20467; }
.event-bloc-type-cafe { background-color: #4676CD; }

.event-bloc-univers
{
    position: absolute;
    right: 15px;
    bottom: 15px;
    border-radius: 4px;
    padding: 2px 8px;
    font-family: "OpenSans-SemiBold";
    font-size: 12px;
    color: white;
    background-color: #0C1E35;
}

.event-bloc-date-debut
{
    position: absolute;
    left: 15px;
    bottom: 15px;
    border-radius: 4px;
    padding: 2px 8px;
    font-family: "OpenSans-SemiBold";
    font-size: 12px;
    color: white;   
}

.event-bloc-date-debut-a-venir { background-color: #FF9249; }
.event-bloc-date-debut-passe { background-color: #0C1E35; }
