/********* FONTS ET GÉNÉRAL *********/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;500;800&family=Ubuntu:wght@400;700&display=swap');

/* variables */
:root {
    --primary: rgb(93,23,234);
    --light-primary: rgba(93,23,234,0.05);
    --tertiary: rgb(234,96,96);
    --light-tertiary: rgba(234,96,96,0.05);
    --grey: #f4f4f4;
    --cbody: rgb(0,77,109);
}
  
/* Couleurs Principales */
.primary{
    color: var(--primary) !important;
}
.secondary{
    /* color: #004d6d !important; */
    color: rgb(93,23,234) !important;
}
.tertiary{
    color: var(--tertiary) !important;
}
.cbody{
    color: var(--cbody) !important;
}
.grey{
    color: #888888 !important;
}
.green{
    color: #24B44C !important;
}
.red{
    color: #d70000 !important;
}

.bg_primary{
    background: var(--primary) !important;
    background: linear-gradient(45deg, rgba(93,23,234,1) 0%, rgba(234,96,96,1) 100%) !important;
    color:#FFF;
}
.bg_light_primary{
    background-color: var(--light-primary) !important;
    /* color:#FFF; */
}
.bg_secondary{
    background-color: var(--primary) !important;
    color:#FFF;
}
.bg_tertiary{
    background-color: var(--tertiary) !important;
    color:#FFF;
}
.bg_light_tertiary{
    background-color: var(--light-tertiary) !important;
    /* color:#FFF; */
}
.bg_white{
    background-color: #FFF !important;
    color:#505050;
}
.bg_grey{
    background-color: #f4f4f4 !important;
}

.bg_green{
    background-color: #24B44C !important;
    color:#FFF !important;
}

.bg_red{
    background-color: #d70000 !important;
    color:#FFF !important;
}
.border_secondary{
    border:1px solid rgb(93,23,234) !important;
}
.border_tertiary{
    border:1px solid rgb(234,96,96) !important;
}
.border_grey{
    border:1px solid #f4f4f4 !important;
}


/* Générales */
*{
    box-sizing: border-box;
}

html,body{
    height:100%;
}
body{
	font-family: 'Ubuntu', sans-serif;
    background: #FFF;
    background-size: cover;
	color:#004d6d;
}


img, video {
    max-width: 100%;
    width: auto;
    height: auto;
}

a{
    text-decoration: none;
	color:#004d6d;
}

li{
    line-height: 2.5rem;
}

h1,h2,h3,h4{
    font-family: 'Roboto Slab', serif;
	/* color:#004d6d; */
	font-weight:400;
}

h1{
	font-size:3rem;
	line-height:3.5rem;
}
h2{
    font-size: 2.3rem;
}
h3{
    font-size: 2rem;
}
h4{
    font-size: 1.6rem;
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px 30px;
    text-transform: uppercase;
    border-style: none;
    border-width: 0;
    cursor:pointer;
    font-weight: bold;
	margin: 10px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
	background: #FFF;
}
.small_btn{
    padding: 10px 20px;
}
/* .btn:hover{
	background-color: rgb(93,23,234);
    color: #FFF;
} */
.btn .material-symbols-outlined{
    font-size: 20px;
    vertical-align: bottom;
    -webkit-user-select : none;
    -moz-user-select : none;
    user-select : none;
}
.material-symbols-outlined{
    -webkit-user-select : none;
    -moz-user-select : none;
    user-select : none;
}
/* .btn.bg_primary{
	background-color: #004d6d;
}
.btn.bg_primary:hover{
	background-color: #347a98;
}
.btn.bg_grey{
	background-color: #efefef;
    color: #2f3f55;
}
.btn.bg_grey:hover{
	background-color: #c4c4c4;
} */

.hide{
    display:none;
}
textarea,
select,
input,
.liste_radio label,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple{
    color:#505050;
    background:transparent;
    border:1px solid #d6d6d6;
	font-family: 'Ubuntu', sans-serif;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
    height: auto;
}
input[type="color"].blur,
input[type="color"] {
	-webkit-appearance: none;
    padding: 0 !important;
    height: 49px;
    width: 49px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
    border:none;
}
input[type="color"]::-webkit-color-swatch {
    border:none;
}
textarea{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

textarea:focus,
select:focus,
input:focus{
    outline: none;
    border-color:rgb(93,23,234);
}
.liste_radio label:hover,
.liste_radio input:checked + label{
    background: var(--tertiary);
}
.ligne_form input:focus + label,
.ligne_form input.blur + label,
.ligne_form textarea:focus + label,
.ligne_form textarea.blur + label{
    color:#004d6d;
}
.ligne_form input.label_nom{
    text-transform: uppercase;
}
.ligne_form input.label_prenom{
    text-transform: capitalize;
}
form .code_postal{
    width:200px;
}
form .pays{
    width:200px;
}
.ligne_form label i{
    font-size: 1.2rem;
}

.pass .material-symbols-outlined{
    position: absolute;
    right : 10px;
    top: 50%;
    margin-top: -12px;
    cursor: pointer;
}

.switch_content{
    width: 50px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: -1px;
    bottom: -1px;
    border:1px solid #ccc;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: rgb(93,23,234);
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}
.material-symbols-outlined{vertical-align: middle;}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.shadow{
    box-shadow: rgba(93,23,234, 0.2) 0px 7px 29px 0px;
    -webkit-box-shadow: rgba(93,23,234, 0.2) 0px 7px 29px 0px;
}
.rounded{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.small_rounded{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.message_session{
    position: fixed;
    width:300px;
    height: auto;
    bottom:90px;
    right: 30px;
    z-index: 1000;
}
.message_session .content{
    opacity:0;
    bottom:-20px;
    position: relative;
    background: #FFF;
    padding:10px;
    text-align: left;
    padding-right:40px;
    margin-top: 10px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    display: flex;
    align-items: center;
}
.message_session .content .icon_content{
    font-size: 2rem;
    margin-right: 10px;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.message_session.message .content .message_content{
    color:#2ecc71;
    font-weight: bold;
}
.message_session.message .content .icon_content{
    background: #eafaf1;
}
.message_session.erreur .content strong{
    color:#f22613;
}
.message_session.erreur .content .icon_content{
    background: #fee9e7;
    color:#f22613;
}
.message_session.message .content.active,
.message_session.erreur .content.active{
    opacity:1;
    bottom:0;
}
.message_session.message .content.inactive,
.message_session.erreur .content.inactive{
    opacity:0;
    margin-top:0;
    /* height:0; */
    padding-top: 0;
    padding-bottom: 0;
    bottom:-20px;
}
.message_session .close{
    position: absolute;
    top:50%;
    right: 10px;
    display: block;
    cursor: pointer;
    margin-top: -12px;
}
ul.square{
    list-style: square;
    padding-left:10px;
}

.box .box_title{
    margin-bottom: 20px;
    overflow: hidden;
}
.box.details_info{
    margin: 0;
    position: relative;
    min-height: 170px;
}
.box.details_info .btn{
    padding: 10px 20px;
}
.notice{
    margin: 20px 0;
    border: 1px solid rgb(240, 112, 14);
    color: rgb(240, 112, 14);
    background: rgba(240, 112, 14, 0.2);
    overflow: hidden;
}
.notice > div{
    padding: 20px;
}
.notice .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(240, 112, 14);
    color:#FFF;
}
.notice .btn_acompte{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn .plus_details_temp{
    font-size: 4rem;
}
.details_info .liste_btn{
    position: absolute;
    bottom:15px;
    right:15px;
    margin: 0;
}
.details_info a{
    color:#FFF;
    border-bottom: 1px dotted #FFF;
    display: inline-block;
}
.details_info a.btn{
    border-bottom: none;
}

/*rgpd*/
.details_info .rgpd{
    position: relative;
}
.details_info .rgpd .btn{
    margin: 0;
}
.details_info .rgpd #more{
    position: absolute;
    background: #FFF;
    border-radius: 5px;
    top: 100%;
    right: 0;
    overflow: hidden;
    z-index: 20;
    display: none;
}
.details_info .rgpd #more.active{
    display: block;
}
.details_info .rgpd #more a{
    border: none;
    display: block;
    white-space: nowrap;
    padding: 10px;
    color: var(--primary);
}
.details_info .rgpd #more a:hover{
    background: var(--light-primary);
}

/* LANG */
.drop_lang{
    color:#888;
    position: relative;
}
.drop_lang .list_lang{
    display: none;
    padding: 20px 15px;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #FFF;
}
.drop_lang .list_lang a{
    display: flex;
    margin-bottom: 10px;
    color: #004d6d;
    padding: 5px 0;
}
.drop_lang .list_lang a:last-child{
    margin-bottom: 0;
}
.drop_lang.active .list_lang{
    display: block;
}
.drop_lang .active_lang{
    padding: 10px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.drop_lang .img{
    margin-right: 10px;
    width: 25px;
    font-size: 0;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/* HEADER */
header{
    position:fixed;
    height: 100%;
    width: 90px;
    left: 0;
    padding: 10px;
    z-index: 100;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
header .header_content{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px 0 40px;
}
header.active{
    width: 200px;
}
header.active .header_content{
    box-shadow: rgba(93,23,234, 0.2) 0px 7px 29px 0px;
    -webkit-box-shadow: rgba(93,23,234, 0.2) 0px 7px 29px 0px;
}
header .logo{
    padding:0 10px;
    width: 70px;
}
header nav{
    overflow: hidden;
    padding: 0 10px;
    overflow-y: auto;
    height: 100%;
}
header nav li{
    margin-bottom: 5px;
}
header nav li a{
    display: flex;
    align-items: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding:8px 10px;
    color:#FFF;
    position: relative;
    font-size: 1.3rem;
    /* color: #2f3f55; */
}
header nav li a span.material-symbols-outlined{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 30px;
    height : 30px;
    text-align: center;
    flex: none;
}
header nav li.actif a:hover,
header nav li.actif a{
    background: #FFF;
    color: #2f3f55;
}
header nav li .titre{
    display: block;
    /* width: 100%; */
    flex: none;
    width: 130px;
    padding-left: 20px;
    opacity: 0;
    line-height: 1.4rem;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
header.active nav li a .titre{
    width: 110px;
    padding-left: 5px;
    opacity: 1;
}
header nav li a:hover{
    background: rgba(255,255,255,0.3);
}

header .drop_lang{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
header .drop_lang .active_lang{
    display: flex;
    align-items: center;
    padding: 10px 10px 15px;
    overflow: hidden;
}
header .drop_lang .active_lang span.img{
    display: block;
    flex: none;
    margin: 0 12px;
}
header .drop_lang .active_lang span.img + span{
    display: block;
    width: 100%;
    flex: none;
    width: 130px;
    padding-left: 20px;
    opacity: 0;
    line-height: 1.6rem;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #FFF;
}
header.active .drop_lang .active_lang span.img + span{
    width: 110px;
    padding-left: 5px;
    opacity: 1;
}
header .drop_lang .list_lang{
    margin: 0 10px;
    width: 160px;
}


/* HEADER END */


/* FOOTER */


/* FOOTER END */


/* CONTENU */
.header h1{
    margin: 0;
}
.header .btn{
    margin: 0;
    padding-top:0;
    padding-bottom:0;
}
.header .affiche_domaine {
    display: flex;
    justify-content: flex-end;
}
.header .affiche_domaine form {
    padding: 0 0 0 10px;
}
section#content{
    width: 100%;
    min-height: 100%;
    padding: 10px 0px;
    position: relative;
}
section#content .top_header{
    gap: 20px;
}
section#content .top_header .search{
    width: 100%;
    display: flex;
    gap: 1px;
}
section#content .top_header .search input{
    background: #FFF;
    border: none;
    opacity: 0.7;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-left-radius: 100px;
    -webkit-border-bottom-left-radius: 100px;
    -moz-border-radius-topleft: 100px;
    -moz-border-radius-bottomleft: 100px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
section#content .top_header .search button{
    margin: 0;
    padding: 0 18px 0 15px;
    opacity: 0.7;
    background: #FFF;
    -webkit-border-top-right-radius: 100px;
    -webkit-border-bottom-right-radius: 100px;
    -moz-border-radius-topright: 100px;
    -moz-border-radius-bottomright: 100px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
section#content .top_header .search input:focus{
    opacity: 1;
    outline: none;
}
section#content .top_header .search input:focus + .btn{
    opacity: 1;
}
section#content .user{
    width: 500px;
    padding-left: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
}
section#content .user_connect{
    padding: 0 15px 0 0;
}
section#content .user_connect a{
    display: inline-block;
    padding: 5px;
    position: relative;
}
section#content .user_connect span.nb{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    font-size:10px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

section#content .last_maj{
    font-size: 1.2rem;
    color:#ccc;
    margin-bottom: 0;
    padding-right:15px
}

section#content .user_info {
    position: relative;
    width: 100%;
}
section#content .user_info > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    width: 100%;
    padding: 10px 10px 10px 20px;
}
section#content #user_menu{
    display: none;
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 100%;
    left: 0;
    background: #FFF;
    margin-top: 10px;
    overflow: hidden;
    padding: 10px 0;
}
section#content #user_menu li{
    padding: 5px 10px;
}
section#content #user_menu a{
    display: flex;
    align-items: center;
    gap: 10px;
}
section#content #user_menu.active{
    display: block;
}


/*fil d'ariane*/
.ariane{
    padding: 15px 0 0 0;
    color:#888;
}
.ariane strong{
    font-weight:normal;
}
.ariane a span,
.ariane strong span{
    font-size: 2rem;
    margin-right:5px
}
.ariane a.home span{
    margin-right:0px
}

section#content .header{
    padding:30px 0;
    /* overflow: hidden; */
}
section#content .page_form{
    padding-bottom:50px;
}

.box{
    padding:40px;
    margin-bottom: 30px;
    background: #FFF;
}
form .box{
    padding:20px 20px 1px;
}
.btn_content{
    position: fixed;
    bottom:0;
    right:0;
    padding:0 35px 10px 0;
    display: flex;
    align-items: center;
    z-index: 50;
}
a.back{
    display: inline-flex;
    align-items: center;
}
a.back span{
    float: left;
    display: block;
    position:relative;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    left:0px;
}
a.back:hover span.material-symbols-outlined{
    left:-10px;
}

span.tag{
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(0,0,0,0.1);
    color: #000;
}

/************** SIDEBAR *****************/
/*
.btn.add_btn{
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 5rem;
    padding: 0;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    border-radius: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select : none;
    -moz-user-select : none;
    user-select : none;
}
.btn.expand_sidebar{
    position: fixed;
    bottom:50px;
    right:70px;
    z-index: 10;
}
.btn.expand_sidebar:hover{
    background: #2f3f55;
    opacity: 1;
}
*/

.sidebar{
    position: fixed;
    height:100%;
    width:50vw;
    top:0;
    right:-55vw;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 100;
    padding: 10px;
}
.sidebar:before{
    content: '';
    position: fixed;
    height:100%;
    width:0;
    top:0;
    left:0;
    opacity: 0;
    background: rgba(93,23,234,0.6);
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    z-index: -1;
}
.sidebar.active{
    right:0px;
}
.sidebar.active:before{
    width:100vw;
    opacity: 1;
}

.sidebar .close{
    position: absolute;
    top:20px;
    right:20px;
}
.sidebar .close span{
    font-size: 4rem;
}
.sidebar .content{
    padding:50px;
    height: 100%;
    background: #FFF;
}
.sidebar#aide_sidebar{
    right:-450px;
    z-index: 100;
}
.sidebar#aide_sidebar.active{
    right:0px;
}
.sidebar .btn_content {
    position: fixed;
    bottom: -200px;
    right: 20px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding: 0;
}
.sidebar.active .btn_content {
    bottom: 20px;
}
.sidebar .btn_content  .btn{
    margin: 0;
}

/******** BOUTON ACTION **********/
.action_content{
    position: relative;
}
.action_content a.action{
    margin-top: 0;
    margin-right: 0;
}
.action_content .action_liste{
    position: absolute;
    z-index: 100;
    top: 100%;
    right:0;
    background: #FFF;
    padding: 10px;
    display: none;
}
.action_content .action_liste.active{
    display: block;
}
.action_content .action_liste li{
    border-bottom:1px dotted #b2b2b2;
}
.action_content .action_liste li:last-child{
    border-bottom:none;
}
.action_content .action_liste li a{
    display: block;
    white-space: nowrap;
    padding: 5px;
}



/******** BOITE DE DIALOG **********/
.dialog{
    display:none;
}
.ui-dialog{
    z-index: 600;
    background: #FFF;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    padding-bottom: 80px;
}
.ui-dialog.full_screen{
    height: 90% !important;
}
.ui-dialog-content{
    height: 100% !important;
}
.ui-dialog-titlebar{
    display: none;
}
.ui-dialog-buttonpane{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.popup_overlay,
.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(93,23,234, 0.6);
    z-index: 500;
}
.overlay{
    z-index: 600;
}
.close .ui-dialog{
    margin-top: -20px;
    opacity: 0;
}
.dialog.chambres #debut_timepicker,
.dialog.chambres #fin_timepicker{
    display:none;
}
/* DIALOG HOME MADE*/
.popup_container{
    position: fixed;
    left: 50%;
    top: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width:700px;
    max-height: 80%;
    background-color: white;
    padding: 20px;
    z-index: 500;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    display: flex;
}

.popup_container .close{
    display: block;
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 5px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    z-index: 100;
    font-size: 1rem;
}
.popup_container .close span{
    display: block;
}
.popup_container .popup_content{
    overflow-y: auto;
    /* height: 100%; */
    width: 100%;
}

/******** QUESTION MARK **********/
.question{
    position:relative;
}
.question_mark{
    display: block;
    position: absolute;
    background-color:#004d6d;
    width: 300px;
    color: #FFF;
    text-align: center;
    text-transform: none;
    padding: 10px;
    z-index: 10;
    font-size: 1.4rem;
}

/******** FILTRES DE RECHERCHES **********/
.filtres{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
form.search_filter{
    width: 100%;
    position: relative;
}
form.search_filter label{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 15px;
    color: #505050;
}
form.search_filter input{
    padding-left: 50px;
}

a.filtrer{
    position: relative;
    white-space: nowrap;
    margin: 0;
    display: flex;
    align-items: center;
}
a.filtrer span.number{
    position: absolute;
    top: 10px;
    left:-3px;
    padding: 0 5px;
    font-size: 1.2rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: red;
    color: #FFF;
}
a.filtrer span.number.active{
    padding: 3px 5px;
}

.box_filtre{
    width: calc(50% - 20px);
    position: relative;
    padding: 20px;
}
.box_filtre .filter_content{
    width: 100%;
}
.box_filtre .delete_filtre{
    display: block;
    padding: 5px;
    position: absolute;
    top:-15px;
    right:-5px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    color:#FFF;
}
.box_filtre .delete_filtre span{
    font-size: 2rem;
}
.add_filtre_content{
    width: calc(50% - 20px);
    min-height: 110px;
}
.add_filtre_content .add_filtre{
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dashed #b2b2b2;
}


/************** DATERANGE *****************/
.daterange{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.daterange span.date_text{
    padding-left: 5px;
    font-weight: 700;
}
.daterangepicker td{
    padding: 5px 10px;
}
/* 
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #4bbcc0 ;
} */

/************** DATEPICKER *****************/
.ui-datepicker{
    background: #FFF;
}
.ui-datepicker th{
    text-align: center;
}
.ui-datepicker .ui-datepicker-header{
    background-color: var(--grey);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.ui-datepicker .ui-datepicker-header a{
    cursor:pointer;
}
.ui-datepicker .ui-datepicker-header a.ui-state-disabled{
    display: none;
}
.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev{
    float: left;
    padding: 0 10px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--tertiary);
}
.ui-datepicker .ui-datepicker-header a.ui-datepicker-next{
    float: right;
    padding: 0 10px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--tertiary);
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title{
    clear: both;
    display:flex;
    padding: 10px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title select{
    background: #FFF;
    padding:5px;
    border:none;
}

.ui-datepicker .ui-datepicker-calendar td{
    padding:0px;
}
.ui-datepicker .ui-datepicker-week-col{
    text-align: center;
}
.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month a{
    color: #b2b2b2;
}
.ui-datepicker .ui-datepicker-calendar td a,
.ui-datepicker .ui-datepicker-calendar td span{
    display: block;
    padding:5px;
    color:#b2b2b2;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.ui-datepicker .ui-datepicker-calendar td a{
    color:#004d6d;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.ui-datepicker .ui-datepicker-calendar tr.active_week td{
    color:#FFF;
    background: var(--tertiary);
} 
.ui-datepicker .ui-datepicker-calendar tr.active_week td a{
    color:#FFF;
} 
.ui-datepicker .ui-datepicker-calendar tr td a.ui-state-active{
    background-color: var(--tertiary);
    color:#FFF;
} 
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable{
    color: #b2b2b2;
}
.ui-datepicker-calendar td.ui-datepicker-week-col{
    font-size: 1.4rem;
    color: #b2b2b2;
    cursor: pointer;
}

.ui-datepicker-buttonpane{
    margin-top: 10px;
    padding: 10px 0;
    background: var(--grey);
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.ui-datepicker-buttonpane .ui-datepicker-current {
    text-transform: uppercase;
    border-style: none;
    border-width: 0;
    cursor:pointer;
	color:#FFF;
	background-color: var(--tertiary);
	font-weight: bold;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    text-align: center;
	padding:7px 10px;
	cursor:pointer;
	display:inline-block;
	border:none;
}

/********** CENTRE NOTIFICATIONS ***********/
.centre_notification{
    display: flex;
    align-items: center;
    justify-content: center;
}
.centre_notification a.notif{
    position: relative;
}
.centre_notification a.notif span.active{
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top:0;
    right: 0;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
#centre_notifications .sous-menu{
    padding: 20px;
    top: 0;
}
#centre_notifications .liste_notifications{
    padding: 0 20px;
}
#centre_notifications .liste_notifications .box_notification{
    align-items: flex-start;
    margin-bottom: 20px;
}
#centre_notifications .liste_notifications .box_notification .notif{
    padding: 20px;
    border:1px solid var(--grey);
    width: 100%;
}
#centre_notifications .liste_notifications .box_notification .notif .tab_type_reservation{
    margin: 0;
}
#centre_notifications .liste_notifications a .titre{
    margin-bottom: 10px;
    display: block;
}
#centre_notifications .liste_notifications a .description{
    display: block;
    margin-bottom: 10px;
}
#centre_notifications .liste_notifications a.delete_notification{
    display: flex;
    align-items: center;
    justify-content: center;
    width:25px;
    height:25px;
}

/********** CONFIGURATIONS ***********/
.box_form{
    width: 100%;
    padding-bottom: 30px;
}

.cfg_nav li a{
    white-space: nowrap;
}
.cfg_nav li a,
.sous-menu a{
    padding: 5px 10px;
    display: block;
}
.cfg_nav a:hover,
.cfg_nav a.active,
.sous-menu a:hover,
.sous-menu .active a,
.sous-menu li.ui-tabs-active a{
    color: rgb(93,23,234);
    background: rgba(93,23,234,0.1);
}
.cfg_nav > ul > li > a{
    display: flex;
}

.sous-menu{
    position: sticky;
    top: 10px;
}
.sous-menu ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sous-menu ul ul{
    padding: 10px 0 20px 30px;
}
span.number,
.sous-menu span.number{
    display: inline-block;
    padding: 5px 7px;
    margin-left: 10px;
    font-size: 1rem;
    line-height: 1rem;
}
.filtres_domaines h4,
.filtres_domaines .ligne_form{
    margin: 0;
}





#result_journal_connexions .erreur_404 td{
    background-color: #ffae88;
}

.handle{
    color:#004d6d;
    cursor:grab;
}

.action_content.disabled .btn{
    opacity: 0.3;
    cursor:not-allowed !important;
}

/********** DATATABLES ***********/
.dataTables_wrapper:after{
    content: '';
    display: block;
    clear: both;
}
.dataTables_wrapper .dataTables_filter{
    float: left;
    margin-bottom: 20px;
}
.dataTables_wrapper table{
    margin-bottom: 20px;
}
.dataTables_wrapper table .sorting{
    cursor: pointer;
}
.dataTables_wrapper table .sorting span{
    padding-left: 15px;
    position:relative;
    display: inline-block;
}
.dataTables_wrapper table .sorting span:before,
.dataTables_wrapper table .sorting span:after{
    content: "";
    position: absolute;
    left:0px;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.4;
}
.dataTables_wrapper table .sorting span:before{
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #b2b2b2 transparent;
    top:50%;
    margin-top:-6px;
}
.dataTables_wrapper table .sorting span:after{
    border-width: 4px 4px 0 4px;
    border-color: #b2b2b2 transparent transparent transparent;
    bottom:50%;
    margin-bottom:-6px;
}
.dataTables_wrapper table .sorting_asc span:before,
.dataTables_wrapper table .sorting_desc span:after{
    opacity: 1;
}
table .inactive td,
.dataTables_wrapper table .inactive td{
    opacity: 0.5;
}
.dataTables_wrapper table .number{
    white-space: nowrap;
}
.dataTables_wrapper .bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.dataTables_wrapper .dataTables_length{
    /* float: left; */
}

.dataTables_wrapper .dataTables_info{
    font-style: italic;
    color:#b2b2b2;
}
.dataTables_wrapper .dataTables_paginate {
    display: flex;
}
.dataTables_wrapper .dataTables_paginate span{
    display: flex;
}
.dataTables_wrapper .dataTables_paginate a{
    float:left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:5px;
    margin: 0 2px;
    font-weight: 700;
    cursor: pointer;
    width: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.dataTables_wrapper .dataTables_paginate span a{
    background: #efefef;
}
.dataTables_wrapper .dataTables_paginate a.disabled{
    pointer-events: none;
    cursor:default;
    opacity:0.5;
}
.dataTables_wrapper .dataTables_paginate a.current{
    pointer-events: none;
    cursor:default;
    background: var(--tertiary);
    color:#FFF;
}

/********** TABS ***********/
.tabs{
    width: 100%;
    border-bottom:1px solid #d4d4d4;
    margin-bottom: 20px;
    overflow: hidden;
}
.tabs li{
    float: left;
    border-top: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
}
.tabs li:last-child{
    border-right: 1px solid #d4d4d4;
}
.tabs li a{
    display: block;
    padding: 20px 30px;
}
.tabs li a:hover{
    background: #d4d4d4;
}
.tabs li.ui-tabs-active a{
    background: #2f3f55;
    color:#FFF;
}

/*
.link_tabs_details li a:hover,
.link_tabs_details li.ui-tabs-active a{
    background: #004d6d;
    color:#FFF;
    padding: 10px;
}
*/
.link_tabs_details li .nb{
    display: block;
    text-align: center;
    width: 20px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}


/********** SELECT2 ***********/
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: normal;
}
.select2-container--default .select2-selection--single .select2-selection__clear,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100%;
}
.select2-search--dropdown .select2-search__field{
    padding: 10px;
}
textarea.select2-search__field{
    min-height: 47px;
    padding: 5px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display{
    padding: 0 5px;
}
.select2-container--default .select2-selection--multiple{
    padding: 5px;
}

/********** LOADING ***********/
.overlay#loading{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
} 
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}
.inline_loading{
    display: flex;
    justify-content: center;
    padding: 10px;
    /* background: #2f3f55; */
}
.inline_loading .lds-ellipsis div{
    background: var(--primary);
}


/********** RESERVATIONS ***********/
.tab_type_reservation {
    display: inline-block;
    padding: 5px 10px;
}

/********** COMPTE ***********/
.logo_compte{
    width: 50px;
    height: 50px;
    font-size: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93,23,234,0.2);
}
.comptes_result table tr{
    cursor: pointer;
}



/********** CONTACTS ***********/
.contacts_result, .comptes_result{
    position: relative;
}
.contacts_result_content, .comptes_result_content{
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    background: #FFF;
    padding: 10px;
    z-index: 50;
    overflow-x: auto;
}
table .contacts_result_content, .comptes_result_content{
    top: 0;
}

#contacts_liste_new_contact .box:last-child{
    margin:0;
}
#contacts_liste_new_contact .btn,
#contacts_liste_new_contact .ligne_form{
    margin: 0;
}

span.action_type{
    display: inline-block;
    padding: 4px 10px;
}

/********** PERIODE PLANNING ***********/
/*
#affiche_periode .select_domaines{
    display: flex;
    gap: 15px;
}

#affiche_periode .daterangepicker {
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 0 !important;
    left: 0 !important;
    border: none !important;
}
#affiche_periode .daterangepicker .calendar-table th{
    padding: 0;
    cursor: default;
}
#affiche_periode .daterangepicker .calendar-table th.available{
    cursor: pointer;
}
#affiche_periode .daterangepicker td {
    padding: 0;
}
#affiche_periode .daterangepicker .drp-calendar {
    width: 50%;
    max-width: none;
    float: left !important;
    clear: none !important;
    padding: 0 !important;
}
#affiche_periode .daterangepicker.show-calendar .drp-buttons {
    display: none;
}
#affiche_periode .daterangepicker::before{
    display: none;
}
*/
/********* COMPTE ********/
.box.form_compte{
    padding-bottom: 20px;
}

/********** EXPORT FILE ***********/
#form_export .liste_radio span{
    display: block;
    margin: 0 0 10px;
    width: 100%;
}
#form_export .liste_radio label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    width: 100%;
}

#form_export .liste_radio span img{
    width: 25px;
}

/********** TAUX DE CONCRETISATION ***********/
.completion_rate{
    height:calc(100% - 30px);
}
.completion_rate .bg_grey{
    padding: 20px;
}
.completion_rate .ligne_form {
    margin-bottom: 10px;
} 
.circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0.5rem;
    border-radius: 50%;
    margin: 0 auto;
}
.circle .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 215px;
    height: 215px;
    background: #FFFFFF;
    border-radius: 50%;
    font-size: 4rem;
    font-weight: 300;
    color: var(--tertiary);
}


