@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

body {
	background-color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.3px;
}

img {
	max-width: 100%;
}
a {
	text-decoration: none;
	transition: color 0.3s ease;
	color: #3ab54a;
}
a:hover,
a:focus {
	color: #999595;
}
ul,
li {
	margin: 0;
	list-style: none;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}
h2 {
	font-size: 32px;
}
/* ====== Button ========== */
.btn {
	border-radius: 6px;
	min-width: 140px;
	padding: 12px 20px;
	box-shadow: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.btn_small {
	min-width: 100px;
	padding: 10px 16px;
	font-size: 14px;
}
.btn:hover,
.btn:focus {
	box-shadow: none;
}
.btn:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(58, 181, 74, 0.5);
}
.btn-primary {
	background-color: #3ab54a;
	border: 1px solid #3ab54a;
	color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: #2b7535;
	border-color: #3ab54a;
	color: #fff;
}
.btn-secondary {
	background-color: #252323;
	border: 1px solid #707070;
	color: #707070;
}
.btn-secondary:hover,
.btn-secondary:focus {
	background-color: #707070;
	color: #fff;
}
.btn-outline-primary {
	background-color: transparent;
	border: 1px solid #3ab54a;
	color: #3ab54a;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background-color: #3ab54a;
	border-color: #3ab54a;
}
.btn-dashed {
	background-color: rgba(181, 234, 187, 0.2);
	color: #3ab54a;
	border: 1px dashed #3ab54a;
	border-radius: 4px;
}
/* ========== Form control ========== */
.form-control {
	background-color: #161616;
	border: 1px solid #707070;
	border-radius: 6px;
	color: #f3eeee;
	letter-spacing: 0.2px;
	padding: 11px 16px;
	transition: border 0.3s ease-in-out;
}
.form-control:focus {
	color: #fff;
	box-shadow: none;
	border-color: #3ab54a;
	background-color: #161616;
	transition: border 0.3s ease-in-out;
}
.form-control-small {
	padding: 7px 14px;
	font-size: 14px;
}
.form-control:disabled,
.form-control[readonly] {
	background-color: #161616;
}
::placeholder {
	color: #808080;
}
:-ms-input-placeholder {
	color: #808080;
}
::-ms-input-placeholder {
	color: #808080;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    /* display: none; */
    -webkit-appearance: none;
}
.form-select {
	background-color: #161616;
	border: 1px solid #707070;
	border-radius: 6px;
	color: #f3eeee;
	letter-spacing: 0.2px;
	padding: 11px 16px;
	padding-right: 40px;
	transition: border 0.3s ease-in-out;
	background-image: url("../images/Polygon.png");
}
.form-select-small {
	padding: 7px 14px;
	padding-right: 30px;
	font-size: 14px;
	background-position: right 0.6rem center;
	background-size: 12px 8px;
}
.form-select:focus {
	color: #fff;
	box-shadow: none;
	border-color: #3ab54a;
	background-color: #161616;
	transition: border 0.3s ease-in-out;
}
.select2-container--default .select2-selection {
	background-color: #161616;
	border: 1px solid #707070;
	border-radius: 6px;
	color: #f3eeee;
	letter-spacing: 0.2px;
	padding: 7px 12px;
	padding-right: 40px;
	min-height: 45px;
	background-image: url(../images/Polygon.png);
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
}
.select2-container--default.select2-container--focus .select2-selection {
	border-color: #3ab54a;
	background-color: #161616;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	color: #fff;
	border-radius: 0;
	background-color: #7f7f7f;
	border: 1px solid #707070;
	font-size: 12px;
	padding: 5px;
	padding-right: 20px;
	margin: 3px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	bottom: 0;
	left: auto;
	right: 0;
	border-radius: 0;
	border-right: 0;
	border-left: 1px solid #aaa;
	color: #3ab54a;
	font-size: 20px;
	padding: 0 3px;
	font-weight: 400;
}
.select2-dropdown {
	background-color: #161616;
	border-radius: 0;
	border: 1px solid #707070;
}
.select2-container--default .select2-results__option--selected {
	background-color: #7f7f7f;
}
.form-label {
	font-size: 14px;
	color: #f2e9e9;
}
.form-check-input {
	width: 18px;
	height: 18px;
}
.form-check-input:checked {
	background-color: #3ab54a;
	border-color: #3ab54a;
}
.form-check-input:focus {
	border-color: #3ab54a;
	box-shadow: 0 0 0 0.25rem rgba(58, 181, 74, 0.25);
}
.form-check-label {
	font-size: 14px;
}
.color_green {
	color: #3ab54a;
}
.color_gray {
	color: #858181;
}
/* ===== Modal style ==== */
.modal-content {
	background-color: #161616;
}
.modal-header {
	border-bottom: 2px solid #292727;
}
.modal-footer {
	border-top: 2px solid #292727;
}
.modal-header,
.modal-footer,
.modal-body {
	padding: 16px 24px;
}
.modal-header .btn-close {
	background-color: #fff;
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: transform 0.3s ease-out;
	}
	.offcanvas {
		transition: transform 0.2s ease-out;
	}
}
/*===========================
	Sign up page
=============================*/
.signup_bx {
	width: 100%;
	max-width: 576px;
	padding: 64px 0;
}
.signup_form_head {
	margin-bottom: 40px;
}

.box {
	position: relative;
	background: #ffffff;
	width: 100%;
}

.box-header {
	color: #444;
	display: block;
	padding: 10px;
	position: relative;
	border-bottom: 1px solid #f4f4f4;
	margin-bottom: 10px;
}
.box-tools {
	position: absolute;
	right: 10px;
	top: 5px;
}
.dropzone-wrapper {
	border: 2px dashed #40515296;
	color: #fff;
	position: relative;
	height: 200px;
	border-radius: 20px;
	background-color: #58575763;
}
.dropzone-desc {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-50%);
}
.dropzone-desc i {
	font-size: 60px;
	margin-bottom: 30px;
	color: #707070;
}
.dropzone-desc .contentupload {
	color: #fdfdfd;
	font-size: 14px;
}
.dropzone,
.dropzone:focus {
	position: absolute;
	outline: none !important;
	width: 100%;
	height: 150px;
	cursor: pointer;
	opacity: 0;
}
.card_file_name {
	width: 40px;
	height: 40px;
	font-size: 12px;
	background-color: #3ab54a;
	flex: 0 0 40px;
	border-radius: 4px;
	color: #fff;
	text-overflow: ellipsis;
    overflow: hidden;
}
.upload_pre_right {
	padding-left: 12px;
	flex: 1 0 auto;
}
.progress {
	height: 8px;
	background-color: #292727;
}
.progress-bar {
	background-color: #3ab54a;
}
.upload_pre_right .upload_file_name {
	text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    max-width: 250px;
	color: #707070;
	font-size: 14px;
	margin-bottom: 5px;
}
.upload_pre_right i {
	color: #3ab54a;
	cursor: pointer;
}
.thank_you_body i {
	font-size: 100px;
	color: #3ab54a;
	margin-bottom: 30px;
}
.thank_you_body h2 {
	font-size: 36px;
	color: #3ab54a;
	margin-bottom: 20px;
}

/* ============================
	main wrapper
=============================== */
.main_wrapper {
	position: relative;
	padding-left: 260px;
}
/* ===== Right side ===== */
.right_wrap {
	background-color: #161616;
	padding: 35px 30px;
	width: 260px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9;
	overflow-y: auto;
}
.main_logo {
	margin-bottom: 70px;
}
.right_wrap_nav {
	padding-left: 15px;
}
.right_wrap_nav li {
	margin-bottom: 15px;
}
.right_wrap_nav li a,
.right_wrap_nav li span {
	color: #999595;
	font-size: 18px;
	padding: 5px 0;
	display: inline-block;
}
.right_wrap_nav li a:hover,
.right_wrap_nav li a.active {
	color: #3ab54a;
}
.right_wrap_nav li>ul {
	padding-left: 10px;
}
.right_wrap_nav li>ul li {
	margin-bottom: 10px;
}
.right_wrap_nav li>ul li a {
	font-size: 15px;
}
/* ==== right wrap ====== */
.left_wrap_inner {
	padding: 20px 40px;
}
/* header start */
.left_wrap header {
	border-bottom: 1px solid #292727;
	min-height: 80px;
	display: flex;
	align-items: center;
	padding: 0 40px;
}
.dropdown-toggle::after {
	content: none;
}
.dropdown-toggle {
	background-color: transparent;
	border: none;
}
.dropdown-menu {
	border-radius: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
	background-color: rgba(35, 232, 77, 0.28);
	color: #000;
}
.notification_drop .dropdown-toggle {
	color: #bcbccb;
	position: relative;
	padding: 5px;
	font-size: 20px;
}
.red_bage {
	width: 8px;
	height: 8px;
	background-color: #f10a21;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 50%;
	font-size: 0;
}
.user_drop .dropdown-toggle {
	display: flex;
	align-items: center;
	color: #faf6f6;
}
.user_drop .dropdown-toggle img {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	margin-left: 10px;
}
.left_wrap_menu > li {
	padding-left: 20px;
}
.left_wrap_menu > li > .dropdown-toggle {
	padding: 10px 0;
}
.notification_drop .dropdown-toggle .red_bage {
	top: 7px;
	right: -5px;
}
.notification_drop_list {
	min-width: 350px;
}
.notification_drop_list p {
	border-bottom: 1px solid #ebebeb;
	font-size: 14px;
	padding-left: 15px;
	padding-right: 15px;
}
.notification_drop_list p a {
	color: #999595;
}
.notification_drop_list p a:hover {
	color: #161616;
}
/* header over */
.form-label sup {
	color: #3ab54a;
}
.prof_image {
	max-width: 120px;
	overflow: hidden;
	border-radius: 50%;
}
.pro_nav_link {
	border-bottom: 1px solid #292727;
	display: flex;
	margin-bottom: 20px;
}
.pro_nav_link a {
	padding: 10px 0;
	margin-right: 25px;
	border-bottom: 3px solid transparent;
	color: #fff;
	cursor: pointer;
}
.pro_nav_link a:hover {
	color: #3ab54a;
}
.pro_nav_link a.active {
	border-bottom-color: #3ab54a;
}
.small_note {
	color: #808080;
}

/* ========== Billing page ====== */
.custom_radio {
	background-color: #161616;
	border-radius: 4px;
	display: inline-flex;
	width: auto;
}
.custom_radio_bx [type="radio"] + label {
	border-radius: 6px;
	min-width: 120px;
	padding: 12px 20px;
	box-shadow: none;
	background-color: #252323;
	color: #515151;
	margin: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}
.custom_radio_bx [type="radio"]:checked + label {
	background-color: #3ab54a;
	color: #fff;
}

.input_with_select .input_with_select_lbl {
	width: 80px;
    position: absolute;
    top: 8px;
    right: 0px;
    text-align: right;
    border-color: transparent;
    padding: 5px 16px;
    font-size: 16px;
}
.input_with_select .form-control {
	padding-right: 90px;
}
/* ==== Document ==== */
.doc_upload {
	margin-bottom: 24px;
	max-width: 250px;
	width: 100%;
	margin-right: 16px;
}
.doc_upload_bx {
	background-color: #252323;
	color: #707070;
	border-radius: 8px;
	height: 150px;
	max-width: 250px;
	width: 100%;
	border: 1px solid #252323;
	transition: all 0.3s ease-in-out;
}
.doc_upload_bx:hover {
	color: #3ab54a;
	border: 1px solid #3ab54a;
}
.doc_upload_bx i.fa-plus {
	font-size: 28px;
	margin-bottom: 5px;
}
.doc_upload_priv {
	border-radius: 8px 8px 0px 0px;
	background-color: #252323;
	height: 150px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.doc_upload_priv img {
	min-width: 100%;
}
.doc_upload_bx span {
	font-size: 14px;
}
.doc_upload_footer {
	border-radius: 0px 0px 8px 8px;
	background-color: #161616;
	padding: 8px;
	padding-right: 35px;
	position: relative;
}
.doc_upload_footer span {
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}
.doc_upload_footer .dlt_uplod_priv {
	width: 20px;
	font-size: 15px;
	color: #3ab54a;
	cursor: pointer;
	position: absolute;
	top: 8px;
	right: 8px;
	text-align: center;
}
.upload_doc_pop {
	max-width: 570px;
}
.upload_doc_pop h5 {
	color: #6e6e6e;
}
/* ==== Gallery ==== */
.pro_note {
	color: #b1aeae;
	display: flex;
	align-items: center;
}
.pro_note i {
	color: #707070;
	font-size: 20px;
}

.avatar-upload {
	position: relative;
	max-width: 120px;
	margin-bottom: 24px;
}
.avatar-upload .avatar-edit .avtar_input {
	position: absolute;
	left: -999;
	opacity: 0;
}
.avatar-upload .avatar-edit .avtar_input + label {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	position: absolute;
	inset: 0;
	z-index: 2;
	color: #161616;
	font-size: 20px;
	opacity: 0;
}
.avatar-upload .avatar-edit .avtar_input + label:hover {
	opacity: 1;
	background-color: rgba(58, 181, 74, 0.5);
}
.avatar-upload .avatar-preview {
	width: 120px;
	height: 120px;
	position: relative;
	border-radius: 100%;
	border: 2px solid #fff;
}
.avatar-upload .avatar-preview > div {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
/* ===================================
		Library page
====================================== */
.add_edit_btn {
	color: #fff;
	background-color: #3ab54a;
	padding: 10px 15px;
	border: 1px solid #3ab54a;
	border-radius: 22px;
	box-shadow: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	transition: background 0.3s ease-in-out;
}
.add_edit_btn i {
	font-size: 18px;
}
.add_edit_btn:hover {
	background-color: rgba(58, 181, 74, 0.7);
}
.home_gym_plan_tab {
	background-color: #161616;
	border-radius: 4px;
	display: inline-flex;
	width: auto;
	border: none;
}
.home_gym_plan_tab .home_gym_btn {
	border-radius: 6px;
	min-width: 120px;
	padding: 12px 20px;
	box-shadow: none;
	background-color: #252323;
	color: #515151;
	margin: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	border: none;
}
.home_gym_plan_tab .home_gym_btn:hover {
	color: #fff;
}
.home_gym_plan_tab .home_gym_btn.active {
	background-color: #3ab54a;
	color: #fff;
}
.lib_category_bx {
	border-bottom: 1px solid #292727;
}
.no_style {
	background-color: transparent;
	border: none;
	box-shadow: none;
	transition: color 0.3s ease;
}
.no_style:hover {
	color: #f3eeee;
}
.add_sub_btn {
	font-size: 14px;
}
.modal-title span {
	font-size: 14px;
}
.video_prive {
	max-width: 250px;
}
.video_prive_thamb {
	height: 150px;
	max-width: 250px;
	cursor: pointer;
	display: block;
	transition: all 0.3s ease-in-out;
}
.video_prive_thamb img {
	width: 100%;
	height: 150px;
}
.video_prive .video_prive_name {
	font-size: 12px;
}
.video_prive_thamb::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(22, 22, 22, 0.2);
	z-index: 1;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.play_icon {
	height: 40px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.video_prive_thamb:hover::after,
.video_prive_thamb:hover .play_icon {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}
.video_prive .dropdown-toggle {
	width: 34px;
	height: 20px;
	font-size: 18px;
	background-color: #fff;
	box-shadow: 0px 0px 6px #3ab54a;
	border-radius: 5px;
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.video_prive .dropdown-toggle:hover {
	color: #000;
}
.video_prive .dropdown-menu {
	min-width: 100px;
}
.video_prive .dropdown-menu .dropdown-item {
	font-size: 14px;
}
.lib_subcat_tbx {
	max-width: 500px;
}
/* ==================================
	Traning page
===================================== */
.offcanvas.offcanvas-end {
	border-color: #707070;
}
.offcanvas.your_library {
	width: 1200px;
}
.offcanvas-header {
	border-bottom: 1px solid #707070;
}
.offcanvas-header .btn-close {
	width: 20px;
	height: 20px;
	background-size: 20px;
}
.ofheader_drop_inenr .form-select {
	min-width: 140px;
}
.img_priv_thamb .video_prive_thamb::after {
	content: none;
}
.custome_checkbox .custome_checkbox_input {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	width: 17px;
	height: 17px;
	border: 1px solid #3ab54a;
}
.custome_checkbox .custome_checkbox_input + label {
	border: 1px solid #161616;
}
.custome_checkbox .custome_checkbox_input:checked + label {
	border: 1px solid #3ab54a;
}
.workout_dtl {
	border-left: 1px solid #707070;
}
.workout_dtl.for_border {
	padding-top: 1rem;
	margin: -1rem 0;
}
.workout_dtl_img img {
	width: 100%;
}
.table {
	color: #fff;
	vertical-align: middle;
	border-color: #707070;
}
.work_sets_tbl .form-select,
.work_sets_tbl .form-control {
	max-width: 150px;
}
.work_sets_tbl .form-control[readonly] {
	cursor: pointer;
}
.cycle_list {
	border-bottom: 1px solid #292727;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.cycle_list_inner .home_gym_plan_tab .home_gym_btn {
	min-width: 100px;
	text-align: center;
	padding: 8px 15px;
}
.inline_form label {
	flex: 0 0 auto;
}
.inline_form .form-select {
	max-width: 150px;
}
.loader_spin {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
}
.workout_set_day_bx {
	width: 80px;
	height: 70px;
	background-color: #252323;
	color: #707070;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	margin-bottom: 12px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.workout_set_day span {
	font-weight: 600;
}
.workout_set_day_bx:hover {
	color: #fff;
}
.workout_set_day_bx.active {
	background-color: #3ab54a;
	color: #fff;
}
.set_link {
	color: #3ab54a;
	font-size: 18px;
	margin: 60px 8px 0;
	cursor: pointer;
}
.set_link i {
	transform: rotate(40deg);
}
.suparset_bx {
	display: flex;
	position: relative;
}
.suparset_lbl {
	background-color: #3ab54a;
	font-size: 12px;
	display: none;
	padding: 3px 8px;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	border-radius: 4px;
}
.suparset_bx .video_prive:first-child .suparset_lbl {
	display: flex;
}
.suparset_bx .video_prive .dropdown-toggle {
	display: none;
}
.suparset_bx .video_prive:last-child .dropdown-toggle {
	display: flex;
}
.offcanvas.your_library_edit {
	width: 600px;
}
.rolldate-container {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.rolldate-container .rolldate-mask {
	background-color: rgba(37, 38, 45, 0.5);
}
.rolldate-container .rolldate-panel {
	position: static;
	width: 400px;
	background-color: #212529;
	border: 1px solid #707070;
	border-radius: 8px;
}
.rolldate-container header {
	border-bottom: 1px solid #707070;
}
.rolldate-container .mask-top,
.rolldate-container .mask-bottom {
	border-color: #707070;
}
.rolldate-container .rolldate-cancel {
	font-size: 24px;
	color: #909294;
}
.rolldate-container .rolldate-confirm {
	color: #3ab54a;
}
.rolldate-container .rolldate-dim.mask-top {
	background: linear-gradient(0deg, rgba(33, 37, 41, 40%), rgba(33, 37, 41, 80%));
}
.rolldate-container .rolldate-dim.mask-bottom {
	background: linear-gradient(0deg, rgba(33, 37, 41, 80%), rgba(33, 37, 41, 40%));
}
.mfp-iframe-scaler iframe {
	border-radius: 8px;
	border: 1px solid #707070;
}
.form_iconright {
	position: relative;
}
.form_iconright .delet_icon {
	position: absolute;
	top: 0;
	right: 10px;
	padding: 5px;
	margin-top: 9px;
}
.form_iconright .form_icon {
	position: absolute;
    top: 0;
    right: 10px;
    padding: 5px;
    margin-top: 9px;
    pointer-events: none;
    font-size: 19px;
    color: #3ab54a;
}

.form_iconright .form_eye_icon {
	position: absolute;
    top: 0;
    right: 10px;
    padding: 5px;
    margin-top: 9px;
    /* pointer-events: none; */
    font-size: 19px;
    color: #3ab54a;
}

/*Landing page start*/
.landing_wrapper .container {
	max-width: 1100px;
	width: 100%;
}
.landing_wrapper header {
	padding: 20px 0;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.right_menu {
	display: flex;
	align-items: center;
}
.right_menu li {
	padding: 0 15px;
}
.right_menu li:last-child {
	padding-right: 0;
}
.right_menu li .nav-link {
	color: #FFF;
	font-size: 14px;
	padding: 5px;
}
.right_menu li .nav-link:hover, .right_menu li .nav-link:focus {
	color: #45C356;
}
.hero_banner_text h1 {
	font-size: 48px;
	line-height: 72px;
	color: #FFF;
	font-weight: 700;
	margin-top: 40px;
}
.hero_banner_text h1 span {
	color: #45C356;
	text-transform: uppercase;
}
.hero_banner_text p {
	font-weight: 500;
	color: #FFF;
	opacity: 0.5;
}
.hero_btn {
	font-size: 14px;
}
.hero_banner {
	position: relative;
/*	padding-bottom: 90px;*/
/*	min-height: 696px;*/
}

/*.hero_banner::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: 128px solid #FFF;
    border-right: 173px solid transparent;
}*/
.hero_banner_in {
	padding-top: 50px;
}
.hero_banner::before {
	content: "";
    background-image: url(../images/right-shape.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -40px;
    left: 70%;
    bottom: 20px;
    right: 0;
    background-size: auto 100%;
    z-index: -1;
    opacity: 0.5;
}
.hero_banner_img {
	position: absolute;
	right: 0;
	bottom: 0;
}


.app_down_section {
	background-color: #FFF;
	padding-top: 32px;
	color: #030303;
}
.app_text {
	padding-top: 120px;
}
.app_text h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 24px;
}
.app_text p {
	color: #8989A2;
}
.landing_wrapper footer {
	padding-top: 58px;
	padding-bottom: 100px;
}
footer h6 {
	font-weight: 700;
	margin-bottom: 20px;
}
.footer_link ul li a {
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	margin-bottom: 10px;
}
.footer_link ul li a:hover {
	color: #3ab54a;
}
.footer_logo img {
	margin-bottom: 10px;
}
.footer_logo p {
	font-size: 12px;
}
.btn_white {
	background-color: #FFF;
    border-color: #FFF;
    color: #101419;
}

.badge {
	background-color: #3ab54a;
    width: 33px;
    height: 28px;
	font-size: 15px;
	font-weight: 400;
	border-radius: 3px;
}

.header-custom {
	width: max-content;
	display: inline-block;
}

.col-custom {
	padding-left: 6px;
	padding-right: 6px;
}

/* Datatable Design */
.datatableTd {
	background-color: #000 !important;
}

.dataTable {
    width: 100%;
    padding-top: 10px;
}

.dataTables_filter label {
	font-size: 14px;
    color: #efe9e9;
}

.dataTables_filter input {
	background-color: #161616;
	border: 1px solid #707070;
	border-radius: 6px;
	color: #f3eeee;
	letter-spacing: 0.2px;
	padding: 8px 10px;
	transition: border 0.3s ease-in-out;
}

.dataTables_length label {
	font-size: 14px;
    color: #efe9e9;
}

.dataTables_length label select {
	background-color: #161616;
    border: 1px solid #707070;
    border-radius: 6px;
    color: #f3eeee;
    letter-spacing: 0.2px;
    padding: 8px 9px;
    padding-right: 10px;
    transition: border 0.3s ease-in-out;
}

.dataTables_info {
	color: #f3eeee !important;
}

.dataTables_processing {
	color: #f3eeee !important;
    background: linear-gradient(45deg, black, transparent) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: transparent !important;
    color: #FFF !important;
}

table.dataTable tbody td a {
	/* justify-content: start !important; */
}

table.dataTable td > i {
	margin-left: 0.5em;
	opacity: 0.3;
	/* float: right; */
	cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: white !important;
}

.table.dataTable thead .sorting_asc {
    background-image: url() !important;
}

.dataTables_length {
	margin-top: 10px;
}

.dataTables_filter {
	margin-top: 10px;
}

.swal2-close {
	color: #545454 !important;
}

.swal2-close:hover {
	color: #f27474 !important;
}

.tbl_cycle_main .tbl_cycle_count {
    font-size: 14px;
	text-align: left;
}
.tbl_cycle_main .tbl_cycle_prog {
    display: flex;
    align-items: center;
	text-align: left;
}
.tbl_cycle_main .tbl_cycle_probar {
    width: 150px;
    margin-right: 10px;
	margin-left: 10px;
}
.tbl_cycle_main .tbl_cycle_day {
    width: 60px;
}
table.dataTable thead th {
	white-space: nowrap;
}
.client_tbl_nowrap.dataTable tbody td {
	white-space: nowrap;
}
.client_tbl_img {
	width: 60px;
}
.client_tbl_img img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
.forgot_content {
	color: #707070;
}

.what_we_head {
	font-size: 32px;
	font-weight: 700;
	color: #45C356;
	text-align: center;
	margin-bottom: 50px;
}
.wht_section {
	background-color: #FFF;
}
.offer_section {
	min-height: 670px;
	position: relative;
	overflow-x: clip;
}
.offer_text {
	padding-top: 100px;
	min-height: 650px;
}
.offer_text h2 {
	font-size: 50px;
	font-weight: 700;
	color: #45C356;
}
.offer_text p {
	font-size: 19px;
	color: #373634;
}
.offer_img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 50%;
	margin-left: calc(15% - 27vw);
}
.offer_section_right .offer_img {
	position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    margin-right: calc(20% - 27vw);
    margin-left: 0;
    left: 50%;
}
.bg_gradiant {
	width: 443px;
	height: 443px;
	position: absolute;
	top: 0;
	left: 100%;
	margin-left: calc(6% - 27vw);
}
.grad_left_bg::before {
	content: '';
	position: absolute;
	width: 624px;
	height: 624px;
	right: 90%;
	top: 0;
	background: radial-gradient(69.73% 69.73% at 50% 50%, rgba(69, 195, 86, 0.8) 0%, rgba(255, 255, 255, 0) 71.8%);
	mix-blend-mode: normal;
	transform: rotate(0.06deg);
}
.grad_right_bg::after {
	content: "";
	position: absolute;
	width: 800px;
	height: 800px;
	left: 80%;
	top: 0px;
	background: radial-gradient(69.73% 69.73% at 50% 50%, rgba(69, 195, 86, 0.8) 0%, rgba(255, 255, 255, 0) 69.06%);
	mix-blend-mode: normal;
	transform: rotate(0.06deg);
}
.plan_head {
	margin-top: 50px;
	text-align: center;
	margin-bottom: 80px;
}
.plan_head h2 {
	color: #45C356;
	font-size: 46px;
	font-weight: 700;
}
.plan_head p {
	font-size: 19px;
	color: #373634;
	max-width: 500px;
	margin: 0 auto;
}
.plan_tbl_sec {
	position: relative;
	z-index: 1;
}
.plan_tbl_in {
	max-width: 960px;
	margin: 0 auto;
	margin-bottom: 30px;
}
.plan_tbl_in h3 {
	font-size: 34px;
	color: #45C356;
	font-weight: 700;
	margin-bottom: 30px;
}

.plan_tbl_in .table {
	color: #373634;
	border: 0;
}
.plan_tbl_in .table tr th,
.plan_tbl_in .table tr td {
	border-width: 0;
	padding-top: 15px;
    padding-bottom: 15px;
}
.plan_tbl_in .table tr th {
	font-size: 22px;
}
.plan_tbl_in .table tr td {
	font-size: 20px;
}
.plan_tbl_in .table tr th.bg_black,
.plan_tbl_in .table tr td.bg_black {
	background-color: #161616;
	color: #45C356;
}
.plan_tbl_in .check_icon {
	color: #45C356;
}
.plan_tbl_in .table tr th.tblw150 {
	width: 150px;
}
.bg_gradiant_left {
	width: 443px;
    height: 443px;
    position: absolute;
    top: -200px;
    right: 100%;
    margin-right: calc(6% - 27vw);
}
.bg_gradiant_right {
	width: 443px;
    height: 443px;
    position: absolute;
    top: 200px;
    left: 100%;
    margin-left: calc(6% - 27vw);
}

.carousel-item {
	min-height: 700px;
	padding-top: 80px;
	transition: transform 0.6s ease-in-out;
}
.carousel-indicators [data-bs-target] {
	border-radius: 50%;
    width: 14px;
    height: 14px;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
	background: #3a3535;
}
/* Handle */
::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 20px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.7);
}
.hero_banner_text .banner_font_size {
	font-size: 40px;
}

.choose-plan {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    color: #373634;
    margin: 0px -50px;
}
.choose-plan-left {
    width: calc(50% - 100px);
    margin: 0px 50px;
}
.choose-plan-right {
    width: calc(50% - 100px );
    margin: 0px 50px;
}
.choose-plan h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
/* identical to box height, or 100% */
    color: #45C356;
    margin-bottom: 15px;
}
.choose-plan h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 15px;
    display: block;
}
.choose-plan p {
    font-size: 17px;
    line-height: 34px;
}
.choose-plan:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 3px;
    background: #45C356;
    height: 100%;
}
.choose-plan:after {
    content: "or";
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: max-content;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    font-size: 30px;
    line-height: 31px;
/* identical to box height, or 100% */
    text-align: center;
    color: #45C356;
}
.plan-duretion h6 {
    color: #373634;
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 15px;
    display: block;
}
.plan-duretion {
    padding: 80px 0px;
    text-align: center;
}
.plan-duretion ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 15px;
}
.plan-duretion ul li {
    width: 123px;
    height: 123px;
    background: #45C356;
    border-radius: 100%;
    margin: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.plan-duretion ul li h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0px;
}

/*Privacy-policy*/
.privacy-policy {
    padding: 100px 0px 0px;
}
.privacy-policy h2 {
    color: #3ab54a;
    margin-bottom: 15px;
    font-weight: 700;
}
.privacy-policy p {
    margin-bottom: 20px;
}
.privacy-policy ul {
    position: relative;
}
.privacy-policy ul {
    margin-bottom: 20px;
}
.privacy-policy ul li {
	list-style: disc;
}
.privacy-policy ol {
    margin-bottom: 20px;
}
.privacy-policy ol li {
    list-style: auto;
}


/* Arabic Langague design */
input#add_category_arabic {
    text-align: right;
}
input#edit_category_arabic {
    text-align: right;
}
div#addEquipment .modal-dialog {
     max-width: 1000px; 
}
div#addSuppliment .modal-dialog {
	max-width: 1000px; 
}
.form_iconleft {
	position: relative;
}
.form_iconleft .delet_icon {
	position: absolute;
	top: 0;
	left: 10px;
	padding: 5px;
	margin-top: 9px;
}
.form_iconleft .form_icon {
	position: absolute;
    top: 0;
    left: 10px;
    padding: 5px;
    margin-top: 9px;
    pointer-events: none;
    font-size: 19px;
    color: #3ab54a;
}
.data-table-btn {
    padding: 5px 10px;
    font-size: 13px;
    min-width: max-content;
}
tr td, tr th {
    text-align: center;
}

/* Corporate Screen Design: Start */
.disabled {
	color: #666;
	cursor: not-allowed;
}

.corporate-main-head ul {
    display: flex;
    border-bottom: 1px solid #969696E5; max-width: max-content;
}

.corporate-main-head ul li {
   	margin-right: 18px;
}

.corporate-main-details-repeat ul {
    display: flex;
    margin-top: 20px;
}

.corporate-main-details-repeat ul li {
    margin-right: 18px;
}

span.select2.select2-container {
    width: 100% !important;
}

.corporate-main-details-repeat ul li:last-child { 
	margin-right: 0px; 
}

.corporate-main-head ul li:last-child { 
	margin-right: 0px; 
}

/* width */
.custom-scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.custom-scroll::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #ccc;
}

.cmn-button {
    max-width: 1370px;
    text-align: right;
    padding: 30px 0px 10px 0px;
    border-bottom: 1px solid #969696E5;
    margin-bottom: 10px;
}

/*input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
*/

input[type="date"] {
    position: relative; appearance: none; 
}

/* change color of symbol on hover */
input[type="date"]:hover:after {
    color: #bf1400;
}

/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent; cursor: pointer; 
}

/* adjust increase/decrease button */
input[type="date"]::-webkit-inner-spin-button {
    z-index: 1;
}

 /* adjust clear button */
 input[type="date"]::-webkit-clear-button {
     z-index: 1;
 }


a.plus-here {
    width: 24px;
    height: 24px;
    background: #45C356;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px; margin-bottom: 10px;
}

a.plus-here i {
    font-size: 18px;
    color: #fff;
}

a.plus-here {
    width: 24px;
    height: 24px;
    background: #45C356;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

a.plus-here i {
    font-size: 18px;
    color: #fff;
}

li.icons-group a i {
    font-size: 20px;
}

.corporate-main-details-repeat ul li:last-child {}

li.icons-group a {
    margin: 0px 6px;
}

li.icons-group {
    display: flex;
    align-items: center;
}

.corporate-main-wrapper {
    overflow: auto;
}

.corporate-main {
    min-width: 1366px;
}

.corporate-main-wrapper {
    overflow: auto;
    display: block;
    width: 100%;
}

.left_wrap {
    overflow: hidden;
}

.main_wrapper { 
	overflow: hidden; 
}

/* Corporate Screen Design: End */

.export-client {
    text-align: right;
}

li.icons-group a:focus, li.icons-group a:hover {
    color: #3ab54a;
}
li.clearOption select {
    display: none;
}

.workout-box {
    position: relative;
}

.workout-box .video_prive {
    position: static;
}
.workout-box  .doc_upload_footer{ padding: 10px !important; }
.plan_tbl_sec {
    overflow-x: clip;
}

.main-menu {
    margin-left: auto;
}


.social_link a img {
    max-width: 25px;
}

label.error{
	color: rgb(218 51 68);
}
