
.statut{
    width: 30px;
    height: 30px;
    border-radius: 20px;
}
.correct{
    background-color: green;
}
.probleme{
    background-color: orange;
}
.eteint{
    background-color: red;
}
.maintenance{
    background-color: blue;
}

/*
 * Permet de désactiver le filtre noir au clique pour le chargement d'un modal
 */
.modal-backdrop {
    display: none;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: auto; 
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: auto;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
.cmd{
    padding: 2px 16px;
    background: #000;
}
.cmd-field{
    width: 100%;
    height: 30%;
    color: green;
    background: #000;
    resize: none;  
    outline: none;
    border: none;
}

input[type=text], input[type=password], input[type=number] {
    width: 100%;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
#spinner{
    display: none;
}
.cookie-banner {
    display: none;
    height: auto;
    padding: 4px 3%;
    background-color: #eee;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}
.cookie-banner.bottom {
    display: block;
    border-top: 2px solid #9C7E48;
    bottom: -350px;
    transition: bottom 0.5s;
}
.cookie-banner.bottom.show {
    bottom: 0;
    transition: bottom 1s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}
.cookie-banner.top {
    display: block;
    border-bottom: 2px solid #9C7E48;
    top: -350px;
    transition: top 0.5s;
}
.cookie-banner.top.show {
    top: 0;
    margin-top: 0px;
    transition: top 1s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}
.cookie-banner.full {
    left: 0;
    margin: 0px;
    width: 100%;
}
.cookie-banner.highlight {
    margin: 0x 25px 0px 0px;
    height: auto;
    width: auto;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.55);
}
.cookie-banner.highlight.top.show {
    top: 25px;
}
.cookie-banner.highlight.bottom.show {
    bottom: 25px;
}
.cookie-banner p {
    float: left;
    width: 80%;
    display: inline-block;
}
.cookie-banner .button {
    float: left;
    margin: 15px;
    width: 100px;
    height: 40px;
    z-index: 100;
    background: #900B23;
    text-transform: uppercase;
    line-height: 28px;
    padding-top: 8px;
    display: inline-block;
    color: #FFF;
    text-align: center;
    text-decoration: none;
}

input{
    width: auto;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#pc_networks {
  width: 100%;
  height: 550px;
  max-width: 100%;
}

.dt-head-center, .dt-body-center {
    text-align: center;
}

.dt-head-left, .dt-body-left {
    text-align: left;
}

.dt-head-right, .dt-body-right {
    text-align: right;
}