/*****************************************************************
1.  Homepage
    
******************************************************************/

/*==============================
    Inter Google Font
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*==============================
    Default Style
==============================*/
:root{
	--primary: #5367fe;
	--secondary: #0713C4;
	--body-bg: #E3E6FF;
	--white: #ffffff;
	--red: #ea2843;
	--main-black: #000000;
	--black: #212121;
	--black2: #1a202c;
    --dark-gray: #edf2f7;
    --dark-gray2: #807E7E;
    --gray-color: #edf2f7;
    --gray-color2: #F7F5F0;
    --gray-color3: #f9f9f9;
	--gray-50: #fafafa;
	--gray-400: #cbd5e0;
	--gray-600: #718096;

	--heading-1: 54px;
	--heading-2: 36px;
	--heading-3: 28px;
	--heading-4: 24px;
	--heading-5: 20px;
	--heading-6: 16px;

	--font-18:18px;
	--font-16:16px;

	--fw-300: 300;
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
	--fw-800: 800;

	--body-font-size: 16px;
	--font-inter: "Inter", serif;
	--radius-5: 5px;
	--radius-10: 10px;
	--radius-20: 20px;
	--radius-40: 40px;
	--ease-transition: all 0.2s ease-in-out;
}
/*==============================
    Typography Styles
==============================*/
body{
	margin: 0;
    font-family: var(--font-inter);
    font-size: var(--body-font-size);
    font-weight: var(--fw-400);
    line-height: 20px;
    color: var(--black2);
	background-color: var(--body-bg);
}
a{	
    text-decoration: none;
	transition: var(--ease-transition);
	color: var(--black);
}
h1, h2, h3, h4, h5, h6{
	color: var(--black2);
}
h1{
	font-size: var(--heading-1);
	line-height: 70px;
	font-weight: var(--fw-800);
}
h2{
	font-size: var(--heading-2);
	line-height: 50px;
	font-weight: var(--fw-800);
}
h3{
	font-size: var(--heading-3);
	line-height: 36px;
	font-weight: var(--fw-800);
}
h4{
	font-size: var(--heading-4);
	line-height: 32px;
	font-weight: var(--fw-700);
}
h5{
	font-size: var(--heading-5);
	line-height: 26px;
	font-weight: var(--fw-700);
}
h6{
	font-size: var(--heading-6);
	line-height: 22px;
	font-weight: var(--fw-500);
}
p{
	font-family: var(--font-inter);
	font-size: var(--body-font-size);
	font-weight: var(--fw-400);
	line-height: 20px;
}
ul{
    padding: 0;
    margin: 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
select,
textarea{
    font-size: 14px;
	font-family: var(--font-inter);
	font-weight: var(--fw-400);
    padding: 10px 16px;
    width: 100%;
    color: var(--black2);
    border: 1px solid #dee2e6;
	height: 46px;
    border-radius: var(--radius-5) !important;
	margin: 0 !important;
    background: transparent;
	/* background-color: var(--gray-color); */
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
	background: transparent;
	border-color: #dee2e6;
}
input[type="text"]:-internal-autofill-selected,
input[type="password"]:-internal-autofill-selected,
input[type="email"]:-internal-autofill-selected,
input[type="number"]:-internal-autofill-selected,
input[type="date"]:-internal-autofill-selected,
input[type="time"]:-internal-autofill-selected,
input[type="search"]:-internal-autofill-selected,
select:-internal-autofill-selected,
textarea:-internal-autofill-selected{
	background-color: transparent !important;
}
.fw-600{
	font-weight: 600;
}
.fw-700{
	font-weight: 700;
}
/*==============================
    Global Elements CSS
==============================*/
.btn:focus{
	box-shadow: none;
}
.theme-color{
	color: var(--black2);
}
.theme-btn,
.theme-btn-red,
.theme-btn-gray{
	background: var(--primary);
    color: var(--white);
    font-size: 14px;
	line-height: 18px;
    padding: 14px 26px;
    border-radius: var(--radius-5);
    font-weight: var(--fw-600);
	width: 100%;
	position: relative;
	z-index: 1;
    overflow: hidden;
	border: none;
	display: block;
	font-weight: var(--fw-500);
	text-align: center;
}
.theme-btn-red{
	background-color: var(--red);
}
.theme-btn-gray{
	background-color: var(--dark-gray2);
}
.theme-btn::before,
.theme-btn-red::before,
.theme-btn-gray::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--black);
    transform: skew(45deg);
    -webkit-transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.theme-btn:hover::before,
.theme-btn-red:hover::before,
.theme-btn-gray:hover::before{
	width: 100%;
    transform: skew(0deg);
    -webkit-transform: skew(0deg);
    left: 0;
}
.theme-btn:hover,
.theme-btn-red:hover,
.theme-btn-gray:hover{
	color: var(--white);
}
.theme-btn2{
	background: #53aefe;
    color: var(--white);
    font-size: 15px;
	line-height: 24px;
    padding: 13px 26px;
    border-radius: var(--radius-5);
    font-weight: var(--fw-600);
	width: 100%;
	position: relative;
	z-index: 1;
	border: none;
	display: block;
	font-weight: var(--fw-500);
	transition: all 0.35s ease-in-out;
	text-align: center;
}
.theme-btn2:hover{
	background-color: var(--black);
	color: var(--white);
}
.add_btn{
	background-color: var(--primary);
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	border-radius: var(--radius-5);
	color: var(--white);
	padding: 10px 20px;
	font-size: 15px;
}
.add_btn:hover{
	color: var(--white);
}
.max-w680{
	max-width: 680px;
}
.more_btn{
	flex: 0 0 22px;
	-webkit-flex: 0 0 22px;
	width: 22px;
	height: 22px;
	background-color: var(--gray-color2);
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	border-radius: var(--radius-5);
}
.more_btn>img{
	width: 14px;
	height: 14px;
}
.action_btns,
.action_btns_text{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	gap: 10px;
}
.edit_btn,
.del_btn{
	width: 26px;
	height: 26px;
	line-height: 24px;
	flex: 0 0 26px;
	-webkit-flex: 0 0 26px;
	display: inline-block;
	text-align: center;
	border-radius: var(--radius-5);
}
.edit_btn{
	background-color: var(--primary);
}
.del_btn{
	background-color: var(--red);
}
.action_btns_text .small_btn{
	background-color: var(--primary);
	color: var(--white);
	font-size: 14px;
	border-radius: var(--radius-5);
	padding: 5px 10px;
	min-width: 70px;
}
.form-switch .form-check-input:checked{
	background-color: var(--primary);
	border-color: var(--primary);
}
.form-switch .form-check-label{
	font-weight: 600;
    color: var(--black2);
    font-size: 15px;
    line-height: 16px;
}
.st_active{
	color: #40c10d;
}
.st_deactive{
	color: var(--red);
}
.form-check-input{
	width: 18px;
	height: 18px;
}
.form-check-input:focus{
	box-shadow: none;
	-webkit-box-shadow: none;
}
/*==============================
    1.1 Login/Signup Page
==============================*/
.autoPages{
	overflow: hidden;
	/* background-color: var(--white); */
}
.LeftBlock{
    /* background-image: url('../images/auth-img.png'); */
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px;
    position: relative;
    z-index: 1;
}
.LeftBlock::before{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	/* background: linear-gradient(337deg, rgba(255, 113, 37, 0) 0%, rgb(45 123 239) 100%); */
    z-index: -1;
}
.AuthLogo{
	position: absolute;
    left: 70px;
    top: 30px;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
}
.AuthLogo:hover{
	color: var(--white);
}
.LeftBlock, 
.RightBlock{
    min-height: 100vh;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
}
.RightBlock{
	padding-right: 24px;
}
.authForm{
	border: none;
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 100px;
	background-color: var(--white);
	/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
	border-radius: var(--radius-20);
}
.authForm .auth-header,
.authForm .auth-header+form{
	max-width: 450px;
    margin: 0 auto;
}
.form-group{
	margin-bottom: 20px;
}
.authForm input:not(input[type="checkbox"],input[type="radio"]){
    padding-left: 45px;
	background-color: var(--gray-color);
	border: none;
}
.authForm input:not(input[type="checkbox"],input[type="radio"]):focus{
	background-color: var(--gray-color);
	border: none;
}
.password-toggle input{
	padding-right: 45px;
}
.input-group-prepend{
	position: absolute;
	left: 17px;
    top: 11px;
	z-index: 4;
}
.form-group>label{
	font-weight: 600;
    color: var(--black2);
    font-size: 15px;
    line-height: 16px;
	margin-bottom: 6px;
}
.authForm p>a{
	color: var(--primary);
	text-decoration: underline;
}
.toggle-password{
	position: absolute;
	right: 17px;
	top: 15px;
	z-index: 3;
}
.toggle-password>*{
	position: absolute;
	right: 0;
}
.toggle-password.close-eye .eye-close-icon{
	display: none;
}
.toggle-password.open-eye .eye-open-icon{
	display: none;
}
.password-toggle .form-control.is-invalid, 
.password-toggle .was-validated .form-control:invalid{
	background-position: right calc(2.5em + .1875rem) center;
}
.min-w-200{
	min-width: 200px;
}

/*==============================
    1.2 Sidebar
==============================*/
.main-sidebar{
    position: fixed;
    top: 0;
    height: 100%;
    width: 270px;
    background-color: var(--white);
    z-index: 880;
    left: 0;
	overflow-y: auto;
	transition: width 250ms ease-in-out, left 250ms ease-in-out;
}
.sidebar-mini .main-sidebar{
	width: 65px;
}
.main-sidebar::-webkit-scrollbar{
    width: 8px;
	border-radius: var(--radius-10);
}
.main-sidebar::-webkit-scrollbar-thumb{
    background-color: var(--dark-gray);
	border-radius: var(--radius-10);
}
.main-sidebar::-webkit-scrollbar-track{
    background-color: var(--white);
	border-radius: var(--radius-10);
}
.sidebar-logo{
	padding: 20px 15px;
}
.sidebar-logo>a{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
	transition: all 250ms ease-in-out;
}
.sidebar-logo .small-logo,
.sidebar-mini .sidebar-logo .big-logo{
	display: none;
}
.sidebar-mini .sidebar-logo .small-logo{
	display: block;
}
.sidebar-mini .sidebar-logo{
	padding: 28px 5px 0px;
}
.sidebar-menu>ul{
	padding: 20px 0 30px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    min-height: calc(100vh - 78px);
	gap: 2px;
}
.sidebar-mini .sidebar-menu>ul{
	min-height: calc(100vh - 60px);
}
.sidebar-menu>ul>li{
	display: block;
    margin-left: 14px;
    margin-right: 14px;
}
.sidebar-mini .sidebar-menu>ul>li{
	margin-left: 5px;
    margin-right: 5px;
}
.sidebar-menu>ul>li:last-child{
	margin-top: auto;
}
.sidebar-menu>ul>li>a{
	font-size: 14px;
    text-transform: capitalize;
	color: #A0AEC0;
	display: flex;
	display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    padding: 10px 8px;
    width: 100%;
	font-weight: 500;
	gap: 8px;
	border-radius: var(--radius-5);
}
.sidebar-mini .sidebar-menu>ul>li>a{
	justify-content: center;
	-webkit-justify-content: center;
}
.sidebar-menu>ul>li>a>.side-icon{
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	border-radius: var(--radius-5);
}
.sidebar-menu>ul>li.active>a,
.sidebar-menu>ul>li>a:hover{
	background-color: var(--primary);
	color: var(--white);
}
.sidebar-menu>ul>li.active>a>.side-icon img,
.sidebar-menu>ul>li>a:hover>.side-icon img{
	filter: invert(1) brightness(4);
}
.sidebar-mini .sidebar-menu>ul>li>a>.side-text{
	display: none;
}
/*==============================
    1.3 Dashboard Header
==============================*/
.rightSide{
    margin-left: 270px;
	transition: all 250ms ease-in-out;
	padding-top: 80px;
}
.sidebar-mini .rightSide{
	margin-left: 60px;
}
.main-header{
	position: fixed;
    top: 0;
    width: calc(100% - 270px);
    z-index: 2;
	transition: all 250ms ease-in-out;
}
.sidebar-mini .main-header{
	width: calc(100% - 60px);
}
.main-header>.navbar{
	background-color: var(--white);
	padding: 0 50px 0 20px;
}
.collapse-sidebar>.nav-link{
	padding: 0 6px !important;
    height: 100%;
}
.collapse-sidebar svg{
	width: 28px;
    height: 28px;
}
.main-header ul.navbar-nav{
	flex-direction: row;
	-webkit-flex-direction: row;
	gap: 45px;
}
.main-header ul.navbar-nav li{
	position: relative;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	padding: 28px 0;
}
.main-header ul.navbar-nav li:not(:last-child):after{
	content: '';
	position: absolute;
	right: -23px;
	top: 0;
	width: 1px;
	background-color: var(--gray-400);
	height: 100%;
}
.main-header ul.navbar-nav li svg{
	width: 20px;
	height: 20px;
}
.header_time_format{
	font-size: 24px;
	font-weight: var(--fw-600);
	color: var(--black);
	margin-right: 20px;
}
.welcome_top_main a:hover{
	color: var(--black2);
}
/*==============================
    1.3 Main Dashboard Block
==============================*/
.main-content{
	padding: 25px;
}
.MainBox{
	border: none;
	border-radius: var(--radius-10);
	padding: 24px;
	background-color: var(--white);
}
.mainHeading{
	border-bottom: 1px solid var(--gray-400);
    padding-bottom: 14px;
    margin-bottom: 24px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
	padding-right: 220px;
}
.mainHeading h4{
	color: var(--black2);
}
/* Pricing Section */
.adminDash .MainBox{
	min-height: 100%;
	height: 100%;
}
.adminDash .MainBox .pricing-col{
	height: 100%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.adminDash .MainBox .pricing-col .price-body{
	height: 100%;
	display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	padding-top: 20px;
	gap: 20px;
}
.price-top{
	padding-bottom: 24px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	border-bottom: 1px solid var(--gray-400);
	gap: 10px;
}
.pricing-top-badge{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-items: center;
	-webkit-align-items: center;
	gap: 16px;
}
.pricing-top-badge>span{
	height: 32px;
    width: 32px;
    background: #E3E6FF;
    border-radius: var(--radius-5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.current-subscription{
	align-items: center;
    background-color: var(--gray-color);
    border-radius: var(--radius-5);
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    justify-content: center;
    padding: 8px 12px;
    position: relative;
    color: #5367fe;
    font-weight: 600;
    line-height: 16px;
	font-size: 12px;
}
.features-list{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction: column;
    -webkit-flex-direction: column;
    gap: 24px;
    -webkit-gap: 24px;
	margin: 24px 0 50px;
}
.features-list>li{
    display: flex;
    display: -webkit-flex;
    gap: 10px;
    -webkit-gap: 10px;
}
/* Modal */
.common_modal .modal-content{
	border: none;
	border-radius: var(--radius-10);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	padding: 20px;
	background-color: var(--white);
}
.common_modal .modal-header{
	border-bottom: 1px solid var(--gray-400);
	padding: 0 0 15px;
}
.common_modal .modal-header .btn-close{
	width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    border-radius: 50%;
	margin: 0;
	padding: 0;
	opacity: 1;
	background: var(--body-bg) url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.8" d="M6.35174 5.18749L10.2233 9.10358C10.4753 9.35831 10.4729 9.76784 10.2181 10.0197C9.96338 10.2715 9.55386 10.2692 9.30202 10.0145L5.43033 6.09837L1.51443 9.97014C1.25959 10.222 0.850194 10.2197 0.598356 9.96493C0.3464 9.7102 0.348731 9.30067 0.60357 9.04883L4.51947 5.17706L0.647895 1.26096C0.395939 1.00624 0.39827 0.59671 0.653109 0.344868C0.780052 0.219241 0.94638 0.156715 1.11223 0.157659C1.27807 0.158603 1.44356 0.223017 1.56918 0.350082L5.44076 4.26618L9.35677 0.394405C9.48384 0.268778 9.65005 0.206253 9.81589 0.207197C9.98174 0.20814 10.1472 0.272554 10.2729 0.399619C10.5248 0.654345 10.5225 1.06387 10.2676 1.31571L6.35174 5.18749Z" fill="%231A202C"/></svg>') center/13px auto no-repeat;
}
.common_modal .modal-header .btn-close:focus{
	box-shadow: none;
	-webkit-box-shadow: none;
}
.common_modal .modal-body{
	padding: 20px 0 0;
}
.price_edit_form textarea{
	height: 200px;
}
.richtexteditor{
	min-width: 100% !important;
}
.richtexteditor.rte-modern{
	border-color: var(--gray-color);
	border-radius: var(--radius-5) !important;
}
/*==============================
    1.4 Subscription Plans Page
==============================*/
.dataTable thead th{
	padding: 15px;
	background-color:transparent !important;
    font-weight: var(--fw-600);
	color: var(--black2);
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	text-align: center !important;
	vertical-align: middle;
	font-size: 14px;
}
.dataTable thead th:hover,
.dataTable thead th:focus{
	outline: none !important;
}
.dataTable thead th:first-child,
.dataTable tbody td:first-child{
	border-radius: var(--radius-5) 0 0 var(--radius-5);
}
.dataTable thead th:last-child,
.dataTable tbody td:last-child{
	border-radius: 0 var(--radius-5) var(--radius-5) 0;
}
.dataTable tbody td{
	padding: 15px;
	color: var(--black);
	border-bottom: none;
	text-align: center !important;
	vertical-align: middle;
	font-size: 14px;
}
.dataTable tbody tr:nth-child(odd) td{
	background-color: var(--gray-50) !important;
	color: var(--black2);
}
.dt-layout-row .dt-search{
	position: absolute;
	top: 24px;
	right: 30px;
}
.dt-layout-row .dt-search input{
	padding: 8px;
	height: 40px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><g clip-path="url(%23clip0_403_44)"><path d="M13.8672 13.2383L10.2526 9.68153C11.1991 8.65314 11.7807 7.29308 11.7807 5.79648C11.7803 2.59497 9.14327 0 5.89013 0C2.63699 0 0 2.59497 0 5.79648C0 8.99799 2.63699 11.593 5.89013 11.593C7.29571 11.593 8.58488 11.1068 9.59751 10.2985L13.2261 13.8694C13.4029 14.0435 13.6899 14.0435 13.8668 13.8694C14.044 13.6952 14.044 13.4125 13.8672 13.2383ZM5.89013 10.7011C3.13762 10.7011 0.906279 8.50525 0.906279 5.79648C0.906279 3.0877 3.13762 0.891822 5.89013 0.891822C8.64266 0.891822 10.874 3.0877 10.874 5.79648C10.874 8.50525 8.64266 10.7011 5.89013 10.7011Z" fill="%231E1E1E"/></g><defs><clipPath id="clip0_403_44"><rect width="14" height="14" fill="white"/></clipPath></defs></svg>') !important;
	background-repeat: no-repeat !important;
	background-position: calc(10px) center !important;
    padding-left: 34px;
    max-width: 205px;
	min-width: 205px;
    width: 100% !important;
	background-color: var(--gray-color);
	border: none;
}
.dt-layout-row .dt-search label{
	display: none;
}
.headingRight{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-items: center;
	-webkit-align-items: center;
	gap: 10px;
}
.headingRight .theme-btn2{
	padding: 8px 20px;
	width: auto;
}
.top_search input{
	padding: 8px;
	height: 40px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><g clip-path="url(%23clip0_403_44)"><path d="M13.8672 13.2383L10.2526 9.68153C11.1991 8.65314 11.7807 7.29308 11.7807 5.79648C11.7803 2.59497 9.14327 0 5.89013 0C2.63699 0 0 2.59497 0 5.79648C0 8.99799 2.63699 11.593 5.89013 11.593C7.29571 11.593 8.58488 11.1068 9.59751 10.2985L13.2261 13.8694C13.4029 14.0435 13.6899 14.0435 13.8668 13.8694C14.044 13.6952 14.044 13.4125 13.8672 13.2383ZM5.89013 10.7011C3.13762 10.7011 0.906279 8.50525 0.906279 5.79648C0.906279 3.0877 3.13762 0.891822 5.89013 0.891822C8.64266 0.891822 10.874 3.0877 10.874 5.79648C10.874 8.50525 8.64266 10.7011 5.89013 10.7011Z" fill="%231E1E1E"/></g><defs><clipPath id="clip0_403_44"><rect width="14" height="14" fill="white"/></clipPath></defs></svg>') !important;
	background-repeat: no-repeat !important;
	background-position: calc(10px) center !important;
    padding-left: 34px;
    max-width: 205px;
	min-width: 205px;
    width: 100% !important;
}
.top_select select{
	height: auto;
    padding: 7px;
    line-height: 20px;
    min-height: 40px;
	padding-right: 30px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="14" viewBox="0 0 25 14" fill="none"><g clip-path="url(%23clip0_355_2)"><path d="M12.545 13.5454C12.4017 13.5456 12.2598 13.5174 12.1274 13.4625C11.9951 13.4077 11.8749 13.3272 11.7737 13.2258L0.864626 2.31671C0.438354 1.89041 0.438354 1.20011 0.864626 0.774107C1.2909 0.348207 1.98117 0.347907 2.40717 0.774107L12.545 10.912L22.6828 0.774107C23.109 0.347907 23.7993 0.347907 24.2253 0.774107C24.6513 1.20041 24.6516 1.89071 24.2253 2.31671L13.3162 13.2258C13.2151 13.3272 13.0948 13.4077 12.9625 13.4625C12.8301 13.5174 12.6882 13.5456 12.545 13.5454Z" fill="%231E1E1E"/></g><defs><clipPath id="clip0_355_2"><rect width="14" height="25" fill="white" transform="matrix(0 -1 1 0 0 14)"/></clipPath></defs></svg>');
	background-repeat: no-repeat;
	background-position: calc(100% - 8px) center;
	background-size: 12px;
	appearance: none;
	-moz-appearance: none;
	min-width: 205px;
}
.mainBottomBlock .dt-layout-row:last-child{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	/* margin-top: 30px; */
}
.mainBottomBlock .dt-layout-row:last-child .dt-info{
	color: var(--black2);
	font-size: 14px;
}
.dt-paging nav{
	display: flex;
	display: -webkit-flex;
	gap: 5px;
}
.dt-paging nav .dt-paging-button{
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-gray);
	border-radius: 50%;
	font-size: 14px;
	padding: 0;
	color: var(--black2);
	background-color: var(--dark-gray);
}
.dt-paging nav .dt-paging-button.first,
.dt-paging nav .dt-paging-button.last{
	display: none;
}
.dt-paging nav .dt-paging-button.previous,
.dt-paging nav .dt-paging-button.next{
	font-size: 20px;
}
.dt-paging nav .dt-paging-button.current{
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.subs_plan_table tbody td:last-child span{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	gap: 5px;
}
.plan_detail_list>li{
	display: block;
	text-align: center;
	color: var(--black2);
	margin-bottom: 15px;
}
.plan_detail_list>li:last-child{
	margin-bottom: 0;
}
.group-listTable thead th:first-child{
	padding: 15px !important;
}
.group-listTable thead th:first-child .dt-column-order{
	display: none;
}

.pagination-wrapper{
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	gap: 10px;
}
.pagination-wrapper .pagination-container .pagination-nav{
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.pagination-wrapper .pagination-nav .pagination-link,
.pagination-wrapper .pagination-nav .pagination-button{
	width: 36px;
	height: 36px;
}
.pagination-wrapper .pagination-nav .pagination-link>*{
	width: 100%;
	padding: 5px;
	height: 36px;
	background-color: transparent !important;
	color: var(--gray-600);
	font-size: 14px;
	border: 1px solid var(--gray-color);
}
.pagination-wrapper .pagination-nav .pagination-button.active{
	background-color: var(--primary) !important;
	color: #fff;
}
/*==============================
    1.5 Group List Page
==============================*/
.green_btn{
	background-color: #198754;
}
.modal-tab .nav-tabs>li>.nav-link{
	border: none;
	color: var(--black2);
	margin: 0 0 -1px;
	font-weight: var(--fw-500);
	border: 1px solid transparent;
	border-bottom: none !important;
}
.modal-tab .nav-tabs>li>.nav-link.active{
	border: 1px solid #dee2e6;
}
.modal-tab .tab-content{
	padding: 20px 0;
}
.modal-tab .tab-content .form-group input[type="file"]{
	font-size: 15px;
    font-family: var(--font-inter);
    font-weight: var(--fw-400);
    padding: 10px 16px;
    width: 100%;
    color: var(--black2);
    border-radius: var(--radius-5);
    margin: 0;
    background: var(--white);
	border: 1px solid var(--dark-gray);
}
.modal-tab .tab-content .form-group input[type="file"]:focus{
	box-shadow: none;
	-webkit-box-shadow: none;
}
.SelectStyle select{
	padding-right: 40px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="14" viewBox="0 0 25 14" fill="none"><g clip-path="url(%23clip0_355_2)"><path d="M12.545 13.5454C12.4017 13.5456 12.2598 13.5174 12.1274 13.4625C11.9951 13.4077 11.8749 13.3272 11.7737 13.2258L0.864626 2.31671C0.438354 1.89041 0.438354 1.20011 0.864626 0.774107C1.2909 0.348207 1.98117 0.347907 2.40717 0.774107L12.545 10.912L22.6828 0.774107C23.109 0.347907 23.7993 0.347907 24.2253 0.774107C24.6513 1.20041 24.6516 1.89071 24.2253 2.31671L13.3162 13.2258C13.2151 13.3272 13.0948 13.4077 12.9625 13.4625C12.8301 13.5174 12.6882 13.5456 12.545 13.5454Z" fill="%231E1E1E"/></g><defs><clipPath id="clip0_355_2"><rect width="14" height="25" fill="white" transform="matrix(0 -1 1 0 0 14)"/></clipPath></defs></svg>');
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
	background-size: 12px;
	appearance: none;
	-moz-appearance: none;
}
.clone_group{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	gap: 15px;
}
.clone_group_input{
	flex: 0 0 calc(100% - 85px);
	-webkit-flex: 0 0 calc(100% - 85px);
	max-width: calc(100% - 85px);
}
.clone_group_trash{
	flex: 0 0 70px;
	-webkit-flex: 0 0 70px;
	max-width: 70px;
	text-align: right;
	padding-top: 24px;
}
.clone_group_trash>*{
    flex: 0 0 70px;
    -webkit-flex: 0 0 70px;
    display: inline-block;
    text-align: center;
    border-radius: var(--radius-5);
	background-color: var(--red);
	border: none;
	font-size: 14px;
	color: var(--white);
	padding: 13px;
}
.clone_group_input .error{
	margin-bottom: 0;
}
.clone_top{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
}
.clone_plus_btn{
    display: inline-block;
    text-align: center;
    border-radius: var(--radius-5);
	background-color: var(--primary);
	border: none;
	color: var(--white);
	font-size: 14px;
	padding: 5px 10px;
}
.clone_group .clone_group_input .form-group{
	position: relative;
}
.clone_group .clone_group_input .searchdropdown{
	top: 72px;
}

/*==============================
    1.5 Profile Page
==============================*/
.blankSpace{
	height: 20px;
    display: block;
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
}
.persoanl_data label{
    font-weight: var(--fw-600);
    display: block;
    position: relative;
    margin-bottom: 0;
	color: var(--black);
	text-transform: capitalize;
	font-size: 14px;
}
.persoanl_data label::after{
	content: ':';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--fw-800);
}
.form-control:disabled,
.form-control[readonly]{
	background-color: transparent;
}
.error{
	color: red;
	font-size: 14px;
}
.error_editor_column {
	color: red;
	font-size: 14px;
}
.persoanl_data .theme-btn{
	max-width: 180px;
}
.persoanl_data input,
.persoanl_data input:disabled,
.persoanl_data input[readonly],
.persoanl_data .SelectStyle select,
.persoanl_data input:focus{
	background-color: var(--gray-color);
	border: none;
}
.persoanl_data h5{
	border-top: 1px solid var(--gray-400);
	padding-top: 30px;
	margin-top: 30px;
}

.searchdropdown{
	position: absolute;
	top: 40px;
	z-index: 3;
	width: 100%;
	margin: 0 !important;
}
.searchdropdown ul{
	background: #fff;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	display: block;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	-webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 5px;
	padding: 8px;
}



.termstervice-content-inner h2 {
    font-size: var(--heading-4);
	line-height: 34px;
}
.termstervice-content-inner h3{
font-size: var(--heading-5);
line-height: 34px;
}
.termstervice-content-inner ul {
    padding-left: 20px;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}