.table-responsive {
    max-height: 600px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

thead th {
    position: sticky;
    top: 0;
    background-color: #fff;
    color: #fff;
    padding: 10px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.table td, .table th {
    padding: 0.70rem !important;
    font-size: 15 !important;
}
*{
   padding: 0px;
   margin:0px;
   box-sizing: border-box;
   text-decoration: none;
   scroll-behavior: smooth;
   -webkit-transition: 0.2s linear;
   -moz-transition: 0.2s linear;
   -ms-transition: 0.2s linear;
   -o-transition: 0.2s linear;
   transition: 0.2s linear !important;

}


.btn_f .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 12px !important;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.modal-lg {
    max-width: 1025px !important;
}


.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: scroll !important;
    outline: 0;
}


.sec.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: #000000!important;
}

.btn-primary a:hover{
    text-decoration:none !important;
}

.table_dash .dashboard-content {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    width: 100%;
    flex-grow: 2;
    /* padding: 15px; */
    background-color: #00000000;
}

input::placeholder{
    color:#a5a3a3 !important;
}
a {
   color: #3f84fc;
   text-decoration: none;
   background-color: transparent;
}

a:hover {
   color: #0458eb;
   text-decoration: underline;
}

.displayflexspacebtw{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.displayflexend{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.displayflexcol{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bgcard {
    background-color: #a5c755 !important;
    color:#ffffff;
    font-weight: 500;
}
.brand-logo img{
    width: 170px;
}
/* new  start*/
.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
.profile-pic input {
    display: none;
}
.profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 116px;
    height: 116px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    
    z-index: 0;
}
.profile-pic .-label {
    cursor: pointer;
    height: 118px;
    width: 118px;
    border: 1px solid #d7d7d7;
    z-index: 99;
}
.profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.212);
    z-index: 10000;
    color: #fafafa;

}
.profile-pic span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2em;
    height: 2em;
}

.img_delete{
    position:relative ;
}
.img_delete_icons{
 position: absolute;
 content: "";
 top: -2px;
 z-index: 999;
 right: 50px;
 background-color: #a7c957bf;
 padding: 7px;
 border-radius: 30px;
 font-size: 11px;
 color: #000000;
 cursor: pointer;
}

.img_delete_icon{
    position: absolute;
    content: "";
    top: 0px;
    background-color: #a7c957bf;
    padding: 7px;
    z-index: 999;
    border-radius: 30px;
    font-size: 11px;
    right: 12px;
    color: #0a0a0a;
    cursor: pointer;
}
.card_heights{
    height: auto !important;
    /*background-image: url(../images/bg.png);*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.sub-menu{
    -webkit-transition: .4s;
    transition: .4s;
}
nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: -7px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #a7c957;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.maintop_heading h3{
    text-transform: capitalize;
    font-weight: 500;
    color:#000000;
}
.small-box {
    border-radius: 0.25rem;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    display: block;
    margin-bottom: 20px;
    position: relative;
}
.small-box h3, .small-box p {
    z-index: 5;
}
.small-box>.inner {
    padding: 10px;
}
.small-box p {
    font-size: 1rem;
}
.small-box h3, .small-box p {
    z-index: 5;
    color:#ffffff
}
.small-box>.small-box-footer {
    background-color: rgba(0,0,0,.1);
    color: rgba(255,255,255,.8);
    display: block;
    padding: 3px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
}
.small-box>.small-box-footer:hover {
    background-color: rgba(0,0,0,.1);
    color: rgba(255,255,255,.8);
    display: block;
    padding: 3px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
}
.small-box-footer {
    background-color: #a7c95752;
    color: #28a745;
    display: block;
    padding: 3px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
}
.small-box-footer:hover{
    background-color: #a7c95752;
    color: #ffffff;
    display: block;
    padding: 3px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
}
.small-box h3 {

    font-size: 23px;
    font-weight: 700;
    margin: 0 0 10px;
    padding: 0;
    white-space: nowrap;
}
.small-box .icon {
    color: rgba(0,0,0,.15);
    z-index: 0;
}
.small-box .icon>i.ion {
    font-size: 70px;
    top: 20px;
}
.small-box .icon>i {
    font-size: 90px;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: -webkit-transform .3s linear;
    transition: transform .3s linear;
    transition: transform .3s linear,-webkit-transform .3s linear;
}

.todo-list>li.done {
    color: #697582;
}
.todo-list>li {
    border-radius: 2px;
    background-color: #f8f9fa;
    border-left: 2px solid #e9ecef;
    color: #495057;
    margin-bottom: 2px;
    padding: 10px;
}

.mdi-close-circle-outline:before{
    content: "\F15A"
}
.list-wrapper ul li{
    font-size: .9375rem;
    padding: .4rem 0;
    border-bottom: 1px solid #f3f3f3
}
.mdi:before{
    font-family: FontAwesome;
    content: "\f00d";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-size: .756em;
    color: #405189
}
.list-wrapper ul{
    padding: 0;
    text-align: left;
    list-style: none;
    margin-bottom: 0
}

.checkul ul li {
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    list-style-type: none;
    background: #eee;
    margin-bottom: 4px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.2s;
    
    /* make the list items unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Set all odd list items to a different color (zebra-stripes) */
.checkul ul li:nth-child(odd) {
    background: #f9f9f9;
}

/* Darker background-color on hover */
.checkul ul li:hover {
    background: #ddd;
}

/* When clicked on, add a background color and strike out text */
.checkul  ul li.checked {
    background: #a7c9574f;
    color: #7f7f7f;
    text-decoration: line-through;
    margin-bottom: 4px;
    border-radius: 5px;
}


/* Add a "checked" mark when clicked on */
.checkul  ul li.checked::before {
    content: '';
    position: absolute;
    border-color: #1e7e34;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 16px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
}

.checkul input{
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    padding: 3px;
    font-size: 14px;
    border: 1px solid #afacac;
    border-radius: 8px;
}

.checkul input:focus{
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    padding: 3px;
    font-size: 14px;
    border: 1px solid #afacac ;
    border-radius: 8px;
}

.info-box {
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    border-radius: 0.25rem;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 0.5rem;
    position: relative;
    width: 100%;
}

.info-box .info-box-icon {
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.875rem;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 70px;
}

.info-box .info-box-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-box .info-box-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.8;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
    overflow: hidden;
}

.profile-user-img {
    border: 2px solid #a7c95761;
    margin: 0 auto;
    padding: 0px;
    width: 100px;
}
.main_card-ul ul li{
    list-style-type: none;
    color:#6c757d;
    font-size:14px;
}

.main_card-ul .close {
    display: none;
}

.main_ul_wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}


.main_ul_1{

    width: 10%;
    font-size: 12px;
    color: #a5c755;
}

.main_ul_2{
    width:90%;
    color: #6c757d;
    font-size: 14px;
}

.text-muted {
    color: #6c757d!important;
    font-size: 14px !important;
}

.bgcardflex{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 129px;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #000000d1 !important;
    font-size: 14px;
}


/* new  end*/
.nav-tabs a{
    color:#ffffff;
}

.inner-submenu-active{
    background-color:#e5e5e5;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
    border-radius: 6px;
}
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #a7c957;
    border-color: #ffffff #ffffff #fff;
}
.Mainnav .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    /* flex-direction: column; */
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.tab-content>.active {
    display: block;
    background-color: #f3f3f394;
}

.Mainnav .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    margin-left: 16px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 13px !important;
    line-height: 1.5;
    color: #797a7a;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.card {
   position: relative;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
   flex-direction: column;
   min-width: 0;
   word-wrap: break-word;
   background-color: #fff;
   background-clip: border-box;
   border: 1px solid rgba(0, 0, 0, 0.125);
   border-radius: 0;
}

.card-body {
   -webkit-box-flex: 1;
   -webkit-flex: 1 1 auto;
   -ms-flex: 1 1 auto;
   flex: 1 1 auto;
   padding: 1.25rem;
}

.table_overflow{
    width:100%;
    overflow-x: scroll;
}
.card-header {
   padding: 0.75rem 1.25rem;
   margin-bottom: 0;
   background-color: rgba(0, 0, 0, 0.03);
   border-bottom: 1px solid rgba(0, 0, 0, 0.125);
   text-align: center;
}

.dashboard {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   min-height: 100vh;
   overflow: hidden;
  flex-direction: row;
}

.dashboard-app {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   width: 80%;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-flex: 2;
   -webkit-flex-grow: 2;
   -ms-flex-positive: 2;
   flex-grow: 2;
   margin-top: 84px;
}

.dashboard-content {
   -webkit-box-flex: 2;
   -webkit-flex-grow: 2;
   -ms-flex-positive: 2;
   width: 100%;
   flex-grow: 2;
   /*padding: 15px;*/
   background-color: #00000000;
}

.dashboard-nav {
   /*min-width: 238px;*/
   position: fixed;
   left: 0;
   top: 0;
   bottom: 0;
   overflow: auto;

}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef00 !important;
    border-radius: 0.25rem;
}
.dashboard-compact .dashboard-nav {
   display: none;
}

.dashboard-nav header {
   min-height: 48px;
   padding: 8px 27px;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -ms-flex-pack: center;
   justify-content: space-between;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
}

.dashboard-nav header .menu-toggle {
   display: none;
   margin-right: auto;
}



.dashboard-nav a:hover {
   text-decoration: none;
   background: rgba(0, 0, 0, 0.1);
   color:#577c02;
   font-weight: 500;
}

.dashboard-nav {
    background-color: #ffffff;
    transition: ease-out 0.5s;
    height: auto;
    z-index:99 !important;
    border-top: 1px solid #a7c957;
    max-width:17%;
}


a.active{
    background: rgba(0, 0, 0, 0.1);
    color:#577c02 !important;
    font-weight: 400;
}

.dashboard-nav a {
   color: #000000;
   font-size: 14px;
    position: relative;
}
.mess_box{
    position: absolute;
    width:15px;
    height:15px;
    font-size:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    background-color:#a7c957;
    right: 5px;
}


.active .fal{
    color:#a7c957;
}

.brand-logo {
   font-family: "Nunito", sans-serif;
   font-weight: bold;
   font-size: 20px;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   color: #515151;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
}

.brand-logo:focus, .brand-logo:active, .brand-logo:hover {
   color: #dbdbdb;
   text-decoration: none;
}

.brand-logo i {
   color: #d2d1d1;
   font-size: 27px;
   margin-right: 10px;
}

.dashboard-nav-list {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
   flex-direction: column;

}

.dashboard-nav-item {
   min-height: 56px;
   padding: 8px 20px 8px 70px;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   letter-spacing: 0.02em;

}

.dashboard-nav-item i {
   width: 36px;
   font-size: 19px;
   margin-left: -40px;
}

.dashboard-nav-item:hover {
   background: rgba(255, 255, 255, 0.04);
}


.dashboard-nav-dropdown {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
   flex-direction: column;


}

.dashboard-nav-dropdown.show {
   background: #ffffff0a;


}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-toggle {
   font-weight: bold;

}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-toggle:after {
   -webkit-transform: none;
   -o-transform: none;
   transform: none;
}
.dashboard-nav-dropdown.show{

}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-menu {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   transition:all 0.3s ease;


}

.dashboard-nav-dropdown-toggle:after {
   content: "";
   margin-left: auto;
   display: inline-block;
   width: 0;
   height: 0;
   border-left: 5px solid transparent;
   border-right: 5px solid transparent;
   border-top: 5px solid rgba(81, 81, 81, 0.8);
   -webkit-transform: rotate(90deg);
   -o-transform: rotate(90deg);
   transform: rotate(90deg);
}

.dashboard-nav .dashboard-nav-dropdown-toggle:after {
   border-top-color: #a7c957;

}

.dashboard-nav-dropdown-menu {
   display: none;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
   flex-direction: column;
   transition-duration: 3s linear;
}

.dashboard-nav-dropdown-item {
   min-height: 40px;
   background-color: #a7c95730;
   padding: 11px 20px 11px 41px;
   border-bottom: 1px solid #80808014;
   font-weight: 400;
   font-size: 15px;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;

}





.dashboard-nav-dropdown-item:hover {
   background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
   position: relative;
   width: 42px;
   height: 42px;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -ms-flex-pack: center;
   justify-content: center;
   color: #a7c957;
}

.menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus {
   text-decoration: none;
   color: #a7c957;
}

.menu-toggle i {
   font-size: 20px;
}

.dashboard-toolbar {
   min-height: 84px;
   background-color: #ffffff;
   border-bottom: 1px solid #a7c957;
   border-top: 1px solid #a7c957;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   padding: 8px 27px;
   position: fixed;
   top: 0;
   right: 0;
   left: 0;
   z-index: 1000;
}



.nav-tabs .nav-link.active {
    color: #1e7e34;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-left: 3px !important;
}
.nav-item-divider {
   height: 1px;
   margin: 1rem 0;
   overflow: hidden;
   background-color: rgba(236, 238, 239, 0.3);
}

.nav-tabs .nav-link.active {
    color: #a7c957 !important;
    border-radius: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 14px;
    margin-left:3px;
    background-color: #f3f3f394 !important;
}
.nav-tabs .nav-link {
    padding: 14px !important;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover{
    border: none;
}

.card-footer a{
    font-size:11px;
}

.btn i {
    font-size: 12px!important;
    vertical-align: -2px;
}

#style-4::-webkit-scrollbar
}
{
    width: 4px;
    background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar-thumb
{
    background-color: #a7c95734;
    border: 2px solid #a7c9571c;
    border-radius: 6px;
}

.error_sec{
    padding-top: 80px;
    padding-bottom: 80px;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_text_head h3{
    font-size: 30px;
    font-weight: 500;
    color:#a7c957;

}

.header{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.login_cover {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.login_page_main img{
    max-width:300px;
    margin-top: 4px;
}
.bottom_sec {
    background-color: #a7c957;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
}

.bottom_sec a{
    text-decoration: none;
    color:#ffffff;
}
.bottom_sec p{
    margin-bottom: 0px;
}

.login_header h3{
    font-size: 15px;
    margin-bottom: 0px;
}

.login_header .far{
    color:#a7c957;
}
.login_sec{
    padding-top: 170px;
    padding-bottom: 178px;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/log4.png);
    background-position: bottom right;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_secs{
    padding-top: 18px;
    padding-bottom: 13px;
    height: auto;

    background-repeat: no-repeat;
    background-size: 50%;
    background-position: bottom right;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-form {
   background: #ffffff61;
   width: 100%;
   margin: 65px auto;
   display: -webkit-box;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   flex-direction: column;
   border-radius: 4px;
   box-shadow: 0 2px 25px rgb(0 0 0 / 20%);
}

.login-box{
   max-width:270px;
   margin: auto;
   box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px;
}

.loginbg_img{
    background-image: url(../images/log3.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
}

.login-box .card-body {
   -webkit-box-flex: 1;
   -ms-flex: 1 1 auto;
   flex: 1 1 auto;
   padding: 1.25rem !important;
}

.login_fas .fas{
  color:#a7c957;
}
.input-group-text .far{
    color:#a7c957; 
}

.card-title {
    margin-bottom: 1px !important;
}

.login_fas_btn .btn-primary{
   color: #fff;
   background-color: #a7c957;
   padding: 10px 18px;
   text-transform: uppercase;
   border-color: #007bff00;
}

.login_fas_btn .btn-primary:hover{
   color: #fff;
   background-color: #a7c957;
   padding: 10px 18px;
   border-color: #007bff00;
}

.lockscreen-item {
   border-radius: 4px;
   background-color: #fff;
   margin: 10px auto 30px;
   padding: 0;
   position: relative;
   width: 100%;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
}
.lockscreen-image>img {
   border-radius: 50%;
   height: 100px;
   width: 100px;
   border: 6px solid #a7c95761;
}

.lockscreen-item .fas{
   color:#a7c957 !important;
}

.card-title {
   float: left;
   font-size: 1.1rem;
   font-weight: 400;
   margin: 0;
}

.card-title a{
   text-decoration: none !important;
   font-size: 15px !important;
}

.card-title a:hover {
    color: #ffffff!important;
}

.card-title {
   color:#ffffff !important;
   font-weight: 600;
} 


.top_bar {
    padding: 3px;
    width: 100vh;
    background-color: #a7c957;
    z-index: 9999;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #a5c755 !important;
    border-bottom: 1pxsolidrgba(0,0,0,.125);
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #a7c957 !important;
}
.trash  a{
    color: #a7c957;
    cursor: pointer;
}
.trash  a:hover{
    color: #a7c957;
}

.bg-light{
    background-color: #ffffff;

}

.btn-light {
    color: #ffffff !important;
    background-color: #a7c957 !important;
    border-color: #a7c957 !important;
    text-transform: capitalize;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 0.85em;
    white-space: nowrap;
    margin-bottom: 10px !important;
    margin-left: 5px !important;
}

div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    margin-top: 14px;
    margin-left: 2px;
}

div.dataTables_wrapper div.dataTables_filter label {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    margin-top: 14px;
    margin-right: 2px;
}

.login-box .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #ffffffa9 !important;
    border-bottom: 1pxsolidrgba(0,0,0,.125);
}
.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}


.icon_wrapper_p{

    padding:9px;

}

.icon_shape .fal{
    font-weight: 300;
}

.icon_text_form p{
    font-size: 11px;
    font-weight: 600;
    margin-top: 12px;
}

.icon_wrapper_p{

    width: 116px;
    height: 106px;
    margin-top: 25px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgb(139 195 74 / 44%) 0px 1px 1px 0px;
    transition: transform .2s;
}
.icon_wrapper_p:hover {
    width: 140px;
    height: 106px;
    margin-top: 25px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgb(0 0 0 / 16%) 0px 1px 1px 0px;
    transform: scale(1.1);
}

.icon_shape .fal{
    color: #a7c957;
    color: #a7c957;
    font-size: 34px;
}


.short_itrms a:hover{
    color:#000000;
    text-decoration: none;
}

.short_itrms a{
    color:#000000;
}


.short_itrms{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


@media (min-width: 992px) {
   .dashboard-app {
       margin-left: 250px;
   }

   .dashboard-compact .dashboard-app {
       margin-left: 0;
   }

}


@media (max-width: 768px) {
   .dashboard-content {
       padding: 15px 0px;
   }
}

@media (max-width: 992px) {
   .dashboard-nav {
       display: none;
       position: fixed;
       width: 250px;
       top: 0;
       right: 0;
       left: 0;
       bottom: 0;
       z-index: 1070;
   }

   .dashboard-nav.mobile-show {
       display: block;
   }
}

@media (max-width: 992px) {
   .dashboard-nav header .menu-toggle {
       display: -webkit-box;
       display: -webkit-flex;
       display: -ms-flexbox;
       display: flex;
   }
}

@media (min-width: 992px) {
   .dashboard-toolbar {
       left: 250px;
   }

   .dashboard-compact .dashboard-toolbar {
       left: 0;
   }
}


@media(max-width:580px){
    .tables .card {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        width: 100%;
        overflow-x: hidden;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border: 1pxsolidrgba(0,0,0,.125);
        border-radius: 0.25rem;
    }
    .login-box {
        width: 100%;
        margin: auto;
    }

    
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    overflow-x: scroll !important;
}

/*@font-face {
        font-family: "DC Kasthuri Bd.otf";
        src: url("assets/dcfonts/DC Kasthuri Bd.otf");

        -------------
    }*/
.capitalFont {
    text-transform: uppercase !important;
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 500px !important;
    overflow-y: auto;
    }

