/************** DEFAULT **************/

.delete_btn {
    width: 100%;
    margin-top: 20px;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: white;
    background: linear-gradient(to right, #232430 -5%, #ff8484 50%, #232430 105%);
}

.note {
    font-size: 11px;
    position: relative;
    left: 15px;
    color: #ffc107;
    font-style: italic;
    display: none;
}

.btn_gradient {
    background: linear-gradient(to right, #232430 0%, #38677F 50%, #232430 100%);
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
    color: white;
    text-decoration: none;
    padding: 10px 35px;
}

/*input[type=text],
input[type=email],
input[type=number],
input[type=date],
input[type=password] */
input {
    color: white;
    width: 100%;
    height: 42px;
    padding: 10px 0;
    font-size: 14px;
    box-shadow: none;
    border: none;
    background: transparent;
    outline: 0;
    border-bottom: 1px solid #262c3a;
}

input[type=radio] {
    height: auto;
    width: auto;
}

textarea {
    color: white;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    box-shadow: none;
    border: none;
    background: transparent;
    outline: 0;
    border-bottom: 1px solid #262c3a;
}

textarea.full-border {
    border: 1px solid #262c3a;
    border-radius: 8px;
    margin-top: 10px;
    min-height: 500px;
    padding: 20px;
}

select {
    color: white;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    box-shadow: none;
    border: none;
    background: transparent;
    outline: 0;
    border-bottom: 1px solid #262c3a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select option {
    background: black;
    color: white;
}

.fields-inline {
    display: flex;
    justify-content: space-between;
}

.fields-inline>div {
    width: 48%;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group .addon {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #37677f;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: white;
    color: black;
    border-radius: 8px;
    padding: 5px;
}

p.label,
.form-group label {
    font-size: 11px;
    color: #919191;
}

.form-group.radio-group label {
    font-size: 14px;
    color: white;
    cursor: pointer;
}

.form-group.checkbox-group label {
    display: flex;
    align-items: center;
    color: black;
    font-size: 14px;
}

.form-group.checkbox-group input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.checkbox-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.checkbox-group .label {
    text-align: left;
    font-weight: 500;
    font-size: 15px;
}

body .select2-container {
    width: 100% !important;
}

body .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #0a9192;
}

body .select2-dropdown:not(.invoice-dropdown) {
    background-color: #1e1f2a;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
}

#modal_invoice #select2-invoice_person-container {
    border-bottom: 1px solid #262c3a;
}

#modal_invoice .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}

#modal_invoice .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 39px;
}

body.dashboard_message #modal_invoice .select2-container,
body.dashboard_collab #modal_invoice .select2-container,
body.dashboard_cases #modal_invoice .select2-container {
    border-bottom: none;
    padding: 0;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered#select2-invoice_person-container {
    color: black;
}

.select2-container--open .select2-dropdown--above.invoice-dropdown {
    border-bottom: 1px solid #949494;
    color: black;
    font-size: 13px;
}

body .invoice-dropdown .select2-search__field,
body .invoice-dropdown li.select2-results__option {
    color: black;
}

body .select2-search__field {
    font-size: 13px;
}

body .select2-container--default .select2-results__option--selected {
    background-color: transparent;
}

body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: transparent;
    color: #0a9192;
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #666666;
    border-radius: 8px;
    outline: 0;
}

.dash-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dash-title h1 {
    font-size: 20px;
    margin-bottom: 0;
    margin-right: 20px;
}

.dash-title a span {
    font-size: 20px;
    background-color: white;
    color: #37677f;
    width: 15px;
    display: flex;
    height: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 7px;
}

.btn_default {
    background: #38677F;
    padding: 9px 9px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
    color: white;
}


.edit .content {
    width: 80%;
    height: 100%;
}

.lists .content {
    width: 100%;
    height: 100%;
    padding: 0 20px
}

.edit-sidebar {
    width: 20%;
    height: 100%
}

.edit-sidebar h3 {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #262c3a;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bloc {
    padding: 30px;
    margin: 10px;
    background-color: #1e1f2a;
    border-radius: 8px;
}

.badge_rounded {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    margin-right: 20px;
}

.badge_tag {
    background-color: #232430;
    padding: 5px 15px;
    border-radius: 8px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}

ol li {
    margin-bottom: 20px;
}

ol li strong {
    display: block;
}

.outline_none {
    outline: 0;
}

#search {
    min-width: 240px;
}

.open_filter_dashboard {
    background: transparent;
    border: none;
    height: 38px
}

.btn_border {
    border: 1px solid #373737;
    padding: 2px 0 5px 0;
    border-radius: 30px;
    width: 30px;
    height: 30px
}

.btn_border_white {
    border: 1px solid;
    padding: 5px 15px;
    border-radius: 8px;
    margin-left: 15px;
}

.btn_border_rounded {
    border: 1px solid #373737;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.btn_border_rounded svg {
    margin-right: 10px;
}

.form-group-icon {
    position: absolute;
    right: 0;
    color: #37677f;
}

.form-container {
    margin-top: 40px
}

.dropdown-menu {
    position: absolute;
    background-color: #14141c;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    right: 0;
    font-size: 14px;
    color: white;
}

.dropdown-menu.dropdown-left {
    right: inherit;
    left: 0;
    min-width: 200px;
    padding: 15px;
    border: 1px solid #373737;
}

.dropdown-item {
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    color: white;
}

.dropdown-item:hover {
    background: transparent;
    color: white;
}

.dropdown-toggle::after {
    display: none;
}

.show {
    display: block;
}

.show-inline {
    display: inline-block;
}

.pos_rel {
    position: relative;
}

.cursor_pointer {
    cursor: pointer;
}

.badge {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -5px;
    font-size: 8px;
    border-radius: 8px;
}

.badge-red {
    background-color: red;
}

.line-around {
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 8px;
}

#pagination button.disabled {
    opacity: 0.5;
    cursor: default;
}

.banner-error {
    background-color: #f96161;
    color: white;
    padding: 15px;
    font-size: 13px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.banner-success {
    background-color: #51ad51;
    color: white;
    padding: 15px;
    font-size: 13px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.see_messages li:first-child {
    border-right: 1px solid #373737;
    padding-right: 10px;
    cursor: pointer;
}

#paginate-select {
    margin: 0 15px;
    padding: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #262c3a;
    color: white;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}

.drop-zone {
    border: 2px dashed #ccc;
    padding: 50px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s; 
    position: relative;
    text-align: center;
}

.drop-zone.dragover {
    background-color: rgba(76, 76, 76, 0.3);
}

.file-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-bottom: 1px solid #262c3a;
}

.file-list li .remove {
    color: #ff8484;
    cursor: pointer;
    font-weight: bold;
}

/************** FONT **************/

.f45 {
    font-size: 45px;
}

.f30 {
    font-size: 30px;
    line-height: 30px;
}

.f35 {
    font-size: 35px;
}

.f20 {
    font-size: 20px;
    line-height: 20px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

/************** COLOR **************/

#background-site,
.background-site {
    background-color: #232430;
}

#background-green,
.background-green {
    background-color: #51ad51;
}

#background-red,
.background-red {
    background-color: #ff8484;
}

#background-orange,
.background-orange {
    background-color: #e6b55b;
}

#color-white,
.color-white {
    color: white;
}

#color-red,
.color-red {
    color: #ff8484;
}

#color-green,
.color-green {
    color: #51ad51;
}

#color-black,
.color-black {
    color: black;
}

#color-orange,
.color-orange {
    color: #e6b55b;
}

#color-brand,
.color-brand {
    color: #0a9192;
}

.color-grey-dash {
    color: #666666;
}

.color-orange-dash {
    color: #b48173;
}

.color-red-dash {
    color: #ff8484;
}

.color-blue-dash {
    color: #47819f;
}

.color-green-dash {
    color: #72f3d8;
}

.color-violet-dash {
    color: #7949a3;
}

.background-color-green-dash {
    background: #72f3d8;
}

.background-color-violet-dash {
    background: #7949a3;
}

.border-orange {
    border-color: #e6b55b;
}

.border-red {
    border-color: #ff8484;
}

.border-green {
    border-color: #51ad51;
}

tr:hover {
    color: inherit;
}

tr.color-red:hover {
    color: #ff8484;
}

tr.color-green:hover {
    color: #51ad51;
}

tr.color-orange:hover {
    color: #e6b55b;
}

/************** DISPLAY **************/

.display_flex {
    display: flex;
}

.flex_wrap {
    flex-wrap: wrap;
}

.align_center {
    align-items: center;
}

.justify_between {
    justify-content: space-between;
}

.justify_center {
    justify-content: center;
}

.justify_around {
    justify-content: space-around;
}

.justify_end {
    justify-content: end;
}

.display_block {
    display: block;
}

.display_inline_block {
    display: inline-block;
}

.hide {
    display: none;
}

.visibility_hidden {
    visibility: hidden;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text_underline {
    text-decoration: underline;
}

.b-radius {
    border-radius: 8px;
}

/************** MARGIN / PADDING / WIDTH **************/

.w15px {
    width: 15px;
}

.w100 {
    width: 100%;
}

.mt10 {
    margin-top: 15px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mb0 {
    margin-bottom: 0;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.pt5 {
    padding-top: 5px;
}

.pl10 {
    padding-left: 10px;
}

.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px;
}

.p25 {
    padding: 25px;
}

.px10 {
    padding-left: 10px;
    padding-right: 10px;
}

.px15 {
    padding-left: 15px;
    padding-right: 15px;
}

.px25 {
    padding-left: 25px;
    padding-right: 25px;
}

.py50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

/************** WIDTH / HEIGHT **************/

.min-h500 {
    min-height: 500px;
}

.h100 {
    height: 100%;
}

/************** MODAL **************/

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px 50px;
    border-radius: 5px;
    width: 50%;
    text-align: center;
    color: black;
}

.close {
    color: black;
    font-size: 45px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    line-height: 20px;
    font-weight: 200;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    padding: 0 30px 50px 30px;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: #325469;
    padding: 5px 17px;
}

.swal2-confirm {
    padding: 10px 15px;
}

/************** UPLOAD **************/

body .file-upload {
    background-color: #294556;
    padding: 8px 15px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

body .file-upload:hover {
    background-color: #223a49;
    transform: scale(1.01);
}

/************** LAYOUT **************/

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #232430;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: .1s opacity linear;
}

header {
    color: white;
    padding: 30px 20px 0 20px;
    text-align: right;
}

h2 {
    font-size: 20px;
    margin-bottom: 0;
    margin-right: 20px;
}

a {
    color: white;
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

footer {
    color: #666666;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

footer p {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.7;
}

main {
    margin: 20px;
    padding-bottom: 50px;
    min-height: 86vh;
}

header:not(.header_dashboard) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

header.header_resetpwd,
header.header_activateaccount,
header.header_login {
    display: none;
}

.user-circle {
    width: 40px;
    height: 40px;
    background-color: #6c757d;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.user-circle:hover {
    background-color: #5a6268;
}

.user-dropdown {
    position: relative;
}

.dropdown-nav {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-nav.show {
    display: block;
}

.dropdown-nav a {
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    display: block;
    font-size: 14px;
    transition: background-color 0.3s ease;
    text-align: left;
}

.dropdown-nav a:hover {
    background-color: #f1f1f1;
}

#theme-toggle {
    display: block;
    padding: 8px 14px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid #373737;
}

th {
    padding-top: 0;
}

tr:hover {
    color: #ccc;
}

table tr th:last-child,
table tr td:last-child {
    text-align: right;
}

.daterangepicker th,
.daterangepicker td {
    padding: 6px;
    color: black
}

.calendar-table select {
    color: black;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #38677F;
}

.lists .filter .form-group.checkbox-group label {
    color: white;
}

button {
    background: transparent;
    border: none;
    color: white;
}

/************** LOGIN / RESET PWD **************/

body.activateaccount main,
body.resetpwd main,
body.login main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-bloc {
    padding: 50px 25px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 350px;
}

.login-bloc .icon svg {
    color: white;
    margin: auto;
    margin-bottom: 20px;
    border: 1px solid white;
    padding: 11px;
    border-radius: 30px;
}

.login-bloc .icon {
    text-align: center;
}

.login-bloc form {
    margin-top: 40px;
}

.login-bloc h1 {
    text-align: center;
    font-size: 18px;
    color: white;
}

.login-bloc button {
    background: linear-gradient(to right, #232430 0%, #38677F 50%, #232430 100%);
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
    color: white;
}

/*.login-bloc input {
      width: 100%;
    margin-bottom: 15px;
    height: 42px;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
}*/

.login-bloc label {
    display: none;
}

.badge-default {
    background-color: #37677f;
    border: 1px solid #37677f;
    border-radius: 30px;
    font-size: 12px;
}

.unread-badge {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    border-radius: 30px;
    font-size: 9px;
    margin-right: 7px;
}

#theme-toggle {
    color: #333333;
}

.jackpot_sign {
    background-color: goldenrod;
    border-radius: 30px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    color: white;
    border: 3px solid #c7971d;
    margin-right: 7px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    min-width: 200px;
    z-index: 1000;
    color: black;
    text-align: left;
    min-width: 260px;
}

.jackpot-list {
    max-height: 500px;
    overflow-y: auto;
}

.jackpot-list li {
    padding: 7px 10px;
    border-bottom: 1px solid gainsboro;
    margin: 0;
}

/************** DASHBOARD **************/

.logo {
    width: 100%;
    max-width: 235px;
}

.dashboard-container {
    display: flex;
}

.dashboard-content {
    width: 85%;
    height: 100%;
    padding: 20px 0;
}

.sidebar {
    width: 15%;
    height: 100%;
    padding: 20px 10px 20px 0;
}

.sidebar .collaborators {
    text-align: center;
    margin-bottom: 40px;
}

.sidebar ul {
    margin-bottom: 50px;
}

.sidebar li {
    cursor: pointer;
    padding: 8px 15px;
    transition: .2s all ease-in-out;
}

.sidebar li:not(.active):hover {
    color: #38677F;
}

.sidebar li.active {
    background: linear-gradient(to right, #38677F 50%, #232430 100%);
    border-radius: 4px;
}

.dashboard .content .row-bloc {
    display: flex;
    flex-wrap: wrap;
}

.dashboard .content .row-bloc.intro-bloc {
    width: 100%;
}

.competition .content .row-bloc.intro-bloc>div {
    width: calc(100% / 2 - 20px);
    padding: 30px;
    margin: 10px;
    background-color: #1e1f2a;
    border-radius: 8px;
}

.dashboard .content .row-bloc.intro-bloc>div {
    width: calc(100% / 4 - 20px);

    margin: 10px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dashboard .content .row-bloc.intro-bloc div.fragment {
    background-color: #1e1f2a;
    padding: 25px;
}

.dashboard .content .row-bloc.intro-bloc .two-blocs div.fragment.separated:nth-child(1) a>div {
    height: 100%;
}

.dashboard .content .row-bloc.intro-bloc .two-blocs div.fragment.separated:nth-child(2) a>div {
    height: 75%;
}

.dashboard .content .row-bloc.intro-bloc .two-blocs div.fragment.separated {
    padding: 18px 25px;
    height: 50%;
}

.dashboard .content .row-bloc:not(.intro-bloc)>div {
    padding: 30px;
    margin: 10px;
    background-color: #1e1f2a;
    border-radius: 8px;
}

.dashboard .content .row-bloc.first-row>div:nth-child(1),
.dashboard .content .row-bloc.second-row>div:nth-child(1) {
    width: calc(75% - 20px);
}

.dashboard .content .row-bloc.first-row>div:nth-child(2),
.dashboard .content .row-bloc.second-row>div:nth-child(2) {
    width: calc(25% - 20px);
}

.dashboard .content .row-bloc.third-row>div {
    width: 100%;
}

/************** 404 **************/

body.error404 main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white
}

body.error404 main div {
    text-align: center;
}

body.error404 main div h1 {
    font-size: 150px;
}

body.error404 main div p {
    margin-bottom: 50px;
}

/**************** DASHBOARD MESSAGES *************/

.upload_container {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -15px;
}

.upload_container li {
    width: calc(100% / 5 - 30px);
    margin: 15px;
}

.upload_container li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.messages-list {
    table-layout: fixed;
}

.messages-list thead th:nth-child(1) {
    width: 25%;
}

.messages-list thead th:nth-child(2) {
    width: 50%;
}

/**************** DASHBOARD CASES *************/

.cases-list thead th:not(.action) svg {
    color: #0a9192
}

.cases-list svg.asc {
    transform: rotate(-180deg);
}

#progress {
    margin: 50px 0;
    display: none;
}

#progress-container {
    display: flex;
    width: 95%;
    margin: 20px 0;
    background: #232430;
    height: 15px;
    position: relative;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: #51ad51;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #232430;
    transition: width 0.5s;
}

#progress-text {
    position: absolute;
    width: auto;
    font-weight: bold;
    top: -3px;
    left: 101%;
}

body.dashboard_collab .select2-container--default .select2-selection--multiple,
body.dashboard_message .select2-container--default .select2-selection--multiple,
body.dashboard_cases .select2-container--default .select2-selection--multiple {
    color: white;
    height: 42px;
    padding: 0;
    font-size: 14px;
    box-shadow: none;
    border: none;
    background: transparent;
    outline: 0;
}

body.dashboard_message .select2-container--default .select2-selection--multiple .select2-selection__choice,
body.dashboard_collab .select2-container--default .select2-selection--multiple .select2-selection__choice,
body.dashboard_cases .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #37677f;
    border: 1px solid #37677f;
    border-radius: 30px;
    font-size: 12px;
}

body.dashboard_message .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
body.dashboard_collab .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
body.dashboard_cases .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: normal;
    padding: 0 7px;
    top: -3px;
}

body.dashboard_message .select2-container,
body.dashboard_collab .select2-container,
body.dashboard_cases .select2-container {
    color: white;
    height: 42px;
    padding: 10px 0;
    font-size: 14px;
    box-shadow: none;
    border: none;
    background: transparent;
    outline: 0;
    border-bottom: 1px solid #262c3a;
}

body.dashboard_cases .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

body.dashboard_cases .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
}

body.dashboard_cases .select2-container--default.select2-container--disabled .select2-selection--single {
    background: transparent;
}

#comment {
    color: black;
    border: 1px solid #cccccc;
    height: 200px;
    border-radius: 8px;
    padding: 15px
}

#comment.error {
    border-color: red;
}

#reasons {
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 10px 15px;
}

#commentaire {
    border-radius: 0 0 8px 8px;
    padding: 10px;
    border: 1px solid #ff8583;
}

#label-comment {
    width: 100%;
    background-color: #ff8583;
    color: white;
    padding: 5px 10px;
    border-radius: 8px 8px 0 0;
    font-size: 14px
}

#desactivated-bloc {
    width: 100%;
    background-color: #ff8583;
    color: white;
    padding: 5px 10px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
}

.form-upload {
    background-color: #325469;
    min-height: 140px;
    border-radius: 8px;
}

.form-upload p {
    padding: 5px 10px;
    background-color: #294556;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.form-upload>div {
    min-height: 110px;
}

.status_action a {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid;
}

#download_document {
    background-color: #294556;
    padding: 8px 15px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer
}

/***************** HEADER **************/

#add-case-btn {
    background: #38677F;
    width: 100%;
    padding: 5px 9px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
    color: white;
}

/*************** LAYOUT COLLABS ************/

.ui-datepicker-calendar {
    display: none !important;
}

body .ui-datepicker .ui-widget-header {
    border: none;
    background: #294556;
    color: #333333;
    font-weight: bold;
    padding: 0;
}

body .ui-widget.ui-widget-content {
    border: none;
    padding: 0;
}

body .ui-datepicker select.ui-datepicker-month,
body .ui-datepicker select.ui-datepicker-year {
    padding-left: 10px;
}

body .ui-datepicker .ui-datepicker-next:after {
    content: "\203A";
    position: relative;
}

body .ui-datepicker .ui-datepicker-prev:before {
    content: "\2039";
    position: relative;

}

body .ui-datepicker .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-next {
    top: 0;
    cursor: pointer;
}

body .ui-datepicker .ui-datepicker-prev:hover,
body .ui-datepicker .ui-datepicker-next:hover {
    top: 0;
    background: transparent;
    border: none;
}

body .ui-datepicker .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-next {
    display: block;
    width: 35px;
    height: 39px;
    text-align: center;
    line-height: 33px;
}

body .ui-datepicker .ui-datepicker-next:after,
body .ui-datepicker .ui-datepicker-prev:before {
    font-weight: normal;
    font-size: 30px;
    color: #fff;
}

body .ui-icon {
    display: none !important;
}



.modal#collab_goals .modal-content {
    width: 30%;
}

#collab_goals .form-group {
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 20px;
}

#collab_goals input {
    color: black;
    font-size: 18px
}

/**************** DASHBOARD COLLABS **************/

.filter-container {
    display: none;
    margin-left: 50px;
    align-items: center;
}

.filter-container.is_open {
    display: flex;
}

.filter-container .filter-bloc {
    margin-right: 20px;
}

/**************** LIST CHECK *************/

.slide_up {
    position: fixed;
    bottom: 0;
    left: 50px;
    min-width: 200px;
}

.slide_up__title {
    background-color: #e6b55b;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
}

.slide_up__title .badge_counter {
    background-color: white;
    color: #e6b55b;
    margin-right: 5px;
    border-radius: 30px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
}

.slide_up__title svg {
    position: absolute;
    right: 10px;
}

.box-check {
    background-color: #1b1b25;
    display: none;
}

.box-check ul {
    border-left: 1px solid #262c3a;
    border-right: 1px solid #262c3a;
}

.box-check li {
    border-bottom: 1px solid #262c3a;
}

.competition-list td {
    vertical-align: top;
    line-height: 26px;
}