/*

    Thème Oxiva - V 7.0

*/


/* ---------- Global ---------- */
*
{
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 11px;
}


html
{
    box-sizing: border-box;
}


body
{
	padding: 0;
	margin: 0;
	display: flex;
	min-height: 100dvh;
	flex-direction: column;	
	overflow:hidden;
    color: var(--ox_text);
}


iframe
{
    border: none;
}


form
{
    margin: 0px;
}


/* hacks navigateurs  */
/* Empêche l'affichage des lises d'auto complétion du navigateur */
input::-webkit-autofill 
{
    display: none;
}


/* Lien classique */
a
{
    text-decoration: none;
    color: var(--ox_link);
    transition: all 0.4s ease-in-out;
}

a:hover
{
    color: var(--ox_link_hover);
    cursor: pointer;
}


/* Lien discret */
a.vk-link-disc,span.vk-link-disc
{
    text-decoration: none;
    color: var(--ox_icon_link);
    transition: all 0.4s ease-in-out;
}

a:hover,span.vk-link-disc:hover
{
    color: var(--ox_link_hover);
    cursor: pointer;
}


/* init Objets */
img 
{
    vertical-align: middle;
    border: 0;
}


ol, ul 
{
    margin-top: 0;
    margin-bottom: 10px;
}

li
{
    list-style: none;
}


strong, strong em, strong u
{
    font-weight: bold;
}


hr
{
    border: 0;
    border-top: 1px solid #eee;    
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.2;
}


hr.vk
{
    border: 0;
    border-top: 1px solid #182A3E;    
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.2;
}


/* Titres */
h1.vk-ind
{
    display: inline-block;
    font-size: 4em;
    font-weight: 550;
    margin-right: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}

h2.vk-ind
{
    display: inline-block;
    font-size: 2em;
    margin-top: 5px;
    margin-bottom: 10px;    
}

h3.vk-ind
{
    display: inline-block;
    font-size: 1.5em;
    margin-top: 5px;
    margin-bottom: 10px;    
}

h4.vk-ind
{
    display: inline-block;
    font-size: 1.2em;
    margin-top: 5px;
    margin-bottom: 10px;    
}


h1.vk-titre
{
    margin-top: 5px;
    margin-bottom: 10px;    
    font-size: 2em;
}

h2.vk-titre
{
    margin-top: 5px;
    margin-bottom: 10px;    
    font-size: 1.5em;
}

h3.vk-titre
{
    margin-top: 5px;
    margin-bottom: 10px;    
    font-size: 1.3em;
}

h4.vk-titre
{
    margin-top: 5px;
    margin-bottom: 10px;    
    font-size: 1.2em;
}


/*  Listes */
ul.vk
{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;    
}

ul.vk li
{
    display: flex; 
    justify-content: space-between; 
    align-items: center; /* Centre verticalement */    
    margin-bottom: 5px;
}

ul.vk li.bordered-bottom
{
    padding-bottom: 2px;
    border-bottom: 1px solid #dddddd;
}


/* Classes génériques */
.p5
{
    padding: 5px !important;
}

.p10
{
    padding: 10px !important;
}

.p15
{
    padding: 15px !important;
}

.no-display
{
    display: none !important;
}

.no-padding
{
    padding: 0px !important;
}

.no-padding-left
{
    padding-left: 0px !important;
}

.no-padding-right
{
    padding-right: 0px !important;
}

.no-padding-bottom
{
    padding-bottom: 0px !important;
}

.height-auto
{
    height: auto !important;
}

.no-scroll-x
{
    overflow-x: unset !important;
}

.no-scroll-y
{
    overflow-y: unset !important;
}

.no-overflow-x
{
    overflow-x: hidden;
}

.no-overflow-y
{
    overflow-y: hidden;
}


.ellipsis
{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.no-wrap
{
    white-space: nowrap;
}


.no-bg
{
    background: none !important;
}


.bg-w
{
    background-color: #FFFFFF;
}


.hidden
{
    display: none !important;
}


.lien:hover
{
    cursor: pointer;
    user-select: none;    
}


.inline
{
    display: inline !important;
}


.inline-block
{
    display: inline-block !important;
}


.blur 
{
    backdrop-filter: blur(3px);
}


.left
{
    text-align: left;
}

.left_imp
{
    text-align: left !important;
}

.middle
{
    display: grid;
    place-items: center; /* centre horizontalement ET verticalement */
}

.center
{
    text-align: center;
}

.right
{
    text-align: right;
}

.top
{
    vertical-align: top;
}

.middle
{
    vertical-align: middle;
}

.pull-left
{
    float: left;
}

.pull-right 
{
    float: right;
}

.pos-relative
{
    position: relative;
}

.bottom
{
  position: absolute;
  bottom: 0;    
}

.vertical-center-container
{
    position: relative;
    height: 100%;
}

.vertical-center 
{
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.font-1_2
{
    font-size: 1.2em;
}

.font-1_1
{
    font-size: 1.1em;
}

.font-1_0
{
    font-size: unset !important
}

.font-0_9
{
    font-size: 0.9em;
}

.font-0_8
{
    font-size: 0.8em;
}

.bold
{
    font-weight: 600;
}

.italic
{
    font-size: inherit;
    font-style: italic;    
}


.img-circle 
{
    border-radius: 50%;
}

.img-circle-bordered
{
    border: 2px solid #FFFFFF;
}

.width-auto
{
    width: auto !important;
}

.overflow-y-auto
{
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;  
}

.overflow-y-hidden
{
    overflow-y: hidden;
}

.pointer:hover
{
    cursor: pointer;    
}

.move:hover
{
    cursor: move;    
}


.w-panel
{
    min-width: 200px;
    width: 200px;
    max-width: 200px;
}

.w0p
{
    width: 0% !important;
}

.w100p
{
    width: 100% !important;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;    
}

.w50p
{
    width: 50% !important;
}

.w33p
{
    width: 33% !important;
}

.w100p_sp
{
    min-width: calc(100% - 200px);
    width: calc(100% - 200px);    
    max-width: calc(100% - 200px);
}

/*.h12
{
    height:calc((100dvh - 130px) * 0.12);
}

.h12_menu
{
    height:calc((100dvh - 145px) * 0.12);
}*/

.h25
{
    height:calc((100dvh - 130px) / 4);
}

.h25_menu
{
    height:calc((100dvh - 145px) / 4);
}

.h33
{
    height:calc((100dvh - 130px) / 3);
}

.h33_menu
{
    height:calc(((100dvh - 145px) / 3) - 34px);
}

.h50
{
    height:calc((100dvh - 130px) * 0.5);
}

.h50_menu
{
    height:calc(((100dvh - 145px) * 0.5) - 30px);
}

.h75
{
    height:calc((100dvh - 130px) * 0.75);
}

.h75_menu
{
    height:calc((100dvh - 145px) * 0.75);
}

.h100
{
    height:calc(100dvh - 130px);
    /*max-height:calc(100dvh - 130px);*/
}

.h100-content
{
    height:calc(100dvh - 70px);
    /*max-height:calc(100dvh - 70px);*/
}

.h100-content_menu
{
    height:calc(100dvh - 120px);
}

.h100_menu
{
    height:calc(100dvh - 145px);
}

.h100p
{
    height: 100%;
}

.h100p_20px
{
    height: calc(100% - 20px);
}

.h100p_50px
{
    height: calc(100% - 50px);
}

.card.h100
{
    height: calc(100dvh - 115px);
    overflow-y: auto;
    scrollbar-width: none;
}

.card.h100_menu
{
    height: calc(100dvh - 155px);
    overflow-y: auto;
    scrollbar-width: none;
}

.card.h50
{
    height: calc(100dvh - 115px) / 2;
    overflow-y: auto;
    scrollbar-width: none;
}

.card.h50_menu
{
    height: calc(100dvh - 155px) / 2;
    overflow-y: auto;
    scrollbar-width: none;
}

.card.h33
{
    height: calc(100dvh - 115px) / 3;
    overflow-y: auto;
    scrollbar-width: none;
}

.card.h33_menu
{
    height: calc(100dvh - 155px) / 3;
    overflow-y: auto;
    scrollbar-width: none;
}

.card.h100::-webkit-scrollbar, 
.card.h100_menu::-webkit-scrollbar,
.card.h50::-webkit-scrollbar, 
.card.h50_menu::-webkit-scrollbar,
.card.h33::-webkit-scrollbar, 
.card.h33_menu::-webkit-scrollbar,
{
    display: none; /* Chrome, Edge, Safari, Opera */
}


.xx40
{
    width: 40px !important;
}

.xx50
{
    width: 50px !important;
}

.xx100
{
    width: 100px !important;
}

.xx150
{
    width: 150px !important;
}

.yy10
{
    height: 10px !important;
}


.yy15
{
    height: 15px !important;
}


.yy20
{
    height: 20px !important;
}

.yy25
{
    height: 25px !important;
}

.yy30
{
    height: 30px !important;
}

.yy35
{
    height: 35px !important;
}

.yy40
{
    height: 40px !important;
}

.yy45
{
    height: 45px !important;
}

.yy50
{
    height: 50px !important;
}

.y-1
{
    position: relative;
    top: -1px !important;
}

.y-2
{
    position: relative;
    top: -2px !important;
}

.y-5
{
    position: relative;
    top: -5px !important;
}

.y-8
{
    position: relative;
    top: -8px !important;
}

.y-10
{
    position: relative;
    top: -10px !important;
}

.y0
{
    position: relative;
    top: 0px !important;
}

.y1
{
    position: relative;
    top: 1px;
}

.y2
{
    position: relative;
    top: 2px;
}

.y4
{
    position: relative;
    top: 4px;
}

.y5
{
    position: relative;
    top: 5px;
}

.y6
{
    position: relative;
    top: 6px;
}

.y8
{
    position: relative;
    top: 8px;
}

.y10
{
    position: relative;
    top: 10px;
}

.y12
{
    position: relative;
    top: 12px;
}

.y15
{
    position: relative;
    top: 15px;
}

.y20
{
    position: relative;
    top: 20px;
}

.r0
{
    right: 0px;
}

.pl5
{
    padding-left: 5px !important;;
}

.pl10
{
    padding-left: 10px !important;;
}

.pr5
{
    padding-right: 5px !important;
}

.pr10
{
    padding-right: 10px !important;;
}

.pr12
{
    padding-right: 12px !important;;
}


.ml0
{
    margin-left: 0px !important;
}

.ml2
{
    margin-left: 2px !important;
}


.ml5
{
    margin-left: 5px !important;
}

.ml10
{
    margin-left: 10px !important;
}

.ml15
{
    margin-left: 15px !important;
}

.mr5
{
    margin-right: 5px !important;
}

.mr10
{
    margin-right: 10px !important;
}

.mr15
{
    margin-right: 15px !important;
}

.mr50
{
    margin-right: 50px !important;
}


.mt0
{
    margin-top: 0px !important;
}

.mt1
{
    margin-top: 1px !important;
}

.mt2
{
    margin-top: 2px !important;
}


.mt5
{
    margin-top: 5px !important;
}

.mt10
{
    margin-top: 10px !important;
}

.mt15
{
    margin-top: 15px !important;
}

.mt20
{
    margin-top: 20px !important;
}

.mt25
{
    margin-top: 25px !important;
}

.mb2
{
    margin-bottom: 2px !important;
}

.mb3
{
    margin-bottom: 3px !important;
}

.mb5
{
    margin-bottom: 5px !important;
}

.mb8
{
    margin-bottom: 8px !important;
}

.mb10
{
    margin-bottom: 10px !important;
}

.mb15
{
    margin-bottom: 15px !important;
}

.mb20
{
    margin-bottom: 20px !important;
}

.pt10
{
    padding-top: 10px;
}

.pt20
{
    padding-top: 20px;
}


.flex
{
    display: flex;
}

.flex-column 
{
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex_1
{
    flex: 1;
}

.spacer 
{
    flex-grow: 1;
}


.fade 
{
    transition: opacity .15s linear;
}

.fade:not(.show) 
{
    opacity: 0;
}


.vk-flex-container /* Pour la gestion des panel */
{
    display: flex; 
    align-items: stretch;
}


.vk-cell
{
    display: table-cell;
}


.vk-default
{
    background-color: var(--ox_info);
}

.vk-info
{
    background-color: var(--ox_info);
}

.vk-success
{
    background-color: var(--ox_success);
}

.vk-warning
{
    background-color: var(--ox_warning);
}

.vk-danger
{
    background-color: var(--ox_danger) !important;
}

.vk-danger-light
{
    background-color: var(--ox_danger-light) !important;
}


.border
{
    border: 1px solid var(--ox_border);
}


.border-selected
{
    border: 2px solid var(--ox_border_selected);
}


.vk-border-rounded-5
{
    border-radius: 5px;
}

.vk-border-rounded-10
{
    border-radius: 10px;
}

.vk-border-rounded
{
    border-radius: 15px;
}


.vk-border-transparent
{
    border: 1px solid transparent;
    border-radius: 15px;
    padding: 10px 10px 10px 10px;
    transition: all 0.4s ease-in-out;    
}

.vk-border-danger
{
    border: 1px solid var(--ox_danger);
    border-radius: 15px;
    padding: 10px 10px 10px 10px;
    transition: all 0.4s ease-in-out;    
}

.vk-border-danger-light
{
    border: 1px solid var(--ox_danger-light);
    border-radius: 15px;
    padding: 10px 10px 10px 10px;
    transition: all 0.4s ease-in-out;    
}


/* Jeu de couleurs */
.couleur_1
{
    color: var(--ox_jc_1_text);
    background-color: var(--ox_jc_1_bg);
}

.couleur_2
{
    color: var(--ox_jc_2_text);
    background-color: var(--ox_jc_2_bg);
}


.vk-bordered
{
    border-radius: 5px;
    border: 1px solid var(--ox_border);
}


/* Fontes */
.fo-main
{

}

.fo-text
{
    color: var(--ox_text);
}


.fo-lien 
{
    text-decoration: none;
    color: var(--ox_icon_link);
    transition: all 0.4s ease-in-out;
}


.fo-lien:hover
{
    color: var(--ox_icon_link_hover);
    transform: scale(1.2);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.20);
    cursor: pointer;
}

.fo-main-lien
{
    text-decoration: none;
    color: var(--ox_main_text);
    transition: all 0.4s ease-in-out;
}

.fo-main-lien:hover
{
    transform: scale(1.2);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.20);
    cursor: pointer;
}


/* Push icône / Activation / Désactivation option */
.vk-push
{
    padding: 3px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
}

.vk-push:hover
{
    border: 1px solid #AAAAAA; 
    border-radius: 5px;
}

.fo-inactive
{
    color: #AAAAAA;/*var(--ox_icon_link_inactive);*/
}

.fo-active,.fo-active:hover
{
    color: var(--ox_icon_link_active) !important;
}

.fo-active-danger
{
   color: var(--ox_danger); 
}


.fo-success,.fo-success:hover,.fo-lien-success:hover
{
    color: var(--ox_success);
}


.fo-warn
{
    color: var(--ox_warning);
}


.fo-danger,.fo-danger:hover,.fo-lien-danger:hover
{
    color: var(--ox_danger);
}



/* ---------- App desktop ---------- */
#OXIVA_ROOT
{
    display: flex;
    align-items: stretch;
    height:~"calc(100dvh)";
    height:~"-moz-calc(100dvh)";
    height:~"-webkit-calc(100dvh)";
}


#OXIVA_NAV
{
    display: flex;
    flex-direction: column;    
    width: 200px;
    transition: all 0.4s ease-in-out;
    background-color: var(--ox_panel_bg);
    color: var(--ox_panel_text);
    padding: 5px;
}

#OXIVA_NAV:hover #oxiva_nav_navs_ec
{
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

#OXIVA_NAV:not(:hover) #oxiva_nav_navs_ec
{
    transition: opacity 0.3s ease-in 2s;
}


#OXIVA_NAV_ICONS
{
    padding: 5px; 
}


#OXIVA_PAGE
{
    
    width: calc(100% - 200px);
    transition: all 0.4s ease-in-out;
    &.oxiva_page_collapsed
    {
        width: calc(100% - 30px);
    }
}


#OXIVA_PAGE_NO_NAV
{    
    width: 100%;
    transition: all 0.4s ease-in-out;
}


#OXIVA_NAV_LOGO
{
    display: flex;
}


#d_libelle
{
    display: inline-block;
    position: relative;
    margin-top: 5px;
    top: 2px;
    width: 145px;
    font-size: 1.2em;
    color: var(--ox_panel_text);
    transition: all 0.4s ease-in-out;
}


#d_libelle:hover 
{
    cursor: pointer;
}


#d_libelle.vk-bu:after 
{
    display: inline-block;
    font-size: 0.8em;
    font-family: FontOxiva;
    content: "\ea35";
    position: relative;
    top: 3px;
    opacity: 0;
    margin-left: 0;
    transition: opacity 0.3s ease, margin-left 0.3s ease;
}


#d_libelle.vk-bu:hover:after 
{
    opacity: 1;
    margin-left: 5px;
}


#OXIVA_NAV_ACTIVE
{
    margin-top: 15px;
}


#OXIVA_NAV_NAVS
{
    height: 100%;
    overflow-y: auto;
}


#OXIVA_NAV_MAJ_CONTACT
{
    border-top: 1px solid rgba(255, 255, 255, 0.2);    
    white-space: nowrap;
}

#OXIVA_TM
{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
    white-space: nowrap;
}


#OXIVA_TM:hover
{
    cursor: pointer;
}


#oxiva_nav_navs_ec
{
    opacity: 0;
    position: absolute;
    padding: 5px;
    z-index: 50; 
    top: 30px; 
    left: 95%; 
    color: var(--ox_panel_text);
    background-color: var(--ox_tab_active_hover);
    border-radius: 10px;
    transition: opacity 2s ease-out; 
}


#oxiva_nav_navs_ec:hover
{
    cursor: pointer; 
};


.oxiva-navs-divider
{
    border: 0;
    border-top: 1px solid #FFFFFF;    
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.2;    
}


.oxiva_nav_collapsed
{
    width: 30px !important;
}

.oxiva-nav-link
{
    display: block;    
    background: 0 0;
    border: 0;
    border-radius: 5px;
    padding: 5px;

    max-width: 100%;

    overflow: hidden;
    text-overflow: " ...";
    white-space: nowrap;

    color: var(--ox_nav_text);
    transition: all 0.4s ease-in-out;        

    margin: 10px 0px;
    width: 100%;
    text-align: left;    
}

.oxiva-nav-link.active
{
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
    border-color: var(--ox_nav_active);    
}

.oxiva-nav-link:hover
{
    cursor: pointer;
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
    border-color: var(--ox_nav_active);    
}

.oxiva-nav-link[disabled]
{
    cursor: not-allowed;
    color: var(--ox_table_text_disabled);
}

.oxiva-nav-link-footer,.oxiva-nav-footer
{
    flex: 1;
    text-align: center;    
}

.oxiva-nav-link-footer.active
{
    background-color: var(--ox_nav_active);
    border-color: var(--ox_nav_active);
    border-radius: 8px;           
}

#OXIVA_HEADER
{
    display: flex;
    align-items: stretch;    
    position: relative;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    background-color: var(--ox_header_bg);
    color: var(--ox_header_text);
    border-bottom: 1px solid #182A3E30;
}


#oxiva_header_titre
{
    font-size: 16px;
    width: 400px;
    line-height: 50px;
    margin-left: 10px;
}

#oxiva_header_titre i
{
    position: relative;
    top: 4px;
}

#oxiva_header_actions_container
{
    width: 100%;
    margin-right: 10px;
}

#oxiva_header_actions
{
    display: block;
    width: 100%;
    line-height: 50px;
    text-align: right;
}

#OXIVA_HEADER li 
{
    list-style-type: none;
    display: inline !important;
}


#oxiva_header_actions .action_ico
{
    user-select: none;
    color: var(--ox_header_text);
    margin-left: 5px; 
}


#oxiva_header_actions .action_ico:hover
{
    cursor: pointer;
    color: var(--ox_main_link_hover);
    transition: all 0.4s ease-in-out;
}


#user_menu_dropdown .vk-dropdown-content
{
    position: absolute;
    margin-top: 0px !important;
}


#oxiva_header_actions .action_ico .vk-dropdown-content
{
    position: absolute;
    margin-top: 10px;
}


#oxiva_txt_recherche
{
    border: 0px solid;
    /*background-color: var(--ox_main);*/
    color: var(--ox_header_text);
    border-bottom: 1px solid var(--ox_header_text);
}


#oxiva_txt_recherche:focus 
{
    border-color: var(--ox_main);
    outline: 0;
}


#profil_img
{
    position: relative;
    top: -2px;
    height: 40px;
    border: 2px solid var(--ox_header_text);
    transition: all 0.4s ease-in-out;    
}


#profil_img:hover
{
    border: 2px solid var(--ox_link);
}


/* Onglets */
#OXIVA_TAB
{
    height: 33px;
    background-color: var(--ox_main);
    color: var(--ox_main_text);
    padding: 0px 5px 0px 5px;
}


#OXIVA_TAB .vk-tab
{
    position: relative;
    display: inline-block;
    height: 29px;
    line-height: 25px;
    color: #FFFFFF;
    border-radius: 4px 4px 0px 0px;
    padding: 4px 5px 0px 5px;
    margin-right: 5px;
    display: inline-block; 
}

#OXIVA_TAB .vk-tab:hover
{
    background-color: #FFFFFF;
    color: #182A3E;
}

#OXIVA_TAB .vk-tab-active
{
    background-color: #FFFFFF;
    color: #182A3E;
}

#OXIVA_TAB .vk-tab-active:hover
{
    background-color: var(--ox_tab_active_hover);
    color: var(--ox_tab_active_text_hover);
}

#OXIVA_TAB .vk-tab span 
{
    font-weight: 600;
}


#OXIVA_TAB .vk-tab .vk-badge 
{
    position: relative;
    top: -5px;
    left: -2px;
}



#OXIVA_CONTAINER
{
    background-color: var(--ox_bg);
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;
    height:~"calc(100dvh - 50px)";
    height:~"-moz-calc(100dvh - 50px)";
    height:~"-webkit-calc(100dvh - 50px)";
}


#OXIVA_FOOTER
{
    position: fixed;
    width: 100%;
    bottom: 0;    
    height: 30px;
    background-color: var(--ox_main);
    color: var(--ox_main_text);
}


#OXIVA_FOOTER div 
{
    line-height: 30px; /* Centrage vertical du texte*/
}


#OXIVA_CONTEXT_MENU
{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5000;    
}

#OXIVA_CONTEXT_MENU a 
{
    color: #182A3E;
    line-height: 25px;
    padding: 3px 5px 3px 5px;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease-in-out;
}

#OXIVA_CONTEXT_MENU div.divider 
{
    margin-top: 2px;
    margin-bottom: 2px;
    border-top: 1px solid #DDDDDD;
}

#OXIVA_CONTEXT_MENU a:hover 
{
    background-color: #DDDDDD;
}


.bu_logo
{
    height: 30px;
}

/*#logo
{
    padding-top: 2px;
}*/

/* Logo réduit pour petits écrans */
/*#logo_mini
{
    display: none;
}*/

/* ---------- Pages extérieures ---------- */

.vk-ext_page
{
    /*background-color: var(--ox_bg) !important;*/
    display: flex;
    min-height: 100vh;    
}


#vk-ext_page-bg_image
{
    width: 100%;
    height: 100vh;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
}


#vk-ext_page-bg_masque
{
    position: absolute; 
    top: 0px; 
    right: 0px;
    max-width: 100%;
}

#vk-ext_page-bg_masque .masque
{
    height:~"calc(100vh)";
}

#vk-ext_page-logo_viktory
{
    position: fixed;
    left: 70%;
    bottom: 10px;
    margin: 0 auto;
}

.vk-ext_page-panel 
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    margin: auto;
    background: url('../../img/login/bg_login.png') repeat;
    width: 400px;
    height: 450px;
    padding: 30px;
    padding-top: 20px;
    padding-bottom: 15px;
    border-radius : 5px;
}

.vk-ext_page-panel-extranet
{
    background: url('../../../extranet/img/login/bg_login.png') repeat !important;
}


#vk-ext_page-content
{
    color: #FFFFFF;
}

.vk-ext_page .vk-ext_page-panel h3,
{
    color: #FFFFFF;
}

.vk-ext_page .vk-ext_page-panel h4  
{
    color: #FFFFFF;
}

.vk-ext_page .vk-ext_page-panel p,
.vk-ext_page .vk-ext_page-panel label 
{
    color: #FFFFFF;
}

.vk-ext_page .vk-ext_page-panel .logo
{
    margin: 0 0 26px 0;
}

.vk-ext_page-panel .release
{
    color: #FFFFFF;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0);
}


/* ---------- Extranet ----------- */
#vk-ext_login_txt
{
    margin-top: 15px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 550;
}



/* ---------- App Mobile / Extranet ---------- */
#OXIVA_NAV_XS
{
    display: none;
    align-items: center;
    height: 32px;
    width: 100%;
    transition: all 0.4s ease-in-out;
    background-color: var(--ox_panel_bg);
    color: var(--ox_panel_text);
}


#OXIVA_NAV_MOBILE
{
    display: none;
    height: 32px;
    width: 100%;
    transition: all 0.4s ease-in-out;
    background-color: var(--ox_panel_bg);
    color: var(--ox_panel_text);
}


/* ---------- Media queries ---------- */
@media (max-width: 1000px) 
{
    .vk-ext_page-panel 
    {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        background: url('../../img/login/bg_login.png') repeat;
        width: 400px;
        height: 450px;
        padding: 30px;
        padding-top: 20px;
        padding-bottom: 15px;
        border-radius : 5px;
    }

    #vk-ext_page-bg_masque
    {
        display: none;
    }    
}


@media (max-width: 800px) 
{
    .vk-ext_page-panel
    {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      margin-top: 10px;
      background: url('../../img/login/bg_login.png') repeat;
      width: 400px;
      height: 450px;
      padding: 30px;
      padding-top: 20px;
      padding-bottom: 15px;
      border-radius : 5px;
    }

    #vk-ext_page-bg_masque
    {
      display: none;
    }    
}


@media (max-width: 480px) 
{
    .badge-notify
    {
        position: relative;
        top: -10px;
        left: -10px;
    }

    .no-padding-left-xs
    {
        padding-left: 0px !important;
    }

    #OXIVA_ROOT
    {
        display: block;
    }

    #OXIVA_HEADER
    {
        display: none;
    }

    #OXIVA_NAV
    {
        display: none;
    }

    #OXIVA_NAV_XS
    {
        display: flex;
    }

    #OXIVA_NAV_MOBILE
    {
        display: flex;
    }    

    #OXIVA_PAGE
    {
        width: 100%;
    }    

    #OXIVA_CONTAINER 
    {
        /*height: calc(100dvh - 32px);*/
        height: calc(100svh - 32px);
        overflow-y: hidden;
    }   

    #pg-scroll-indicator
    {
        bottom: 40px !important; 
    }    

    #oxiva_header_titre span
    {
        display: none;
    }

    #profil_img 
    {
        position: relative;
        top: 0px;
        right: 3px;
        height: 28px;
        border: 2px solid var(--ox_header_text);
        transition: all 0.4s ease-in-out;
    } 

    #pg-content
    {
        margin: 5px 5px 0px 5px !important;
        overflow-x: hidden;
    }   

    #pg-container
    {
        flex-direction: column;
        overflow-y: hidden !important;
    }

    #pg-side-panel
    {
        display: none;
    }

    #pg-side-panel-mobile
    {
        display: block !important;
    } 

    #pg-side-panel-mobile .vk-badge 
    {
        position: absolute;
        top: -3px;
        right: 10px;
        font-size: 0.9em;
    }       

    .card.h100 
    {
        height: calc(100dvh - 135px);
    }

    .h100-content
    {
        height: calc(100dvh - 40px);
    }

    .card
    {
        padding: 8px 8px 8px 8px !important;
    }

    .card.mr15
    {
        margin-right: 0px !important;
    }

    .vk-wizard
    {
        height: calc(100dvh - 60px) !important;
    }

    .vk-ext_page-panel
    {
        position: fixed;
        top: calc(50% - 300px);
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        margin-top: 10px;
        margin-left: 5px;
        margin-right: 5px;
        background: url('../../img/login/bg_login.png') repeat;
        width: auto;
        height: 450px;
        padding: 10px;
        padding-top: 20px;
        padding-bottom: 15px;
        border-radius : 5px;
    }

    .vk-dialog-box-medium,.vk-dialog-box-large
    {
        width: 99% !important;
    }

    .table-cell-xs-hidden
    {
        display: none;
    }

    .pge_form
    {
        margin-bottom: 45px !important;
    }

    #vk-steps
    {
        display: none;
    }

    #vk-steps-xs
    {
        display: block !important;
    }   

    .zone-vk-step-title    
    {
        display: none;
    }

    #vk-steps-xs
    {
        display: block;
    }       

}

#ads
{
    width: 100%;
}


/* ---------- Affichage réduit <1024px ---------- */
@media only screen and (max-width: 1024px)
{
    #logo
    {
        display: none;
    }

    #logo_mini
    {
        display: block;
    }
}


/* ---------- Panneau des notifications ---------- */
#OXIVA_NOTIF 
{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 300px;
    transform: translateX(100%);
    transition: .3s ease-out;
    z-index: 300;
}

.notif 
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ox_panel);
    backdrop-filter: blur(3px);
    overflow: auto;
}


#OXIVA_NOTIF_TITLE
{
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
    border-color: var(--ox_nav_active);
    font-weight: 600;
    margin-bottom: 5px;    
    padding: 5px 5px 5px 5px;
}

#OXIVA_NOTIF_CONTENT
{
    overflow-y: auto;
    height: calc(100dvh - 50px);    
    padding: 5px 5px 5px 5px;
}

.oxiva-notif-titre
{
    background-color: #284b72;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 5px 5px 5px 5px;
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;    
}

.oxiva-notif-item
{
    background-color: #FFFFFF;
    /*color: #FFFFFF;*/
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 5px 5px 5px 5px;
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;    
}


/* ---------- Assistant / Wizard ---------- */
#vk-steps
{
    border-right: 1px solid #DDDDDD;    
}

.vk-steps-title
{
    font-size: 1.2em;
}

.vk-steps ul
{
    padding-left: 0px;
    list-style-type: none;
}


.vk-steps ul li 
{
    padding-top: 40px;
    position: relative;
    z-index: 99;
}

#vk-steps-xs
{
    display: none;
}


#vk-steps-xs ul
{
    padding-left: 0px;
    list-style-type: none;
    border-bottom: none;
}


#vk-steps-xs ul li
{
    display: inline-block;
    margin-right: 10px;    
}


.vk-steps a:visited,
.vk-steps a:link,
.vk-steps a:active
{
    text-decoration: none !important;
}


.vk-steps ul li:not(:first-child):before
{
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    width: 2px;
    height: 40px;
    left: 26px;
    border-right: 2px solid #DDDDDD;
    -webkit-transition: all 2s linear;
    -moz-transition: all 2s linear;
    -o-transition: all 2s linear;
    transition: all 2s linear;      
}


.vk-steps ul li.vk-step-active:not(:first-child):before
{
    border-right: 2px solid #182a3e;
}


.vk-step-active span.vk-step-title
{
    color: #182a3e;
    cursor: pointer;
}

.vk-step-inactive span.vk-step-title
{
    color: #CCCCCC;
}


.vk-step-title
{
    position: relative;
    top: 1px;
    margin-left: 15px;
    font-weight: 500;   
}


.vk-step-icone
{
    display: inline-block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 99;
    text-align: center; 
    border: 5px solid #FFFFFF;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;  
}


.vk-step-icone i
{
    position: relative;
    top: 10px;
    color: #FFFFFF !important;
}


.vk-step-icone-xs
{
    display: inline-block;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    z-index: 99;
    text-align: center; 
    border: 5px solid #FFFFFF;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;  
}


.vk-step-icone-xs i
{
    position: relative;
    top: 5px;
    color: #FFFFFF !important;
}


.vk-step-active span.vk-step-icone, .vk-step-active span.vk-step-icone-xs
{
    background-color: #182a3e;
}
    

.vk-step-inactive span.vk-step-icone,.vk-step-inactive span.vk-step-icone-xs
{
    background-color: #CCCCCC;
}


.zone-vk-step-title
{
    font-size: 1.2em;
    letter-spacing: 0.05em;
    margin-bottom: 10px;    
}

/*#zone-steps
{
    background-color: #EEEEEE;
    height: calc(100vh - 160px);
    padding-top: 15px;
}*/

.zone-vk-step-container
{
/*    display: flex; 
    flex-direction: column;
*/    /*align-items: stretch;*/
}

.zone-vk-step-footer
{
    margin-top: 10px;
    margin-bottom: 2px;
    padding-top: 10px;
    border-top: 1px solid #DDDDDD;
}


/* ---------- Liens rapides ---------- */
.vk-csoc-link.page_link 
{
    font-size: inherit;
}


/* ---------- Objets ---------- */

button, input, select, textarea 
{
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


textarea 
{
    resize: none;
    height: 150px;
}


/* Bulles d'infos - Titles */
[vk-info]:hover:after, [vk-info-right]:hover:after
{
    opacity: 1;
    transition: all 0.5s ease 0.5s;
    visibility: visible;
}

[vk-info]:after,[vk-info-right]:after 
{
    background-color: var(--ox_main);
    color: var(--ox_main_text);
    font-size: 10px !important;
    font-family: Open Sans !important;
    position: absolute;
    padding: 2px 5px 3px 5px;
    /*bottom: 1.5em;*/
    white-space: nowrap;
    opacity: 0;
    border-radius: 5px;
    z-index: 99999;
    visibility: hidden;
}


[vk-info]:after
{
    content: attr(vk-info);    
    left: 20px;
}

[vk-info-right]:after 
{
    content: attr(vk-info-right);
    right: 20px;
}


[vk-info],[vk-info-right]
{
    position: relative;
}


/* Badges */
.vk-badge 
{
    display: inline-block;
    min-width: 10px;
    padding: 3px 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
    background-color: var(--ox_badge);
    color: var(--ox_badge_text);
}

.vk-badge[data-value="0"] 
{
    display: none;
}

.vk-badge-0[data-value="0"] 
{
    display: inline-block;
}

/* Tags */
.vk-tag
{
    display: inline-block;
    min-width: 10px;
    padding: 1px 3px;
    font-size: 0.8em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 5px;
    border : 1px solid var(--ox_tag_bord);
    background-color: var(--ox_tag);
    color: var(--ox_tag_text); 
}

.vk-tag-l
{
    line-height: 14px;
    font-size: 1em;
    min-height: 14px;
}

.vk-tag-xl
{
    line-height: 20px;
    font-size: 1em;
    min-height: 20px;
}


/* Tri / Ordre */
.vk-sort-handle
{
    cursor: move;
}


label 
{
  display: inline-block;
  max-width: 100%;
/*  margin-bottom: 5px;*/
}


.vk-container-background
{
   background-color: #eeeeee !important; 
}


/* ---------- Alerts ---------- */
.vk-alert 
{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
}

.vk-alert-info
{
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;    
}

.vk-alert-danger
{
    color: var(--ox_danger_text);
    background-color: var(--ox_danger-light);
    border-color: var(--ox_danger);    
}



/* ---------- Séparateurs ---------- */

.vk-divider 
{
    --text-divider-gap: 1rem;
    display: flex; /* !important*/
    align-items: center;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    /*margin-bottom: 10px;*/
    line-height: 25px;
    color: #182a3e;
}

.vk-divider::before, .vk-divider::after 
{
    content: '';
    height: 1px;
    background-color: #182a3e;
    flex-grow: 1;
}

.vk-divider::before 
{
    margin-right: var(--text-divider-gap);
}

.vk-divider::after 
{
    margin-left: var(--text-divider-gap);
}



/* ---------- Boutons ---------- */

.vk-btn
{
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    height: 32px;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: 5px 10px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.4s ease-in-out;
}

.vk-btn-bottom
{
    position: absolute;
    bottom: 0px;
    margin-bottom: 10px;
    max-width: calc(100% - 20px);
}

.vk-btn[disabled]
{
    cursor: not-allowed;
}

.vk-btn-wait[disabled]
{
    cursor: wait;
}

.vk-btn-main
{
    color: var(--ox_main);
    background-color: var(--ox_main_text);
    border-color: var(--ox_main);  
} 

.vk-btn-main:hover
{
    color: var(--ox_main_text);
    background-color: var(--ox_main);
    border-color: var(--ox_main);    
} 

.vk-btn-success 
{
    color: var(--ox_success);
    background-color: var(--ox_success_text);
    border-color: var(--ox_success);
}

.vk-btn-success:hover 
{
    color: var(--ox_success_text);
    background-color: var(--ox_success);
    border-color: var(--ox_success);
}

.vk-btn-warning 
{
    color: var(--ox_warning);
    background-color: var(--ox_warning_text);
    border-color: var(--ox_warning);    
}

.vk-btn-warning:hover 
{
    color: var(--ox_warning_text);
    background-color: var(--ox_warning);
    border-color: var(--ox_warning);
}

.vk-btn-danger 
{
    color: var(--ox_danger);
    background-color: var(--ox_danger_text);
    border-color: var(--ox_danger);
}

.vk-btn-danger:hover 
{
    color: var(--ox_danger_text);
    background-color: var(--ox_danger);
    border-color: var(--ox_danger);
}

.vk-btn-ellipsis
{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vk-btn-condensed
{
    height: 25px;
    line-height: 15px;
}

.vk-btn-sep-w100
{
    width: calc(100% - 20px);
}

/* ---------- Stepper / Wizard / Assistant ---------- */

div.vk-stepper-container
{
    padding-right: 25px;
}

ul.vk-stepper 
{
    overflow-y: auto;
    overflow-x: hidden;

    margin: 1em -24px;
    padding: 0 24px;    
}

ul.vk-stepper .vk-step:not(:last-of-type)::after
{
    content: '';
    position: absolute;
    top: 63px;
    left: 30px;
    width: 1px;
    height: 40%;
    height: calc(100% - 63px);
    background-color: rgba(0,0,0,.1);
    transition: height .4s cubic-bezier(.4,0,.2,1);
}

ul.vk-stepper .vk-step-icon
{
    position: relative;
    display: inline-block;
    background-color: #b2b2b2;
    color: #FFFFFF;
    font-size: 1.5em;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    text-align: center;
    margin-right: 10px;    
    text-align: center;
    padding: 5px;
}

ul.vk-stepper .vk-step-icon i
{
    margin-top: 6px;
}

ul.vk-stepper .vk-step.active .vk-step-icon, ul.vk-stepper .vk-step.done .vk-step-icon
{
    background-color: #182A3E;
}

ul.vk-stepper .vk-step.error .vk-step-icon
{
    background-color: var(--ox_danger);
}

ul.vk-stepper .vk-step.active 
/*:not(:last-of-type)*/
{
    padding-bottom: 36px;
}

ul.vk-stepper > li:not(:last-of-type) 
{
    padding-bottom: 10px;
}

ul.vk-stepper .vk-step 
{
    position: relative;
    transition: height .4s cubic-bezier(.4,0,.2,1),padding-bottom .4s cubic-bezier(.4,0,.2,1);
}

ul.vk-stepper > li 
{
    list-style-type: none;
}

ul.vk-stepper .vk-step .vk-step-title 
{
    margin-bottom: 15px;
    cursor: pointer;
    padding: 8px 10px 10px 8px;
    display: block;
    transition: background-color ease-in-out .25s;
    border-radius: 5px;
}

ul.vk-stepper .vk-step.active .vk-step-title
{
    color: #182A3E;
    font-weight: 600;
}

ul.vk-stepper .vk-step.disabled .vk-step-title
{
    cursor: not-allowed;
}

ul.vk-stepper .vk-step .vk-step-content 
{
    position: relative;
    display: none;
    height: 0;
    transition: height .4s cubic-bezier(.4,0,.2,1);
    width: inherit;
    overflow: visible;
    margin-left: 41px;
    margin-right: 24px;
}

ul.vk-stepper .vk-step.active .vk-step-content 
{
    height: auto;
    display: block;
}

ul.vk-stepper .vk-step .vk-step-title:hover 
{
    background-color: rgba(0,0,0,.06);
}


/* ---------- Cartes et Géocodage -------------------------------------------------------------------------------------------------------- */
.map-marker
{
    width: 24px;
}


/* ---------- Champ pin ---------- */
.vk-pin-input-container 
{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.vk-pin-input 
{
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
}




/* ---------- Champ radio pour stepper ---------- */ 
.vk-radio-list-item
{
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,.06); 
    transition: background-color ease-in-out .25s;
    margin-bottom: 15px;
}

.vk-radio-list-item:hover
{
    cursor: pointer;
    background-color: #ececec;     
}

.vk-radio-list-item label:hover
{
    cursor: pointer;
}

.vk-radio-list-item:has(input[type="radio"]:checked)
{ 
    background-color: rgba(0,0,0,.06);
}

.vk-radio-list-item input[type="radio"]
{
    position: relative;
    appearance: none;
    background-color: #FFFFFF;
    top: 5px;
    margin: 0;
    font: inherit;
    color: #444444;
    width: 1.5em;
    height: 1.5em;
    border: 0.15em solid #444444;
    border-radius: 50%;
}

.vk-radio-list-item input[type="radio"] 
{
    display: grid;
    place-content: center;
}

.vk-radio-list-item input[type="radio"]::before 
{
    content: "";
    width: 0.9em;
    height: 0.9em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #182A3E;
}

.vk-radio-list-item input[type="radio"]:checked::before 
{
    transform: scale(1);
}



/*
.vk-radio-list-item input[type="radio"]:hover
{
    background-color: #218838;
    border-color: #1e7e34;
}

.vk-radio-list-item input[type="radio"]:checked
{
    background-color: #28a745;
    border-color: #28a745;
}*/


/* ---------- Editeur Jodit ---------- */
.vk-ch-control-html-editor
{
    min-height: 22px;
    max-height: 500px;
    width: 100%;
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;      
}


.jodit-popup:has(.jodit-icon_brush)
{
    /*top: -50px !important;*/
}

.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button
{
    min-height: 20px !important;
    height: 20px;
}


.jodit-wysiwyg ul li, .vk-ch-control-html-editor ul li
{
    list-style: inside;
}


.jodit-wysiwyg ol li, .vk-ch-control-html-editor ol li
{
    list-style-type: decimal;
}



/* ---------- Tableaux de bord et objets ---------- */
#tdb_edit 
{
    position: fixed;
    padding: 10px;
    right: 10px;
    background-color: #182a3e50;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 995;
}

.pge_tdb_options
{
    /*position: relative;
    top: -10px;    */
}

.tdb_container_obj_placehoder
{ 
    border: 1px solid #DDDDDD;
    background-color: #DDDDDD;
    border-radius: 15px;
    height: 40px;
    width: 20px; 
    margin-bottom: 10px;
}

.tdb_obj
{
    position: relative;
}

.tdb_obj_titre
{
    font-size: 1.1em;
    letter-spacing: 0.05em;
    margin-bottom: 5px;        
}


/*.tdb_icon
{
    position: absolute;
    top: 10px;
    right: 10px;
}*/



/* ---------- Champs hors formulaires ---------- */

/* Radio hors formulaire  */
.vk-radio-container 
{
    margin-bottom: 5px;
}


/* Checkbox hors formlaire */
.vk-chk-container 
{
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.vk-chk-container input 
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.vk-chk 
{
    position: absolute;
    top: 2;
    left: 0;
    width: 15px;
    height: 15px;
    border: 0.125rem solid #aaaaaa;
    border-radius: 5px 5px 5px 5px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.vk-chk:after 
{
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.vk-chk-container input:checked ~ .vk-chk:after 
{
    display: block;
}

.vk-chk-container[readonly="readonly"] .vk-chk:after 
{
    left: 4px;
    top: 0px;
    width: 4px;
    height: 9px;
    border: solid #888888;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.vk-chk-container:not([readonly="readonly"]) .vk-chk:after 
{
    left: 4px;
    top: 0px;
    width: 4px;
    height: 9px;
    border: solid var(--ox_main);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* ---------- Upload de fichiers ---------- */ 
.vk-upload ul.vk-filelist
{
    padding-left: 0px;
    margin-top: 10px;
}

.vk-upload ul.vk-filelist li
{
    margin-bottom: 5px;
}

.vk-upload-drag-over
{
    border: 1px dashed !important;
}


.vk-file-libr
{
    width: 50px;
    height: 23px;
    border: 1px dashed #FFFFFF;
    transition: all 0.4s ease-in-out;
}

.vk-file-libr-drag-over
{
    height: 50px;
    border: 1px dashed var(--ox_main) !important;
}


/* ---------- Image ---------- */
.vk-image-img,.vk-image-img-select
{
    vertical-align: unset;
}


/* ---------- Liste d'élements ---------- */
ul.vk-list-items
{
    padding: 5px;
    background-color: #f6f6f6;
    border: 0.125rem solid #aaaaaa;
    border-radius: 5px 5px 5px 5px;    
}

.vk-list-items li
{
    padding: 5px;
    background-color: #ffffff;
    border: 0.125rem solid #aaaaaa;
    border-radius: 5px 5px 5px 5px;
    margin-bottom: 5px;    
}


.vk-list-items li:hover
{   
}


.vk-list-items li.vk-list-item-clic:hover
{   
    cursor: pointer;
}


/* Champ couleur */
.vk-ch-color
{
    display: inline-block; 
    width: 20px; 
    height: 20px; 
    background-color: var(--ox_nav_bg);
    border-radius: 5px;
}


/* ---------- Progress bar ---------- */
.vk-progress-container 
{
    width: 100%;
    text-align: center;
}

.vk-progress-bar 
{
    position: relative;
    width: 100%;
    height: 21px;
    background-color: #eeeeee;
    border-radius: 5px;
    overflow: hidden;
}

.vk-progress-fill 
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    background-color: var(--ox_nav_active);
    border-radius: 5px;
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    box-sizing: border-box;    
}


/* ---------- Champs et formulaires ---------- */
.vk-form-title
{
    font-size: 1.1em;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}


.vk-ch-label
{
    display: block;
    font-size: 1em;
    font-weight: 400;
    color: #555555;
    transition: color ease-in-out .25s;
}

/*label.vk-ch-label:has(+ input.vk-ch-control:focus) 
{
    color: #444444;
    font-weight: 400;
}*/

.vk-ch-container 
{
    display: flex;
    border: none;
    min-height: 21px;
    border-bottom: 0.125rem solid #AAAAAA;
    background-color: #F6F6F6;
    border-radius: 5px 5px 0px 0px;
    padding: 2px 5px 2px 5px;
    transition: border-color ease-in-out .25s,box-shadow ease-in-out .25s;
}

.vk-ch-container-required
{
    border-bottom: 0.125rem solid var(--ox_danger);
}

.vk-ch-container-success
{
    border-bottom: 0.125rem solid var(--ox_success);
}


/* Pour les champs spéciaux (ex: d_libelle) */
.vk-ch-container-hide
{
    display: unset;
    border: none;
    border: none;
    background-color: transparent;
    border-radius: none;
    padding: none;
    transition: none;
}

.vk-ch-container-hide .vk-ch-control
{
    background-color: transparent;
}

.vk-ch-ok
{
    border-bottom: 0.125rem solid var(--ox_success);
}


.vk-ch-group 
{
    margin-bottom: 15px;
}


.vk-ch-tag
{
    width: 100%;
    padding-top: 2px;
    min-height: 19px;
}


.vk-ch-group-admin /* Pour le mode admin */
{
    cursor: move;
    border: 1px dashed #ccc;
    border-radius: 4px;    
}

.ma_sortable_placehoder 
{ 
    border: 1px solid #DDDDDD;
    background-color: #DDDDDD;
    border-radius: 15px;
    height: 40px;
    width: 20px; 
    margin-bottom: 10px;
}

.vk-ch-group-admin .vk-ch-label /* Pour le mode admin */
{
    cursor: move;    
}

.vk-ch-aide-container
{
    position: absolute;
    z-index: 999;
    max-width: 250px;
    font-style: normal;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
/*    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;*/
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;    
}

.vk-ch-aide-body 
{
    padding: .5rem .75rem;
    color: #212529;
}

.vk-ch-control-no-flex
{
    border: none;
    background-color: #F6F6F6;
    color: #444444;
}

.vk-ch-control
{
    display: flex !important;
    width: 100%;
    border: none;
    background-color: #F6F6F6;
    color: #444444;
}

.vk-ch-control-main
{
    display: block;
    width: 100%;
    border: none;
    background-color: var(--ox_main);
    color: var(--ox_main_text);
    border-bottom: 0.125rem solid var(--ox_main_text);
}

.vk-ch-control-no-block
{
    width: auto;
}

.vk-ch-control[readonly], .vk-ch-readonly
{
    color: #888888;
    /*border-bottom: 0.125rem solid #AAAAAA;*/
}

.vk-ch-control[disabled], fieldset[disabled] .vk-ch-control 
{
    color: #888888;
    /*border-bottom: 0.125rem solid #EEEEEE;*/
}

.vk-ch-control:focus, .vk-ch-control-main:focus
{
    outline: 0;
/*    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(1, 161, 223, 0.6);*/
}

.vk-ch-control:focus:not(.vk-ch-control[readonly]) 
{
    /*border-bottom: 0.125rem solid #182a3e;*/
    outline: 0;
/*    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(1, 161, 223, 0.6);*/
}

.vk-ch-control::placeholder
{
    color: #AAAAAA;
}

.vk-ch-icon
{
    padding-top: 5px;
    color: #888888;
    /*transition: color ease-in-out .25s*/
}

.vk-ch-icon-click
{
    cursor: pointer;
    color: var(--ox_icon_link);
}

/*.vk-ch-control:focus
{
    background-color: #000000;
}*/

/* Taux - Progress bar */
/*::-moz-progress-bar {
  background-color: red;
}*/

.vk-ch-container input[type="color"]
{
    cursor: pointer;
}


.vk-ch-container progress
{
    width: 100%;
/*    background-color: var(--ox_icon_link);
    border-radius: 5px;
    height: 10px;
*/
}

.vk-ch-container span.progress
{
    color: #888888;
}


/* checkbox - ouinon */
.vk-ch-container input[type="checkbox"]
{
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.vk-ouinon-chk 
{
    display: inline-block;
    position: relative;
    top: 2px;
    left: 0px;
    height: 15px;
    width: 15px;
    margin-right: 5px;
    border: 0.125rem solid #aaaaaa;
    border-radius: 5px 5px 5px 5px;
}

.vk-ch-container:not([readonly="readonly"]):hover input ~ .vk-ouinon-chk 
{
    cursor: pointer;
}

.vk-ch-container:not([readonly="readonly"]) input:checked ~ .vk-ouinon-chk 
{
    cursor: pointer;
}

.vk-ouinon-chk:after 
{
    content: "";
    position: absolute;
    display: none;
}

.vk-ch-container input:checked ~ .vk-ouinon-chk:after 
{
    display: block;
}

/* Style the checkmark/indicator */
.vk-ch-container[readonly="readonly"] .vk-ouinon-chk:after 
{
    left: 4px;
    top: 0px;
    width: 4px;
    height: 9px;
    border: solid #888888;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the checkmark/indicator */
.vk-ch-container:not([readonly="readonly"]) .vk-ouinon-chk:after 
{
    left: 4px;
    top: 0px;
    width: 4px;
    height: 9px;
    border: solid var(--ox_main);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Fichier */
.vk-ch-fichier-drop-area 
{
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
}

.vk-ch-fichier-file-list 
{
    list-style: none;
}

/* Input file */
.vk-input-file
{
    display: none;
}


/* Switch */
.vk-ch-switch > input[type="checkbox"] 
{
    display: none;   
}

.vk-ch-switch > label 
{
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;  
}

.vk-ch-switch > label::before 
{
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}

.vk-ch-switch > label::after 
{
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}

.vk-ch-switch > input[type="checkbox"]:checked + label::before 
{
    background: inherit;
    opacity: 0.5;
}

.vk-ch-switch > input[type="checkbox"]:checked + label::after 
{
    background: inherit;
    left: 20px;
}


/* BU */
.vk-ch-bu
{
    margin: 10px 10px 10px 0px;
    padding: 0;
    list-style:none
}

.vk-ch-bu .bu-root
{
    user-select: none;
}

.vk-ch-bu ul 
{
    margin:0;
    padding:0;
    list-style:none
}

.vk-ch-bu ul 
{
    margin-left:1em;
    position:relative
}

.vk-ch-bu ul ul 
{
    margin-left:.5em
}

.vk-ch-bu ul:before 
{
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid
}

.vk-ch-bu li 
{
    margin:0;
    padding:0 1em;
    line-height:2em;
    color:#182A3E;
    font-weight:700;
    position:relative
}

.vk-ch-bu ul li:before 
{
    content:"";
    display:block;
    width:10px;
    height:0;
    border-top:1px solid;
    margin-top:-1px;
    position:absolute;
    top:1em;
    left:0
}

.vk-ch-bu ul li:last-child:before 
{
    background: #f9f9f9;
    height:auto;
    top:1em;
    bottom:0
}

.vk-ch-bu li span.vk-ch-bu-select 
{
    user-select: none;
    cursor: pointer;
}

.vk-ch-bu li span.vk-ch-bu-name 
{
    padding: 1px 4px 1px 4px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}

.vk-ch-bu li span.vk-ch-bu-name:hover
{
    background-color: #284b72;
    color: #FFFFFF;
}

.vk-ch-bu-enfants
{
    color: #182A3E;    
}

.vk-ch-bu-ec
{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


/* ----- Tree ----- */
.vk-ch-tree
{
    margin: 10px 10px 10px 0px;
    padding: 0;
    list-style:none
}

.vk-ch-tree .tree-root
{
    user-select: none;
}

.vk-ch-tree ul 
{
    margin:0;
    padding:0;
    list-style:none
}

.vk-ch-tree ul 
{
    margin-left:1em;
    position:relative
}

.vk-ch-tree ul ul 
{
    margin-left:.5em
}

.vk-ch-tree ul:before 
{
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid
}

.vk-ch-tree li 
{
    margin:0;
    padding:0 1em;
    line-height:2em;
    color:#182A3E;
    font-weight:700;
    position:relative
}

.vk-ch-tree ul li:before 
{
    content:"";
    display:block;
    width:10px;
    height:0;
    border-top:1px solid;
    margin-top:-1px;
    position:absolute;
    top:1em;
    left:0
}

.vk-ch-tree ul li:last-child:before 
{
    background: #FFFFFF;
    height:auto;
    top:1em;
    bottom:0
}

.vk-ch-tree li span.vk-ch-tree-select 
{
    user-select: none;
    cursor: pointer;
}

.vk-ch-tree li span.vk-ch-tree-name 
{
    padding: 1px 4px 1px 4px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}

.vk-ch-tree li span.vk-ch-tree-name:hover
{
    background-color: #284b72;
    color: #FFFFFF;
}

.vk-ch-tree-enfants
{
    color: #182A3E;    
}

.vk-ch-tree-ec
{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


/* ---------- */

/* Anciens champs + forms */
.control-label 
{
    font-size: 13px;
    font-weight: 400;
}

.form-group 
{
    margin-bottom: 10px;
}

.form-group-admin
{
    cursor: move;
    border: 1px dashed #ccc;
    border-radius: 4px;    
}

.form-group-admin label
{
    cursor: move;    
}


.drop-hover
{
    border: 1px dashed #ff0000;
}

.drop-target
{
    border: 1px dashed #ff0000;
}

.form-control-custom
{
    display: block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control 
{
    background-color: #eee;
    opacity: 1;
}


.form-control 
{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.form-control:focus,.form-control-custom:focus 
{
    border-color: #182a3e;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(1, 161, 223, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(1, 161, 223, 0.6);
}


.form-control::placeholder,.form-control-custom::placeholder
{
    color: #999999;
    opacity: 1;
}


.vk-form-readonly
{
    background-color: #eeeeee;
    opacity: 1;    
}


.input-sm
{
    padding: 1px 5px;
    height: 25px;
    line-height: 1.5;    
}


/* Menus */
.vk-dropdown 
{
    position: relative;
    display: inline-block;
}

.vk-dropdown-right
{
    right: 0;
}


.vk-dropdown-content 
{
    display: none;
    position: fixed;
    background-color: #f9f9f9;
    width: max-content;
    max-width: 350px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 500;

    &.vk-dropdown-content-right
    {
        right: -1px;
    }
}

.vk-dropdown-content-popin
{
    position: fixed;
}

.vk-ch-dropdown-content
{
    /*margin-top: 22px;*/
}


.vk-dropdown-list
{
    max-height: 300px;
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;     
}


.vk-dropdown-content a 
{
    color: #182A3E;
    line-height: 25px;
    padding: 3px 5px 3px 5px;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease-in-out;
}

.vk-dropdown-content a:hover 
{
    background-color: #DDDDDD;
}

/* Pour les informations sans lien dans un menu */
.vk-dropdown-content div.label 
{
    color: var(--ox_main);
    line-height: 25px;
    padding: 3px 5px 3px 5px;
    text-decoration: none;
    display: block;
}

.vk-dropdown-content div.titre
{
    color: var(--ox_main);
    font-size: 1.1rem;
    font-weight: 550;
    letter-spacing: 0.03em;    
    line-height: 25px;
    margin-top: 5px;
    margin-bottom: 2px;
    padding: 3px 5px 3px 5px;
    border-bottom: 1px solid #DDDDDD;
}

.vk-dropdown-content div.divider 
{
    margin-top: 2px;
    margin-bottom: 2px;
    border-top: 1px solid #DDDDDD;
}


/* Choix / Sélection */
.vk-choix a,.vk-selection a,.vk-ch-tag a
{
    line-height: 20px;
}


.vk-choix-valeur-txt, .vk-selection-valeur-txt , .vk-bu-valeur-txt
{
    display: block;
    padding-top: 1px;
    padding-left: 0px; 
    padding-right: 0px;
    width: calc(100% - 20px);    
    min-height: 18px;
}

.vk-choix-valeur-txt[placeholder]:empty::before,
.vk-selection-valeur-txt[placeholder]:empty::before  
{
    content: attr(placeholder);
    color: #CCCCCC;
}

.vk-choix-chevron, .vk-selection-chevron
{
    /*position: relative;
    top: -20px;*/
}

.vk-choix-selected, .vk-selection-selected, .vk-tag-selected
{
    font-weight: 650;
}


.selection-multiple.vk-selection-selected
{
    font-weight: unset;
}

.choix-multiple.vk-choix-selected
{
    font-weight: unset;
}


.selection-multiple:before
{
    font-family: FontOxiva;
    content: "\e92a";
    margin-right: 10px;
}

.selection-multiple.vk-selection-selected:before
{
    font-family: FontOxiva;
    content: "\e929";
    margin-right: 10px;
}


.vk-bu-valeur-txt img
{
    position: relative;
    top: -2px;
    height: 20px !important;
}


.choix-multiple:before
{
    font-family: FontOxiva;
    content: "\e92a";
    margin-right: 10px;
}


.choix-multiple.vk-choix-selected:before
{
    font-family: FontOxiva;
    content: "\e929";
    margin-right: 10px;
}


.vk-choix-multiple-clear, .vk-selection-multiple-clear
{
    border-bottom: 1px solid #DDDDDD;
}




/* bs ancien style */
.dropdown-menu 
{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}


/* ---------- Dialogues ---------- */
#OXIVA_OVERLAY 
{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}


.vk-dialog-box 
{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    margin: 50px auto;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation-duration: 0.4s;
    outline: none;    
}

.vk-dialog-box-in
{
    animation-name: animatetop;    
}

.vk-dialog-box-out
{
    animation-name: animatetop-out;
}

@keyframes animatetop 
{
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@keyframes animatetop-out 
{
    from {top: 0; opacity: 1}
    to {top: -300px; opacity: 0}
}

.vk-dialog-box-small
{
    width : 300px;
}

.vk-dialog-box-medium
{
    width : 500px;
}

.vk-dialog-box-large
{
    width : calc(50%);
}

.vk-dialog-box-xl
{
    width : calc(80%);
}

.vk-dialog-box-extra
{
    width : calc(100% - 50px);
}

.vk-dialog-box-header
{   
    margin: 0px;
    border: 1px solid transparent;    
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.vk-dialog-box-header h2
{
    margin: 0px;
    padding: 10px 10px 10px 10px;
    font-size: 18px;
    font-weight: 500;
}

.vk-dialog-box-card
{
    background-color: #ffffff;   
}

.vk-dialog-box-info
{
    color: var(--ox_main_text);
    background-color: var(--ox_main);
}

.vk-dialog-box-question
{
    color: var(--ox_main_text);
    background-color: var(--ox_main);
}

.vk-dialog-box-warning
{
    color: var(--ox_warning_text);
    background-color: var(--ox_warning);
}

.vk-dialog-box-danger
{
    color: var(--ox_danger_text);
    background-color: var(--ox_danger);
}

.vk-dialog-box-admin
{
    color: var(--ox_admin_text);
    background-color: var(--ox_admin);
}

.vk-dialog-box-body
{
    padding: 10px 5px 10px 5px;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    height: auto;
    max-height: ~"calc(100dvh - 250px)";
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;    
}

.vk-dialog-box-max-body
{
    padding: 0px;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    height: ~"calc(100dvh - 250px)";
    max-height: ~"calc(100dvh - 150px)";
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;
}

.vk-dialog-box-body-card
{
    padding: 0px 5px 10px 5px;
}

.vk-dialog-box-body-no-overflow
{
    overflow-y: unset !important;
}

.vk-dialog-box-footer
{
    padding: 5px 5px 5px 5px;
    background-color: #ffffff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;    
}

.vk-dialog-box-footer button
{
    margin-left: 10px;
}

.vk-dialog-box-max-height-body
{
    height: ~"calc(100dvh - 250px)";
    max-height: ~"calc(100dvh - 250px)";
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;    
}


.vk-dialog-box-popin-body
{
    padding: 0px;
    background-color: var(--ox_bg);
    border-bottom: none;
    height: ~"calc(100dvh - 250px)";
    max-height: ~"calc(100dvh - 250px)";
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;          
}

.vk-dialog-box-popin-footer
{
    padding: 0px; 
}



/* ---------- Cards ---------- */
.card
{
    background-color: #FFFFFF;
    color: #182A3E;
    border: 1px solid transparent;
    border-radius: 15px;
    padding: 15px 15px 15px 15px;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.card-list
{
    background-color: #FFFFFF;
    color: #182A3E;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 15px 15px 15px 15px;  
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.card-list-selected
{
    border: 1px solid #284b72 !important;
}

.card-list:focus
{
    border: 1px solid #284b72;
    outline: none;
}

.card-padding-thin
{
    padding: 5px 5px 5px 5px;  
}

.card-no-margin
{
    margin-bottom: 0px;
}

.card-title
{
    font-size: 1.1em;
    letter-spacing: 0.05em;
    font-weight: 500;    
}

.card-subtitle
{
    font-size: 0.9em;
}

.card-header
{
    font-size: 1.3em;
    font-weight: 500;
    margin: 0px 0px 15px 0px;    
}

.card-header-panel
{
    font-size: 1em;
    /*font-weight: 500;*/
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
    margin: 0px 0px 15px 0px;    
}

.card-body
{
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll);
    scrollbar-width: thin;     
}


.card-body-title_h100-no_nav
{
    height: calc(100dvh - 165px);
}


.card-body h4
{
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0px 15px 0px;
}

.card-footer
{
    
}

.card-border
{
    border: 1px solid #dddddd;    
}

.card-hover:hover
{
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--ox_main);
}

.card-shadow
{
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}


/* ---------- sCards ---------- */
.scard
{
    color: #182A3E;
    border: 1px solid #DDDDDD;
    border-radius: 15px;
    padding: 10px 10px 10px 10px;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}


/* ---------- Cadre ---------- */
.vk-cadre
{
    position: absolute;
    z-index: 995;
    max-width: 250px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    padding: 5px;
    border-radius: 5px;    
}


/* ---------- Nav ---------- */

/* Page */
.vk-pg-link
{
    display: block;    
    background: 0 0;
    border: 0;
    border-radius: 5px;
    padding: 5px;

    margin: 10px 0px;
    max-width: 100%;
    width: 100%;
    text-align: left;    

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    background-color: var(--ox_tab_bg);
    color: var(--ox_tab_text);
    transition: all 0.4s ease-in-out;
}

.vk-pg-link.active
{
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
    /*border-color: var(--ox_nav_active);    */
}

.vk-pg-link:hover
{
    cursor: pointer;
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
    /*border-color: var(--ox_nav_active);     */
}

.vk-pg-divider
{
    border: 0;
    border-top: 1px solid #DDDDDD;    
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.8;    
}

.vk-pg-mobile-link
{
    background: 0 0;
    border: 0;
    border-radius: 8px;
    padding: 2px;
    color: var(--ox_panel_text);   
    flex: 1;
    text-align: center;     
    transition: all 0.4s ease-in-out;
}

.vk-pg-mobile-link.active 
{
    background-color: var(--ox_nav_active);
    border-color: var(--ox_nav_active);
    border-radius: 8px;
}

#oxiva-mobile_header_titre
{
    font-size: 1.2em;
    padding: 2px;    
    background-color: var(--ox_panel_bg);
    color: var(--ox_panel_text);   
    text-align: left;
}


/* Nav */
.vk-nav
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: #FFFFFF;
    /*padding-top: 10px;*/
}


/*.vk-nav-title
{
    text-align: center;
    font-size: 1.2em;
    font-weight: 400;
}*/


.vk-nav-link-v
{
    display: block;    
    background: 0 0;
    border: 0;
    border-radius: 5px;
    padding: 5px;

    max-width: 100%;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    background-color: #FFFFFF; /*var(--ox_tab_bg);*/
    color: var(--ox_tab_text);
    transition: all 0.4s ease-in-out;

    margin: 5px 0px;
    width: 100%;
    text-align: left;    
}

.vk-nav-link-v.active
{
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
}

.vk-nav-link-v:hover
{
    cursor: pointer;
    color: var(--ox_nav_text);
    background-color: var(--ox_nav_active);
}


.vk-nav-link-h
{
    display: block;    
    /*background: 0 0;*/
    border: 0;
    padding: 5px;

    max-width: 100%;

/*    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/

    background-color: #FFFFFF;
    color: var(--ox_tab_text);
    transition: all 0.4s ease-in-out;

    border-bottom: 1px solid transparent;
    margin: 0px 5px;    
}

.vk-nav-link-h.active
{
    color: var(--ox_tab_text);
    border-bottom: 1px solid var(--ox_nav_active);
}

.vk-nav-link-h:hover
{
    cursor: pointer;
    color: var(--ox_tab_text);
    border-bottom: 1px solid var(--ox_nav_active);
}


.vk-nav-link-v[disabled],.vk-nav-link-h[disabled]
{
    cursor: not-allowed;
    color: var(--ox_table_text_disabled);
}



.vk-tab-content > .vk-tab-pane 
{
    display: none;
    height: calc(100dvh - 120px);
}

#popin-container .vk-tab-content > .vk-tab-pane 
{
    height: 100%;
}

.vk-tab-content > .active 
{
    display: block;
}



/* ---------- Eléments ---------- */
.pge
{
}


/* ---------- Listes - Tables ---------- */
div.table-container
{
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 200px;
}

span.table-titre
{
    font-size: 1.1em;
    font-weight: 500;
}

div.table-options
{
    margin-bottom: 5px;
}

div.table-options span
{
    /*margin-left: 10px;*/
    /*line-height: 20px;*/ /* POse pb avec les badges dans le menu des vues  */
}

table > tbody > tr.border-bottom > td 
{
    border-bottom: 1px solid #dddddd;    
}

table.table
{
    width: 100%;
    /*border-collapse: collapse;*/
    margin: 0;
    border-spacing: 0;
}

table.table-bordered-top
{
    border-top: 1px solid #dddddd;
}

table.table-bordered-bottom > tbody > tr > td 
{
    border-bottom: 1px solid #dddddd;
}

/*table.table-bordered-bottom > tbody > tr:last-child > td
{
    border-bottom: none;
}*/

table.table > thead > tr > th, 
table.table > tbody > tr > td,
table.table > tfoot > tr > td
{ 
    padding: 1px 5px 1px 5px;
}

table.table > thead
{
    display: table;
    width: 100%;
    table-layout: fixed;    
}

table.table > thead > tr > th 
{ 
    text-align: center;
    vertical-align: middle;
    position: sticky;
    top: 0;
    color: var(--ox_table_header_text);
    background-color: var(--ox_table_header);
}

table.table > thead > tr > th
{
    border-left: 1px solid #dddddd;
}

table.table > thead > tr > th:first-child
{ 
    border: 1px solid transparent;
    border-top-left-radius: 5px;
}

table.table > thead > tr > th:last-child
{ 
    border: 1px solid transparent;
    border-top-right-radius: 5px;
    border-left: 1px solid #dddddd;    
}

table.table > tbody
{
    display: block;
/*    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;*/
    overflow-y: auto;    
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;     
}



table.table-no-overflow > tbody
{
    overflow-y: unset;
}

table.table-100 > tbody
{
    min-height: 200px;
    max-height: calc(100dvh - 210px);
}

table.table-70 > tbody
{
    max-height: calc(100dvh * 0.70);    
}

table.table-50 > tbody
{
    min-height: 200px;
    max-height: calc((100dvh - 290px) / 2 )
}

table.table-33 > tbody
{
    max-height: calc(((100dvh - 305px) / 3) - 45px);
}


table.table > tbody > tr, table.table > tfoot > tr
{
    display: table;
    width: 100%;
    table-layout: fixed;    
}

table.table > tbody > tr > td:first-child 
{
    border-left: 1px solid #dddddd;
}


table.table > tbody > tr > td
{
    border-right: 1px solid #dddddd;
}

/*table.table > tbody > tr > td:last-child 
{
    border-right: none;
}*/

table.table > tbody > tr.table-more-rows > td
{
    cursor: cell;
    background-color: #dddddd;
}

table.table > tbody > tr.table-tr-disabled > td
{
    color: var(--ox_table_text_disabled);
}

table.table > tfoot > tr > td
{
    position: sticky;
    border: 1px solid transparent;
    bottom: 0;
    border-left: 1px solid #dddddd;
    color: var(--ox_table_header_text);
    background-color: var(--ox_table_header);
}

table.table > tfoot > tr > td:first-child
{
    border: 1px solid transparent;
    border-bottom-left-radius: 5px;      
}

table.table > tfoot > tr > td:last-child
{
    border: 1px solid transparent;
    border-bottom-right-radius: 5px;   
    border-left: 1px solid #dddddd;  
}

table.table > tfoot > tr.border-bottom > td
{
    border-bottom: 1px solid #dddddd;    
}

table.table > tfoot > tr > td.no-radius
{
    border-bottom-right-radius: 0px;   
    border-bottom-left-radius: 0px;
}

table.table > tfoot > tr > td.left-radius
{
    border: 1px solid transparent;
    border-left: 1px solid #dddddd;    
    border-bottom-left-radius: 5px;      
}

table.table > tfoot > tr > td.border-bottom
{
    border-bottom: 1px solid #dddddd;    
}

table.table-hover > tbody > tr
{
   transition: background-color ease-in-out 0.25s 
}

table.table-hover > tbody > tr:hover 
{
    background-color: rgba(0,0,0,.075);
}

table.table-click tbody > tr > td
{
    cursor: pointer;
}

table.table-no-border tbody > tr > td
{
     border: 0px;
}

table.table-no-border > tbody > tr > td:last-child 
{
    border-right: 0px;    
}

table.table > tfoot > tr > td > input
{
    display: block;
    width: 100%;
    border: 0px;
    color: var(--ox_table_header_text);
    background-color: var(--ox_table_header);
}

table.table > tbody > tr.tr-section > td
{
    font-weight: 550;
    background-color: rgba(0,0,0,.075);
}

.table-col-filter-ch
{
    margin-bottom: 2px;
}

/*.col-resizable
{
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;    
}

.col-resizable:hover
{
    background-color: var(--ox_link);
    cursor: col-resize;    
}*/

.col-option
{
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.col-option:hover
{
    color: var(--ox_link);
}


/* ---------- Formulaires ---------- */
.pge_form
{
    border-collapse: separate;
    border-spacing: 0;    
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.pge_form > thead
{
    display: none;
}

.form
{
    width: 100%;
}

.pge_form_menu
{
    vertical-align: top;
}


.pge_form_zone_menu 
{
    background-color: #FFFFFF;
    color: #182A3E;
    border: 1px solid transparent;
    border-radius: 15px;
    padding: 10px 0px 10px 0px;
    margin-left: 0px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}


.pge_form_zone_menu i 
{
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}


/* Provisoire - Saisie des docs */
#fil_txt
{
    margin-bottom: 10px;
}

.lien_fil
{
}

.lien_fil:hover
{
    cursor: pointer;
}




/* ---------- Grid system ---------- */
.container-fluid,
.container 
{
    margin-right: auto;
    margin-left: auto;
}

.container-fluid 
{
    padding-right: 2rem;
    padding-left: 2rem;
}

.row 
{
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
    align-content: start;
}

.row-no-ident
{
    margin-left: -5px;
    margin-right: -5px;
}

.row.reverse 
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.col.reverse 
{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 
{
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.col-xs 
{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}


@media only screen and (min-width: 48em) 
{
    *
    {
        font-size: 12px;
    }

  .container 
  {
    width: 49rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) 
{

    *
    {
        font-size: 13px;
    }

  .container {
    width: 65rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) 
{
    *
    {
        font-size: 14px;
    }


  .container 
  {
    width: 76rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}


/* ---------- Loaders ---------- */
/* Points */
.vk-loader 
{
    position: relative;
    width: 80px;
    height: 10px;
    margin-left: auto;
    margin-right: auto;  
}

.vk-loader div 
{
    position: absolute;
    /*top: 33px;*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ox_main);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.vk-loader div:nth-child(1) 
{
    left: 8px;
    animation: vk-loader1 0.6s infinite;
}

.vk-loader div:nth-child(2) 
{
    left: 8px;
    animation: vk-loader2 0.6s infinite;
}

.vk-loader div:nth-child(3) 
{
    left: 32px;
    animation: vk-loader2 0.6s infinite;
}

.vk-loader div:nth-child(4) 
{
    left: 56px;
    animation: vk-loader3 0.6s infinite;
}

@keyframes vk-loader1 
{
    0% {transform: scale(0); }
    100% { transform: scale(1); }
}
@keyframes vk-loader3 
{
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}
@keyframes vk-loader2 
{
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}


/* Circulaire */
.lds-ring 
{
  /*display: inline-block;*/
    position: relative;
    margin-left: auto;
    margin-right: auto;   
    width: 50px;
    height: 50px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 45px;
  height: 45px;
  margin: 2px;
  border: 2px solid var(--ox_main);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--ox_main) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Provisoire  - Liste recherche */
/*#liste_recherche
{
    display: none;
    position: absolute;
    left: 34px;
    top: 23px;
    min-width: 300px;
    max-width: 400px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 5px;
    padding-top: 5px;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll);
    scrollbar-width: thin;
    font-size: 13px;
}*/


/* ---------- Select2 - provisoire */
select.input-sm
{
    height: 25px;
    line-height: 25px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]
{
/*    color: @theme_foreground;
    background-color: @theme_color;*/
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]
{
/*    color: @theme_foreground;
    background-color: @theme_color;*/
}


.select2-container--bootstrap .select2-results__option[aria-selected=true]
{
  background-color: #f5f5f5;
  /*color: @theme_color;*/
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection
{
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(1, 161, 223, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(1, 161, 223, .6);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    /*border-color: @theme_color;*/
}

.select2-container--bootstrap .select2-dropdown
{
    -webkit-box-shadow: 0 6px 12px rgba(1, 161, 223, .6);
    box-shadow: 0 6px 12px rgba(1, 161, 223, .6);
    /*border-color: @theme_color;*/
    overflow-x: hidden;
    margin-top: -1px;
}

.select2-dropdown
{
  z-index: 10000;
}

.select2-container
{
    width: 100% !important;
}


.select2-container .select2-selection--single
{
    height: 25px;
}


/* ---------- Blocks & Panels & Cards -------------------------------------------------------------------------------------------------- */
/*.panel-body h1.xyz-titre
{
    color: @xyz_panel_title_text;
    font-size: 50px;
}

.panel-body h3.xyz-titre
{
    color: @xyz_panel_title_text;
}*/

.xyz-panel-fixed-height
{
    /*min-height: 300px;*/
}

.xyz-card .panel-body
{
    padding: 5px;
}

/*.panel-default > .panel-heading
{
    background-color: @xyz_panel_title;
    border-color: @xyz_panel_title;
    padding: 5px 5px 10px 5px;
}

.panel-title
{
    color: @xyz_panel_title_text;
    font-weight: 600;
}*/

.panel-body
{
    padding: 10px;
}

.panel
{
    background-color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 3px 3px 5px rgba(96, 96, 96, 0.3);
    margin-bottom: 20px;
}

.panel-default
{
    border-color: 1px solid 888888;
}

.panel-vk
{
    border: 1px solid #F2F2F2;
}

.panel-vk > .panel-heading
{
    background-color: var(--oxiva_main);
    border-color: var(--oxiva_main_text);
    padding: 5px 5px 10px 5px;
}

.panel-vk > .panel-heading > .panel-title
{
    color: var(--oxiva_main_text);
}

.table-panel
{
    width: 100%;
}

.table-panel td
{
    padding-left: 5px;
    padding-right: 5px;
}

#xyz_historique .xyz-card
{
    line-height: initial;
    margin-top: 10px;
    margin-bottom: 0px;
}

#xyz_historique .xyz-card span
{
    /*padding: 2px;*/
}

#xyz_historique .xyz-card .histo-texte
{
    font-size: 1em;
}

#xyz_historique .xyz-card .histo-heure
{
    font-size: 0.8em;
}



/* Gestion directe */
img.catalogue
{
    object-fit: contain;
    max-height: 100px;
    width: 50%;
    /*max-width: 400px;*/
    /*height: auto;*/
}


/* Page avec side panel */
#pg-container
{
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
    overflow-x: hidden;
    /*flex-direction: row;*/
}


#pg-side-panel-mobile
{
    display: none;
}    


#pg-nav-content
{
    width: 100%;
}


#pg-content
{
    /*margin: 15px 15px 0px 15px;*/
    margin: 15px 0px 0px 15px;
    padding-right: 10px;        
}


/* Bouton srcoll page */
#pg-scroll-indicator
{
    display:none; 
    position: fixed; 
    padding: 5px;
    bottom: 10px; 
    right : 10px;
    color: #FFFFFF;
    background-color: #284b7250;
    border: 1px solid transparent;
    border-radius: 25px;    
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    z-index: 999;
}


/* Note rapide */
#note-rapide
{
    position: fixed; 
    padding: 10px;
    bottom: 55px; 
    right : 10px;
    color: #888888;
    background-color: #F3E77990;
    border: 1px solid transparent;
    border-radius: 25px;    
    transition: all 0.4s ease-in-out;
    z-index: 995;
}

#float_note_close
{
    margin-top: 3px;
    margin-right: 3px;
}


#note-rapide-note input
{
    display: block;
    width: 100%;
    background-color: #F3E77960;
    color: #555555;
    font-size: 12px;
    line-height: 1.5;
    border: none; 
    border-width: 0; 
    box-shadow: none;
    border-bottom: 1px solid #888888;    
}

#note-rapide-note textarea
{
    margin-top: 5px;
    resize: none;
    display: block;
    width: 100%;    
    height: 90px;
    background-color: #F3E77960;
    color: #555555;   
    font-size: 12px;
    line-height: 1.5;
    border: none; 
    border-width: 0; 
    box-shadow: none;
    border-bottom: 1px solid #888888;
    margin-bottom: 5px;    
}

#note-rapide-note  input:focus, #note-rapide-note textarea:focus, #note-rapide-note select:focus
{
    outline: none;
    border-bottom: 1px solid #555555;
}

#bt_note_rapide_ok
{
    cursor: pointer;
}


#pg-side-panel
{
    position: relative;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    transition: all 0.4s ease-in-out;
    background-color: #FFFFFF;
    padding: 0px 5px 5px 5px;
}

#pg-side-panel-elements
{
    padding-top: 5px;
}


#pg-side-panel-mobile
{
    position: sticky;
    transition: all 0.4s ease-in-out;
    background-color: var(--ox_panel_bg);
    text-align: center;
    flex-shrink: 0;
    top: 0;
    z-index: 10;
}

#pg-side-panel-mobile-page
{
    width: calc(100dvw);
    display: flex;
    align-items: center;
    margin-top: 5px;    
}


.popin-side-panel-header
{
    color: #182A3E;
    font-size: 1.3em;
    margin: 0px 0px 15px 0px;    
}

.popin-side-panel-header i
{
    position: relative;
    top: 3px;
}

#lbl_pg_side_panel
{
    font-size: 0.9em;
}


.pg-side-panel-collapsed
{
    width: 50px !important;
    text-align: center;
}


.pg-side-panel-collapsed *.pg-sp-hide:not(.pg-side-panel-action span)
{
    display: none;
}


.pg-side-panel-action
{
    display: block;
    min-height: 23px;
    padding-bottom: 5px;
}


.pg-side-panel-action span 
{
    display: inline-block;       
    width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;    
    top: 4px;
}

.pg-side-panel-action a
{
    color: var(--ox_icon_link);
}

.pg-side-panel-action a:hover i
{
    color: var(--ox_icon_link_hover);
    transform: scale(1.2);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.20);
    cursor: pointer;
}

.pg-side-panel-action a.fo-lien-success:hover i
{
    color: var(--ox_success);
}

.pg-side-panel-action a.fo-lien-danger:hover i
{
    color: var(--ox_danger);
}


/* Popin avec side panel */
#popin-container
{
    display: flex;
    align-items: stretch;
    height: 100%;
}


#popin-content
{
    margin: 15px 10px 15px 10px;
    width: 100%;
}


#popin-side-panel
{
    width: 250px;
    background-color: var(--ox_panel_text);
    color: var(--ox_panel_bg);
    padding: 5px;
    border: 1px solid transparent;
    border-bottom-left-radius: 5px;    
}


/* Test kanban */
.ka_board
{   
    list-style-type: none; 
    margin: 0;
    float: left;
    display: flex;
    flex-direction: row;
    padding: 0px;
    height: 100%;
}


.ka_board > li 
{
    display: block;
    align-self: flex-start;
    padding: 0px;
    height: 100%;
}


ol.ka_etape
{
    padding: 0px;
    margin: 0px;
    margin-right: 10px;
    width: 250px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

ol.ka_etape > li
{
    display: block;
    padding: 0px;
}

ol.ka_etape.zoom > li
{
    display: inline-flex;
    margin-right: 10px;
    width: 20%;
}

ol.ka_etape.x2 > li
{
    display: inline-flex;
    /*margin-right: 10px;*/
    width: 43%;
}

ol.ka_etape.x2 > li:nth-child(even) /* Uniquement un objet sur 2 */
{
    margin-right: 10px;
}

.ka_etape_titre
{
    position: sticky;
    top: 0;
    z-index: 1;    
    background-color: #FFFFFF;
    color: #182A3E;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 1.1em;    
    font-weight: 600;
}

.ka_item
{
    background-color: #FFFFFF;
    color: #182A3E;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px !important;
    margin-bottom: 10px;    
}

.ka_etape_placeholder 
{ 
    border: 1px solid #DDDDDD;
    background-color: #DDDDDD;
    width: 50px;
    height: 100%;
    border-radius: 15px;
    height: 40px; 
    margin-right: 10px;
    margin-bottom: 10px;
}

.ka_item_placeholder 
{ 
    border: 1px solid #DDDDDD;
    background-color: #DDDDDD;
    border-radius: 15px;
    height: 40px; 
    margin-bottom: 10px;
}


/* Tableau de bord service client */
span.tdb 
{
    font-size: 1.8em; 
}

table.tdb
{
    width: 100%;
}

table.tdb td
{
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 5px;
}

table.tdb td
{
    font-size: 1.2em;
}

div.tdb-bloque,div.tdb-bloque *
{
    background-color: var(--ox_danger);
    color: var(--ox_danger_text);
}


/* Devis */
tr.devisl_sous_total
{
    background-color: #DDDDDD;
}

tr.devisl_option
{
    background-color: #ddf2fb;
}

div.cdevisl_note_reduit
{
    max-height: 100px;
    overflow-y: auto;
    scrollbar-color: var(--ox_scroll_select) var(--ox_scroll); 
    scrollbar-width: thin;  
}


/* Tickets */
.sticket_activite_en_cours
{
    border-left: 5px solid #182a3e !important;    
}


/* Cartes */
.leaflet-container 
{
    touch-action: pan-x pan-y;
}

.leaflet-control-attribution.leaflet-control svg
{
    display: none !important;
}

.leaflet-top, .leaflet-bottom
{
    z-index: 400;
}


/*** Spinner ***/

.oximail_spinner
{
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: inherit;
    z-index: 999;

    .fo-spinner
    {
        top: 50%;
        left: 50%;
        position: absolute;
    }
}


/* Widget Aujourd'hui */
.today-container 
{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    align-items: center; /* Centre les éléments horizontalement */
    text-align: left; /* Centre le texte */
}

a.today 
{
    position: relative;
    display: inline-block;
    min-width: 70px;
    max-width: 70px;
    top: -10px;
    padding: 10px 20px;
    font-size: 20px;
    margin-left: 90px;
    position: relative;
    color: #FFFFFF;
    background: #DDDDDD;
    border: 1px transparent;
    border-left: none;
    border-radius: 0 15px 15px 0;
    z-index: 1;
}

a.today:hover
{
    color: #FFFFFF;
}

a.today:before 
{
    content: " ";
    position: absolute;
    display: block;
    width: 55%;
    height: 100%;
    top: 0px;
    right: 100%;
    z-index: -1;
    
    background: inherit;
    border-bottom: 1px transparent;
    border-left: 1px transparent;
    border-top: 1px transparent;
    
    transform-origin: bottom right;
    -ms-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
}

.today-titre
{
    transform: rotate(-60deg);
    position: relative;
    white-space: nowrap;
    font-size: 1.4em;
    bottom: -35px;
    left: -69px;
}


.today-icon
{
    position: relative;
    /*top: 10px;*/
    left: 20px;
}


.today-ind
{
    position: relative;
    left: -30px;
    font-size: 2em;
    font-weight: 600;
}

.detail
{
    position: absolute;
    transition: all 0.4s ease-in-out;
    z-index: 100;
    top: 145px;
    left: 0px;
}



/* gridstack */
.grid-stack 
{  
}

.grid-stack-item-content 
{ 
    background-color: #FFFFFF; 
    border-radius: 15px;
    padding: 10px;
}


#devis_detail > tbody > tr > td.ui-sortable-handle
{
    cursor: move;
}

input.cdevisl_com_interne
{
    background-color: #DDDDDD; 
}


/* Marketing */
.strike
{
    text-decoration: line-through;
}



/* Timeline - Frise */
.vk-timeline 
{
    display: flex;
    gap: 8px;
}

.vk-timeline-step
{
    position: relative;
    z-index: 1;
    padding: 12px 24px;

    background: var(--bg-color, #777);
    color: var(--text-color, #fff);

    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0 100%,
        20px 50%
    );

    /* variables */
    --border-size: 3px;
    --border-color: transparent;
}

/* Bordure */
.vk-timeline-step::before
{
    content: "";
    position: absolute;
    inset: calc(-1 * var(--border-size));
    z-index: -1;

    background: var(--border-color);
    clip-path: inherit;

    transition: all 0.5s ease;
}

/* Hover → utilise variable */
.vk-timeline-step:hover
{
    --border-color: var(--hover-border-color, transparent);
}

/* Actif → utilise variable */
.vk-timeline-step.is-active
{
    user-select: none;
    --border-color: var(--active-border-color, transparent);
}