/*
* Fichier template
* Regroupe toutes les balises par défaut modifier pour le projet RSCAN
*/

/*---------------
--- CONTAINERS
----------------*/
.force-center {
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
}
.width-100 {
    width: 100px;
}
.width-200 {
    width: 200px;
}
.width-300 {
    width: 300px;
}
.width-500 {
    width: 500px;
}
#padding-page {
    padding: 15px 30px;
}

/*----------------
--- NAVIGATION
----------------*/
.btn-nav-sidebar {
    font-family: var(--font-text);
    display: block;
    padding: 15px 20px;
    margin-bottom: 1px;
    font-weight: bold;
    font-size: 15px;
    transition-duration: 300ms;
    border-bottom: 1px solid transparent;
}
.btn-nav-sidebar:hover {
    border-bottom: 1px solid var(--b-opacity-10);
}
.btn-nav-sidebar_active {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}
.btn-nav-sidebar-back {
    font-family: var(--font-text);
    display: block;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
    transition-duration: 300ms;
    transform-origin: bottom;
    border-bottom: 2px solid var(--primary);
}
.btn-nav-sidebar-back:hover {
    letter-spacing: 0.1em;
    background-color: var(--primary);
    color: var(--background);
}

.btn-nav-sidebar-mobile {
    display: block;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 1px;
    transition-duration: 300ms;
}
.btn-nav-sidebar_active-mobile {
    color: #FFFFFF;
    background-color: var(--primary);
}
/*----------------
--- PAGES
----------------*/
#login-page {
    background-image: url("../img/login_background.jpg");
    background-size: cover;
}
#dashboard .entry-header {
    padding: 30px;
}
#dashboard .entry-header h2{
    margin-top: -10px;
    font-size: 16px;
}

/*----------------
--- TEMPLATES
----------------*/
#template-page {
    display: flex;
    overflow-x: hidden;
}
#template-content {
    background-color: var(--background);
    width: 100%;
}
/* --- Template-nav (desktop) ---*/
#template-nav {
    background-color: var(--background-01);
    max-width: 300px;
    min-width: 300px;
    width: 300px;
    border-right: 2px solid var(--b-opacity-10);
}
#template-nav .entry-footer {
    border-top: 3px solid var(--background);
    padding: 10px 20px;
}
#template-nav .entry-footer h3 {
    font-weight: bold;
    font-size: 14px;
}
#template-nav .entry-footer p {
    font-size: 13px;
    color: var(--gray);
}
#template-nav .entry-synchronise {
    border-top: 3px solid var(--background);
    padding: 10px 20px;
}
#template-nav .entry-progress {
    border-top: 3px solid var(--background);
    padding: 10px 20px;
}
#template-nav .entry-progress .progressBar_container {
    display: block;
    padding: 3px;
    background-color: var(--b-opacity-10);
    border-radius: 5px;
}
#template-nav .entry-progress .progressBar_container .progressBar_item {
    position: relative;
    padding: 7px;
    border-radius: 2.5px;
    background-color: var(--primary);
}
#template-nav .entry-header {
    border-bottom: 3px solid var(--background);
    padding: 10px 20px;
}
/*----------------
--- TEXTES
----------------*/
* {
    font-family: var(--font-title);
}
h1 {
    font-size: 30px;
    font-weight: bold;
}
h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

/*----------------
--- TEXTFIELDS
----------------*/
input[type="select"], select {
    -webkit-appearance: none;
}



/*----------------------
---- RESPONSIVE
-----------------------*/
#template-page_mobile {
    display: flex;
    flex-direction: column;
}
#template-page_mobile #template-nav_mobile {
    background-color: var(--background-01);
    width: 100%;
    border-bottom: 2px solid var(--b-opacity-10);
    padding: 10px 25px;
}
#template-page_mobile #container_nav_mobile {
    position: absolute;
    background-color: var(--background);
    box-shadow: 0 10px 15px var(--b-opacity-30);
    margin-top: 10px;
    margin-left: -25px;
    width: 100%;
    padding: 30px;
    z-index: 1;
}

