/* #region Common */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--uatl-color-gray);
    font-family: Raleway, Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--uatl-color-green);
    font-family: Raleway, Arial, Helvetica, sans-serif;
}

h1 {
    font-weight: bold;
    letter-spacing: 1px;
    font-family: Raleway, Arial, Helvetica, sans-serif;
    line-height: unset;
    color: inherit;
}

h2 {
    letter-spacing: 1px;
    font-weight: bold;
    font-family: Raleway, Arial, Helvetica, sans-serif;
    line-height: unset;
}

h3 {
    color: var(--uatl-color-green);
    font-family: Raleway, Arial, Helvetica, sans-serif;
}

p {
    font-family: Raleway, Arial, Helvetica, sans-serif;
}

img {
    object-fit: contain;
    max-width: 80%;
    height: 80%;
}

textarea,
input {
    outline: none;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    border: 1px solid var(--uatl-color-green-light);
    transition: all 0.5s ease;
}

    textarea:focus,
    input:focus {
        padding: 10px;
        border: 2px solid var(--uatl-color-green-light);
        transition: all 0.5s ease;
    }

label {
    margin-right: 5px;
}

i {
    display: flex !important;
    align-items: center;
    margin: 0 10px;
}

/* #region flex */

.flex {
    display: flex;
    flex-wrap: wrap;
}

.right {
    justify-content: flex-end;
}

.left {
    justify-content: center;
}

.flex-0 {
    flex: 0;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.flex-5 {
    flex: 5;
}

.column {
    flex-direction: column;
}

.center {
    align-items: center;
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.content {
    display: flex;
    flex-grow: 1;
    min-height: unset;
    margin: unset;
    padding: unset;
    background-color: var(--uatl-color-gray-background);
    flex-direction: column;
}

.container {
    display: flex;
    flex: 1;
    margin: 0 10%;
    padding: 0 10px;
    flex-direction: inherit;
}

.content .container {
    background-color: var(--uatl-color-white);
}

.thumbnail {
    height: auto;
}

.margin-0-10 {
    margin: 0 10px;
}

/* #endregion */

.strong {
    font-weight: bold;
}

.red {
    color: var(--uatl-color-red);
}

/* #region button */

.btn {
    display: flex;
    flex: 0;
    padding: 10px 15px;
    margin: 5px;
    font-size: unset;
    font-weight: unset;
    line-height: unset;
    text-align: center;
    white-space: nowrap;
    vertical-align: unset;
    cursor: pointer;
    border: unset;
    border-radius: 20px;
    color: var(--uatl-color-white);
    outline: none;
}

    .btn.btn-purple {
        background: linear-gradient(to top, var(--uatl-color-blue), var(--uatl-color-purple));
        color: var(--uatl-color-white);
    }

    .btn.btn-orange {
        background: linear-gradient(to top, var(--uatl-color-orange), var(--uatl-color-yellow));
    }

    .btn.btn-gray {
        background: linear-gradient(to top, var(--uatl-color-gray-medium), var(--uatl-color-gray-light));
        color: var(--uatl-color-black);
    }

    .btn.btn-green {
        background: var(--uatl-color-green);
        transition: all 0.5s ease;
    }

        .btn.btn-green:focus,
        .btn.btn-green:hover {
            background: var(--uatl-color-green-light);
            color: var(--uatl-color-white);
            transition: all 0.5s ease;
        }

/* #endregion */

.card {
    display: flex;
    flex: 1;
    border-radius: 5px 5px 0 0;
    box-shadow: var(--uatl-box-shadow);
    padding: 40px;
    flex-direction: inherit;
}

    .card form > div {
        min-width: 75%;
    }

.box {
    position: unset;
    border-radius: 5px;
    background: unset;
    margin-bottom: unset;
    width: unset;
    box-shadow: var(--uatl-box-shadow);
    padding: 30px;
    margin: 10px;
}

.headband {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--uatl-color-green);
    color: var(--uatl-color-white);
    height: 60px;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.5s ease;
}

    .headband:hover {
        background-color: var(--uatl-color-white);
        color: var(--uatl-color-green);
        transition: all 0.5s ease;
    }

/* #endregion */

/* #region Header */

ul#menu-custom {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

    ul#menu-custom li {
        display: flex;
        margin: 20px 0;
    }

        ul#menu-custom li a {
            display: flex;
            position: relative;
            flex: 1;
        }

            ul#menu-custom li a h3 {
                position: absolute;
                top: 0px;
                left: 25px;
                font-size: 26px;
                text-transform: uppercase;
                font-weight: bold;
                color: var(--uatl-color-white);
            }

            ul#menu-custom li a img {
                object-fit: cover;
                flex: 1;
                height: 80px;
            }

header {
    display: flex;
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: var(--uatl-color-white);
    box-shadow: var(--uatl-box-shadow);
}

    header ul.menu {
        display: flex;
        flex: 1;
        padding: 0;
        margin: 0;
    }

        header ul.menu > li {
            display: flex;
            flex: 1;
            flex-direction: column;
        }

            header ul.menu > li > a {
                display: flex;
                padding: 20px 5px;
                justify-content: space-between;
                color: var(--uatl-color-gray-menu);
                transition: all 0.5s ease;
                font-weight: bold;
                letter-spacing: 1px;
            }

            header ul.menu > li:hover > a {
                color: var(--uatl-color-green);
                transition: all 0.5s ease;
            }

            header ul.menu > li > a::after {
                font-family: FontAwesome;
                content: "\f078";
            }

            header ul.menu > li:hover > ul {
                display: flex;
            }

            header ul.menu > li > ul {
                display: none;
                flex-direction: column;
                position: absolute;
                padding: 0;
                margin: 60px 0 0 0;
                border-top: 3px solid var(--uatl-color-green);
                background-color: var(--uatl-color-white);
            }

                header ul.menu > li > ul > li {
                    display: flex;
                }

                    header ul.menu > li > ul > li > a {
                        display: flex;
                        flex: 1;
                        padding: 10px;
                        min-width: 210px;
                        color: var(--uatl-color-gray);
                        background-color: var(--uatl-color-white);
                        transition: all 0.5s ease;
                    }

                        header ul.menu > li > ul > li > a:hover {
                            color: var(--uatl-color-white);
                            background-color: var(--uatl-color-gray);
                            transition: all 0.5s ease;
                        }

    header.minimized > div.container > div.flex-1 > div.flex-1:first-child {
        display: none;
    }

    header.minimized .flex.flex-1.column .flex.flex-1 p {
        height: 60px;
        padding: 10px 0;
        margin: 0;
    }

/* #endregion */

/* #region breadcrumb */

ol.breadcrumb {
    display: flex;
    flex: 0;
    padding: 0;
    margin: 10px 0;
}

    ol.breadcrumb > li {
        display: flex;
        margin: 0 10px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to top, var(--uatl-color-gray-medium), var(--uatl-color-gray-background));
        color: var(--uatl-color-black);
        border-radius: 20px;
        border: 1px solid var(--uatl-color-gray-medium);
    }

        ol.breadcrumb > li:first-child {
            color: var(--uatl-color-white);
            background: var(--uatl-color-green-light);
            border: 1px solid var(--uatl-color-green);
        }

        ol.breadcrumb > li:last-child {
            padding: 0 15px;
        }

        ol.breadcrumb > li > a {
            display: flex;
            padding: 10px 15px;
            color: inherit;
        }

/* #endregion */

/* #region Footer */

footer {
    display: flex;
    background-color: var(--uatl-color-footer);
    padding: 10px 0;
    margin-top: 10px;
}

    footer ul.menu {
        column-count: 2;
    }

        footer ul.menu li {
            list-style: none;
        }

            footer ul.menu li a {
                color: var(--uatl-color-white);
                transition: all 0.5s ease;
            }

                footer ul.menu li a:hover {
                    color: var(--uatl-color-green);
                    transition: all 0.5s ease;
                }

/* #endregion */

/* #region to-top */

.to-top {
    z-index: 20;
    position: fixed;
    right: 10%;
    bottom: 5%;
}

    .to-top a {
        background-color: var(--uatl-color-gray-heavy);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        color: var(--uatl-color-green-light);
        transition: all 0.5s ease;
    }


        .to-top a:hover {
            background-color: var(--uatl-color-green-light);
            color: var(--uatl-color-gray-heavy);
            transition: all 0.5s ease;
        }

/* #endregion */

/* #region schedule */

.schedule {
}

    .schedule > h2 {
    }

    .schedule > div {
        column-count: 2;
        column-gap: 20px;
    }

        .schedule > div > div {
            break-inside: avoid;
        }

            .schedule > div > div > div {
                display: flex;
                align-items: center;
                margin: 0 0 5px 0;
            }

                .schedule > div > div > div > h3 {
                }

                .schedule > div > div > div > i {
                    margin: 0 5px;
                }

                .schedule > div > div > div > p {
                    margin: 0;
                }

/* #endregion */

/* #region custom style UATL */

.uatl-box {
    background-color: #f6f6f6;
    border-width: 1px;
    border-color: #f6f6f6;
    border-left-width: 3px;
    border-left-color: #5dbcaf;
    border-style: solid;
    justify-content: center;
    align-items: center;
    font-size: large;
    min-height: 50PX;
    margin: 10px;
}

.uatl_wish_second_round_hide {
    display: none;
}
/* Accordion styles */
/* Accordion styles */
.accordion {
    column-count: none !important;
}

    .accordion input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

    .accordion .row {
        display: -webkit-box;
        display: flex;
    }

        .accordion .row .col {
            -webkit-box-flex: 1;
            flex: 1;
        }

            .accordion .row .col:last-child {
                margin-left: 1em;
            }

.uatl-tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.uatl-tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.uatl-tab-label {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1em;
    background: lightgray;
    font-weight: bold;
    cursor: pointer;
    margin-right: 0px;
    /* Icon */
}

    .uatl-tab-label:hover {
    }

    .uatl-tab-label::after {
        content: "\276F";
        width: 1em;
        height: 1em;
        text-align: center;
        -webkit-transition: all 0.35s;
        transition: all 0.35s;
    }

.uatl-tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.uatl-tab-close {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}

    .uatl-tab-close:hover {
        background: #1a252f;
    }

input:checked + .uatl-tab-label {
    background: lightgray;
}

    input:checked + .uatl-tab-label::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

input:checked ~ .uatl-tab-content {
    max-height: none;
    padding: 1em;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.form-control {
    position: relative;
}

.toggle-password {
    cursor: pointer;
    margin-right: 10px;
    position: absolute;
}

/*.field-icon {
    float: right;
    margin-top: -12px;
    left: 390px;
    top: -13px;
    position: relative;
    z-index: 2;
}

    @media only screen and ( max-width: 600px){
        .field-icon {
            left: 165px;
        }
}*/

/* #endregion*/

/* #region Override Framework */

.ojcVideoPlayer {
    flex: 1;
    margin: 10px;
}

.post-custom {
    display: flex;
    padding: 0 10px;
}

    .post-custom > div {
        display: flex;
        flex: 1;
        justify-content: space-between;
        align-items: center;
    }

.displayPosts-list ul {
    padding: 0;
}

.post-list-custom {
    text-align: unset !important;
    float: unset !important;
    display: unset !important;
    width: unset !important;
    height: unset !important;
}

    .post-list-custom .padding-wrapper {
        position: unset !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
        background-color: unset !important;
    }

        .post-list-custom .padding-wrapper img {
            margin: 10px 0;
        }

    .post-list-custom .post {
        display: none;
    }

.workshop ul {
    display: flex;
}

.post-workshop-custom {
    text-align: unset !important;
    float: unset !important;
    display: unset !important;
    width: unset !important;
    height: unset !important;
    margin: 0 10px !important;
}

    .post-workshop-custom .padding-wrapper {
        position: relative !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
        background-color: unset !important;
    }

        .post-workshop-custom .padding-wrapper img {
            margin: 0 !important;
            width: 100% !important;
            height: 80px !important;
            display: unset !important;
            max-width: unset !important;
            z-index: unset !important;
            box-shadow: unset !important;
            object-fit: cover !important;
        }

    .post-workshop-custom .post {
        display: none !important;
    }

.post-menu-custom {
    text-align: unset !important;
    float: unset !important;
    display: unset !important;
    width: unset !important;
    height: unset !important;
}

    .post-menu-custom .padding-wrapper {
        position: relative !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
        background-color: unset !important;
    }

        .post-menu-custom .padding-wrapper img {
            margin: 10px 0 !important;
            height: 80px !important;
            object-fit: cover !important;
        }

    .post-menu-custom .post {
        padding: unset !important;
        position: absolute !important;
        bottom: unset !important;
        z-index: 10 !important;
        top: 35px !important;
        left: 25px !important;
        background: unset !important;
        height: unset !important;
        min-height: unset !important;
        width: unset !important;
        display: initial !important;
    }

        .post-menu-custom .post h3 {
            line-height: unset !important;
            color: var(--uatl-color-white) !important;
            position: unset !important;
            font-family: inherit !important;
            text-transform: uppercase !important;
            margin: 0 !important;
            font-size: 26px !important;
            font-weight: bold !important;
            height: unset !important;
        }

            .post-menu-custom .post h3 a {
                color: inherit !important;
            }

.ojcSimpleCarousel {
    margin: 0 20px;
}

.ojcGrid {
    position: unset !important;
    zoom: unset !important;
}

    .ojcGrid .control-header {
        border-right: 1px solid var(--uatl-color-green-light);
        border-left: 1px solid var(--uatl-color-green-light);
        border-top: 1px solid var(--uatl-color-green-light);
        padding: 5px;
        background-color: unset;
    }

        .ojcGrid .control-header .toolbar-container {
            margin: 0;
            padding: 0;
        }

            .ojcGrid .control-header .toolbar-container .btn {
                color: unset;
                background-color: unset;
            }

        .ojcGrid .control-header .search-panel {
            padding: 0;
        }

            .ojcGrid .control-header .search-panel .btn.btn-primary {
                background: var(--uatl-color-green);
                transition: all 0.5s ease;
            }

            .ojcGrid .control-header .search-panel .btn.btn-default {
                background: var(--uatl-color-gray-light);
                border: 1px solid var(--uatl-color-black);
                color: var(--uatl-color-black);
            }

            .ojcGrid .control-header .search-panel .btn {
                display: unset;
            }

            .ojcGrid .control-header .search-panel form input {
                margin: 0;
            }

    .ojcGrid .mainGridTable {
        border: 1px solid var(--uatl-color-green-light);
        width: unset;
        background: unset;
        padding: 5px;
    }

        .ojcGrid .mainGridTable table.datagrid > thead > tr > th > .sortable,
        .ojcGrid .mainGridTable table.datagrid > thead > tr > th > .sortable:hover {
            color: var(--uatl-color-green);
        }

        .ojcGrid .mainGridTable table.datagrid > thead > tr.colHeader > th div.colSortIcon {
            right: 0px;
        }

#RecoverPassword button[type="submit"] {
    color: var(--uatl-color-black);
}

div.grid-col > div.ojcGrid > div.control-header > div.toolbar-container > div.btn-group {
    display: flex;
}

td i {
    display: inline-block !important;
    margin: 0 !important
}

/* #endregion Override Framework */
/* #region Variables */
:root {
    --uatl-color-white: #ffffff;
    --uatl-color-black: #000000;
    --uatl-color-purple: #603d9f;
    --uatl-color-purple-light: #8598ea;
    --uatl-color-blue: #33388e;
    --uatl-color-green: #35a091;
    --uatl-color-green-light: #5dbcaf;
    --uatl-color-yellow: #ff9f39;
    --uatl-color-orange: #ff7518;
    --uatl-color-orange-light: #ff6600;
    --uatl-color-gray: #494949;
    --uatl-color-gray-medium: #dedede;
    --uatl-color-gray-light: #fafafa;
    --uatl-color-gray-heavy: #333333;
    --uatl-color-gray-menu: #939393;
    --uatl-color-gray-background: #f9f9f9;
    --uatl-color-olive: rgba(142,165,24,0.75);
    --uatl-color-tomato: #d87c52;
    --uatl-color-sand: #ffff99;
    --uatl-color-footer: #2f2f2f;
    --uatl-color-red: #ff0000;
    --uatl-box-shadow: 1px 1px 4px 1px #c9c9c9;
}

/* #endregion */

/* #region Fonts */

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Raleway Medium'), local('Raleway-Medium'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwN4rWqZPAA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* #endregion */


/* Responsive page d'accueil */



.burger-menu .menu > li:nth-child(4) > a::after {
    display: none;
}

@media screen and (max-width: 1100px) {
    body > div > div > div.flex-1.box,
    body > div > div > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        body > div > div > div:nth-child(3) > div:nth-child(1),
        body > div > div > div:nth-child(3) > div:nth-child(2),
        body > div > div > div:nth-child(3) > div.flex.column.flex-1.box.center.space-between {
            width: 75%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        body > div > div > div:nth-child(1) > div:nth-child(3) {
            width: 75%;
            padding: 0px;
        }

    .box {
        width: 75%;
        text-align-last: center;
        padding: 20px;
        margin: 0px;
        margin-top: 20px;
        padding-top: 10px;
        border-radius: 5px;
    }

    body > div > div {
        margin: 0px !important;
        padding: 0px !important;
    }

    .ojcVideoPlayer {
        margin: 0px;
        padding-bottom: 10px;
    }

    body > div > div > div.flex-1.box > div:nth-child(3) > p:nth-child(1) > .btn-green,
    body > div > div > div.flex-1.box > div:nth-child(2) > p > .btn-orange {
        min-width: 320px;
    }

    #menu-custom > li {
        width: 320px;
        height: 105px;
    }

    body > div > div > div.flex-1.box > div.flex.left > p > a > img {
        width: 320px !important;
        display: initial !important;
        margin-top: 5px;
    }

    header ul.menu {
        display: none;
    }

    .burger {
        border-radius: 5px;
        position: absolute;
        top: 0px;
        left: 0px;
        display: inline-block;
        visibility: visible;
        background-image: url(Images/burger_violet.png);
        background-size: 35px 30px;
        background-repeat: no-repeat;
        transition: all .4s ease;
    }

        .burger.open {
            transform: rotate(90deg);
            z-index: 1030;
            transition: transform 0.4s ease;
        }

    .burger-menu > ul.menu.vertical.open {
        display: block;
        background-color: white;
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 0;
        margin: 0;
        font-size: 18px;
        max-width: 100%;
        padding-top: 75px;
        padding-inline: 20px;
    }

    ul.menu.open {
        display: block;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        transition: .4s;
        height: 100%;
    }

    header ul.menu > li > a {
        justify-content: flex-start;
        font-size: 26px;
        line-height: 50px;
    }

    ul.menu.open li {
        height: 20px;
        display: contents;
    }

    .burger-menu .menu > li > a::after {
        display: none;
    }

    body > div > div > div.flex-1.box {
        align-self: center;
    }

    body > header > div > div > div.partContainer.partContainerFrame > div {
        justify-content: center;
    }
}

@media screen and (max-width: 700px) {
    body > header > div {
        margin: 0 0% !important;
        margin-left: 10% !important;
    }
    body > header > div > div > div:nth-child(1) > div > div {
        justify-content: flex-end !important;
    }

    .box {
        padding: 0px;
        width: 100%;
        border-radius: 0px;
    }

        .box.offer-account {
            padding: 10px;
        }

    body > div > div > div:nth-child(1) > div:nth-child(3) {
        width: 100%;
    }


    body > div > div > div:nth-child(3) > div:nth-child(1),
    body > div > div > div:nth-child(3) > div:nth-child(2),
    body > div > div > div:nth-child(3) > div.flex.column.flex-1.box.center.space-between {
        width: 100%;
    }
}

.blockOverlay {
    background-image: url(Images/hourglass.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 72px;
}