/*====== STRUCTURE =======*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	overflow-x: hidden;
	margin: 0px;
	max-width: 100%;
	font-family: 'Inter', sans-serif;
}

body[data-rtl="rtl"] {
	direction: rtl;
	text-align: right;
}

ul {
	padding-left: 0px;
}

ul li {
	list-style-type: none;
}

a {
	cursor: pointer;
}

a,
button,
input,
textarea {
	text-decoration: none !important;
	outline: none !important;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
	margin-bottom: 0px;
	margin-top: 0px;
}

.animated {
	opacity: 0;
	-webkit-animation-fill-mode: inherit !important;
	        animation-fill-mode: inherit !important;
}

.visible {
	opacity: 1 !important;
}
.sec-heading h2 {
	font-weight: 600;
font-size: 64px;
line-height: 84px;
letter-spacing: 0.05em;
text-transform: capitalize;
color: #5555C6;
margin-bottom: 15px;
}
.sec-para p{
	font-weight: 350;
font-size: 20px;
line-height: 40px;
letter-spacing: 0.05em;
color: #08133C;
}
.sec-space{
	margin-bottom: 50px;
}
.section{
	padding: 200px 0;
}

.section-bottom {
	padding-bottom: 200px;
}
.nav-header{
	padding: 25px 0;
}
.header-text{
	font-family: 'Roboto Mono';
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 40px;
text-align: center;
text-transform: uppercase;
color: #FFFFFF;
}
.header-text span{
	color: #0C5098;
}
.page-container{
	background: url('../../img/bg-img.png');
	background-position: top;
	background-size: contain;
	background-repeat: no-repeat;
}
.header-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.signup-box{
background: #FFFFFF;
box-shadow: 0px 62px 101px rgba(0, 0, 0, 0.08);
border-radius: 16px 16px 0px 0px;
padding: 40px 120px 70px;
}
.form-heading{
	font-weight: 700;
font-size: 24px;
line-height: 29px;
text-align: center;
text-transform: capitalize;
color: #101317;
}
.head-link{
	position: absolute;
	right: 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	text-align: right;
	color: #F97B48;
	transition: all .6s ease-in-out;
}
.head-link:hover{
	color: #F97B48;
}
.form-head{
	margin-bottom: 40px;
}
.form-input{
	margin-bottom: 40px;
}
.form-input label{
	font-weight: 400;
font-size: 16px;
line-height: 19px;
color: #6A7179;
margin-bottom: 8px;
display: block;
}
.form-input input{
	background: #FAFAFA;
	border: 1px solid #DCDFEC;
	border-radius: 8px;
	padding: 15px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #6A7179;
	width: 100%;
	height: 52px;

}
.form-btn{
	width: 456px;
	height: 46px;
	background: #F97B48;
	border-radius: 8px;
	padding: 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	transition: all .6s ease-in-out;
	margin-bottom: 30px;
}
.form-btn:hover{
	box-shadow: 0px 10px 20px 0px rgba(249, 123, 72, 0.5);
}
.form-text{
	font-weight: 500;
font-size: 18px;
line-height: 22px;
color: #101317;
}
.form-text a{
	color: #F97B48;
}

.select-hidden {
	display: none !important;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	position: relative;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px!important;
	width: 100%;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-styled {
	position: relative;
	display: flex;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px!important;
	background: #FAFAFA;
    border: 1px solid #DCDFEC;
    border-radius: 8px;
    padding: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #6A7179;
    width: 100%;
    height: 52px;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-color: #6A7179 transparent transparent transparent;
	position: absolute;
	top: 25px;
	right: 22px;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-box-shadow: 0 11px 5px rgba(0, 0, 0, .06);
	box-shadow: 0 11px 5px rgba(0, 0, 0, .06);
	background: #FAFAFA;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-options li {
	position: relative;
	display: block;
	padding:10px 15px;
	border-bottom: 1px solid #eeeff6;
	font-size: 16px;
	font-weight: 500;
	color: #171717;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-options li:hover {
	color: #000;
}

.select-options li[rel="hide"] {
	display: none;
}
.login-box{
	background: #FFFFFF;
box-shadow: 0px 62px 101px rgba(0, 0, 0, 0.08);
border-radius: 16px;
padding: 50px 80px 60px;
}
.forget-link{
	font-style: italic;
font-weight: 500;
font-size: 14px;
line-height: 17px;
text-align: right;
color: #F67A48;
margin-top: 10px;
display: block;
}
.forget-link:hover{
	color: #F67A48;
}
/*page css*/
.navbar {
    border: none;
    -webkit-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
    background: #F97B48;
    border: none;
    border: none;
    margin: 0px auto;
    padding: 15px 0;
}
.navbar-brand img{
	width: 60px;
	height: 60px;
}
.navbar-brand span{
	font-weight: 600;
font-size: 21px;
line-height: 25px;
text-transform: uppercase;
margin-left: 15px;
color: #FFFFFF;
}
.page-wrapper {
	position: relative;
}

.page-wrapper::before {
	content: '';
	position: absolute;
	background: #F97B48;
	height: 100px;
	width: 100%;

}

.common-dropdown button {
	background: transparent;
	border: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	padding: 0;


}
.common-dropdown button:focus{
	outline: none;
	box-shadow: none;
}
.common-dropdown .dropdown-menu {
	margin-top: 10px;
	background: #FFFFFF;
	border: 1px solid #E6E6E6;
	box-shadow: 0px 9px 34px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	margin-left: 0px;
	position: absolute;
}

.common-dropdown .dropdown-item {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	padding: 10px 20px;
	color: #101317;
}

.common-dropdown {
	position: relative;
	margin-right: 15px;
	padding-right: 20px;
}

.common-dropdown.show .dropdown-toggle::after {
	transform: rotate(180deg);
}

.user-dropdown:after {
	content: '';
	height: 22px;
	width: 1px;
	position: absolute;
	right: 0;
	top: 0;
	background-color: #fff;
	margin: auto;
	bottom: 0;
}

.dropdown-toggle::after {
	margin-left: 15px;
}

.common-dropdown button .user-int {
	width: 36px;
	height: 36px;
	background: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #101317;
	margin-right: 10px;
}
.drop-btn-text h6{
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	text-align: left;
}
.drop-btn-text span{
	font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #FDECE6;
text-align: left;
}
.steps-dropdown .dropdown-menu{
	padding: 0;
}
.step-drop-inner{
	padding: 24px;
	width: 300px;
}
.step-drop-top{
	border-bottom:1px solid #D8D9DC;
	margin-bottom: 24px;
	padding-bottom: 24px;
}
.drop-title{
	font-weight: 400;
font-size: 14px;
line-height: 17px;
color: #6A7179;
margin-bottom: 8px;
}
.drop-dark-text{
	font-weight: 500;
font-size: 16px;
line-height: 19px;
color: #101317;
}
.drop-text h5{
	font-weight: 600;
font-size: 16px;
line-height: 16px;
margin-bottom: 0;
color: #F97B48;
}
.drop-text span{
	font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #A8AFB8;
}
.logout-link,
.logout-link:hover {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
}

.padding-top {
	padding-top: 30px;
}

.top-card {
	background: #FFFFFF;
	border: 1px solid #DFE8F4;
	box-shadow: 0px 29px 49px rgba(0, 0, 0, 0.02);
	border-radius: 8px;
	padding: 30px 25px;
	height: 125px;
}

.total-point {
	margin-right: 20px;
	padding-right: 20px;
	position: relative;
}

.total-point:after {
	content: '';
	height: 37px;
	width: 2px;
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgb(16 19 23 / 20%);
	margin: auto;
	bottom: 0;
}

.today-point span {
	font-weight: 400;
font-size: 14px;
line-height: 17px;
color: #6A7179;
	margin-bottom: 8px;
	display: block;
}

.today-point h5 {
	font-weight: 600;
font-size: 18px;
line-height: 22px;
color: #101317;
}

.star-icon {
	background: #FCF2EE;
	height: 54px;
	width: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 10px;
}

.total-text span {
	font-weight: 400;
font-size: 14px;
line-height: 17px;
color: #6A7179;
}

.total-text h5 {
	font-weight: 600;
font-size: 18px;
line-height: 22px;

color: #F97B48;
}

.highest-point-heading {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	padding: 10px 0;
	border-bottom: 1px solid #D9D9D9;
	color: #6A7179;
	width: 100%;
}

.points-info {
	padding: 20px 0;
	position: relative;
}

.point-des h5 {
	font-weight: 600;
font-size: 18px;
line-height: 22px;
text-align: center;

color: #101317;
	margin-bottom: 5px;
}

.point-des span {
	font-weight: 400;
font-size: 14px;
line-height: 17px;
text-align: center;
color: #6A7179;
	display: block;
}
.point-des span a{
	color: #F97B48;
}
.point-des:nth-child(1) {
	border-right: 1px solid rgb(16 19 23 / 20%);
	padding-right: 50px;
	margin-right: 50px;
}

.card-layout-main {
	margin-bottom: 60px;
}

.heading {
	font-weight: 600;
font-size: 28px;
line-height: 34px;
color: #101317;
	margin-bottom: 0;
}

.bar-item {
	padding-right: 25px;
	margin-right: 25px;
	position: relative;
}

.bar-item:after {
	content: '';
	height: 19px;
	width: 2px;
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgb(16 19 23 / 20%);
	margin: auto;
	bottom: 0;
}

.selected-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #6A7179;

}

.sort-select .select-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #101317;
	white-space: nowrap;
}
.sort-select .select-styled{
	padding: 0;
	border: none;
	font-weight: 400;
font-size: 16px;
line-height: 19px;
padding: 0px 20px 0 10px;
color: #6A7179;
height: auto;
background: transparent;
}
.sort-select .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #6A7179 transparent transparent transparent;
    position: absolute;
    top: 8px;
    right: 0px;
}
.sort-select .select-options li{
	position: relative;
	display: block;
	padding: 8px 15px;
	border-bottom: 1px solid #eeeff6;
	font-size: 14px;
}
.sort-select  .select-options{
	top:120%;
}
.delete-btn {
	background: transparent;
	border: none;
	cursor: pointer;
}

.blue-btn {
	width: 130px;
	height: 46px;
	background: #F97B48;
	border-radius: 8px;
	cursor: pointer;
	transition: all .6s ease-in-out;
	border: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #FFFFFF;
}

.blue-btn:hover {
	box-shadow: 0px 10px 20px 0px rgba(249, 123, 72,0.3);
}

.table-top-bar {
	margin-bottom: 30px;
}

.tb-checkbox {
	display: block;
}

.tb-checkbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.tb-checkbox label {
	position: relative;
	cursor: pointer;
	margin-bottom: 0;
}

.tb-checkbox label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	background: #FBFCFF;
	border: 1px solid #B7BAC1;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
	width: 18px;
	height: 18px;
}

.tb-checkbox input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 6px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}

.tb-checkbox input:checked+label:before {
	background: #F97B48;
	border: 1px solid transparent;
}

.page-main-table {
	background: #FBFCFF;
	border: 1px solid #D8D9DC;
	border-radius: 8px;
	margin-bottom: 30px;
}

.table thead th {
	vertical-align: middle;
	border-bottom: 0;
	font-weight: 500;
font-size: 16px;
line-height: 19px;
text-transform: uppercase;
color: #6A7179;
	text-transform: uppercase;
	background: #F7F8FC;
	border-top: 0;
}

.table td,
.table th {
	padding: 15px 15px;
	vertical-align: top;
	text-align: left;
}

.table tbody td {
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	color: #101317;
	border-top: 1px solid #D8D9DC;
	text-align: left;
}


.page-link {
	position: relative;
	width: 25px;
	height: 25px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #101317;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0px 5px;
	background: transparent;
	transition: all .6s ease-in-out;
	border-radius: 2px;
}

.prev-btn,
.prev-btn:hover {
	margin-right: 35px;
	font-weight: 400;
font-size: 16px;
line-height: 20px;
color: #101317;
}

.next-btn,
.next-btn:hover {
	margin-left: 35px;
	font-weight: 400;
font-size: 16px;
line-height: 20px;
color: #101317;
}

.prev-disable {
	opacity: 0.5;
}

.prev-disable svg {
	opacity: 0.3;
}

.page-link.active {
	background: #F97B48;
	color: #fff;
}

.pagination {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.footer-main-container {
	padding: 12px 0;
	border-top: 1px solid #D9D9D9;
	position: sticky;
	bottom: 0;
	background-color: #EFF5FD;
}

.copyright {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #101317;
}

.footer-list li a,
.footer-list li a:hover {
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	text-align: center;

	color: #101317;
	margin-left: 45px;
}
.modal-open .navbar {
    padding-right: 0 !important;
}
.modal-dialog {
    padding-top: 10%;
	max-width: 1000px;
}
.modal-content {
    border-radius: 8px;
	background: #FFFFFF;
	border:none;
}

.modal-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	color: #101317;
}

.modal-header {
	padding: 15px;
	border-bottom: 1px solid #D9D9D9;
}

.modal-body {
	padding: 20px;
}
.add-form{
	max-width: 800px;
	
}
.modal-form{
	min-height: 400px;
}
.add-form .form-input{
	margin-bottom: 20px;
}

.modal-detail p {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #101317;

}
.input-text{
	font-weight: 500;
font-size: 16px;
line-height: 19px;

color: #101317;
}
.modal-footer {
	border-top: 1px solid #D9D9D9;
	padding: 15px;
}

.modal-btn {
	width: 100px;
	height: 36px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 20px !important;
	cursor: pointer;
	transition: all .6s ease-in-out;
}

.btn-border {
	background: #FFFFFF;
	border: 1px solid #F97B48;
	border-radius: 4px;
	color: #F97B48;
}
.btn-orange {
    background: #F97B48;
    border-radius: 4px;
    color: #fff;
    border: none;
}
.bg-gray{
	background:#EFF5FD;
}
.input-group-addon{
	position: absolute;
    right: 20px;
    top: 15px;
}
/*============Admin CSS================*/
.admin-padding-top {
	padding-top: 30px;
}

.admin-wrapper {
	background: #FFFCFE;
}

.admin-wrapper .navbar {
	background: #0C5098;
}

.admin-wrapper .page-wrapper::before {
	background: #0C5098;

}

.admin-tab-top {
	margin-bottom: 50px;
}

.user-text {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #101317;
}

.tab-inner::after {
	content: '';
	position: absolute;
	width: 100%;
	background: #B9BBBE;
	height: 1px;
	bottom: 0;
	left: 0;
}

.user-top-bar {
	padding-bottom: 30px;
	position: relative;
}

.tab-inner {
	position: relative;
}

.admin-tabs {
	border-bottom: 0;
}

.admin-tabs li a {
	font-weight: 400;
	font-size: 22px;
	line-height: 27px;
	color: rgba(255, 255, 255, 0.8);
	min-width: 147px;
	height: 52px;
	padding: 10px 20px;
	border-radius: 80px !important;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.admin-tabs li {
	margin-right: 25px;
}

.admin-tabs .nav-item.show .nav-link,
.admin-tabs .nav-link.active {
	color: #fff;
	background-color: rgb(239 245 253 / 20%);
	border-color: transparent;
}

.admin-tabs .nav-link:focus,
.admin-tabs .nav-link:hover {
	color: #fff;
	border-color: transparent;
}

.users-list li {
	background: #FFFFFF;
	border: 1px solid #E6E6E6;
	border-radius: 8px;
	height: 84px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	margin-bottom: 20px;
}

.user-icon {
	width: 42px;
	height: 42px;
	background: #F4F1F4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: #101317;
	margin-right: 12px;
}

.user-name {
	display: flex;
	align-items: center;
	
}

.user-nm {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #101317;
	margin-bottom: 0;
}

.user-email {
	
}

.user-age {
	width: 120px;
}

.user-info span {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #6A7179;
	margin-bottom: 8px;
	display: block;
}

.user-info h5 {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 0;
	color: #101317;
}

.view-link:hover,
.view-link {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #3F8DFD;
}

.admin-tab-bottom .page-link.active {
	background: #0C5098;
	color: #fff;
}

.admin-tab-bottom .page-link:hover {
	color: #0C5098;
}

.admin-wrapper-tab {
	padding-bottom: 50px;
}

.activity-card-section {
	position: relative;
}


.form-input label {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #6A7179;
	display: block;
	margin-bottom: 10px;
}

.form-input {
	margin-bottom: 25px;
}

.form-input input {
	width: 100%;
	height: 56px;
	background: #FAFAFA;
	border: 1px solid #DCDFEC;
	border-radius: 8px;
	padding: 15px 20px;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #6A7179;
}

.activity-card-section .top-card {
	height: auto;
	margin-bottom: 40px;
}

.form-btn {
	width: 130px;
	height: 46px;
	background: #0C5098;
	border-radius: 8px;
	transition: all .6s ease-in-out;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #FFFFFF;
	border: none;
	margin-bottom: 2px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-btn:hover,
.form-btn:focus {
	color: #fff;
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
	margin-bottom: 0;
}

.admin-activity-table .tb-checkbox input:checked+label:before {
	background: #0C5098;
	border: 1px solid transparent;
}

.admin-activity-table .tb-row.selected {
	background: #f2dde5;
}

.admin-wrapper .btn-border {
	border: 1px solid #0C5098;
	color: #0C5098;
}

.admin-wrapper .btn-blue {
	background: #0C5098;
}

.back-link,
.back-link:hover,
.back-link:focus {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	padding-top: 20px;
}

.delete-record-link,
.delete-record-link:hover {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #ED1B4D;
	border-left: 1px solid rgb(16 19 23 / 20%);
	padding-left: 20px;
}

.home-card .point-des {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.home-card .point-des h5 {
	margin-bottom: 0;
	margin-left: 15px;
}

.home-card .top-card {
	height: auto;
}

.home-card .point-des:nth-child(2) {
	justify-content: flex-end;
	padding-left: 20px;
}

.home-card .point-des:nth-child(1) {
	justify-content: flex-start;
	padding-right: 20px;
}


.small-table-design {
    display: none;
}

.table-small-card {
	background: #FBFCFF;
	border: 1px solid #D8D9DC;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
}

.small-card-info span {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-transform: capitalize;
	color: #6A7179;
	margin-bottom: 5px;
	display: block;
}

.small-card-info {
	margin-bottom: 20px;
}

.table-small-card .small-card-info:last-child {
	margin-bottom: 0;
}

.small-card-top .small-card-info:nth-child(1) {
	margin-right: 40px;
}

.small-card-top .small-card-info:nth-child(2) {
	margin-bottom: 20px;
}

.small-card-info h6 {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #101317;
}
.small-screen-sec,.small-filter-text{
	display: none;
}
.admin-wrapper .footer-main-container {
    background-color: #FFFCFE;
}
.activity-search input {
    background: #FAFAFA;
    border: 1px solid #DCDFEC;
    border-radius: 8px;
    width: 228px;
    height: 44px;
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6A7179;
}
.input-addon {
    position: absolute;
    right: 10px;
    top: 14px;
}
.coming-soon-text{
	min-height: 700px;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 30px;
	
}