:root{
    --bg-deja-dispo : #7eb56d;
    --bg-complet : #ff4a56;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.4;
    background-color: #ffffff;
    overflow: hidden;
}

h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}

#navbar_left{
    position: fixed;
    display: flex;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 100;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    padding: 50px 25px 15px;
}
#navbar_left > .portrait > img{
    height: 122px;
}
#navbar_left > .portrait > .item{
    background-color: #f3f3f3;
    padding: 45px 15px 25px;
    font-size: 16px;
    margin-top: -25px;
    border-radius: 10px;
}
#navbar_left > .portrait > .item.item_2{
    padding: 0;
    margin-top: 15px;
    background: transparent;
}
#navbar_left > .portrait > .item > .d-ipad{
    display: none;
}
#navbar_left > .portrait > .contacts{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-top: 25px;
}
#navbar_left > .portrait > .contacts > a{
    display: inline-block;
}
#navbar_left > .portrait > .contacts > a > img{
    display: inline-block;
    height: 33px;
    opacity: 1;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#navbar_left > .portrait > .contacts > a:hover > img{
    opacity: 0.5;
}

#navbar_mb{
    position: fixed;
    display: none;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    padding: 0 15px;
}
#navbar_mb > img{
    height: 28px;
}
#navbar_mb > .btn_menu {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
}
#navbar_mb  > .btn_menu > img{
    position: absolute;
    display: block;
    height: 24px;
    top: 9px;
    left: 9px;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
#navbar_mb  > .btn_menu > img.icon_menu{
    opacity: 1;
}
#navbar_mb  > .btn_menu > img.icon_close{
    opacity: 0;
}

#camp_right{
    position: fixed;
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc(100vw - 300px);
    z-index: 100;
    padding: 15px 15px 15px 0;
    background-color: #ffffff;
}
#camp_right > .item{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 30px 30px 30px;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.12);
}
#camp_right > .item h2{
    margin-bottom: 30px;
}

#camp_right .inner_item{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#camp_right .inner_item:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
#camp_right .etat_dispo{
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top-right-radius: 10px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
#camp_right .etat_dispo.bientot_dispo{
    background-color: #333;
}
#camp_right .etat_dispo.bientot_dispo::after{
    content: "Bientôt disponible";
    position: absolute;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 23px;
    top: 14px;
}
#camp_right .etat_dispo.deja_dispo{
    background-color: var(--bg-deja-dispo);
}
#camp_right .etat_dispo.deja_dispo::after{
    content: "ACTIF";
    position: absolute;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 31px;
    top: 20px;
}
#camp_right .etat_dispo.complet{
    background-color: var(--bg-complet);
}
#camp_right .etat_dispo.complet::after{
    content: "COMPLET";
    position: absolute;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 23px;
    top: 22px;
}
#camp_right .inner_item > .logo_annonceur{
    padding: 35px 35px 25px;
}
#camp_right .inner_item > .liste{
    list-style: none;
    padding: 0 35px;
    margin: 0;
}
#camp_right .inner_item > .liste.descriptif{
    padding: 25px 35px 0;
}
#camp_right .inner_item > .liste > li{
    font-size: 0px;
}
#camp_right .inner_item > .liste > li+li{
    margin-top: 8px;
}
#camp_right .inner_item > .liste > li > *{
    position: relative;
    display: inline-block;
    vertical-align: top;
}
#camp_right .inner_item > .liste > li > label{
    width: 134px;
    padding-right: 20px;
    font-size: 14px;
}
#camp_right .inner_item > .liste > li > p{
    width: calc(100% - 134px);
    font-weight: 700;
    font-size: 14px;
    vertical-align: middle;
}
/* #camp_right .inner_item > .liste > li.red > p{
    font-size: 18px;
} */
#camp_right .inner_item > .liste > li.red > p,
#camp_right .inner_item > .liste > li.red > label{
    color: #df1277;
}
#camp_right .inner_item > .group_btn{
    display: flex;
    flex-wrap: wrap;
    padding: 25px 35px 35px;
}
#camp_right .inner_item > .group_btn > .btn_pages,
#camp_right .inner_item > .group_btn > .btn_popup_form{
    display: block;
    flex: 0 0 auto;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#camp_right .inner_item > .group_btn > .btn_pages{
    width: 50%;
    text-decoration: none;
    color: #212529;
    background-color: transparent;
}
#camp_right .inner_item > .group_btn > .btn_pages:nth-child(1){
    border-top-left-radius: 10px;
}
#camp_right .inner_item > .group_btn > .btn_pages:nth-child(2){
    border-top-right-radius: 10px;
}
#camp_right .inner_item > .group_btn > .btn_pages.full-width{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#camp_right .inner_item > .group_btn > .btn_pages.disabled{
    pointer-events: none;
    cursor: default;
}
#camp_right .inner_item > .group_btn > .btn_pages:hover{
    background-color: #dddddd;
}
#camp_right .inner_item > .group_btn > .btn_popup_form{
    width: 100%;
    font-weight: 700;
    border: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #f3f3f3;
    cursor: pointer;
}
#camp_right .inner_item:hover > .group_btn > .btn_popup_form{
    background-color: #df1277;
    color: #ffffff;
}
#camp_right .inner_item:hover > .group_btn > .btn_popup_form:hover{
    background-color: #b91165;
}

footer p{
    text-align: right;
    font-size: 12px;
}




/* Popup form */
#form{
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,0.85);
}
#form.open{
    display: flex;
}
#form > .form_place{
    position: relative;
    display: inline-block;
    width: 500px;
    height: auto;
    text-align: center;
}
#form form{
    width: 100%;
    padding: 25px;
    background-color: #ffffff;
}
#form form > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
#form form > div > label{
    font-size: 14px;
    font-weight: 700;
}
#form form > div > input{
    height: 42px;
    width: 280px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #666;
}
#sub_form{
    width: 100%;
    height: 42px;
    text-align: center;
    background-color: #cd3276;
    color: #ffffff;
    border: none !important;
    border-radius: 5px;
    cursor: pointer;
}
#sub_form:hover{
    background-color: #9b1851;
}
#form iframe {
    width: 100%;
    height: 60px;
    padding: 0 25px;
    background: #fff;
    text-align: center;
}
#form iframe body{
    text-align: center;
}
#form > .form_place > button{
    background: transparent;
    box-shadow: none !important;
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    margin: 25px 0 0;
    font-size: 14px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#form > .form_place > button:hover{
    cursor: pointer;
    opacity: 0.5;
    border: 1px solid #ffffff;
}

/* RESPONSIVE */

@media screen and (max-width: 1599px) {
    #camp_right > .item h2{
        font-size: 18px;
    }
    #navbar_left > .portrait > .item{
        font-size: 14px;
    }
    #camp_right .inner_item > .liste > li > label {
        width: 118px;
        font-size: 12px;
    }
    #camp_right .inner_item > .liste > li > p {
        width: calc(100% - 118px);
    }
}

@media screen and (max-width: 1439px) {
    #navbar_left{
        width: 270px;
    }
    #navbar_left > .logo img{
        height: 38px;
    }
    #camp_right{
        width: calc(100vw - 270px);
    }
    #camp_right > .item{
        padding: 20px 10px;
    }
    #camp_right > .item h2 {
        margin-bottom: 20px;
    }
    #camp_right .inner_item > .liste > li > p{
        font-size: 12px;
    }
}

@media screen and (max-width: 1279px){
    #navbar_left {
        width: 90px;
        padding: 40px 10px 15px;
    }
    #navbar_left > .portrait > img {
        height: 60px;
    }
    #navbar_left > .portrait > .item {
        font-size: 12px;
        padding: 25px 10px 10px;
    }
    #navbar_left > .portrait > .item > .d-ipad{
        display: block;
    }
    #navbar_left > .portrait > .item > .d-ordi{
        display: none;
    }
    #navbar_left > .portrait > .contacts{
        flex-direction: column;
    }
    #navbar_left > .portrait > .contacts > a+a{
        margin-top: 15px;
    }
    #navbar_left > .portrait > .contacts > a > img{
        height: 30px;
    }
    #navbar_left > .logo img {
        height: 18px;
    }
    #camp_right {
        width: calc(100vw - 90px);
    }
    #camp_right .inner_item > .logo_annonceur {
        padding: 25px 20px 25px;
    }
    #camp_right .inner_item > .liste{
        padding: 0 20px;
    }
    #camp_right .inner_item > .liste.descriptif {
        padding: 25px 20px 0;
    }
    #camp_right .inner_item > .group_btn {
        padding: 25px 20px 25px;
    }
}

@media screen and (max-width: 767px) {
    #navbar_left {
        width: 100%;
        padding: 100px 55px 15px;
        z-index: 150;
        background-color: #ffffff;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
    #navbar_left.open{
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    #navbar_left > .portrait > .item {
        font-size: 14px;
    }
    #navbar_left > .portrait > .item > .d-ipad {
        display: none;
    }
    #navbar_left > .portrait > .item > .d-ordi {
        display: block;
    }
    #navbar_left > .portrait > .contacts {
        flex-direction: row;
    }
    #navbar_left > .portrait > .contacts > a+a {
        margin-top: 0;
    }
    #navbar_mb{
        display: flex;
    }
    #navbar_mb > .btn_menu.open > .icon_menu{
        opacity: 0;
    }
    #navbar_mb > .btn_menu.open > .icon_close{
        opacity: 1;
    }
    #camp_right {
        width: 100%;
        padding: 50px 5px 5px;
    }
    #camp_right > .item {
        padding: 20px 0px;
    }
    #camp_right .inner_item > .logo_annonceur {
        padding: 25px 15px 25px;
    }
    #camp_right .inner_item > .logo_annonceur > img{
        height: 36px;
    }
    #camp_right .inner_item > .liste {
        padding: 0 15px;
    }
    #camp_right .inner_item > .liste.descriptif {
        padding: 25px 15px 0;
    }
    #camp_right .inner_item > .liste > li > label {
        width: 100px;
    }
    #camp_right .inner_item > .liste > li > label {
        width: 100px;
    }
    #camp_right .inner_item > .liste > li > p {
        width: calc(100% - 100px);
        font-size: 14px;
    }
    #camp_right .inner_item > .group_btn {
        padding: 25px 15px 25px;
    }
    footer p{
        text-align: center;
    }
    #form > .form_place{
        width: 300px;
    }
    #form form {
        padding: 15px;
    }
    #form form > div {
        display: block;
        justify-content: unset;
        align-items: unset;
        margin-bottom: 5px;
        text-align: left;
    }
    #form form > div > label {
        font-size: 12px;
    }
    #form form > div > input {
        height: 34px;
        width: 100%;
    }
    #sub_form{
        margin-top: 12px;
    }
    #form iframe{
        padding: 0 15px;
    }
}