/*## PAGE: edit ##*/
/*FWK Override*/
.main-header .logo {
    background-image: url(Images/uatl-logo2023.jpg);
}

.navbar-left img {
    content: url(Images/uatl-logo2023.jpg);
}

.red {
    color: red;
}

/**FWK Override**/
.blockOverlay {
    background-image: url(Images/loading.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

.mce-container[aria-label="Selection de fichier"] {
    width: auto !important;
    height: auto !important;
}

    .mce-container[aria-label="Selection de fichier"] > div > div.mce-container-body {
        width: 1050px !important;
        height: 550px !important;
    }

ul.ojcDropMenu-accordion li.item.submenu.language-menu a span {
    font-size:larger;
    font-weight:bold;
}
/* Special pane for Tag selection*/
.TagSelector > .pane_content {
     width: 100%;
    float: left;
}

.TagSelector > .toolbar {
    float: left;
    /* margin-left: 10px; */
}

.btn-valid {
    color: #fff !important;
    background-color: forestgreen;
    border-color: forestgreen;
}

    .btn-valid:hover {
        background-color: darkseagreen;
    }

.btn-refuse {
    color: #fff !important;
    background-color: red;
    border-color: red;
}

    .btn-refuse:hover {
        background-color: indianred;
    }

.color-cell-tiv {
    background-color: khaki !important;
}


/*#region Edit */

/* #region Common */
.edit {
    color: var(--uatl-color-gray);
    font-family: Raleway, Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 90%;
}

.edit .pane_content {
    padding: 0px;
}

.edit + #sidePanel #partTypes {
    /* position: fixed; */
    border: 1px solid #CCCCCC;
    /* width: 20%; */
    height: 75%;
    overflow: auto;
}

.edit html {
    scroll-behavior: smooth;
}

.edit body {
    color: var(--uatl-color-gray);
    font-family: Raleway, Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.edit a {
    color: var(--uatl-color-green);
    font-family: Raleway, Arial, Helvetica, sans-serif;
}

.edit h1 {
    font-weight: bold;
    letter-spacing: 1px;
    font-family: Raleway, Arial, Helvetica, sans-serif;
    line-height: unset;
    color: inherit;
}

.edit 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;
}

.edit p {
    font-family: Raleway, Arial, Helvetica, sans-serif;
}

.edit img {
    object-fit: contain;
    max-width: 80%;
    height: 80%;
}

.edit textarea,
.edit input {
    outline: none;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    border: 1px solid var(--uatl-color-green-light);
    transition: all 0.5s ease;
}

    .edit textarea:focus,
    .edit input:focus {
        padding: 10px;
        border: 2px solid var(--uatl-color-green-light);
        transition: all 0.5s ease;
    }

.edit label {
    margin-right: 5px;
}

.edit i {
    display: flex !important;
    align-items: center;
    margin: 0 10px;
}

/* #region flex */

.edit .flex {
    display: flex;
    flex-wrap: wrap;
}

.edit .right {
    justify-content: flex-end;
}

.edit .left {
    justify-content: flex-start;
}

.edit .flex-0 {
    flex: 0;
}

.edit .flex-1 {
    flex: 1;
}

.edit .flex-2 {
    flex: 2;
}

.edit .flex-3 {
    flex: 3;
}

.edit .flex-4 {
    flex: 4;
}

.edit .flex-5 {
    flex: 5;
}

.edit .column {
    flex-direction: column;
}

.edit .center {
    align-items: center;
    justify-content: center;
}

.edit .space-between {
    justify-content: space-between;
}

.edit .content {
    display: flex;
    flex-grow: 1;
    min-height: unset;
    margin: unset;
    padding: unset;
    background-color: var(--uatl-color-gray-background);
    flex-direction: column;
}

.edit .container {
    display: flex;
    flex: 1;
    /* margin: 0 10%; */
    padding: 0px 10px;
    flex-direction: inherit;
}

.edit .content .container {
    background-color: var(--uatl-color-white);
}

.edit .thumbnail {
    height: auto;
}

.margin-0-10 {
    margin: 0 10px;
}

/* #endregion */

.edit .strong {
    font-weight: bold;
}

.edit .red {
    color: var(--uatl-color-red);
}

/* #region button */

.edit .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;
}

    .edit .btn.btn-purple {
        background: linear-gradient(to top, var(--uatl-color-blue), var(--uatl-color-purple));
        color: var(--uatl-color-white);
    }

    .edit .btn.btn-orange {
        background: linear-gradient(to top, var(--uatl-color-orange), var(--uatl-color-yellow));
    }

    .edit .btn.btn-gray {
        background: linear-gradient(to top, var(--uatl-color-gray-medium), var(--uatl-color-gray-light));
        color: var(--uatl-color-black);
    }

    .edit .btn.btn-green {
        background: var(--uatl-color-green);
        transition: all 0.5s ease;
    }

        .edit .btn.btn-green:focus,
        .edit .btn.btn-green:hover {
            background: var(--uatl-color-green-light);
            color: var(--uatl-color-white);
            transition: all 0.5s ease;
        }

/* #endregion */

.edit .card {
    display: flex;
    flex: 1;
    border-radius: 5px 5px 0 0;
    box-shadow: var(--uatl-box-shadow);
    padding: 40px;
    flex-direction: inherit;
}

    .edit .card form > div {
        min-width: 75%;
    }

.edit .box {
    position: unset;
    border-radius: 5px;
    background: unset;
    margin-bottom: unset;
    width: unset;
    box-shadow: var(--uatl-box-shadow);
    padding: 5px;
    margin: 4px;
}

.edit .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;
}

    .edit .headband:hover {
        background-color: var(--uatl-color-white);
        color: var(--uatl-color-green);
        transition: all 0.5s ease;
    }

/* #endregion */

/* #region Header */

.edit ul#menu-custom {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

    .edit ul#menu-custom li {
        display: flex;
        margin: 20px 0;
    }

.edit ul#menu-custom li a {
    display: flex;
    position: relative;
    flex: 1;
}

.edit 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);
}

.edit ul#menu-custom li a img {
    object-fit: cover;
    flex: 1;
    height: 80px;
}

.edit header {
    display: flex;
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: var(--uatl-color-white);
    box-shadow: var(--uatl-box-shadow);
}

.edit header ul.menu {
    display: flex;
    flex: 1;
    padding: 0;
    margin: 0;
}

.edit header ul.menu > li {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.edit 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;
}

.edit header ul.menu > li:hover > a {
    color: var(--uatl-color-green);
    transition: all 0.5s ease;
}

.edit header ul.menu > li > a::after {
    font-family: FontAwesome;
    content: "\f078";
}

.edit header ul.menu > li:hover > ul {
    display: flex;
}

.edit 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);
}

.edit header ul.menu > li > ul > li {
    display: flex;
}

.edit 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;
}

.edit header ul.menu > li > ul > li > a:hover {
    color: var(--uatl-color-white);
    background-color: var(--uatl-color-gray);
    transition: all 0.5s ease;
}

.edit header.minimized > div.container > div.flex-1 > div.flex-1:first-child {
    display: none;
}

.edit header.minimized .flex.flex-1.column .flex.flex-1 p {
    height: 60px;
    padding: 10px 0;
    margin: 0;
}

/* #endregion */

/* #region breadcrumb */

.edit ol.breadcrumb {
    display: flex;
    flex: 0;
    padding: 0;
    margin: 10px 0;
}

.edit 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);
}

.edit ol.breadcrumb > li:first-child {
    color: var(--uatl-color-white);
    background: var(--uatl-color-green-light);
    border: 1px solid var(--uatl-color-green);
}

.edit ol.breadcrumb > li:last-child {
    padding: 0 15px;
}

.edit ol.breadcrumb > li > a {
    display: flex;
    padding: 10px 15px;
    color: inherit;
}

/* #endregion */

/* #region Footer */

.edit footer {
    display: flex;
    background-color: var(--uatl-color-footer);
    padding: 10px 0;
}

.edit footer ul.menu {
    column-count: 2;
}

.edit footer ul.menu li {
    list-style: none;
}

.edit footer ul.menu li a {
    color: var(--uatl-color-white);
    transition: all 0.5s ease;
}

.edit footer ul.menu li a:hover {
    color: var(--uatl-color-green);
    transition: all 0.5s ease;
}

/* #endregion */

/* #region to-top */

.edit .to-top {
    z-index: 20;
    position: fixed;
    right: 10%;
    bottom: 5%;
}

    .edit .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;
    }


        .edit .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 */

.edit .schedule {
}

    .edit .schedule > h2 {
    }

    .edit .schedule > div {
        column-count: 2;
        column-gap: 20px;
    }

        .edit .schedule > div > div {
            break-inside: avoid;
        }

            .edit .schedule > div > div > div {
                display: flex;
                align-items: center;
                margin: 0 0 5px 0;
            }

                .edit .schedule > div > div > div > h3 {
                }

                .edit .schedule > div > div > div > i {
                    margin: 0 5px;
                }

                .edit .schedule > div > div > div > p {
                    margin: 0;
                }

/* #endregion */

/* #region custom style UATL */

.edit .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;
}

.edit .uatl_wish_second_round_hide {
    display: none;
}
/* Accordion styles */
/* Accordion styles */
.edit .accordion {
    column-count: none !important;
}

    .edit .accordion input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

    .edit .accordion .row {
        display: -webkit-box;
        display: flex;
    }

        .edit .accordion .row .col {
            -webkit-box-flex: 1;
            flex: 1;
        }

            .accordion .row .col:last-child {
                margin-left: 1em;
            }

.edit .uatl-tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.edit .uatl-tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.edit .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 */
}

    .edit .uatl-tab-label:hover {
    }

    .edit .uatl-tab-label::after {
        content: "\276F";
        width: 1em;
        height: 1em;
        text-align: center;
        -webkit-transition: all 0.35s;
        transition: all 0.35s;
    }

.edit .uatl-tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.edit .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;
}

    .edit .uatl-tab-close:hover {
        background: #1a252f;
    }

.edit input:checked + .uatl-tab-label {
    background: lightgray;
}

.edit input:checked + .uatl-tab-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.edit input:checked ~ .uatl-tab-content {
    max-height: 100vh;
    padding: 1em;
}

.ui-tabs .ui-tabs-nav li a {
    color: #000 !important;
}
/* #endregion*/

/* #region Override Framework */

.edit .ojcVideoPlayer {
    flex: 1;
    margin: 10px;
}

.edit .post-custom {
    display: flex;
    padding: 0 10px;
}

    .edit .post-custom > div {
        display: flex;
        flex: 1;
        justify-content: space-between;
        align-items: center;
    }

.edit .displayPosts-list ul {
    padding: 0;
}

.edit .post-list-custom {
    text-align: unset !important;
    float: unset !important;
    display: unset !important;
    width: unset !important;
    height: unset !important;
}

    .edit .post-list-custom .padding-wrapper {
        position: unset !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
        background-color: unset !important;
    }

        .edit .post-list-custom .padding-wrapper img {
            margin: 10px 0;
        }

    .edit .post-list-custom .post {
        display: none;
    }

.edit .workshop ul {
    display: flex;
}

.edit .post-workshop-custom {
    text-align: unset !important;
    float: unset !important;
    display: unset !important;
    width: unset !important;
    height: unset !important;
    margin: 0 10px !important;
}

    .edit .post-workshop-custom .padding-wrapper {
        position: relative !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
        background-color: unset !important;
    }

        .edit .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;
        }

    .edit .post-workshop-custom .post {
        display: none !important;
    }

.edit .post-menu-custom {
    text-align: unset !important;
    float: unset !important;
    display: unset !important;
    width: unset !important;
    height: unset !important;
}

    .edit .post-menu-custom .padding-wrapper {
        position: relative !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
        background-color: unset !important;
    }

        .edit .post-menu-custom .padding-wrapper img {
            margin: 10px 0 !important;
            height: 80px !important;
            object-fit: cover !important;
        }

    .edit .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;
    }

        .edit .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;
        }

            .edit .post-menu-custom .post h3 a {
                color: inherit !important;
            }

.edit .ojcSimpleCarousel {
    margin: 0 20px;
}

.edit .ojcGrid {
    position: unset !important;
    zoom: unset !important;
}

    .edit .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;
    }

        .edit .ojcGrid .control-header .toolbar-container {
            margin: 0;
            padding: 0;
        }

            .edit .ojcGrid .control-header .toolbar-container .btn {
                color: unset;
                background-color: unset;
            }

        .edit .ojcGrid .control-header .search-panel {
            padding: 0;
        }

            .edit .ojcGrid .control-header .search-panel .btn.btn-primary {
                background: var(--uatl-color-green);
                transition: all 0.5s ease;
            }

            .edit .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);
            }

            .edit .ojcGrid .control-header .search-panel .btn {
                display: unset;
            }

.edit .ojcGrid .control-header .search-panel form input {
    margin: 0;
}

    .edit .ojcGrid .mainGridTable {
        border: 1px solid var(--uatl-color-green-light);
        width: unset;
        background: unset;
        padding: 5px;
    }

        .edit .ojcGrid .mainGridTable table.datagrid > thead > tr > th > .sortable,
        .edit .ojcGrid .mainGridTable table.datagrid > thead > tr > th > .sortable:hover {
            color: var(--uatl-color-green);
        }

        .edit .ojcGrid .mainGridTable table.datagrid > thead > tr.colHeader > th div.colSortIcon {
            right: 0px;
        }

.edit #RecoverPassword button[type="submit"] {
    color: var(--uatl-color-black);
}

.edit div.grid-col > div.ojcGrid > div.control-header > div.toolbar-container > div.btn-group {
    display: flex;
}

.edit td i {
    display: inline-block !important;
    margin: 0 !important
}

/* #endregion Override Framework */
/* #region Variables */
.edit :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 */



/*#endregion*/
.calendar-current_year {
	color: greenyellow !important;
}
li.calendar-current_year > a > span {
	color: greenyellow !important;
}
.calendar-draft_year {
	color: darkorange !important;
}

li.calendar-draft_year > a > span {
	
	color: darkorange !important;
}

