/*--------- Comman css Start -------*/
*, *::before, *::after {
    box-sizing: border-box;
}
:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #A0D502;
  --primary-hover: #072032;
  --heading-color: #3d3d47;
  --paragraph-color: #767676;
  --border-color: #f9fafc;
  --edit-color: #007df0;
  --edit-color2: #8840e6;
  --edit-color3: #6cfc39;
}
body, html {
  font-family: "DM Sans", sans-serif;
  background-color: var(--white);
	font-size: 16px;
	line-height: 23px;
	color: #333333;
	margin: 0;
  font-weight: 400;
	-webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
    padding: 0;
}
a {
	color: #797979;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
figure{
  margin: 0;
}
.el_lp_primary_btn{
  background: var(--primary);
  border: 0;
  font-size: 16px;
  color: var(--white);
  padding: 11px 20px;
  text-align: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.el_lp_primary_btn:hover{
  background: var(--primary-hover);
  color: var(--white);
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.el_db_primary_btn{
  background: var(--primary);
  border: 1px solid var(--primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding: 5px 20px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.el_db_primary_btn.active,
.el_db_primary_btn:hover {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--primary);
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.el_db_primary_btn:disabled,
.el_db_primary_btn.disabled {
  background: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.el_db_primary_btn:disabled:hover,
.el_db_primary_btn.disabled:hover {
  background: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #999;
}
/*--------- Comman css End -------*/
/*--------- Panel start -------*/
.active-pre-template .builder-sidebar-toggle,
    .section-toolbar {
      display: none;
    }
.custom_container{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
#builder{
  min-height: 100vh;
  background-color: #f9fafc;
}
.edit-mode + .el_db_primary_btn{
  background: red;
}
/*--------- Sidebar -------*/
.el_panel_sidebar_wrapper {
    position: fixed;
    top: 79px;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: 10;
    background: var(--white);
    width: 180px;
    border-top: 2px solid var(--border-color);
    box-shadow: 0 36px 35px #0000001a;
    -webkit-transition: all.5s;
		-o-transition: all.5s;
		-ms-transition: all.5s;
		-moz-transition: all.5s;
		transition: all.5s;
}
.el_panel_sidebar_wrapper::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #ffffff;
}
.el_panel_sidebar_wrapper::-webkit-scrollbar{
    width: 6px;
    background-color: #ffffff;
}
.el_panel_sidebar_wrapper::-webkit-scrollbar-thumb{
    background-color: #E0E7ED;
}
/*- Logo -*/
.el_panel_sidebar_logo_wrapper {
  padding: 0;
	position: relative;
  /* border-bottom: 1px solid #f3f3f3; */
}
.el_panel_sidebar_logo_wrapper a img{
  width: 100px;
}
.el_panel_sidebar_logo{
  display: none;
	position: absolute;
  top: 20px;
  left: 0;
    right: 20px;
    margin: 0px auto;
    text-align: center;
	opacity: 1;
	visibility: visible;
	transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.el_panel_header_logo img{
  max-width: 215px;
  width: 100%;
}
.active-pre-template .el_panel_header_logo{
  display: block;
}
.active-pre-template .el_panel_footer_wrapper{
  padding-left: 20px;
}
.manu-close {
  display: none;
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 25px;
  border-top-right-radius: 5px; 
  -moz-border-top-right-radius: 5px;
  -khtml-border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; 
  -moz-border-bottom-right-radius: 5px;
  -khtml-border-bottom-right-radius: 5px;
  line-height: 22px;
  background: #B2C3D1;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.manu-close img {
  width: 9px;
  height: 9px;
}
/*- Navigation -*/
.el_panel_sidebar_nav_wrapper {
  max-height: 85vh;
	transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.el_panel_sidebar_nav_wrapper::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #ffffff;
}
.el_panel_sidebar_nav_wrapper::-webkit-scrollbar{
  width: 6px;
  background-color: #ffffff;
}

.el_panel_sidebar_nav_wrapper::-webkit-scrollbar-thumb{
  background-color: #cac3c3;
}
.el_panel_sidebar_nav_wrapper h4{
  color: var(--primary);
  font-size: 14px;
  line-height: 16px;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.el_panel_sidebar_nav_wrapper ul {
  float: left;
  width: 100%;
	margin-bottom: 30px;
  padding: 0 5px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 200px;
	-webkit-transition: all.5s;
  -o-transition: all.5s;
  -ms-transition: all.5s;
  -moz-transition: all.5s;
  transition: all.5s;
}
.el_panel_sidebar_nav_wrapper ul li{
  float: left;
  width: 100%;
}
.el_panel_sidebar_nav_wrapper ul li a{
  display: block;
  text-decoration: none;
  color: var(--heading-color);
  padding: 12px 15px;
  font-size:14px;
  line-height:14px;
  background: transparent;
  position:relative;
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  -moz-transition: none;
  transition: none;
  font-weight: 400;
}
.el_panel_sidebar_nav_wrapper ul li a img{
	width: 22px;
}
.el_panel_sidebar_nav_wrapper li a span{
    float:left;
    padding-left: 8px;
    padding-top: 1px;
    line-height:13px;
    position: absolute;
    width: 200px;
}
.el_panel_sidebar_nav_wrapper ul li a:hover{
	opacity: 1;
  visibility: visible;
  color: var(--primary);
}
.el_panel_sidebar_nav_wrapper ul li a i{
  font-size: 14px;
}
/*- Sub Menu -*/
/* .submenu .submenu_item{
	position: relative;
} */
.submenu .bit_submenu_list{
	position: absolute;
    border: 0;
		z-index: 1;
		border-radius: 0;
		min-width: 135px;
		padding: 0;
		display: none;
		margin: 0;
    left: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    background: #fff;
    border-left: 1px solid #eee;
    width: 350px;
    box-shadow: 3px 0 6px #00000008;
}
.active-submenu .bit_submenu_list{
	display: block;
}
.active-submenu > a{
	background: #43b9b21a !important;
  color: var(--primary) !important;
}
.submenu .bit_submenu_list li{
	margin: 0;
}
.submenu .bit_submenu_list li a{
	padding: 9px 28px;
  display: inline-block;
  width: 100%;
  font-size: 14px;
	color: #5A5A5A;
	font-weight: 500;
	white-space: nowrap;
}
.submenu .bit_submenu_list li a em{
	margin-right: 15px;
}
.submenu .submenu_item > a:before{
	  content: '\f107';
    font-family: "Font Awesome 5 Free", serif;
    width: 14px;
    height: 15px;
    position: absolute;
    right: 12px;
    top: 9px;
		transform: rotate(-90deg);
    font-size: 13px;
    font-weight: 600;
}
/* .submenu .submenu_item.active-submenu > a:before{
		transform: rotate(0deg);
    top: 12px;
} */
.submenu .bit_submenu_list li a:hover {
    background: #F4F2EF;
}
/*- Sidebar toggle -*/
.el_panel_sidebar_toggle {
  background-color: #f4f5f8;
	cursor: pointer;
    position: absolute;
    top: -5px;
    right: 10px;
    z-index: 1000;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.el_panel_sidebar_toggle img{
    transform: rotate(0deg);
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}
.el_panel_mobile_toggle {
	float: right;
  align-self: center;
  cursor: pointer;
  margin-left: 25px;
	display: none;
}
.el_panel_sidebar_toggle_wrapper{
  width: 18px;
    position: relative;
    height: 22px;
}
.bar1, .bar2, .bar3 {
	width: 18px;
	height: 2px;
	background-color: var(--heading-color);
	margin: 4px 0;
  transition: all .3s ease-in-out;
}
.sidebar-active .bar1{
  position: absolute;
    right: 0px;
    top: 7px;
    width: 7px;
    transform: rotate(130deg);
    transition-delay: 50ms;
}
.sidebar-active .bar2{
    position: absolute;
    left: 2px;
    top: 4px;
    width: 16px;
    transition-delay: .1s;
}
.sidebar-active .bar3{
  position: absolute;
  right: 0;
  top: 1px;
  width: 7px;
  transform: rotate(-130deg);
  transition-delay: .1s;
}
#close-sidebar{
	position: absolute;
	right: 3px;
	top: 3px;
	float: left;
	width: 25px;
	height: 25px;
	line-height: 20px;
	text-align: center;
	border-radius: 3px;
	-webkit-border-radius: 3px;    
  -moz-border-radius:3px;
  -khtml-border-radius:3px;
	border: 1px solid #E4E4E4;
	background: #fff;
	display: none;
	cursor: pointer;
	z-index: 1;
}
#close-sidebar img{
	width: 9px;
}
.active-pre-template .el_panel_sidebar_wrapper{
  display: none;
}
.active-pre-template .el_panel_header_wrapper{
  margin-left: 0;
}
.active-pre-template .el_panel_content_wrapper{
  padding: 0 30px 80px 30px;
}
.active-pre-template .el_panel_header_bottom{
  padding-left: 30px;
}
/*--------- Header -------*/
.el_panel_header_wrapper{
	position: fixed;
	left: 0;
	right: 0;
	background: var(--white);
	display: flex;
  	z-index: 1000;
    padding: 22px 16px;
	margin-left: 0;
  justify-content: space-between;
	box-shadow: 0 4px 34px #0a4b550d;
	-webkit-transition: all.5s;
	-o-transition: all.5s;
	-ms-transition: all.5s;
	-moz-transition: all.5s;
	transition: all.5s;
}
.el_panel_header_bottom{
  width: 100%;
  height: 250px;
  padding-left: 550px;
  padding-top: 102px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all.5s;
  -o-transition: all.5s;
  -ms-transition: all.5s;
  -moz-transition: all.5s;
  transition: all.5s;
}
.el_panel_header_bottom h2{
  color: var(--heading-color);
  font-size: 22px;
  line-height: 25px;
  font-weight: 600;
  margin: 0;
}
.el_panel_header_bottom p{
  color: var(--paragraph-color);
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
}
.el_panel_header_logo{
  margin-right: 77px;
}
/*-- Main content --*/
.el_panel_content_wrapper{
	padding: 0 30px 80px 550px;
	-webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.el_panel_header_left{
  display: flex;
  gap: 10px;
  align-items: center;
}
.el_panel_header_left .el_db_primary_btn,
.el_panel_header_right .el_db_primary_btn{
  background: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: var(--heading-color);
  font-weight: 400;
}
.el_panel_header_left .el_db_primary_btn.active,
.el_panel_header_left .el_db_primary_btn:hover,
.el_panel_header_right .el_db_primary_btn.active,
.el_panel_header_right .el_db_primary_btn:hover{
  background: var(--primary);
  color: var(--white);
}
.el_builder_header_lt_wrapper{
  position: relative;
  margin-right: 15px;
}
.el_panel_header_right{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
    justify-content: flex-end;
}
#builder {
  display: none;
}

#canvas {
  border: 2px dashed #dcdcdc;
  min-height: calc(100vh - 272px);
  padding: 20px;
  margin-top: -72px;
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}
.desktop_row_col{
  display: none;
}
/* #canvas.edit-mode{
  border: 2px dashed var(--primary);
} */
.active-pre-template .canvas-placeholder{
  display: none !important;
}
.active-pre-template .el_panel_sidebar_toggle{
  display: none;
}
.active-pre-template .el_panel_header_logo {
  margin-right: 0;
}
.canvas-placeholder{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 800px;
  transform: translateY(-50%);
  border: 2px dashed #ddd;
  background-color: var(--white);
}
.canvas-placeholder i{
  color: var(--primary);
}
.component img{
  width: 100%;
}
.component {
  padding: 12px;
    padding-left: 32px;
  background: var(--white);
  color: var(--paragraph-color);
  cursor: grab;
  font-size: 14px;
  line-height: 14px;
  display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}
.component:hover{
  color: var(--primary);
}
.component i{
  font-size: 11px;
}
/*-- Laning page css start --*/
.el_landing_header_wrapper{
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #dddddd;
  padding: 0 15px;
}
.el_landing_header_logo img{
  max-width: 215px;
  width: 100%;
}
.el_landing_header_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.el_landing_header_nav ul{
  position: relative;
  display: flex;
  gap: 34px;
  padding: 31px 0 !important;
}
.el_landing_header_nav ul li a{
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.el_landing_header_nav ul li a:hover,
.el_landing_header_nav ul li a.active{
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.el_dahboard_tab_wrapper_inner .nav-item-toolbar{
  display: none !important;
}
.el_landing_header_btn{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.el_landing_header_btn .el_user_icon{
  background: #ededed;
  color: var(--heading-color);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.el_landing_banner_wrapper{
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 10;
  background-color: #F8FAF5;
}
.el_landing_banner_right{
  margin-right: -200px;
  position: relative;
}
.el_landing_banner_right img{
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 16px 71px 0 rgba(64, 69, 79, 0.1);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.el_landing_banner_content_wrapper{
  padding: 110px 0 180px;
  position: relative;
}
.el_landing_banner_left h1{
  font-size: 80px;
  line-height: 90px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-transform: capitalize;
}
.el_landing_banner_left h1 span{
  text-transform: uppercase;
    background: var;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.el_landing_banner_left p{
  font-size: 18px;
  line-height: 28px;
  color: #606060;
  margin-bottom: 20px;
  max-width: 80%;
}
.el_banner_bl_box{
  box-shadow: 0 16px 71px 0 rgba(64, 69, 79, 0.1);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--white);
  padding: 20px;
  position: absolute;
  bottom: -57px;
  left: 110px;
  -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.el_banner_bl_box h5{
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.el_banner_bl_box ul{
  display: flex;
  gap: 10px;
  position: relative;
}
.el_banner_bl_box ul::before{
  content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: #eee;
    left: 24px;
    right: 0;
    top: 50%;
    transform: translateY(-15px);
}
.el_banner_bl_box ul li{
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  color: var(--paragraph-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.el_banner_bl_box ul li span{
  display: inline-block;
  width: 23px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  background: #eee;
  color: var(--black);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  font-size: 12px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}
.circle {
  --width: 150px;
  --height: 150px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--width, 150px);
  height: var(--height, 150px);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  position: absolute;
  bottom: 66px;
  left: 10px;
  color: var(--black);
  z-index: 10;
}

.circle .arrow-img {
  position: absolute;
  z-index: 1;
    top: 39px;
}

.circle .text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
  -webkit-animation: rotateText 10s linear infinite;
}
.circle .text:before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  z-index: -1;
  box-shadow: 0 0 50px rgba(102, 125, 250, 0.71);
}

.circle .text .char {
  position: absolute;
  left: 50%;
  font-size: 14px;
  font-weight: 600;
  transform-origin: 0 calc(var(--width, 150px) / 2);
  text-transform: uppercase;
}
@keyframes rotateText {
  0% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}

.el_landing_template_heading{
  text-align: left;
  padding: 0 10px;
}
.el_landing_template_heading h2{
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--heading-color);
}
.el_landing_template_heading p{
  font-size: 15px;
  line-height: 28px;
  color: var(--paragraph-color);
  margin: 0;
}
.el_landing_searchbar input{
  height: 37px;
  width: 250px;
  padding: 0 20px;
  padding-right: 35px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  outline: none;
  transition: 200ms;
  background: url('assets/images/search-icon.svg');
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: top 11px right 15px;
  
}
.el_landing_searchbar input:hover,
.el_landing_searchbar input:focus{
  border: 1px solid var(--primary);
}
.el_landing_template_topheading{
  text-align: center;
}
.el_landing_template_topheading h2{
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.el_landing_template_topheading p{
  font-size: 15px;
  line-height: 28px;
  color: var(--paragraph-color);
  margin: 0;
}
.el_dashboard_filter_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  margin-top: 20px;
}
.el_landing_template_card{
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.141);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.141);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.141);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: var(--white);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.el_landing_template_card:hover{
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.el_landing_template_card_img{
  position: relative;
  height: 300px;
  border-top-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-top-left-radius: 10px;
  -ms-border-top-left-radius: 10px;
  -o-border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-top-right-radius: 10px;
  -ms-border-top-right-radius: 10px;
  -o-border-top-right-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.el_landing_template_card_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.el_landing_template_card .card-body{
  padding: 20px;
}
.el_landing_template_card .card-body .card-title{
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.el_landing_template_card .card-body .card-title span{
  color: var(--primary);
  text-transform: capitalize;
}
.el_template_card_tags ul{
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.el_template_card_tags ul li{
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  color: var(--black);
  background: #ebebeb;
  padding: 2px 10px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.el_template_card_price_btn_wrapper{
  display: flex;
  flex-wrap: wrap;
}
.el_template_card_price{
  display: flex;
  gap: 4px;
  margin-top: 15px;
  flex: 0 0 100%;
  justify-content: space-between;
  align-items: center;
}
.el_template_card_price .el_card_price_text{
  font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black);
}
.free-template-card .el_template_card_price .el_card_price_text{
  color: #008000;
}
.el_template_card_price .el_card_price_text del{
  font-size: 15px;
  line-height: 24px;
  color: #999;
  margin-right: 6px;
}
.el_card_rating{
  display: flex;
  align-items: center;
  gap: 4px;
}
.el_card_rating i{
  color: #f9bf00;
}
.el_card_rating_text{
  font-size: 12px;
    line-height: 24px;

    color: #999;
    margin-left: 4px;
}
.el_card_sales{
  font-size: 12px;
    line-height: 24px;

    color: #999;
}
.el_template_card_btn .el_lp_primary_btn::before{
  display: none;
}
.el_template_card_btn{
  display: flex;
    gap: 5px;
    width: 100%;
    margin-top: 15px;
    flex-wrap: wrap;
}
.el_template_card_btn .el_lp_primary_btn{
  padding: 2px 12px;
  font-size: 12px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ebebeb;
  color: var(--black);
  transition: 200ms;
}
.el_template_card_btn .el_lp_primary_btn i{
  color: var(--primary);
  transition: 200ms;
}
.el_template_card_btn .el_lp_primary_btn:hover{
  background: var(--primary);
  color: var(--white);
}
.el_template_card_btn .el_lp_primary_btn:hover i{
  color: var(--white);
}
.free-template-card .el_landing_template_card_img span{
  background: #d80000;
  color: var(--white);
  padding: 2px 10px;
  position: absolute;
  top: 14px;
  left: -78px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  z-index: 1;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  width: 210px;
  text-align: center;

}
.el_landing_template_wrapper{
  background-color: var(--white);
  padding-top: 40px;
  padding-bottom: 60px;
}
.el_landing_template_wrapper .row{
  margin: 0 -20px;
}
.el_landing_template_wrapper .row .template-item{
  padding: 0 20px;
}
.el_template_pagination ul{
  display: flex;
  gap: 5px;
  justify-content: center;
}
.el_template_pagination ul li a{
  font-size: 14px;
  line-height: 35px;
  font-weight: 500;
  color: var(--black);
  width: 37px;
  height: 37px;
  text-align: center;
  padding: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border: 1px solid #dddddd;
}
.el_template_pagination ul li a:hover{
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.el_template_pagination ul li.page-item.active a{
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.el_template_pagination ul li a:focus{
  box-shadow: none;
}
.el_template_pagination ul li:first-child a{
  border-radius: 50px !important;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
  width: auto;
  padding: 0 20px;
}
.el_template_pagination ul li:last-child a{
  border-radius: 50px !important;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
  width: auto;
  padding: 0 20px;
}
.el_template_pagination ul li.disabled a{
  background: #eaeaea;
  color: #999;
  cursor: not-allowed;
}
.el_template_footer{
  background: #F8FAF5;
  width: 100%;
  padding: 100px 0;
  padding-bottom: 15px;
}
.el_template_footer_logo img{
  width: 218px;
}
.el_template_footer_logo p{
  color: #5C6972;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 35px;
}
.el_template_footer_tag h3{
  color: #072032;
  font-family: "Inter", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 5px;
}
.el_template_footer_tag ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}
.el_template_footer_tag ul li a{
  display: block;
  padding: 5px 15px;
  background: #ffffff;
  font-size: 16px;
  color: #5C6972;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-transform: capitalize;
  transition: 200ms;
  font-weight: 500;
  border: 1px solid #EBEDEF;
}
.el_template_footer_tag ul li a:hover{
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
}
.el_template_footer_link{
  padding-left: 60px;
}
.el_template_footer_link h3{
  color: #072032;
  font-family: "Inter", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 5px;
}
.el_template_footer_link ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.el_template_footer_link ul li a{
  color: #5C6972;
  transition: 200ms;
  font-size: 16px;
  line-height: 26px;
}
.el_template_footer_link ul li a:hover{
  color: var(--primary);
}
.el_template_footer_social h3{
  color: #072032;
  font-family: "Inter", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 5px;
}
.el_template_footer_social ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.el_template_footer_social ul li a{
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: var(--white);
  font-size: 18px;
}
.el_template_footer_social ul li a.facebook{
  background-color: #3b5998;
}
.el_template_footer_social ul li a.twitter{
  background-color: #1da1f2;
}
.el_template_footer_social ul li a.youtube{
  background-color: #cd201f;
}
.el_template_footer_bottom{
  border-top: 1px solid #EBEDEF;
  padding-top: 15px;
  text-align: center;
  margin-top: 90px;
}
.el_template_footer_bottom p{
  color: #5C6972;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
.el_unlock_popup{
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 0;
}
.el_unlock_popup_content{
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  max-width: 650px;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.el_unlock_popup_header{
  padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid #EAEAEA;
    text-align: left;
}
.el_unlock_popup_header h3{
  font-size: 20px;
  line-height: 30px;
  color: var(--heading-color);
  font-weight: 500;
  display: inline-block;
}
.el_unlock_popup_header p{
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
  margin: 0;
}
.el_unlock_popup_header .el_unlock_popup_close{
  position: absolute;
  right: 1px;
  top: -11px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--black);
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
}
.el_unlock_popup_footer{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.el_unlock_popup_footer .el_lp_primary_btn::before{
  display: none;
}
.el_unlock_popup_footer .el_lp_primary_btn{
  font-size: 16px;
  padding: 13px 28px;
}
.el_unlock_popup_footer .el_unlock_popup_cancel{
  font-size: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--black);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.el_unlock_popup_footer .el_unlock_popup_cancel:hover{
  color: var(--primary);
}
.el_unlock_popup_payment_toggle{
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.el_unlock_popup_payment_toggle .switch{
  position: relative; 
  display: inline-block; 
  width: 200px; 
  height: 34px; 
  margin-bottom: 0;
}
.el_unlock_popup_payment_toggle .switch input{
  opacity: 0; 
  width: 0; 
  height: 0;
}
.el_unlock_popup_payment_toggle .slider{
  position: absolute; 
  cursor: pointer; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background-color: var(--white); 
  border-radius: 34px; 
  transition: .4s;
  border: 1px solid #ddd;
}
.el_unlock_popup_payment_toggle .slider .slider-text{
  position: absolute; 
  top: 50%; 
  transform: translateY(-12px);
  left: 32px;
  transition: .4s;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.el_unlock_popup_payment_toggle .slider .slider-text.right{
  right: 25px;
  left: auto;
}
.el_unlock_popup_payment_toggle .slider .slider-button{
  position: absolute; 
  height: 26px; 
  width: 100px; 
  left: 4px; 
  bottom: 4px; 
  background: var(--primary); 
  border-radius: 34px; 
  transition: .4s; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.payment-section{
  margin-top: 20px;
}
.payment-section h4{
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 15px;
  text-align: left;
}
.unlock-popup-open{
  overflow: hidden;
}
.qr-code-img{
  max-width: 200px;
  width: 100%;
}
.el_unlock_code_field_wrapper{
  margin-top: 20px;
  text-align: left;
}
.el_unlock_code_field_wrapper p{
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  text-align: left;
}
.el_unlock_code_field_wrapper input{
  width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 0 20px;
    font-size: 16px;
    background: #ffffff;

    color: #011D22;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
}
.el_unlock_code_field_wrapper select{
  width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 0 20px;
    font-size: 16px;
    background: #ffffff;

    color: #011D22;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
}
.el_unlock_code_field_wrapper input:hover,
.el_unlock_code_field_wrapper input:focus,
.el_unlock_code_field_wrapper select:hover,
.el_unlock_code_field_wrapper select:focus{
  border-color: var(--primary);
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.el_unlock_code_field_wrapper textarea{
  width: 100%;
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-size: 16px;
    background: #ffffff;
    resize: none !important;
    color: #011D22;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
}
.el_unlock_code_field_wrapper textarea:hover,
.el_unlock_code_field_wrapper textarea:focus{
  border-color: var(--primary);
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
#faviconFile, #imageFile{
  line-height: 42px;
}
.el_unlock_payment_steps{
  text-align: left;
  margin-top: 20px;
  background: #f2f2f2;
  padding: 25px 30px;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
}
.el_unlock_payment_steps li ul{
  margin-top: 10px;
}
.el_unlock_payment_steps li ul li{
  margin-bottom: 10px;
}
.el_unlock_payment_steps li{
  font-size: 15px;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 15px;
}
/* .el_unlock_payment_steps li:last-child{
  border-top: 1px solid #c8c8c8;
  padding-top: 15px;
} */
.el_unlock_payment_steps li span{
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  margin-right: 10px;
}
.el_unlock_payment_steps li ul{
  list-style-type: disc;
  margin-left: 25px;
}
.el_unlock_payment_steps li ul li:last-child{
  margin-bottom: 10px;
  border: 0;
  padding: 0;
}
.el_unlock_paypal_btn{
  display: inline-flex;
  flex-direction: column;
  font-size: 16px;
  color: #0070ba;
  gap: 5px;
  background: #e8f6ff;
  border: 1px solid #0070ba;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.el_unlock_paypal_btn:hover{
  color: #0070ba;
}
.el_unlock_paypal_btn img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rating-popup{
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  max-width: 450px;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.rating-popup .stars{
  margin: 30px 0;
}
/*-- Laning page css End --*/
/*-- Edit mode css Start --*/
.edit-mode .section-wrapper{
  padding-bottom: 30px;
}
.edit-mode .editable-section {
  outline: 2px solid var(--edit-color2);
}
.edit-mode .section-toolbar{
  display: inline-flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  padding: 2px 12px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  background: var(--edit-color2);
  position: relative;
}
.section-toolbar .btn-move,
.section-toolbar .btn-delete,
.section-toolbar .btn-duplicate{
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  border: 0;
  color: var(--white);
  background: transparent;
  outline: none;
}
.section-toolbar::after{
  content: "Section";
  position: absolute;
  left: 100%;
  top: 5px;
  font-size: 13px;
  color: var(--edit-color2);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
}
/* .section-toolbar .btn-move:hover{
  color: #02dfdf;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.section-toolbar .btn-duplicate:hover{
  color: #00e500;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.section-toolbar .btn-delete:hover{
  color: #e70505;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
} */
 .column-toolbar{
    position: absolute;
    top: -22px;
    left: 15px;
    z-index: 100;
    padding: 4px;
    display: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: var(--edit-color);
    font-size: 13px;
    line-height: 13px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
 }
 .edit-mode .column-toolbar{
  display: block;
 }
 .column-toolbar::after {
  content: "Column";
  position: absolute;
  left: 100%;
  top: 5px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
}
 .column-toolbar .btn-duplicate,
 .column-toolbar .btn-delete{
  background: transparent;
  border: 0;
  outline: none;
  font-size: 12px;
  line-height: 14px;
  color: var(--white);
 }
.edit-mode img{
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.edit-mode img:hover{
  border: 2px solid var(--edit-color3);
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.edit-mode .menu-item,
.edit-mode .social-icons li{
  position: relative;
}
.edit-mode .menu-item:hover::after,
.edit-mode .social-icons li:hover::after{
  content: '';
  border: 1px solid var(--edit-color);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}
.edit-mode .menu-item .edit-icon{
  position: absolute;
  top: -24px;
  right: 26px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}

.edit-mode .menu-item .delete-icon{
  position: absolute;
  top: -24px;
  right: 0;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.list-wrapper li{
  position: relative;
}
.edit-mode .list-wrapper li:hover:after{
  content: '';
  border: 1px solid var(--edit-color);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
}
.edit-mode .social-edit-btn{
  position: absolute;
  top: -23px;
  right: 9px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.edit-mode .social-delete-btn{
  position: absolute;
  top: -23px;
  right: -17px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.edit-mode .list-li-edit-btn{
  position: absolute;
  top: -23px;
  right: 25px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.edit-mode .list-li-delete-btn{
  position: absolute;
  top: -23px;
  right: -1px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.edit-mode .list-li-duplicate-btn{
  position: absolute;
  top: -23px;
  right: -27px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.icon-edit-btn-wrapper{
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}
.icon-edit-btn-wrapper .icon-edit-btn{
  background: transparent;
  border: 0;
  outline: none;
  color: var(--white);
}
.edit-mode .icon-edit-btn-wrapper{
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: calc(-50% - 17px);
    top: 0;
    margin: 0;
    border-radius: 3px;
}
.edit-mode .icon-edit-btn-wrapper::after{
  content: "Edit Icon";
  position: absolute;
  left: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.progressbar-track{
  position: relative;
}
.progressbar-edit-btn-wrapper{
  opacity: 0;
  visibility: hidden;
}
.edit-mode .progressbar-edit-btn-wrapper{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    opacity: 1;
  visibility: visible;
}
.edit-mode .progressbar-edit-btn-wrapper::after {
  content: "Add Percent";
  position: absolute;
  right: 100%;
  top: 5px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.edit-mode .progressbar-edit-btn-wrapper .progressbar-edit-btn{
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  color: var(--edit-color);
}
.edit-mode .progressbar-track{
  overflow: visible;
}
#add-menu-btn, #add-social-link-btn{
  background: var(--edit-color);
  color: var(--white);
  padding: 3px 6px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  border: 0;
  margin-left: 0;
  align-items: center;
  gap: 5px;
}
.editable-img-anchor,
.editable-anchor{
  position: relative;
  display: inline-block;
}
.editable-img-anchor .img-anchor-button-wrapper{
  position: absolute;
  top: -26px;
  left: 0;
  display: flex;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  background: var(--edit-color);
  font-size: 13px;
  line-height: 13px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.editable-img-anchor:hover .img-anchor-button-wrapper{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.editable-img-anchor .img-anchor-edit-btn,
.editable-img-anchor .img-anchor-delete-btn{
  background: transparent;
  border: 0;
  outline: none;
  color: var(--white);
  padding: 6px 8px;
}
.editable-img-anchor .img-anchor-edit-btn i,
.editable-img-anchor .img-anchor-delete-btn i{
  font-size: 13px !important;
  line-height: 14px !important;
}
.img-anchor-button-wrapper,
.edit-icon,
.delete-icon,
#add-menu-btn, .row-edit-btn {
  display: none !important;
}
.edit-mode .img-anchor-button-wrapper,
.edit-mode .edit-icon,
.edit-mode .delete-icon,
.edit-mode #add-menu-btn {
  display: inline-flex !important;
}
.edit-mode .row-edit-btn{
  display: flex !important;
}
.row-edit-btn{
  position: absolute;
  top: -28px;
  right: 0;
  background: var(--edit-color);
  color: var(--white);
  border: 0;
  padding: 2px 12px;
  cursor: pointer;
  z-index: 100;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.row-edit-btn::after {
  content: "Desktop, Tablet & Mobile";
  position: absolute;
  right: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.row-edit-btn i{
  color: var(--white);
}
/*-- Footer --*/
.el_panel_footer_wrapper{
	text-align: center;
  border-top: 1px solid #eaeaea;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  padding-left: 250px;
	background: #fff;
  z-index: 100;
}
.el_panel_footer_wrapper p{
	font-size: 14px;
	font-weight: 500;
	color: var(--paragraph-color);
	line-height: 24px;
	margin: 0;
}
.edit-mode .tab-content>.tab-pane, .edit-mode .accordion-collapse.collapse:not(.show) {
  display: block !important;
}
.edit-mode .tab-content>.tab-pane.fade:not(.show){
  opacity: 1 !important;
}
.nav-tabs .nav-item .nav-item-toolbar,
.menu-item .edit-icon, .menu-item .delete-icon,
.social-edit-btn, .social-delete-btn, .list-li-edit-btn, .list-li-delete-btn, .list-li-duplicate-btn{
  opacity: 0 !important;
  visibility: hidden !important;
}
.edit-mode .nav-tabs .nav-item:hover .nav-item-toolbar,
.edit-mode .menu-item:hover .edit-icon, .edit-mode .menu-item:hover .delete-icon,
.edit-mode .social-icons li:hover .social-edit-btn, .edit-mode .social-icons li:hover .social-delete-btn,
.edit-mode .list-wrapper li:hover .list-li-edit-btn, .edit-mode .list-wrapper li:hover .list-li-delete-btn,
.edit-mode .list-wrapper li:hover .list-li-duplicate-btn{
  opacity: 1 !important;
  visibility: visible !important;
}
.edit-mode p, .edit-mode h1, .edit-mode h2, .edit-mode h3, .edit-mode h4, .edit-mode h5, .edit-mode h6, .edit-mode .editable-anchor{
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.edit-mode p:hover, .edit-mode h1:hover, .edit-mode h2:hover, .edit-mode h3:hover, .edit-mode h4:hover, .edit-mode h5:hover, .edit-mode h6:hover, .edit-mode .editable-anchor:hover{
  border: 1px solid var(--edit-color);
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.text-content-button-wrapper .text-content-edit-btn{
  background: transparent;
  border: 0;
  outline: none;
  font-size: 13px;
  line-height: 14px;
    color: var(--white);
}
.text-content-button-wrapper .text-content-delete-btn{
  background: transparent;
  border: 0;
  outline: none;
  font-size: 12px;
  line-height: 14px;
  color: var(--white);
}
.text-content-button-wrapper{
  position: absolute;
  top: -26px;
  left: 0;
  z-index: 100;
  display: flex;
  opacity: 0;
  visibility: hidden;
  padding: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  background: var(--edit-color);
  font-size: 13px;
    line-height: 13px;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.text-content-button-wrapper::after{
  content: "Edit Text";
  position: absolute;
  left: 100%;
  top: 5px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.edit-mode p:hover .text-content-button-wrapper,
.edit-mode span:hover .text-content-button-wrapper,
.edit-mode h1:hover .text-content-button-wrapper,
.edit-mode h2:hover .text-content-button-wrapper,
.edit-mode h3:hover .text-content-button-wrapper,
.edit-mode h4:hover .text-content-button-wrapper,
.edit-mode h5:hover .text-content-button-wrapper,
.edit-mode h6:hover .text-content-button-wrapper{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.edit-mode #row-edit{
  padding: 50px 15px 15px 15px;
  border: 1px solid var(--edit-color);
}
.add-nav-tab-btn{
  background: var(--edit-color);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  border: 0;
  margin-left: 20px;
  align-items: center;
  gap: 5px;
  display: none !important;
}
.edit-mode .add-nav-tab-btn{
  display: block !important;
}
.nav-item-toolbar, .anchor-button-wrapper{
  position: absolute;
    top: -26px;
    left: 0;
    display: flex;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: var(--edit-color);
    font-size: 13px;
    line-height: 13px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.accordion-item-toolbar, .carousel-item-toolbar, .owl-item-toolbar{
  position: absolute;
    top: -26px;
    right: 0;
    display: flex;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: var(--edit-color);
    font-size: 13px;
    line-height: 13px;
}
.image-edit-btn-wrapper{
  position: absolute;
    top: -21px;
    right: 0;
    display: flex;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: var(--edit-color3);
    font-size: 13px;
    line-height: 13px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.image-edit-btn-wrapper .image-edit-btn{
  background: transparent;
  color: var(--white);
  border: 0;
  padding: 4px 10px;
  position: relative;
}
.image-edit-btn-wrapper .image-edit-btn::after{
  content: "Upload / Replace Image";
  position: absolute;
  right: 100%;
  top: 2px;
  font-size: 13px;
  color: var(--edit-color3);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
  z-index: 1;
}
.edit-mode .image-edit-btn-wrapper{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.accordion-item-toolbar::after {
  content: "Accordion Item";
  position: absolute;
  right: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.carousel-item-toolbar::after,
.owl-item-toolbar::after {
  content: "Slider Slide Item";
  position: absolute;
  right: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.anchor-button-wrapper::after{
  content: "Edit Link & Text";
  position: absolute;
  left: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.img-anchor-button-wrapper{
  position: relative;
}
.img-anchor-button-wrapper::after{
  content: "Edit Link";
  position: absolute;
  left: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.edit-mode .menu-item .edit-icon::after{
  content: "Edit Menu";
  position: absolute;
  right: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.nav-item-toolbar::after{
  content: "Edit Tab";
  position: absolute;
  left: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-left: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.nav-item-toolbar .edit-icon, .nav-item-toolbar .delete-icon,
.anchor-button-wrapper .anchor-edit-btn, .anchor-button-wrapper .anchor-delete-btn, .anchor-button-wrapper .anchor-duplicate-btn,
.accordion-item-toolbar .btn-duplicate, .accordion-item-toolbar .btn-delete,
.carousel-item-toolbar .btn-duplicate, .carousel-item-toolbar .btn-delete,
.owl-item-toolbar .btn-duplicate, .owl-item-toolbar .btn-delete{
  background: transparent;
  border: 0;
  outline: none;
  font-size: 13px;
  line-height: 14px;
  color: var(--white);
  padding: 6px 8px;
}
.edit-mode .nav-tabs .nav-item:hover::after{
    content: '';
    border: 1px solid var(--edit-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
}
.edit-mode .nav-tabs .nav-item:hover .nav-item-toolbar,
.edit-mode .editable-anchor:hover .anchor-button-wrapper,
.edit-mode .accordion-item .accordion-item-toolbar,
.edit-mode .carousel-item .carousel-item-toolbar,
.edit-mode .owl-carousel .item .owl-item-toolbar{
  opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
p, span, h1, h2, h3, h4, h5, h6, .nav-item, #row-edit .col, #row-edit, .accordion-item, .carousel-item, .owl-carousel .item{
  position: relative;
}
.edit-mode .accordion-item{
  margin-bottom: 60px !important;
}
.edit-mode .carousel-inner .carousel-item{
  margin: 60px 0;
  border: 1px solid var(--edit-color);
}
.edit-mode .owl-carousel .item{
  margin: 60px 0;
  padding: 20px;
  border: 1px solid var(--edit-color);
}
#filters .filter-nav{
  position: relative;
}
#filters .filter-edit-icon,
#filters .filter-delete-icon{
  opacity: 0 !important;
  visibility: hidden !important;
}
#filters .filter-edit-icon{
  position: absolute;
  top: -25px;
  right: 26px;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
#filters .filter-delete-icon{
  position: absolute;
  top: -25px;
  right: 0;
  background: var(--edit-color);
  color: var(--white);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.edit-mode #filters .filter-nav:hover .filter-edit-icon,
.edit-mode #filters .filter-nav:hover .filter-delete-icon{
  opacity: 1 !important;
    visibility: visible !important;
}
.edit-mode #filters .filter-nav:hover::after {
  content: '';
  border: 1px solid var(--edit-color);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}
.edit-mode #filters .filter-nav .filter-edit-icon::after {
  content: "Edit Filter";
  position: absolute;
  right: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.add-filter-btn{
  background: var(--edit-color);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  border: 0;
  margin-left: 20px;
  align-items: center;
  gap: 5px;
  display: none !important;
}
.edit-mode .add-filter-btn {
  display: block !important;
}
#filters{
  display: flex;
}
.filter-item-select-wrapper{
  opacity: 0;
  visibility: hidden;
}
.edit-mode .filter-item-select-wrapper{
  opacity: 1;
  visibility: visible;
}
.filter-item-select{
  background: var(--white);
    color: var(--edit-color);
    padding: 3px 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--edit-color);
    outline: none;
}
#clockdiv{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.edit-mode #clockdiv{
  border: 1px solid var(--edit-color);
}
.countdown-edit-btn-wrapper{
  position: absolute;
    top: -26px;
    right: 12px;
    display: flex;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: var(--edit-color);
    font-size: 13px;
    line-height: 13px;
}
.countdown-edit-btn{
  background: transparent;
  border: 0;
  outline: none;
  font-size: 13px;
  line-height: 14px;
  color: var(--white);
  padding: 6px 8px;
}
.edit-mode .countdown-edit-btn-wrapper{
  opacity: 1;
    visibility: visible;
}
.countdown-edit-btn-wrapper::after{
  content: "Set Time";
  position: absolute;
  right: 100%;
  top: 7px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.el_countdown_checkbox label{
  text-align: center;
  font-size: 14px;
    font-weight: 500;
}
.el_countdown_checkbox input{
  height: 20px;
}
.edit-mode img{
  cursor: pointer;
}
.edit-mode .swiper-wrapper{
  display: block;
}
/*--------- Panel end -------*/
.color-switcher{
  position: absolute;
  top: 101px;
  right: -190px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  -webkit-border-top-left-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -moz-border-top-left-radius: 50px;
  -moz-border-bottom-left-radius: 50px;
  -ms-border-top-left-radius: 50px;
  -ms-border-bottom-left-radius: 50px;
  -o-border-top-left-radius: 50px;
  display: none;
  background: none repeat scroll 0 0 #fff;
  box-shadow: 0 4px 34px #0a4b550d;
  border: 1px solid #ECECEC;
  gap: 25px;
  padding: 10px 20px !important;
  -webkit-transition: all.5s;
		-o-transition: all.5s;
		-ms-transition: all.5s;
		-moz-transition: all.5s;
		transition: all.5s;
}
/* .color-switcher::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 1px;
  animation: move 5s linear infinite;
  offset-path: rect(0% auto 100% auto);
  border: 1px solid var(--primary);
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
} */
.color-switcher.active{
  right: 0;
  -webkit-transition: all.5s;
		-o-transition: all.5s;
		-ms-transition: all.5s;
		-moz-transition: all.5s;
		transition: all.5s;
}
.active-pre-template .color-switcher{
  display: flex;
}
.color-switcher h3{
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
  line-height: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.color-switcher ul{
  display: flex;
  gap: 10px;
}
#color-1, #color-2, #color-3{
  cursor: pointer;
  display: block;
  height: 33px;
  width: 33px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  position: relative;
}
#color-1::after, #color-2::after, #color-3::after{
  content: '\f00c';
  font-family: "Font Awesome 5 Free", serif;
  font-weight: 600;
  position: absolute;
  color: var(--white);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: none;
}
#color-1.active::after, #color-2.active::after, #color-3.active::after{
  display: block;
}
#color-reset{
  cursor: pointer;
  display: block;
  height: 33px;
  width: 33px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  position: relative;
  border: 2px solid #ddd;
}
#color-reset::after{
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ddd;
  transform: rotate(45deg);
}
.el_dahboard_wrapper{
  margin-bottom: 45px;
}
.el_custom_builder_wrapper{
  background-color: var(--white);
  padding: 48px 0;
  box-shadow: 0 2px 7px 0 rgba(0,0,0,.05);
  position: relative;
}
.el_dahboard_tab_wrapper{
  display: flex;
}
.el_dahboard_tab_wrapper_inner{
  width: 240px;
}
.el_dahboard_tab_wrapper .tab-content{
  width: calc(100% - 240px);
}
.el_dahboard_tab_wrapper_inner .nav-tabs{
  flex-direction: column;
  width: 100%;
  border: 0;
  gap: 5px;
  position: sticky;
  top: 10px;
}
.el_dahboard_tab_wrapper_inner .nav-tabs .nav-link{
    border: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--heading-color);
    padding: 12px 15px;
    font-size: 14px;
    line-height: 14px;
    background: transparent;
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    -ms-transition: none;
    -moz-transition: none;
    transition: none;
    font-weight: 500;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.el_dahboard_tab_wrapper_inner .nav-tabs .nav-link.active{
  background: #43b9b21a;
  color: var(--primary);
}
.el_custom_builder_btn{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.el_custom_builder_btn .el_lp_primary_btn{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  justify-content: center;
}
.unlock-popup-open .el_template_footer{
  z-index: unset;
}
.el_template_filters {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.el_filter_btn {
  padding: 6px 20px;
  border: 1px solid #dddddd;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.el_filter_btn:hover,
.el_filter_btn.active {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}

.btn-loader {
  pointer-events: none;
  opacity: 0.7;
}
.btn-loader .spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.btn-loader{
  background: var(--primary-hover) !important;
  color: var(--white) !important;
}
.el_livepreview_btn{
  background: var(--primary) !important;
  color: var(--white) !important;
  animation: shadow-pulse 1.5s infinite;
}
@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(160, 213, 2, 0.594)
  }
  100% {
    box-shadow: 0 0 7px 15px rgba(67, 185, 178, 0);
  }
}
.lightbox-open-btn{
  display: none;
}
.edit-mode .tab-content .tab-pane{
  padding: 20px;
  border: 1px solid var(--edit-color);
  margin: 60px 0;
  position: relative;
}

.edit-mode .tab-content .tab-pane::after {
  content: "Tab Content";
  position: absolute;
  right: -7px;
  top: -22px;
  font-size: 13px;
  color: var(--edit-color);
  line-height: 13px;
  margin-right: 7px;
  text-transform: capitalize;
  font-weight: 400;
  white-space: nowrap;
}
.social-icon-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 24px 20px 18px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  z-index: 2001;
  min-width: 340px;
  max-width: 95vw;
}
.social-icon-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
}
#no-data-found{
  padding: 100px 15px;
  text-align: center;
  background-color: #F8FAF5;
  border: 1px solid #ddd;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.el_landing_header_btn{
  display: none;
}
.icon-edit-popup #iconPreview{
  color: var(--primary);
}
.el_lput_btn .unlock-text, .el_lput_btn .usetemplate-text{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.el_lput_btn .usetemplate-text{
  display: none;
}
.access-active .el_lput_btn .usetemplate-text{
  display: flex;
}
.access-active .el_lput_btn .unlock-text{
  display: none;
}
.access-active .el_template_card_btn .buy_now_btn{
  display: none;
}
.el_template_card_price .el_card_purchased_text{
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--heading-color);
  display: none;
  align-items: center;
  gap: 10px;
}
.el_template_card_price .el_card_purchased_text i{
  color: var(--primary);
}
.access-active .el_template_card_price .el_card_purchased_text{
  display: flex;
}
.access-active .el_card_price_text{
  display: none;
}

/*-- Portfolio Template v2 css Start--*/
.pfv2_main_wrapper section{
  position: unset !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  z-index: 1 !important;
  opacity: 1 !important;
  -webkit-transition: -webkit-transform .6s ease !important;
  transition: -webkit-transform .6s ease !important;
  transition: transform .6s ease !important;
  transition: transform .6s ease !important;
  -webkit-transform: .6s ease !important;
  overflow-y: inherit !important;
}
.pfv2_nav_toggle_wrapper{
  position: absolute !important;
}
.pfv2_nav_toggle_wrapper #nav-list{
	visibility: visible !important;
	opacity: 1 !important;
	height: 100% !important;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item a,
.pfv2_nav_toggle_wrapper #nav-list .menu-item .menu_icon .menu_inicon{
	transform: translateX(0) !important;
	opacity: 1 !important;
  transition-delay: unset !important;
}
.pfv2_nav_bg{
	height: 100% !important;
}
/*-- Portfolio Template v2 css End--*/