@font-face {
    font-family: "Proxima";
    src: url("../fonts/Proxima-Nova-Bold.otf");
}

@font-face {
    font-family: "ProximaLight";
    src: url("../fonts/ProximaNova-Regular.otf");
}

@font-face {
    font-family: "Freedom";
    src: url("../fonts/SpaceRangerExpanded-8peA.otf");
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-SemiBold.ttf");
}

.FontLight {
    font-family: "ProximaLight", "Proxima Nova Rg", "Proxima Nova Bold", serif;
}

.FontBold {
    font-family: "Proxima", "Proxima Nova Rg", "Proxima Nova Bold", serif;
}

.FontLogo {
    font-family: "Freedom", "Proxima Nova Rg", "Proxima Nova Bold", serif;
}

html, body {
    width: 100%;
    height: calc(100% - 15px);
    font-family: "OpenSans", "Proxima", "Proxima Nova Rg", "Proxima Nova Bold", serif;
    margin: 0;
    background: white;
    color: #343434;
}

/*Liste des icones */
.DashboardIcon {
    background: url("../images/customer-support.svg");
}

.ModuleIcon {
    background: url("../images/ux.svg");
}

.EditionIcon {
    background: url("../images/blog.svg");
}

.FilDeLIcon {
    background: url("../images/data-modelling.svg");
}

.AcquitIcon {
    background: url("../images/door.svg");
}

.DevelopIcon {
    background: url("../images/web-programming.svg");
}

.LogoutIcon {
    background: url("../images/minus.svg");
}

.FilEauIcon {
    background: url("../images/testing.svg");
}

.SettingsIcon {
    background: url("../images/gear.svg");
}

.UserIcon {
    background: url("../images/user.svg");
}

.LogetelIcon {
    background: url("../images/LogoLogetel.png");
}

.LogoIcon {
    background: url("../images/logo-atlant.svg");
}

.LoginUserIcon {
    background: url("../images/man.svg");
}

.LoginPasswordIcon {
    background: url("../images/padlock.svg");
}

.ErrorIcon {
    background: url("../images/warning.svg");
}

.RedCloseIcon {
    background: url("../images/cancel.svg");
}

.SiteIcon {
    background: url("../images/address.svg");
}

.OneSiteIcon {
    background: url("../images/building.svg");
}

.AlarmIcon {
    background: url("../images/siren.svg");
}

.SearchIcon {
    background: url("../images/search.svg");
}

.LeftArrowIcon {
    background: url("../images/left-arrow.svg");
}

.Icon {
    background-size: contain;
}

.Px30Icon {
    width: 30px;
    height: 30px;
}

.Px15Icon {
    width: 15px;
    height: 15px;
}

.MxR10Icon {
    margin-right: 10px !important;
}

.Px40Icon {
    width: 40px;
    height: 40px;
}

.TextIcon {
    position: relative;
    float: left;
    margin-right: 20px;
}

/* Le menu de navigation */

#app {
    top: 0px;
    position: absolute;
}

nav {
    position: fixed;
    height: 100%;
    width: 75px;
    z-index: 100;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 8px #00000030;
    left: 0;
    top: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul .BottomLi {
    border: none;
}

nav ul .BottomLi a {
    border: none;
    transform: none !important;
    transition: none !important;
}

nav ul .BottomLi ul li:hover a {
    transform: scale(0.8) !important;
    transition: 0.2s !important;
}

nav ul li {
    position: relative;
    padding: 0;
    margin: 0;
    width: 75px;
    height: 75px;
}

nav ul li .MenuButton {
    height: 36px;
    width: 36px;
    background: url("../images/menu.svg");
    background-size: cover;
}

nav ul li:hover .SubMenu {
    display: block;
    animation-name: fadeInAnimation;
    animation-duration: 1s;
}

nav ul li:hover a {
    transform: scale(0.8);
    transition: 0.2s;
}

nav ul li .SubMenu {
    background: white;
    position: absolute;
    left: 90px;
    width: 200px;
    border-radius: 4px;
    height: auto;
    top: -10px;
    bottom: auto;
    display: none;
    box-shadow: 0 0 20px -5px #00000024;
}

nav ul li .SubMenu .Triangle {
    position: absolute;
    left: -21px;
    top: 29px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 19px 20px 19px 0;
    border-color: transparent #ffffff transparent transparent;
}

nav ul li .SubMenu .HoverBox {
    position: absolute;
    height: 110px;
    width: 40px;
    left: -40px;
}

nav ul li .SubMenu li {
    color: black;
    border-top: 0;
    position: relative;
    padding: 17px 10px 13px 10px;
    font-size: 110%;
    height: auto;
    width: calc(100% - 20px);
    border-bottom: 1px solid rgb(236, 236, 236);
}

nav ul li .SubMenu li .SubIcon {
    position: relative;
    float: left;
    width: 25px;
    height: 25px;
    top: -5px;
    margin-right: 10px;
}

nav ul li:hover .Title {
    visibility: visible;
}

nav ul li .Title {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.77);
    height: 30px !important;
    width: auto !important;
    color: white;
    pointer-events: none;
    min-width: 100px;
    max-width: 500px;
    visibility: hidden;
    padding: 4px;
    bottom: 78px;
    left: 18px;
}

nav ul li .Title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% - 38px);
    width: 0;
    height: 0;
    border-top: solid 7px rgba(0, 0, 0, 0.77);
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
}

nav ul li ul {
    position: fixed;
    list-style: none;
    margin: 0;
    padding: 0;
    bottom: 0;
}

nav ul li ul li {
    border-bottom: none;
}

nav ul li a {
    position: relative;
    cursor: pointer;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

nav ul li a .Button {
    width: 44px;
    height: 44px;
    background-size: cover;
}

i {
    margin-right: 6px;
}

input {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
    font-family: "OpenSans", "Proxima", "Proxima Nova Rg", "Proxima Nova Bold", serif;
}

a {
    text-decoration: none;
    color: black;
}

input:focus {
    outline: none;
}

/* Le footer */
footer {
    display: none;
}

/*Les pages */

main {
    position: relative;
    width: calc(100% - 75px);
    left: 75px;
    min-height: 100%;
}

main .LoginBox {
    height: 100%;
    position: absolute;
}

main .LoginBox .LoginCadre {
    position: relative;
    width: 390px;
    top: -80px;
}

main .LoginBox .LoginCadre .Logo {
    font-size: 200%;
    color: #000000d4;
    margin-bottom: 20px;
}

main .LoginBox .LoginCadre .Margin {
    margin-top: 12px;
}

main .LoginBox .LoginCadre input {
    padding: 17px 17px 17px 70px;
    width: calc(100% - 87px);
}

main .LoginBox .LoginCadre input::placeholder {
    color: black;
}

main .LoginBox .LoginCadre .InputIcon {
    position: absolute;
    width: 30px;
    left: 17px;
    height: 30px;
}

main .SubmitButton {
    height: 70px;
    font-size: 140%;
    position: relative;
}

main .Page {
    position: relative;
    background-color: white;
    width: 100%;
}

main .Page .ColorBlack {
    color: rgb(64, 64, 64);
}

main .Page .ColorFlash {
    color: black;
}

main .Page .ColorWhite {
    color: white;
}

main .Page .BackgroundFlash {
    background: black;
}

main .Page .BackgroundClair {
    background: rgb(227, 232, 238);
}

main .Page .Title {
    font-size: 130%;
}

main .Page .MiddleMargin {
    margin-bottom: 20px;
}

main .Page .LittleMargin {
    margin-bottom: 10px;
}

main .Page .RightLittleMargin {
    margin-right: 10px;
}

main .Page .DoubleMiddleMargin {
    margin-bottom: 40px;
}

table {
    display: table;
    border-collapse: collapse;
    width: 100%;
    font-family: "OpenSans", "Proxima", "Proxima Nova Rg", "Proxima Nova Bold", serif;

}

table .TableTitle {
    color: black;
    font-size: 16px;
    font-family: "OpenSans", "Proxima", "Proxima Nova Rg", "Proxima Nova Bold", serif;
}

table .SnakeLoader {
    position: absolute;
    left: calc(50% - 13px);
    top: 50%;

}

table td {
    text-align: left;
    padding: 8px;
    height: 32px;
}

table tr {
    display: table-row;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
}


table .Inside {
    position: absolute;
    width: calc(100% - 1px);
    overflow: hidden;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    z-index: 99;
    left: 0;
}

table tr:hover {
    background: #e7e7e7;
}

table .Color {
    background: rgb(245 245 245);
}

.AlertsContainer {
    position: fixed;
    right: 0;
    height: 100%;
}

.AlertsContainer .Alert {
    position: absolute;
    min-height: 100px;
    border-radius: 4px;
    margin: 12px;
    width: 300px;
    right: -300px;
    background: white;
    box-shadow: 0 0 20px -10px #000000b8;
}

.AlertsContainer .Alert .Header {
    border-bottom: 1px solid rgb(232, 232, 232);
    height: 48px;
}

.AlertsContainer .Alert .Header .AlertIcon {
    left: 10px;
    top: 10px;
}

.AlertsContainer .Alert .Header .Title {
    position: relative;
    top: 16px;
    font-size: 130%;
}

.AlertsContainer .Alert .Header .CloseButton {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
}

.AlertsContainer .Alert .Content {
    padding: 10px;
    width: calc(100% - 20px);
}

/* Utilitaires */
.BlueButton {
    color: #FFF;
    background: #03A9F4;
    border-radius: 4px;
}

.TextResponsive {
    word-wrap: break-word;
    text-overflow: ellipsis;
    overflow: hidden;
}

.Padding {
    padding: 15px;
}

.PaddingWidth {
    width: calc(100% - 30px) !important;
}

.LittlePaddingWidth {
    width: calc(100% - 24px) !important;
}

.LittlePadding {
    padding: 12px;
}

.LittleLeftPadding {
    padding-left: 12px;
}

.LittleLeftPaddingWidth {
    width: calc(100% - 12px) !important;
}

.BorderBottom {
    border-bottom: 1px solid #e6e6e6;
}

.Border {
    border: 1px solid #e6e6e6;
}


/* Responsive élément */
.ScreenContainer {
    position: fixed !important;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
}

.TotalContainer {
    position: unset;
    height: 100%;
}

.TotalContainerAbsolute {
    height: 100% !important;
    position: absolute !important;
    width: 100% !important;
}

.Container {
    position: relative;
    width: 100%;
    clear: both;
}

.NoBoth {
    clear: none !important;
}

.Container .TotalBox {
    position: absolute;
    width: 100%;
    height: 100%;
}

.Container .Relative {
    position: relative;
}

.Container .FloatLeft {
    float: left;
}

.Container .FloatRight {
    float: right;
}

.Container .FiveGrid {
    display: grid;
    width: 100%;
    grid-template-columns: 20% 20% 20% 20% 20%;
}

.Container .ThreeGrid {
    display: grid;
    width: 100%;
    grid-template-columns: 33.333% 33.333% 33.333%;
}

.Container .FourGrid {
    display: grid;
    width: 100%;
    grid-gap: 10px;
    grid-template-columns: calc(25% - 10px) calc(25% - 10px) calc(25% - 10px) calc(25% - 10px);
}


/* Style responsive element */
.Radius {
    border-radius: 4px !important;
}

.BlackShadow {
    background: white;
}

.MaxHeight {
    height: 100%;
}


@media screen and (max-width: 900px) {
    .Container .ResponsiveGrid {
        grid-template-columns: 100% !important;
    }


    #NavigationMenuButton {
        left: 0;
        border: none;
        background: #e3e8ee;
    }

    main {
        margin-top: 75px;
        left: 0px !important;
        width: 100%;
    }

    nav {
        background: white;
        box-shadow: 0 0 20px -10px #0000008f;
    }

    .Container .FloatLeft {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1500px) {
    main {
        left: 75px;
    }
}

.checkcontainer {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    border-radius: 18px;
    height: 24px;
    left: -6px;
    width: 24px;
    background-color: #eee;
}

.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkcontainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}

.checkcontainer .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}