html {
    width: 100%;
}

html.wait, html.wait * {
    cursor: wait !important;
}

body {
    overflow-x: hidden !important;
}

body.show-spinner > main {
    overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > * {
    opacity: 0;
}

/* Spinner */
body.show-spinner::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0.3);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    position: fixed;
    z-index: 1;
}

body.wait, body.wait * {
    cursor: wait !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* quillEditor */
div.quillEditor p,
div.quillEditor h1,
div.quillEditor h2 {
    margin-bottom: 0;
}

div.quillEditor .ql-size-large {
    font-size: 1.5em;
}

div.quillEditor .ql-size-small {
    font-size: 0.75em;
}

div.quillEditor .ql-align-center {
    text-align: center;
}

div.quillEditor .ql-align-right {
    text-align: right;
}

/* Disable */
.isDisabled {
    cursor: not-allowed;
    opacity: 0.5;
}

    .isDisabled > a {
        display: inline-block; /* For IE11/ MS Edge bug */
        pointer-events: none;
        text-decoration: none;
    }

/* Texte */
@media (max-width: 800px) {

    .showOnMobile {
        display: inline-block;
    }
    .hideOnMobile {
        display: none;
    }

    span.TextLong {
        display: none;
    }

    span.TextShort {
        display: inline;
    }
}

@media (min-width: 801px) {

    .showOnMobile {
        display: none;
    }
    .hideOnMobile {
        display: inline-block;
    }

    span.TextLong {
        display: inline;
    }

    span.TextShort {
        display: none;
    }
}

/* Print */
@media print {

    a:not(.btn) {
        text-decoration: none;
    }
}

progress-bar-little {
    width: 40px;
    height: 40px;
}

.dot {
    height: 25px;
    width: 25px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
}

.boxShadow {
    box-shadow: 0 1px 15px rgba(0,0,0,.04), 0 1px 6px rgba(0,0,0,.04);
}

