* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 100%;
    background: #F1F1F1;
}

*, html {
    --primaryGradient: linear-gradient(93.12deg, #007dfed1 0.52%, #007dfed1 100%);
    --secondaryGradient: linear-gradient(268.91deg, #007dfed1 -2.14%, #007dfed1 99.69%);
    --primaryBoxShadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    --secondaryBoxShadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
    --primary: #007dfed1;
}

/* CHATBOX
=============== */

.option_div {
  cursor: pointer;
}
#option_div_hr {
  cursor: pointer;
}
.chatbox {
    position: absolute;
    bottom: 25px;
    right: 30px;
}

/* CONTENT IS CLOSE */
.chatbox__support {
    display: flex;
    flex-direction: column;
    background: #eee;
    /* width: 600px;
    height: 500px; */
    width: 60px;
    height: 700px;
    z-index: -123456;
    opacity: 0;
    transition: all .5s ease-in-out;
}

/* CONTENT ISOPEN */
.chatbox--active {
    transform: translateY(-10px);
    z-index: 123456;
    opacity: 1;

}

/* BUTTON */
.chatbox__button {
    text-align: right;
}

.send__button {
    padding: 6px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}


/* HEADER */
.chatbox__header {
    position: sticky;
    top: 0;
    background: orange;
}

/* MESSAGES */
.chatbox__messages {
    margin-top: auto;
    display: flex;
    overflow-y: scroll;
    flex-direction: column-reverse;
}

.messages__item {
    background: orange;
    max-width: 60.6%;
    width: fit-content;
}
.messages__item a{
  word-wrap: break-word;
}

.messages__item--operator {
    margin-left: auto;
}

.messages__item--visitor {
    margin-right: auto;
}

/* FOOTER */
.chatbox__footer {
    position: sticky;
    bottom: 0;
}

.chatbox__support {
    background: #f9f9f9;
    /* height: 600px;
    width: 500px; */
    width: 600px;
    height: 700px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* HEADER */
.chatbox__header {
    background: var(--primaryGradient);
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
    /* #modified this  */
    justify-content: flex-start;
    padding: 10px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: var(--primaryBoxShadow);
}

.chatbox__image--header {
    margin-right: 10px;
}

.chatbox__heading--header {
    font-size: 1.2rem;
    color: white;
}

.chatbox__description--header {
    font-size: .9rem;
    color: white;
}

/* Messages */
.chatbox__messages {
    padding: 0 20px;
}

.messages__item {
    margin-top: 10px;
    background: #E0E0E0;
    padding: 8px 12px;
    max-width: 70%;
}

.messages__item--visitor,
.messages__item--typing {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.messages__item--operator {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--primary);
    color: white;
}

/* FOOTER */
.chatbox__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--secondaryGradient);
    box-shadow: var(--secondaryBoxShadow);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: 20px;
}

.chatbox__footer input {
    width: 80%;
    border: none;
    padding: 10px 10px;
    border-radius: 30px;
    text-align: left;
}

.chatbox__send--footer {
    color: white;
}

.chatbox__button button,
.chatbox__button button:focus,
.chatbox__button button:visited {
    padding: 10px;
    background: white;
    border: none;
    outline: none;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.bk{
    background-color: black;
}

/* -------------------------------------------------- */

* {
    margin:0;
    padding: 0;
    }
    
    *:focus {
    outline: none !important;
    box-shadow: none !important;
    }
    
    *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    }
    
    *::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff;
    border-radius: 10px;
    background: transparent;
    }
    
    *::-webkit-scrollbar-thumb {
    background: #438eb9;
    border-radius: 10px;
    scrollbar-width: thin;
    scrollbar-color: #438eb9;
    }
    
    .heading {
    color: #1f1f1f;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    }
    
    .mh-auto {
    min-height: auto !important;
    }
    
    .hide__label {
    opacity:0;
    }
    
    .login__section .login__img {
    background:url('../images/login-right-img.jpg');
    background-repeat:no-repeat;
    background-size: cover;
    background-position:center;
    height:100vh;
    }
    
    .login__form {
    padding: 2rem;
    box-shadow: 0px 1px 7px #ccc;
    margin-top: 5rem;
    border-radius:5px;
    }
    
    .login__form .nav-tabs {
    border:0;
    }
    
    .login__form .nav-tabs .nav-item {
    margin-bottom: -1px;
    max-width: 50%;
    width: 50%;
    }
    
    .login__form .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: #727cf5;
    }
    
    .login__form .nav-tabs .nav-link {
    border: 1px solid #ccc;
    border-radius: 0;
    color: #000;
    padding: 10px;
    text-align: center;
    }
    
    .login__form .tab-content {
    padding: 2rem;
    border: 1px solid #ccc;
    }
    
    .main__btn {
    background: #727cf5;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 40px;
    padding: 0 10px;
    min-width:10rem;
    font-size:14px;
    }
    
    .form__section .input__block label {
    display: block;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    }
    
    .form__section .input__block input,
    .form__section select {
    background: #fff 0 0 no-repeat padding-box;
    border: 1px solid #00000020;
    border-radius: 5px;
    color: #3b4452;
    height: 40px;
    opacity: 1;
    padding: 5px 10px;
    width: 100%;
    margin-bottom:1rem;
    }
    
    
    .main__section {
    display: flex;
    }
    
    .main__section .sidebar {
    background: #438eb9;
    height: auto;
    padding-top: 0;
    transition: all 0.5s;
    width: 15%;
    height:100vh;
    transition: all .5s;
    }
    
    
    .main__section .sidebar .close__btn {
    display:none;
    }
    
    .main__section .sidebar.close__sidebar {
    width:4rem;
    transition: all .5s;
    }
    
    .main__section .sidebar.close__sidebar .sidebar__navigation .text {
    display:none;
    }
    
    .sidebar.close__sidebar .sidebar__navigation ul li a {
    justify-content: center;
    }
    
    .sidebar.close__sidebar .dashboard__logo h3 {
    font-size:14px !important;
    }
    
    .main__section .right__section {
    width: 85%;
    background: #f0f0f0;
    transition: all .5s;
    }
    
    .main__section .right__section.close__sidebar {
    width:100%;
    transition: all .5s;
    }
    
    .main__section .right__section.close__sidebar .top__count .dash-widget {
    min-height: 167px;
    }
    
    .main__section .sidebar .dashboard__logo h3 {
    text-align: center;
    margin: 10px auto;
    color: #fff;
    font-size: 20px;
    font-style: italic;
    }
    
    .sidebar__navigation {
    padding:10px;
    }
    
    .sidebar__navigation ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration:none;
    margin-bottom:20px;
    }
    
    .sidebar__navigation ul li a i.fa {
    margin-right:10px;
    font-size:16px;
    }
    
    .sidebar__navigation ul ul {
    margin-left:20px;
    }
    
    .sidebar__navigation .panel-body {
    background: #2c4b60;
    padding: 10px;
    }
    
    /* .main__section .sidebar .dashboard__logo img {
    width: 100px;
    } */
    
    .header__section {
    box-shadow: 7px 1px 9px 0px #ccc;
    background: #fff;
    padding:0px 16px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    }
    
    
    .header__section .navbar-nav .nav-link {
    color:#000;
    text-decoration:none;
    }
    
    .header__section .avtar__block .dropdown-menu.show {
    display: block;
    left: -2rem !important;
    min-width: 8rem;
    width: 8rem;
    }
    
    .header__section .avtar__block .dropdown-menu p {
    margin:0;
    padding:0 10px;
    cursor: pointer;
    }
    
    .main__section .contain__area {
    /* background: #fff; */
    margin: 1rem;
    padding: 1rem;
    height: calc(100vh - 110px);
    overflow-y:scroll;
    }
    
    .main__section .contain__area::-webkit-scrollbar {
    width:0;
    }
    
    /* .main__section .page__heading {
    font-size: 1.1rem;
    color: #20113e;
    font-weight: 600;
    margin-bottom: 2rem;
    } */
    
    .main__section .top__count {
    margin-bottom:1rem;
    }
    
    .main__section .top__count .card-body {
    display: flex;
    align-items: flex-start;
    justify-content:space-between;
    }
    
    .main__section .top__count .dash-widget {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    /* margin-top:15px; */
    margin-bottom:2rem;
    /* border:0; */
    min-height: 157px;
    }
    
    .main__section .top__count .dash-widget-info span {
    font-size: 14px;
    color: black;
    font-weight: 500;
    }
    
    .main__section .dash-widget .card-body .dash-widget-icon {
    background-color: #dcdefc;
    color: #727cf5;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    width: 50px;
    margin-right: 10px;
    text-align: center;
    border-radius:5px;
    }
    
    .main__section .dash-widget .card-body .dash-widget-info .green {
    color: #4CAF50;
    font-weight:bold;
    }
    
    .main__section .dash-widget .card-body .dash-widget-info .red {
    color: #f00;
    font-weight:bold;
    }
    
    .main__section .dash-widget .card-body .dash-widget-info i::before {
    margin-right:5px;
    font-size:12px;
    } 
    
    
    .main__section .dash-widget .card-body .dash-widget-icon i {
    font-size:16px;
    }
    
    .main__section .chart__section {
    margin-bottom:2rem;
    }
    
    .main__section .chart__block {
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    min-height: 27rem;
    }
    
    .main__section .reason__block ul {
    padding-left:1rem;
    }
    
    .main__section .reason__block ul li {
    margin-bottom:1rem;
    }
    
    /* .main__section .table__block {
    padding: 1rem;
    min-height: 20rem;
    margin-bottom: 2rem;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    } */
    
    .main__section .table__block th {
    background:#f7f7f7;
    }
    
    .main__section .table__block th,
    .main__section .table__block td {
    font-size:13px;
    }
    
    .main__section .table__block .dataTables_wrapper .dataTables_length select {
    width:4rem;
    border:1px solid #00000020;
    }
    
    .dataTables_wrapper .dataTables_filter input {
    border:1px solid #00000020;
    }
    
    
    .search__results .search__top {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:1rem;
    }
    
    .search__results .search__top h3 {
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    }
    
    .search__results .table__block table th {
    width:30%;
    }
    
    
    @media (max-width: 991px) {
    
        .main__section .top__count .dash-widget {
        margin-bottom:1rem;
        }
        
        .login__form {
        padding:1rem;
        }
    
    }
    
    @media (max-width: 767px) {
    
        .hide__label {
        display:none !important;
        }
    
        .main__section .sidebar.close__sidebar .close__btn {
        display:none;
        }
    
        .main__section .sidebar .close__btn {
        position: absolute;
        color: #fff;
        background: #727cf5;
        right: -32px;
        width: 2rem;
        height: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        }
    
        .login__section .login__img {
        display:none;
        }
    
        .main__section .sidebar {
        position: absolute;
        z-index: 2;
        width: 60%;
        left:0;
        }
    
        .main__section .sidebar.close__sidebar {
        left:-30rem;
        width:60%;
        } 
    
        .main__section .right__section {
        width:100%;
        }
    
        .main__section .contain__area {
        height: calc(100vh - 85px);
        }
    
        .main__section  .table__block {
        margin-top:1rem;
        }
    
        .main__section .chart__block {
        min-height:auto;
        }
    }

    /* -----------------------------------------  */

    html {
        scroll-behavior: smooth;
      }
      
      * {
        margin: 0;
        padding: 0;
        /* scroll-behavior: smooth;
        overflow-y: scroll; */
      }
      
      *:focus {
        outline: none !important;
        box-shadow: none !important;
      }
      
      *::-webkit-scrollbar {
        width: 5px;
        height: 5px;
      }
      
      *::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #fff;
        border-radius: 10px;
        background: transparent;
      }
      
      *::-webkit-scrollbar-thumb {
        background: #20113e;
        border-radius: 10px;
        /* scrollbar-width: thin;
        scrollbar-color: #20113e; */
      }
      .container-fluid {
        color: white;
      }
      .heading {
        color: #1f1f1f;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 20px;
      }
      
      .mh-auto {
        min-height: auto !important;
      }
      
      .hide__label {
        opacity: 0;
      }
      
      .login__section .login__img {
        background: url("../images/login-right-img.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 100vh;
      }
      
      .login__form {
        padding: 1rem;
      }
      
      .login__form .nav-tabs {
        border: 0;
      }
      
      .login__form .nav-tabs .nav-item {
        margin-bottom: -1px;
        max-width: 50%;
        width: 50%;
      }
      
      .login__form .nav-tabs .nav-link.active {
        color: #fff !important;
        background-color: #b93236;
      }
      
      .login__form .nav-tabs .nav-link {
        border: 1px solid #ccc;
        border-radius: 0;
        color: #000;
        padding: 10px;
        text-align: center;
      }
      
      .login__form .tab-content {
        padding: 2rem 5rem;
        /* border: 1px solid #ccc; */
      }
      
      .main__btn {
        background: #007dfe;
        border: none;
        border-radius: 5px;
        color: #fff;
        height: 40px;
        padding: 0 10px;
        min-width: 10rem;
        font-size: 14px;
      }
      
      .form__section .input__block label {
        display: block;
        color: #1f1f1f;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 5px;
      }
      
      .form__section .input__block input,
      .form__section select {
        background: #fff 0 0 no-repeat padding-box;
        border: 1px solid #00000020;
        border-radius: 5px;
        color: #3b4452;
        height: 40px;
        opacity: 1;
        padding: 5px 10px;
        width: 100%;
        margin-bottom: 1rem;
      }
      
      .main__section {
        display: flex;
      }
      
      .main__section .sidebar {
        background: #007dfed1;
        height: auto;
        padding-top: 0;
        transition: all 0.5s;
        width: 20%;
        height: 100vh;
        transition: all 0.5s;
      }
      
      .main__section .sidebar .close__btn {
        display: none;
      }
      
      .main__section .sidebar.close__sidebar {
        width: 0;
        transition: all 0.5s;
      }
      
      .main__section .sidebar.close__sidebar .dashboard__logo,
      .main__section .sidebar.close__sidebar .sidebar__navigation {
        display: none;
      }
      
      .main__section .right__section {
        width: 80%;
        background: #f0f0f0;
        transition: all 0.5s;
      }
      
      .main__section .right__section.close__sidebar {
        width: 100%;
        transition: all 0.5s;
      }
      
      .main__section .sidebar .dashboard__logo h3 {
        text-align: center;
        margin: 10px auto;
        color: #fff;
        font-size: 20px;
        font-style: italic;
      }
      
      .sidebar__navigation {
        padding: 10px;
      }
      
      .sidebar__navigation ul li a {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none;
        margin-bottom: 10px;
      }
      
      .sidebar__navigation ul li a i.fa {
        margin-right: 10px;
      }
      
      .sidebar__navigation ul ul {
        margin-left: 20px;
      }
      
      .sidebar__navigation .panel-body {
        background: #2c4b60;
        padding: 10px;
      }
      
      /* .main__section .sidebar .dashboard__logo img {
      width: 100px;
      } */
      
      .header__section {
        box-shadow: 7px 1px 9px 0px #ccc;
        background: #fff;
        padding: 0px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .header__section .navbar-nav .nav-link {
        color: #000;
        text-decoration: none;
      }
      
      .header__section .avtar__block .dropdown-menu.show {
        display: block;
        left: -2rem !important;
        min-width: 8rem;
        width: 8rem;
      }
      
      .header__section .avtar__block .dropdown-menu p {
        margin: 0;
        padding: 0 10px;
        cursor: pointer;
      }
      
      .main__section .contain__area {
        background: #fff;
        margin: 1rem;
        padding: 1rem;
        height: calc(100vh - 130px);
        overflow-y: scroll;
      }
      
      .main__section .contain__area::-webkit-scrollbar {
        width: 0;
      }
      
      /* .main__section .page__heading {
      font-size: 1.1rem;
      color: #20113e;
      font-weight: 600;
      margin-bottom: 2rem;
      } */
      
      .main__section .top__count {
        margin-bottom: 2rem;
      }
      
      .main__section .top__count .card-body {
        display: flex;
        align-items: center;
        justify-content: space-around;
      }
      
      .main__section .top__count .dash-widget {
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
      }
      
      .main__section .dash-widget .card-body .dash-widget-icon {
        background-color: #fddbdc;
        color: #b93236;
        font-size: 20px;
        height: 70px;
        line-height: 70px;
        width: 70px;
        margin-right: 10px;
        text-align: center;
        border-radius: 100%;
      }
      
      .main__section .dash-widget .card-body .dash-widget-icon i {
        font-size: 24px;
      }
      
      .main__section .chart__section {
        margin-bottom: 2rem;
      }
      
      .main__section .chart__block {
        padding: 1rem;
        min-height: 20rem;
        margin-bottom: 2rem;
      }
      
      .main__section .reason__block ul {
        padding-left: 1rem;
      }
      
      .main__section .reason__block ul li {
        margin-bottom: 1rem;
      }
      
      /* .main__section .table__block {
      padding: 1rem;
      min-height: 20rem;
      margin-bottom: 2rem;
      background-color: #fff;
      background-clip: border-box;
      border: 1px solid rgba(0,0,0,.125);
      border-radius: 0.25rem;
      } */
      
      .main__section .table__block table thead th {
        background: #3498db;
        color: #fff;
      }
      
      .main__section .table__block th,
      .main__section .table__block td {
        font-size: 13px;
      }
      
      .main__section .table__block .dataTables_wrapper .dataTables_length select {
        width: 4rem;
        border: 1px solid #00000020;
      }
      
      .dataTables_wrapper .dataTables_filter input {
        border: 1px solid #00000020;
      }
      
      .search__results .search__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
      }
      
      .search__results .search__top h3 {
        color: #1f1f1f;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 20px;
      }
      
      .search__results .table__block table th {
        width: 30%;
      }
      
      @media (max-width: 991px) {
        .main__section .top__count .dash-widget {
          margin-bottom: 1rem;
        }
      
        .login__form {
          padding: 1rem;
        }
      }
      
      @media (max-width: 767px) {
        .hide__label {
          display: none !important;
        }
      
        .main__section .sidebar.close__sidebar .close__btn {
          display: none;
        }
      
        .main__section .sidebar .close__btn {
          position: absolute;
          color: #fff;
          background: #b93236;
          right: -32px;
          width: 2rem;
          height: 2rem;
          display: flex;
          justify-content: center;
          align-items: center;
        }
      
        .login__section .login__img {
          display: none;
        }
      
        .main__section .sidebar {
          position: absolute;
          z-index: 2;
          width: 60%;
          left: 0;
        }
      
        .main__section .sidebar.close__sidebar {
          left: -30rem;
          width: 60%;
        }
      
        .main__section .right__section {
          width: 100%;
        }
      
        .main__section .contain__area {
          height: calc(100vh - 85px);
        }
      
        .main__section .table__block {
          margin-top: 1rem;
        }
      
        .main__section .chart__block {
          min-height: auto;
        }
      }
      .heading {
        margin-right: 48%;
      }
      .submit-btn {
        display: flex;
        justify-content: center;
      }
      .btn {
        display: flex;
        justify-content: end;
      }
      
      .loader__wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
        background: #00000042;
        width: 100vw;
        height: 100vh;
        display: none;
        justify-content: center;
        align-items: center;
      }
      
      .loader {
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 2s linear infinite;
        margin: 20px auto;
      }
      .logo img {
        width: 130px;
        position: fixed;
        bottom: 10px;
        right: 20px;
      }
      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }
      .login_left {
        background-color: #007dfe;
      }
      
      .sign-in-btn {
        background-color: #022e68;
        border-radius: 2.25rem;
        text-align: center;
        justify-content: center;
      }
      .sign-in-btn:hover {
        background-color: #0d4076;
      }
      .form-control {
        border-radius: 2.25rem;
      }
      .hyperlink {
        color: #022e68;
      }
      .error-message {
        color: red;
        font-size: 14px;
        margin-top: 5px;
      }
      /* dashboard card color */
      
      .bg-c-blue {
        background: linear-gradient(45deg, #4099ff, #73b4ff);
      }
      .bg-c-yellow {
        background: linear-gradient(45deg, #ffb64d, #ffcb80);
      }
      .bg-c-green {
        background: linear-gradient(45deg, #2ed8b6, #59e0c5);
      }
      .bg-c-pink {
        background: linear-gradient(45deg, #ff5370, #ff869a);
      }
      /* ------------------------ */
      .bg-c-purple {
        background: linear-gradient(45deg, #8a63d2, #b98cdc);
      }
      
      /* .bg-c-orange {
        background: linear-gradient(45deg, #ff7e5e, #ffac8d);
      }
      
      .bg-c-teal {
        background: linear-gradient(45deg, #46b5a7, #7ac8bd);
      } */
      
      .bg-c-red {
        background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
      }
      
      .bg-c-gold {
        background: linear-gradient(45deg, #ffd700, #ffec80);
      }
      
      /* .bg-c-violet {
        background: linear-gradient(45deg, #7f00ff, #a942ff);
      }
      
      .bg-c-cyan {
        background: linear-gradient(45deg, #00e5ff, #66f5ff);
      }
      
      .bg-c-lime {
        background: linear-gradient(45deg, #aaff32, #c6ff63);
      }
      .bg-c-red {
        background: linear-gradient(45deg, #f44336, #e57373);
      } */
      .dropdown-menu a {
        text-decoration: none;
        color: #000;
      }
      .dropdown-menu a :hover {
        color: blue;
      }
      .img-account-profile {
        width: 80%;
      }
      
      /* .hidden-canvas {
        display: none;
      } */
      .main {
        cursor: pointer;
      }
      
      .realfakechart {
        display: none;
      }
      
      .realfakechart.show {
        display: block;
      }
      /* .totaldatachart {
        display: none;
      } */
      
      /* .totaldatachart.show {
        display: block;
      } */
      .distortedimgchart {
        display: none;
      }
      
      .distortedimgchart.show {
        display: block;
      }
      .genderchart.show {
        display: block;
      }
      .genderchart {
        display: none;
      }
      .block1chart.show {
        display: block;
      }
      .block1chart {
        display: none;
      }
      .block2chart.show {
        display: block;
      }
      .block2chart {
        display: none;
      }
      
      /* .btn-primary:hover {
        width: 22%
      } */
      .card a {
        text-decoration: none;
        color: black;
      }
      .sorting {
        background-color: #007dfe;
      }
      
