/*****************************************************************
1.  Homepage
    
******************************************************************/

/*==============================
    Poppins Google Font
==============================*/
@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');
/*==============================
    Default Style
==============================*/
:root{
	--primary: #2d7bef;
	--secondary: #0713C4;
	--body-bg: #F6F5F5;
	--white: #ffffff;
	--red: #FF4646;
	--main-black: #000000;
	--black: #212121;
	--black2: #575757;
    --dark-gray: #D7DDE6;
    --dark-gray2: #807E7E;
    --gray-color: #e3e3e3;
    --gray-color2: #F7F5F0;
    --gray-color3: #f9f9f9;

	--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: 15px;
	--font-poppins: "Poppins", sans-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-poppins);
    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(--main-black);
}
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-700);
}
h4{
	font-size: var(--heading-4);
	line-height: 32px;
	font-weight: var(--fw-600);
}
h5{
	font-size: var(--heading-5);
	line-height: 26px;
	font-weight: var(--fw-500);
}
h6{
	font-size: var(--heading-6);
	line-height: 22px;
	font-weight: var(--fw-500);
}
p{
	font-family: var(--font-poppins);
	font-size: var(--body-font-size);
	font-weight: var(--fw-400);
	line-height: 28px;
}
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: 15px;
	font-family: var(--font-poppins);
	font-weight: var(--fw-400);
    padding: 10px 16px;
    width: 100%;
    color: var(--black2);
    border: 1px solid var(--gray-color);
	height: 50px;
    border-radius: var(--radius-5) !important;
	margin: 0 !important;
    background: transparent;
}
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: var(--gray-color);
}
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;
}
/*==============================
    Global Elements CSS
==============================*/
.btn:focus{
	box-shadow: none;
}
.theme-color{
	color: var(--secondary);
}
.theme-btn,
.theme-btn-red,
.theme-btn-gray{
	background: var(--primary);
    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;
    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{
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	-webkit-flex: 0 0 40px;
	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: 50%;
}
.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;
	margin-top: 0;
}
.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;
}
.authForm{
	border: none;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
	background-color: var(--white);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.form-group{
	margin-bottom: 20px;
}
.authForm input:not(input[type="checkbox"],input[type="radio"]){
    padding-left: 45px;
}
.password-toggle input{
	padding-right: 45px;
}
.input-group-prepend{
	position: absolute;
	left: 17px;
    top: 14px;
	z-index: 4;
}
.form-group>label{
	font-weight: 600;
    color: var(--main-black);
    font-size: 15px;
    line-height: 16px;
	margin-bottom: 6px;
}
.authForm p>a{
	color: var(--primary);
}
.authForm p>a:hover{
	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;
}
/* .description_editor rte-content,
.description_editor rte-content * {
  color: white !important;
  background-color: #333 !important;
} */

/*==============================
    1.2 Sidebar
==============================*/
.main-sidebar{
    position: fixed;
    top: 0;
    height: 100%;
    width: 270px;
    background-color: var(--white);
    z-index: 880;
    left: 0;
    border-radius: 0 var(--radius-10) var(--radius-10) 0;
    box-shadow: 0 .5rem 1rem 0 rgba(44, 51, 73, .1);
    -webkit-box-shadow: 0 .5rem 1rem 0 rgba(44, 51, 73, .1);
	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>a{
	color: var(--primary);
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
	font-size: 30px;
	line-height: 32px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	padding: 15px;
}
.sidebar-mini .sidebar-logo>a{
	font-size: 16px;
	word-break: break-all;
	line-height: 18px;
    text-align: center;
	padding: 5px;
}
.sidebar-menu>ul{
	padding: 0 0 30px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    min-height: calc(100vh - 62px);
}
.sidebar-mini .sidebar-menu>ul{
	min-height: calc(100vh - 46px);
}
.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;
    margin-left: 14px;
    margin-right: 14px;
}
.sidebar-menu>ul>li>a{
	font-size: 15px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--gray-color);
	color: var(--main-black);
	display: flex;
	display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    padding: 12px 0;
    width: 100%;
	font-weight: 500;
	gap: 10px;
}
.sidebar-mini .sidebar-menu>ul>li>a{
	justify-content: center;
	-webkit-justify-content: center;
}
.sidebar-menu>ul>li.active>a{
	color: var(--primary);
}
.sidebar-menu>ul>li>a>.side-icon{
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	background-color: var(--dark-gray);
	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>.side-icon{
	background-color: var(--primary);
}
.sidebar-menu>ul>li.active>a>.side-icon img{
	filter: invert(1) brightness(2);
}
.sidebar-mini .sidebar-menu>ul>li>a>.side-text{
	display: none;
}
.sidebar-menu>ul>li:last-child>a{
	border-bottom: none;
}
.sidebar-menu>ul>li:nth-last-of-type(2){
    margin-bottom: 20px;
}
.sidebar-menu>ul>li:last-child>a{
	color: var(--white);
	text-align: center;
	justify-content: center;
	-webkit-justify-content: center;
	padding: 13px 26px;
	box-shadow: 4px 6px 15px rgba(104, 38, 3, 0.2);
	-webkit-box-shadow: 4px 6px 15px rgba(104, 38, 3, 0.2);
}
.sidebar-mini .sidebar-menu>ul>li:last-child>a{
	padding: 5px 15px;
}
.sidebar-menu>ul>li:last-child>a .lastside-icon{
	display: none;
}
.sidebar-mini .sidebar-menu>ul>li:last-child>a .lastside-icon{
	display: block;
}
/*==============================
    1.3 Dashboard Header
==============================*/
.rightSide{
    margin-left: 270px;
	transition: all 350ms ease-in-out;
}
.sidebar-mini .rightSide{
	margin-left: 60px;
}
.main-header{
	padding: 10px 25px;
}
.main-header>.navbar{
	background-color: var(--white);
    border-radius: var(--radius-10);
    box-shadow: 0 .5rem 1rem 0 rgba(44, 51, 73, .1);
    -webkit-box-shadow: 0 .5rem 1rem 0 rgba(44, 51, 73, .1);
	padding: .5rem 1rem;
	min-height: 70px;
}
.collapse-sidebar>.nav-link{
	padding: 0 15px !important;
    height: 100%;
}
.collapse-sidebar svg{
	width: 28px;
    height: 28px;
}
.main-header ul.navbar-nav{
	flex-direction: row;
	-webkit-flex-direction: row;
	gap: 30px;
}
.main-header ul.navbar-nav li{
	position: relative;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.main-header ul.navbar-nav li:not(:last-child):after{
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	width: 1px;
	background-color: var(--gray-color);
	height: 30px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.header_time_format{
	font-size: 18px;
	font-weight: var(--fw-600);
	color: var(--main-black);
}
.welcome_top_main>a{
	display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
	color: var(--black2);
	padding: 0 10px 0 0 !important;
}
.welcome_top_main>a:hover,
.welcome_top_main>a:focus{
	color: var(--black2);
}
.welcome_top_main .dropdown-toggle::after{
	display: none;
}
.user-img-radious-style{
	background: var(--gray-color);
	width: 38px;
    height: 38px;
	border-radius: 100%;
}
.welcome_top_sidebar{
    margin-top: -8px;
    line-height: normal;
    margin-left: 6px;
	color: var(--main-black);
}
.welcome_top_sidebar span{
    font-weight: var(--fw-500);
    font-size: 12px;
}
.welcome_top_sidebar p{
    line-height: 14px;
	font-size: 14px;
	font-weight: var(--fw-600);
}
.welcome_top_main .dropdown-menu{
	position: absolute;
	left: inherit;
	right: 0;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: none;
    width: 200px;
	padding: 0;
	border-radius: var(--radius-5);
	overflow: hidden;
	background-color: var(--white);
}
.welcome_top_main .dropdown-menu a{
	padding: 12px;
    font-weight: 500;
    font-size: 14px;
	color: var(--black2);
}
.welcome_top_main .dropdown-menu .dropdown-divider{
	margin: 0;
}
.welcome_top_main .dropdown-menu a:hover,
.welcome_top_main .dropdown-menu a:focus,
.welcome_top_main .dropdown-menu a:active,
.welcome_top_main .dropdown-menu a.active{
	background-color: var(--primary);
	color: var(--white);
}
.switch{
	position: relative;
	display: inline-block;
	width: 65px;
	height: 32px;
  }
.switch input{
	opacity: 0;
	width: 0;
	height: 0;
}
.switch-toggle{
	position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-gray);
    transition: 0.4s;
    border-radius: 34px;
    padding: 3px 4px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
	z-index: 1;
	border: 1px solid var(--dark-gray);
}
.switch-toggle::after{
	content: '';
	position: absolute;
	left: 4px;
	top: 3px;
	width: 24px;
	height: 24px;
	background-color: var(--white);
	border-radius: 50%;
	z-index: -1;
	transition: all 300ms ease-in-out;
}
.dark-mode .switch-toggle::after{
	left: 35px;
	background-color: var(--dark-gray);
}
.switch-toggle>span{
	width: 24px;
    height: 24px;
    text-align: center;
    line-height: 22px;
}
#loader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1F2630;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.spinner{
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
}
@keyframes spin{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/*==============================
    1.3 Main Dashboard Block
==============================*/
.main-content{
	padding: 10px 25px 20px;
}
.MainBox{
	border: none;
	border-radius: var(--radius-10);
	box-shadow: 0 .5rem 1rem 0 rgba(44, 51, 73, .1);
	-webkit-box-shadow: 0 .5rem 1rem 0 rgba(44, 51, 73, .1);
	padding: 24px 30px 30px;
	background-color: var(--white);
}
.mainHeading{
	border-bottom: 1px solid var(--gray-color);
    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 h3{
	color: var(--secondary);
}
/* Pricing Section */
.pricing-col{
	background-color: var(--dark-gray);
	border-radius: var(--radius-10);
	padding: 30px;
	min-height: 100%;
	height: 100%;
	display: flex;
	display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.price-top{
	padding-bottom: 20px;
	position: relative;
}
.price-top::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(215,221,230,0.8015581232492998) 0%, rgba(207, 207, 207,1) 50%, rgba(215,221,230,0.8015581232492998) 100%);
}
.pricing-top-badge{
	margin-bottom: 20px;
}
.pricing-top-badge span{
	border: 1px solid var(--black2);
	color: var(--black2);
    padding: 6px 20px 4px;
    border-radius: 40px;
    font-size: 12px;
	line-height: 18px;
	font-weight: 600;
    display: inline-block;
}
.price-top-block sub{
	font-size: 14px;
	bottom: 1px;
	font-weight: 400;
}
.features-list{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction: column;
    -webkit-flex-direction: column;
    gap: 18px;
    -webkit-gap: 18px;
}
.features-list>li{
    display: flex;
    display: -webkit-flex;
    gap: 10px;
    -webkit-gap: 10px;
}
.pricing-col .price-body{
	padding: 20px 0 0;
	height: 100%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    gap: 20px;
}
/* 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-color);
	padding: 0 0 15px;
}
.common_modal .modal-header .btn-close{
	width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    border-radius: var(--radius-5);
	margin: 0;
	padding: 0;
	opacity: 0.8;
    background-size: 12px;
	background: var(--dark-gray2) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em 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: var(--dark-gray) !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;
}
.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;
}
.dataTable tbody tr:nth-child(even) td{
	background-color: var(--dark-gray) !important;
	color: var(--black);
}
.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;
}
.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;
}
/*==============================
    1.5 Group List Page
==============================*/
.modal-tab .nav-tabs{
	background-color: var(--dark-gray);
	width: max-content;
	border-radius: var(--radius-5) var(--radius-5) 0 0;
	border: none;
	padding: 10px;
}
.modal-tab .nav-tabs>li>.nav-link{
	border: none;
	color: var(--black2);
	margin: 0;
	font-weight: var(--fw-500);
}
.modal-tab .nav-tabs>li>.nav-link.active{
	background-color: var(--primary);
	color: var(--white);
	border-radius: var(--radius-5);
}
.modal-tab .tab-content{
	background-color: var(--dark-gray);
	border-radius: 0 0 var(--radius-5) var(--radius-5);
	padding: 20px 10px;
}
.modal-tab .tab-content .form-group input[type="file"]{
	font-size: 15px;
    font-family: var(--font-poppins);
    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% - 65px);
	-webkit-flex: 0 0 calc(100% - 65px);
	max-width: calc(100% - 65px);
}
.clone_group_trash{
	flex: 0 0 50px;
	-webkit-flex: 0 0 50px;
	max-width: 50px;
	text-align: right;
	padding-top: 24px;
}
.clone_group_trash>*{
	width: 50px;
    height: 50px;
    line-height: 48px;
    flex: 0 0 50px;
    -webkit-flex: 0 0 50px;
    display: inline-block;
    text-align: center;
    border-radius: var(--radius-5);
	background-color: var(--red);
	border: none;
}
.clone_group_trash>*>img{
	width: 20px;
}
.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{
	width: 50px;
    height: 50px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    border-radius: var(--radius-5);
	background-color: var(--primary);
	border: none;
	color: var(--white);
}

.clone_group .clone_group_input .form-group{
	position: relative;
}

.clone_group .clone_group_input .searchdropdown{
	top: 72px;
}


/*==============================
    1.5 Profile Page
==============================*/
.author-box{
    display: flex;
    display: -webkit-flex;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-color);
}
.author-box .author-box-picture{
    background-color: var(--gray-color);
	width: 100px;
	border-radius: 50%;
}
.author-box .profileName{
    font-size: 18px;
    font-weight: var(--fw-600);
	color: var(--black2);
}
.profile_small_header{
	padding: 10px 15px;
	border-bottom: 1px solid var(--gray-color);
}

.persoanl_data>.row>.col-md-6:first-child .profile_small_header{
	padding-left: 0;
}
.persoanl_data>.row>.col-md-6:first-child .profile_small_header,
.persoanl_data>.row>.col-md-6:first-child .row{
	padding-right: 60px;
}
.persoanl_data>.row>.col-md-6:last-child .profile_small_header,
.persoanl_data>.row>.col-md-6:last-child .row{
	padding-left: 60px;
}
.persoanl_data>.row>.col-md-6 .row{
	padding-top: 30px;
}
.persoanl_data>.row>.col-md-6:first-child .row{
	position: relative;
}
.persoanl_data>.row>.col-md-6:first-child .row::after{
	content: '';
	position: absolute;
	right: 14px;
	top: 30px;
	width: 1px;
	height: calc(100% - 30px);
	background-color: var(--gray-color);
}

.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;
}
.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;
}
.setting_page .theme-btn{
	max-width: 180px;
}

.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;
}
.coin-item{
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 5px;
}
.MainBox .pagination-wrapper{
	margin: 0;
}
.sidebar-logo a svg {
    height: auto;
    max-width: 180px;
    width: 100%;
}




.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;
}

.common_modal .modal-content > .modal-header {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -20px;
    background: #3370b8;
    padding: 20px;
    border-radius: 9px 10px 0 0;
    color: #fff;
}
.common_modal .modal-content > .modal-header h5 {
    color: #fff;
}
.common_modal .modal-header .btn-close {
    background-color: #4789d6;
}
.common_modal .modal-body.termstervice-content {
    height: 50vh;
    overflow: hidden;
    overflow-y: auto;
}

li.guide-link a svg {
    height: auto;
    width: 24px;
}

