/* colors */
:root{
  --theme-color1: #b22335;
  --theme-color2: #3b3b6f;
  --white:#fff;
  --medium-black:#221f1f;
  --black:#000;
  --text-color:#5c5e60;
  --bg-color:#f2f2f2;
  --theme-grediant: linear-gradient(170deg, rgba(178,35,53,1) 35%, rgba(59,59,111,1) 85%);
}
/* Font */
@font-face {
  font-family: SFProDisplay;
  src: url(SFProDisplay.ttf)format("ttf");
}
.form-control:focus,input:focus,select:focus,.form-select:focus,button:focus{
  outline: none !important;
  box-shadow: none !important;
}
.form-control.is-valid:focus, .was-validated .form-control:valid:focus,.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus{
  outline: none;
  box-shadow: none;
}
input,select{
  border-radius: 0 !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
body {
  background: var(--white);
  margin: 0;
  padding: 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--medium-black);
  line-height: 1.6;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: calc(var(--vh, 1vh) * 100);

}
html {

    overflow: hidden;
  overflow-y: auto;
}
nav, section {
  display: block;
}
p {
  margin: 0px 0px 10px;
  padding: 0px;
}
a, button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-color);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a:hover{
  color:var(--theme-color);
  text-decoration: none;
}
ul,ol {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.form-control:hover,input:hover,input:focus{
  outline: none !important;
  box-shadow: none !important;
}
.dropdown-toggle::after {
    content: none;
}
.ht-30 {
    height: 30px;
}
.wd-30 {
    width: 30px;
}
.wd-80{
  width: 80px;
} 
.ht-80{
  height: 80px;
}
.site-btn,.site-btn2{
  padding: 6px 25px;
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
}
.site-btn{
  background-color: var(--theme-color1);
  border:1px solid var(--theme-color1);
}
.site-btn:hover{
  background-color: transparent;
  color: var(--theme-color1);
}
.site-btn2{
  background-color: var(--theme-color2);
  border:1px solid var(--theme-color2);
}
.site-btn2:hover{
  background-color: transparent;
  color: var(--theme-color2);
}
/*Login*/
.login{
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.login:before{
  content: '';
  background:var(--theme-grediant);
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  z-index: -1;
}
.login-box{
  max-width: 400px;
  width: 100%;
  background-color: var(--white);
  font-family: SFProDisplay;

}
.login-box .logo{
  text-align: center;
  width: 120px;
  margin: 0 auto;
  padding: 10px 15px 20px;
}
.login-box .logo img{
  width: 100%;
}
.login-box .frmbox{
  background: var(--bg-color);
  padding: 30px 35px;
}
.login-box .frmbox .from-group{
  margin-bottom: 20px;
  position: relative;
}
.login-box .frmbox .from-group label{
  font-size: 14px;
  color: var(--text-color);
}
.login-box .frmbox .from-group input{
  width: 100%;
  border:none;
  border-bottom: 1px solid var(--text-color);
  padding: 6px 0px;
  font-size: 18px;
  color: var(--theme-color2);
  background: transparent;
}
/*sidebar*/
.sidebar {
    width: 100%;
    /*height: 100%;*/
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: width .1s ease,margin .1s ease-in-out;
    transition: width .1s ease,margin .1s ease-in-out;
    z-index: 9;
}
.sidebar .sidebar-header {
    background:  var(--white);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    z-index: 999;
    width: 240px;
    -webkit-transition: width .1s ease;
    transition: width .1s ease;
}
.sidebar .sidebar-header a{
  width: 60px;
}
.sidebar .sidebar-header a img{
  width: 100%;
}
.sidebar .sidebar-body {
    /*max-height: calc(100% - 60px);*/
    position: relative;
    /*height: 100%;*/
    -webkit-box-shadow: 0 8px 10px 0 rgb(183 192 206 / 20%);
    box-shadow: 0 8px 10px 0 rgb(183 192 206 / 20%);
    background: var(--theme-color2);
 /*   overflow: hidden;
    overflow-y: auto;*/
}
.sidebar .sidebar-body .nav {
    display: flex;
    /*flex-direction: column;*/
    padding: 0;
    justify-content: center;
}
.sidebar .sidebar-body .nav .nav-item {
    position: relative;
    /*margin-bottom: 10px;*/
}
/*.sidebar .sidebar-body .nav .nav-item.active>.nav-link {
    background-color: var(--theme-color1);
    border-radius: 5px;
    opacity: 1;
}*/
.sidebar .sidebar-body .nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
     position: relative;
    white-space: nowrap;
    color: var(--white);
    font-size: 14px;
    /*opacity: .7;*/
    padding-right: 20px;
}
.sidebar .sidebar-body .nav .nav-item .nav-link .img{
      width: 25px;
    margin-right: 10px;
    height: 25px;
    overflow: hidden;
}
.sidebar .sidebar-body .nav .nav-item .nav-link .img img{
      width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.sidebar .sidebar-body .nav .nav-item.active>.nav-link::before {
    /*content: "";*/
    width: 3px;
    height: 40px;
    background: var(--theme-color1);
    position: absolute;
    left: -25px;
}
/*.sidebar .sidebar-body .nav .nav-item.active>ul.sub-menu{
  display: block;
}*/
.sidebar .sidebar-body .nav ul{
  position: absolute;
  top: 54px;
  left: 25px;
  background: var(--theme-color2);
  display: none;
  width: 100%;
  border-top: 1px solid #9f9f9ff9;
}
.sidebar .sidebar-body .nav .nav-item  ul{
  /*padding: 15px 26px;*/
}
.sidebar .sidebar-body .nav .nav-item  ul li ul{
 padding: 0 0 5px 25px;
}
.sidebar .sidebar-body .nav .nav-item  ul li .nav-link {
  font-size: 13px;
  padding: 12px 45px 12px 20px;
  border-bottom: 1px solid #9f9f9ff9;
}
.sidebar .sidebar-body .nav .nav-item  ul li a{
  position: relative;
}
.sidebar .sidebar-body .nav .nav-item  ul li a:before{
  /*content: '';*/
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: 0 0;
  border: 1px solid #aeb9c4;
  position: absolute;
  left: -15px;
  top: 10px;
  -webkit-transition: all .7s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.has-child{
  position: relative;
}
.submenu-toogle {
    position: absolute;
    right: 5px;
    top: 11px;
    color: var(--white);
    background-color: transparent;
    z-index: 900;
    cursor: pointer;
    padding: 0;
    display: block;
    line-height: 1;
}
.submenu-toogle i{
  font-size: 12px;
}
.sidebar .sidebar-body .nav .nav-item  ul li .submenu-toogle{
  top:4px;
}
/*Header*/
.navbar {
    width: calc(100% - 240px);
    height: 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 0;
    position: fixed;
    right: 0;
    left: 240px;
    z-index: 978;
    box-shadow: 3px 0 10px 0 rgb(183 192 206 / 20%);
    transition: width .1s ease,left .1s ease;
}
.navbar .navbar-content {
    display: flex;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
}
.navbar .navbar-content .navbar-nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}
.navbar .navbar-content .navbar-nav .nav-item, .navbar .navbar-content .navbar-nav .nav-search{
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    min-width: 40px;
    display: flex;
    align-items: center;
}
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
    color: #000;
    padding: 0;
    position: relative;
    margin-left: auto;
    margin-right: auto;
        display: flex;
    align-items: center;
}
.navbar .navbar-content .navbar-nav .nav-item .nav-link i {
    font-size: 20px;
}
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
    position: absolute;
    top: 0;
    right: 2px;
}
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
    background: var(--theme-color1);
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.navbar-nav .nav-item .nav-link .indicator .circle::before {
    background-color: var(--theme-color1);
    content: "";
    display: table;
    border-radius: 50%;
    position: absolute;
}
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before, .pulse {
    animation-name: pulse;
    animation-duration: .9s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

@keyframes pulse {
    0% {
        opacity: 1;
        width: 7px;
        height: 7px;
        left: 0;
        top: 0;
    }
    95% {
        opacity: 0.1;
        left: -10.5px;
        top: -10.5px;
        width: 28px;
        height: 28px;
    }
    100% {
        opacity: 0;
        width: 7px;
        height: 7px;
        left: 0;
        top: 0;
    }
}
@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: none;
        transform: translate3d(0, 0, 0);
    }
}
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu, .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
    min-width: 270px;
    position: absolute;
    right: -20px;
    left: auto;
}
.dropdownAnimation, .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu, .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
    -webkit-animation-name: dropdownAnimation;
    animation-name: dropdownAnimation;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.dropdown-menu, .tt-menu {
    padding: 0.35rem;
    margin-top: 0;
    box-shadow: 0 5px 10px 0 rgb(183 192 206 / 20%);
}
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before, .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--white);
    position: absolute;
    top: -7px;
    right: 28px;
    transform: rotate(45deg);
    border-top: 1px solid  rgba(0,0,0,.15);
    border-left: 1px solid  rgba(0,0,0,.15);
}
.dropdown-item, .tt-menu .tt-suggestion {
    font-size: .812rem;
    padding: 0.25rem 0.875rem;
    border-radius: 2px;
        font-weight: 400;
    color: var(--text-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-menu p{
  margin-bottom: 0px
}
.tx-16 {
    font-size: 16px;
}
.tx-12 {
    font-size: 12px;
}
.navbar .navbar-content .navbar-nav .nav-search .input-group{
  background-color: #e2e2fa;
  border-radius: 8px;
}
.navbar .navbar-content .navbar-nav .nav-search .input-group input{
  border:none;
  background-color: transparent;
      width: 250px;
    padding: 12px 8px;
    font-size: 13px;
}
.navbar .navbar-content .navbar-nav .nav-search .input-group .input-group-text{
  border:none;
  font-size: 20px;
  background-color: transparent;
}
.navbar .navbar-content .navbar-nav .nav-search .input-group .input-group-text i{
transform: rotate(275deg);
}
/*body*/
.page-wrapper {
    min-height: 100vh;
    background: #f9fafb;
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    -webkit-transition: margin .1s ease,width .1s ease;
    transition: margin .1s ease,width .1s ease;
}
.page-wrapper .page-content {
    padding: 25px;
    margin-top: 95px;
}
.page-content .pagetitle{
  margin-bottom: 20px;
}
.page-content .pagetitle h1{
  font-size: 30px;
  font-weight: 600;
  color: #979797;
  text-transform: uppercase;
}
.box{
    text-align: center;
    background: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    color: var(--white);
}
.box.bg1{
  background-color: #6450e6;
}
.box.bg2{
    background-color: #fb774d;
}
.box .box-top{
    margin-bottom: 12px;
}
.box .box-top span.title{
    display: block;
    font-size: 16px;
}
.box .box-top span{
    font-size: 24px;
    line-height: 1.2;
}
.box .box-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
}
.box .box-bottom span.title{
  display: block;
    font-size: 13px;
}
.box .box-bottom span{
    font-size: 20px;
    line-height: 1.2;
}
.box .box-bottom>div{
  margin-right: 15px;
}
.box .box-bottom>div:last-child{
  margin-right: 0px;
}
.card{
  border-radius: 8px;
}
.card .title{
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}
.card .table thead{
  background: #f2f7fc;
  border-bottom: none;
  border-top: 1px solid #ccc;
  font-size: 14px;
  font-weight: 500;
}
.card .table{
  font-size: 13px;
  margin-bottom: 0px;
}
.table>:not(caption)>*>*{
  border-bottom-width: 0px;
}
.card .table td span.close{
  color: #ff3f00;
}
.card .table td span.pending{
  color: #fbb612;
}
.card .table td span.complete{
  color: #28b22e;
}
.card form button{
  text-transform: uppercase;
}
.card form input,.card form select{
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-color);
}
.frm .card-body{
  padding-bottom: 0px;
}
.card .table td a i{
  font-size: 15px;
}
#myChart{
  width: 100%;
  height: 100px;
}
.ViewButton{
  text-align: center;
  margin-left: 190px
}

.sub-menu li{list-style: none;}
.horiznav li:hover .sub-menu{display: block;}
.sub-menu li a:hover{color: #cdcdcd!important;text-decoration: none;}
.nav>li>a:focus, .nav>li>a:hover{background: transparent!important;}