ul,p,figure,hr,table,h1,h2,h3,h4,h5{
    padding: 0;
    margin: 0;
}


/* common */
.primary_header{
    margin-bottom: 5px
}
.primary_button{
    display: block;
    border-radius: 5px;
    background: #279260;
    padding: 15px 35px;
    border: none;
    color: #ffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
}
.primary_button:hover {
    background: #198754;
}

@media (max-width: 991px){
    .primary_button {
        padding: 8px 8px;
      }
  }


.primary_header h2{
    color: #212121;
    font-size: 20px;
    font-weight: 700;
    line-height:  25px
}

@media (max-width: 991px){
    .primary_header h2{
        font-size: 16px;
    }
}

.primary_header p{
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}


/* table */

.table_text{
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.statusBtn_active{
    background: #28B446;
    padding: 6px 14px;
    border-radius: 3px;
    border: none;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.statusBtn_warning{
    background: #FBBB00;
    padding: 6px 14px;
    border-radius: 3px;
    border: none;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.statusBtn_banned{
    background: #F14336;
    padding: 6px 14px;
    border-radius: 3px;
    border: none;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.table_pagination{
    display: flex;
    justify-content: space-between;
    background: #FAFAFA;
    padding: 30px 35px;
}

@media (max-width: 991px){
    .table_pagination{
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* pagination */
.pagination > li > a, .pagination > li > span {
    border-radius: 50% !important;
    margin: 0 5px;
}

.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #515151;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 400;
}

.pagination>li>.disabled-btn{
    color: #cdc8c8;
    cursor: not-allowed;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    z-index: 2;
    color: #1D2939;
    cursor: default;
    background-color: #C7C7C7;
    border-color: #C7C7C7;
}

.pagination {
    margin: 0;
}

/* day night toggle */
.theme-toggle {
	position: relative;
	width: 60px;
	height: 30px;
}

.theme-toggle input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	width: 60px;
	height: 30px;
}

.theme-toggle .toggle-body {
	position: absolute;
	top: 0;
	left: 0;

	width: 60px;
	height: 30px;
	border: 2px solid #080808;
	border-radius: 30px;
	transition: all 80ms ease-in-out;
}

.theme-toggle input[type="checkbox"] ~ .toggle-body {
	background: #1d1d1d;
	background-image: url("https://cdn.glitch.com/9be3ef5e-cf68-4fac-9bd5-82714468aed6%2F1e7b6b11b5b398711c60f2b71cdf9b03.gif?v=1599237363310");
	background-size: cover;
}


.theme-toggle input[type="checkbox"]:checked ~ .toggle-body {
	background: #82dfff /*#EDBCD4*/;
	background-image: url("");
	background-size: cover;
	border-color: #89cbf9 /*#CAAAB7*/;
}

.theme-toggle input[type="checkbox"] ~ .celestial-body {
	position: absolute;
	width: 24px;
	height: 24px;
	border: 2px solid #fff08e /*white*/;
	border-radius: 100%;
	background: #fff5c4 /*#F0F0FA*/;
	transition: all 80ms ease-in-out;
}

.theme-toggle input[type="checkbox"]:not(:checked) ~ .celestial-body {
	top: 3px;
	left: 3px;
}

.theme-toggle input[type="checkbox"]:checked ~ .celestial-body {
	top: 3px;
	left: calc(100% - 27px);

	background: #ff9900 /*#F2E9BD*/;
	border-color: #ddceb1;
}

.theme-toggle input[type="checkbox"] ~ .celestial-body::after {
	content: " ";
	opacity: 0;
	position: absolute;
	left: -20px;
	transition: left 0.13s ease-in, opacity 0.15s ease-out;
}

.theme-toggle input[type="checkbox"]:checked ~ .celestial-body::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: -10px;
	display: block;
	opacity: 1;
	width: 20px;
	height: 20px;
	background: url("https://cdn.glitch.com/9be3ef5e-cf68-4fac-9bd5-82714468aed6%2FVector%201%20(1).svg?v=1599249814204");
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
}



/*   Navbar */
.logify_navbar{
    color: #ffff;
    box-shadow: 2px 2px 10px 0px rgba(141, 141, 141, 0.25);
}

.navbar_breadcrumbs{
    font-size: 14px;
    color: #959090;
    list-style-type: none;
    display: flex;
}

.border_right{
    height: 22px;
    width: 1px;
    margin: 0 8px;
    background: #959090;
}

.logify_sidebar{
    overflow-x: hidden;
}

.sidebar_list{
    color: #ffff;
    box-shadow: 2px 2px 10px 0px rgba(141, 141, 141, 0.25);
    border-right: 50px;
    height: 100%;
    border: 1px solid #8D8D8D40;
    padding: 20px 30px 20px 30px;
    border-radius: 0 10px 0 0;
    list-style-type: none;
    margin-bottom: 0
}

@media (max-width: 991px){
    .sidebar_list{
        min-height: 0;
        height: 100%;
        margin-bottom: 30px;
    }
}

.sidebar_list i {
    color: #000;
}

.sidebar_list li{
    color: #515151;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;

}


.sidebar_list li:last-child{
    padding-bottom: 0
}

.sidebar_list li:hover{
    color: #5B5DDE
}

.sidebar_list a{
    text-decoration: none;
    color: #515151;
}

.sidebar_list a:hover{
    color: #5B5DDE
}

.sidebar_dropdownList{
    margin-top: 10px;
}

.sidebar_text{
    text-decoration: none;
    color: #515151;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
}

.sidebar {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.1s ease-in-out 0s;
}

.maincontent__width {
    margin: 0 auto;
}

.sidebar__nav {
    position: absolute;
    background: #F2F6FF;
    box-shadow: 0px 2px 6px 0px rgba(7, 28, 84, 0.16);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    line-height: 30px;
    right: -15px;
    top: 20px;
    cursor: pointer;
}

.col-lg-2.sidebar__width {
    width: auto;
}

.dashboard_information{
    background: #5B5DDE;
    color: #ffff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px
}

.dashboard_information-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 10px
}

.dashboard_information-subtitle{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.dashboard_chart{
    border-radius: 10px;
    background: #ffff;
    box-shadow: 0px 4px 10px 0px rgba(129, 129, 129, 0.25);

}

.dashboard_chart-title{
    color: #515151;
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px;
    padding: 20px
}

.dashboard_chart-item{
    padding: 15px 15px;
}

.dashboard_registration{
    border-radius: 10px;
    background: #ffff;
    box-shadow: 0px 4px 10px 0px rgba(129, 129, 129, 0.25);
}

.dashboard_registration-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center
}

.dashboard_registration-header-title{
    color:  #515151;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.dashboard_registration-header-link{
    color:  #28B446;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
}

.dashboard_registration-name{
    color:  #515151;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
}

.dashboard_registration-activeTime{
    color: #515151;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px
}

.dashboard_registration-button{
    border-radius: 3px;
    border: 1px solid #959090;
    color: #959090;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 5px 15px;
    text-decoration: none;
}

.dashboard_registration-button:hover{
    border: 1px solid #28B446;
    color: #28B446
}

.attendance-header {
    color: #515151;
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px;
    padding-top: 20px;
    padding-left: 20px;
}

 .attendance-header h4 {
    color: #515151;
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px;
 }

.latest_attendance {
    border-radius: 10px;
    background: #ffff;
    box-shadow: 0px 4px 10px 0px rgba(129, 129, 129, 0.25);
}

.announcement-header {
    color: #515151;
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px;
}

.announcement-header h4 {
    color: #515151;
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px;
}

.announcement-list {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center
}

.profile_dropdown{
    cursor: pointer;
}

.profile_text{
    color: #515151;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
}

.profile_text:hover{
    color: #5B5DDE;
}

/* mobile menu */
.menu_icon{
    color: #000;
    font-size: 24px
}

.mobile_menu {
    position: fixed;
    background: #fff;
    top: 0;
    left: -180px;
    width: 0;
    height: 100vh;
    transition: 0.5s;
    z-index: 9999;
}

.mobile_menuList{
    list-style: none;
    margin-top: 30px
}

.mobile_menuList li{
    margin-bottom: 10px;
}

.mobile_menuList li a{
    text-decoration: none;
    text-size: 22px;
    color: rgb(81, 81, 81);
}

/*  Sign up */
.sign_header{
    margin-top: 80px;
}

.sign_header h2{
    color: #212121;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 30px
}

.eye_button{
    position: absolute;
    right: 20px;
    top: 10px;
}

.sign_input{
    line-height: 1.8
}

.sign_button{
    background: #279260;
    color: #ffff;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 3px;
    margin-top: 40px
}
.sign_button:hover {
    background: #198754;
}

.sign_account{
    margin-top: 24px;
    text-align: center;
    color: #515151;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 70px
}

.sign_account a{
    text-decoration: none;
    color: #198754;
}

.horizontal_line{
    background: #959090;
    height: 1px;
    width: 78px
}

.sign_img{
    width: 100%;
    height: 100%;
}

.social_link{
    border: 1px solid #959090;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    margin: 0 30px;
    cursor: pointer;
}

.social_link p{
    color: #515151;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px

}

/* sign in */
.sign_remember{
    color: #515151;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}
.sign_forgetPassword{
    text-decoration: none;
    color: #198754;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

/* 404 page */
.error{
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error_header{
    text-align: center;
    margin-top: 20px;
}

.error_header h2{
    color: #212121;
    font-size: 42px;
    font-weight: 700;
    line-height: 40px;
}

.error_header p{
    color: #515151;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 30px;
}

.button-back-to-dashboard {
    border: 1px solid #5B5DDE;
    color: #5B5DDE;
    background: #ffff;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
    line-height:  25px;
    border-radius: 3px;
    text-decoration: none;
}

.button-back-to-dashboard:hover{
    background: #5B5DDE;
    color: #ffff;
}

/* from */
.form_label{
    color: #515151;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
}

.calender_icon{
    position: absolute;
    top: 7px;
    right: 12px;
}

.form_input1{
    width: 360px;
}

@media (max-width: 991px){
    .form_input1{
       width: 330px
    }
}

.form_input2{
    width: 240px
}

/* auth */
.auth_item{
    width: 220px
}

.auth_item-radioBtn .form-check-input:checked {
    background-color: #0FBA72;
    border-color: #0FBA72;
}

.auth_item-title{
    color: #212121;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    padding: 10px 0
}

.auth_item-subtitle{
    color: #767676;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px
}

.auth_input-item h5{
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
}

.auth_input-item p{
    color: #515151;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 5px;
    margin-bottom: 15px;
}

/* announcement */
.announcement_input{
    max-width: 420px;
}

/* general settings */
.general_settings{
    margin-bottom: 30px;
}
.general_settings h5{
    color: #515151;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
}

.general_settings input::file-selector-button{
    border-radius: 3px;
    border: 1px solid #F2F7FF;
    background: #F2F7FF;
    padding: 5px 10px;
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

/* Add your desired button styles here */
.button-active {
    background: #5B5DDE;
    color: #fff;
    padding: 16px 30px;
    border-radius: 3px 0px 0px 3px;
    border: 1px solid #5B5DDE;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
  }

  @media (max-width: 991px){
    .button-active {
        padding: 8px 18px;
      }
  }

  .button-inactive {
    background: #EFEFEF;
    padding: 16px 30px;
    border-radius: 0px 3px 3px 0px;
    border: 1px solid #EFEFEF;
    color: #515151;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
  }

  @media (max-width: 991px){
    .button-inactive {
        padding: 8px 18px;
      }
  }

  /* roles & permissions */
  .permission_checkbox{
    background-color: #C7C7C7
  }
  .permission_checkbox:checked {
    background-color: #0FBA72;
    border-color: #0FBA72
  }

  .remember-me-checkbox:checked {
    background-color: #0FBA72;
    border-color: #0FBA72
  }

  /* activity log */
  .export_button1{
    border-radius: 3px 0 0 3px;
    border: 1px solid #C7C7C7;
    padding: 10px;
    background: #fff;
    color: #515151;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }

  .export_button2{
    border: 1px solid #C7C7C7;
    padding: 10px;
    background: #fff;
    color: #515151;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }

  .export_button3{
    border-radius:0 3px 3px 0;
    border: 1px solid #C7C7C7;
    padding: 10px;
    background: #fff;
    color: #515151;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }

  /* edit profile */
  .edit_profileName{
    color:  #212121;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px
  }

  .edit_profileDesignation{
    color: #515151;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .edit_profileInfo1{
    background: #F5F5F5;
    padding: 5px 20px
  }

  .edit_profileInfo2{
    background: #fff;
    padding: 5px 20px
  }

  .edit_headerTitle{
    width: 100px;
    display: inline-block;
  }

  .edit_profileText{
    color:  #515151;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
  }

  .edit_btn{
    background: #518EF8;
    padding: 16px 38px;
    border: 1px solid #518EF8;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
  }

  @media (max-width: 991px){
    .edit_btn{
        padding: 8px 8px;
    }
  }

  /* update profile */
  .edit_icon{
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
  }
  .upload_img img {
    border: 3px solid #C7C7C7;
    border-radius: 100%;
}

.upload_img-item {
    cursor: pointer;
}
  .upload_img-item .gallery-icon {
    position: absolute;
    opacity: 0;
    border: none;
    border-radius: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 5px;
}

.upload_img-item:hover::before {
    position: absolute;
    background: rgba(255,255,255,0.7);
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0px;
    content: "";
    margin: 3px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.upload_img-item:hover .gallery-icon {
    opacity: 1;
}

  .update_percentage{
    border-radius: 0px 0px 6px 6px;
    background: #FFF;
    box-shadow: 0px 5px 10px 0px rgba(141, 141, 141, 0.25);
    padding: 20px;
  }

  .update_percentage-title{
    color: #0FBA72;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px
  }

  .update_percentage-subTitle{
    color:  #767676;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
  }

  .update_percentage-label{
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .social_editIcon{
    color: #518EF8;
  }

/* footer */
.dashboard_footer{
    border-top: 1px solid #D2D6DE;
    padding-top: 12px;
    padding-bottom: 12px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 999
}
.footer_text{
    color: #767676;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px
}

.dashboard_footer a{
    text-decoration: none;
    color: #767676;
}

.dashboard_footer a:hover{
    color: #5B5DDE
}

.setting-logo-cover{
    width: 53px;
    height: 53px;
}
.header-logo{
    width: 122px;
    height: 50px;
}

.menu-active{
    font-weight: 700;
}

.search_eye_button {
    position: absolute;
    right: 6px;
    top: 9px;
    font-size: 12px;
}

.dropdown-toggle::after {
    content: none;
}

.border-gray{
    border: 1px solid #ddd;
}
select.pagination-dropdown{
    color: #767676;
}


/*
App table dropdown filter css.
*/

.dropdown-filter{
    min-width: 300px;
    inset: -5px auto auto -36px !important
}
.dropdown-item-area{
    max-height: 250px;
    overflow: auto;
}
.dropdown-item-area::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(189, 184, 184, 0.3);
    background-color: #F5F5F5;
}

.dropdown-item-area::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

.dropdown-item-area::-webkit-scrollbar-thumb
{
    background-color: #a4a3a3;
}

.dropdown-divider{
    color: #ededed;
}
.filter-search-icon{
    right: 10px;
}
.filter-button{
    width: 100%;
    height: 37px;
    padding: 5px 15px 5px 15px;
    border: 1px solid #ededed;
    border-radius: 5px;
    color: #444343;
    background-color: #d0d3d929;
    cursor: pointer;
}
.filter-button:hover{
    color: #5094f6;
}
.daterangepicker{
    top: 235.5px !important;
}
.cursor-pointer{
    cursor: pointer;
}

/*App Table Css*/

.fixTableHead {
    overflow-y: auto;
    height: 460px;
}
.fixTableHead thead th {
    position: sticky;
    top: 0;
}
table.table-fixed {
    border-collapse: collapse;
    width: 100%;
}
table.table-fixed th, table.table-fixed td {
    padding: 8px 15px;
    border: 1px solid #faf7f7;
}

table.table-fixed thead th {
    background-color: #FAFAFA;
    border-bottom: 1px solid #C7C7C7;
}
table.table-fixed tbody td, table.table-fixed tbody th {
    background-color: #ffffff;
}

/*Table Scroll css*/

.fixTableHead::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #FFFFFF;
}

.fixTableHead::-webkit-scrollbar
{
    width: 6px;
    background-color: #FFFFFF;
}

.fixTableHead::-webkit-scrollbar-thumb
{
    background-color: #7c7878;
}

.delete-button:hover{
    color: red;
}
.edit-button:hover{
    color: dodgerblue;
}
.show-button:hover{
    color: seagreen;
}

.module-title {
    border-radius: 3px;
    background-color: #EFEFF4;
}

.dropdown-menu-global {
    position: absolute;
    inset: 0px auto auto 35px !important;
    margin: 0px;
    transform: translate3d(0px, 53px, 0px);
}

.date-time-container {
    display: flex;
    justify-content: space-between;
    color: #333;
    font-family: Arial, sans-serif;
    padding: 0px 20px 20px 20px;
}

.left-content {
    text-align: left;
}

.right-content {
    text-align: right;
}

.greetings {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.welcome-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.date-time {
    font-size: 18px;
}

.time {
    font-size: 20px;
}
