body {
    /*background-color: skyblue;*/
}
.tooltip-inner {
    opacity: 0.6 !important;
}
.tooltip .tooltip-arrow::before {
    opacity: 0.6 !important;
}
main.container, main.container-fluid {
    /*margin-top: 4em;*/
}

.bg-ocre, .dropdown-item.active, .dropdown-item:active {
    background-color: #ea5346; /* #7c0707; /*#ea5345; /*#FF9900;*/
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #ea5346;
}

a, .nav-link {
    color: #ea5346;
}

a:hover, .nav-link:hover {
    color: #e04D3D;
}

.accordion-button-ue, .accordion-button-ue:not(.collapsed), .table-chemin-pedago > tbody > tr.row-ue > * {
    background-color: #f9ceca; /* #ff4500; /*#fcaa30;*/
}

.accordion-button-ecue, .accordion-button-ecue:not(.collapsed), .table-chemin-pedago.table-striped > tbody > tr.row-ecue > * {
    background-color: #ffd2b7; /*#3399ff; /*#fabd61;*/
}

/*.accordion-button-type, .accordion-button-type:not(.collapsed), .table-chemin-pedago.table-striped > tbody > tr:nth-of-type(2n+1) > * {*/
/*    background-color: #f6cd91;*/
/*}*/

.accordion-button-type, .accordion-button-type:not(.collapsed) {
    background-color: #f8e6b7; /*#f4d35e; /*#f6cd91;*/
}

.accordion-body-nopad {
    padding: 0;
}

.row-alt {
    background-color: #eee;
}
.tinyeditor {
    padding: 0 .5em;
}

.tinyeditor:hover:not(.mce-edit-focus) {
    background: #ffddd4; /*#fff5cc;*/
}

élément {
    visibility: hidden;

}
.tox.tox-tinymce.tox-fullscreen {
    background-color: transparent;
    z-index: 999999 !important;

}

.tox {
    z-index: 200 !important;
}

td.highlighted {
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vhe-mod
{
    background-color: rgba(255, 89, 0, 0.2);
    box-shadow: 0.2rem 0.2rem 0.2rem rgba(255, 89, 0, 0.2);
}

/*toggle switch*/

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(36px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Quand le checkbox est disabled */
.switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.switch input:disabled + .slider.round {
  background-color: #ccc;
}