/*Général*/

.intertitre{
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #c9c9c9;
    color:#2E2E2E;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1.7rem;
}

.legende{
    font-size: 1.3rem;
}


.col{
    display: flex;
}

.col div{
    flex:1;
    margin-right: 1.5rem;
}

.svg-icon circle,
.svg-icon path,
.svg-icon polygon
{
    fill: none;
    stroke: #ffffff;
    stroke-width: 1;
    stroke-miterlimit: 10;
}

#changeDate{
    width: 30%;
    padding: 0.55rem 1.2rem;
    border-radius: 2.5rem;
    font-weight: bold;
    min-width: 9.8rem;
}

/*Dashboard home variation data*/

.dashboardVarUp,
.dashboardVarDown,
.dashboardVarStable{
    margin-top: 0.5rem;
    font-weight: bold;
}

.dashboardVarUp{
    color: #3BB273;    
}

.dashboardVarDown{
    color: #E15554; 
}

.dashboardVarStable{
    color: #00BFB2;
}

/* Container */

.pageContainer{
    background-color: #ffffff; 
}

.pageContainerDashboard{
    margin: 3rem 2rem;
}

@media (min-width: 68rem) {
    .pageContainerDashboard {
        margin: 4rem 4rem 1rem;
    }
}

.graphContainer{
    height: 400px;
    padding-bottom: 4rem;
}

/* Tab navigation */

.ui-widget.ui-widget-content,
.ui-widget-header{
    border:0;
    background:#ffffff;
}

.ui-tabs,
.ui-tabs .ui-tabs-nav{
    padding:0;
    margin: 0;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover{
    border:0;
    background: #29353a;
}

#tabs ul {
    border-bottom: 1px solid #c9c9c9;
    background-color: #efefef;
}

/* Data Top Graph */

.dataTop{
    border-bottom: 1px solid #dedede; 
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}

.dataTop h2{
    font-size: inherit;
    text-transform: inherit;
    margin-bottom: 1.2rem;
}

.dataTop h3{
    margin-top: 1.8rem;
    padding-bottom: 0.2rem;
}

.bigNumber{
    font-size: 2.6rem;
    font-weight: 500;
}

/*Mes points de charge*/

.siteEncart{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 20px;
    margin: 3rem 0;
}

@media (max-width: 68rem) {
    .siteEncart{
        grid-template-columns: auto;
    }
}

.siteEncart .bigNumber{
    font-weight: normal;
    color: #2E2E2E;
    font-size: 1.8rem;
}

.siteInfos{
    background-color: #ffffff;
    padding: 3rem;
    flex: 1;
}

.siteInfos img {
    overflow: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.siteItem {
    display: grid;
    grid-template-columns: 11rem auto;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.siteBornes{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    grid-gap: 20px;
}

.siteBornes > div{
    padding: 3rem 3rem;
    background-color: #ffffff;
}


.borneName{
    font-weight: bold;
    font-size: 2rem;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
}

.libre,
.horsService,
.enAttente,
.enCharge,
.enErreur
{
    margin: 2rem 0;
}

.libre::before,
.horsService::before,
.enAttente::before,
.enCharge::before,
.enErreur::before
{
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-right: 0.6rem;
}

.libre::before {
    background: #b3d143;
}

.enCharge::before,
.enAttente::before,
{
    background: #ea9010;
}

.horsService::before {
    background: #7C9299;
}

.enErreur::before {
    background: #E15554;
}

/*Menu sidebar*/

.menuSidebar svg{
    margin: 1.3rem;
    stroke: #AEB7C2;
    fill: none;
    stroke-width: 1;
    stroke-miterlimit: 10;
}

.niv1 a.active svg path{
    stroke: #b3d143;
    fill: none;
}

.menuSidebar li:last-of-type{
    margin-top: 2rem;
}

/*Page demande de badge*/

.blocTypeBadge{
    background-color: #ffffff;
    margin-bottom: 4rem;
}

/*Page de connexion*/

.contentAuth{
    background-color: #ffffff;
    width: 30rem;
    padding: 3rem 5rem;
}

.contentAuth > div{
    text-align: center;
    margin-bottom: 3rem;
}

.pageAuth{
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('/images/bg-auth.jpg');
    background-size: cover;
}

.contentAuth #submit{
    background-color: #29353a;
    width: 100%;
    border:0;
    color: #ffffff;
    font-size: 1.5rem;
    padding:12px 14px;
    border-radius: 0;    
}

.contentAuth #submit:hover{
    background-color:#202b30;
}

.eyeOpen {
    background-image: url('/images/eye-open.png');
}

.eyeSlash {
    background-image: url('/images/eye-slash.png');
}


.mdpVisible {
    position: absolute;
    background-color: transparent;
    top: 0;
    right: 0;
    padding: 1rem 0.5rem;
    margin: 0;
}