.chevron-icon {
    transition: transform 0.3s ease-in-out;
}

@keyframes rotateChevron {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(90deg);
    }
}

@keyframes rotateChevronBack {
    0% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.rotate-chevron {
    animation: rotateChevron 0.3s ease-in-out forwards;
}

.rotate-chevron-back {
    animation: rotateChevronBack 0.3s ease-in-out forwards;
}

.btn-theme {
    color: #fff;
    background-color: #EB6100;
    border: 1px solid transparent
}
  
.btn-theme:hover {
    color: #fff;
    background-color: #EB6100e6;
    border-color: #EB6100e6;
}

.text-theme {
    color: #024C9F;
}

.QA_section .QA_table .table thead th {
    color: #024C9F;
}

.action_btn {
    color: #024C9F;
}

.action_btn:hover {
    background: #024C9F;
    color: #fff;
    box-shadow: 0 5px 10px rgba(136, 79, 251, 0.26);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border: 1px solid #024C9F;
    background-color: #024C9F !important;
}

.dataTables_paginate a:hover {
    background: #024C9F !important;
}

.bg-theme-orange {
    background: #EB6100 !important;
}

.bg-theme {
    background: #F39800;
}
  
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545 !important;
}

.filtering-label {
    font-weight: bold;
    color: #024C9F;
}
  
.toggle-password {
    position: absolute;
    right: 18px;
    height: 100%;
    background-color: transparent !important;
    border: 0px !important;
    cursor: pointer;
    z-index: 1000;
}

.cs_modal .modal-body .nice_Select, .cs_modal .modal-body input, .cs_modal .modal-body textarea {
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    border: 1px solid #F1F3E7;
    padding: 10px 20px;
    color: #707070;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 14px;
    width: 100%;
    display: block;
    font-weight: 500;
    border-radius: 3px;
}

.lms_checkbox_1 .slider-check {
    background-color: #BFBFBF;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}
  
.lms_checkbox_1 .slider-check::before {
    background-color: #F6F7FB;
    bottom: 5px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 20px;
}
  
.lms_checkbox_1 input:checked + .slider-check {
    background-color: #F45B0F;
    color: #fff;
    content: "oui";
}
  
.lms_checkbox_1 input:checked + .slider-check:before {
    transform: translateX(20px);
    background: #F6F7FB;
}

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

.btn_1 {
    border: 1px solid transparent;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spin {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top-color: #F39800;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nice_Select2 {
    font-size: 14px;
}

.nice_Select2 .list li {
    font-size: 14px;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    color:#F39800;
}

.footer_part p a {
    color: #F39800;
}

table.member_table_active.dataTable thead .sorting::before,
table.member_table_active.dataTable thead .sorting::after,
table.member_table_active.dataTable thead .sorting_asc::before,
table.member_table_active.dataTable thead .sorting_asc::after,
table.member_table_active.dataTable thead .sorting_desc::before,
table.member_table_active.dataTable thead .sorting_desc::after,
table.member_table_active.dataTable thead .sorting_asc_disabled::before,
table.member_table_active.dataTable thead .sorting_asc_disabled::after,
table.member_table_active.dataTable thead .sorting_desc_disabled::before,
table.member_table_active.dataTable thead .sorting_desc_disabled::after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}

table.member_table_active.dataTable thead .sorting::after,
table.member_table_active.dataTable thead .sorting_asc::after,
table.member_table_active.dataTable thead .sorting_desc::after,
table.member_table_active.dataTable thead .sorting_asc_disabled::after,
table.member_table_active.dataTable thead .sorting_desc_disabled::after {
  right: 1em;
  content: "\2193";
}

table.member_table_active.dataTable thead .sorting::before,
table.member_table_active.dataTable thead .sorting_asc::before,
table.member_table_active.dataTable thead .sorting_desc::before,
table.member_table_active.dataTable thead .sorting_asc_disabled::before,
table.member_table_active.dataTable thead .sorting_desc_disabled::before {
  right: 1.5em;
  content: "\2191";
}

table.member_table_active.dataTable thead .sorting_asc::before,
table.member_table_active.dataTable thead .sorting_desc::after {
  opacity: 1;
}