body {
    font-size: 13px !important;
}

.w3-titlecase {
    display: inline-block;
}

    .w3-titlecase::first-letter, label::first-letter {
        text-transform: uppercase;
    }

.w3-title {
    display: block
}

    .w3-title span {
        display: block
    }

        .w3-title span::first-letter {
            text-transform: uppercase;
        }

    .w3-title::first-letter {
        text-transform: uppercase;
    }

th span::first-letter {
    text-transform: uppercase;
}

@media (max-width:600px) {
    .w3-main {
        margin-top: 40px;
    }
}

body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, body, input, select, textarea {
    font-family: 'Roboto', 'Segoe UI' !important;
}

a {
    cursor: pointer;
    text-decoration: none;
}

.w3-input, .w3-select {
    padding: 4px 6px;
}

.w3-select {
    padding: 5px 6px;
}

.w3-bold {
    font-weight: bold;
}

.w3-uppercase {
    text-transform: uppercase
}

img {
    width: 100%;
    height: auto,
}

.w3-pointer {
    cursor: pointer;
}

#colorNav > ul {
    margin: 0 auto;
}

@media (min-width:992px) {
    #colorNav > ul {
        width: 450px;
        margin: 0 auto;
    }
}

#colorNav > ul > li {
    list-style: none;
    display: inline-block;
    line-height: 1;
    margin: 1px;
    border-radius: 3px;
    position: relative;
}


#colorNav li ul {
    text-align: left !important;
    margin-right: 50px;
    position: absolute;
    list-style: none;
    margin-left: -50px;
    font: bold 12px 'Open Sans Condensed', sans-serif;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: max-height 0.4s linear;
    -moz-transition: max-height 0.4s linear;
    transition: max-height 0.4s linear;
}

    #colorNav li ul li {
    }

        #colorNav li ul li a {
            padding: 12px;
            color: #fff !important;
            text-decoration: none !important;
        }

        #colorNav li ul li:nth-child(odd) {
            background-color: #363636;
        }

        #colorNav li ul li:hover {
            background-color: #444;
        }

        #colorNav li ul li:first-child {
            border-radius: 3px 3px 0 0;
            margin-top: 25px;
            position: relative;
        }

            #colorNav li ul li:first-child:before {
                content: '';
                position: absolute;
                width: 1px;
                height: 1px;
                border: 5px solid transparent;
                border-bottom-color: #313131;
                left: 50%;
                top: -10px;
                margin-left: -5px;
            }

        #colorNav li ul li:last-child {
            border-bottom-left-radius: 3px;
            border-bottom-right-radius: 3px;
        }

#colorNav li:hover ul {
    max-height: 200px;
}

.w3-padding-trash {
    padding: 8px;
    border-radius: 3px;
    color: white;
    background: red
}
.w3-padding-edit {
    padding: 8px;
    border-radius: 3px;
    color: white;
    background: orange
}

.w3-padding-alert {
    padding: 15px;
    color: white;
    margin-bottom: 50px
}

.w3-btn-taille {
    width: 46px;
}

.buttonanimate {
    transition: all 0.5s;
    cursor: pointer;
}

    .buttonanimate span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .buttonanimate span:after {
            content: '\00bb';
            font-size: 20px;
            position: absolute;
            vertical-align: top;
            opacity: 0;
            top: -7px;
            left: -15px;
            transition: 0.5s;
        }

    .buttonanimate:hover span {
        padding-right: 25px;
    }

        .buttonanimate:hover span:after {
            opacity: 1;
            right: 0;
        }

.w3-notcursor {
    cursor: not-allowed
}

.bouton_4 {
    width: 70px;
    height: 34px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

    .bouton_4:hover {
        width: 200px;
        +height: 34px;
        background-color: green
    }

.texteduboutton_4 {
    width: 70%;
    float: right;
    line-height: 40px;
    color: black;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
}

.w3-heightauto {
    overflow: auto !important
}

.w3-padding-plus {
    padding: 5px 24px !important;
}

/* Tooltip container */
.tooltip {
    position: relative;
    border-bottom: 1px dotted black;
}

.tooltiptext {
    visibility: hidden;
    width: 250px;
    height: 400px;
    background-color: #fff;
    color: #171717;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -180px;
    right: -263px;
    border: 1px solid #dadada;
    right: -263px;
    pointer-events: none;
}


    .tooltiptext::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 100%;
        margin-top: -5px;
        border-width: 12px;
        border-style: solid;
        border-color: transparent lightgray transparent transparent;
    }

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.is-left {
    right: auto !important;
    left: -263px !important;
}

    .is-left.tooltiptext::after {
        right: auto !important;
        left: 100% !important;
        border-color: transparent transparent transparent lightgray !important;
    }

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    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 */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.page2 {
    margin-top: 35%;
    float: none;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

@media (max-width: 810px) {
    .page2 {
        width: 95%;
    }
}

.numberCircle {
    font: 32px Arial, sans-serif;
    width: 2em;
    height: 2em;
    box-sizing: initial;
    background: #fff;
    border: 0.1em solid #4CAF50;
    color: #4CAF50;
    text-align: center;
    border-radius: 50%;
    line-height: 2em;
    box-sizing: content-box;
}

.numberCircle2 {
    font: 32px Arial, sans-serif;
    width: 2em;
    height: 2em;
    box-sizing: initial;
    background: #fff;
    border: 0.1em solid #2196F3;
    color: #2196F3;
    text-align: center;
    border-radius: 50%;
    line-height: 2em;
    box-sizing: content-box;
}

.cercle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 20px;
    background: green;
}

.w3-padding-statut {
    padding: 3px 8px
}

.w3-padding-planning {
    padding: 5%
}

.inputday {
    width: 200px !important;
    display: normal !important;
}

@media (max-width: 990px) {
    .widthplanning {
        width: 250px !important;
    }

    .overflow {
        overflow-x: auto !important;
    }

    .sizesmall {
        font-size: 10px !important;
    }
}
.marker-pink {
    background-color: var(--ck-highlight-marker-pink);
}
.marker-green {
    background-color: var(--ck-highlight-marker-green);
}
.marker-blue {
    background-color: var(--ck-highlight-marker-blue);
}
.pen-red {
    color: var(--ck-highlight-pen-red);
    background-color: transparent !important;
}
.pen-green {
    color: var(--ck-highlight-pen-green);
    background-color: transparent !important;
}
var {
    font-style: normal !important;
}
th input[type=date] {
    width: 100px !important
}

th input[type="date"]::-webkit-calendar-picker-indicator {
    margin-left: -5px !important;
}
