html, body {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #58585a !important;
}

.bg-menu {
    background-color: #004b63;
}

.nav-link {
    white-space: nowrap;
}

.nav-link.active {
    background-color: #0a5e77 !important;
}

.navbar-username {
    color: white;
}

.content {
    padding-top: 1.1rem;
    margin-bottom: 65px;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-primary {
    color: #fff;
    background-color: #004b63;
    border-color: #0a5e77;
}

    .btn-primary:hover, .btn-primary:active {
        background-color: #0a5e77 !important;
    }

    .btn-primary.disabled {
        background-color: #0a5e77;
    }

.btn-outline-secondary {
    background-color: #fff;
    border-color: #004b63;
    color: #004b63;
}

    .btn-outline-secondary:hover, .btn-outline-secondary:active {
        background-color: #f2f2f2 !important;
        color: #004b63 !important;
    }

    .btn-outline-secondary.disabled {
        background-color: #f2f2f2;
        color: #004b63;
    }

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

.content-footer {
    padding-top: 15px;
    display:flex;
    border-top: 1px solid #e5e5e5;
    background-color: #fff
}

.pull-right {
    text-align: right;
    width: 100%;
}

.content-body {
    cursor: default;
    position: relative;
    padding: 15px;
}

.table-input {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.drop {
    min-width: 100px;
    height: 150px;
    position: relative;
    top: -30px;
    margin-bottom: -30px;
    cursor: pointer;
}

.step-content {
    color: #58585A;
}

.upload-progress {
    background-color: #e9eff1;
}

.alert-info {
    border-radius: 3px;
    background: #DEF6FF;
}

.media-item {
    width: 230px;
    height: 230px;
    place-items: center;
}

.category-list {
    height: 34px;
    color: #58585A;
    width: 176px;
    border-radius: 4px;
}

.drag-row {
    display:flex;
}

.table-dark {
    --bs-table-bg: #004b63;
}

.table td {
    color: #58585a;
}

.table-center {
    text-align: center;
}

.table-select {
    color: #58585a;
    border: none;
    padding: 5px 10px;
    background-color: rgba(0,0,0,0)
}

.sortable-item {
    cursor: grab;
    width: 230px;
}

    .sortable-item:active {
        cursor: grabbing;
    }

.border-dark {
    border-color: #58585A;
    border-radius: 4px;
}

/* On force la page à occuper toute la hauteur */
html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.full-page-overlay {
    position: fixed;
    top: 10vh;
    left: 10vw;
    width: 80vw;
    height: 80vh;
    background: #FFF;
    z-index: 10000; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #468294;
    border: 3px dashed #468294;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
}

    .full-page-overlay.active {
        visibility: visible;
        opacity: 0.7;
    }

/* Etapes*/
.stepper-container {
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.stepper {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border: 1px solid #d1d1d1;
    background-color: #ffffff;
}

.step {
    position: relative;
    flex: 1;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #ffffff;
    color: #000000;
    border-right: 1px solid #d1d1d1;
}

    .step::after, .step::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 100%;
        width: 0;
        height: 0;
        border-top: 23px solid transparent;
        border-bottom: 23px solid transparent;
        border-left: 20px solid transparent;
        z-index: 10;
    }

    .step::before {
        border-left-color: #d1d1d1;
        margin-left: 1px;
        z-index: 5;
    }

    .step::after {
        border-left-color: inherit;
        z-index: 6;
    }

    .step.completed {
        background-color: #468294;
        color: #ffffff;
        border-right: none;
    }

    .step.active {
        background-color: #004d61;
        color: #ffffff;
        border-right: none;
    }

    .step.completed::after {
        border-left-color: #468294;
    }

    .step.active::after {
        border-left-color: #004d61;
    }

    .step:not(.completed):not(.active)::after {
        border-left-color: #ffffff;
    }

    .step:last-child {
        border-right: none;
    }

        .step:last-child::after, .step:last-child::before {
            display: none;
        }