@import "./utilities.css";
@import "./responsive.css";
@import "./form.css";
@import "./toast.css";
:root {
    --primary-color: #1ABB9C;
    --primary-normal-color: rgb(50, 203, 150);
    --primary-light-color: #F7F7F7;
    --font-light-color: #ECF0F1;
    --primary-table-color: #212529;
    --white-dashboard-content-color: ##E7E7E7;
    --primary-page-color: #5A738E;
    --light-color: #73879C;
    --primary-bg-light-color: #EDEDED;
    --side-bar--color: #2A3F54;
    --bottom-border: #D8D8D8;
    --navigation-hover-border: #f8f9fa;
    --footer-color: #172D44;
    --primary-table-border: #dee2e6;
    --dark-primary-color: #179987de;
    --table-header-color: rgba(52,73,94,0.94);

    --primary-dark-color: #c0c0c1;
    --font-primary-color: #5e5e5e;
    --url-bg-color: #f1f2f4;
    --white-color: #fff;
    --black-color: #000;
    --danger-color: #ee0f0f;
    --warning-color: #f1a114;
    --primary-border-box-color: rgb(236, 235, 235);
    --primary-red-error-color: rgb(240, 125, 125);
    --primary-red-required-color: #ca5a7c;

    /* toast color */
    --toast-error-color: #e9594c;
    --toast-success-color: #3ac279;
    --toast-warning-color: #e8a02a;
    --toast-info-color: #4087e5;

    --toast-error-normal-color: #ffcfcb;
    --toast-success-normal-color: #c5f7dc;
    --toast-warning-normal-color: #ffe8c3;
    --toast-info-normal-color: #cde2ff;
    /* toast color */

    /* dashboard count color */
    --dashboard-contract-color: rgb(50, 203, 150, .5);
    --dashboard-user-color : rgb(26, 187, 156, .5);
    --dashboard-print-color : rgb(42, 63, 84, .5);
    /* dashboard count color */
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    box-sizing: border-box;
    border: none;
}
html {
    font-size: 10px;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    /* overflow: hidden; */
}
/* login */
.login-base {
    height: 100vh;
}
.login-image-block {
    height: 457px;
    width: 500px;
}
/* inner content */
.inner-content {
    display: flex;
}
/* sidebar */
.sidebar {
    width: 230px;
    height: 100vh;
    /* transition: all 0.5s ease; */
}
.sidebar.active {
    width: 80px;
    #profile-sidebar {
        display: none;
    }
}
.menu-list {
    display: flex;
    flex-direction: column;
    margin :1.4rem 0px 1.4rem 0rem;
}
.menu-item {
    padding: 1rem;
    margin-bottom: 1rem;
}
.menu-item:hover {
    background-color: rgba(255,255,255,0.05);
    /* border-radius: 10px; */
}
/* .menu-item:hover a {
    color: var(--primary-color);
    background-color: var(--white-color);
} */
.menu-list .active {
    /* background-color: rgba(255,255,255,0.05); */
    /* color: #3d0909; */
    /* border-radius: 10px; */
    margin-left: 0px;
    border-right: 6px solid var(--dark-primary-color);
    text-shadow: rgba(0,0,0,0.25) 0 -1px 0;
    background: linear-gradient(#334556, #2C4257),#2A3F54;
    box-shadow: rgba(0,0,0,0.25) 0 1px 0, inset rgba(255,255,255,0.16) 0 1px 0;
}
/* .menu-list .active ~ .menu-item */
.menu-item .link-active {
    /* background-color: rgba(255,255,255,0.05); */
    color: #fff;
    /* font-size: 1.8rem; */

}
/* .menu-list .active {
    .menu-list {
        padding: 0px !important;
        width: 100%;
    }
} */
.sidebar.active .menu-text,
.sidebar.active header h2 {
    display: none;
}
.menu-item a {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.sidebar.active .menu-item a {
    justify-content: center;
}
.sidebar.active nav header {
    justify-content: center;
}

/* right-content */
.right-content.active {
    width: calc(100% - 80px);
    height: 100vh;
    overflow-y: auto;
}
.right-content {
    width: calc(100% - 230px);
    height: 100vh;
    overflow-y: auto;
}
.right-content::-webkit-scrollbar{
    width: 0px;
}
.main-block{
    height: 100vh;
    overflow-y: auto;
}
.main-block::-webkit-scrollbar {
    width: 10px;
    color: var(--primary-color);
}
.main-block::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 40px;
}
.main-block::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 40px;
}
.code-block{
    overflow-x: auto;
}
.code-block::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    color: var(--primary-color);
}
.code-block::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.code-block::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 10px;
}

/* navbar */
.logo-container {
    padding: 5px;
}
nav {
    position: relative;
}
.navbar-toggler {
    position: absolute;
    width: 2.5rem;
    top: 60px;
    z-index: 999;
    right: 10px;
    height: 2.5rem;
}
.sidebar.active .navbar-toggler {
    top: 60px;
    right: -10px;
    z-index: 1000;
}
/* .btn-toggler {
    display: block !important;
    transition: 0.5s;
} */
.btn-menu,
.btn-menu-open {
    display: none !important;
    transition: 0.5s;
}
.navbar-profile-block {
    display: none;
}
.navbar-profile-block.active {
    border: 1px solid var(--primary-border-box-color);
    right: 35px;
    border-radius: 10px 0px 10px 10px;
    top: 40px;
    width: 210px;
    z-index: 999;
    position: absolute;
    display: block;
    transition: right 0.3s ease-in-out;
}
.navbar-profile-block div:hover {
    background-color: var(--navigation-hover-border);

}
/* .navbar-profile-right:hover {
    background-color: var(--primary-border-box-color);
} */
.navbar-profile {
    height: 30px;
    width: 30px;
}
.sidebar-profile {
    height: 60px;
    width: 60px;
    background-color: var(--white-color);
    border: 4px solid rgba(52,73,94,0);
}
.navbar-profile-box {
    width: 100px;
    margin: 10px auto;
    height: 100px;
}
.main-content::-webkit-scrollbar {
    width: 0.8rem;
}
.main-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 40px;
}
.main-content::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 40px;
}
.error-msg {
    height: 30px;
}
.forgot-error-msg  {
    height: 20px;
}
.timeline-container {
    position: relative;
}
.timeline {
    border-top: 2px dashed var(--font-primary-color);
}
.timeline-container .timeline-steps {
    position: absolute;
}
.timeline-container .step1 {
    left: 5%;
}
.timeline-container .step3 {
    right: 5%;
}
.search-container .material-symbols-outlined {
    font-size: 1.8rem !important;
    font-weight: 600;
}
.forgot-password a:hover {
    color: var(--primary-color);
}
@-webkit-keyframes blink-animation {
    0% {
        background-color: rgb(194, 230, 218);
    }
}

/* stepper */
.stepper-wrapper {
    display: flex;
    justify-content: space-between;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px dashed var(--primary-dark-color);
    width: 100%;
    top: 2rem;
    left: -50%;
    z-index: 2;
}
.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px dashed var(--primary-dark-color);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}
.stepper-item .step-counter {
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-bottom: 0.6rem;
}
.stepper-item.active .step-counter {
    color: var(--warning-color);
    background: var(--white-color);
    border: 2px dashed var(--warning-color);
}
.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--primary-color);
    width: 100%;
    top: 2rem;
    left: 50%;
    z-index: 3;
}
.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}

/* tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}
.tooltip .tooltiptext {
    visibility: hidden;
    top: 100%;
    right: 0;
    font-size: 12px;
    margin-left: -45px;
    background-color: var(--black-color);
    position: absolute;
    font-family: none;
    z-index: 1;
}
.tooltip:hover {
    /* color: var(--black-color); */
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.blink {
    background-color: var(--white-color);
    -webkit-animation-name: blink-animation;
    -webkit-animation-iteration-count: inherit;
    -webkit-animation-duration: 5s;
}

/* create admin and user */
/* .create-form{
    position: relative;
} */
.bottom-button {
    width: 98%;
    /* position: sticky;
    bottom: 0px; */
}

/* save bottom button */

/* save bottom button */

/********************* Media Query *********************/

/* mobile */
@media only screen and (max-width: 600px) and (min-width: 300px) {
    html {
        font-size: 7px;
    }
    /* login */
    .login-base {
        width: 100%;
        position: relative;
    }
    .login-block {
        background-color: transparent;
        width: 80%;
    }
    .login-fields {
        background-color: none;
        width: 100%;
        z-index: 10;
    }
    .login-image-block {
        filter: blur(2.5px);
        top: 0;
        position: absolute;
        object-fit: cover;
        display: block;
        height: 100%;
    }

    /* sidebar */
    .sidebar {
        width: 0px;
    }
    .sidebar.active {
        width: 100%;
    }
    .right-content.active {
        width: 0%;
    }
    .right-content {
        width: 100%;
    }
    .right-content::-webkit-scrollbar {
        width: 0px;
    }
    .navbar-toggler {
        position: absolute;
        width: 3.5rem;
        top: 60px;
        z-index: 999;
        right: 10px;
        height: 3.5rem;

    }
    .sidebar.active .navbar-toggler {
        top: 10px;
        right: 10px;
    }
    .sidebar .navbar-toggler {
        top: 10px;
        right: -10px;
        border: none !important;
        z-index: 1000;

    }
    /* .btn-toggler {
        display: none !important;
    } */
    .sidebar .btn-menu {
        display: block !important;
        border: none;
    }
    .sidebar.active .btn-menu-open {
        display: block !important;
        border: none;
    }
    .sidebar.active .btn-menu {
        display: none !important;
        border: none;
    }
    .sidebar.active .menu-text,
    .sidebar.active header h2 {
        display: block;
    }
    /* profile */

    /* plane */
    .plan-block {
        flex-direction: column;
    }
    .plan-card {
        width: 100%;
        margin: 10px auto;
    }
    .expand-btn{
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 3px;
        border-radius: 10px;
        bottom: -20px;
        left: 43%;
    }
}

/* tablet */
@media only screen and (max-width: 800px) and (min-width: 601px) {
    html {
        font-size: 9px;
    }
    /* login */
    .login-base {
        width: 100%;
    }
    .login-block {
        width: 80%;
    }
    .login-image-block {
        height: 500px;
        width: 100%;
    }
    .login-fields {
        width: 100%;
        z-index: 10;
    }

    /* sidebar */
    .sidebar {
        width: 0px;
    }
    .sidebar.active {
        width: 40%;
    }
    .right-content.active {
        width: calc(100% - 40%);
    }
    .right-content {
        width: 100%;
    }
    .right-content::-webkit-scrollbar {
        width: 0px;
    }
    .navbar-toggler {
        position: absolute;
        width: 4rem;
        top: 60px;
        z-index: 999;
        right: 10px;
        height: 4rem;
    }
    .sidebar.active .navbar-toggler {
        top: 10px;
        right: 10px;
    }
    .sidebar .navbar-toggler {
        top: 6px;
        right: -20px;
        border: none !important;
        z-index: 1000;
    }
    /* .btn-toggler {
        display: none !important;
    } */
    .sidebar .btn-menu {
        display: block !important;
        border: none;
        font-size: 30px;
    }
    .sidebar.active .btn-menu-open {
        display: block !important;
        border: none;
    }
    .sidebar.active .btn-menu {
        display: none !important;
        border: none;
    }
    .sidebar.active .menu-text,
    .sidebar.active header h2 {
        display: block;
    }
    .table-wrapper table th {
        font-size: 0.8rem;
    }

    /* plane */
    .plan-block {
        display: flex;
        flex-wrap: wrap;
        margin: none;
        width: 100%;
    }
    .plan-card {
        width: 100%;
        margin: 10px auto;
    }
    .plan-card div {
        width: 90%;
    }
    .expand-btn{
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 3px;
    border-radius: 10px;
    bottom: -25px;
    left: 35%;
}
}

/* laptop and desktop */
@media only screen and (max-width: 1399px) and (min-width: 801px) {
    .expand-btn{
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 3px;
        border-radius: 10px;
        bottom: -25px;
        left: 35%;
    }
}
@media only screen and (max-width:1950px) and (min-width: 1400px){
    .expand-btn{
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 3px;
        border-radius: 10px;
        bottom: -25px;
        left: 40%;
    }
}

/********************* Media Query *********************/
.pagination > a {
    background-color: var(--primary-color);
    color: var(--primary-light-color);
}


.plan-confirm {
	transform: translate(-50%, -50%);
	max-width: 500px;
}

.card-details{
    display: none;
}
.card-details.active{
    display: block;
}

.plan-popup-card {
    position: relative;
    overflow: hidden;
  }
  .docs-icon{
    font-size: 20px !important;
    padding: 5px;
  }
  .docs-back-icon {
   font-size: 20px !important;
  }
  .translate-icon {
   font-size: 25px !important;
   margin-right: 10px;
  }
  .docs-link:hover{
    color: var(--primary-color);
   }
   .card-popular{
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    padding: 7px 0;
    left: -5px;
    top: 15px;
    width: 120px;
    line-height: 20px;
    background-color: #555;
    -webkit-transform :rotate(45deg);
    box-shadow:0 0 3px rgba(0,0,0,0.3);
  }
.offer-card{
    width: 92px;
    height: 88px;
    top: -10px;
    overflow: hidden;
    right: 0px;
    position: absolute;
}
  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
   /* collaps */
   /* .collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  .active, .collapsible:hover {
    background-color: #555;
  }
  .expand-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  } */
   /* collaps */

   /* toggle */
   .switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  .toggle:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 2.5px;
    background-color: white;
    /* -webkit-transition: .4s; */
    /* transition: .4s; */
  }
  input:checked + .toggle {
    background-color: var(--primary-color);
  }
  input:focus + .toggle {
    box-shadow: 0 0 1px var(--primary-color);
  }
  .popular input:checked + .toggle:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(20px);
  }
  input:checked + .toggle:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(13px);
  }
  .toggle.round {
    border-radius: 34px;
  }
  .toggle.round:before {
    border-radius: 50%;
  }
   /* toggle */

.frequency {
    background: var(--toast-error-color);
    color: var(--white-color);
    padding: 5px;
    width: 50px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    left: 2px;
    z-index: 2;
    transform: rotate(-45deg);

    &:before {
      content: "";
   width: 0;
      height: 0;
      border-style: solid;
      transform: rotate(45deg);
      border-width: 20px 20px 0 20px;
      border-color: var(--toast-error-color) transparent transparent transparent;
      position: absolute;
      right: -27px;
      bottom: -3px;
    }

    &:after {
      content: "";
   width: 0;
      height: 0;
      border-style: solid;
      transform: rotate(-45deg);
      border-width: 20px 20px 0 20px;
      border-color: var(--toast-error-color) transparent transparent transparent;
      position: absolute;
      left: -27px;
      bottom: -3px;
    }


  }

.tag-list{
    padding: 0.6rem 1.5rem;
}
.close-tag{
    padding: 0.2rem;
    color: var(--black-color);
    font-size: 1.5rem !important;
}
.customized-filter{
    visibility: hidden;
}
  .code-content{
    font-size: 1.2rem;
  }
.html-content {
    overflow-y: scroll;
    height: 450px;
}
.html-content::-webkit-scrollbar {
    width: 8px;
    background-color: var(--primary-light-color);
}
.html-content::-webkit-scrollbar-thumb {
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    border-radius: 40px;
}
.html-content::-webkit-scrollbar:horizontal {
    display: none;
}

.toggle-en , .toggle-jp {
    font-size: 8px !important;
    z-index: 10px;
}
.dark-mode-icon{
    font-size: 14px !important;
}

.toggle-en{
    margin-left: 4px;
    color: white;
    font-weight: 500;
}
.toggle-jp{
    margin-right: 4px;
    font-weight: 500;
}
.arrow-pagination{
    /* font-size: 14px !important; */
    /* line-height: 1.5 !important; */
}

.filter-clear-icon{
    font-size: 2rem !important;
}
.filter-icon{
    font-size: 3rem !important;
}
.csv-download-icon{
    font-size: 2rem !important;
}
.show-more{
    height: 40px;
    overflow:hidden;
}


@-webkit-keyframes swing{
    0%{-webkit-transform:rotate(5deg);}
    50%{-webkit-transform:rotate(-5deg);}
    100%{-webkit-transform:rotate(5deg);}
}
@-moz-keyframes swing{
    0%{-moz-transform:rotate(5deg);}
    50%{-moz-transform:rotate(-5deg);}
    100%{-moz-transform:rotate(5deg);}
}
@-o-keyframes swing{
    0%{-o-transform:rotate(5deg);}
    50%{-o-transform:rotate(-5deg);}
    100%{-o-transform:rotate(5deg);}
}
@keyframes swing{
    0%{transform:rotate(5deg);}
    50%{transform:rotate(-5deg);}
    100%{transform:rotate(5deg);}
}


.swatch {
  display: block;
  text-align: center;
  position: relative;

  div {
    width: 55px;
    height: 20px;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    border-top: solid 2px rgba(0, 0, 0, .2);
    border-left: solid 3px rgba(255, 255, 255, .2);
    border-bottom: solid 3px rgba(0, 0, 0, .2);
    text-align: center;
    box-sizing: border-box;
    transform-origin: center 90%;
    display: inline-block;
    backface-visibility: hidden;
    margin-left: -45px;
    margin-top: -15px;
    transform: rotate(0deg);
  }

  div:before {
    content: "";
    background-color: var(--white-color);
    display: inline-block;
    border-radius: 8px;
    left: 10px;
    bottom: 5px;
    position: absolute;
    margin-left: -8px;
  }

  div:nth-child(1) {
    content: "Popular";
    background-color: var(--toast-info-normal-color);
    animation: swatch-purple-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }
  div:nth-child(2) {
    content: "Popular";
    background-color: var(--toast-warning-normal-color);
    animation: swatch-blue-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }
  div:nth-child(3) {
    content: "Popular";
    background-color: var(--primary-color);
    animation: swatch-green-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }
  div:nth-child(4) {
    content: "Popular";
    background-color: var(--primary-red-required-color);
    animation: swatch-yellow-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }
  div:nth-child(5) {
    content: "Popular";
    background-color: var(--toast-error-color);
    animation: swatch-orange-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }
  div:nth-child(6) {
    content: "Popular";
    background-color: var(--toast-success-normal-color);
    animation: swatch-red-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }
}
@keyframes swatch-purple-motion {
    0% {
      transform: rotate(0deg);
    }
    30%,
    70% {
      transform: rotate(-65deg);
    }
    90%,
    10% {
      transform: rotate(0deg);
    }
  }
  @keyframes swatch-blue-motion {
    0% {
      transform: rotate(0deg);
    }
    30%,
    70% {
      transform: rotate(-40deg);
    }
    90%,
    10% {
      transform: rotate(0deg);
    }
  }
  @keyframes swatch-green-motion {
    0% {
      transform: rotate(0deg);
    }
    30%,
    70% {
      transform: rotate(-15deg);
    }
    90%,
    10% {
      transform: rotate(0deg);
    }
  }
  @keyframes swatch-yellow-motion {
    0% {
      transform: rotate(0deg);
    }
    30%,
    70% {
      transform: rotate(15deg);
    }
    90%,
    10% {
      transform: rotate(0deg);
    }
  }
  @keyframes swatch-orange-motion {
    0% {
      transform: rotate(0deg);
    }
    30%,
    70% {
      transform: rotate(10deg);
    }
    90%,
    10% {
      transform: rotate(0deg);
    }
  }
  @keyframes swatch-red-motion {
    0% {
      transform: rotate(0deg);
    }
    30%,
    70% {
      transform: rotate(20deg);
    }
    90%,
    10% {
      transform: rotate(0deg);
    }
  }

  .date-filter-block{
 padding: 3px;
  }
  .hide-password{
    display: none;
}
.show-password, .hide-password {
    margin-top: 8px;
    margin-left: 4px;
}
.show-password-icon , .hide-password-icon {
    font-size: 20px !important;
    margin-left: 5px;
}
.profile-image-block{
    width: 200px;
    border-radius: 50%;
    height: 200px;
    overflow: hidden;
}
.profile-image-block-small{
    width: 20px;
    border-radius: 50%;
    height: 20px;
    overflow: hidden;
}
.email-password-content{
    width: 317px;
}
.verified-icon{
    font-size: 3rem !important;
}
.button-primary-color{
    background: var(--primary-color) !important;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}


.login-base > h1::before {
    /* width: 10%; */
    /* top: 10px; */
    /* position: absolute;
    height: 1px;
    content: "";
    background: linear-gradient(to left, #7e7e7e 0%, #fff 100%);
    left: 0; */
}
.login-base > h1::after {
    /* width: 10%; */
    /* top: 10px; */
    /* position: absolute;
    height: 1px;
    content: "";
    background: linear-gradient(to right, #7e7e7e 0%, #fff 100%);
    right: 0; */
}
.login-base > form {
    margin-top: 7%;
}
#header {
    text-align: center;
    position: relative;

}
#header:after {
    content: '';
    width: 100%;
    border-bottom: solid 1px var(--light-color);
    border-image-source: linear-gradient(90deg, #fff 0%, #bbbaba 10%,  #929090 20%, #7e7e7e 35%, #7e7e7e 75%,#929090 80%, #bbbaba 90%, #fff 100%);
    border-image-slice: 1;
    position: absolute;
    left: 0;
    top: 50%;
}

.login-header {
    background-color: var(--primary-light-color);
    display: inline-block;
    z-index: 3;
    padding: 0 20px 0 20px;
    position: relative;
}
.login-form{
    max-width: 360px;
}
/* .footer{
    background-color: var(--footer-color) ;
    width: 230px;
} */
.progrss-bar {
    background-color: var(--primary-color);
    width: 30%;
}
.logo {
    height: 50px;
    margin-right: 10px;
}
.sidebar-logo {
    height: 40px;
    margin-right: 10px;
}
.canvasjs-chart-credit{
    display: none;
}
.active-page{
    height: 21px;
    width: 21px;
}
