#loader{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #555;
    opacity: 0.3;
    }
#loader .loader_content{
    margin-top: 25%;
    margin-left: 50%;
    position: fixed;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (min-width: 768px) {
    .modal-large-dialog{
        width:80%;
        max-width:100%
    }
    .modal-medium-dialog{
        width:60%;
        max-width:100%
    }
}

.nowrap {
    white-space: nowrap!important;
}

.display_flex{
    display: flex;
}
.display_inlineflex{
	display: inline-flex;
}

@media(min-width: 1400px){
    .ns-col-xxl-6{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* pour tester, le temps d'implémenter */
:disabled{
    background-color: grey!important;
    color: silver!important;
}

.error{
    color: red;
}

.btn-save{
    border: 1px solid green;
    background-color: #BFB;
}

.btn[disabled="disabled"] {
    border: 1px solid grey;
    background-color: silver;
}

.btn-wrap {
    white-space: normal;
}


.main-header .navbar .nav > li > a > .label {
    position: absolute;
    top: 9px;
    right: 7px;
    text-align: center;
    font-size: 9px;
    padding: 2px 3px;
    line-height: .9;
}
.bg-yellow, .callout.callout-warning, .alert-warning, .label-warning, .modal-warning .modal-body {
    background-color: #f39c12 !important;
}

a table tr:first-child * {
    border-top: none!important;
}

.timer input{
	border:none;
	padding:0;
	color:#3ea662;
	font-size:1.5rem;
}

.calendar-filters li {
    border-radius: 4px;
}

/* fix pour ordis du client */
.modal-open .modal{
    /*overflow-x: hidden!important;*/
    /*overflow-y: auto!important;*/
}
.scrollable-menu {
    max-height: 400px; /* arbitraire */
    overflow-y: scroll;
}

.info_panel {
    overflow: scroll;
    max-width: 50rem;
    max-height: 30rem;
}

.visibility_hidden {
    visibility: hidden;
}