﻿/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

    /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

.cf-pill {
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    display: inline-block;
    border-radius: 4px;
    padding: 0 0.25em;
    line-height: 1.35em;
}

.cf-label {
    color: #b1b1b1;
    display: block;
    float: left;
    height: 1.875rem;
    line-height: 2.5em;
    font-size: 0.75rem;
    padding-right: 0.417em;
    white-space: nowrap;
}

.cf-overflow-hide {
    overflow: hidden !important;
}

.cf-overflow-show {
    overflow: visible !important;
}

* {
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

html {
    font: normal 400 1rem/1.5rem "Helvetica", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    text-rendering: auto;
    color: #242424;
}

button,
input,
optgroup,
select,
textarea {
    font-family: Helvetica, Arial, sans-serif;
}

/*====================================================================== styling */
/* this is the white on gray tiled effect we use throughout a lot of Core projects */
/*====================================================================== structure */
.cf-button {
    /*height: 2.5rem;
    font-size: 0.813rem;
    line-height: normal;
    vertical-align: middle;
    outline: none;
    padding: 0 1.875rem;
    border: 1px solid #b1b1b1;
    border-radius: 0;
    background-color: #e3e3e3;
    color: #242424;
    cursor: pointer;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -ms-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;*/
}

    .cf-button:hover {
        background-color: #b1b1b1;
    }

    .cf-button:active {
        background-color: #717171;
    }

    .cf-button:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(177, 177, 177, 0.5);
    }

.cf-button--alt {
    color: #3e3e3e;
    background: white;
    border-color: #b1b1b1;
}

    .cf-button--alt:hover {
        color: #3e3e3e;
        background-color: #f1f1f1;
    }

    .cf-button--alt:active {
        color: #3e3e3e;
        background-color: #e3e3e3;
    }

.cf-button--alt-disabled {
    color: #b1b1b1;
    background: white;
    border-color: #e3e3e3;
}

    .cf-button--alt-disabled:hover,
    .cf-button--alt-disabled:active {
        color: #b1b1b1;
        background: white;
        border-color: #e3e3e3;
    }

.cf-button--cancel {
    color: #717171;
    background: white;
    border: 0;
}

    .cf-button--cancel:hover {
        color: #717171;
        background-color: #f1f1f1;
    }

    .cf-button--cancel:active {
        color: #717171;
        background-color: #f1f1f1;
    }

.cf-button--cancel-alt {
    color: #717171;
    background: #f1f1f1;
    border: 0;
}

    .cf-button--cancel-alt:hover {
        color: #717171;
        background-color: #fff;
    }

    .cf-button--cancel-alt:active {
        color: #717171;
        background-color: #fff;
    }

.cf-button--submit {
    color: white;
    background-color: #8dbf74;
    border-color: #71af51;
}

    .cf-button--submit:hover {
        background-color: #71af51;
    }

    .cf-button--submit:active {
        background-color: #5a8c41;
    }

    .cf-button--submit:focus {
        box-shadow: 0 0 0 0.2rem rgba(113, 175, 81, 0.5);
    }

.cf-button--submit-alt {
    color: white;
    background-color: #4891dc;
    border-color: #3a74b0;
}

    .cf-button--submit-alt:hover {
        background-color: #3a74b0;
    }

    .cf-button--submit-alt:active {
        background-color: #3a74b0;
    }

    .cf-button--submit-alt:focus {
        box-shadow: 0 0 0 0.2rem rgba(58, 116, 176, 0.5);
    }

.cf-button--icon {
    position: relative;
    white-space: nowrap;
}

    .cf-button--icon.cf-button--small i.cf-icon::before {
        position: relative;
        bottom: 0.182em;
    }

    .cf-button--icon i.cf-icon {
        font-size: inherit;
        padding: 0 0.25rem;
        float: none;
        min-width: auto;
        min-height: auto;
        margin: 0;
    }

        .cf-button--icon i.cf-icon:hover:not(.cf-icon--disabled) {
            color: #3e3e3e;
        }

    .cf-button--icon .cf-icon {
        vertical-align: inherit;
    }

.cf-button--transparent {
    color: #b1b1b1;
    background: transparent;
    border: 0;
    font-size: 1rem;
    height: 1.5rem;
    padding: 0;
    width: 1.5rem;
}

    .cf-button--transparent:hover:not(.cf-button--disabled) {
        color: #717171;
        background-color: transparent;
    }

    .cf-button--transparent:active {
        color: #717171;
        background-color: transparent;
    }

.cf-button--outlined {
    color: #b1b1b1;
    height: 1.875rem;
    width: 1.875rem;
    background: white;
    padding: 0;
}

    .cf-button--outlined:hover {
        color: #717171;
        background-color: #f1f1f1;
    }

        .cf-button--outlined:hover.cf-button--inactive {
            background-color: transparent;
            cursor: not-allowed;
        }

    .cf-button--outlined:active {
        color: #717171;
        background-color: white;
    }

.cf-button--disabled,
.cf-button--disabled:hover,
.cf-button--disabled:active,
.cf-button--disabled:focus {
    color: white;
    background: #717171;
    border-color: #b1b1b1;
    cursor: not-allowed;
}

.cf-button--text {
   /* font-size: 0.713rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #4891dc;
    height: auto;
    margin: 0;
    padding: 5px;*/
    text-decoration: none;
    float: right;
}

    .cf-button--text:hover {
        background: #4A4A4A;
        border-color: #4A4A4A;
        /*color: #3a74b0;*/
    }

    .cf-button--text:focus {
        box-shadow: none;
    }

    .cf-button--text.iconButton {
        padding: 0;
    }

        .cf-button--text.iconButton.small {
            padding: 0;
        }

        .cf-button--text.iconButton i.cf-icon {
            font-size: inherit;
            padding: 0;
            float: none;
            min-width: auto;
            min-height: auto;
            margin: 0;
        }

        .cf-button--text.iconButton .cf-icon {
            vertical-align: inherit;
        }

.cf-button--checked {
    background-color: #f1f1f1;
}

    .cf-button--checked::before {
        content: "\f113";
        color: #71af51;
        display: inline-block;
        font-family: "icons";
        font-size: 0.813rem;
        height: 0.875rem;
        width: 0.875rem;
        text-indent: -0.375rem;
    }

.cf-icon {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-weight: 900;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cf-icon-arrow-north:before {
    content: "";
    display: inline-flex;
    background-image: url('/icon/arrow-solid.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
}

.cf-icon-arrow-south:before {
    content: "";
    display: inline-flex;
    background-image: url('/icon/arrow-solid.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    transform: rotate(180deg);
}

.cf-icon-caret-south:before {
    content: "";
    display: inline-flex;
    background-image: url('/icon/arrow-solid.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    transform: rotate(180deg);
}

.cf-icon-close:before {
    content: "";
    display: inline-flex;
    background-image: url('/icon/croix-supprimer-le-signe.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    margin-left: 5px;
    margin-top: 2px;
    font-size: 14px;
}

.cf-icon-pointer-south:before {
    content: "";
    display: inline-flex;
    background-image: url('/icon/chevron.svg');
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    transform: rotate(270deg);
}

.cf-icon-search:before {
    content: "";
    display: inline-flex;
    background-image: url('/icon/Icon Search.svg');
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    margin-left: 0px;
    margin-top: 5px;
}

i.cf-icon {
    font-size: 1rem;
    padding: 0.156em;
    color: #717171;
    min-width: 1rem;
    min-height: 1rem;
    padding: 0.438em;
}

.cf-button i.cf-icon {
    transition: color linear 0.3s;
    -moz-transition: color linear 0.3s;
    -webkit-transition: color linear 0.3s;
}

    .cf-button i.cf-icon:hover:not(.cf-icon--disabled) {
        color: #3e3e3e;
    }

i.cf-icon--disabled {
    color: #b1b1b1;
    cursor: not-allowed;
}

.cf-input-text {
    border: 1px solid #b1b1b1;
    height: 1.875rem;
    font-size: 0.813rem;
    padding: 0 0.615em;
    min-width: 10.938rem;
}

    .cf-input-text::-ms-clear {
        display: none;
    }

.cf-input-text--small {
    max-width: 6.875rem;
    min-width: 6.875rem;
}

.cf-input-text--large {
    min-width: 15.625rem;
}

.cf-input-text--x-large {
    min-width: 22.5rem;
}

.cf-input-text--elastic {
    min-width: 100%;
    width: 100%;
}

.cf-input-text::-webkit-input-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
}

.cf-input-text:-moz-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
}

.cf-input-text::-moz-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
}

.cf-input-text:-ms-input-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
}

.cf-input-with-icon {
    display: inline-block;
    position: relative;
    margin-right: 0.52rem;
}

.cf-input-with-icon__input {
    border: 1px solid #b1b1b1;
    font-size: 0.813rem;
    height: 1.875rem;
    padding: 0 1.875em 0 0.615em;
    margin-right: -1.875em;
    width: 10.938rem;
}

    .cf-input-with-icon__input.cf-input-invalid {
        margin-right: 0;
    }

.cf-input-with-icon .cf-input-with-icon__i {
    float: none;
    font-size: 1rem;
    position: relative;
    padding: 0;
    margin-right: 0;
    right: 0.313rem;
}

.cf-input-with-icon i.cf-icon:hover {
    color: #717171;
}

.cf-input-with-icon--left .cf-input-with-icon__input {
    border: 1px solid #b1b1b1;
    padding: 0 0.25rem 0 1.375rem;
    position: relative;
    right: 1.875em;
    width: 10.938rem;
    margin-right: -1.875em;
}

    .cf-input-with-icon--left .cf-input-with-icon__input.cf-input-invalid {
        padding: 0 1.875em 0 1.375rem;
        border: 2px solid #9d2140;
    }

.cf-input-with-icon--left .cf-input-with-icon__i {
    left: 0;
    right: auto;
    z-index: 9;
}

.cf-input-with-icon--elastic {
    min-width: 100%;
    width: 100%;
}

    .cf-input-with-icon--elastic > .cf-input-with-icon__input {
        min-width: 100%;
        width: 100%;
    }

.cf-input-label-inside {
    display: flex;
    align-items: center;
}

.cf-input-label-inside__input {
    border: 1px solid #b1b1b1;
    border-right: 0;
    height: 1.875rem;
    font-size: 0.813rem;
    padding: 0 0.615em;
    min-width: 10.938rem;
}

.cf-input-label-inside__span {
    font-size: 0.813rem;
    font-weight: 700;
    color: #717171;
    border: 1px solid #b1b1b1;
    border-left: 0;
    height: 1.875rem;
    line-height: 1.625rem;
    align-self: center;
}

.cf-search--active .cf-icon.cf-icon-search {
    opacity: 0;
}

.cf-search--active .cf-search__icon i.cf-icon.cf-icon-close {
    opacity: 1;
}

.cf-search--icon {
    display: inline-block;
    position: relative;
}

.cf-search__input {
    border: 1px solid #b1b1b1;
    color: #242424;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.813rem;
    height: 1.875rem;
    margin: 0;
    padding: 0 1.846em 0 0.462em;
}

    .cf-search__input::-ms-clear {
        display: none;
    }

.cf-search__input--feature {
    font-size: 1.375rem;
    height: 3.75rem;
    text-indent: 0.5em;
    width: 100%;
}

.cf-search__input::-webkit-input-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.cf-search__input:-moz-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.cf-search__input::-moz-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.cf-search__input:-ms-input-placeholder {
    color: #b1b1b1;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.cf-search--feature {
    width: 100%;
}

    .cf-search--feature button.cf-search__icon {
        width: 1.75rem;
        height: 1.75rem;
        top: 1.25rem;
        right: 0.875rem;
    }

        .cf-search--feature button.cf-search__icon > .cf-icon {
            font-size: 20px;
        }

.cf-search .cf-search__icon {
    float: none;
    font-size: 0.75rem;
    position: absolute;
    margin-right: 0;
    top: 0.566rem;
    right: 0.375rem;
    width: 2rem;
    height: 2rem;
}

    .cf-search .cf-search__icon .cf-icon {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 100ms ease-in-out;
        padding: 0;
    }

        .cf-search .cf-search__icon .cf-icon.cf-icon-close {
            opacity: 0;
        }

.cf-select {
    background-color: white;
    color: #242424;
    display: inline-block;
    vertical-align: top;
    font-size: 0.88rem;
    position: relative;  
    width:100%;
}

    .cf-select ::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 3px;
    }

    .cf-select ::-webkit-scrollbar-track {
        -webkit-border-radius: 30px;
        border-radius: 30px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .cf-select ::-webkit-scrollbar-thumb {
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: #D9D9D9;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    }
        .cf-select ::-webkit-scrollbar-thumb:window-inactive {
            background: #D9D9D910;
        }

    .cf-select:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(191, 222, 255, 0.9);
    }

        .cf-select:focus .cf-select__box {
            border-color: #80bdff;
        }

        .cf-select:focus .cf-select__dropdown {
            border-color: #80bdff;
        }
    .cf-select.cf-select--open {
        border-radius: 2em 2em 0 0 !important;
    }

.cf-select--open .cf-select__dropdown {
    max-height: 13.75rem;
    /*border-top: 1px solid #b1b1b1;*/
}

.cf-select--small .cf-select__box {
    min-width: 6.875rem;
}

.cf-select--large .cf-select__box {
    min-width: 15.625rem;
}

.cf-select--x-large .cf-select__box {
    min-width: 22.5rem;
}

.cf-select--elastic {
    min-width: 100%;
}

    .cf-select--elastic .cf-select__box {
        min-width: 100%;
    }

    .cf-select--elastic .cf-select__value {
        max-width: calc(100% - 1.75rem);
    }

.cf-select--disabled .cf-select__box {
    cursor: not-allowed;
    color: #b1b1b1;
}

.cf-select--disabled .cf-select__caret {
    color: #b1b1b1;
}

.cf-select--disabled .cf-select__value {
    position: relative;
}

.cf-select--disabled .cf-icon.cf-select__caret:hover {
    color: #b1b1b1;
    cursor: not-allowed;
}

.cf-select--invalid .cf-select__box,
.cf-select--invalid .cf-select__box.cf-select__box--multiple {
    border: 2px solid #9d2140;
}

.cf-select--invalid .cf-select__dropdown {
    border-bottom-color: #9d2140;
}

.cf-select--reverse .cf-select__dropdown {
    top: auto;
    bottom: 1.813rem;
}

.cf-select--sidebar-nav .cf-select__box {
    min-width: 11.875rem;
}

.cf-select__box {
    border: 1px solid #b1b1b1;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    height: 1.875rem;
    align-items: center;
    margin: 0;
    padding: 0 2em 0 0.615em;
    position: relative;
    white-space: nowrap;
    min-width: 10.938rem;
}

    .cf-select__box .cf-select__caret {
        float: none;
        margin: 0;
        padding: 6px 5px 6px;
        position: absolute;
        right: 0;
        top: 0;
    }

.cf-select__value {
    position: absolute;
    max-width: calc(100% - 1.75rem);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.cf-select__dropdown {
    background-color: white;
    /*border: 1px solid #b1b1b1;*/
    border-top: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 1.813rem;
    left:0;
    width: 100%;
    margin: 0;
    max-height: 0;
    padding: 0;
}

.cf-select--open .cf-select__dropdown {
    z-index: 99;
}

.cf-select__dropdown .cf-select__clear {
    display: block;
    /*border-bottom: 1px solid #e3e3e3;*/
    padding-right: 1.5rem;
}

.cf-select__dropdown .cf-search {
    display: block;
    text-align: center;
    padding: 10px;
    padding-bottom: 0.438rem;
    margin-top: 2.438rem;
}

.cf-select__dropdown .cf-search__input {
    width: calc(100% - 0.75rem);
}

.cf-select__dropdown .cf-search .cf-search__icon {
    /*top: 0.625rem;*/
    right: 0.75rem;
}

.cf-select__items {
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 5px 10px !important;
}

.cf-select__item {
    background-color: white;
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 13px;
    line-height: 1.846em;
    margin: 0;
    padding: 0.231em 0.769em 0.154em 0.615em;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
    border-radius: 30px;
}

    .cf-select__item:hover,
    .cf-select__item:focus {
        background-color: #e3e3e3;
        outline: none;
    }

    .cf-select__item:last-child {
        border: 0;
    }

    .cf-select__item > span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
    }

.cf-select--multiple .cf-select__box {
    width: 100%;
}

.cf-select--large .cf-select--multiple .cf-select__box {
    width: 100%;
}

.cf-select--x-large .cf-select--multiple .cf-select__box {
    width: 100%;
}

.cf-select--multiple.cf-select--open .cf-select__dropdown {
    border-radius: 0 0 2em 2em !important;
    background: #fdfdfd;
    box-shadow: 4px 4px 24px 0px #00000010 !important;
    padding: 15px;
    /*top: 2.87rem;*/
    animation: scaleY .3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%) 1;
}

.cf-select--multiple .cf-select__box--multiple {
    display: flex;
    border-bottom: 0;
    flex-wrap: wrap;
    height: auto;
    min-height: 1.5rem;
    padding: 4px 26px 1px 1px !important;
}

.cf-select--multiple .cf-select__multi-values {
    display: flex;
    flex-flow: row wrap;
}

.cf-select--multiple .cf-select__multi-value {
    display: inline-block;
    color: #3e3e3e;
    background-color: #defefe;
    height: 2rem;
    line-height: 2.258em;
    margin: 0 0 0 5px;
    padding: 0 1em;
    text-decoration: none;
    font-weight: 500;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
    border-radius: 30px;
    font-size: 14px;
}

    .cf-select--multiple .cf-select__multi-value.cf-select__transition {
        opacity: 1;
    }

    .cf-select--multiple .cf-select__multi-value:hover {
        /*background-color: #b1b1b1;*/
    }

.cf-select--multiple .cf-select__dropdown {
    top: 100%;
}

.cf-select--multiple .cf-select__multi-icon-remove {
    font-size: 8px;
    margin: 0 0 0.25em 0.5em;
    padding: 0;
    float: none;
    min-width: auto;
    min-height: auto;
}

.cf-select--multi-filter.cf-select--open .cf-select__dropdown {
    max-height: 15.625rem;
}

.cf-select--multi-filter .cf-select__item:hover,
.cf-select--multi-filter .cf-select__item:focus,
.cf-select--multi-filter .cf-select__item--selected {
    background-color: #e3e3e3;
    outline: none;
}

.cf-select__buttonbox {
    border-top: 1px solid #e3e3e3;
    text-align: center;
    padding-top: 0.438rem;
}

    .cf-select__buttonbox .cf-button {
        margin-bottom: 0.438rem;
        width: calc(100% - 0.75rem);
    }

.cf-select__searchbox {
    margin: 5px 0;
}