/* VARIABLES */
/* BASE */
html,
body {
    font-family: 'Comfortaa-Regular', sans-serif;
    font-size: 1em;
    line-height: 1.4;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #c5d7e2;
}

sub,
sup {
    /* Specified in % so that the sup/sup is the right size relative to the surrounding text */
    font-size: 75%;

    /* Zero out the line-height so that it doesn't interfere with the positioning that follows */
    line-height: 0;

    /* Where the magic happens: makes all browsers position the sup/sup properly, relative to the surrounding text */
    position: relative;

    /* Note that if you're using Eric Meyer's reset.css, this is already set and you can remove this rule */
    vertical-align: baseline;
}

sup {
    /* Move the superscripted text up */
    top: -0.5em;
}

sub {
    /* Move the subscripted text down, but only half as far down as the superscript moved up */
    bottom: -0.25em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container_data {
    overflow: hidden;
    *zoom: 1;
}

/* HEADER */
.header {
    position: static;
    left: 0;
    right: 0;
    height: 90px;
    line-height: 90px;
    color: #fff;
    background-color: #fff;
}

.header__logo {
    font-weight: 700;
    padding: 0 25px;
    float: left;
}

/* MENU */
.menu {
    float: left;
}
.menu a {
    padding: 0 10px;
}
.menu a:hover {
    color: #c5d7e2;
}

/* RESPONSIVE */
.site-pusher,
.site-container {
    height: 100%;
}

.site-container {
    overflow: hidden;
}

.site-pusher {
    display: flex;
    flex-direction: column;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.site-content {
    overflow-y: auto;
    background-color: #c5d7e2;
    float: right;
    height: 100%;
    width: 100%;
    margin-bottom: 25px;
}

#search {
    display: flex;
    justify-content: center;
}

.tree {
    height: 100%;
    overflow-y: auto;
    width: 20%;
    float: left;
    min-width: 280px;
    background-color: #c5d7e2;
}

div.vertical-line {
    width: 1px; /* Line width */
    background-color: black; /* Line color */
    height: 100%; /* Override in-line if you want specific height. */
    float: left; /* Causes the line to float to left of content. You can instead use position:absolute or display:inline-block if this fits better with your design */
}

div.horizontal-line {
    height: 1px; /* Line width */
    background-color: black; /* Line color */
    width: 100%; /* Override in-line if you want specific height. */
}

.header__icon {
    position: relative;
    display: block;
    float: left;
    width: 50px;
    height: 90px;
    cursor: pointer;
}
.header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 0;
    top: 24px;
    left: 15px;
    box-shadow: 0 10px 0 2px #3369ad, 0 20px 0 2px #3369ad, 0 30px 0 2px #3369ad;
    /*box-shadow: 0 10px 0 2px #056bb5, 0 20px 0 2px #056bb5, 0 30px 0 2px #056bb5, 0 40px 0 2px #056bb5;*/
}

.menu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #3369ad;
    /*    overflow-y: scroll;
        -webkit-overflow-scrolling: touch;*/
    width: 250px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}
.menu a {
    display: block;
    height: 40px;
    text-align: left;
    line-height: 40px;
    border-bottom: 1px solid #c5cae9;
}

.with--sidebar .site-pusher {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
}
.with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

ul.data-list {
    list-style: none;
    font-size: 0px;
    margin: 15px 0px 0px 0px;
}
ul.data-list li {
    position: relative;
    display: inline-block;
    margin: 0 0 20px 15px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    vertical-align: top;
    box-shadow: 0 0 5px #ddd;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ul li.lidata {
    width: 250px;
}

ul li.lidata h2 {
    font-weight: bold;
    font-size: 18px;
}

ul li.lidata .ref-box {
    margin: 10px 10px;
}
.alert-icone {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #ea5f5f;
    /*background:url(../img/alerte-icone.png) no-repeat top left;
	background-size:20px 20px;*/
}
.warning-icone {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fba65b;
    /*background:url(../img/warning-icone.png) no-repeat top left;
	background-size:20px 20px;*/
}
.ok-icone {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #77bd1e;
    background: url(../img/ok-icone.png) no-repeat top left;
    background-size: 20px 20px;
}

.icon-bar {
    width: 100%;
    height: 40px;
    text-align: center;
    background-color: #3369ad;
    overflow: auto;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
}


.icon-bar a {
    width: 16.67%;
    float: left;
    transition: all 0.3s ease;
    color: white;
    font-size: 28px;
    padding: 0px 5px;
}

.icon-bar a:hover {
    width: 16.67%;
    background-color: #c5d7e2;
}

.active {
    width: 16.67%;
    background-color: #c5d7e2;
}

.fa {
    display: inline-block;
    /*font-size: 20px;*/
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.filter-zone {
    width: 100%;
    height: 45px;
    border-bottom: 1px solid #1e83c1;
}
[class*='col-'] {
    float: left;
    padding: 15px;
}

.col-3 {
    width: 50%;
}
.col-9 {
    width: 50%;
}
.col-100 {
    width: 100%;
}

span.capit {
    text-transform: capitalize;
}

span.ui-spinner {
    width: 45%;
}

#fiche-boitier label {
    width: 200px;
}
#fiche-boitier input {
    width: 300px;
    float: inherit;
}

.tab-info label {
    width: 25%;
}
.tab-info li {
    margin-bottom: 8px;
}
.tab-info {
    height: 300px;
    overflow: auto;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: 'Roboto', sans-serif;
}

b {
    font-weight: bold;
}

.bleu_fonce {
    color: #3369ad;
}

div.ref-box {
    min-height: 85px;
}

.charttools {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.charttools input {
    border: 1px solid rgba(0, 0, 0, 0.298039);
    border-radius: 5px;
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    margin: 1px;
    opacity: 0.7;
    outline: none;
    display: inline;
    background: transparent;
}

.charttools input.selected {
    opacity: 1;
    background: rgb(185, 205, 245);
}

fieldset.test {
    margin: 8px;
    border: 1px solid silver;
    padding: 8px;
    border-radius: 4px;
}
legend {
    padding: 2px;
}

.image_connect_input {
    background: url('../img/btn_connect.png') no-repeat top left;
    cursor: pointer;
    border: none;
}

.parent {
    display: flex; /* contexte sur le parent */
    flex-direction: column; /* direction d'affichage verticale */
    justify-content: center; /* alignement vertical */
}

.enfant {
    margin-top: 5px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

swal2-input {
    height: 2em;
    margin: 5px;
    font-size: 1em;
}
