@font-face {
    font-family: 'mulish, sans-serif';
    font-style: normal;
    font-weight: 300;
    src: url("fonts/Mulish-VariableFont_wght-Y_DL0ef.ttf");
    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;
}

@font-face {
    font-family: 'OpenSans-Regular';
    font-style: normal;
    font-weight: 300;
    src: url("fonts/OpenSans-Regular-oYb_6bN.woff2") format('woff2'),
    url("fonts/OpenSans-Regular-uzx8qy8.woff") format('woff');
    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;
}

@font-face {
    font-family: 'Oswald-Regular';
    font-style: normal;
    font-weight: 400;
    src: url("fonts/Oswald-Regular-vjsa5UC.woff2") format('woff2'),
    url("fonts/Oswald-Regular-KteHTyO.woff") format('woff');
    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;
}


body {
    font-family:"mulish, sans-serif", "OpenSans-Regular",Helvetica Neue, Helvetica, Arial, sans-serif!important;
    background-color: #F4F6F9;
}

@keyframes fade-loading {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.35;
    }
}

@keyframes fade-loading-light {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.8;
    }
}

.loading-content {
    animation: fade-loading 0.5s forwards;
    position:relative;
}

.loading-content-light {
    animation: fade-loading-light 0.5s forwards;
    position:relative;
}

legend {
    font-weight: 700; !important;
}

legend.required::after {
    content: " *";
    font-size: small;
}

label.required:not([for^="radio"])::after {
    content: " *";
    font-size: small;
}

input[type="radio"] + label.required::after {
    content: none;
}

.page-title {
    font-size: 23px;
    font-weight: 900;
    color: #333;
}

.btn-group .btn {
    border-radius: 10px;
    margin: 0 3px;
}

.btn-group .btn:first-child {
    margin-left: 0;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

.component-modal {
    position: absolute;
    z-index: 999;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    overflow:hidden;
    background-color: rgba(0, 0, 0, 0.15);
}

.component-modal .card {
    position: relative;
    margin: 10% auto;
    width: 80%;
    border-radius: 10px;

}

.component-modal-hidden {
    display: none;
}

.component-modal-visible {
    display: block;
}

.custom-file-label::after {
    content: "Parcourir";
}

.session_select {
    position: relative;
    width: 100%;
    padding: 10px;
}

.transparent_btn {
    padding: 5px 30px;
    text-decoration: none;
    font-size: 14px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
}

.form-control.form-control-autocomplete {
    width: auto;
    height: auto;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: normal;
    color: inherit;
    background-color: transparent;
    background-clip: border-box;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}


 div.form-group div.radio label, div.form-group div.checkbox label {
     font-weight: 500 !important;
 }

 .modal button.btn-close {
    cursor: pointer;
    background: none;
    border: 0;
    -webkit-appearance: none;
     position: relative;
     left: 10px;
     bottom: 5px;
 }

.urnes-container.closed {
    display: none;
    height: 0;
    transition: height 5s ease-out;
}

.urnes-container.open {
    display: block;
    height: auto;
    transition: height 5s ease-in;
}

.verticaltext{
    width:1px;
    word-wrap: break-word;
    white-space:pre-wrap;
}

/*
 * Modal recouvres 100% de l'écran afin d'assombrir le fond
 * et de centrer le contenu
    * Le contenu est centré avec une animation de fade-in
    * est draggable
 */
.live-modal {
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 9997;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.live-modal-open .live-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    cursor: pointer;
}

.live-modal-content {
    z-index: 9999;
}

.live-modal-open {
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes moveLeft {
    from {
        transform: translateX(2rem);
    }
    to {
        transform: translateX(0);
    }
}

.animation-move-left {
    animation: moveLeft 0.25s ease-in, fadeIn 0.25s ease-in;
}

.animation-fade-in {
    animation: fadeIn 0.25s ease-in;
}

.flash-messages {
    position: fixed;
    bottom: 3rem;
    right: 0;
    z-index: 9999;
    padding: 0 10px;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}

.flash-messages .alert {
    animation: moveLeft 0.25s ease-in, fadeIn 0.25s ease-in;
    border: solid 1px #999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}






.candidate-card {
    border-left: 4px solid #6c757d;

}
.candidate-card:hover {
    background-color: #f0f0f0;
}


/*****dsf!:sd;fs***/


.flex {
  display: flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.alert-procuration {
  background-color: rgb(254 252 232);
  border-left-width: 4px;
  border-color: rgb(250 204 21);
  border-radius: 0.375rem;
  padding: 1rem;
}

.alert-procuration .alert-icon {
  height: 1.50rem;
  width: 1.50rem;
  color: rgb(250 204 21);
}

.alert-procuration .alert-body {
  margin-left: 0.75rem;
  color: rgb(202 138 4);
}

.alert-procuration-red {
    background-color: rgb(254 242 232);
    border-left-width: 4px;
    border-color: rgb(251 113 133);
    border-radius: 0.375rem;
    padding: 1rem;
}
.alert-procuration-red .alert-icon {
    height: 1.50rem;
    width: 1.50rem;
    color: rgb(251 113 133);
}
.alert-procuration-red .alert-body {
    margin-left: 0.75rem;
    color: rgb(220 38 38);
}




.dashboard .dashboard-tlt {
    color: #30bfba;
    margin-bottom: 5px;
    font-size: 2rem;
    font-weight: 200;
}
.dashboard .card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    overflow: hidden;
}

.dashboard .card-header {
    background-color: #2c4a6b;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.dashboard .dashboard-title {
    color: #212529;
    margin-bottom: 5px;
    font-size: 20px;
}

.dashboard .table-hover tbody tr:hover {
    background-color: rgba(48, 191, 186, 0.1);
}

.dashboard .table th {
    background-color: #f5f7fa;
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}


.dashboard .note {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #4bb7c5;
    margin: 1rem;
    font-size: 0.9rem;
    color: #555;
}


.dashboard .vignette {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dashboard .vignette .icon {
    color: #17a2b8;
    vertical-align: text-top;
    margin-right: 5px;
    font-size: 45px;
    position: relative;
    top: -14px;
}

.dashboard .vignette:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18)!important;
    /*!*border: 2px solid #31485F ;**/
}












