@media only screen and (min-width: 1200px) {
    .accueil-cadre {
        margin: 50px 75px;
    }
}


.accueil-security {
    margin-top: 48px;
    padding-top: 12px;
    border-top: dashed 2px #595959;
}

.sidebar-hidden {
    display: none;
}
.sidebar-caret-container {
    cursor: pointer;
    left: 250px;
}
.sidebar-caret-container-left {
    left: 0px !important;
}
.fullscreen {
    margin-left: 22px !important;
}
.footer {
    position: fixed;
    left: 250px;
    bottom: 0;
    width: calc(100% - 250px);
    text-align: center;
}
.footer-fullscreen {
    left: 22px;
    width: calc(100% - 22px);
}

.loading {
    display: none;
    font-size: 64px;
    text-align: center;
    color: lightgrey;
    padding: 20px;
}
.adresse-recherche{
    cursor: pointer;
    font-size: smaller;
}
.adresse-container{
    width: 450px;
    position: absolute;
    z-index: 10;
}
.adresse-li {
    cursor: pointer;
}
.close-mark {
    cursor: pointer;
    position: absolute;
    right: 4px;
    top: 2px;
}
.close-mark:hover {
    transform: scale(1.1);
}
.input-div{
    position: relative;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.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: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #04AA6D;
}

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

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

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

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

/*entête*/
.header {
    display: flex;
}
.header-colonne {
    flex-direction: column !important;
}
.header .contact-inline {
    display: inline-block;
    align-self: center !important;
}
.header .contact-under {
    display: block;
}
.header p {
    margin: 2px 5px;
    font-size: 12px;
}

.sortable-header {
    cursor: grab;
}

.mef-G{
    font-weight: bold;
}
.mef-S{
    text-decoration: underline;
}
.mef-I{
    font-style: italic;
}

/*************structure du dossier**************/
.line-template {
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: 100px;
    justify-content:space-between;
}
.line-template:not(:last-child) {
    border-bottom: 2px dashed;
}
.line-container {
    cursor: grab;
    display: flex;
    width: 100%;
}
.line-drag-icon, .line-icon{
    width: 30px;
}
.line-icon {
    cursor: default;
}
.colonne-template {
    background-color: #979494;
    border: solid;
    margin: 2px;
    width: 100%;
}
.colonne-container {
    cursor: grab;
    width: 100%;
}
.item-template {
    position: relative;
    background-color: #d6d6d6;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 5px;
    width: calc(100% - 10px);
    min-height: 100px
}
.upload-template {
    background-color: unset !important;
}
.item-drag-icon {
    position: absolute;
    top:38px;
    left: calc(50% - 10.5px);
    z-index: 1000;
}
.item-info-icon{
    position: absolute;
    top:63px;
    right: 44px;
}
.item-delete {
    position: absolute;
    right: 0px;
    top: calc(50% - 12px);;
    z-index: 1000;
}
.input-smaller {
    transform: scale(0.75);
}
.info-input {
    background-color: #ecb7b1;
    position: absolute;
    width: 100%;
    height: 76px;
    padding: 6px;
    z-index: 1001;
}
.info-icon:hover{
    cursor: pointer;
}

/***************stepper**************/
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    @media (max-width: 768px) {
        font-size: 10px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.stepper-item.active {
    font-weight: bold;
}

.stepper-item.completed .step-counter {
    background-color: #4bb543;
    cursor: pointer;
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4bb543;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}
.step-name {
    text-align: center;
}
.step-name.crossed {
    text-decoration: red 2px line-through;
}
.stepper-cross {
    overflow: hidden;
}
.line {
    height: 3px;
    width: 100%;
    background-color: red;
}
.diag {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
}
.diag.diag-1 {
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.diag.diag-2 {
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}


/*********************Dossier parent**************/
.step-bar {
    position: sticky;
    width: 100%;
    top: 0;
    padding-top: 23px;
    background-color: white;
    z-index: 10000;
}
.dossier-ligne {
    display: flex;
}
.dossier-ligne:not(:last-child) {
    border-bottom: 2px dashed #607d8b !important;
}
.dossier-colonne {

    width: 100%;
}
.dossier-item {
    padding: 6px;
    position: relative;
}
.dossier-champ {
    border: 1px solid #ccc;
}
.dossier-info-icon {
    cursor: pointer;
}
.dossier-info-div {
    position: absolute;
    width: calc(100% - 16px);
    bottom: 72px;
}
.round-time-bar {
    overflow: hidden;
}
.round-time-bar div {
    height: 5px;
    animation: roundtime calc(var(--duration) * 1s) linear forwards;
    transform-origin: left center;
    background: linear-gradient(to bottom, #0a6fc2, #0a6fc2);
}

@keyframes roundtime {
    to {
        /* More performant than `width` */
        transform: scaleX(0);
    }
}
.code-postal-ul {
    max-height: 200px;
    overflow-y: auto;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    width: 100%;
}

.rc-div-input>label {
    padding-left: 10px;
}
.html-validator {
    background-color: white;
    overflow-y: auto;
    color: black;
}
.sidebar-menu i {
    color: #2a67b5 !important;
}
.perso-champs {
    width: 500px;
    z-index: 30;
}
.contenu li {
    border-bottom: none !important;
}
.importation-reset {
    position: absolute;
    top: 10px;
    right: -20px;
}
.accueil-recapitulatif {
    position: absolute;
    top: 8px;
    width: calc(100% - 32px);
    height: calc(100vh - 50px);
    overflow-y: auto;
    z-index: 1000000;
}
.accueil-liste {
    overflow-y: auto;
    height: calc(100vh - 300px);
}

.accueil-liste-reduite {
    height: 400px !important;
    overflow-y: hidden !important;
}
.accueil-card-full {
    position: absolute;
    z-index: 100000;
    width: 100% !important;
    background: white;
    height: 80vh;
}
.recapitulatif-copier, .accueil-check {
    cursor: pointer;
}
.w3-none-admin {
    display: none;
}

.etablissement-resultats {
    position: absolute;
    z-index: 10;
    top: 48px;
    left: 0;
    width: 100%;
    overflow-y: auto;
    max-height: 300px;
}