:root {
    --sidebar-size-desktop: 300px;
    --sidebar-size-desktop-admin: 300px;
    --menu-size-desktop: 102px;
}

@font-face {
    font-family: 'telegraf-Regular';
    src: url('/webroot/font/PPTelegraf-Regular.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'telegraf-UltraBold';
    src: url('/webroot/font/PPTelegraf-UltraBold.otf') format('otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'telegraf-UltraLight';
    src: url('/webroot/font/PPTelegraf-UltraLight.otf') format('otf');
    font-weight: 100;
    font-style: normal;
}

body {
    font-family: "telegraf-Regular", sans-serif;
    font-weight: normal;
    font-style: normal;
    background-color: #121140;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--menu-size-desktop));
}

.content {
    flex: 1;
    margin-top: var(--menu-size-desktop);
}

.sidebar-wrapper {
    background:
        linear-gradient(#1E1E1E, #1E1E1E) padding-box,
        linear-gradient(to top, #004AAD, #CB6CE6) border-box;
    border-right: 3px solid transparent;

    width: var(--sidebar-size-desktop);
    margin-top: var(--menu-size-desktop) !important;
    height: 100vh;
    position: fixed;
}

.sidebar-wrapper-admin {
    background:
        linear-gradient(#1E1E1E, #1E1E1E) padding-box,
        linear-gradient(to top, #004AAD, #CB6CE6) border-box;
    border-right: 3px solid transparent;

    width: var(--sidebar-size-desktop-admin);
    margin-top: var(--menu-size-desktop) !important;
    height: calc(100vh - var(--menu-size-desktop));
    position: fixed;
}

.sidebar-wrapper-admin-mobile {
    background:
        linear-gradient(#1E1E1E, #1E1E1E) padding-box,
        linear-gradient(to top, #004AAD, #CB6CE6) border-box;
    border-right: 3px solid transparent;
    width: 100%;
    height: 100vh;
    position: fixed;
    margin-top: auto;
    top: 0;
    left: 100%;
    z-index: 999999;
    transition: .5s;
}

@media screen and (max-width:1200px) {
    .sidebar-wrapper-admin {
        width: var(--sidebar-size-desktop-admin);
    }
}
@media screen and (max-width:991px) {
    .sidebar-wrapper-admin {
        width: var(--sidebar-size-desktop-admin);
    }
}


.sidebar-wrapper-mobile {
    background:
        linear-gradient(#1E1E1E, #1E1E1E) padding-box,
        linear-gradient(to top, #004AAD, #CB6CE6) border-box;
    border-right: 3px solid transparent;
    width: 100%;
    height: 100vh;
    position: fixed;
    margin-top: auto;
    top: 0;
    left: 100%;
    z-index: 999999;
    transition: .5s;
}

.wrapper-mobile-menu {
    width: 75vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper-mobile-menu>.menu-item-wrapper>.menu-item-coffee,
.wrapper-mobile-menu>.menu-item-wrapper>.menu-item {
    font-size: 40px!important;
    text-decoration: solid !important;
}

.wrapper-mobile-menu>.menu-item-wrapper>.menu-item-coffee>i,
.wrapper-mobile-menu>.menu-item-wrapper>.menu-item>i {
    width: 80px !important;
}

@media screen and (max-width:991px) {
    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item,
    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item-coffee {
        font-size: 30px !important;
        text-decoration: solid !important;
    }

    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item>i,
    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item-coffee>i {
        width: 60px !important;
    }
}

@media screen and (max-width:640px) {
    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item,
    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item-coffee {
        font-size: 20px !important;
        text-decoration: solid !important;
    }

    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item>i,
    .wrapper-mobile-menu>.menu-item-wrapper>.menu-item-coffee>i {
        width: 30px !important;
    }
}


.close-menu-mobile-wrapper {
    color: #fff;
    font-size: 50px;
    position: absolute;
    top: 25px;
    right: 50px;
    cursor: pointer;
}

.open-menu-mobile {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.content-wrapper {
    margin-left: var(--sidebar-size-desktop) !important;
    width: calc(100% - var(--sidebar-size-desktop));
}

.content-wrapper-admin {
    margin-left: var(--sidebar-size-desktop-admin) !important;
    width: calc(100% - var(--sidebar-size-desktop-admin));
}

@media screen and (max-width: 991px) {
    .content-wrapper {
        margin-left: 0 !important;
        width: 100%;
    }

    .content-wrapper-admin {
        margin-left: 0 !important;
        width: 100%;
    }
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    background-color: #121140;
}

.ultrabold {
    font-family: 'telegraf-UltraBold', sans-serif;
    font-style: normal;
    font-weight: bold;
}

.ultralight {
    font-family: 'telegraf-UltraLight', sans-serif;
    font-style: normal;
    font-weight: 100;
}

.border-radius-1 {
    border-radius: 1em;
}

.border-radius-50 {
    border-radius: 50em;
}

.dropdown-menu-purple {
    padding-top: 45px;
    top: 0px !important;
    z-index: 0;
    width: 200px;
    border: 0px solid transparent;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    background-color: #8d63d9;
}
.dropdown-menu-gradian {
    padding-top: 45px;
    top: 0px !important;
    z-index: 0;
    width: 200px;
    border: 0px solid transparent;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
}

.dropdown-menu-purple>li>a, .dropdown-menu-gradian>li>a {
    color: #fff;
}

.dropdown-menu-purple>li:last-child>a, .dropdown-menu-gradian>li:last-child>a {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}


.btn-tradiscord {
    text-align: center;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}

.cursor-pe {
    cursor: pointer;
}

.min-width-auto {
    min-width: inherit !important;
}

.btn-tradiscord-gradian {
    font-weight: bold;
    min-width: 200px;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border: 3px solid transparent;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    color: #fff;
    transition: border-image 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-tradiscord-gradian:hover,
.btn-tradiscord-gradian-large:hover,
.btn-tradiscord-gradian-small:hover {
    animation: rotateGradient .8s linear infinite;
    background-size: 200% 200%;
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.border-gradiant {
    background:
        linear-gradient(#1e1e1e, #1e1e1e) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border: 4px solid transparent;
}

.underline-gradiant {
    border-bottom: 4px solid #8d63d9;
}

.gradiant-languages {
    background:
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border-top: 4px solid transparent;
}

.border-gradiant-top {
    background:
        linear-gradient(#31373d, #31373d) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border-top: 4px solid transparent;
}

.border-gradiant-bottom {
    background:
        linear-gradient(#31373d, #31373d) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border-bottom: 4px solid transparent;
}

.btn-tradiscord-gradian-large {
    font-weight: bold;
    min-width: 300px;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border: 4px solid transparent;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 20px;
    color: #fff;
}

.btn-tradiscord-white {

    font-weight: bold;
    min-width: 200px;
    background-color: #fff;
    border: 3px solid transparent;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.btn-tradiscord-gradian-small {
    font-weight: bold;
    min-width: 150px;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(to right, #004AAD, #CB6CE6) border-box;
    border: 2px solid transparent;

    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
    color: #fff;
}

.btn-tradiscord-purple {

    font-weight: bold;
    min-width: 200px;
    background-color: #8d63d9;
    border: 3px solid transparent;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.inline {
    min-width: 0px !important;
}
.inline-mobile {
    min-width: 200px !important;
}

@media screen and (max-width:991px){
    .inline-mobile {
        min-width: 0px !important;
    }
}

.btn-buymeacoffee {

    font-weight: bold;
    min-width: 200px;
    background-color: #ffd900;
    border: 3px solid transparent;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.btn-buymeacoffee:hover>.coffee {
    position: relative;
    top: 0;
    animation: bounce 3s ease infinite;
}

@keyframes bounce {
    from {
        top: 0px;
    }

    15% {
        top: -3px;
    }

    30% {
        top: 3px;
        transform: none;
    }

    45% {
        top: -3px;
    }

    70% {
        top: 3px;
    }

    85% {
        top: -3px;
    }

    90% {
        top: 0px;
        transform: rotateY(360deg);
    }

    90.01% {
        top: 0px;
        transform: none;
    }

    to {
        top: 3px;
    }
}

.btn-tradiscord-purple::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: left 0.3s ease-in-out;
}

.btn-tradiscord-purple:hover {
    color: #1e1e1e;
}

.btn-tradiscord-purple:hover::before {
    left: 0;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
        border-color: #fff !important;
    }
}

.btn-tradiscord-purple-large {
    font-weight: bold;
    min-width: 300px;
    background-color: #8d63d9;
    border: 4px solid transparent;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 20px;
    color: #fff;
}

.btn-tradiscord-purple-small {
    font-weight: bold;
    min-width: 150px;
    background-color: #8d63d9;
    border: 2px solid transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
    color: #fff;
}

.active-link {
    border-left: 10px solid #CB6CE6;
}

.menu-item {
    color: #fff;
    text-decoration: none;
}
.menu-item-coffee {
    color: #000;
    text-decoration: none;
}

.menu-item-wrapper:hover {
    background-color: #0a253c;
}
.menu-item-wrapper-coffee:hover {
    background-color: #fff!important;
}

.footer-infos{
    background-color: #121140;
}
.footer{
    background: linear-gradient(#121140, #121140) padding-box, linear-gradient(to top, #004AAD, #CB6CE6) border-box;
    border-top: 3px solid transparent;
}

.menu-footer-item-wrapper > a:hover {
    text-decoration: underline;
}

.menu-item>i, .menu-item-coffee>i {
    width: 20px !important;
}

.section-gradian {
    background-image: linear-gradient(to right, #6010FF, #5CD1E6);
}

.bg-gradian {
    background-image: linear-gradient(to right, #6010FF, #5CD1E6);
}

.bg-black {
    background-color: #1e1e1e !important;
}

.bg-blueAdmin {
    background-color: #12243E;
}

.bg-linkedin {
    background-color: #0a66c2 !important;
}

.bg-light-dark {
    background-color: #31373d;
}

.bg-heavy-dark {
    background-color: #1e1e1e;
}

.bg-admin {
    background-color: blueviolet;
}

.bg-modo {
    background-color: #0ac247;
}

.bg-member {
    background-color: #eee;
    color: black;
}

.bg-purple {
    background-color: #8d63d9;
    color: white;
}

.text-purple {
    color: #8d63d9;
}

.section-black {

    background-color: #1e1e1e;
}

.section-dark-blue {
    background-color: #101728;
}

.rounded-corner-top-right {
    border-top-right-radius: 5px;
}

.rounded-corner-top-left {
    border-top-left-radius: 5px;
}

.rounded-corner-bottom-right {
    border-bottom-right-radius: 5px;
}

.rounded-corner-bottom-left {
    border-bottom-left-radius: 5px;
}

.hero {
    padding-top: 20vh;
    padding-bottom: 20vh;
}

@media screen and (max-width:991px) {
    .hero {
        height: auto;
        min-height: 40vh;
    }
}

.size-full {
    height: calc(100vh - var(--menu-size-desktop));
}

.min-size-full {
    min-height: calc(100vh - var(--menu-size-desktop));
}


.black-encart {
    background-color: #000;
    border-radius: 25px;
}

.form-control,
.tox.tox-tinymce {
    border-color: #000;
    border-width: 1px;
}

.tox-sidebar-wrap {
    border-top: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.sticky-column {
    top: 500px;
    /* Position à partir du haut de l'écran */
    position: sticky;
}

.social-link {
    color: #fff;
    transition: .5s;
}

.social-link:hover {
    color: #8d63d9;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #8d63d9 !important;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.form-control-black {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    appearance: none;
    background-color: #31373d;
    background-clip: padding-box;
    border: #000 solid 1px;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

[data-target="wrapper-filter"] {
    cursor: pointer;
}

#wrapper-filter {
    display: none;
}

mark {
    background: orange;
    color: black;
}

.otherLanguages {
    display: none;
}

.workingLanguagePreview,
.nativeLanguagePreview {
    min-width: 100px;
    max-width: 150px;
}

.required::after {
    content: " *";
    color: red;
    /* Couleur de l'astérisque, vous pouvez ajuster selon vos préférences */
}