@import "fonts.css";
@import "https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
:root {
    --main-bg-color: #EAEDF2;
    --primary:#0061C5;
    --font-color:#5F5F6E;
    --color-light:#858EBD;
    --black-color:#282B31;
    --black-light:#3A3F63;
    --grey-light:#DDE1E8;
    --sf-pro-bold: 'sf_pro_displaybold', sans-serif;
    --sf-pro-medium: 'sf_pro_displaymedium', sans-serif;
    --sf-pro-regular: 'sf_pro_displayregular', sans-serif;
    --shadow: 0px 4px 12px rgba(179, 192, 231, .35);
}

*{
    margin:0;
    padding:0
}
a {
    color: var(--primary);
    transition: all 0.3s ease-in-out;
}
a:hover {
    color: var(--black-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
body{
    background: var(--main-bg-color);
    color: var(--black-light);
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 24px;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;

}
.main{
    min-height: calc(100vh - 150px);
}
.header-page{
    align-items: center;
}
.title-page h1, .title-page h2{
    font-size: 1.5rem;
    line-height: 31px;
    margin-bottom: 0;
    text-transform: uppercase;
}
.breadcrumb-page{
    padding:0;
}
.breadcrumb {
    margin-bottom: 0 ;
}
h3{
    font-size: 1.5rem;
    line-height: 31px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-light) !important;
}
/*Navbar
-----------------------------------*/
.top-nav {
    background: #ffffff;
    border-bottom: 2px solid #E0E0EC;
}
.top-nav .brand-link img{
    max-height: 54px;
    width: auto;
}
.top-nav .navbar-nav .nav-item{
    display: flex;
    align-items: center;
    color: var(--color-light);
    margin: 0 10px;
}
.top-nav .navbar-nav .nav-item.active a{
    color: var(--primary);
}
.top-nav .navbar-nav .nav-item a{
    color: var(--color-light);
}
.top-nav .navbar-nav .nav-item a i{
   margin: 0 10px 0 0;
}
.top-nav .navbar-nav .nav-item a:hover{
    color: var(--primary);
}
.navbar-users{
    margin-bottom: 0;
}
.top-nav .dropdown-menu {
    min-width:15rem;
    left:inherit;
    right: 0;
    padding: .55rem  1rem;
    line-height: 22px;
    white-space: normal;
    margin: 15px 0 0;
    color: var(--black-color) !important;
    box-shadow:var(--shadow);
    border: none !important;
}
.top-nav .dropdown-item {
    display: block;
    width: 100%;
    padding: .5rem .5rem;
    border-radius: 4px;
}
.top-nav .dropdown-item i {
    color: var(--color-light);
    margin: 0 10px 0 0;
}
.logout-link{
    color: #e30613;
}
.top-nav .logout-link i{
    color: #e30613;
}
.menu-toogle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    background: transparent;
    border:none;
    display: none;
}
.menu-toogle svg {
    width:50px;
    height:50px;
}
.line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
@media (max-width: 991px) {
    .menu-toogle {
        display: block;
    }
    .navbar-nav {
        margin: 15px 0;
    }
    .top-nav .dropdown-menu {
        left: 0 !important;
        white-space: normal;
    }
    .top-nav .dropdown-item {
        display: flex;
        white-space: normal;
    }
    .navbar-nav {
        align-items: center;
    }
    .nav {
        justify-content: center;
    }
}
/*Buttons
----------------------------------------*/
.btn{
    padding-right: 15px;
    text-align: center;
    min-height: 40px;
    min-width: 130px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.btn:hover{
    transition: all 0.3s ease-in-out;
}
.btn:focus{
    outline: none !important;
    box-shadow: none !important;
}
.btn-info.focus, .btn-info:focus {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary, .btn-info {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover, .btn-info:hover{
    background-color: var(--black-color);
    border-color: var(--black-color);
}
.btn-secondary {
     color: var(--black-color);
     background-color: var(--grey-light);
     border-color: var(--grey-light);
 }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background: #ffffff;
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-lg {
    padding: .65rem 1rem;
    min-width: 240px;
    box-shadow: 0px 4px 16px #B3C0E7;
}

.btn.btn-shadow{
    box-shadow: var(--shadow);
}
.btn.btn-radius{
    border-radius: 15px;
}
.btn-profil{
    position: relative;
    padding: 0 20px 0 0;
}
.btn-profil span{
    display: inline-block;
    background:var(--grey-light);
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.btn-profil:hover span{
    color: #ffffff;
    background: var(--primary);
    transition: all 0.3s ease-in-out;
}
.btn-profil.dropdown-toggle:after {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: -3px;
    border-color:var(--black-color);
    border-style: solid;
    border-width: 0 2px 2px 0;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}
.link-btn{
    color: var(--primary);
    font-weight:500 ;
    font-size: 1rem;
    line-height: 19px ;
}
.icon-btn{
    min-width: 45px;
    line-height: 45px;
    color: #ffffff;
    background: var(--primary);
    font-size: 1.1rem;
    border-radius: 15px;
    margin: 0 10px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;

}
.link-btn:hover .icon-btn{
    background: var(--black-color);
    transition: all 0.3s ease-in-out;
}

label{
    color:var(--black-color);
}
.form-control {
    height: 41px;
    border-radius: 4px;
    border: 1px solid #DAE0F2;
}
.form-control::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder{
     color: var(--color-light);
 }
.form-control::-moz-placeholder,
input[type=search]::-moz-placeholder
{
     color: var(--color-light);
 }
.form-control:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder{
     color: var(--color-light);
 }
.form-control:-moz-placeholder,
input[type=search]:-moz-placeholder{
     color: var(--color-light);
 }
.form-control:focus {
    box-shadow: none;
}
.form-control.error , .has-error .form-control{
    border-color: red !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--primary) !important;
}
select.error +.select2-container--default .select2-selection--single,
select.error + .select2-container--default .select2-selection--multiple,
select.error{
    border-color: red !important;
}
.has-error select +.select2-container--default .select2-selection--single,
.has-error select + .select2-container--default .select2-selection--multiple,
.has-error select{
    border-color: red !important;
}

label.error ,small.help-block{
    color: red !important;
    width: 100%;
    margin-bottom: 0;
}
small.help-block{
    font-size: 15px;
}
.form-control.error+ input .input-group-append .input-group-text{
    border-color: red !important;
}
.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after, .input-group:not(.has-validation)>.custom-select:not(:last-child), .input-group:not(.has-validation)>.form-control:not(:last-child) {
       border-top-right-radius: 4px;
       border-bottom-right-radius: 4px;
 }

.input-group-append {
    margin-left: 0;
    position: absolute;
    right: 1px;
    top: 1px;
    height: 39px;
    z-index: 99;
}
.input-group-text{
    border: none;
    background: #ffffff;
    color: var(--color-light);
}
.password-form .input-group-text{
    background: #ffffff;
    color: var(--color-light);
    cursor: pointer;
}
.img-captcha{
    width: 225px;
}
.img-captcha img{
    height: 50px;
    border-radius: 4px;
    margin: 0 5px 0 0;
}

input[type=checkbox], input[type=radio] {
    width: 17px;
    height: 17px;
    margin-right: 10px;
}
.form-check-label {
    margin-left: 9px;
}

    /*Modal
    ---------------------------------------*/

.modal-header {
    border-bottom: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}
.modal-title {
    font-weight: 500;
    font-size: 1.15rem;
}
.modal-header .close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
}
.modal-body .bottom-actions{
    text-align: center;
    padding: 15px 0 0;
    display: flex;
    margin: 0 -8px;
}
.modal-body .bottom-actions .btn{
    margin: 8px;
    width: 100%;
    min-height: 45px;
    line-height: 30px;
}
.modal-content {
    border: none;
}
.input-group-text .fa-eye{
    cursor: pointer;
}
.alert{
    margin-top: 1rem;
}
.modal-block-user{
    padding: 15px 15px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.modal-avatar-user{
    margin: 0 35px 0 0;
    position: relative;
    height: 80px;
}
.modal-avatar-user .avatar-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #EEF2FF;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #C9DAFB;
    font-size: 60px;
    overflow: hidden;
}
.modal-avatar-user .fa-check-circle{
    color: var(--primary);
    width: 28px;
    height: 28px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 28px;
}
.modal-user-infos{
    padding: 10px 0;
}
.block-show-projection .form-row-header.form-row-box .form-row{
    border: none;
}
.block-show-projection .form-row-box .form-row{
    align-items: center;
    border: 1px solid #DAE0F2;
    border-radius: 4px;
}
.block-show-projection .form-body-row .form-row .col:nth-child(6){
    position: relative;
}
.block-show-projection .form-body-row .form-row .col:nth-child(6):after{
    content: '';
    width: 2px ;
    background: red;
    top: -1px;
    bottom: -30px;
    right: -2px;
    position: absolute;
}
.block-show-projection .form-body-row  .form-row-box:last-child .col:nth-child(6):after{
    bottom: -1px;
}
.block-show-projection .header-wizard {
    padding: 10px 0;
}
.block-show-projection h3 {
    font-size: 1.2rem;
    line-height: 28px;
    color: var(--black-light);
}
.block-show-projection .form-body-row .form-row-box {
    padding: 0 5px;
}
.block-show-projection .form-row-box .form-control {
    height: 45px;
}
.block-show-projection .form-row>.col {
    text-align: center;
}
.tooltip-projection .tooltip-inner {
    max-width: 250px;
    padding: 0.65REM 1rem;
    color: var(--black-light);
    text-align: left;
    background-color: #fff;
    border-radius: .55rem;
    box-shadow: 0px 4px 12px rgba(179, 192, 231, .5);
}
.tooltip-projection .tooltip-inner b {
    color: var(--primary);
    display: block;
    padding: 0 0 5px;
    border-bottom: 1px solid #E0E0EC;
    margin-bottom:  7px;
}
.tooltip-projection.tooltip.show {
    opacity: 1;
}
.tooltip-projection.bs-tooltip-right .arrow::before {
    border-right-color: var(--color-light);
}
.tooltip-projection.bs-tooltip-top .arrow::before  {
    border-top-color: var(--color-light);
}
.tooltip-projection.bs-tooltip-left .arrow::before  {
    border-left-color: var(--color-light);
}
.tooltip-projection.bs-tooltip-bottom .arrow::before  {
    border-bottom-color: var(--color-light);
}
.close {
    font-weight: 500;
}
.show-result-modal .close {
    color: var(--black-color);
}
.show-result-modal .modal-header {
    border-bottom: none;
    background: #fff;
    color: var(--black-color);
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem 1rem;
}
.show-result-modal .modal-header .close {
    padding: 0.8rem;
    margin: 0;
    position: absolute;
    right: 0px;
    top: 0;
}
.show-result-modal .form-row-header {
    padding: 1rem 1rem 1rem 0.8rem !important;
}
.result-show-infos{
    color: var(--color-light);
    display: inline-block;
    min-height: 45px;
    padding: .375rem .75rem;
    line-height: 30px;
}
.user-info-item{
    display: flex;
    margin: 2px 0;
    color: #6A74A5;
    align-items: center;
}
.user-info-item input{
    background: #fff !important;
    border: none;
    color: #6A74A5;
    display: inline-block;
    width: calc(100% - 150px);
    height: 30px;
}

.user-info-item strong{
    color: var(--black-light);
}
.champs-obligtoire{
    color: var(--font-color);
    font-weight: 400;
    font-size: .8rem;
    display: block;
    padding: 0 15px;
    text-align: right;
    margin: 10px 0 0;
}
.regiter-main .container-fluid{
    padding-left: 15px;
    padding-right: 15px;
}


@media (min-width: 767px) {
    .modal-body {
        padding: 25px;
    }
}
@media (max-width: 576px) {
    .modal-body .bottom-actions .btn{
        margin: 8px 0;
        width: 100%;
    }
}
/*Login
---------------------------------------*/
.innerlogin{
    min-height: 100vh;
}
.login-left{
    background: url("../images/img-login.png") no-repeat center top;
    background-size: cover;
    /*padding: 60px 15px 30px 70px;*/
    padding: 111px 15px 30px 95px;
    position: relative;
}
.login-left:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background:#0061C5;
    background: transparent linear-gradient( 180deg, #0061C5 0%, #222653 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.25;
}
.login-logo{
    margin: 0 0 30px;
    position: relative;
    z-index: 9;
}
.login-left h1{
    font-size: 3rem;
    line-height: 56px;
    color: var(--black-color);
    text-transform: uppercase;
    position: relative;
    z-index: 9;
}
.login-left h1 span{
    display: block;
    color: var(--primary);
}
.login-box{
    padding : 25px 30px;
}
.login-box h2 {
    font-size: 2rem;
    line-height: 40px;
    color: var(--black-color);
    margin: 0 0 10px;
}
.row-flex{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}
.reset-password{
    font-size: 1rem;
    line-height: 24px;
    color: var(--black-color);
}
.top-login {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 50px;
}
.top-login .btn{
    height: 40px;
}
.regiter-label{
    display: inline-block;
    margin: 0 15px;
}
.botton-actions{
    padding: 15px 0;
}
.login-logo-smart {
    text-align: center;
    margin:0 0 25px;
}
@media (min-width: 767px) {
    .login-logo-smart {
        display: none;
    }
}
@media (max-width: 1199px) {
    .login-left {
        padding: 60px 15px 30px 50px;
    }
    .login-left h1 {
        font-size: 2rem;
        line-height: 35px;
    }
}
@media (max-width: 991px) {
    .login-left {
        padding: 50px 15px 30px 30px;
    }
}
@media (max-width: 767px){
    .login-left {
        display: none;
    }
    .top-login{
        padding: 0 15px;
    }
}
@media (max-width: 576px){
    .login-box{
        padding : 0 0 35px;
    }
    .img-captcha {
        margin: 0 0 15px;
    }
    .login-box h2 {
        font-size: 1.5rem;
        line-height: 30px;
        margin: 0 0 15px;
    }
}
@media (max-width: 400px){
    .captcha {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/*Main
---------------------------------*/
.content-wrapper{
    padding: 15px;
}
.login-main .container-fluid{
    padding: 0 15px;
}
@media (min-width: 1250px){
    .container {
        max-width: 1220px;
    }
    .container-fluid{
        padding-left: 100px;
        padding-right: 100px;
    }
}
/*Filter page
------------------------------------*/
.filter-default {
    padding: 15px;
    position: relative;
}
.filter-default .form-control{
    height: 40px;
}
.filter-default h3,
.card-form h3{
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}
#project_createdAt{
    display: flex;
}
#project_createdAt select{
    margin: 0 15px 0 0 ;
}
#project_partOfGroup{
    display: flex;
    flex-wrap: wrap;
}
#project_partOfGroup .custom-control {
    margin-right: 15px;
}
#project_partOfGroup .custom-control:last-child {
    margin-right: 0;
}
#project_createdAt select:last-child{
    margin-right:  0 ;
}
.form_body .form-control{
    height: 40px;
}
.date-icon + i {
    right: 28px;
    left: inherit !important;
}
.date-icon.error + i {
    bottom: 37px;
}

select {
    color: var(--black-light) !important;
    height: 40px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #DAE0F2;
    padding: .375rem .65rem;
}
select:focus{
    outline: none;
    box-shadow: none;
}
.select2-container--default .select2-selection--multiple {
    border-radius: 4px;
    border : 1px solid rgba(58,63,99, .1) !important;
    padding-left: .65rem;
    padding-right: .65rem;
}
.select2-container--default .select2-selection--single {
    height: 40px !important;
    border-radius: 4px;
    border : 1px solid rgba(58,63,99, .1) !important;
    padding-left: .65rem;
    padding-right: .65rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}
.select2-container {
     width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--black-light) !important;
    line-height: 38px !important;
    padding-left: 2px !important;
    padding-right: 15px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
    margin-top:0 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    margin-top: 4px !important;
    border-radius: 5px !important;
    line-height: 22px !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
}
.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__arrow b {
    border-color: #858EBD !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate( -135deg );
    transition: all 0.3s ease;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
    border-color: var(--black-light) !important;
    border-width: 0 2px 2px 0 !important;
    margin-left: -10px !important;
    width: 7px !important;
    height: 7px !important;
    transform: rotate( 45deg ) translateY(-50%);
    transition: all 0.3s ease;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--black-light) !important;
    border-width: 0 2px 2px 0 !important;
    margin-left: -10px !important;
    width: 7px !important;
    height: 7px !important;
    transform: rotate( 45deg ) translateY(-50%);
    transition: all 0.3s ease;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #858EBD !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate( -135deg );
    transition: all 0.3s ease;
}
.select2-dropdown {
    border: none !important;
    box-shadow: var(--shadow);
}
.filter-default .row{
    margin-left: -10px;
    margin-right: -10px;
}
.filter-default .row .form-group{
    padding: 0 10px;
}
.filter-actions .btn{
    margin: 5px 10px;
}
.filter-actions .btn:first-child{
    margin-left: 0 ;
}
.filter-actions {
   padding-top: 15px;
}
.filter-actions .btn{
    min-width: 250px;
    min-height: 45px;
    line-height: 35px;
}
.card-tools{
    padding: 15px 0;
}
.card-tools .title-page h1,
.card-tools .title-page h2{
    margin-bottom: 0;
}
.card {
    border: none;
    border-radius: 8px;
}
.badge {
    font-weight: 500;
}
.date-icon {
    padding-left: .75rem !important;
}
.show_demande_label{
    font-weight: 500;
    margin: 0 10px 0 0;
}
.show_info_label{
    color: var(--black-light);
}
@media (max-width: 1199px) {
    .filter-default .card-body {
        padding: 0.25rem;
    }
}
@media (max-width: 991px) {
    .card-form .filter-actions .btn {
        min-width: 100px;
    }
}

@media (max-width: 640px) {
    .filter-actions {
        padding-top: 20px;
        text-align: center;
    }
    .filter-actions .btn{
        min-width: 150px;
        margin: 5px  !important;
    }
}
@media (max-width: 576px) {
    .card-tools .link-btn .text-btn{
        display: none;
    }
}
@media (max-width: 450px) {
    .filter-actions .btn{
        width: 100%;
        margin: 5px 0 !important;
    }
    .filter-default .card-body {
        padding: .25rem;
    }
}
/*Table
------------------------------------*/
table {
    white-space: nowrap;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.table-actions {
    display: flex;
    align-items: center;
}
.table-actions .btn{
   margin: 5px 7px;
}
.table-actions .btn:last-child{
    margin-right: 0;
}
table .btn{
    min-width: 15px;
    padding: .375rem 0;
    background: #F4F7FF;
    width: 40px;
    color:var(--color-light);
    border-radius: 8px;
}
table .btn:hover{
    background: var(--primary);
    color:#ffffff;
}
.table {
    position: relative;
    border-collapse: separate;
    border-spacing: 0 10px;
    color:var(--black-light);
}
.thead-bleu th{
    padding: 1.4rem 1.2rem;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
}
.thead-bleu th:first-child{
    border-radius: 8px 0 0 8px;
}
.thead-bleu th:last-child{
    border-radius: 0 8px 8px 0;
}
.table td,
.table th,
.table tr,
.table thead,
.table tbody {
    border: none;
    position: relative;
    line-height: 19px;
}
tr.hide_border > td, td.hide_all{
    border-style:hidden;
}
.table td, .table th {
    padding: 0.6rem 0.75rem;
    vertical-align: middle;
    border-width: 1px 0 1px 0;
    border-color: #DAE0F2;
    border-style: solid;
}
.table thead th {
    border: none;
    font-weight: 600;
    color: var(--primary);
}
tbody {
    position: relative;
}

tbody tr {
    border-radius: 8px;
    margin-bottom: 0px;
    position: relative;
}
tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
    border-left-width: 1px;
}
tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
    border-right-width: 1px;
}
td.subDomainActivity{
    max-width: 450px;
}
/*tbody tr::after,
tbody tr::before {
    content: '';
    display: block;
    position: sticky;
    right: 0;
    left: 0;
    box-shadow:30px 0 0 6px var(--main-bg-color);
    height: 48px;
    margin-left: -50px;
    z-index: 9;
    border-radius: 0 8px 8px 0;
}
tbody tr::before {
    margin-right: -50px;
    margin-left:0;
    box-shadow:-30px 0 0 6px var(--main-bg-color);
    border-radius: 8px 0 0 8px;
}
thead tr::after,
thead tr::before  {
    content:"";
    display:block;
}
*/
tbody td, tbody th {
    background:#fff;
}
tbody th{
    color:var(--black-light);
    font-weight: 600;
}

.tool-bottom .tool-items{
    display: flex;
    flex-direction: column;
    background: #fff;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 5px;
    padding: 10px;
    box-shadow: var(--shadow);
}
.tool-bottom .tool-items .tool-item{
    text-align: left;
    height: auto;
    padding: 5px 10px;
}
.tool-bottom .tool-items .tool-item i{
    color: var(--color-light);
}
.tool-bottom .tool-items .tool-item:hover i{
    color: #ffffff;
}
.tool-bottom .tool-items .tool-item .action_txt{
    display: inline-block;
    margin: 0 0 0 10px;
    font-size: 0.9rem;
}
.toolbar-primary.tool-bottom .arrow {
    border-color: transparent transparent #ffffff;
}
/*Pagination
-------------------------------------*/
.bottom-pagination{
    padding: 15px 0;
    text-align: center;
}
.pagination {
    align-items: center;
    justify-content: center;
}
.pagination li{
    margin: 0 5px;
}
.pagination .page-link {
    box-shadow: var(--shadow);
    padding: 0 !important;
    margin-left: 0 !important;
    line-height: 36px !important;
    color: var(--primary);
    border: 1px solid #DAE0F2 !important;
    min-width: 38px !important;
    border-radius: 4px !important;
    text-align: center;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
/*Step wizzard
 ----------------------------------*/

.header-wizard{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.header-wizard h3{
    margin: 0;
}
.stepwizard-row {
    display: flex;
    margin:  0 -10px;
    align-items: center;
    padding: 25px 0 0 25px;
}

.header-wizard .link-btn{
     margin: 0 10px;
    display: inline-block;
 }
.header-wizard .link-btn:last-child{
    margin-right: 0 ;
}
.step-projections {
    margin : 20px 0 30px;
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    /*opacity: 1 !important;
    filter: alpha(opacity=100) !important;*/
}
.stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn {
    opacity:1 !important;
    color:var(--color-light);
}

.stepwizard-step {
    display: inline-flex;
    width: 100%;
    padding: 0 10px 0 32px;
    position: relative;
}
.stepwizard-step h5{
    width: fit-content;
    position: absolute;
    top:-30px;
    font-size: 1.1rem;
    font-weight: 400;
}
.stepwizard-step:before{
    content:'';
    width:35px;
    height: 1px ;
    position: absolute;
    top:50%;
    left:-10px;
    background: #858EBD;
    z-index: 0;
}
.stepwizard-step:first-child {
    padding-left: 10px;
}
.stepwizard-step:nth-child(3) {
    padding-left: 70px;
}
.stepwizard-step:nth-child(3):before {
    display: none;
}
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}
.btn-step{
    min-height: 54px;
    display: flex;
    text-align: left;
    align-items: center;
    padding: 5px 15px 5px 25px;
    background: #ffffff;
    color:var(--black-light) ;
    font-weight: 500;
    width: 100%;
    position: relative;
    font-size: 0.9rem;
    border-radius: 27px;
    border: 1px solid #DAE0F2;
}
.btn-step.btn-active {
    font-weight: 500;
}
.btn-step:hover,
.btn-step.btn-active {
    background: #ffffff;
    color:var(--primary) !important;
    border-color:var(--primary) !important;
    box-shadow: 0px 4px 16px #B3C0E7;
}
.btn-step:hover svg path,
.btn-step.btn-active svg path{
    fill:#fff ;
    transition: all 0.3s ease-in-out;
}
.btn-step:hover .step-icon{
    background: var(--primary);
    border-color:var(--primary);
    transition: all 0.3s ease-in-out;
}
.step-icon{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F4F7FF;
    border: 1px solid #DAE0F2;
    left: -25px;
    top:50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.btn-step svg{
    max-width: 23px;
    height: auto;
    transition: all 0.3s ease-in-out;
}
.btn-step .title-step {
    line-height: 20px;
    display: inline-block;
}
.btn-step.btn-done {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
}
.btn-step.btn-done svg path{
    fill: var(--primary);
}
.btn-step.btn-done:hover {
    color: var(--primary) !important;
    background-color: #ffffff;
    border-color: var(--primary);
}
.btn-step.btn-done .step-icon {
    color: var(--primary) !important;
    background-color: #ffffff;
    border-color: var(--primary);
}
.btn-step.btn-done:hover .step-icon {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-step.btn-done:hover svg path{
    fill: #fff;
}
.btn-step.btn-active{
     border-color: var(--primary);
     color: var(--primary) !important;
     box-shadow: var(--shadow);
 }
.btn-step.btn-active:hover,
.btn-step.btn-active svg path{
    fill: #fff;
}
.btn-step.btn-active .step-icon{
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-step i{
    margin: 0 10px 0 0;
}
.unity-section{
    color: #3A3F63;
    font-size: 1rem;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF ;
    box-shadow: 0px 4px 16px rgba(179,192,231,.52);
    border-radius: 0px 15px 15px 0px;
    font-weight: 500;
    font-size: 0.78rem;
    padding: 0 10px;
    position: fixed;
    top:135px;
    left:0;
    z-index: 999;
    align-items: center;
}
.unit-section{
      color: #3A3F63;
      font-size: 1rem;
      line-height: 40px;
      display: flex;
      justify-content: space-between;
      background: #FFFFFF ;
      box-shadow: 0px 4px 16px rgba(179,192,231,.52);
      border-radius: 15px 0px 0px 15px;
      font-weight: 500;
      font-size: 0.78rem;
      padding: 0 10px;
      position: fixed;
      top:135px;
      right:0;
      z-index: 999;
      align-items: center;
  }
.unit-section svg{
    margin: 0 5px 0 0;
    max-width: 12px;
    height: auto;
}
.form-row-header{
    padding: 1.2rem 1rem 1.2rem 0.8rem !important;
    background: var(--primary) !important;
    font-weight: 600 !important;
    margin: 0 0 15px !important;
    color: #ffffff;
}
.form-row-header .title-items{
    text-transform: uppercase;
}
.label-header{
    line-height: 19px;
    display: inline-block;
}
.form-row-box{
    align-items: center;
    background: #ffffff;
    padding: 4px 5px;
    border-radius: 8px;
    margin: 0 0 10px;
}
.form-row-box .form-control{
    border-color:#ffffff ;
}
.form-row-box .form-group {
    margin: 0;
}
.form-row-box .form-row{
    align-items: center;
}
.title-items{
    font-weight: 600;
    display: inline-block;
    line-height: 19px;
    padding: 0 10px;
    cursor: pointer;
}
.bottom-btns-steps{
    text-align: center;
    padding: 20px 0;
}
.bottom-btns-steps .btn{
    border-radius: 14px;
    margin: 5px 10px;
    border-width: 2px;
    font-size: 1rem;
    padding: .65rem 1.1rem;
}
.row-result .label-header{
    color: var(--primary);
}
.row-result .form-control{
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 991px) {
    .btn-step {
        min-width: 215px;
    }
}
/*Footer
---------------------------------*/
footer {
    padding: 30px 15px 0;
    text-align: right;
}
/*Responsive
---------------------------------*/
@media (max-width: 991px) {
    .step-projections {
        display: block;
        overflow: auto;
        padding: 0 0 12px;
    }
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    ::-webkit-scrollbar-button {
        width: 0px;
        height: 0px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border: 0px none #ffffff;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-track {
        background: var(--grey-light);
        border: 1px none #ffffff;
        border-radius: 5px;
    }
}
@media (max-width: 767px) {
    .header-wizard {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .header-wizard h3 {
        width: 100%;
        margin: 0 0 15px;
    }
    .header-actions{
        align-self: flex-end;
    }
    .form-row-header{
        display: none;
    }
    .block-show-projection .form-row>.col {
        text-align: left;
    }
    .block-show-projection .form-row-box .title-items {
        margin-top: 5px;
    }
    .block-show-projection .form-body-row .form-row .col:nth-child(6):after {
        width: auto;
        height: 2px;
        top: -1px;
        bottom: inherit;
        right: 0;
        left: 0;
    }
    .form-row-box .form-row>.col,
    .form-row-box .form-row>[class*=col-] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .form-row-box .form-control {
        height: 35px;
    }
    .form-row-box .form-group {
        margin: 0;
        display: flex;
        padding: 5px 15px;
        align-items: center;
        border-bottom: 1px solid rgba(58,63,99, .1);
    }
    .form-row-box .col:last-child .form-group {
        border-bottom: none;
    }
    .form-row-box .sr-only {
        position: static;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 5px 0 0;
    }
    .form-row-box .title-items {
        background: var(--primary);
        display: block;
        color: #fff;
        padding: 15px;
        border-radius: 8px;
    }

}
@media (max-width: 479px) {
    .text-btn{
        display: none;
    }
    .icon-btn {
        margin: 0 ;
    }
    .title-page h1, .title-page h2 {
        font-size: 1.2rem;
        line-height: 28px;
    }
}

.form-register-user .inputs-container .error{
    color: red !important;
}

/*.inner-card-header{*/
   /*padding: 0;*/
/*}*/
.inner-card-header{
    display: flex;
    align-items: center;
}
.inner-card-header h3{
    margin: 0 0 0 15px;
    font-size: 1.1rem;
    color:var(--black-color);
}
.filter-default .card-header{
    border-radius: 8px 8px 0 0;
    margin: -15px -15px -15px -15px;
    border-bottom: none;
    background: transparent;
    padding: 20px ;
    transition: all 0.3s ease-in-out;
}
.headercollaps.card-open{
    background: #f5f5fa;
    transition: all 0.3s ease-in-out;
}
.filter-default .filter_collapse{
    padding :35px 15px 15px ;
}
.btn-link-collaps.btn-open i{
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}
.btn-link-collaps i{
    transition: all 0.3s ease-in-out;
}
.btn-link-collaps{
    width: 35px;
    height: 35px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 0;
    line-height: 35px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--color-light);
}
.btn.btn-link-collaps:focus{
    box-shadow: var(--shadow) !important;
}
@media (min-width:991px){
.grid-card .card {
    height: 100%;
}
}
.card-body h4{
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
textarea.form-control{
    height: 120px !important;
}

.project-card-actions{
    /*margin-top: 20px;*/
    text-align: center;
}
.total-title{
    position: relative;
    border: none;
    background: transparent;
    min-height: 50px;
}
.total-box{
    box-shadow: 0px 4px 16px rgba(179, 192, 231,0.32);
    border-radius: 15px 0 0 15px ;
    padding: 0 30px;
    line-height: 40px;
    display: inline-block;
    position: absolute;
    background: var(--grey-light);
    top: 10px;
    right: 0;
    color: var(--black-color);
    font-weight: 500;
}
/*.f {*/
    /*text-align: center !important;*/
/*}*/
/*.n {*/
    /*text-align: center !important;*/
/*}*/
#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    -webkit-transition: all .5s ease;
    z-index: 10000;
    display:none;
}
.spinner-ajax-load {
    width: 100%;
    text-align: center;
    top: 50%;
    position: absolute;
}
.spinner-ajax-load > div {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner-ajax-load .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner-ajax-load .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.positioned {
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% {
          -webkit-transform: scale(1.0);
          transform: scale(1.0);
      }
}

/*Benchmar
------------------------------*/
.card-header-bench{
    padding:  10px 20px 20px;
}
@media (max-width:479px){
    .card-header-bench{
        padding: 20px 0;
    }
}
.card-header-bench h3,
.card-content-bench h3{
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.benchmar-section .card-content-bench {
    padding: 20px 15px 20px 35px;
}
.benchmar-section .card-content-bench h3{
    text-align: center;
}
.card-content-bench{
    padding: 20px 35px;
}
.card-content-bench-action{
    margin-top: 20px !important;
}
.card-content-bench .filter-actions{
    text-align: right;
    padding: 40px 20px 0 0;
}

@media (min-width:451px){
    .card-content-bench .filter-actions .btn:last-child{
        margin-right: 0 !important;
    }
}
@media (max-width:479px){
    .card-content-bench{
        padding: 20px 15px;
    }
}
@media (max-width:479px){
    .card-content-bench-action{
        margin-top: 20px !important;
    }
}
.block-indicateurs{
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 15px 15px 0;
}
.secteur-box{
    min-height: 41px;
    border-radius: 4px;
    border: 1px solid #DAE0F2;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
}
.indicateur-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 0 2px;
}
.indicateur-title  h4{
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
}
.indicateur-title .btn-link-collaps {
    width: 30px;
    height: 30px;
    min-height: 30px;
    min-width: 30px;
    border-radius: 5px;
    box-shadow: none;
    padding: 0;
    line-height: 30px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--primary);
    box-shadow: none;
}
.indicateur-title .btn.btn-link-collaps:hover {
    box-shadow: var(--shadow) !important;
}
.indicateur-title .btn.btn-link-collaps:focus {
    box-shadow: none !important;
}
.range-slider-item{
    display: flex;
    align-items:center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}
.range-slider-item.disabled {
    pointer-events: none;
    opacity: 0.15;
    transition: all 0.3s ease-in-out;
}
.box-indicateur{
    margin: 0 0 8px;
}
.indicateur-item{
    min-height: 60px;
    border: 1px solid #DAE0F2;
    border-radius: 5px;
    padding: 8px 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-check-item label{
    margin: 0 !important;
    display: block;
}
.indicateur-item label.indicateur-label{
    color: var(--black-light);
    font-weight: 500;
    margin: 0 8px 0 0;
}
.range-slider-indicateurs{
    max-width: 58%;
    position: relative;
    top: -10px;
}
@media (max-width:767px){
    .range-slider-indicateurs{
        max-width: 60%;
    }
}
.extra-controls-min{
    max-width: 120px;
}
.extra-controls-max{
    max-width: 120px;
}
.indicateur-row{
    min-height: 80px;
    align-items: center;
    display: flex;
}
@media (max-width:767px){
    .indicateur-row{
        margin-bottom: 15px !important;
    }
}
.indicateur-row .form-control {
    color: var(--black-light);
    font-weight: 500;
    box-shadow: var(--shadow);
    font-size: 15px;
}

.indicateur-row .styled-checkbox,.td-checkbox .styled-checkbox {
    position: absolute;
    opacity: 0;
} 
.indicateur-row .styled-checkbox + label , .td-checkbox  .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.indicateur-row .styled-checkbox + label:before ,.td-checkbox .styled-checkbox + label:before {
    content: "";
    display: block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border:2px solid var(--primary);
    background: white;
}
.indicateur-row .styled-checkbox:hover + label:before , .td-checkbox .styled-checkbox:hover + label:before {
    background: #fff;
}
.indicateur-row .styled-checkbox:focus + label:before , .td-checkbox .styled-checkbox:focus + label:before {
    box-shadow: none;
}
.styled-checkbox:checked + label:before , .td-checkbox:checked + label:before {
    background: #fff;
}
.indicateur-row .styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.indicateur-row .styled-checkbox:disabled + label:before , .td-checkbox .styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.indicateur-row .styled-checkbox:checked + label:after , .td-checkbox .styled-checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    background: var(--primary);
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 var(--primary) , 4px 0 0 var(--primary) , 4px -2px 0 var(--primary) , 4px -4px 0 var(--primary) , 4px -6px 0 var(--primary) , 4px -8px 0 var(--primary);
    transform: rotate(45deg);
}

.irs--round .irs-min, .irs--round .irs-max {
    color: var(--primary);
    top: initial;
    bottom: -59px;
    background: transparent;
    font-weight: 600;
    visibility: visible !important;
}
.irs--round .irs-handle {
    top: 32px;
    width: 12px;
    height: 12px;
    border: none;
    background-color: var(--primary);
    border-radius: 50%;
}
.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
  display: none;
}
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    display: none;
    padding: 0;
    background-color: transparent;
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
}
.irs-from, .irs-to, .irs-single {
    top: 17px;
    left: 0;
}

.irs--round .irs-handle:hover {
    background-color: var(--primary) !important;
    transition: background 0.3s ease-in-out;
}
.irs--round .irs-line {
    background-color: rgba(0,97,197,0.2);
    border-radius: 2px;
}
.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: var(--primary);
}
.irs--round .irs-handle:after {
    content: '';
    width: 50px;
    height: 50px;
    top:-19px;
    left:-19px;
    border-radius: 50%;
    z-index: 0;
    background-color: rgba(0,97,197,0.1);
    border: 1px solid var(--primary);
    position: absolute;
    z-index: -2;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.irs--round .irs-handle:hover:after {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 0px none var(--white);
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: var(--grey-light);
    border: 1px none var(--white);
    border-radius: 3px;
}
.benchmark-listing{
    padding: 0 ;
}
@media (min-width: 768px){
    .bench-table-left.col-md-5,
    .bench-table-right.col-md-5{
        -ms-flex: 0 0 46.5%;
        flex: 0 0 46.5%;
        max-width: 46.5%;
    }
    .col-md-1.bench-table-center {
        -ms-flex: 0 0 7%;
        flex: 0 0 7%;
        max-width: 7%;
    }
    .bench-table-left{
        padding-right: 0;
    }
    .bench-table-right{
        padding-left: 0;
    }
}

.table.dataTable {
    position: relative;
    border-collapse: separate !important;
    border-spacing: 0 10px !important;
    color: var(--black-light);
    border: none !important;
}
table.dataTable thead th, table.dataTable thead td {
    padding: 10px;
    border-bottom: none !important;
}
table.dataTable tbody tr  td {
    transition: all 0.3s ease-in-out;
    color: var(--black-light);
    font-weight: 500;
    font-size: 0.85rem;
}
table.dataTable tbody tr:hover td {
    background-color: #f5f5f5;
    transition: all 0.3s ease-in-out;
}
table.dataTable .td-actions{
    text-align: center;
}
table.dataTable tbody tr.selected td{
    background-color: #DAE0F2;
}
table.dataTable tbody tr td:first-child {
    text-align: center;
}
.btn.btn-tab-action{
    background: #fff;
    border: 1px solid var(--primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 0;
    min-height: 25px;
    line-height: 25px;
    min-width: 25px;
    color: var(--primary);
    font-size: 12px;
}
.benchmark-listing .card  {
    height: 100%;
}

.card-content-bench .dataTables_wrapper {
    position: relative;
    clear: both;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-content-bench .table-responsive {
    height: 100%;
}


.benchmark-listing .dataTables_wrapper .dataTables_paginate {
    float:none;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
}
.benchmark-listing .dataTables_wrapper .dataTables_paginate .paginate_button {
    box-shadow: var(--shadow);
    padding: 0 !important;
    margin-left: 0 !important;
    line-height: 36px !important;
    color: var(--primary) !important;
    border: 1px solid #DAE0F2 !important;
    min-width: 38px !important;
    border-radius: 4px !important;
    text-align: center;
    background: #fff;
    margin: 0 5px;
}
.benchmark-listing .dataTables_wrapper .dataTables_paginate .paginate_button.current
 {
    color: #fff !important;
    border: 1px solid var(--primary) !important;
    background-color: var(--primary) !important;

}
.benchmark-listing .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.benchmark-listing .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #e9ecef !important;
    color: var(--primary) !important;
    border: 1px solid #DAE0F2 !important;
}
.bench-table-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bench-table-center .btn {
    max-width: 40px;
    min-width: 40px;
    padding:  0;
    min-height: 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.bench-table-center .btn:hover{

    transition: all 0.3s ease-in-out;
}
.bench-table-center .btn img{
    max-width: 35px;
    height: auto;
}
.bench-table-center .btn.btn-addAll{
    margin: 0 0 0 30px ;
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}
.bench-table-center .btn.btn-addAll:hover{
    margin: 0 0 0 38px ;
}
.bench-table-center .btn.btn-removeAll{
    margin: 0 30px 0 0;
}
.bench-table-center .btn.btn-removeAll:hover{
    margin: 0 38px 0 0;
}
.card-action-bench{
    padding: 20px 35px;
    text-align: center;
}
@media (max-width: 768px){
    .bench-table-center{
        flex-direction: row;
        padding: 20px 15px;
    }
    .bench-table-center .btn.btn-removeAll {
        margin: 0;
        transform: rotate(90deg);
        position: relative;
        top: -10px;
    }
    .bench-table-center .btn.btn-addAll {
        margin: 0;
        transform: rotate(-90deg);
        transition: all 0.3s ease-in-out;
        top: 10px;
    }
}
.bold {font-weight: bold; }
.btn-edit-project{
    padding-right: 15px;
    text-align: center;
    min-height: 40px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    color: #0061C5;
    font-size: 0.9em;
}



.header-actions.actions-fixed-top{
    position: fixed;
    z-index: 99;
    inset: auto 15px auto auto;
    display: flex;
    flex-direction: column;
    text-align: right;
}
.actions-fixed-top .link-btn{
    margin:5px 0!important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.actions-fixed-top .link-btn:hover{
    overflow: visible;
}
.actions-fixed-top .link-btn .text-btn{
    width: 250px;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    opacity: 0;
}
.actions-fixed-top .link-btn:hover .text-btn{
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.actions-fixed-top .link-btn .icon-btn{
    margin : 0;
}
#myModalPositionMyProject .btn{
    width: 30%
}
#PositionProjectBenchmarkModal .modal-dialog {
    min-width: 700px;
}
.extra-controls-max .unity-title-max{
    position: absolute;
    right: 22px;
    top: 14px;
    z-index: 99;
}
.extra-controls-min .unity-title-min{
    position: absolute;
    left: 116px;
    top: 14px;
    z-index: 99;
}
.benchmark-body .table-responsive .table thead th{
    white-space: normal!important;
}
.dot {
    height: 25px;
    width: 25px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}
#carre {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    height: 200px;
    width: 200px;
    background: linear-gradient(90deg, #aa56d2, #ed56c5);
}

/* === [Valuation] ===*/
.card.card-style-1 .card-header{
    border-radius: 8px;
}
.card.card-style-1 .card-header .card-title{
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    line-height: 19px;
}
.card.card-style-1 .card-footer {
    border-radius: 8px;
}



.cases-selector label {
    width: 100%;
}

.cases-selector .card-input-element {
    display: none;
}

.cases-selector .card-input {
    margin: 10px;
    padding: 0px;
    border-radius: 5px;
    border: 1px solid var(--primary);

}

.cases-selector .card-input .card-header, .cases-selector .card-input .card-footer{
    border: none;
    background: initial;
}
.cases-selector .card-input .card-footer{
    color: var(--primary);

}

.cases-selector .card-input:hover {
    cursor: pointer;
}

.cases-selector .card-input-element:checked + .card-input {
    background: var(--primary);
    color: white
}

.cases-selector .card-input-element:checked + .card-input .card-header .card-title, .cases-selector .card-input-element:checked + .card-input .card-footer{
    color: white
}


.cases-selector .card-input .card-header {
    height: 75px!important;
}
.cases-selector .card-input .card-body {
    height: 80px!important;
}

/*=== [START style-1] ====*/

.table.style-1 {
    border-spacing: 0px !important;
}

.table.style-1 th {
    color: var(--white);
    background-color: var(--primary);
}

.table.style-1 td {
    border: none;
    border-radius: initial;
    padding: 5px 10px;
}

.table.style-1 td:nth-child(2) {
    color: var(--primary);
}

.table.style-1 tr:nth-last-child(2) td {
    border-top: 1px solid var(--primary);
    border-bottom: 2px solid var(--primary);

}

.table.style-1 tr:nth-last-child(1) td {
    padding-top: 15px !important;
}

/*=== [END style-1] ====*/

/*=== [START Valuation table] ====*/
.form-row-header-valuation{
    padding: 1rem 1rem 1rem 0.8rem !important;
    background: var(--primary) !important;
    font-weight: 600 !important;
    margin: 0 0 15px !important;
    color: #ffffff;
}
.form-row-rounded.form-row {
    border: 2px solid #E9EDF8;
    margin-bottom: 5px;
    border-radius: 5px;
    padding: 2px 0;
}

.form-row-rounded.form-row .form-control:disabled, .form-control[readonly] {
    background-color: transparent;
    border: none;
}

.form-row-rounded.form-row.form-row-highlight .form-control[readonly] {
    font-weight: 600;
}

.form-row-rounded.form-row.form-row-highlight {
    background-color: #DAE0F1;
}
.bottom-btns-steps.valuation-table-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: initial!important;
    padding: 20px 0;
}
/*=== [END Valuation table] ====*/

.flag-icon{
    height: 24px;
    width: auto;
}