/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;1,400&display=swap'); */

:root {
    --main-bg-color: #fff;
    --dark-text-color: #000;
    --green-color: #008001;
    --grey-text-color: #666666;
    --font-robotoregular: "robotoregular";
    --font-palatino: "Palatino Linotype";
    --font-verdana: Verdana;
    --input-border-color: #d3d3df;
    --main-light-blue: #DDE2FF;
    --main-light-green: #D9EDDC;
    --thead-color: #F1DDE7;
    --btn-red: #E20713;
    --main-light-grey: #efefef;
}


html,
body {
    color: rgba(33, 37, 41, 1);
    font-family:
        /* "Source Sans Pro", */
        "robotoregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

::-webkit-scrollbar-track {
    background: #c0bebe;
}

::-webkit-scrollbar-thumb {
    background: #888;
    width: 7px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 158, 61);
}

.container-login {
    display: flex;
    justify-content: center;
    font-family: var(--font-robotoregular);
}

.main-auth {
    width: 65% !important;
    margin-top: 10%;
}

p {
    /* font-family: var(--font-robotoregular); */
    font-size: 14px;
    line-height: 20px;
}

b.main-title {
    font-size: 20px;
    font-family: var(--font-palatino);
    font-weight: bold;
    margin-top: 30px;
}

input.form-control,
select {
    background: var(--main-bg-color);
    border: 1px solid var(--input-border-color);
    box-sizing: border-box;
    border-radius: 4px;
    font-family: var(--font-robotoregular);
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 21px !important;
}

.form-control:focus {
    border-color: var(--input-border-color) !important;
    box-shadow: none !important;
}

@media only screen and (min-width: 768px) {
    .cont-center {
        margin-left: 28% !important;
    }

    .btn-fh {
        width: 58%;
    }
}

@media only screen and (max-width: 767px) {
    .cont-center {
        margin-left: 0 !important;
    }

    .btn-fh {
        width: 100%;
    }
}

@media screen and (max-width:520px) {
    .menu {
        padding: 0px !important;
    }

    .cont-center {
        margin-left: 0% !important;
        margin-right: 0px;
    }
}

.spec {
    height: 25px;
    width: 20px;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    overflow: hidden;
    accent-color: var(--grey-text-color);
}

.btn-fh {
    background-color: var(--green-color);
    color: var(--main-bg-color);
    display: flex;
    justify-content: space-around;
    align-content: center;
    font-size: 14px;
    font-family: var(--font-robotoregular);
}

.form-login {
    margin: 0 auto;
}

button:hover>span {
    cursor: pointer;
    transform: scale(1.08);
    color: var(--main-bg-color) !important;
}

.image {
    display: flex;
    justify-content: center;
}

.imglogo {
    width: 110px;
}

.imglogo2 {
    width: 130px;
}

div.sidebar {
    position: absolute;
    height: 100%;
}

.sidebar-menu li a.bg-white {
    background-color: var(--main-bg-color) !important;
}

ul.sidebar-menu {
    margin: 0;
    padding: 0;
    max-width: 100%;
    list-style: none;
    list-style-type: none;
}

.sidebar-menu li a span {
    margin-right: 15px;
    color: var(--main-bg-color);
}

.sidebar-menu li a {
    background-color: var(--green-color);
    padding: 20px 25px;
    display: block;
    text-decoration: none;
    color: var(--main-bg-color);
}

.sidebar-menu li a {
    width: 80%;
}

.size {
    width: 25% !important;
}

.sidebar-menu li a:hover {
    background-color: var(--green-color);
    filter: brightness(10%);
    padding: 20px 25px;
    display: block;
    text-decoration: none;
    color: var(--main-bg-color);
}

li.have-children ul {
    padding: 0px;
}

li.have-children ul li a {
    background-color: var(--dark-text-color);
    padding-left: 62px;
}

li.have-children ul li a:hover {
    color: var(--main-bg-color);
    background-color: var(--dark-text-color);
    filter: brightness(50%);
    padding-left: 62px;
}

li.have-children,
li {
    position: relative;
}

.have-children span::after {
    position: absolute;
    right: 30px;
    content: "\f054";
    color: var(--main-bg-color);
    transition: all .5s;
}

li.active.have-children span::after {
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar-menu .have-children>ul {
    display: none;
}

.menu-collecte {
    font-family: var(--font-robotoregular);
    color: var(--dark-text-color);
    background-color: #F0F0F0;
    margin: 5px;
    height: 50px;
}

.menu-collecte>a {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    color: var(--dark-text-color);
}

.menu-collecte>a>span {
    margin-right: 25px;
    color: var(--input-border-color);
}

thead {
    background-color: var(--thead-color);
    border: none;
}

g .table {
    width: 90%;
}

.modal-content.modal-custom-vce {
    padding: 45px 0 !important;
    /* margin-top: 50vh;
    transform: translateY(-50%); */
}

.modal-content.modal-custom-nmm {
    padding: 10px 0 !important;
}

.modal-custom-nmm-ctn {
    padding: 10px 0 !important;
}

.modal-custom-nmm-btn {
    text-align: end;
}

.btn-primary {
    background-color: var(--green-color) !important;
    border-color: var(--green-color) !important;
}

.btn-danger {
    background-color: var(--btn-red) !important;
}

.manage_group_priv,
.btn-sm {
    width: 25px;
    height: 25px;
    border-radius: 12px;
}

.delete_profil,
.delete_user,
.delete_prvlg,
.delete_question,
.delete_critere_question,
.ok_critere_question,
.delete_gu,
.edit_gu {
    width: 25px;
    height: 25px;
    border-radius: 12px;
}

.glyphicon {
    left: 0px;
}

.sous-titre {
    font-family: var(--font-robotoregular);
    font-size: 24px;
}

#btn_creer {
    width: 100px !important;
}

span.glyphicon.glyphicon-list {
    /* margin-left: 4px; */
    color: var(--green-color);
}

.glyphicon-list:before {
    content: "\e056";
    color: var(--main-bg-color) !important;
}

@media (max-width: 768px) {
    .glyphicon-list:before {
        content: "\e056";
        color: var(--grey-text-color) !important;
    }
}

@media (max-width: 600px) {
    #corps {
        width: calc(100% - 57px) !important;
    }

    .button-left {
        display: unset;
    }
}

@media (min-width: 600px) {
    .button-left {
        display: none;
    }
}

img.rounded.logo {
    width: 55px;
    height: 50px;
}

.column1 {
    padding-right: 0px !important;
}

.column2 {
    padding-left: 30px !important;
}

.delete_user>i,
.delete_profil>i,
.delete_prvlg>i,
.delete_question>i,
.delete_critere_question>i,
.ok_critere_question>i {
    left: -7px !important;
    top: -3px !important;
}

.card-size {
    height: 100px;
    background-color: var(--main-light-grey);
    border: none;
}

.btn-sm>span {
    left: -4px !important;
    top: 0px !important;
    width: 16px;
    height: 20px;
}

.btn-rouge {
    background-color: transparent !important;
    border: solid 1px var(--btn-red) !important;
    color: var(--btn-red) !important;
    transition: all .5s;
    font-size: 14px;
}

.btn-rouge:hover {
    background-color: var(--btn-red) !important;
    color: var(--main-bg-color) !important;
}

.fade {
    background-color: rgba(0, 0, 0, 40%);
}

.t-modal {
    display: flex;
    justify-content: center;
}

#button-anuler>button {
    width: 37%;
}

.en-tete {
    background-color: var(--main-light-grey);
}

/*.delete_profil>i {
    left: -7px !important;
    top: -4px !important;
} */
.edit_question {
    margin-right: 2px;
}

@media (min-width: 768px) and (max-width:991.98px) {
    .imglogo {
        width: 213x;
    }

    #button-action {
        width: 30% !important;
    }
}

@media (min-width: 320px) and (max-width:520px) {
    .sous-titre {
        font-size: 20px;
    }

    .navbar-brand>img.logo {
        width: 76px;
        height: 45px;
        margin-top: -5px;
    }

    a#navbarDropdownMenuLink {
        margin-left: 0px;
        margin-left: 18px;
    }

    .ptt {
        padding-top: 0px !important;
    }

    /* #btn-sync{
        right: 125px !important;
    } */
}

input#identifiant {
    height: 34px;
}

.main-config {
    width: 65% !important;
}

.config {
    margin: 120px auto 0;
}

.stat {
    position: absolute;
    top: -68px;
    left: 154px;
    text-align: center;
    padding-top: 30px;
    border: 5px solid rgb(227, 227, 227);
    width: 140px;
    height: 110px;
    font-size: 30px;
    border-radius: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.stati {
    margin-left: 50px;
    margin-top: 7rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 5px solid rgb(227, 227, 227);
}

@media (min-width: 992px) {
    .stati {
        width: 30rem;
        height: 9rem;
    }
}

@media (max-width: 992px) {
    .stat {
        left: 101px;
    }

    .stati {
        margin-left: 10px;
        height: 9rem;
    }
}

@media (max-width: 320.99px) {
    .stat {
        left: 53px;
    }

    .stati {
        margin-left: 5px;
        height: 10rem;
    }
}

.manage_group_priv>i {
    left: -6px !important;
    top: -3px !important;
}

.delete_gu>i,
.edit_gu>i {
    left: -6px !important;
    top: -3px !important;
}

.swal2-styled.swal2-cancel {
    border: solid 1px #6e7881 !important;
    color: #6e7881 !important;
}

.border-secondary {
    color: #6c757d;
}

.card-header:first-child {
    background-color: var(--green-color) !important;
}

#accordion>.card {
    border: 0px solid var(--green-color) !important;
}

.sidebar ul {
    background-color: var(--green-color);
}

.page-item.active .page-link {
    background-color: var(--input-border-color) !important;
    border-color: var(--input-border-color) !important;
    color: var(--main-bg-color) !important;
}

.page-link {
    color: var(--grey-text-color) !important;
}

div.dropup>.btn-secondary {
    background-color: var(--input-border-color) !important;
    border-color: var(--input-border-color) !important;
}

.header_priv:first-child {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

.btn-rs {
    width: 160px !important;
}

@media (min-width: 520px) and (max-width:582px) {
    a#navbarDropdownMenuLink {
        margin-left: 0px;
        margin-left: 8px;
    }

    /* #btn-sync{
        right: 145px !important;
    } */
}

#btn-sync, #btn-sync-user, #btn-sync-data{
    text-align: center;
    position: absolute;
    background: var(--btn-red);
    /* border: 1px solid transparent; */
    border-radius: 8px;
    color: white;
    font-weight: bolder;
    text-align: center;
    position: absolute;
    background: var(--btn-red);
    border: 1px solid transparent;
    border-radius: 8px;
    color: white;
    font-weight: bolder;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgb(255 255 255 / 60%), inset -2px -2px 3px rgb(0 0 0 / 60%);
    border: 0px;
}

#btn-sync:hover #btn-sync-user:hover, #btn-sync-data:hover{
    background: var(--grey-text-color);
}

.btn-sync-hide {
    display: none;
    pointer-events: none;
}

/* #btn-sync.btn-flip {
    height: 28px;
    width: 26px;
} */
.notif {
    /* position: absolute;
    right: 290px;
    top: 16px; */
    width: 142px;
    height: 36px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.notif>p {
    color: white;
}

.media-body {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 9px;
}

.dropdown-toggle::after {
    color: #dc354500;
}

.media>img {
    border-radius: 50%;
}

.notf {
    width: 50px;
}

@media (max-width:520px) {
    .dropdown-toggle::after {
        display: none;
    }

    .notif>p {
        display: none;
    }

    .notif>span {
        margin-left: -1px !important;
    }

    .notif {
        right: 115px;
        width: 36px;
        height: 36px;
        border-radius: 50px;
    }
}

.select2-container .select2-selection--multiple {
    min-height: 30px !important;
}

@media (min-width: 769px) {
    .libele {
        max-width: 13%;
        margin-left: 19px;
    }

    .user {
        max-width: 5.46% !important;
    }

    .gu {
        max-width: 17% !important;
    }

    .libel {
        width: 13% !important;
        padding-left: 19px;
    }

    .libl {
        width: 17% !important;
        padding-left: 19px;
    }

    .mt {
        margin-top: 1rem !important;
    }

    .name {
        max-width: 5.46% !important
    }

    .style {
        width: 50% !important;
    }
}

@media (max-width: 768px) {
    .libele {
        max-width: 20% !important;
    }

    .user {
        max-width: 8.46% !important;
    }

    .gu {
        margin-right: 2px;
    }

    .libel {
        width: 20% !important;
        padding-left: 19px;
    }

    .libl {
        width: 27% !important;
        padding-left: 19px;
    }

    .wid {
        max-width: 55.5% !important;
    }

    .name {
        max-width: 10.46% !important
    }

    .style {
        width: 80% !important;
    }
}

#form_question_commun .row {
    width: 100%;
}

/* .form_migration_row {
opacity: 1;
transition: opacity 1s;
}
.form_migration_row.hide {
opacity: 0;
} */
.modal-lg,
.modal-xl {
    max-width: 100%;
}

.class {
    background-color: #e9ecef;
}

input,
select {
    border: 1px solid var(--input-border-color);
}

.redborder {
    border: 1px solid #ff0019 !important;
}

label {
    font-size: 16px;
}

input {
    font-size: 16px;
}

input[type="text"] {
    background: var(--main-bg-color);
    border: 1px solid var(--input-border-color);
    box-sizing: border-box;
    border-radius: 4px;
    font-family: var(--font-robotoregular);
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 21px !important;
}

.btn-delete {
    position: relative;
    background: #fff !important;
    vertical-align: top !important;
    width: 25px;
    height: 30px;
    padding: 0px 1px 0px 0px !important;
    float: right;
    margin-top: -120px;
    margin-right: 4px;
}

.btn-hidden {
    display: none !important;
}

.span-delete {
    width: 15px;
    padding-top: 5px;
    color: #212529;
}
.bootstrap-table .fixed-table-container .table .thead{
    position: sticky;
    top: 0;
    z-index: 1;
}
@media (max-height: 1120px) {
    .bootstrap-table .fixed-table-container .fix-body{
        max-height: 400px !important;
    }
}
#version {
    color: #a3a6b3;
    display: flex;
    /* margin: auto; */
    top: 96%;
    left: 12px;
    width: calc(100% - 20px);
}

.custom-content-left {
    justify-content: flex-start !important;
    text-align: left !important;
}

.swal2-radio.swal2-radio-vertical {
  display: block !important;
  text-align: left;
}
.swal2-radio.swal2-radio-vertical label {
  display: block !important;
  margin: 20px 0;
}
