@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

:root {
	--body-font-family: 'Poppins', sans-serif;
	--e-global-color-white: #fff;
	--e-global-color-black: #000;
	--e-global-dark-color: #323232;
	--e-global-blue-color: #2666FA;
	--e-global-purple-color: #1d1d1f;
	--e-global-light-blue-color: #4A71FF;
	--e-global-light-green-color: #62C3AE;
	--apple-black-color: #1d1d1f;
	--apple-black-fade1-color: #6e6e73;
}


/* 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;
}

select {
	appearance: none !important;
}

img {
	max-width: 100%;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

a,
a:hover {
	text-decoration: none;
}

.slick-arrow {
	-webkit-transform: translate(0, 0%);
	-ms-transform: translate(0, 0%);
	transform: translate(0, 0%);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
	max-width: calc(100% - 100px);
	max-width: 1340px;
}

body {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	position: relative;
	color: var(--e-global-dark-color);
	font-family: var(--body-font-family);
	margin: 0;
	padding: 0;
}

.section {
	position: relative;
	padding: 100px 0;
	clear: both;
	width: 100%;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

h1,
h2,
h3 {
	font-family: var(--body-font-family);
}



.only_desktop_view {
	display: block;
}

.only_mobile_view {
	display: none;
}



.button a,
.button button {
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	padding: 15px 35px;
	display: inline-block;
	border-radius: 10px;
	background: var(--e-global-purple-color);
	color: var(--e-global-color-white);
	border: 1px solid transparent;
}

.button a:focus,
.button button:focus {
	outline: none;
	box-shadow: none;
}

.border_button a,
.border_button button {
	border-color: var(--e-global-purple-color);
	color: var(--e-global-purple-color);
	background: var(--e-global-color-white);
}

.border_button a:hover,
.border_button button:hover {
	background: var(--e-global-purple-color);
	color: var(--e-global-color-white);
}








.before_login_page {
	padding: 0 15px;
	height: 100vh;
}

.before_login_side_image {
	padding: 50px;
	height: 100vh;
	background: #4C00A3;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.before_login_side_image img {
	height: auto;
	max-width: 80%;
	max-height: 100%;
}

.before_login_side_image:before {
	width: 228px;
	height: 192px;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: url(../images/signup-be.png);
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
}

.before_login_side_image:after {
	width: 274px;
	height: 202px;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: url(../images/signup-af.png) no-repeat;
	background-size: contain;
	background-position: bottom left;
	background-repeat: no-repeat;
}

.login_page_side_image:after {
	width: 264px;
	height: 184px;
	left: auto;
	right: 0;
	background: url(../images/login-af.png) no-repeat;
}

.before_login_box {
	height: 100vh;
	padding: 40px 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	overflow-y: auto;
}

.before_login_box_wrap {
	width: 100%;
}

.before_login_box_heading {
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 15px;
}

.before_login_box_heading h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 45px;
	color: var(--e-global-dark-color);
	padding-top: 15px;
	position: relative;
}

.before_login_box h2:before {
	width: 55px;
	height: 2px;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #4169FD;
}

.before_login_form {
	width: 100%;
}

.before_login_form form {
	width: 100%;
}

.before_login_form form .form-group {
	margin-bottom: 30px;
	position: relative;
}

.before_login_form form .form-group label {
	font-size: 15px;
	font-weight: 500;
	line-height: 23px;
	margin-bottom: 15px;
}

.before_login_form form .form-group .form_field {
	width: 100%;
	height: 60px;
	border-radius: 10px;
	border: 1px solid #D3D7DF;
	position: relative;
}

.before_login_form form .form-group .form_field .form-control {
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'Josefin Sans', sans-serif;
}

.before_login_form form .form-group .form_field .form-control:focus {
	outline: none;
	box-shadow: none;
}

.before_login_form form .form-group .form_field .form-control::placeholder {
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	color: #A6A6A6;
	font-family: 'Josefin Sans', sans-serif;
}

.before_login_form form .form-group .form_field .form_field_icon {
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.form_field_icon i {
	color: var(--e-global-purple-color);
}

.before_login_form form .form-group.submit_button_wrap {
	margin-bottom: 15px;
}

.before_login_form form .form-group .form_field .submit_button {
	background: var(--e-global-purple-color);
	border-color: var(--e-global-purple-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--e-global-color-white);
}

.error-message {
	width: 100%;
	display: block;
	font-size: 12px;
	color: #f00;
	font-weight: 500;
	text-align: left;
}

.resend-verification {
	display: inline-block;
	font-size: 13px;
	background: var(--e-global-blue-color);
	color: var(--e-global-color-white);
	line-height: normal;
	padding: 7px 12px;
	border-radius: 5px;
	margin-top: 4px;
}

.resend-verification:hover {
	color: var(--e-global-color-white);
}

.already_account {
	font-size: 17px;
	font-weight: 400;
	line-height: 18px;
	color: #A6A6A6;
	font-family: 'Josefin Sans', sans-serif;
}

.already_account a {
	color: #8E10DC;
	font-weight: 600;
}








.custom-select {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 20px !important;
	appearance: none;
	-webkit-appearance: none;
}

.custom-select select {
	display: none;
	-webkit-appearance: none;
}

.select-selected {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-color: transparent;
	appearance: none;
	-webkit-appearance: none;
}


.select-selected:after {
	position: absolute;
	content: "";
	top: 6px;
	bottom: 0;
	margin: auto;
	right: 20px;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-color: var(--e-global-light-green-color) transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
	border-color: transparent transparent var(--e-global-light-green-color) transparent;
	top: -10px;
}

.select-items div,
.select-selected {
	width: 100%;
	color: #A6A6A6;
	padding: 0;
	cursor: pointer;
	user-select: none;
}


.select-items {
	background: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	margin-top: 8px;
	border: 1px solid #D3D7DF;
	padding: 15px 0;
	border-radius: 10px;
	appearance: none;
	-webkit-appearance: none;
}


.select-items div {
	padding: 7px 20px;
	margin: 3px 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	font-family: 'Josefin Sans', sans-serif;
	border-left: solid 2px transparent;
}

.select-items div.same-as-selected,
.select-items div:hover {
	border-color: var(--e-global-light-green-color);
	color: var(--e-global-light-green-color);
}

.select-hide {
	display: none;
}





.custom_checkbox {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}

.custom_checkbox a {
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
	color: var(--e-global-dark-color);
}

.custom_checkbox label.remember_checkbox {
	color: #939393;
	font-size: 15px;
	font-weight: 400;
	line-height: 16px;
	margin: 0 !important;
	padding-left: 6px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: 'Josefin Sans', sans-serif;
}

.custom_checkbox .remember_checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0 !important;
	width: 0 !important;
}

.custom_checkbox .remember_checkbox .checkmark {
	border: 2px solid #7f818d;
	background: transparent;
	border-radius: 2px;
	width: 18px;
	height: 18px;
	position: relative;
	margin-right: 10px;
	display: inline-block;
}

.custom_checkbox .remember_checkbox input:checked~.checkmark {
	background: var(--e-global-purple-color);
	border-color: var(--e-global-purple-color);
}

.custom_checkbox .remember_checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 0;
	top: -3px;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.custom_checkbox .remember_checkbox input:checked~.checkmark:after {
	display: block;
}



















.dashboard_sec {
	width: 100%;
	max-width: 1540px;
	min-height: 100vh;
	margin: auto;
	background: #EDF0F3;
	background: var(--e-global-color-white);
	display: flex;
	flex-wrap: wrap;
}

.dashboard_sidebar {
	width: 270px;
	height: 100vh;
	background: #f5f5f7;
	border-radius: 0;
	position: relative;
	transition: 0.5s;
}


.dashboard_sidebar_top {
	width: 100%;
	position: relative;
}

.dashboard_logo {
	display: flex;
	align-items: center;
	column-gap: 10px;
	text-decoration: none;
	padding: 20px 20px 0;
}

.dashboard_logo .logo-icon {
	flex: 0 0 auto;
	display: flex;
	width: 28px;
}

.dashboard_logo .logo-icon img {
	width: 100%;
	height: auto;
}

.dashboard_logo .logo-name {
	flex: 0 0 auto;
	display: flex;
}

.dashboard_logo .logo-name img {
	height: 20px;
}

.hide_sidebar .dashboard_logo .logo-name {
	display: none;
}

.sidebar_arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: solid 1px var(--apple-black-color);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--apple-black-color);
	position: absolute;
	top: 0;
	right: -16px;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	z-index: 9;
}

.sidebar_arrow i {
	color: var(--e-global-color-white);
}

.hide_sidebar .sidebar_arrow i {
	transform: rotate(180deg);
}



.sidebar_menu {
	width: 100%;
	padding: 20px 20px;
	position: relative;
	overflow-y: auto;
	height: calc(100% - 80px);
}

.sidebar_menu::-webkit-scrollbar {
	width: 0px;
}

.sidebar_menu>span {
	font-size: 16px;
	font-weight: 500;
	color: var(--e-global-color-white);
	font-family: 'Josefin Sans', sans-serif;
	margin-bottom: 10px;
	display: inline-block;
}

.sidebar_menu ul li {
	padding: 4px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	font-family: 'Josefin Sans', sans-serif;
}

.sidebar_menu>ul>li>a {
	padding: 15px 20px;
	width: 100%;
	display: block;
	color: var(--apple-black-fade1-color);
	border-left: solid 5px transparent;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.sidebar_menu ul li a img {
	margin-right: 5px;
	max-width: 20px;
}

.sidebar_menu ul li a .imgIcon {
	margin: 0 5px 0 0 !important;
}

.sidebar_menu ul li a i {
	float: right;
	margin: 0 0 0 auto;
}

.sidebar_menu>ul>li.active>a,
.sidebar_menu>ul>li>a:hover {
	border-radius: 10px;
	border-left-color: #1d1d1f;
	color: var(--e-global-dark-color);
	background: var(--e-global-color-white);
	color: var(--e-global-purple-color);
}

.sidebar_menu ul li.active a img,
.sidebar_menu ul li a:hover img {
	filter: brightness(100%);
}

.sidebar_menu ul li.child_menu ul {
	padding-left: 40px;
	visibility: hidden;
	height: 0;
	opacity: 0;
	transition: all ease .2s;
}

.sidebar_menu>ul>li.active ul.child_menu_panel {
	visibility: visible;
	height: auto;
	opacity: 1;
}

.sidebar_menu ul li.child_menu.active a i {
	transform: rotate(180deg);
}

.sidebar_menu ul li.child_menu ul li {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	color: #F4DFFF;
	;
}

.sidebar_menu ul li.child_menu ul li a {
	color: #F4DFFF;
	padding: 8px 15px;
	width: 100%;
	display: block;
}



.logout_wrap {
	width: 100%;
	padding: 20px 20px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.logout_wrap .logout_button {
	width: 100%;
	text-align: center;
	display: inline-block;
	border: none;
	border-radius: 10px;
	padding: 10px 15px;
	background: #1d1d1f;
	color: var(--e-global-color-white);
}

.logout_wrap .logout_button img {
	margin-right: 7px;
}

.logout_wrap .logout_button:focus {
	outline: none;
	box-shadow: none;
}

.hide_sidebar {
	width: 80px;
}

.hide_sidebar .sidebar_menu {
	padding: 20px 15px;
}

.hide_sidebar .sidebar_menu ul li a {
	padding: 15px 10px;
}

.hide_sidebar .sidebar_menu ul li a span {
	display: none;
}

.hide_sidebar .logout_wrap .logout_button span {
	display: none;
}

.hide_sidebar .sidebar_menu ul li a i {
	display: none;
}

.hide_sidebar .logout_wrap .logout_button {
	padding: 10px 10px;
}











.dashboard_rightbar {
	width: calc(100% - 270px);
	height: 100vh;
	overflow-y: auto;
	transition: 0.5s;
}

.full_dashboard {
	width: calc(100% - 80px);
}

.dashboard_rightbar::-webkit-scrollbar {
	width: 2px;
}

.dashboard_rightbar::-webkit-scrollbar-thumb {
	background: #ccc;
}

.dashboard_rightbar_header {
	width: 100%;
	height: auto;
	padding: 18px 30px;
	position: relative;
	background: var(--e-global-color-white);
	border-bottom: solid 1px rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.dashboard_header_left {}

.dashboard_header_left h2 {
	font-size: 28px;
	font-weight: 500;
	font-family: 'Josefin Sans', sans-serif;
	color: var(--e-global-dark-color);
}

.dashboard_header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.notification_box {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	border: 1px solid #E8ECEC;
	box-shadow: 0px 4px 12px 0px #00000008;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.notification_icon {
	position: relative;
}

.notification_icon span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #DC276A;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}

.user_details_part {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.user_icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
}

.user_name {
	font-size: 16px;
	font-weight: 400;
	color: #828593;
	margin-left: 10px;
	font-family: 'Josefin Sans', sans-serif;
}

.user_popup {
	width: 200px;
	position: absolute;
	z-index: 222;
	top: 100%;
	right: 20px;
	padding: 10px 0;
	border-radius: 0 0 8px 8px;
	background: var(--e-global-color-white);
	box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.10);
	display: none;
}

.user_popup ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

.user_popup ul li {
	width: 100%;
	padding: 5px 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	text-align: left;
	line-height: normal;
	text-transform: capitalize;
}

.user_popup ul li a,
.user_popup ul li button {
	width: 100%;
	padding: 4px 15px;
	display: block;
	text-align: left;
	color: var(--e-global-dark-color);
}

.user_popup ul li a:hover,
.user_popup ul li button:hover {
	color: var(--e-global-purple-color);
}

.user_popup ul li a i,
.user_popup ul li button i {
	width: 20px;
	margin-right: 10px;
}

.user_popup ul li button {
	border: none;
	outline: none;
	background: transparent;
}

.user_active {
	display: block;
}





.dashboard_rightbar_body {
	width: 100%;
	padding: 30px 30px;
	background: #FAFAFA;
}

.dashboard_rightbar_body_wrap {
	width: 100%;
	border-radius: 10px;
	background: transparent;
	border: 1px solid #F2F3F3
}

.dashboard_rightbar_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px;
	border-bottom: 1px solid #F2F3F3;
}

.dashboard_rightbar_top h1 {
	font-size: 22px;
	font-weight: 600;
	line-height: 33px;
	color: var(--e-global-dark-color);
	position: relative;
}

.dashboard_rightbar_top .search_bar_wrap input::placeholder {
	color: #333D5C;
}

.dashboard_rightbar_top .search_bar_wrap button {
	color: #333D5C;
}


.dashboard_rightbar_middle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.datepicker_bar {}

.datepicker_bar form {
	width: 100%;
	padding: 0;
	display: flex;
	align-items: center;
}

.datepicker_bar form .datepicker {}

.datepicker_bar form .datepicker .form-control {
	height: 52px;
	padding: 10px 15px;
	background: #fff;
	border: 1px solid #D3D7DF;
	border-radius: 10px;
	outline: none;
	font-size: 15px;
	font-family: 'Josefin Sans', sans-serif;
	background-image: url(../images/icons/calendar.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-position-x: 95%;
}

.datepicker_bar form .datepicker .form-control:focus {
	outline: none;
	box-shadow: none;
}

.datepicker_bar form .datepicker .form-control::placeholder {
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	color: #A6A6A6;
	font-family: 'Josefin Sans', sans-serif;
}

.datepicker_bar form .search_button {
	margin-left: 15px;
}

.datepicker_bar form .search_button button.btn-primary {
	height: 52px;
	background: var(--e-global-purple-color);
	padding: 15px 20px;
	font-size: 16px;
	border: none;
	border-radius: 10px;
	color: var(--e-global-color-white);
}

.datepicker_bar form .search_button button.btn-primary:focus,
.datepicker_bar form .search_button button.btn-primary:active {
	outline: none;
	box-shadow: none !important;
	border: none;
	background: var(--e-global-purple-color);
}

.datepicker_gap {
	padding: 0 15px;
	font-size: 16px;
	font-weight: 600;
	color: var(--e-global-color-black);
}


.dashboard_rightbar_main {
	width: 100%;
	padding: 30px;
}

.dashboard_rightbar_main_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.dashboard_rightbar_main_top h3 {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	color: var(--e-global-dark-color);
	position: relative;
}

.dashboard_rightbar_main_top .button a,
.dashboard_rightbar_top_right .button a {
	padding: 12px 18px;
	border-radius: 10px;
	color: var(--e-global-color-white);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.92px;
	text-transform: uppercase;
}

.dashboard_rightbar_main_top .button i {
	margin-right: 5px;
	color: var(--e-global-color-white);
}


.dashboard_form {
	width: 100%;
}

.dashboard_form form {
	width: 100%;
}

.dashboard_form form .form-group {
	margin-bottom: 15px;
}

.dashboard_form form label {
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
	margin-bottom: 10px;
	color: var(--e-global-dark-color);
}

.dashboard_form form .form_field {
	width: 100%;
	height: 52px;
	border-radius: 10px;
	border: 1px solid #D3D7DF;
}

.dashboard_form form .form_field .form-control {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: none;
	padding: 10px 15px;
	font-size: 15px;
	color: #A6A6A6;
	font-family: 'Josefin Sans', sans-serif;
}

.dashboard_form form .form_field .form-control:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.dashboard_form form .form_field .form-control::placeholder {
	font-size: 15px;
	font-weight: 400;
	color: #A6A6A6;
	font-family: 'Josefin Sans', sans-serif;
}

.dashboard_form form .form_field.text_area {
	height: 260px;
}

.dashboard_form form .form_field.text_area textarea {
	resize: none;
}

.dashboard_form form button.save_button {
	padding: 18px 70px;
	border-radius: 10px;
	background: var(--e-global-purple-color);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	border: none;
	text-transform: capitalize;
	color: var(--e-global-color-white);
	transition: 0.3s;
}

.dashboard_form form button.save_button:focus,
.dashboard_form form button.save_button:hover {
	outline: none;
	box-shadow: none;
	box-shadow: 1px 1px 10px #000;
}


.dashboard_table {
	width: 100%;
	margin-top: 30px;
}

.dashboard_table table {
	width: 100%;
	border-radius: 10px 10px 0 0;
	overflow-x: hidden;
	border-collapse: separate;
	border-spacing: 0 15px;
}

.dashboard_table table tbody tr {
	background: #fff;
	position: relative;
}

.dashboard_table table thead tr th,
.dashboard_table table tbody tr td {
	padding: 15px 10px;
	font-size: 15px;
	font-style: normal;
	line-height: 22px;
}

.dashboard_table table thead tr th {
	font-size: 14px;
	font-weight: 600;
	color: var(--e-global-dark-color);
	text-transform: capitalize;
	position: relative;
	cursor: pointer;
	background: #F9F9F9;
}

.dashboard_table table thead tr th img {
	margin-right: 6px;
}


.dashboard_table table tbody tr td {
	color: #8C8C8C;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Josefin Sans', sans-serif;
	border-top: solid 1px rgba(0, 0, 0, 0.1);
	border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.dashboard_table table tbody tr td:first-child {
	border-left: solid 1px rgba(0, 0, 0, 0.1);
	padding-left: 20px;
	border-radius: 10px 0 0 10px;
}

.dashboard_table table tbody tr td:last-child {
	border-right: solid 1px rgba(0, 0, 0, 0.1);
	padding-right: 20px;
	border-radius: 0 10px 10px 0;
}


.dashboard_table table tbody tr td .creator_in {
	display: flex;
	align-items: center;
}

.dashboard_table table tbody tr td .creator_image {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
}

.dashboard_table table tbody tr td .creator_name {
	padding-left: 6px;
	line-height: normal;
}

.dashboard_table table tbody tr td .table_action_button {
	display: flex;
	justify-content: center;
	column-gap: 10px;
}

.dashboard_table table tbody tr:hover {
	background: var(--e-global-purple-color);
	box-shadow: 0px 21px 45px 0px rgba(33, 65, 180, 0.17);
}

.dashboard_table table tbody tr:hover td {
	color: var(--e-global-color-white);
}

.dashboard_table table tbody tr td .action_list {
	background: var(--e-global-color-white);
	box-shadow: 0px 9px 20px 0px #0000001A;
	border-radius: 5px;
	top: 80%;
	right: 0;
	z-index: 9;
	position: absolute;
	min-width: 100px;
	padding: 5px;
	display: none;
}

.dashboard_table table tbody tr td .action_list.creator_active {
	display: block;
}

.dashboard_table table tbody tr td .action_list:before {
	width: 0;
	height: 0;
	content: "";
	position: absolute;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 12px solid #fff;
	top: -10px;
	left: 0;
	right: 0;
	margin: auto;
}

.dashboard_table table tbody tr td .action_list ul li {
	width: 100%;
}

.dashboard_table table tbody tr td .action_list ul li a,
.dashboard_table table tbody tr td .action_list ul li button {
	padding: 5px 10px;
	display: inline-block;
	width: 100%;
	color: #8E10DC;
	font-family: "Josefin Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	text-transform: capitalize;
	text-align: left;
}

.dashboard_table table tbody tr td .action_list ul li.delete a,
.dashboard_table table tbody tr td .action_list ul li.delete button {
	color: #DB2302;
}

.dashboard_table table tbody tr td .action_list ul li.view a,
.dashboard_table table tbody tr td .action_list ul li.view button {
	color: #62C3AE;
}

.dashboard_table table tbody tr:hover td .table_action_button img {
	filter: brightness(100);
}


.table_under {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

.table_under_left {
	color: var(--e-global-dark-color);
	text-edge: cap;
	font-family: "Josefin Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
	margin-top: 10px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 10px;
}

.pagination a {
	color: #9A9A9A;
	font-family: "Josefin Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
	margin: 0 10px;
}

.pagination a.active {
	color: #4A71FF;
}



.dashboard_rightbar_top_right {
	display: flex;
}

.dashboard_rightbar_top_right .button a {
	margin-left: 20px;
}

.reload_employee {
	margin-left: 20px;
}

.reload_employee a {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	border: 1px solid #E8ECEC;
	box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
}

.employee_table {
	margin-top: 0;
}

.dashboard_form form .custom_radio_field {}


.custom_radio {
	color: #837D7D;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 30px;
}

.custom_radio p {
	margin: 0;
}

.custom_checkbox {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}

.custom_radio a {
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
	color: var(--e-global-dark-color);
}

.custom_radio label.remember_radio {
	color: var(--e-global-dark-color);
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	text-transform: capitalize;
	margin: 0 0 10px !important;
	padding-left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: var(--body-font-family);
}

.custom_radio .remember_radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0 !important;
	width: 0 !important;
}

.custom_radio .remember_radio .checkmark {
	border: 1px solid #A8A1A1;
	background: transparent;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	position: relative;
	margin-right: 6px;
	display: inline-block;
}

.custom_radio .remember_radio input:checked~.checkmark {}

.custom_radio .remember_radio .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	margin: auto;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid var(--e-global-color-white);
	background: var(--e-global-purple-color);
}

.custom_radio .remember_radio input:checked~.checkmark:after {
	display: block;
}


















.pricing_bar_main {
	width: 100%;
	margin-top: 50px;
}

.pricing_bar_heading {
	text-align: center;
}

.pricing_bar_heading h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
	color: var(--e-global-dark-color);
}





.pricing_plan_wrapper {
	margin-top: 30px;
	display: inline-block;
}

.pricing_plan_wrapper ul.nav {
	border: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing_plan_wrapper ul.nav li a {
	border-radius: 0;
	padding: 10px 15px;
	font-size: 16px;
	line-height: normal;
	border: solid 1px #ccc !important;
	color: var(--e-global-dark-color);
}

.pricing_plan_wrapper ul.nav li a.active {
	border: solid 1px var(--e-global-purple-color) !important;
	background: var(--e-global-purple-color);
	color: var(--e-global-color-white);
}

.pricing_plan_wrap {
	margin-top: 40px;
	margin-bottom: 20px;
	display: flex;
}

.pricing_plan_box {
	padding: 20px 20px;
	border-radius: 15px;
	border: solid 1px #ccc;
	background: #EDF0F3;
}

.pricing_plan_top {
	width: 100%;
	color: var(--e-global-dark-color);
	display: block;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px;
}

.pricing_plan_top hr {
	border-color: #ccc;
	display: inline-block;
	width: 100%;
}

.pricing_plan_top p {
	margin-bottom: 10px;
}

.pricing_plan_top h3 {
	color: var(--e-global-dark-color);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 10px;
}

.pricing_plan_top ul li {
	padding: 8px 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--e-global-dark-color);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.pricing_plan_top ul li span {
	display: block;
}

.pricing_plan_top ul li i {
	font-size: 16px;
	margin-top: 4px;
	margin-right: 10px;
}

.pricing_plan_top ul li i.fa-check {
	color: green;
}

.pricing_plan_top ul li i.fa-xmark {
	color: red;
}

.pricing_plan_top .features_button {
	margin: 15px 0;
}

.pricing_plan_top .features_button a {
	width: 100%;
	height: auto;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	padding: 12px 15px;
	background: var(--e-global-light-green-color);
	border-radius: 10px;
	display: inline-block;
	color: var(--e-global-color-white);
}

.pricing_plan_top .price_amount {
	width: 100%;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	color: var(--e-global-dark-color);
}

.pricing_plan_top .price_amount span {
	font-size: 16px;
	display: block;
	margin-top: 10px;
}

.free_trail {
	margin-top: 15px;
	text-align: center;
}

.free_trail a {
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	padding: 12px 15px;
	background: var(--e-global-purple-color);
	border-radius: 10px;
	display: inline-block;
	color: var(--e-global-color-white);
}



.professional_plan_box {
	background: linear-gradient(to bottom, #2666fa 0%, #62c3ae 100%);
}

.professional_plan_box .pricing_plan_top,
.professional_plan_box .pricing_plan_top h3,
.professional_plan_box .pricing_plan_top ul li,
.professional_plan_box .pricing_plan_top .price_amount {
	color: var(--e-global-color-white);
}

.professional_plan_box .pricing_plan_top ul li i.fa-check {
	color: #90EE90;
}







.manage_creator_main {
	width: 100%;
}

.manage_creator_top {
	width: 100%;
	margin-top: 20px;
}

.manage_creator_top ul {
	width: 100%;
	display: flex;
	column-gap: 10px;
}

.manage_creator_top ul li {
	font-size: 14px;
	font-weight: 500;
}

.manage_creator_top ul li a {
	color: #000;
	padding: 5px 15px;
	display: inline-block;
}

.manage_creator_top ul li a:hover {
	color: var(--e-global-purple-color);
}

.manage_creator_top ul li.active a {
	font-weight: 600;
	background: var(--e-global-purple-color);
	color: #fff;
	border: none;
	border-radius: 20px;
}


.manage_creator_body {
	width: 100%;
	margin-top: 30px;
}

.manage_creator_body form {
	width: 100%;
}

.manage_creator_body_left {}

.manage_creator_body_left .form-group label {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
	line-height: normal;
	color: var(--e-global-color-black);
}

.manage_creator_body_left .form-group a {
	float: right;
	color: var(--e-global-purple-color);
}

.manage_creator_body_left .form-group a[disabled] {
	cursor: no-drop;
}

.manage_creator_body_left .form-group .form_field {
	width: 100%;
	height: 50px;
	border-radius: 10px;
	border: 1px solid #D3D7DF;
	position: relative;
	margin-top: 5px;
}

.manage_creator_body_left .form-group .form_field .form-control {
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'Josefin Sans', sans-serif;
}

.manage_creator_body_left .form-group .textarea_field {
	width: 100%;
	height: 120px;
}

.manage_creator_body_left .form-group .textarea_field textarea {
	resize: none;
}

.manage_creator_body_left .form-group .form_field .form-control:focus {
	outline: none;
	box-shadow: none;
}

.manage_creator_body_left .form-group .form_field .form-control .select-selected:after {
	display: none;
}

.all_button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.all_button button {
	width: 45%;
	padding: 10px 0;
	background: var(--e-global-purple-color);
	border: solid 2px var(--e-global-purple-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--e-global-color-white);
	margin-top: 10px;
	border-radius: 10px;
}

.all_button button:focus {
	outline: none !important;
	box-shadow: none;
}




.onlyfans_profile_wrap {
	border: none;
}

.onlyfans_profile_wrap .dashboard_rightbar_main {
	padding: 0;
}

.dashboard_profile_main {
	margin: auto;
}

.profile_page_wrap {
	width: 100%;
	padding: 25px;
	border-radius: 20px;
	background: var(--e-global-color-white);
	box-shadow: 0px 4px 18px 0px #00000008;
	border: 1px solid #F2F3F3;
	margin-bottom: 15px;
}

.all_profile_image {
	width: 100%;
	position: relative;
}

.cover_image {
	width: 100%;
	height: 250px;
	position: relative;
	border-radius: 0;
	overflow: hidden;
	border-radius: 20px;
}

.cover_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile_image_wrap {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-top: -60px;
	position: relative;
	z-index: 1;
	border: solid 8px var(--e-global-color-white);
}

.profile_image {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.profile_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.online {
	width: 18px;
	height: 18px;
	background: #35D063;
	border: solid 3px var(--e-global-color-white);
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	bottom: 10px;
	right: 10px;
}


.all_profile_image_under_sec {
	width: 100%;
	padding: 25px 40px;
}

.all_profile_image_under_sec_top {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.all_profile_image_under_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 20px;
}


.all_profile_image_under_right_top {}

.all_profile_image_under_right_top h2 {
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--e-global-dark-color);
}

.all_profile_image_under_right_top h2 img {
	margin-left: 5px;
}

.all_profile_image_under_right_top span {
	padding: 7px 8px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	color: var(--e-global-purple-color);
	background: rgba(142, 16, 220, 0.1);
	font-family: 'Josefin Sans', sans-serif;
}

.all_profile_image_under_sec_middle {
	width: 100%;
	margin-top: 20px;
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
	font-family: 'Josefin Sans', sans-serif;
}

.all_profile_image_under_sec_middle p a {
	font-weight: 600;
	color: var(--e-global-purple-color);
}

.all_profile_image_under_sec_bottom {
	width: 100%;
	padding: 20px 0;
	margin-top: 20px;
	display: inline-block;
}

.all_profile_image_under_sec_bottom_box {
	margin: auto;
}

.profile_details_part {
	text-align: center;
	position: relative;
}

.profile_details_part:not(:last-child):before {
	width: 1px;
	height: 70%;
	background: rgba(0, 0, 0, 0.1);
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
}

.profile_details_part h4 {
	font-size: 28px;
	line-height: 38px;
	font-weight: 700;
	color: var(--e-global-dark-color);
}

.profile_details_part span {
	font-size: 15px;
	font-weight: 600;
	line-height: 22px;
	color: #A9A9A9;
}


.profile_full_tab_section {
	width: 100%;
}

.profile_tab_heading {
	width: 100%;
}

.profile_tab_heading ul {
	width: 100%;
	border-bottom: 1px solid #E6E0E9;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.profile_tab_heading ul li {
	padding: 0 15px;
}

.profile_tab_heading ul li a {
	padding: 5px 15px 10px 15px;
	font-size: 14px;
	font-weight: 500;
	color: #49454F;
	display: inline-block;
	position: relative;
}

.profile_tab_heading ul li a.active {
	font-size: 15px;
	font-weight: 600;
	color: var(--e-global-purple-color);
}

.profile_tab_heading ul li a.active:after {
	width: 20px;
	height: 3px;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 10px 10px 0 0;
	background: var(--e-global-purple-color);
}



.profile_tab_content {
	width: 100%;
}

.profile_tab_content .tab-pane {
	width: 100%;
	padding: 20px 0;
}

.post_tab_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.post_tab_top_left {}

.search_bar_box {
	width: auto;
	background: var(--e-global-color-white);
	display: flex;
	align-items: center;
	gap: 10px;
}

.search_bar_box .form-control {
	height: 50px;
	border-radius: 10px;
}
.search_bar_box .select2-container{
	height: 50px;
}

.search_bar_box .w120px {
	width: 120px;
}

.search_bar_box .w160px {
	width: 160px;
}

.search_bar_box .w200px {
	width: 200px;
}

.search_bar_box .search-btn {
	height: 50px;
	width: 50px;
	border: 1px solid #E8ECEC;
	box-shadow: 0px 4px 12px 0px #00000008;
	border-radius: 10px;
}


.search_bar_wrap {
	padding: 0;
	display: flex;
	border-radius: 10px;
	border: 1px solid #E8ECEC;
	box-shadow: 0px 4px 12px 0px #00000008;
	width: 300px;
}

.search_bar_wrap input {
	width: 300px;
	height: 50px;
	margin: 0;
	padding: 0 15px;
	border: none;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	color: #9B9B9B;
	font-family: 'Josefin Sans', sans-serif;
}

.search_bar_wrap input::placeholder {
	font-size: 13px;
	font-weight: 500;
	color: #9B9B9B;
	font-family: 'Josefin Sans', sans-serif;
}

.search_bar_box .select2-container .select2-selection--single {
	display: flex;
	height: 50px;
	align-items: center;
}

.search_bar_box .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%;
	transform: translateY(-50%);
}

.search_bar_wrap button {
	width: auto;
	height: 50px;
	padding: 5px 15px;
	background: transparent;
	margin: 0;
	color: #9B9B9B;
	border: none;
}

.search_bar_wrap input:focus,
.search_bar_wrap button:focus {
	outline: none;
	box-shadow: none;
}


.post_tab_top_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.post_t_icon {}

.post_sort_by {
	margin-left: 15px;
	font-family: 'Josefin Sans', sans-serif;
}

.post_sort_by span {
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}

.post_sort_by select {
	border: none;
	outline: none;
	box-shadow: none;
}

.post_sort_by select option {
	padding: 10px;
}



.post_tab_main {
	width: 100%;
}

.post_upload_box {
	width: 100%;
	padding: 25px;
	border-radius: 17px;
	border: 1px solid #E4E8E8;
	margin-top: 18px;
	display: inline-block;
}

.post_upload_box_top {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.post_upload_box_top_left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.post_upload_user_image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
}

.post_upload_user_content {
	padding-left: 15px;
}

.post_upload_user_content h2 {
	font-size: 17px;
	font-weight: 600;
	color: var(--e-global-dark-color);
}

.post_upload_user_content h2 img {
	margin-left: 5px;
}

.post_upload_user_content span {
	font-size: 15px;
	font-weight: 500;
	color: #A9A9A9;
	font-family: 'Josefin Sans', sans-serif;
}

.post_upload_box_top_right {}

.post_upload_box_top_right ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.post_upload_box_top_right ul li {
	margin-left: 15px;
	font-size: 15px;
	font-weight: 500;
	color: var(--e-global-dark-color);
}

.post_upload_box_middle {
	width: 100%;
	margin-top: 15px;
}

.post_upload_box_content {
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
	color: var(--e-global-dark-color);
	font-family: 'Josefin Sans', sans-serif;
}

.post_upload_box_content p a {
	color: var(--e-global-purple-color);
}

.post_upload_box_images {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-top: 10px;
	display: inline-block;
}

.post_upload_box_images img {
	width: 100%;
}


.post_upload_box_bottom {
	width: 100%;
}

.post_upload_box_bottom_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: solid 1px #EFEFEF;
}

.post_upload_box_bottom_top_left {}

.post_upload_box_bottom_top_left ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.post_upload_box_bottom_top_left ul li {
	margin-right: 15px;
}

.post_upload_box_bottom_top_left ul li a {
	font-size: 15px;
	font-weight: 500;
	font-family: 'Josefin Sans', sans-serif;
	color: var(--e-global-dark-color);
}

.post_upload_box_bottom_top_right {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.post_upload_box_bottom_top_right ul li {}

.post_upload_box_bottom_top_right ul li a {
	font-size: 24px;
	color: var(--e-global-purple-color);
}

.post_upload_box_bottom_last {
	width: 100%;
	padding: 25px 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.comments_icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.comments_box_wrap {
	width: calc(100% - 40px);
	padding-left: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.comments_box_wrap form {
	width: 100%;
}

.comments_box {
	width: calc(100% - 60px);
	background: #F3F3F3;
	padding: 10px 15px;
	border-radius: 14px;
	display: flex;
	align-items: center;
}

.comments_box .form-control {
	width: calc(100% - 60px);
	resize: none;
	background: none;
	height: 30px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	color: var(--e-global-dark-color);
	font-family: 'Josefin Sans', sans-serif;
}

.comments_box .form-control:focus {
	outline: none;
	box-shadow: none;
}

.comments_box .form-control::placeholder {
	font-size: 14px;
	font-weight: 500;
	color: #9B9B9B;
	font-family: 'Josefin Sans', sans-serif;
}

.emoji_gif_icon {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.emoji_gif_icon a {
	padding: 0;
	margin-left: 10px;
}

.comments_send_button {}

.comments_send_button .send_button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: var(--e-global-purple-color);
}

.comments_send_button .send_button:focus {
	outline: none;
	box-shadow: none;
}



.following_tab_top {
	width: 100%;
	padding: 10px 0;
}

.following_tab_top ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.following_tab_top ul li {
	font-size: 16px;
	font-weight: 500;
	padding-right: 15px;
	margin-right: 12px;
	position: relative;
	color: var(--e-global-dark-color);
}

.following_tab_top ul li:not(:last-child):after {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: var(--e-global-dark-color);
}

.following_tab_bottom {
	width: 100%;
	margin-top: 20px;
}

.following_box_wrap {
	margin-bottom: 20px;
}

.following_box {
	padding: 15px;
	border-radius: 15px;
	background: #F8F8F8;
	border: 1px solid #F2F3F3;
}

.following_box_image {
	width: 100%;
	height: 125px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.following_box_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.following_overlap {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.following_overlap_icon_wrap {}

.following_overlap_icon_wrap a {
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 4px;
	color: var(--e-global-purple-color);
	background: var(--e-global-color-white);
	font-size: 14px;
}

.following_overlap_icon_wrap_right a:last-child {
	color: var(--e-global-color-black);
}

.following_box .profile_image_wrap {
	width: 100px;
	height: 100px;
	border: solid 6px var(--e-global-color-white);
	margin: -40px auto auto;
}

.following_box .profile_image .online {
	width: 15px;
	height: 15px;
	bottom: 3px;
	right: 6px;
}

.following_user {
	width: 100%;
	text-align: center;
	padding-top: 15px;
	font-size: 14px;
	font-weight: 500;
	color: var(--e-global-dark-color);
	font-family: 'Josefin Sans', sans-serif;
}

.following_user h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--e-global-dark-color);
	font-family: var(--body-font-family);
}

.following_user h2 img {
	margin-left: 5px;
}


.fans_tab_top {
	width: 100%;
}

.fans_tab_bottom {
	width: 100%;
	margin-top: 20px;
}

.fans_box_wrap {
	margin-bottom: 20px;
}

.fans_box {
	padding: 15px;
	border-radius: 15px;
	background: #F8F8F8;
	border: 1px solid #F2F3F3;
}

.fans_box_top {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.fans_box_top_left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.fans_box_top_user_icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	position: relative;
}

.fans_box_top_user_icon img {
	border-radius: 50%;
}

.fans_box_top_user_icon .online {
	width: 15px;
	height: 15px;
	bottom: 0;
	right: 0;
}

.fans_box_top_left_details {
	padding-left: 15px;
}

.fans_box_top_left_details h2 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--e-global-dark-color);
}

.fans_box_top_left_details span {
	padding: 7px 8px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	color: var(--e-global-purple-color);
	background: rgba(142, 16, 220, 0.1);
	font-family: 'Josefin Sans', sans-serif;
}

.fans_box_top_right {}

.fans_box_top_right a {
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 4px;
	color: var(--e-global-color-white);
	background: var(--e-global-purple-color);
	font-size: 14px;
}

.fans_box_top_right a:last-child {
	color: var(--e-global-color-black);
	background: var(--e-global-color-white);
}

.fans_box_middle {
	width: 100%;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: var(--e-global-dark-color);
	font-family: 'Josefin Sans', sans-serif;
}

.fans_box_bottom {
	width: 100%;
	margin-top: 20px;
}

.fans_box_bottom a {
	border-radius: 8px;
	padding: 8px 13px;
	background: #62C3AE;
	color: var(--e-global-color-white);
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
	color: var(--e-global-color-white);
	font-family: 'Josefin Sans', sans-serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fans_box_bottom a img {
	margin-right: 5px;
}

















.dashboard_rightbar_all_button {
	display: inline-flex;
	justify-content: flex-start;
}

.dashboard_rightbar_all_button .button {
	margin-right: 10px;
}


.dashboard_page .dashboard_table table thead tr th:last-child,
.dashboard_page .dashboard_table table thead tr td:last-child {
	text-align: center;
}

.dashboard_page .dashboard_table table tbody tr td .table_action_button {
	justify-content: center;
}

.dashboard_page .dashboard_table table tbody tr td.view_more {
	text-align: right;
}

.dashboard_page .dashboard_table table tbody tr td.view_more a {
	font-size: 16px;
	font-weight: 600;
	color: var(--e-global-dark-color);
}



.admin_login_page_side_image:before {
	left: auto;
	right: 0;
	transform: scaleX(-1);
}

.admin_login_page_side_image:after {
	left: 0;
	right: auto;
	transform: scaleX(-1);
}




.list_of_post_main {
	display: flex;
	flex-wrap: wrap;
}

.list_of_post_sec {
	width: 65%;
}


.create_post {
	width: 100%;
	margin-top: 10px;
	position: relative;
}

.create_post form {
	width: 100%;
}

.create_post textarea {
	width: 100%;
	height: 150px;
	resize: none;
	padding: 10px;
	font-size: 14px;
	border-radius: 4px;
	border: solid 1px #ccc;
	color: var(--e-global-dark-color);
}

.create_post textarea::placeholder {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.create_post textarea:focus {
	outline: none;
	box-shadow: none;
	border-color: #ccc;
}

.new_post {
	width: 100%;
	padding: 15px;
	border: solid 1px #ccc;
}

.new_post_part {
	width: calc(100% - 4px);
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 2px;
	right: 0;
	left: 0;
	margin: auto;
	padding: 10px;
	z-index: 1;
	background: var(--e-global-color-white);
}

.new_post_part a {
	display: inline-block;
	color: var(--e-global-dark-color);
	padding: 2px 3px;
	margin-right: 5px;
}


.all_uploaded_post {
	width: 100%;
	margin-top: 20px;
	padding: 15px 0;
	border: solid 1px #ccc;
}

.all_uploaded_post h4 {
	padding: 0 15px;
	font-size: 20px;
	font-weight: 600;
	color: var(--e-global-dark-color);
}

.previous_post {
	width: 100%;
	padding: 10px 15px;
}

.previous_post:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.post_time {
	width: 100%;
	text-align: right;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.post_time a {
	font-size: 20px;
	margin-left: 10px;
	color: var(--e-global-dark-color);
}

.post_content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
}

.previous_post_content_image {
	width: 32.4%;
	height: 250px;
	margin-top: 10px;
}

.previous_post_content_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.previous_post_content {
	width: 100%;
	font-size: 14px;
	line-height: normal;
	margin-top: 10px;
}

.previous_post_content a {
	font-weight: 600;
	color: var(--e-global-blue-color);
}





.list_of_post_sidebar {
	width: 35%;
	padding-left: 20px;
}

.post_search {
	width: 100%;
}

.post_search form {
	width: 100%;
}

.post_search form .form-group {
	width: 100%;
	border: solid 1px #ccc;
	position: relative;
}

.post_search form .form-group input {
	width: 100%;
	height: 45px;
	padding: 10px 40px 10px 10px;
	border: none;
}

.post_search form .form-group input:focus {
	outline: none;
}

.post_search form .form-group button {
	width: 40px;
	height: 45px;
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	color: #ccc;
	font-size: 20px;
	background: transparent;
}


.list_of_post_subscription {
	width: 100%;
	padding: 10px;
	border: solid 1px #ccc;
	margin-top: 10px;
	display: inline-block;
}

.list_of_post_subscription h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--e-global-dark-color);
}

.list_of_post_subscription a {
	font-size: 16px;
	margin-top: 5px;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.list_of_message {
	width: 100%;
	padding: 10px;
	border: solid 1px #ccc;
	margin-top: 15px;
}

.list_of_message h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--e-global-dark-color);
}

.list_of_message ul {
	width: 100%;
	/*	background: #EDF0F3;*/
	border: solid 1px #ccc;
}

.list_of_message ul li {
	width: 100%;
}

.list_of_message ul li:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.list_of_message ul li a {
	width: 100%;
	padding: 15px 10px;
	display: flex;
	align-items: center;
}

.list_of_message ul li a .message_user {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.list_of_message ul li a .message_body {
	width: calc(100% - 60px);
	padding-left: 15px;
}

.list_of_message ul li a .message_body_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.list_of_message ul li a .message_body_top h4 {
	font-size: 16px;
	font-weight: 500;
	color: var(--e-global-dark-color);
}

.list_of_message ul li a .message_body_top span {
	font-size: 14px;
	color: var(--e-global-dark-color);
	text-transform: capitalize;
}

.list_of_message ul li a .message_body_content {
	width: 100%;
	padding-right: 20px;
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
	color: var(--e-global-dark-color);
	position: relative;
}

.list_of_message ul li a .message_body_content span {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--e-global-purple-color);
	color: var(--e-global-color-white);
	position: absolute;
	right: 0;
	top: 4px;
	font-size: 12px;
	border: none;
	font-weight: 600;
}

.list_of_message .button {
	margin: 10px auto auto;
	text-align: center;
}

.list_of_message .button a {
	font-size: 14px;
	padding: 10px 20px;
}






.privacy_body {}

.privacy_body_left {}


.profile_privacy_wrap {
	width: 100%;
}

.privacy_body_left form {
	width: 100%;
}

.profile_privacy_wrap h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 35px;
	color: var(--e-global-dark-color);
	position: relative;
}

.profile_privacy_list_wrap {
	width: 100%;
	border: solid 1px #ccc;
	margin-top: 10px;
	margin-bottom: 15px;
}

.profile_privacy_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}

.profile_privacy_list:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.privacy_short_content {
	width: 100%;
	font-size: 12px;
	line-height: normal;
	color: #666;
}

.privacy_short_content p {
	margin: 0;
}

.profile_privacy_list label {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}

.switch {
	position: relative;
	display: inline-block;
	width: 32px;
	height: 16px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: solid 1px #ccc;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: -4px;
	bottom: -3px;
	border: solid 1px #ccc;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked+.slider {
	background-color: rgba(0, 175, 240, .4);
	border-color: rgba(0, 175, 240, .4);
}

.switch input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

.switch input:checked+.slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
	background: #00aff0;
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}




.safety_list {}

.safety_list ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.safety_list ul li:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.safety_list ul li a {
	width: 100%;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 500;
	color: var(--e-global-dark-color);
}




.privacy_body_right {}

.restricted_accounts_sec {
	width: 100%;
}

.restricted_accounts_sec_top {
	width: 100%;
}

.restricted_accounts_sec_top ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.restricted_accounts_sec_top ul li {
	width: 50%;
	text-align: center;
	border-bottom: solid 2px #ccc;
}

.restricted_accounts_sec_top ul li a {
	width: 100%;
	padding: 10px;
	display: inline-block;
	color: #666;
	font-size: 16px;
	font-weight: 500;
}

.restricted_accounts_sec_top ul li.active {
	border-color: var(--e-global-dark-color);
}

.restricted_accounts_sec_top ul li.active a {
	color: var(--e-global-dark-color);
	font-weight: 600;
}



.restricted_accounts_sec_body {
	width: 100%;
	padding: 10px;
}

.restricted_accounts_sec_body_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	position: relative;
}

.restricted_accounts_sec_body_top_left {}

.restricted_accounts_sec_body_top_left h4 {
	color: #666;
	font-size: 18px;
	font-weight: 600;
}

.restricted_accounts_sec_body_top_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.restricted_accounts_sec_body_top_right .search_icon a {
	font-size: 20px;
	color: #666;
	display: flex;
}



.sort {
	margin-left: 10px;
}

.sort a {
	font-size: 20px;
	color: #666;
	display: flex;
}


.restricted_accounts_sec_body_middle {
	width: 100%;
}

.restricted_accounts_sec_body_middle ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 10px;
}

.restricted_accounts_sec_body_middle ul li {}

.restricted_accounts_sec_body_middle ul li a {
	padding: 5px 15px;
	font-size: 14px;
	border-radius: 20px;
	color: var(--e-global-dark-color);
	background: rgba(138, 150, 163, .12);
}

.restricted_accounts_sec_body_middle ul li.active a {
	background: var(--e-global-purple-color);
	color: var(--e-global-color-white);
}


.restricted_accounts_sec_body_main {
	width: 100%;
	margin-top: 15px;
}

.restricted_accounts_sec_list_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.restricted_accounts_sec_list {
	width: 49%;
	border-radius: 5px;
	border: solid 1px #ccc;
	margin-bottom: 2%;
}

.restricted_accounts_sec_list_top {
	width: 100%;
	padding: 10px;
	display: flex;
}

.restricted_accounts_sec_list_top_user_icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.restricted_accounts_sec_list_top_user_details {
	width: calc(100% - 60px);
	padding-left: 10px;
}

.restricted_accounts_sec_list_top_user_details_top {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.restricted_accounts_sec_list_top_user_details_top_left {
	display: flex;
}

.restricted_accounts_sec_list_top_user_details_top_left h3 {
	font-size: 18px;
	font-weight: 600;
}

.restricted_accounts_sec_list_top_user_details_top_left a {
	margin-left: 10px;
	font-size: 14px;
	color: #666;
	display: inline-block;
	line-height: normal;
}

.restricted_accounts_sec_list_top_user_details_top_right {}

.restricted_accounts_sec_list_top_user_details_top_right a {
	margin-left: 10px;
	font-size: 14px;
	color: #666;
	display: inline-block;
	line-height: normal;
}

.restricted_accounts_sec_list_top_user_details_top_bottom {
	width: 100%;
	line-height: normal;
}

.restricted_accounts_sec_list_top_user_details_top_bottom a {
	font-size: 12px;
	color: #666;
}

.restricted_accounts_sec_list_middle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
}

.restricted_accounts_sec_list_middle button {
	padding: 4px 10px;
	font-size: 12px;
	line-height: normal;
	border: none;
	border-radius: 20px;
	color: var(--e-global-dark-color);
	background: rgba(138, 150, 163, .12);
	margin-right: 10px;
}

.restricted_accounts_sec_list_middle button:focus {
	outline: none;
	box-shadow: none;
}

.restricted_accounts_sec_list_main_box {
	padding: 10px 0;
}

.restricted_accounts_sec_list_main_box_tablist {
	width: 100%;
	display: flex;
	align-items: center;
}

.restricted_accounts_sec_list_main_box_tablist button {
	width: 50%;
	border: none;
	padding: 4px;
	font-size: 13px;
	font-weight: 500;
	background: transparent;
	text-transform: uppercase;
	border-bottom: solid 2px #ccc;
}

.restricted_accounts_sec_list_main_box_tablist button:focus {
	outline: none;
	box-shadow: none;
}

.restricted_accounts_sec_list_main_box_tablist button.active {
	border-color: var(--e-global-dark-color);
}



.restricted_accounts_sec_list_main_box_tabcontent {
	width: 100%;
}

.tabcontent {
	width: 100%;
}

.list_items_wrap {
	width: 100%;
	height: 92px;
	overflow: hidden;
}

.list_items_wrap.active {
	height: auto;
}

.list_items {
	width: 100%;
	padding: 10px;
	color: #666;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.list_items:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.list_items span.list_items_right {
	color: var(--e-global-dark-color);
	font-weight: 500;
}


.view_more {
	text-align: center;
}

.view_more a {
	font-size: 16px;
	cursor: pointer;
	color: var(--e-global-dark-color);
}



.subscription_body .manage_creator_body_left .form-group .form_field,
.subscription_body .manage_creator_body_left .form-group .form_field .form-control {
	border-radius: 0;
}





.fans_following_body {
	margin-top: 0;
}

.fans_following_list {}

.fans_following_list>ul>li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.fans_following_list>ul>li:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.fans_following_list>ul>li>a {
	width: 100%;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 500;
	color: var(--e-global-dark-color);
}

.fans_following_list>ul>li:hover>a,
.fans_following_list>ul>li.active>a {
	background: rgba(0, 145, 234, .06);
}

.fans_following_list ul li a .fans_following_list_left ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.fans_following_list ul li a .fans_following_list_left ul li {
	font-size: 13px;
	color: #8a96a3;
	padding: 0 10px 0 0;
	margin: 0 10px 0 0;
	position: relative;
}

.fans_following_list ul li a .fans_following_list_left ul li:not(:last-child):after {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #8a96a3;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}


.restricted_accounts_sec_list_favorite {
	width: 100%;
	padding: 10px;
}

.restricted_accounts_sec_list_favorite button {
	background: transparent;
	border: none;
	font-size: 13px;
	color: var(--e-global-dark-color);
}

.restricted_accounts_sec_list_favorite button:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.restricted_accounts_sec_list_favorite button i {
	font-size: 14px;
	color: #00aff0;
	margin-right: 5px;
}




.fans_following_right_sec .all_profile_image .profile_details_hover .profile_details_hover_right a {
	margin-left: 10px;
}

.fans_following_right_sec .all_profile_image_under_sec {
	padding: 10px;
	border: none;
}

.fans_following_right_sec .all_profile_image .cover_image {
	height: 100px;
}

.fans_following_right_sec .all_profile_image .profile_image_wrap {
	width: 90px;
	height: 90px;
}

.fans_following_right_sec .all_profile_image .all_profile_image_under_right {
	width: calc(100% - 90px);
	padding-left: 10px;
	overflow: hidden;
}

.fans_following_right_all_profile_image_under_right_top {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.fans_following_right_all_profile_image_under_right_top a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: var(--e-global-dark-color);
}

.fans_following_right_all_profile_image_under_right_top a h3 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 600;
	margin-right: 6px;
}



.admin_login_page {
	padding: 30px 15px;
}

.admin_login_page .row {
	width: 100%;
	height: 100%;
}

.admin_login_box {
	max-width: 600px;
	height: auto;
	overflow: visible;
	padding: 20px 40px;
	margin: auto;
	border: 1px solid #D3D7DF;
}



.subscription_plan_list {
	width: 100%;
}

.subscription_plan_box_wrap {}

.subscription_plan_box {
	padding: 40px 20px;
	border-radius: 20px;
	border: 1px solid #F2F3F3;
	border-top: solid 10px #B15FE2;
	;
	background: var(--e-global-color-white);
	box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.03);
}

.subscription_plan_box_wrap:nth-child(even) .subscription_plan_box {
	border-top-color: #D48DFF;
}

.subscription_plan_top {
	width: 100%;
	text-align: center;
}

.subscription_plan_top h5 {
	color: #323232;
	font-family: var(--body-font-family);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
}

.subscription_price {
	text-align: center;
}

.subscription_price h2 {
	color: #8E10DC;
	font-family: var(--body-font-family);
	font-size: 52px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.subscription_price h2 span {
	color: #9D9F9F;
	font-family: var(--body-font-family);
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 0px;
	text-transform: capitalize;
}

.subscription_plan_top p {
	color: #5C5656;
	text-align: center;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
}

.subscription_plan_bottom {
	width: 100%;
	margin-top: 50px;
}

.subscription_plan_bottom ul li {
	width: 100%;
	display: inline-block;
	position: relative;
	padding: 5px 5px 5px 25px;
	background: url(../images/icons/check.png) no-repeat;
	background-position-y: 5px;
	margin: 5px 0;
	color: #5F5252;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
}

.subscription_plan_bottom .button {
	margin-top: 50px;
	text-align: center;
}

/* start: theme-tab-s1 */
.theme-tab-s1 {
	display: flex;
	border-bottom: 1px solid #F2F3F3;
	margin: 0;
	list-style: none;
	padding: 0;
	column-gap: 24px;
	width: 100%;
}

.theme-tab-s1 .tab-link {
	position: relative;
	display: flex;
	padding: 10px 0;
	color: var(--e-global-dark-color);
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 500;
}

.theme-tab-s1 .tab-link::after {
	content: '';
	clear: both;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 5px 5px 0 0;
	background-color: var(--e-global-purple-color);
	visibility: hidden;
	opacity: 0;
}

.theme-tab-s1 .tab-link.active {
	color: var(--e-global-purple-color);
}

.theme-tab-s1 .tab-link.active::after {
	visibility: visible;
	opacity: 1;
}

/* end: theme-tab-s1 */
/* start: agent-profile-card */
.agent-profile-card {
	display: flex;
	align-items: center;
	column-gap: 24px;
	background: var(--e-global-color-white);
	border-radius: 10px 10px 0 0;
	box-shadow: 0px 2px 8px #0000000a;
	padding: 16px 30px;
}

.agent-profile-card .image-container {
	width: 110px;
	height: 110px;
	flex: 0 0 auto;
	border-radius: 50%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--e-global-purple-color);
}

.agent-profile-card .image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.agent-profile-card .text-container h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 10px;
	color: var(--e-global-purple-color);
}

.agent-profile-card .text-container p {
	margin: 0;
	color: var(--e-global-dark-color);
	font-size: 14px;
	margin-bottom: 4px;
	line-height: 22px;
}

.agent-profile-card .text-container p a {
	color: var(--e-global-purple-color);
}

.agent-profile-card .text-container .p-divider-list {
	display: flex;
	column-gap: 24px;
}

.agent-profile-card .text-container .p-divider-list p {
	margin: 0;
	position: relative;
}

.agent-profile-card .text-container .p-divider-list p:not(:last-child)::after {
	content: '';
	clear: both;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -12px;
	width: 1px;
	height: 12px;
	background-color: var(--e-global-dark-color);
}

/* end: agent-profile-card */

.input-with-right-icon {
	position: relative;
}

.input-with-right-icon .form-control {
	padding-right: 38px !important;
}

.input-with-right-icon .right-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.input-with-add-btn {
	display: flex;
	column-gap: 16px;
}

.input-with-add-btn .add-btn {
	padding: 10px 24px;
	border-radius: 10px;
	background: var(--e-global-purple-color);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	border: none;
	text-transform: capitalize;
	color: var(--e-global-color-white);
	white-space: nowrap;
	transition: 0.3s;
}

.input-with-add-btn .add-btn:focus,
.input-with-add-btn .add-btn:hover {
	box-shadow: 1px 1px 14px #333;
}

.common-add-form-heading {
	margin-bottom: 24px;
}

.common-add-form-heading h1 {
	font-size: 24px;
	font-weight: 600;
}

.common-add-form-container {
	width: 100%;
	max-width: 991px;
	margin: 0 auto;
}

.search_bar_wrap .select2-container {
	width: 100% !important;
}

.search_bar_wrap .selection {
	display: flex !important;
	height: 100% !important;
	width: 100% !important;
}

.search_bar_wrap .select2-selection {
	border: 0 !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	box-shadow: none !important;
	background-color: transparent !important;
	border-radius: 10px !important;
}

.search_bar_wrap .select2-selection .select2-selection__rendered {
	padding-right: 8px;
}

.search_bar_wrap .select2-selection__arrow {
	display: none;
}

.search_bar_wrap:has(.select2-selection) .icon-btn {
	padding-left: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--e-global-purple-color) !important;
}

/* start: widgets-lists-s1 */

.creator-earnings-widgets {
	display: flex;
	column-gap: 26px;
	padding-top: 10px;
  }
  
  .creator-earnings-widgets .total-earnings {
	background-color: #F5EAFF;
	border: 1px solid #F2F3F3;
	margin: 0;
	display: flex;
	align-items: center;
	column-gap: 12px;
	border-radius: 9px;
	padding: 22px 22px;
	width: 279px;
  }
  
  .creator-earnings-widgets .total-earnings .icon-container {
	width: 58px;
	height: 58px;
	background-color: #BF83FF;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
  }
  
  .creator-earnings-widgets .total-earnings figcaption h5 {
	color: var(--heading-color);
	font-size: 15px;
	font-weight: 500;
	line-height: 21px;
  }
  
  .creator-earnings-widgets .total-earnings figcaption h2 {
	color: var(--secondary-color);
	font-size: 28px;
	font-weight: 700;
	line-height: normal;
  }
.widgets-lists-s1 {
	display: flex;
	flex-wrap: wrap;
	flex: 1 1 auto;
	margin: -8px -13px;
}

.widgets-lists-s1 .widgets-col {
	width: 100%;
	max-width: 33.33%;
	padding: 8px 13px;
}

.widgets-lists-s1.grid-4 .widgets-col {
	max-width: 25%;
}

.widgets-lists-s1 .widgets-box {
	display: flex;
	column-gap: 16px;
	align-items: center;
	border-radius: 9px;
	border: 1px solid #EBEBEB;
	padding: 10px;
	margin: 0;
}

.widgets-lists-s1 .widgets-box .icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9px;
	background-color: #F5EAFF;
	width: 43px;
	height: 43px;
	flex: 0 0 auto;
}

.widgets-lists-s1 .widgets-box .icon-container img {
	max-width: 30px;
}

.widgets-lists-s1 .widgets-box h4 {
	color: var(--heading-color);
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
}

.widgets-lists-s1 .widgets-box h5 {
	color: #ACACAC;
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
}

.widgets-lists-s1 .widgets-box h5 a {
	color: inherit;
	font-weight: inherit;
	font-family: inherit;
}

.widgets-lists-s1 .widgets-box .right-arow {
	flex: 0 0 auto;
	margin-left: auto;
}

/* end: widgets-lists-s1 */