/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap'); */
:root {
  --dcp-primary-color: #5149d3;
  --dcp-accent-color: #fc681e;
  --dcp-secondary-color: #ebeaff;
  --dcp-light-text-color: #ffffff;
  --dcp-dark-text-color: #36335b;
  --dcp-page-bg-color: #ffffff;
  --dcp-black: #000;
  --dcp-font-style-1: "Roboto", sans-serif;
  --dcp-font-style-2: "Roboto", sans-serif;
  --dcp-critical-color:  #FF4949; /*New*/
  --dcp-success-color: #58BD1A; /*New*/
  --dcp-info-color: #30C7F3;/*New*/
  --dcp-warning-color: #ffc107;/*New*/
  --dcp-scheduled-color: #826bff;/*New*/
}
@media only screen and (min-width: 767px) {
  :root {
    --dcp-font-xxl: 46px;
    --dcp-font-xl: 38px;
    --dcp-font-lg: 28px;
    --dcp-font-reg: calc(var(--dcp-font-lg) - 6px);
    --dcp-font-md: calc(var(--dcp-font-sm) + 2px);
    --dcp-font-sm: 16px;
    --dcp-font-xsm: 14px;
    --dcp-font-xxsm: calc(var(--dcp-font-xsm) - 2px);
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --dcp-font-xxl: 30px;
    --dcp-font-xl: 28px;
    --dcp-font-lg: 22px;
    --dcp-font-reg: calc(var(--dcp-font-lg) - 4px);
    --dcp-font-md: calc(var(--dcp-font-sm) + 2px);
    --dcp-font-sm: 14px;
    --dcp-font-xsm: 12px;
    --dcp-font-xxsm: calc(var(--dcp-font-xsm) - 2px);
  }
}
/* ============================================
	Golobal Css Theme Widget Start 
=============================================== */
/* .dcp-subtext{
	width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
} */
body{
	margin: 0;
	background-color: var(--dcp-page-bg-color);
}
a {
    color: #337ab7;
    text-decoration: none;
}
 
[data-dcp-element-type="html"]{
    background-color: var(--dcp-page-bg-color);
}
.dcp-items-center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.dcp-inline-block{
	display: inline-block;
}
.dcp-flex {
    display: flex;
}
.dcp-justify-center{
	justify-content: center;
}
.dcp-justify-between{
	justify-content: space-between;
}
.dcp-align-center{
	align-items: center;
}
.dcp-flex-column{
	flex-direction: column;
}
.dcp-overlay-section{
	position: relative;
}
.dcp-widget-single > :first-child {
	width: 100%;
	position: relative !important;
}
.dcp-widget-single {
	padding: 8px 0;
}
.dcp-menu-listing .dropdown-toggle::after{
	display: none;
}
.dcp-flex-col {
	display: flex;
	flex-wrap: wrap;
	padding-left: -10px;
	padding-right: -10px;
}
.dcp-flex-col .dcp-widget-single {
	padding-left: 10px;
	padding-right: 10px;
}
.dcp-tw-col-2 {
	display: flex;
	flex-wrap: wrap;
}
.dcp-tw-col-2 .dcp-widget-single {
	width: 16.666667%;
	flex: 0 0 auto;
}
.dcp-tw-col-6 {
	display: flex;
	flex-wrap: wrap;
}
.dcp-tw-col-6 .dcp-widget-single {
	width: 50%;
	flex: 0 0 auto;
}
.dcp-tw-col-6 .dcp-widget-single:nth-child(2n) {
	display: flex;
	justify-content: flex-end;
}
.dcp-p0{
	padding: 0;
}
.dcp-w100{
	width:100%;	
}
.dcp-lh1{
	line-height:1;
}
.dcp-lh15{
	line-height:1.5;
}
.dcp-lh2{
	line-height:2;
}
.dcp-h100{
	height:100%;
}
.dcp-w100{
	width:100%;
}
.dcp-mt15{
	margin-top:15px;
}
.dcp-mt10{
	margin-top:10px;
}
.dcp-mt50{
	margin-top:50px;
}
.dcp-mb0{
	margin-bottom: 0;
}
.dcp-mb80{
	margin-bottom:80px;
}
.dcp-mb30{
	margin-bottom:30px;
}
.dcp-mt80{
	margin-top:80px;
}
/* Line Height class Start */
.dcp-lh-normal{
	line-height: 1;	
}
.dcp-lh-md{
	line-height: 1.2;	
}
.dcp-lh-reg{
	line-height: 1.3;	
}
.dcp-lh-lg{
	line-height: 1.4;	
}
.dcp-lh-xl{
	line-height: 1.5;
}
/* Line Height class End */
/* Theme font border radius Start */
.dcp-tw-radius{
	border-radius: 5px;
}
.dcp-tw-radius-md{
	border-radius: 10px;
}
.dcp-tw-rounded{
	border-radius: 50%;
}
.dcp-radius-150{
	border-radius: 150px;
}
/* Theme font border radius End */
/* Theme font weight Start */
.dcp-font-w800{
	font-weight: 800;
}
.dcp-font-w700{
	font-weight: 700;
}
.dcp-font-w600{
	font-weight: 600;
}
.dcp-font-w500{
	font-weight: 500;
}
.dcp-font-w400{
	font-weight: 400;
}
.dcp-text-center{
	text-align: center;
}
.dcp-text-start{
	text-align: start;
}
.dcp-text-end{
	text-align: end;
}
/* Theme font weight End */
/* Theme font family start*/
.dcp-font-style-1{
	font-family: var(--dcp-font-style-1);
}
.dcp-font-style-2{
	font-family: var(--dcp-font-style-2);
}
/* Theme font family End*/
/* Theme color class background start*/
.dcp-bg-white{
	background-color: #fff;
}
.dcp-bg-black{
	background-color: var(--dcp-black);
}
.dcp-tw-page-bg-color{
	background-color: var(--dcp-page-bg-color);
}
.dcp-primary-bg-color{
	background-color: var(--dcp-primary-color);
}
.dcp-accent-bg-color{
	background-color: var(--dcp-accent-color);
}
.dcp-secondary-bg-color{
	background-color: var(--dcp-secondary-color);
}
.dcp-light-bg-color{
	background-color: var(--dcp-light-text-color);
}
.dcp-dark-bg-color{
	background-color: var(--dcp-dark-text-color);
}
/* Theme color class background end*/
/* Theme color class Text start*/
.dcp-tw-light-text{	
	color: var(--dcp-light-text-color);
}
.dcp-tw-primary-color{
	color: var(--dcp-primary-color);
}
.dcp-tw-accent-color{
	color: var(--dcp-accent-color);
}
.dcp-tw-dark-color{
	color: var(--dcp-dark-text-color);
}
.dcp-tw-secondary-color{
	color: var(--dcp-secondary-color);
}
.dcp-tw-page-color{
	color: var(--dcp-page-bg-color);
}
.dcp-tw-black-color{
	color: var(--dcp-black);
}
.dcp-tw-critical-color{
	color: var(--dcp-critical-color);
}
/* Theme color class Text End */
/* Theme color class border start*/
.dcp-border-primary-color{
	border-color: var(--dcp-primary-color);
}
.dcp-border-secondary-color{
	border-color: var(--dcp-secondary-color);
}
.dcp-border-accent-color{
	border-color: var(--dcp-accent-color);
}
.dcp-border-dark-color{
	border-color: var(--dcp-dark-text-color);
}
.dcp-border-light-color{
	border-color: var(--dcp-light-text-color);
}
.dcp-border-page-color{
	border-color: var(--dcp-page-bg-color);
}
.dcp-border-black-color{
	border-color: var(--dcp-black);
}
.dcp-border-opacity-20{
	border: 1px solid rgba(0,0,0, 0.2);
}
.dcp-border-light-20{
	border: 1px solid var(--dcp-secondary-color);
} 
.dcp-border-right-opacity-30{
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.dcp-light-border-right-opacity-30{
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}
/* Theme Font Size class Start */
.dcp-font-xxl{
	font-size: var(--dcp-font-xxl);
}
.dcp-font-xl{
	font-size: var(--dcp-font-xl);
}
.dcp-font-lg{
	font-size:var(--dcp-font-lg);
}
.dcp-font-md{
	font-size: var(--dcp-font-md);
}
.dcp-font-reg{
	font-size: var(--dcp-font-reg);
}
.dcp-font-sm{
	font-size: var(--dcp-font-sm);
}
.dcp-font-xsm{
	font-size: var(--dcp-font-xsm);
}
.dcp-font-xxsm{
	font-size: var(--dcp-font-xxsm);
}
/* Theme Font Size class End */
/* Opacity class Start  */
 .opacity-0{
	opacity: 0;
 }
 .opacity-01{
	opacity: 0.1;
 }
 .opacity-02{
	opacity: 0.2;
 }
 .opacity-03{
	opacity: 0.3;
 }
 .opacity-04{
	opacity: 0.4;
 }
 .opacity-05{
	opacity: 0.5;
 }
 .opacity-06{
	opacity: 0.6;
 }
 .opacity-07{
	opacity: 0.7;
 }
 .opacity-08{
	opacity: 0.8;
 }
 .opacity-09{
	opacity: 0.9;
 }
 .opacity-1{
	opacity: 1;
 }
/* Opacity class End  */
/* ============================================
	Golobal Css Theme Widget End
=============================================== */
.saglus-editor .dcp-tw-head-1,
.dcp-tw-head-1{
	color: var(--dcp-dark-text-color);
	font-size: var(--dcp-font-xl);
	line-height: 1.2;
	font-family: var(--dcp-font-style-1);
	font-weight: 400;
	display: inline-block;
}	
.saglus-editor .dcp-tw-head-2,
.dcp-tw-head-2{
	color: var(--dcp-dark-text-color);
	font-size: var(--dcp-font-lg);
	line-height:  1.2; 
	font-family: var(--dcp-font-style-1);
	font-weight: 400;
	display: inline-block;
}
.saglus-editor .dcp-tw-head-3,
.dcp-tw-head-3{
	color: var(--dcp-dark-text-color);
	font-size: var(--dcp-font-md);
	line-height: 1.2;
	font-family: var(--dcp-font-style-1);
	font-weight: 400;
	display: inline-block;
}
/* paragraph tab css start */
.saglus-editor .dcp-tw-para-1,
.dcp-tw-para-1{
	font-size: var(--dcp-font-md);
	line-height: 1.2;
	font-family: var(--dcp-font-style-2);
	color: var(--dcp-dark-text-color);
	font-weight: 400;
	display: inline-block;
}
.saglus-editor .dcp-tw-para-2,
.dcp-tw-para-2{
	font-size: var(--dcp-font-sm);
	line-height: 1.2;
	font-family: var(--dcp-font-style-2);
	color: var(--dcp-dark-text-color);
	font-weight: 400;
	display: inline-block;
}
.saglus-editor .dcp-tw-para-3,
.dcp-tw-para-3{
	font-size: var(--dcp-font-xsm);
	/* line-height: 21px; */
	line-height: 1.2;
	font-family: var(--dcp-font-style-2);
	color: var(--dcp-dark-text-color);
	font-weight: 400;
	display: inline-block;
}
/* paragraph tab css End */
/* images tab css start */
.dcp-tw-images_gallery {
    padding: 0px 0 20px;
    text-align: center;
}
.dcp-tw-images-content {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.dcp-tw-images-content .dcp-tw-images-items {
    flex: 0 0 auto;
    width: 33.33%;
    padding-right: 10px;
    padding-left: 10px;
	height: 120px;
}
/* images tab css end */
/* icons tab css start */
.dcp-tw-search-bar {
	width: 100%;
	margin: auto;
	display: flex;
	align-self: center;
	justify-content: center;
	padding: 7px 10px;
	border-radius: 5px;
	border: 1px solid #D6D9E7;
	background: #FFF;
}
.dcp-tw-search-bar .dcp-tw-search-bar-text{
	background: transparent;
	flex: 1;
	border: 0px;
	outline: none;
	color: #8D879F;
	font-size: var(--dcp-font-sm);	
	font-family: var(--dcp-font-style-2);
}
.dcp-tw-search-bar .dcp-tw-search-bar-text::placeholder{
	color: #8D879F;
}
.dcp-tw-search-bar .dcp-tw-search-btn{
	border: 0px;
	background: transparent;
	cursor: pointer;
	color: rgba(141, 135, 159, 1);
}
.dcp-tw-grid-container {
	display: grid;
	grid-template-columns: auto auto auto auto auto auto auto;
	gap: 10px;
}
.dcp-tw-grid-item {
	padding: 10px;
	font-size: var(--dcp-font-reg);
	text-align: center;
}
.dcp-tw-grid-item .dcp-tw-grid-link{
	color:  var(--dcp-dark-text-color);
}
/* icons tab css end */
/* Button Tab Style Start */
/* .dcp-read-more {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px 20px;
    font-size: var(--dcp-font-xsm);
    font-weight: 400;
    color: var(--dcp-accent-color);
    border-radius: 5px;
    transition: 0.5s;
	font-family: var(--dcp-font-style-1);
} */
.saglus-editor .dcp-tw-btn,
.dcp-tw-btn {
    display: inline-flex;
    padding: 7px 29px;
    justify-content: center;
    align-items: center;
	font-family: var(--dcp-font-style-1);
	font-size: var(--dcp-font-sm);
	font-weight: 400;
	text-decoration: none;
	box-sizing: border-box;
	white-space: wrap;
	border-radius:0px;
	border-width: 1px;
    border-style: solid;
	border-color: transparent;
}
.saglus-editor .dcp-tw-btn:hover,
.dcp-tw-btn:hover{
	text-decoration: none;
}
.dcp-tw-btn.dcp-tw-accent-color,
.dcp-tw-btn.dcp-tw-accent-color:hover{
	color: var(--dcp-accent-color);
}
.saglus-editor .dcp-tw-theme-btn,
.dcp-tw-theme-btn{
	background: var(--dcp-accent-color);
	color: var(--dcp-light-text-color);
	border-color: var(--dcp-accent-color);
}
.saglus-editor .dcp-tw-theme-btn:hover,
.dcp-tw-theme-btn:hover{
	background: var(--dcp-accent-color);
	color: var(--dcp-light-text-color);
	
}
.saglus-editor .dcp-tw-btn.dcp-tw-btn-radius,
.dcp-tw-btn.dcp-tw-btn-radius{
	border-radius: 25px;
}
.saglus-editor .dcp-tw-theme-btn-outline,
.dcp-tw-theme-btn-outline{
	color: var(--dcp-accent-color);
	border: 1px solid var(--dcp-accent-color);
}
.dcp-tw-btn.dcp-tw-theme-lg-btn{
	padding: 18px 50px;
	font-size:var(--dcp-font-lg);
	font-weight:700;
} 

.dcp-tw-btn.dcp-tw-theme-md-btn{
	padding: 15px 30px;
	font-size:var(--dcp-font-sm);
	font-weight:600;
}
.dcp-tw-btn.dcp-tw-theme-sm-btn{
	padding: 5px 15px;
	font-size:var(--dcp-font-sm);
	font-weight:600;
}
.dcp-tw-btn-link{
	padding: 5px 0;
	font-size:var(--dcp-font-sm);
	font-weight:600;
}
.btn-radius-sm{
	border-radius: 5px;
}
.btn-radius-md{
	border-radius: 35px;
}
/* Button Tab Style End */
/* Social Icon Tab Style Start */
[data-dcp-element-type ="social"] {
    display: inline-block;
}
.dcp-social-style {
    display: flex;
}
.dcp-add-timer-colon-group {
    width: 7px;
    position: relative;
	height: 50px;
    /* display: flex;
    flex-direction: column;
    justify-content: space-evenly; */
}
.dcp-add-timer-colon.dcp-colon-top {
    position: absolute;
    top: 30%;
}
.dcp-add-timer-colon.dcp-colon-bottom {
    position: absolute;
    bottom: 30%;
}
.dcp-add-timer-colon {
    background: var(--dcp-dark-text-color);
    border-radius: 100%;
    width: 7px;
    height: 7px;
}
.saglus-editor .dcp-social-icon{
	pointer-events: none;
}
.saglus-editor .dcp-social-icon,
.dcp-social-icon{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	font-size: 25px;
	margin: 0 2px;
	border: 1px solid;
	text-align: center;
	color: #fff;
	overflow: hidden;
	text-decoration: none;
	box-sizing: border-box;
}
.dcp-social-icon:hover{
	text-decoration: none;
}
.dcp-social-icon i{
	margin-top: 0px;
}
.dcp-tw-social-style .dcp-social-icon{
	border: 1px solid transparent;
}
.dcp-tw-social-style .dcp-facebook{
	background: #3d5a98;
}
.dcp-tw-social-style .dcp-twitter{
	background:#000;
}
.dcp-tw-social-style .dcp-linkedin{
	background:#0073b2;
}
.dcp-tw-social-style .dcp-pinterest{
	background:#bd081c;
}
.dcp-tw-social-style2 .dcp-social-icon{
	border: 1px solid;
}
.dcp-tw-social-style2 .dcp-facebook{
	border-color: #3d5a98;
	color: #3d5a98;
}
.dcp-tw-social-style2 .dcp-twitter{
	border-color:#000;
	color: #000;
}
.dcp-tw-social-style2 .dcp-linkedin{
	border-color:#0073b2;
	color: #0073b2;
}
.dcp-tw-social-style2 .dcp-pinterest{
	border-color:#bd081c;
	color: #bd081c;
}
.dcp-tw-social-style3 .dcp-social-icon{
	background: #000;
}
.dcp-tw-social-style4 .dcp-social-icon{
	border: 1px solid #000;
	color: #000;
}
.dcp-tw-social-style5 .dcp-social-icon{
	border: 1px solid transparent;
	border-radius: 10px;
	overflow: hidden;
}
.dcp-tw-social-style5 .dcp-facebook{
	background: #3d5a98;
	align-items: center;
}
.dcp-tw-social-style5 .dcp-twitter{
	background:#000;
}
.dcp-tw-social-style5 .dcp-linkedin{
	background:#0073b2;
}
.dcp-tw-social-style5 .dcp-pinterest{
	background:#bd081c;
}
.dcp-tw-social-style6 .dcp-social-icon{
	border-radius: 10px;
	border: 0;
}
.dcp-tw-social-style6 .dcp-facebook{
	border-color: #3d5a98;
	color: #3d5a98;
}
.dcp-tw-social-style6 .dcp-twitter{
	border-color:#000;
	color: #000;
}
.dcp-tw-social-style6 .dcp-linkedin{
	border-color:#0073b2;
	color: #0073b2;
}
.dcp-tw-social-style6 .dcp-pinterest{
	border-color:#bd081c;
	color: #bd081c;
}
.dcp-tw-social-style7  .dcp-social-icon{
	background: #000;
	border-radius: 10px;
	border: 1px solid #000;
}
.dcp-tw-social-style8 .dcp-social-icon{
	background: #fff;
	border-radius: 0;
	border: 0;
	color: #000;
}
/* Social Section Tab Style End */
/* line Section Tab Style Start */
.line-box{
	width: 320px;
	margin: auto;
}
.dcp-shape-horizontal{
	border-top: 1px solid #151122;
}
.dcp-shape-horizontal1{
	border-top: 1px dashed #151122;
}
.dcp-shape-horizontal3{
	border-top: 3px solid #151122;
}
.dcp-shape-horizontal4{
	border-top: 3px dashed #151122;
}
.dcp-shape-horizontal5{
	border-top: 5px solid #151122;
}
.dcp-shape-horizontal6{
	border-top: 5px dashed #151122;
}
.dcp-shape-vertical{
	height: 150px;
	width: 1px;
	border-left:1px solid #151122;
}
.dcp-shape-vertical2{
	height: 150px;
	width: 3px;
	border-left:3px solid #151122;
}
.dcp-shape-vertical3{
	height: 150px;
	width: 5px;
	border-left:5px solid #151122;
}
.dcp-shape-vertical4{
	height: 150px;
	width: 1px;
	border-left:1px dashed #151122;
}
.dcp-shape-vertical5{
	height: 150px;
	width: 3px;
	border-left:3px dashed #151122;
}
.dcp-shape-vertical6{
	height: 150px;
	width: 5px;
	border-left:5px dashed #151122;
}
/* line Section Tab Style End */
/* Container Section Tab Style Start */
.box-content{
	width: 350px;
	margin:auto;
}
.dcp-shape-square{
	width: 65px;
	height: 65px;
}
.dcp-shape-square.dcp-shape-tryangle {
	width: 160px;
}
.dcp-shape-square-dark{
	width: 65px;
	height: 65px;
	position: relative;
}
.dcp-shape-square-dark::before{
	content: '';
	display: block;
	background-color: var(--dcp-black);
	position: absolute;	
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}
.dcp-shape-square7{
	border-radius: 0px 20px 0px 0px;
	background: #EBEAFF;
	height: 65px;
}
.dcp-shape-square8{
	border-radius: 100%;
	background: #FC681E;
	height: 65px;
	width:65px;
}
.dcp-shape-square11{
	background:  var(--dcp-accent-color);
	box-shadow: 4px 4px 0px 0px rgba(92, 106, 196, 0.50);
	height: 65px;
	width: 65px;
}
.dcp-shape-square12{
	border-radius: 10px;
	background: #FC681E;
	box-shadow: 4px 4px 0px 0px rgba(252, 104, 30, 0.50);
	height: 65px;
	width: 65px;
}
.dcp-shape-square13{
	border-radius: 100%;
	background: var(--dcp-accent-color);
	box-shadow: 4px 4px 0px 0px rgba(92, 106, 196, 0.50);
	height: 65px;
	width:65px;
}
/* .dcp-menu-heading {
	color: #8D879F;
	font-family: 'Roboto',sans-serif;
	font-size: var(--dcp-font-xsm);
	font-style: normal;
	font-weight: 400;
	padding-bottom: 7px;
	border-bottom: 1px solid #D6D9E7;
	margin-bottom:0;
} */
/* Container Section Tab Style End */
/* Lead Form Section Tab Style Start */
.lead-form-box{
	width: 360px;
}
.saglus-editor .dcp-form-lead-transparent,
.dcp-form-lead-transparent{
	background: transparent; 
	padding: 20px;
	text-align: center;
	border: 1px solid var(--dcp-secondary-color);
	border-radius: 8px;
	font-family: var(--dcp-font-style-2);
}
.dcp-form-lead-white{
	border-radius: 8px;
	padding: 20px;
	box-shadow: var(--wsr-shadow30, 0 6px 6px 0 rgba(22, 45, 61, 0.06), 0 0 18px 0 rgba(22, 45, 61, 0.12));
	font-family: var(--dcp-font-style-2);
}
.saglus-editor .dcp-input-type input,
 .dcp-input-type input{
	font-size: var(--dcp-font-sm);
	border: 1px solid var(--dcp-accent-color);
	border-radius: 4px;
	padding: 10px;
	width: 100%;
} 
.saglus-editor .dcp-lead-btn,
.dcp-lead-btn{
	background-color: var(--dcp-accent-color);
	border: 1px solid var(--dcp-accent-color);
	color: #fff;
	width: 100%;
	padding: 10px;
	border-radius: 4px;
	display: block;
	text-align: center;
	font-weight: 600;
	font-family: var(--dcp-font-style-1);
	box-sizing: border-box;
}
.saglus-editor .dcp-lead-btn:hover,
.dcp-lead-btn:hover{
	border-color:  var(--dcp-accent-color);
	background: #fff;
	color:  var(--dcp-accent-color);
}

/* Lead Form Section Tab Style End */
/* SignUp Form Section Tab Style Start */ 
.signup-form-content{
	width: 360px;
	margin: 0 auto ;
}
.saglus-editor .dcp-signup-heading,
.dcp-signup-heading{
	display: inline-block;
	font-weight: 600;
	color: var(--dcp-dark-text-color);
	font-family: var(--dcp-font-style-1);
}
.saglus-editor .dcp-signup-login-text,
.dcp-signup-login-text{
	color: var(--dcp-dark-text-color);
	font-size: var(--dcp-font-xsm);
	font-family: var(--dcp-font-style-2);
} 
.dcp-checkbox-label{
	color: var(--dcp-dark-text-color);
}
.dcp-signup-desc{
	color: var(--dcp-dark-text-color);
}
.dcp-form-lead-white{
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow:  0 6px 6px 0 rgba(22, 45, 61, 0.06), 0 0 18px 0 rgba(22, 45, 61, 0.12);
	background-color: #ffffff;
	font-family: var(--dcp-font-style-2);
	box-sizing: border-box;
}
.dcp-form-lead-bg-secondary{
	background-color: var(--dcp-secondary-color);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow:  0 6px 6px 0 rgba(22, 45, 61, 0.06), 0 0 18px 0 rgba(22, 45, 61, 0.12);
}
.dcp-input-type .dcp-form-control{
	font-size: var(--dcp-font-sm);
	border: 1px solid rgba(0, 0, 0, 0.20);
	border-radius: 4px;
	padding: 13px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
input[disabled] {
    background-color: #b5b5b5;
}
.dcp-input-type .dcp-form-control:focus-visible {
	border-color: var(--dcp-accent-color);
	outline:0;
}
.dcp-lead-btn{
	background-color:  var(--dcp-accent-color);
	border: 1px solid  var(--dcp-accent-color);
	color: #fff;
	width: 100%;
	height: 100%;
	padding: 10px;
	border-radius: 4px;
	display: block;
	text-align: center;
	font-weight: 600;
}
.dcp-lead-btn:hover{
	border-color:  var(--dcp-accent-color);
	background: #fff;
	color:  var(--dcp-accent-color);
}
.dcp-divider-line{
	width: 100%;
	margin: 20px 0px 0px 0px;
	height: 2px;
	background: #a8caff;
}
.dcp-login-link{
	background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px 20px;
    font-size: var(--dcp-font-xsm);
    font-weight: 400;
    color: var(--dcp-accent-color);
    border-radius: 5px;
	font-family: var(--dcp-font-style-1);
}

.dcp-input-type {
    height: 45px;
}

 
/* SignUp Form Section Tab Style End */
/* Videos Section Tab Style Start */
.dcp-tw-file-container input[type="button"] {
    display: none;
}
.saglus-editor .dcp-tw-file-label {
    display: flex;
	align-items: center;
	justify-content: center;
    width: 100%;
    border-radius: 5px;
    border: 2px dashed #D6D9E7;
    background: #ECEEFA;
    padding: 10px 25px 10px 10px;
	color: #8D879F;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
}
.saglus-editor .dcp-tw-file-label svg{
	margin-right: 15px;
}
 .dcp-tw-iframe{
    width: 100%;
}
/* Videos Section Tab Style End*/
/* Product Box Section Tab Style Start*/
.dcp-tw-smart-search-field {
    margin-bottom:8px;
}
.dcp-tw-pbox {
    padding: 10px;
    border: 1px solid var(--dcp-secondary-color);
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: var(--dcp-font-style-1);
	width: 200px;
    min-width: 200px;
    background-color: var(--dcp-secondary-color);
	box-sizing: border-box;
}
.dcp-product-image-box{
	background: #eff3f6;
	text-align: center;
	border: 1px solid  var(--dcp-secondary-color);
	border-radius: 5px;
	height: 120px;
	display: flex;
	align-items: center;
}
.dcp-product-section .dcp-product-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dcp-product-image-box .dcp-product-image{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dcp-figure-content{
	padding: 15px 10px 10px 10px;
	text-align: left;
}
.dcp-product-button{
	background:var(--dcp-accent-color);
	padding: 5px 25px;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-family: var(--dcp-font-style-1);
	text-decoration: none;
}
.dcp-product-button:hover{
	text-decoration: none;
	color: #fff;
}
.dcp-input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.dcp-input-group>.dcp-form-control {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.dcp-input-group-append{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -1px;
}
.image-tab.pane-tab .dcp-tw-smart-search-field input[type="text"]{
	padding: 7px 10px;
}
.dcp-tw-smart-search-field input[type="text"],
.dcp-tw-smart-search-field input[type="text"]:hover,
.dcp-tw-smart-search-field input[type="text"]:focus{
  border: solid 1px #D6D9E7;
  border-radius: 5px 0px 0px 5px !important;
  height: 40px !important;
  padding: 10px 20px;
  background: #ffffff;
  outline: none;
  box-shadow: none;
  border-right: hidden;
  color: #34303f;
  font-size: var(--dcp-font-xsm);
}
.dcp-tw-smart-search-field button[type="submit"],
.dcp-tw-smart-search-field button[type="submit"]:focus {
  border: solid 1px #D6D9E7;
  background: #ffffff;
  border-radius: 0px 5px 5px 0px;
  border-left: hidden;
  height: 40px;
  outline: none;
  box-shadow: none;
  color: #7f7c88;
  padding: 5px 10px;
}
.dcp-tw-btn-more{
	padding: 7px 15px;
	color: #8D879F;
	font-size: var(--dcp-font-xsm);
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	transition: all 0.5s;
	border-radius: 5px;
}
.dcp-tw-btn-more:hover{
	background-color: #ECEEFA;
	color: var(--dcp-accent-color);
}
.dcp-tw-btn-more span{
	padding-left: 7px;
	font-size: 11px;
}
.dcp-tw-images-items img{
	border-radius: 5px;
}
.dcp-product-price {
	color: var(--dcp-dark-text-color);
}
/* Product Box Section Tab Style End*/
/* Timer Section Tab Style Start*/
.dcp-custom-add-timer .dcp-timer-colon-parent {
    padding-top: 10px;
	padding-bottom: 10px;
    align-self: self-start;
}
.dcp-custom-add-timer {
    display: inline-block;
    text-align: center;
	font-family: var(--dcp-font-style-2);
}
.dcp-custom-add-timer .dcp-timer-portion {
	padding: 10px;
	text-align: center;
	align-self: self-start;
}
.dcp-custom-add-timer .dcp-timer-box{
	font-size: 37px;
	width: 50px;
	height: 50px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dcp-custom-add-timer .dcp-timer-label {
	font-size: 12px;
	color: var(--dcp-dark-text-color);
}
.dcp-add-timer-colon-group-margin {
    width: 7px;
	height: 18px;
}	
.dcp-custom-add-timer.dcp-timer-two .dcp-timer-box{
	border: 1px solid var(--dcp-dark-text-color);
	border-radius: 50%;
}
.dcp-custom-add-timer.dcp-timer-three .dcp-timer-box{
	border: 1px solid var(--dcp-dark-text-color);
	border-radius: 0%;
}
.dcp-custom-add-timer.dcp-timer-four .dcp-timer-box{
	border: 1px solid var(--dcp-dark-text-color);
	background-color: var(--dcp-dark-text-color);
	color: var(--dcp-page-bg-color);
}
.dcp-custom-add-timer.dcp-timer-five .dcp-timer-box {
	border: 1px solid var(--dcp-dark-text-color);
	background-color: var(--dcp-dark-text-color);
	color:var(--dcp-page-bg-color);
	border-radius: 50%;
}

/* Timer Section Tab Style End*/
.custom-add-authmenu {
 display: inline-block;
}
.profile-before-login {
	display: inline-block;
}
.saglus-editor .dcp-register-link,
.dcp-register-link {
	border-radius: 5px;
	padding: 10px 15px;
	display: inline-block;
	font-weight: 500;
	text-align: center;
	font-size: var(--dcp-font-xsm);
	color: #fff;
	text-decoration: none;
	background-color: var(--dcp-accent-color);
}
.dcp-register-link:hover {
	background-color: var(--dcp-accent-color);
	color:#fff;
	text-decoration: none;
}
.dcp-auth-link-type-btn:hover{
	text-decoration: none;
}
.dcp-auth-link-type-btn{
	padding: 10px 15px;
	color: #151515;
	text-decoration: none;
}
/************************
 Tab pane pane_Sell 
 ***********************/	
/* Blank Tab Style Start */
.dcp-back{
	height: 100px;
	background-color: var(--dcp-light-text-color);
	border: 1px solid #D6D9E7;
}
.dcp-back-dark{
	height: 100px;
	background-color: var(--dcp-dark-text-color);
	border: 1px solid var(--dcp-dark-text-color);
}
/* Blank Tab Style End */
/* Header Tab Style Start */
.dcp-header-section ,
.dcp-footer-section {
    padding: 11px 0;
	box-sizing: border-box;
	z-index: 9999 !important;
}
/* Header Tab Style End */
/*Hero Section Tab Style Start */
.dcp-tw-button-area {
	display: flex;
	align-items: center;
}
.saglus-editor .dcp-tw-title,
.dcp-tw-title{
    /* font-size: var(--dcp-font-xxl); */
	font-family: var(--dcp-font-style-1);
	font-weight: 700;
	display: inline-block;
	line-height: 1.2;
}
.saglus-editor .dcp-tw-discription,
.dcp-tw-discription{
	font-family: var(--dcp-font-style-1);
	/* font-size: var(--dcp-font-md); */
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
}
/*Hero Section Tab Style End */
/*Hero Section Two Tab Style Start */
.dcp-img-cover{
    object-fit: cover;
	height: 100%;
}
.dcp-tw-section-two{
    background-image: url("https://cdn.dotcompal.co/uploads/default/widget/images/02.png");
    background-size:cover;
	position: relative;
	
}
.dcp-tw-before-overlay{
	background-color: var(--dcp-primary-color);
	opacity: 0.6;
}
.dcp-tw-after-overlay{
	background-color: var(--dcp-black);
	opacity: 0.6;
}
/*Hero Section Two Tab Style End */
/*Testimonial Section Tab Style Start */
.saglus-editor .dcp-tw-main-heading,
.dcp-tw-main-heading{
	font-size: var(--dcp-font-xl);
	font-family: var(--dcp-font-style-1);
	font-weight: 600;
	display: inline-block;
}
.dcp-tw-testi{
	padding: 30px 20px;
}
.dcp-tw-testi-right {
    flex-direction: row-reverse;
}
.dcp-tw-testi-img{
	border-radius: 50%;
	overflow: hidden;
}
.saglus-editor .dcp-tw-testi-title,
.dcp-tw-testi-title{
	/* font-size: calc(var(--dcp-font-md) + 5px) ; */
	font-family: var(--dcp-font-style-1);
	font-weight: 700;
	display: inline-block;
}
.saglus-editor .dcp-tw-testi-info,
.dcp-tw-testi-info{
	font-family: var(--dcp-font-style-1);
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	opacity: 0.5;
}
.saglus-editor .dcp-tw-testi-para,
.dcp-tw-testi-para{
	opacity: 0.5;
	font-family: var(--dcp-font-style-2);
}
.dcp-tw-bg-img{
	background-image: url("https://cdn.dotcompal.co/uploads/default/widget/images/bg01.png");
	background-size: cover;
	background-position: center;
}
.dcp-tw-testi.dcp-tw-testi-two {
    display: flex;
    align-items: center;
}
.dcp-tw-testi.dcp-tw-testi-two .dcp-tw-testi-img{
	border-radius: 20px;
	border: 1px solid #121039;
	box-shadow: -5px 5px 25px 0px rgba(0, 0, 0, 0.25);
}
.dcp-tw-testi.dcp-tw-testi-two.dcp-tw-testi-right .dcp-testi-content {
	border-radius: 20px 0px 0px 20px;
}
.dcp-tw-testi.dcp-tw-testi-two .dcp-testi-content {
	flex: 1;
	padding: 30px 20px;
	border-radius: 0px 20px 20px 0px;
}
.dcp-tw-testi.dcp-tw-testi-two .dcp-tw-bg-img{
	border: 1px solid #121039;
	box-shadow: -5px 5px 25px 0px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
}
/*Testimonial Section Tab Style End */
/* Product Section Tab Style Start */
.dcp-products-section .dcp-no-prod-box {
    background: var(--dcp-secondary-color) ;
    border: 1px solid var(--dcp-secondary-color);
    border-radius: 5px;
    padding: 15px;
}
.dcp-products-section .dcp-no-prod-box {
    background: var(--dcp-secondary-color) ;
    border: 1px solid var(--dcp-secondary-color);
    border-radius: 5px;
    padding: 15px;
}
@media(min-width: 768px){
	.dcp-products-section .dcp-no-prod-box {
		padding: 30px;
		background: var(--dcp-secondary-color) url(../images/no-prod-bg.png) no-repeat;
		background-position: center center;
	}
}
/* Product Section Tab Style End */
/* Footer Section Tab Style Start */
.dcp-footer-section {
	position: relative;
	
}
.footer-border-heading{
	background-color: var(--dcp-light-text-color);
	height: 1px;
	width: 100%;
}
.dcp-inner-content{
	padding: 70px 0;
}
.dcp-products-headline{
	font-family: var(--dcp-font-style-1);
}
.dcp-products-headline{
	font-family: var(--dcp-font-style-1);
}
.dcp-products-description{
	font-family: var(--dcp-font-style-2);
}
.dcp-no-prod-box{
	font-family: var(--dcp-font-style-1);
}
.dcp-service-nav-links li{
	list-style: none;
}
/* Footer Section Tab St1yle End */

/**************** 
template css 
**************/
/* feature style start */
.dcp-features-item{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--dcp-secondary-color);
	padding: 20px;
}
.dcp-features-icon{
    width: 100px;
    height: 85px;
	background-color: var(--dcp-secondary-color);
	border-radius: 5px;
	font-size: var(--dcp-font-lg);
	color: var(--dcp-dark-text-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
.dcp-features-content{
	flex: 1;	
}

/* feature style end */
/*Contact01 Section Style*/
.dcp-tw-section-three{
    background-image: url("https://cdn.dotcompal.co/uploads/default/widget/images/bg02.png");
    background-size:cover;
	position: relative;
	background-position:bottom;
}
/*Contact01 Section Style*/
/*Countdown Section Style*/

.dcp-tw-section-four{
    background-image: url("https://cdn.dotcompal.co/uploads/default/widget/images/bg03.png");
    background-size:cover;
	position: relative;
    background-position: center;
}
.dcp-tw-section-five{
    background-image: url("https://cdn.dotcompal.co/uploads/default/widget/images/bg04.png");
    background-size:cover;
	position: relative;
    background-position: center;
}
.dcp-tw-cont-width .dcp-tw-cont-title{
	line-height:1.5;
}
/*Countdown Section Style*/
/*Iconbox Section Style*/
.dcp-tw-iconbox{
	padding: 30px 20px;
	border-radius: 10px;
}
.dcp-tw-icon-para{
	color:var(--dcp-dark-text-color);
	display:inline-block;
	margin-bottom:0;
}
/*Iconbox Section Style*
/*Timer Section Style*/
/* .dcp-timer-six.dcp-custom-add-timer{
	width: 100%;
} */
.dcp-custom-add-timer.dcp-timer-six .dcp-timer-box{
	width: 55px;
    height: 55px;
	font-size: var(--dcp-font-xxl);
}
.dcp-custom-add-timer.dcp-timer-six .dcp-timer-label{
	font-size:var(--dcp-font-xsm);
}
.dcp-timer-container{
	width:740px;
    border-radius: 47px;
}
@media(max-width: 768px){
	.dcp-timer-container{
		width:620px;
	}
}
.dcp-custom-add-timer.dcp-timer-six .dcp-add-timer-portion{
	position:relative;
}
.dcp-custom-add-timer.dcp-timer-six .dcp-add-timer-portion.dcp-timer-days:after,
.dcp-custom-add-timer.dcp-timer-six .dcp-add-timer-portion.dcp-timer-minutes:after,
.dcp-custom-add-timer.dcp-timer-six .dcp-add-timer-portion.dcp-timer-hours:after{
	content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.20);
    width: 1px;
    height: 64px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 150%;
}

.dcp-custom-add-timer.dcp-timer-seven .dcp-timer-box {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background-color: var(--dcp-accent-color);
	color: var(--dcp-light-text-color);
	font-size: var(--dcp-font-xxl);

}
.dcp-custom-add-timer.dcp-timer-seven .dcp-timer-label{
	font-size: var(--dcp-font-md);
	font-weight: 500;
	height: 26px;
}

.dcp-custom-add-timer.dcp-timer-seven .dcp-timer-colon-parent {
	padding: 10px 0px;
	height: 100%;
	width: 4px;
}

.dcp-custom-add-timer.dcp-timer-seven .dcp-add-timer-colon {
	height: 74px;
	width: 4px;
}
.dcp-custom-add-timer.dcp-timer-seven .dcp-add-timer-colon-group {
	height: 74px;
	width: 4px
}
.dcp-custom-add-timer.dcp-timer-seven .dcp-add-timer-colon-group-margin {
	height: 26px;
	width: 4px;
}
.dcp-custom-add-timer.dcp-timer-seven  .dcp-add-timer-colon {
    width: 4px;
    height: 4px;
}
/* .dcp-custom-add-timer.dcp-timer-seven .dcp-timer-colon-parent {
    padding-top: 20px;
    padding-bottom: 10px;
    align-self: self-start;
} */
.dcp-custom-add-timer.dcp-timer-eight .dcp-timer-box {
	width: 74px;
}
.dcp-custom-add-timer.dcp-timer-eight .dcp-timer-label{
	height: 26px;
	width: 74px;
}
.dcp-custom-add-timer.dcp-timer-eight .dcp-timer-colon-parent {
	padding: 10px 0px;
	height: 100%;
}
.dcp-custom-add-timer.dcp-timer-eight .dcp-add-timer-colon-group-margin {
	height: 26px;
}

.dcp-timer-inner-box .dcp-custom-add-timer .dcp-timer-box{
	font-size: var(--dcp-font-xxl);
	color: var(--dcp-light-text-color);
}
.dcp-timer-inner-box .dcp-custom-add-timer .dcp-timer-label {
    font-size: var(--dcp-font-md);
	color: var(--dcp-light-text-color);
}
.dcp-timer-inner-box .dcp-add-timer-colon{
	background-color:var(--dcp-light-text-color);
}
.dcp-timer-inner-box  .dcp-custom-add-timer .dcp-timer-portion {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*Timer Section Style*/ 
/*Icon Section Style*/ 
.dcp-tw-iconbox2{
	display:flex;
}
.dcp-tw-iconbox2 .dcp-icon-width {
    width: 70px;
    margin-right: 15px;
    height: 70px;
    line-height: 5;
    min-width: 70px;
    background-color: var(--dcp-primary-color);
    border-radius: 50%;
    text-align: center;
	display:inline-block;
}
.dcp-icon-md-width{
    min-width: 100px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: flex;
    justify-content: center;
	align-items:center;
}
.dcp-icon-sm-width{
    min-width: 64px;
    width: 64px;
    height: 64px;
    line-height: 64px;
}
.dcp-icon-default{
	font-size:35px;
}
.dcp-icon{
	font-size:30px;
}
.dcp-md-icon{
	font-size:60px;
}
.dcp-reg-icon{
	font-size:55px;
}
.dcp-lg-icon{
	font-size:75px;
}
.dcp-form-group-text p{
	color: rgba(0, 0, 0, 0.5);

}
/*Icon Section Style*/
/*Video Section Style*/
.dcp-tw-video{
    position: relative;
    max-height: 550px;
    margin: auto;
    height: 550px;
}
.dcp-tw-video2{
	position: relative;
    max-height: 380px;
    margin: auto;
    height: 380px;
}
/*Video Section Style*/
/*Box Section Style*/
.dcp-tw-box{
	padding:30px 50px;
	border-radius:10px;
}
/*Box Section Style*/
/*Button Section Style*/
/*Button Section Style*/
/*Star Section Style*/
.dcp-star-review{
	padding:0;
	display:inline-block;
}
.dcp-star-review-list{
	display:inline-block;
	margin:0 5px;
}

/*Star Section Style*/
/*Global radius Style*/

/* .dcp-br5{
	border-radius:5px;
}
.dcp-br10{
	border-radius:10px;
}
.dcp-br50{
	border-radius:50%;
}
.dcp-tw-br50{
	border-radius:50px;
} */
/*Global radius Style*/
/*Meta list Style*/
.dcp-tw-meta{
	padding:0px 15px;
	border-radius:4px;
}

.dcp-tw-meta-list{
	display:inline-block;
	padding: 18px 45px;
}

 /* feature list style start  */
 .dcp-feature-lists .dcp-list-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.dcp-feature-lists .dcp-list-content{
    flex: 1;
}
 /* feature list style End  */

/* @media(max-width:768px){
	.dcp-subtext{
		word-break: break-all;
	}
} */

/* Blog widget Start */

/* Blog widget End */

/* feature image Start */
.dcp-img-circal{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 2px solid var(--dcp-secondary-color);
}
.dcp-img-square{
	width: 200px;
	height: 200px;
}
.dcp-img-rectangle {
	width: 300px;
	height: 200px;
	object-fit: cover;
}
.dcp-img-square-lg{
	width: 250px;
	height: 250px;
}
/* feature image End */
/* Tag style Start */
.dcp-tag-container{
	padding: 15px 20px;
}
.dcp-tag{
	padding: 5px 15px;
	display: inline-block; 
	font-family: var(--dcp-font-style-1);
	margin-left: 2px;
	margin-right: 2px;
	margin-bottom: 5px;
}
.dcp-tag-dark{
	background-color: var(--dcp-dark-text-color);
	color: var(--dcp-page-bg-color);
}
.dcp-tag-dark-05{
	background-color: rgba(54, 51 ,91,0.5);
	color: var(--dcp-light-text-color);
}
.dcp-tag-dark-02{
	background-color: rgba(54, 51 ,91,0.2); 
	color: var(--dcp-light-text-color);
}
.dcp-tag-dark-03{
	background-color: rgba(54, 51 ,91,0.3);
	color: var(--dcp-light-text-color);
}
.dcp-tag-light {
	background: var(--dcp-secondary-color);
	color: var(--dcp-dark-text-color);
}
.dcp-tag-trans{
	background-color: transparent;
	color: var(--dcp-dark-text-color);
}
/* Tag style End */