@charset "UTF-8";
/*
Copyright (c) 2018
------------------------------------------------------------------
[Master Default Stylesheet]
-------------------------------------------------------------------
[Table of contents]
1. body
2. header
3. sidebar
4. canvas body           .ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay           
5. campaign box
6. dashboard
7. element property
8. adbuddy help and suggestion
9. authentication
10. profile
11. manage user
12. admin
13. editor
14. publish ad
15. help
16. autoresponder
17. landing page
18. main sidebar
19. site box
 .
 .
 .
50. footer
51. components
52. responsive
 
color scheme - 
Primary colors - #845af7
Secondary colors - #2c2f3e
Dark color - #1e202b
 
-------------------------------------------------------------------*/

/********************************************************************************************* 
1. body start
*********************************************************************************************/
body {
	background-color: #f5f7f9;
	color: #222427;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
	font-weight: normal; 
	-webkit-font-smoothing: antialiased;
}
a{
	color: #845af7;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}
a:focus,
a:hover{
	color: #845af7;
    text-decoration: none;
    outline: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: #545454;
    font-weight: 400;
}

::-moz-selection {
    background-color: #c7c7c7;
    text-shadow: none;
}

::selection {
    background-color: #c7c7c7;
    text-shadow: none;
}

@-moz-document url-prefix() {
    .site_loaded .ed_main_wrapper, .ed_main_wrapper{
        -webkit-filter: none !important;
        -moz-filter: none !important;
        -ms-filter: none !important;
        filter: none !important;
    }
}

/* preloader start */
.ed_canvas_preloader{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
}
.ed_preloader{
	position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 99999;
    height: 2px;
    display: block;
    width: 100%;
    background-color: #8847ff;
    box-shadow: none;
}
.site_loaded .ed_preloader{
    display: none;
}
.ed_preloader > .ed_preloader_inner{
	background-color: #ffffff;
}
.ed_preloader > .ed_preloader_inner:before {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: ed_preloader1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: ed_preloader1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
} 
.ed_preloader > .ed_preloader_inner:after {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: ed_preloader2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: ed_preloader2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}
@-webkit-keyframes ed_preloader1 {
	0% {
		left: -35%;
		right: 100%
	}
	60% {
		left: 100%;
		right: -90%
	}
	100% {
		left: 100%;
		right: -90%
	}
}
@keyframes ed_preloader1 {
	0% {
		left: -35%;
		right: 100%
	}
	60% {
		left: 100%;
		right: -90%
	}
	100% {
		left: 100%;
		right: -90%
	}
}
@-webkit-keyframes ed_preloader2 {
	0% {
		left: -200%;
		right: 100%
	}
	60% {
		left: 107%;
		right: -8%
	}
	100% {
		left: 107%;
		right: -8%
	}
}
@keyframes ed_preloader2 {
	0% {
		left: -200%;
		right: 100%
	}
	60% {
		left: 107%;
		right: -8%
	}
	100% {
		left: 107%;
		right: -8%
	}
}


.ed_canvas_preloader > .ed_canvas_preloader_inner,
.editor_body .ed_preloader > .ed_preloader_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.editor_body .ed_preloader > .ed_preloader_inner:before,
.editor_body .ed_preloader > .ed_preloader_inner:after{
	display:none;
}
.ed_canvas_preloader > .ed_canvas_preloader_inner > span,
.editor_body .ed_preloader > .ed_preloader_inner > span{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    margin: 0 3px;
    background-color: #845af7;
    backface-visibility: hidden;
    -webkit-transform: scale(0) translateY(0);
    -moz-transform: scale(0) translateY(0);
    -ms-transform: scale(0) translateY(0);
    transform: scale(0) translateY(0);
    -webkit-animation: ed_preloader 0.5s infinite linear;
    -moz-animation: ed_preloader 0.5s infinite linear;
    animation: ed_preloader 0.5s infinite linear;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    animation-direction: alternate;
}
@-webkit-keyframes ed_preloader{
    0%{-webkit-transform: scale(0)}
    100%{-webkit-transform: scale(1)}
}
@-moz-keyframes ed_preloader{
    0%{-moz-transform: scale(0)}
    100%{-moz-transform: scale(1)}
}
@-ms-keyframes ed_preloader{
    0%{-ms-transform: scale(0)}
    100%{-ms-transform: scale(1)}
}
@keyframes ed_preloader{
    0%{transform: scale(0)}
    100%{transform: scale(1)}
}
.ed_canvas_preloader > .ed_canvas_preloader_inner > span:nth-child(1),
.editor_body .ed_preloader > .ed_preloader_inner > span:nth-child(1){
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -ms-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.ed_canvas_preloader > .ed_canvas_preloader_inner > span:nth-child(2),
.editor_body .ed_preloader > .ed_preloader_inner > span:nth-child(2){
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.ed_canvas_preloader > .ed_canvas_preloader_inner > span:nth-child(3),
.editor_body .ed_preloader > .ed_preloader_inner > span:nth-child(3){
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    animation-delay: 0.3s;
}


.publish_progress{
    display: none;
	min-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 70px;
}
.publish_progress > .progress_bar{
	max-width: 200px;
    height: 15px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 16px;
}
.publish_progress > .progress_bar > span{
	position: absolute;
    top: -2px;
    left: -0.1px;
    bottom: -2px;
    border-radius: 10px;
    line-height: 19px;
    text-align: center;
    font-size: 12px;
    background-color: #845af7;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.publish_progress > p{
	color:#ffffff;
	text-align:center;
}

/* preloader end */

.mt_image_heading{
    font-size: 15px;
    margin: 0;
    margin-bottom: 10px;
}
/********************************************************************************************* 
1. body end
*********************************************************************************************/

/********************************************************************************************* 
2. header start
*********************************************************************************************/
.ed_header{
    position: fixed;
    top: 0;
    left: 290px;
    right: 0;
    min-height: 70px;
    background-color: #ffffff;
    z-index: 999;
    padding: 16px 50px;
    backface-visibility: hidden;
}
.ed_logo{
    display: inline-block;
    vertical-align: middle;
    min-width: 150px;
    min-height: 40px;
    position: relative;
}
.ed_logo > a{
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    position: absolute;
    top: -8px;
}
.ed_logo > a > img{
    max-width: 150px;
}
.ed_nav{
    display: inline-block;
    vertical-align: middle;
}
.ed_nav > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ed_nav > ul > li{
    display: inline-block;
}
.ed_nav > ul > li > a{
    display: block;
    padding: 8px 20px;
    color: #484848;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
}
.ed_nav > ul > li > a > i{
    vertical-align: middle;
    margin-right: 10px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.ed_nav > ul > li > a.active,
.ed_nav > ul > li > a:hover{
    color: #ffffff;
    background-color: #3a4152;
}

.ed_header_right{
    float: right;
}
.ed_nav_toggle{
    width: 34px;
    height: 34px;
    display: none;
    vertical-align: middle;
    border-radius: 50px;
    padding: 6px 8px;
    cursor: pointer;
}
.ed_nav_toggle > span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background-color: #484848;
    margin: 4px 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.nav_open .ed_nav_toggle > span:nth-child(1){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 2px 4px;
    -moz-transform-origin: 2px 4px;
    transform-origin: 2px 4px;
}
.nav_open .ed_nav_toggle > span:nth-child(2){
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    transform: translateX(10px);
    opacity: 0;
}
.nav_open .ed_nav_toggle > span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 2px -2px;
    -moz-transform-origin: 2px -2px;
    transform-origin: 2px -2px;
}

.ed_download_image img{
    max-width: 28px;
    display: inline-block;
    margin-top: 5px;
}

.ed_header_dd > .icon_wrapper{
    position: relative;
    margin-top: 3px;
}
.ed_header_dd > .icon_wrapper > .icon{
    width: 35px;
    height: 35px;
    border-radius: 40px;
    position: relative;
    display: inline-block;
}

.ed_header_dd > .icon_wrapper > .icon > img{
    width: 35px;
    height: 35px;
    border-radius: 35px;
    position: absolute;
    top: 0;
    left: 0;

}
.ed_header_dd > .icon_wrapper > .icon > span.initials{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius: 30px;
    background-color: #845af7;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.ed_header_dd > .icon_wrapper > label{
    color: #525252;
    cursor: inherit;
    margin-bottom: 0;
    padding: 3px 8px 3px 0px;
    border-radius: 0px 20px 20px 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: inline-block;
}
.ed_download_image, .ed_check_ad{
    display: inline-block;
    border-radius: 5px;
    padding-top: 4px;
    vertical-align: middle;
    border: 1px solid #676565;
    color: #676565;
    width: 34px;
    height: 34px;
    text-align: center;
}
.ed_check_ad > img{
    width: 28px;
}

/********************************************************************************************* 
2. header end
*********************************************************************************************/

/********************************************************************************************* 
3. sidebar start
*********************************************************************************************/
.ed_sidebar_wrapper{
    position: fixed;
	left:0;
    top: 0px;
    bottom: 0px;
    width: 320px;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.sidebar_hide .ed_sidebar_wrapper{
    left: -320px;
}

.ed_sidebar_nav > ul{
    list-style: none;
    padding: 0;
    margin: 0;
	background-color: #eaeaea;
}
.ed_sidebar_nav > ul::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_sidebar_nav > ul > li{
    width: 25%;
    float: left;
}
.ed_sidebar_nav > ul > li > a{
    display: block;
    padding: 15px 5px;
    color: #3f3f3f;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
}
.ed_sidebar_nav > ul > li.active > a,
.ed_sidebar_nav > ul > li > a.active,
.ed_sidebar_nav > ul > li > a:hover{
    color: #ffffff;
    background-color: #845af7;
}   
.ed_sidebar_nav > ul > li > a > img{
    display: block;
    margin: 0 auto;
    max-width: 20px;
    max-height: 20px;
    margin-bottom: 10px;
}

.ed_sidebar_content_wrapper{
    overflow: auto;
    padding: 15px;
    color: #3f3f3f;
    position: absolute;
    top: 144px;
    bottom: 0;
    left: 0;
    right: 0;
}
.ed_element_hide{
    display: none;
}
.ed_element_text.ed_element_hide{
    display: block;
}

/* element list start */
.ed_element_text{
    margin-bottom: 0;
}
.ed_element_text > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ed_element_text > ul > li{
    display: block;
    margin-right: 6px;
    margin-bottom: 9px;
}
.ed_element_text > ul > li > a{
    display: block;
    cursor: pointer;
    padding: 6px 10px;
    background-color: #f9f9f9;
    font-size: 16px;
    line-height: initial;
    color: #3f3f3f;
}
.ed_element_text > ul > li > a:hover{
    background-color: #f7f7f7;
    color: #3f3f3f;
}
.ed_element_text > ul > li > a > img{
    /* max-width: 40px; */
    max-height: 40px;
}
.ed_element_text > ul > li > a > p{
    color: inherit;
    margin: 0;
    font-size: 100%;
}
.ed_element_text > ul > li > a[data-family="Roboto"]{font-family: 'Roboto';}
.ed_element_text > ul > li > a[data-family="Open Sans"]{font-family: 'Open Sans';}
.ed_element_text > ul > li > a[data-family="Lato"]{font-family: 'Lato';}
.ed_element_text > ul > li > a[data-family="Roboto Condensed"]{font-family: 'Roboto Condensed';}
.ed_element_text > ul > li > a[data-family="Slabo 27px"]{font-family: 'Slabo 27px';}
.ed_element_text > ul > li > a[data-family="Oswald"]{font-family: 'Oswald';}
.ed_element_text > ul > li > a[data-family="Montserrat"]{font-family: 'Montserrat';}
.ed_element_text > ul > li > a[data-family="Source Sans Pro"]{font-family: 'Source Sans Pro';}
.ed_element_text > ul > li > a[data-family="Raleway"]{font-family: 'Raleway';}
.ed_element_text > ul > li > a[data-family="PT Sans"]{font-family: 'PT Sans';}
.ed_element_text > ul > li > a[data-family="Roboto Slab"]{font-family: 'Roboto Slab';}
.ed_element_text > ul > li > a[data-family="Lora"]{font-family: 'Lora';}
.ed_element_text > ul > li > a[data-family="Ubuntu"]{font-family: 'Ubuntu';}
.ed_element_text > ul > li > a[data-family="Droid Sans"]{font-family: 'Droid Sans';}
.ed_element_text > ul > li > a[data-family="Droid Serif"]{font-family: 'Droid Serif';}
.ed_element_text > ul > li > a[data-family="Playfair Display"]{font-family: 'Playfair Display';}
.ed_element_text > ul > li > a[data-family="PT Serif"]{font-family: 'PT Serif';}
.ed_element_text > ul > li > a[data-family="Indie Flower"]{font-family: 'Indie Flower';}
.ed_element_text > ul > li > a[data-family="Anton"]{font-family: 'Anton';}
.ed_element_text > ul > li > a[data-family="Lobster"]{font-family: 'Lobster';}
.ed_element_text > ul > li > a[data-family="Pacifico"]{font-family: 'Pacifico';}
.ed_element_text > ul > li > a[data-family="Abril Fatface"]{font-family: 'Abril Fatface';}
.ed_element_text > ul > li > a[data-family="Gloria Hallelujah"]{font-family: 'Gloria Hallelujah';}
.ed_element_text > ul > li > a[data-family="Rubik"]{font-family: 'Rubik';}
.ed_element_text > ul > li > a[data-family="Dancing Script"]{font-family: 'Dancing Script';}

.ed_element_text > ul > li > a[data-textdecoration="underline"]{text-decoration: underline;}
.ed_element_text > ul > li > a[data-textdecoration="line-through"]{text-decoration: line-through;}
.ed_element_text > ul > li > a[data-textdecoration="overline"]{text-decoration: overline;}

.ed_element_text > ul > li > a[data-weight="bold"]{font-weight: bold;}

.ed_element_text > ul > li > a[data-fontstyle="italic"]{font-style: italic;}

.ed_element_text > ul > li > a[data-size="36"]{font-size: 36px;}
.ed_element_text > ul > li > a[data-size="30"]{font-size: 30px;}
.ed_element_text > ul > li > a[data-size="24"]{font-size: 24px;}
.ed_element_text > ul > li > a[data-size="18"]{font-size: 18px;}
.ed_element_text > ul > li > a[data-size="14"]{font-size: 14px;}

.ed_element_shape{
    margin-bottom: 0;
}
.ed_element_shape .panel{
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 10px;
    border-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.ed_element_shape .panel-heading{
    border: none;
    padding: 0;
    color: #fff;
}
.ed_element_shape .panel-default > .panel-heading{
    background-color: transparent;
}
.ed_element_shape .panel-heading .panel-title > a{
    display: block;
    padding: 10px;
    background-color: #f7f7f7;
    font-size: 15px;
    color: #4c4c4c;
    font-weight: 500;
    position: relative;
}
.ed_element_shape .panel-heading .panel-title > a::after{
    content: "";
    position: absolute;
    top: 9px;
    right: 10px;
    background-image: url(../images/icon/down-arrow.svg);
    background-size: 14px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.ed_element_shape .panel-heading .panel-title > a[aria-expanded="true"]::after{
    opacity: 1;
    transform: rotateX(180deg);
}

.ed_element_shape .panel-body{
    padding: 0px 10px;
}

.ed_element_shape ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}
.ed_element_shape ul > li{
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 9px;
    vertical-align: top;
}
.ed_element_shape ul > li > a{
    display: block;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    width: 60px;
    text-align: center;
    border: 1px solid #e0e0e0;
    background-color: #fbfbfb;
}
.ed_element_shape ul > li > a:hover{
    border-color:#949496;
}
.ed_element_shape ul > li > a > img{ 
    max-width: 40px;
    max-height: 40px;
}
.ed_element_shape ul > li > a > p{
    color: #ffffff;
    margin: 0;
    font-size: 36px;
    line-height: 40px;
}

/* element list end */

/* background start */
.ed_element_background{
    display: none;
}
.edb_tab{
    margin-bottom: 15px;
    border-bottom: 1px solid #848484;
}
.edb_tab > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
}
.edb_tab > ul > li{
    display: table-cell;
}
.edb_tab > ul > li > a{
    display: block;
    color: #3f3f3f;
    text-align: center;
    padding: 0px 10px 15px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.6px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}
.edb_tab > ul > li.active > a,
.edb_tab > ul > li > a:hover{
    border-color: #845af7;
    box-shadow: 0px 2px 0px #845af7;
}
.ed_solid_color_list{
    margin-bottom: 15px;
}
.ed_color_group{
    width: 100%;
}
.ed_color_group > .ed_color_block{
    width: 25.5px;
    display: inline-flex;
    margin-bottom: 2px;
    text-align: center;
    padding-left: 2px;
}
.ed_color_group > .ed_color_block > .ed_js_color{
    padding: 12px;
    cursor: pointer;
    transition: all 0.1s;
    border-radius: 3px;
    display: inline-block;
}
.ed_color_group > .ed_color_block > .ed_js_color.active,
.ed_color_group > .ed_color_block > .ed_js_color:hover{
    box-shadow: 0px 0px 0px 2px #ffffff;
}
.ed_gradient_list{
    margin-bottom: 15px;
    width: 100%;
}
.ed_gradient_list::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_gradient_list > .ed_grad_color{
    padding: 25.8px;
    cursor: pointer;
    width: calc(25% - 4px);
    margin: 2px;
    float: left;
}
/* background end */

.ed_upload_image{
    border: 1px dashed #ffffff;
    padding: 50px;
    background-image: url(../images/upload.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35px;
    position: relative;
    background-color: #484848;
}
.ed_upload_image:hover{
    opacity: 0.8;
}
.ed_upload_image > .form-control{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.ed_image_list{
    margin-bottom: 15px;    
}
.ed_image_list::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_image_list > .ed_imglist_item{
    width: calc(33.3333333% - 4px);
    margin: 2px;
    float: left;
    position: relative;
}
.ed_image_list > .ed_imglist_item > .ed_image{
    position: relative;
    cursor: pointer;
}
.ed_image_list > .ed_imglist_item > .ed_image:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 10px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(-45deg) translate(0px, -10px) scale(0);
    -moz-transform: rotate(-45deg) translate(0px, -10px) scale(0);
    transform: rotate(-45deg) translate(0px, -10px) scale(0);
    z-index: 1;
}
.ed_image_list > .ed_imglist_item:hover > .ed_image:before,
.ed_image_list > .ed_imglist_item.active > .ed_image:before{
    border-color: #ffffff;
    -webkit-transform: rotate(-45deg) translate(0px, -10px) scale(1);
    -moz-transform: rotate(-45deg) translate(0px, -10px) scale(1);
    transform: rotate(-45deg) translate(0px, -10px) scale(1);
}
.ed_image_list > .ed_imglist_item > .ed_image > img{
    width: 100%;
    width: 84px;
    height: 84px;
    border-radius: 5px;
	object-fit: cover;
}

.ed_imglist_item .ed_remove_image{
    position: absolute;
    top: -2px;
    right: -2px;
    width: 15px;
    height: 15px;
    border-radius: 0px;
    padding: 2px;
    cursor: pointer;
    z-index: 1;
    background-color: #F44336;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.3s;
}
.ed_imglist_item .ed_remove_image::before,
.ed_imglist_item .ed_remove_image::after{
    content: "";
    display: block;
    height: 2px;
    background-color: #ffffff;
}
.ed_imglist_item .ed_remove_image::before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 0px 3px;
    -moz-transform-origin: 0px 3px;
    transform-origin: 0px 3px;
}
.ed_imglist_item .ed_remove_image::after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 8px 3px;
    -moz-transform-origin: 8px 3px;
    transform-origin: 8px 3px;
}
.ed_imglist_item:hover .ed_remove_image{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.ed_custom_pattern > svg{
    width: 100%;
    height: auto;
}   


.ed_background_croper{
    display: none;
}

.edp_layer_option_btn{
    margin-bottom: 15px;
}
.edp_layer_option_btn > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.edp_layer_option_btn > ul > li{
    display: inline-block;
    margin: 0 5px 10px 0;
}
.edp_layer_option_btn > ul > li > a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #d0d0d0;
    display: inline-block;
    border-radius: 3px;
}
.edp_layer_option_btn > ul > li > a:hover{
    border-color: #845af7;
}
.edp_layer_option_btn > ul > li > a > img{
    max-width: 20px;
    max-height: 22px;
}

/* sidebar toggle start */
.ed_sidebar_toggle{
    position: absolute;
    top: 74px;
    left: 100%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    z-index: 111;
    cursor: pointer;
    background-color: #2c2f3e;
    border-radius: 0 20px 20px 0;
    padding-left: 6px;
}
.ed_sidebar_toggle::after{
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url(../images/icon/arrow_right.svg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sidebar_hide .ed_sidebar_toggle::after{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
/* sidebar toggle end */

.ed_sidebar_wrapper .ed_checkbox > label{
    color: #545454;
    font-weight: 600;
}
.ed_sidebar_wrapper .ed_checkbox > input:checked ~ label{
    color: #545454;
}
.ed_sidebar_wrapper .ed_checkbox > label:before{
    border-color: #545454;
}

/********************************************************************************************* 
3. sidebar end
*********************************************************************************************/

/********************************************************************************************* 
4. canvas body start
*********************************************************************************************/
.ed_canvas_wrapper {
    margin-top: 70px;
}
.sidebar_hide .ed_canvas_wrapper{
    margin-left: 0;
}
.ed_canvas_wrapper > .ed_canvas_holder{
    padding: 50px;
    position: fixed;
    top: 70px;
    right: 0;
	left:0;
    bottom: 0;
    overflow: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.sidebar_hide .ed_canvas_wrapper > .ed_canvas_holder{
    left: 0;
}
.ed_canvas_wrapper > .ed_canvas_holder > .canvas-container{
    /*margin: 0 auto;*/
    /* transform: scale(1) !important; */
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    /* margin-bottom: 150px; */
    margin-bottom: 30px;
    /*width: auto !important;*/
    max-width: 100%;
}
.ed_canvas_wrapper > .ed_canvas_holder > .canvas-container > canvas{
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}
#ed_canvas{
    margin: 0 auto;
    display: block;
    /* background-color: #272727; */
    background: rgba(0,0,0,0) url('data:image/gif;base64,R0lGODlhJAAkAIAAAP///83NzSH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwNjcgNzkuMTU3NzQ3LCAyMDE1LzAzLzMwLTIzOjQwOjQyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMTM2REE2MjcxNkIxMUU1OTZEMUE3MjBFNzk0Qjg0MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBMTM2REE2MzcxNkIxMUU1OTZEMUE3MjBFNzk0Qjg0MSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkExMzZEQTYwNzE2QjExRTU5NkQxQTcyMEU3OTRCODQxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkExMzZEQTYxNzE2QjExRTU5NkQxQTcyMEU3OTRCODQxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAAAAAAAsAAAAACQAJAAAAlKMj3nA7d+UTLC+iYPdIE9ueRJYiQoJmRTqqAjbugYcyRrd2Xgu7/ZN+/l0OGGRGETuYMZk7/h0uoZRppLVtFaxV1SWu/V2SV9xmDwGldFnta0AADs=') repeat scroll left top;
}

.zoom_control{
    background-color: #ffffff;
    padding: 5px 20px;
    text-align: center;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 5px;
}
.zoom_control > a{
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 3px;
    background-position: center;
    background-size: 16px;
    background-repeat: no-repeat;
    vertical-align: middle;
	color: #464646;
}
.zoom_control > a:hover{
	color: #845af7;
	background-color: #f1f1f1;
}
.zoom_control > a > i{
	font-size: 22px;
    line-height: inherit;
}
.zoom_control > p{
	color: #484848;
    margin-bottom: 0;
    min-width: 36px;
    display: inline-block;
    vertical-align: middle;
}

.zoom_control > a.ed_disabled{
    opacity: 0.2;
    cursor: not-allowed;
}


.help_tips_wrapper{
    position: relative;
    margin-bottom: 20px;
    max-width: 1200px;
}
.help_tips_wrapper:after{
    content: "";
    display: table;
    width: 100%;
}
.help_tips_wrapper > .tips_adbuddy{
    width: 50px;
    float: left;
    margin-top: -10px;
    cursor: pointer;
}
.help_tips_wrapper > .tips_adbuddy > img{
    width: 50px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.help_tips_wrapper > .help_tips{
    width: calc(100% - 70px);
    float: right;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    color: #465065;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.help_tips_wrapper > .help_tips::after{
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;

}
.help_tips_wrapper > .help_tips > p{
    margin: 0;
    /* white-space: nowrap;
    overflow: hidden; */
}
.help_tips_wrapper .hide_tips{
    width: 15px;
    height: 15px;
    position: absolute;
    top: 8px;
    right: 5px;
    cursor: pointer;
    border-radius: 50px;
}
.help_tips_wrapper .hide_tips:before,
.help_tips_wrapper .hide_tips:after{
	content:"";
	display:block;
	height:2px;
	border-radius:2px;
	background-color:#ababab;
}
.help_tips_wrapper .hide_tips:after{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
    -webkit-transform-origin: 2px 3px;
    -moz-transform-origin: 2px 3px;
    -ms-transform-origin: 2px 3px;
    transform-origin: 2px 3px;
}
.help_tips_wrapper .hide_tips:before{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
    -webkit-transform-origin: 15px 4px;
    -moz-transform-origin: 15px 4px;
    -ms-transform-origin: 15px 4px;
    transform-origin: 15px 4px;
}

.help_tips_wrapper.tips_showHide > .help_tips{
    display: none;
    animation: tips_showHide 0.3s forwards;
}
@keyframes tips_showHide{
    0%{transform: translateY(0);}
    100%{transform: translateY(-10px);}
}
.help_tips_wrapper.tips_showHide > .hide_tips{
    display: none;
}
.help_tips_wrapper.tips_showHide > .tips_adbuddy > img {
    -webkit-transform: rotateY(180deg) translateY(40px);
    -moz-transform: rotateY(180deg) translateY(40px);
    -ms-transform: rotateY(180deg) translateY(40px);
    transform: rotateY(180deg) translateY(40px);
}

/********************************************************************************************* 
4. canvas body end
*********************************************************************************************/

/********************************************************************************************* 
5. campaign box start
*********************************************************************************************/
.ed_campaign_wrapper{
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 5px;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.ed_campaign_wrapper:hover{
	box-shadow: 0 0px 40px 0 rgba(0, 0, 0, 0.1);	
	-webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}
.ed_campaign_wrapper > .ed_camp_img{
    position: relative;
    /* min-height: 178px; */
    z-index: 1;
}
.ed_campaign_wrapper > .ed_camp_img > img{
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 5px 5px 0 0;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list > .list_item{
    width: 50%;
    padding: 7.5px;
    float: left;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list > .list_item:nth-child(1){
    padding-left: 5px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list > .list_item:nth-child(2){
    padding-right: 5px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list > .list_item:nth-child(3){
    padding-left: 5px;
    padding-bottom: 5px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list > .list_item:nth-child(4){
    padding-right: 5px;
    padding-bottom: 5px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_img_list > .list_item > img{
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 0px 1px #dcdcdc;
    border-radius: 5px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(136, 71, 255, 0.9);
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px 5px 0 0;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay > .ed_switch{
    position:relative;
    z-index:1;
}
.ed_campaign_wrapper:hover > .ed_camp_img > .ed_camp_overlay{
    opacity: 1;
    visibility: visible;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay > .ed_camp_overlay_center{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay > .ed_camp_overlay_center > span > i{
    color: #ffffff;
    font-size: 50px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay > .ed_camp_overlay_center > .ed_btn{
    display: table;
    margin: 10px auto;
    background-color: #ffffff;
    color: #845af7;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option{
    position: absolute;
    bottom: -37px;
    left: 8px;
    right: 8px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.ed_campaign_wrapper:hover > .ed_camp_img > .ed_camp_option{
    bottom: -47px;
    opacity: 1;
    visibility: visible;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-radius: 5px;
    display: block;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul > li{
    display: inline-block;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul > li > a{
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
    margin: 5px;
    padding-top: 5px;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    color: #ffffff;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
	background-color: #2196F3;
    border-radius: 5px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul > li > a:hover{
    background-color: #845af7;
}
.ed_campaign_wrapper:hover > .ed_camp_img > .ed_camp_option > ul > li > a{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul > li > a > i {
    font-size: 20px;
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul > li > a > span{
    position: absolute;
    left: 100%;
    top: calc(50% + 2px);
    color: #e0e0e0;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    display: none;
    white-space: nowrap;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-50%) translateX(-5px);
    -moz-transform: translateY(-50%) translateX(-5px);
    transform: translateY(-50%) translateX(-5px);
}
.ed_campaign_wrapper > .ed_camp_img > .ed_camp_option > ul > li > a:hover > span{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) translateX(0);
    -moz-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
}

.ed_campaign_wrapper > .ed_camp_content{
    text-align: center;
    padding: 10px;    
}
.ed_campaign_wrapper > .ed_camp_content > h3{
    margin: 0;
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}
.ed_campaign_wrapper > .ed_camp_content > p{
    margin: 0;
    font-size: 11px;
    color: #828282;
}

.ed_campaign_wrapper.inactive_template > .ed_camp_img{
    background-image: none;
}
/********************************************************************************************* 
5. campaign box end
*********************************************************************************************/

/********************************************************************************************* 
6. dashboard start
*********************************************************************************************/
.ed_empaty_campaign{
    padding: 100px 0px;
    margin-top: 30px;
}
.ed_empty_dashboard{
    text-align: center;
}
.ed_empty_dashboard > .icon > i{
    font-size:  100px;
    color: #e2e2e2;
}
.ed_empty_dashboard > h3{
    font-weight: 300;
    font-size: 28px;
    color: #949494;
}
.ed_empty_dashboard > p{
    color: #9e9e9e;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}
.ed_template_grid{
	clear:both;
}
/********************************************************************************************* 
6. dashboard end
*********************************************************************************************/

/********************************************************************************************* 
7. element property start
*********************************************************************************************/
.ed_property_widget{
    padding-bottom: 10px;
    margin-bottom: 15px;
    border: 1px solid #ececec;
    padding: 10px;
    background-color: #fbfbfb;
}
.ed_property_widget .row{
    margin-right: -5px;
    margin-left: -5px;
}
.ed_property_widget [class*=col-]{
    padding-right: 5px;
    padding-left: 5px;
}
.ed_sidebar_heading{
    margin: 0;
    margin-bottom: 15px;
    font-size: 17px;
    color: #545454;
    font-weight: 500;
}

.ed_sidebar_input{
    margin-bottom: 15px;
    position: relative;
}
.ed_sidebar_input > label{
    color: #545454;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.ed_sidebar_input > .form-control{
    background-color: rgba(0, 0, 0, 0.02);
    border-color: #d0d0d0;
    box-shadow: none;
    color: #545454;
    border-radius: 3px;
}
.ed_sidebar_input > .form-control:focus{
    border-color: #845af7;
}
.ed_sidebar_input > textarea.form-control{
    resize: vertical;
}
.ed_sidebar_input > select.form-control option{
    background-color: #1e2131;
}
.ed_sidebar_input > .ed_input_help{
    font-size: 11px;
    margin: 0;
    color: #b5b5b5;
    margin-top: 3px;
}

.edp_text_option > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.edp_text_option > ul > li{
    width: calc(12.5% - 3.3px);
    display: inline-block;
    vertical-align: middle;
}
.edp_text_option > ul > li > a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 25px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #d0d0d0;
    cursor: pointer;
    color: #afafaf;
}
.edp_text_option > ul > li > a.active,
.edp_text_option > ul > li > a:hover{
    border-color: #845af7;
    color: #845af7;
}
.edp_text_option > ul > li > a > img{
    max-width: 15px;
    max-height: 15px;
}

.ed_sidebar_wrapper .ed_radio > label{
    color: #545454;
    font-weight: 600;
}


/********************************************************************************************* 
7. element property end
*********************************************************************************************/

/********************************************************************************************* 
8. adbuddy help and suggestion start
*********************************************************************************************/
.ed_help_wrapper{
    display: block;
    position: fixed;
    bottom: 0px;
    right: 30px;
    min-width: 120px;
}

.ed_help_wrapper > .ed_help_suggestion{
    background-color: #ffffff;
    border-radius: 10px;
    width: 200px;
    position: absolute;
    bottom: 100%;
    right: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(10px, 10px);
    -moz-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.ed_help_wrapper .ed_helpbox_back{
    position: absolute;
    top: 8px;
    left: 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    cursor: pointer;
    background-image: url(../images/icon/arrow_sugg_back.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.ed_help_wrapper .ed_helpbox_close{
    width: 15px;
    height: 15px;
    position: absolute;
    top: 8px;
    right: 5px;
    cursor: pointer;
    border-radius: 50px;
} 
.ed_help_wrapper .ed_helpbox_close:before,
.ed_help_wrapper .ed_helpbox_close:after{
	content:"";
	display:block;
	height:2px;
	border-radius:2px;
	background-color:#ababab;
}
.ed_help_wrapper .ed_helpbox_close:after{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
    -webkit-transform-origin: 2px 3px;
    -moz-transform-origin: 2px 3px;
    -ms-transform-origin: 2px 3px;
    transform-origin: 2px 3px;
}
.ed_help_wrapper .ed_helpbox_close:before{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
    -webkit-transform-origin: 15px 4px;
    -moz-transform-origin: 15px 4px;
    -ms-transform-origin: 15px 4px;
    transform-origin: 15px 4px;
}
.ed_help_wrapper > .ed_help_suggestion:after{
    content: "";
    position: absolute;
    top: 100%;
    right: 20px;
    border-left: 20px solid transparent;
    border-right: 5px solid transparent;
    border-top: 30px solid #ffffff;
}
.ed_help_wrapper.success_suggestion > .ed_help_suggestion{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.ed_help_wrapper > .ed_help_suggestion > div{
    padding: 30px 15px 15px;
}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_category h3{
    font-size: 12px;
    margin: 0;
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #465065;

}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_category ul{
    padding-left: 20px;
    margin: 0;
}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_category ul li{
    margin-bottom: 10px;
    color: #fb8c1d;
    font-weight: 500;
    cursor: pointer;
    font-size: 12px;
}

.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_question{
    max-height: 300px;
}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_question ul{    
    padding-left: 20px;
    margin: 0;
}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_question ul li{    
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #465065;
}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_question ul li:hover{
    color: #fb8c1d;
}

.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_answer h4{
    margin: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #465065;
}
.ed_help_wrapper > .ed_help_suggestion > .ed_suggestion_answer p{
    font-size: 12px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #716f6f;
}

.ed_help_wrapper > .ed_help_suggestion .ed_help_suggestion_btn{
    text-align: center;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}
.ed_help_wrapper > .ed_help_suggestion .ed_help_suggestion_btn > a{
    border: 1px solid;
    padding: 0px 10px;
    height: 22px;
    line-height: 22px;
    border-radius: 30px;
    display: inline-block;
    margin: 0 5px;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 500;
}
.ed_help_wrapper > .ed_help_suggestion .ed_help_suggestion_btn > a:hover {
    background-color: #845af7;
    color: #ffffff;
}

.ed_help_wrapper > img{
    max-width: 120px;
    display: none;
	cursor:pointer;
}
.ed_help_wrapper > img.happy{
    display: inline-block;
}

.ed_help_wrapper.adImg_error > img.happy{
    display: none;
}

.ed_help_wrapper.adImg_error > img.sad{
    display: inline-block;
}
/* .ed_help_wrapper.adImg_success > .ed_help_text h3{
    color: #4CAF50;
}
.ed_help_wrapper.adImg_error > .ed_help_text h3{
    color: #FF5722;
} */
/********************************************************************************************* 
8. adbuddy help and suggestion end
*********************************************************************************************/

/********************************************************************************************* 
9. authentication start
*********************************************************************************************/
body.auth_body{
	background-image:url('../images/auth_bg.jpg');
}
.editor_body .ed_main_wrapper,
.auth_body .ed_main_wrapper{
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ed_auth_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 15px;
    padding-top: 10%;
    background-size: cover;
    background-position: center;
    overflow: auto;
}
.ed_auth_wrapper:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
}
.ed_auth_inner{
	margin: 0 auto;
    width: 100%;
    max-width: 600px;
	min-height:440px;
    background-image: url(../images/auth_box_bg.png);
    padding: 40px 70px 40px 120px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.ed_auth_inner:before{
	content: "";
    position: absolute;
    top: 20%;
    left: 45px;
    right: 5px;
    bottom: 25%;
    background-color: #845af7;
    border-radius: 20px;
    z-index: -1;
}
.ed_auth_inner .ed_auth_heading{
    text-align: center;
    margin-bottom: 30px;
	margin-top: -70px;
}
.ed_auth_inner .ed_auth_heading > .ed_auth_logo{
	display: inline-block;
    padding: 15px;
    border-radius: 5px;
    background-color: #845af7;
    min-width: 320px;
}
.ed_auth_inner .ed_auth_heading > h3{
    font-size: 28px;
    font-weight: 500;
    color: #222222;
    text-transform: uppercase;
}
.ed_auth_inner .ed_auth_heading > p{
    margin: 0;
    font-size: 16px;
}
.ed_auth_inner .ed_input{
    margin-bottom: 15px;
}
.ed_auth_inner .ed_input > label{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
	color:#222222;
}
.ed_auth_inner .ed_input > .form-control{
    padding: 0px 25px;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    height: 50px;
    border: 1px solid #e9e9e9;
    background-color: #f6feff;

}
.ed_auth_inner .ed_input > .form-control:focus{
    border-color: #845af7;
}


/********************************************************************************************* 
9. authentication end
*********************************************************************************************/

/********************************************************************************************* 
10. profile start
*********************************************************************************************/
.ed_profile_wrapper .ed_input{
    margin-bottom: 30px;
}
.ed_profile_wrapper .ed_input > label{
    font-weight: 400;
}
.ed_profile_wrapper .ed_input > .form-control{
    border-radius: 5px;
    box-shadow: none;
	padding: 10px 20px;
    height: auto;
	background-color:#f6feff;
	
}
.ed_profile_wrapper .ed_input > .form-control:focus{
    border-color: #845af7;
}
.ed_facebook_btn{
    border: 2px solid #385c8e;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    margin-bottom: 30px;
    color: #385c8e;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}
.ed_facebook_btn:focus, .ed_facebook_btn:hover{
    background-color: #385c8e;
    color: #ffffff;
}
.ed_facebook_btn > svg{
    width: 15px;
    height: auto;
    vertical-align: middle;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.ed_facebook_btn > svg path{
    fill: #385C8E;
}
.ed_facebook_btn:focus > svg path,
.ed_facebook_btn:hover > svg path{
    fill: #ffffff;
}

.ed_facebook_disconnect{
    color: #F44336;
    border-color: #F44336;
}
.ed_facebook_disconnect > svg path{
    fill: #F44336;
}
.ed_facebook_disconnect:focus, .ed_facebook_disconnect:hover{
    background-color: #F44336;
}

.ed_profile_pic{
    text-align: center;
    padding: 50px;
	background-color: #8847ff;
    border-radius: 10px;
}
.ed_profile_pic > .image{
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    box-shadow: 0px 0px 0px 5px #ffffff, 0px 3px 10px 5px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}
.ed_profile_pic > .image > .overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background-image: url('../images/icon/upload.svg');
    background-color: rgba(0, 0, 0, 0.3);
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
}
.ed_profile_pic > .image:hover > .overlay{
    opacity: 1;
     visibility: visible;
}
.ed_profile_pic > .image > input{
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
.ed_profile_pic > .image > img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    z-index: 0;
}
.ed_profile_pic > .image > span{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    line-height: 100px;
    text-transform: uppercase;
    display: block;
    background-color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    color: #828282;
}
.ed_profile_pic > .image > .ed_remove_profile_img{  
    position: absolute;
    top: 0px;
    right: 0px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 30px;
    background-color: #F44336;
    cursor: pointer;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
}
.ed_profile_pic > .image:hover > .ed_remove_profile_img{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}  
.ed_profile_pic > .image > .ed_remove_profile_img > svg{
    width: 10px;
    height: 10px;
    vertical-align: middle;
} 
.ed_profile_pic > h3{
    font-size: 18px;
    color: #ffffff;
} 
.ed_profile_pic > p{
    font-size: 14px;
    color: #ffffff;
}

.ed_heading_profile > h3{
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 18px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
}

.fb_app_instruction{
    padding: 15px;
    background-color: #ffffff;
    margin-bottom: 30px;    
}
.fb_app_instruction > h3{
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
}
.fb_app_instruction > ul{
    margin-bottom: 0;
    padding-left: 20px;
}
.fb_app_instruction > ul > li{
    margin-bottom: 10px;
    font-size: 13px;
    color: #636262;
}
/********************************************************************************************* 
10. profile end
*********************************************************************************************/

/********************************************************************************************* 
11. manage user start
*********************************************************************************************/
.ed_user_box_wrapper{
    background-color: #ffffff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
}
.ed_user_box_wrapper::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_user_box_wrapper > .image{
    width: 100px;
    height: 100px;
    float: left;
    position: relative;
}
.ed_user_box_wrapper > .image > img{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.ed_user_box_wrapper > .image > span{
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 100px;
    display: block;
    background-color: #845af7;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
}

.ed_user_box_wrapper > .user_detail{
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -ms-calc(100% - 100px);
    width: calc(100% - 100px);
    float: left;
    padding-left: 15px;
}
.ed_user_box_wrapper > .user_detail > h3{
    margin: 10px 0;
    font-size: 20px;
    font-weight: 400;
}
.ed_user_box_wrapper > .user_detail > p{
    color: #828282;
    font-weight: 400;
    font-size: 13px;
    word-wrap: break-word;
}
.ed_user_box_wrapper > .user_detail > .ed_user_action > a{
    margin-right: 10px;
    border: 1px solid;
    padding: 2px 10px;
    border-radius: 50px;
    color: #845af7;
}
.ed_user_box_wrapper > .user_detail > .ed_user_action > a:last-child{
    color: #F44336;
}
/********************************************************************************************* 
11. manage user end
*********************************************************************************************/

/********************************************************************************************* 
12. admin start
*********************************************************************************************/
.ed_sidebar_nav_admin > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ed_sidebar_nav_admin > ul > li{
    display: block;
}
.ed_sidebar_nav_admin > ul > li > a{
    display: block;
    padding: 15px 30px;
    color: #7e7e7e;
    font-size: 15px;
    font-weight: 600;
}
.ed_sidebar_nav_admin > ul > li > a.active,
.ed_sidebar_nav_admin > ul > li > a:hover{
    color: #ffffff;
    background-color: #845af7;
}
.admin_body .ed_main_wrapper{
    margin-left: 320px;
}
.admin_body .ed_header{
    left: 320px;
}

.ed_datatable_wrapper{
    background-color: #ffffff;
    padding: 15px;
	border-radius: 5px;
}
.ed_datatable_wrapper .form-control{
    box-shadow: none;
}
.ed_datatable_wrapper .form-control:focus{
    border-color: #845af7;
}
.ed_datatable_wrapper table tr td .ed_btn{
    width: 35px;
    height: 35px;
    line-height: 33px;
    padding: 0;
    text-align: center;
    padding-top: 6px;
}
.ed_datatable_wrapper table tr td .ed_btn > i{
    font-size: 20px;
}
.ed_datatable_wrapper table > tbody > tr > td:last-child{
    width: 120px;
}

.ed_datatable_wrapper table > tbody > tr > td
	

.ed_datatable_wrapper .pagination > li > a{
    margin: 0 2px;
    border-radius: 30px;
    outline: none;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
    background-color: #1abd9b;
    border-color: #1abd9b;
}

.ed_admin_template_filter{
    margin-bottom: 30px;
    display: inline-block;
}
.ed_admin_template_filter > p{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 20px;
    color: #797979;
}
.ed_admin_template_filter > ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
}
.ed_admin_template_filter > ul > li{
    display: inline-block;
    margin-right: 10px;
}
.ed_admin_template_filter > ul > li > a{
    display: block;
    padding: 10px 20px;
    border: 1px solid #dadada;
    color: #6e6f77;
    min-width: 135px;
    text-align: center;
    background-color: #eceef1;
    font-weight: 500;
    position: relative;
}
.ed_admin_template_filter > ul > li > a > span{
    display: block;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

.ed_admin_template_filter > ul > li > a.active{
    border-color: #845af7;
    color: #ffffff;
    background-color: #845af7;
}

.ed_template_subcat{
    display: inline-block;
    margin-left: 30px;
    margin-bottom: 30px;
}
.ed_template_subcat .ed_input > p{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 20px;
    color: #797979;
}
.ed_template_subcat .ed_input > .form-control{
    border-radius: 5px;
    box-shadow: none;
    padding: 0 15px;
    height: 42px;
    display: inline-block;
    width: 195px;
    background-color: #f6feff;
}
.ed_input.icon_input{
	position:relative;
}
.ed_input.icon_input .form-control{
	padding-right:35px;
}
.ed_input.icon_input .icon{
	position:absolute;
	top: 14px;
    right: 10px;
    width: 15px;
    height: 15px;
	background-position:center;
	background-size: 100%;
}
.ed_input.icon_input .icon.search{
	background-image: url('../images/icon/search.svg');
}


.ed_switch{
    float: right;
    margin: 10px;
    pointer-events: auto;
}
.ed_switch > input{
    position: absolute;
    left: -9999px;
}
.ed_switch > label{
    height: 20px;
    width: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    position: relative;
    border: 2px solid #fff;
    cursor: pointer;
}
.ed_switch > label::after{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #845af7;
    border-radius: 20px;
    left: 2px;
    top: 2px;
}

.ed_switch > input:checked ~ label{
    background-color: #4CAF50;
}
.ed_switch > input:checked ~ label::after{
    background-color: #ffffff;
    right: 2px;
    left: auto;
}

.inactive_template.ed_campaign_wrapper{
    box-shadow: 0px 0px 0px 2px rgba(233, 70, 70, 0.2);
    background-color: transparent;
}
.inactive_template.ed_campaign_wrapper > .ed_camp_img > .ed_camp_overlay{
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    transition: none;
    
}
.inactive_template.ed_campaign_wrapper > .ed_camp_img > img, .inactive_template.ed_campaign_wrapper > .ed_camp_content{
    opacity: 0.4;
}


/********************************************************************************************* 
12. admin end
*********************************************************************************************/

/********************************************************************************************* 
13. editor start
*********************************************************************************************/
.editor_body .ed_preloader{
    bottom: 0;
    left: 0;
    height: auto;
    background-color:#ffffff;
}
.editor_body .ed_header .ed_btn.ed_btn_white{
    background-color: #845af7;
    color: #ffffff;
}
/* editor animation start */
.editor_body{
    background-color: #ffffff;
}

.site_loaded.editor_body{
    background-color: #eaeaea;
}
.ed_canvas_wrapper > .ed_canvas_holder{
    opacity: 0;
}
.site_loaded .ed_canvas_wrapper > .ed_canvas_holder{
    opacity: 1;
}

.editor_body .ed_header{
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    left: 0px;
	padding:0;
}
.editor_body.sidebar_hide .ed_header{
    left: 0;
}
.editor_body .ed_ms_logo > a{
    border-bottom: none;
}
.site_loaded.editor_body .ed_header{
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.editor_body .zoom_control{
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -ms-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.site_loaded.editor_body .zoom_control{
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.editor_body .ed_help_wrapper{
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
    -ms-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.site_loaded.editor_body .ed_help_wrapper{
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
/* editor animation end */

.check_ad_wrapper{
    text-align: center;
    margin-bottom: 20px;
}
.check_ad_wrapper > h3 > span.icon{
    width: 100px;
    height: 100px;
    background-size: cover;
    margin-right: 15px;
    display: block;
    margin: 0 auto;
    margin-bottom: 25px;
}
.check_ad_wrapper.perfect > h3 > span.icon{
    background-image: url(../images/icon/check_ad_happy.svg);
}
.check_ad_wrapper.not_perfect > h3 > span.icon{
    background-image: url(../images/icon/check_ad_sad.svg);
}

.check_ad_wrapper > p{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #929292;
}
.ed_clip_circle {
    height: 30px;
    padding: 0 15px;
    line-height: 30px;
    text-align: center;
    background-color: #191c2e;
    display: inline-block;
    border-radius: 8px;
    color: #19bd9b;
    font-weight: 600;
}
.ed_clip_circle:hover, .ed_clip_circle:focus{
    color: #19bd9b;
}
.ed_search_box_sb{
    margin-bottom: 15px;
}
.ed_search_box_sb > .input-group > .form-control{
    background-color: rgba(0, 0, 0, 0.02);
    border-color: #d0d0d0;
    box-shadow: none;
    color: #545454;
    border-radius: 3px;
}
.ed_search_box_sb > .input-group > .form-control:focus{
    border-color: #845af7;
}
.ed_search_box_sb > .input-group > .input-group-addon{
    background-color: rgba(0, 0, 0, 0.02);
    border-color: #d0d0d0;
    box-shadow: none;
    color: #545454;
    border-radius: 0px;
    cursor: pointer;
}
.ed_sidebar_wrapper a[class*=ed_load_more_]{
    display: block;
    text-align: center;
    color: #c7c7c7;
    position: relative;
    z-index: 1;
    margin: 30px 0;
    margin-bottom: 15px;
    font-size: 12px;
}
.ed_sidebar_wrapper a[class*=ed_load_more_]:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #909090;
    z-index: -2;
}
.ed_sidebar_wrapper a[class*=ed_load_more_]:before{
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    border-radius: 50px;
    background-color: #2c2f3e;
    border: 1px solid #909090;
    color: #909090;
    line-height: 32px;
    box-shadow: none;
    z-index: -1;
    width: 100px;
    height: 30px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.ed_sidebar_wrapper a[class*=ed_load_more_]:hover{
    color: #845af7;
}
.ed_sidebar_wrapper a[class*=ed_load_more_]:hover:before{
    border-color: #845af7;
}

.change_image_btn{
    display: table;
    padding: 3px 15px;
    border-radius: 50px;
    margin: 10px auto;
    font-size: 12px;
    border: 1px solid;
    color: #a7a7a7;
}
.change_image_btn:hover, .change_image_btn:focus{
    color: #f3332d;
}


body.editor_body{
	position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.editor_body .ed_header > .ed_ms_logo{
	width: 100%;
    display: inline-block;
    vertical-align: middle;
    max-width: 290px;
}
.editor_body .ed_header > .ed_nav{
	margin-left: 15px;
}
.editor_body .ed_header > .ed_header_right{
	margin: 18px;
}
.editor_body .ed_sidebar_content_wrapper{
	top: 74px;
}
.editor_body .ed_sidebar_toggle{
	top: 72px;
    right: 100%;
    text-align: center;
    line-height: 30px;
    cursor: move;
    background-color: #464646;
    color: #ffffff;
    border-radius: 0;
    padding-left: 0;
    left: auto;
}
.editor_body .ed_sidebar_toggle::after{
	display:none;
}
.editor_body .ed_sidebar_toggle > i{
	font-size: 21px;
    line-height: inherit;
}
.editor_body .ed_sidebar_wrapper{
	right: 0px !important;
    top: 74px !important;
    /* height: 500px; */
    left: auto !important;
    bottom: 0 !important;
}
/********************************************************************************************* 
13. editor end
*********************************************************************************************/

/********************************************************************************************* 
14. publish ad start
*********************************************************************************************/
.publish_ad_wrapper .ed_input{
    margin-bottom: 30px;
}
.publish_ad_wrapper .ed_input > label{
    font-weight: 400;
}
.publish_ad_wrapper .ed_input > .form-control{
    border-radius: 0;
    box-shadow: none;
	padding: 10px 20px;
    height: auto;
}
.publish_ad_wrapper .ed_input > .form-control:focus{
    border-color: #845af7;
}
.publish_ad_wrapper .ed_input > textarea.form-control{
    padding: 20px;
    height: auto;
}

.ed_pa_box{
    padding: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 30px;
}

.ad_format_list{
    margin-bottom: 15px;
    margin-top: 10px;
}
.ad_format_list > .ad_format{
    display: inline-block;
    margin-bottom: 15px;
}
.ad_format_list > .ad_format > input{
    position: absolute;
    left: -9999px;
}
.ad_format_list > .ad_format > label{
    display: block;
    font-weight: 400;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #e4e4e4;
    padding: 30px 15px;
    margin-right: 10px;
    max-width: 200px;
    cursor: pointer;
}
.ad_format_list > .ad_format > label > h3{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.ad_format_list > .ad_format > label > p{
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #797979;
}
.ad_format_list > .ad_format > input:checked ~ label{
    border-color: #845af7;
    box-shadow: 0px 0px 0px 1px #845af7;
    background-color: #fbfbfb;
}

.carousel_tab_wrapper{
    margin-bottom: 15px;
    margin-top: 10px;
}
.carousel_tab_wrapper > .ct_tab > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.carousel_tab_wrapper > .ct_tab > ul > li{
    display: block;
}
.carousel_tab_wrapper > .ct_tab > ul > li > a{
    display: block;
    padding: 10px 20px;
    color: #8e8e8e;
    border: 1px solid #ccc;
    margin-right: 10px;
}
.carousel_tab_wrapper > .ct_tab > ul > li > a.ed_btn{
    color: #ffffff;
    border-color: #845af7;
    height: 41px;
    padding: 2px 20px;
}
.carousel_tab_wrapper > .tab-content{
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: 15px;
    background-color: #fbfbfb;
}
.carousel_tab_wrapper > .ct_tab > ul > li.active > a{
    color: #845af7;
    border-bottom-color: #845af7;
    box-shadow: inset 0px -1px, 0px 2px;
}
.carousel_tab_wrapper > .ct_tab > ul > li.active > a.ed_btn{
    color: #ffffff;
    box-shadow: none;
}
.image_uploader{
    border: 1px solid #cccccc;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    background-color: #f7f7f7;
    border-radius: 5px;
    max-width: 310px;
}
.image_uploader > input{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.image_uploader > p{
    font-size: 12px;
    padding: 10px 10%;
}
.uploader_or{
    padding: 10px;
    text-transform: uppercase;
}
.iu_display_image{
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px;
    margin-top: 30px;
}
.iu_display_image > img{
    max-width: 150px;
}
.iu_display_image > .iu_remove{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    line-height: 15px;
    border-radius: 20px;
    text-align: center;
    background-color: #F44336;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.ed_btn.ed_remove_slide{
    background-color: #F44336;
}
.existing_template{
    max-height: 375px;
}
.existing_template .ex_template{
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    max-width: 150px;
    padding: 5px;
    text-align: center;
    width: 25%;
    vertical-align: top;
}
.existing_template .ex_template > input{
    position: absolute;
    left: -9999px;
}
.existing_template .ex_template > label{
    font-weight: 500;
    margin-bottom: 0;
    cursor: pointer;
    padding-bottom: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.existing_template .ex_template > label:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
}
.existing_template .ex_template > label:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: #845af7;
    background-image: url(../images/icon/check.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    z-index: 1;
    margin: -20px 0 0 -20px;
    opacity: 0;
    visibility: hidden;
}
.existing_template .ex_template > label > img{
    width: 100%;
    margin-bottom: 5px;
}
.existing_template .ex_template > label > p{
    font-size: 12px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 5px;
}

.existing_template .ex_template > input:checked ~ label:after, 
.existing_template .ex_template > input:checked ~ label:before{
    opacity: 1;
    visibility: visible;
}
.ed_load_more_image{
    text-align: center;
    display: block;
    padding: 10px;
    color: #3e3e3e;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #e0e0e0;
    margin-top: 10px;
}
.ed_load_more_image:hover{
    color: #845af7;
}
/********************************************************************************************* 
14. publish ad end
*********************************************************************************************/

/********************************************************************************************* 
15. help start
*********************************************************************************************/
.ed_help_page_wrapper{
    margin-bottom: 15px;
}
.ed_help_page_search_box{
    text-align: center;
    margin-bottom: 50px;
}
.ed_help_page_search_box > .ed_help_page_search_input{
    max-width: 500px;
    display: block;
    margin: 0 auto;
}
.ed_help_page_search_box > .ed_help_page_search_input > input{
    height: 50px;
    border-radius: 50px;
    border: 1px solid #cccccc;
    padding: 0 20px;
}
.ed_help_page_content::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_help_page_content > .ed_help_page_sidebar{
	width: 250px;
    float: left;
	position:fixed;
	top: 120px;
	bottom: 20px;
	overflow:auto;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner{
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #e2e2e2;
}

.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > h3{
    font-size: 16px;
    margin: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #845af7;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li{
    margin-bottom: 10px;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li > a{
	display: block;
    padding: 5px 0;
    color: #475065;
    font-size: 13px;
    font-weight: 500;
    padding-left: 10px;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li.active > a,
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li > a:hover{
    color: #845af7;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li > a:before{
	content: "";
    display: inline-block;
    width: 7px;
    height: 2px;
    background-color: #828796;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 2px;
    margin-top: -2px;
}
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li.active > a:before,
.ed_help_page_content > .ed_help_page_sidebar > .ed_help_page_inner > ul > li > a:hover:before{
    background-color: #845af7;
}

.ed_help_page_content > .ed_help_page_content_body{
    width: calc(100% - 250px);
    float: right;
    padding-left: 30px; 
    color: #525252;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}
.ed_video_wrapper{
    padding: 6px;
    margin-bottom: 30px;
}
.ed_video_wrapper > h3{
    margin: 0;
    margin-bottom: 6px;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
}
.ed_video_wrapper > .ed_video{
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
    height: 0;
    border: 1px solid #dadada;
    background-color: #ffffff;
}
.ed_video_wrapper > .ed_video > iframe {
	position: absolute;
	top: 6px;
	left: 6px;
	right: 6px;
    bottom: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
}
.ed_help_heading{
    margin: 0;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}
.ed_help_page_content_body img{
    max-width: 100%;
    margin-bottom: 15px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #dadada;
}
.ed_help_page_content_body .ed_help_page_topic{
	margin-bottom: 30px;
}
/********************************************************************************************* 
15. help end
*********************************************************************************************/

/********************************************************************************************* 
16. autoresponder start
*********************************************************************************************/
.ed_autoresponder_wrapper .nav-tabs > li > a{
	color:inherit;
}
.ed_autoresponder_wrapper .nav-tabs > li.connected > a{
	border-color: #4CAF50;
	border-bottom-color: transparent;
}
.ed_autoresponder_wrapper .nav-tabs > li.connected > a:before{
	content:"";
	position:absolute;
	top:-7.5px;
	right:10px;
	width:15px;
	height:15px;
	background-color:#4CAF50;
	border-radius:15px;
}
.ed_autoresponder_wrapper .nav-tabs > li.connected > a:after{
	content: "";
    position: absolute;
    top: -2px;
    right: 13px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.ed_autoresponder_wrapper .nav-tabs > li > a > img{
	max-width: 25px;
    margin-right: 6px;
    margin-top: -3px;
}
.ed_autoresponder_wrapper .tab-content{
	padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}
.ed_autoresponder_wrapper .ed_input {
    margin-bottom: 30px;
}
.ed_autoresponder_wrapper .ed_input > label{
	font-weight: 400;
}
.ed_autoresponder_wrapper .ed_input > .form-control{
	border-radius: 0;
    box-shadow: none;
    padding: 20px;
}
.ed_autoresponder_wrapper .ed_input > .form-control:focus{
	border-color: #845af7;
}
/********************************************************************************************* 
16. autoresponder end
*********************************************************************************************/

/********************************************************************************************* 
17. landing page start
*********************************************************************************************/
.ed_landing_content_wrapper{
	margin-left: 320px;
    padding: 40px;
}
.ed_template_preview{
	padding: 50px;
    text-align: center;
    background-color: #f1f1f1;
}
/********************************************************************************************* 
17. landing page end
*********************************************************************************************/

/********************************************************************************************* 
18. main sidebar start
*********************************************************************************************/
.ed_mainSidebar_wrapper{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 290px;
    background-color: #8652fc;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
.ed_ms_logo > a{
    padding: 22px 0px;
    text-align: center;
    display: block;
    background-color: #7c35fd;
}
.ed_ms_logo > a > img{
    max-width: 100%;
    max-height: 30px;
}
.ed_mainSidebar_wrapper > .ed_ms_nav_wrapper{
    height: calc(100% - 76px);
}

.ed_ms_nav{
    padding: 20px 0;
}
.ed_ms_nav > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ed_ms_nav > ul > li{
    display: block;
}
.ed_ms_nav > ul > li > a{
    display: block;
    padding: 15px 30px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}
.ed_ms_nav > ul > li > a:hover{
    color: #ffffff;
	background-color: rgba(0, 0, 0, 0.08);
}
.ed_ms_nav > ul > li > a > i{
    vertical-align: middle;
    margin-right: 10px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.ed_ms_nav > ul > li > ul{
    list-style: none;
    padding: 0 10px 0 58px;
}
.ed_ms_nav > ul > li > ul > li > a{
    display: block;
    padding: 10px;
    color: #7e7e7e;
}
.ed_ms_nav > ul > li > ul > li > a > span{
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #a7a7a7;
    letter-spacing: 0.7px;
}
.ed_ms_nav > ul > li > ul > li > a:hover{
    color: #845af7;
}

.ed_page_title{
    margin: 0;
    font-size: 20px;
    padding: 7px 0px;
}
/********************************************************************************************* 
18. main sidebar end
*********************************************************************************************/

/********************************************************************************************* 
19. site box start
*********************************************************************************************/
.ed_prepend_campaign{
	display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.ed_prepend_campaign > .ed_campaign_remove{
	width: 20%;
    padding: 10px;
}

@media(max-width:1400px){.ed_prepend_campaign > .ed_campaign_remove{width:33.3333%;}}
@media(max-width:1024px){.ed_prepend_campaign > .ed_campaign_remove{width:50%;}}
@media(max-width:480px){.ed_prepend_campaign > .ed_campaign_remove{width:100%;}}

.ed_site_wrapper{
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
	background-color:#ffffff;
}
.ed_site_wrapper:hover{
	background-color:#ffffff;
    box-shadow: 0 0px 40px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}
.ed_site_wrapper:after{
    content: "";
    display: table;
    width: 100%;
}
.ed_site_wrapper > .ed_site_img{
    width:100%;
	position:relative;
}
.ed_site_wrapper > .ed_site_img > img{
    width: 100%;
    background-size: cover;
    background-position: center;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list > .list_item{
    width: 50%;
    padding: 3px;
    float: left;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list > .list_item:nth-child(1){
    padding-left: 5px;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list > .list_item:nth-child(2){
    padding-right: 5px;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list > .list_item:nth-child(3){
    padding-left: 5px;
    padding-bottom: 5px;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list > .list_item:nth-child(4){
    padding-right: 5px;
    padding-bottom: 5px;
}
.ed_site_wrapper > .ed_site_img > .ed_site_img_list > .list_item > img{
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 0px 1px #dcdcdc;
    border-radius: 2px;
}
.ed_site_wrapper > .ed_site_img > .ed_camp_overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
	border-radius:5px;
	background-color: rgba(134, 82, 252, 0.9);
}
.ed_site_wrapper:hover > .ed_site_img > .ed_camp_overlay{
    opacity: 1;
    visibility: visible;
}
.ed_site_wrapper > .ed_site_img > .ed_camp_overlay > .ed_camp_overlay_center{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ed_site_wrapper > .ed_site_img > .ed_camp_overlay > .ed_camp_overlay_center > .ed_btn{
    display: table;
    margin: 10px auto;
    background-color: #ffffff;
    color: #845af7;
}

.ed_site_wrapper > .ed_site_content{
    padding: 15px 10px 5px;
	text-align:center; 
}
.ed_site_wrapper > .ed_site_content > h3{
    margin: 0;
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}
.ed_site_wrapper > .ed_site_content > p{
    margin: 0;
    font-size: 11px;
    color: #828282;
}

.ed_site_wrapper.inactive_template > .ed_site_img{
    background-image: none;
}


.ed_site_wrapper > .ed_site_option{
    position: absolute;
    bottom: 18px;
    left: 8px;
    right: 8px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.ed_site_wrapper:hover > .ed_site_option {
    bottom: 14px;
    opacity: 1;
    visibility: visible;
}
.ed_site_wrapper > .ed_site_option > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-radius: 5px;
    display: block;
}
.ed_site_wrapper > .ed_site_option > ul > li{
    display: inline-block;
}
.ed_site_wrapper > .ed_site_option > ul > li > a{
	display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
    margin: 5px;
    padding-top: 5px;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    color: #ffffff;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color: #2196F3;
    border-radius: 5px;
}
.ed_site_wrapper:hover > .ed_site_option > ul > li > a{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.ed_site_wrapper > .ed_site_option > ul > li > a:hover{
    background-color: #845af7;
}
.ed_site_wrapper > .ed_site_option > ul > li > a > span{
    font-size: 12px;
    display: block;
    font-weight: 600;
	display:none;
}
.ed_site_wrapper > .ed_site_option > ul > li > a > i {
    font-size: 20px;
}

/********************************************************************************************* 
19. site box end
*********************************************************************************************/

.ed_datatable_wrapper.ed_facebook_published table tr td .ed_btn{
	width: inherit;
    height: 34px;
    line-height: 34px;
    padding: 0px 25px;
}
.ed_datatable_wrapper.ed_facebook_published img{
    max-width: 80px;
    border: 1px solid #d4d4d4;
    padding: 3px;
    border-radius: 5px;
}
.ed_popup_wrapper .fb_ad_detail > h3{
	margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #845af7;
}
.ed_popup_wrapper .fb_ad_detail > .ed_input{
	display:flex;
	width:100%;
	margin-bottom: 10px;
    background-color: #f9f9f9;
}
.ed_popup_wrapper .fb_ad_detail > .ed_input > label,
.ed_popup_wrapper .fb_ad_detail > .ed_input > p{
	flex-grow:1;
	width: 50%;
    padding: 12px;
    margin: 0;
}





/********************************************************************************************* 
51. components start
*********************************************************************************************/
/* button start */
.ed_btn{
    height: 38px;
    line-height: 38px;
    display: inline-block;
    padding: 0px 35px;
    border-radius: 4px;
    background-color: #845af7;
    color: #ffffff;
    box-shadow: none;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    -webkit-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ed_btn:hover, .ed_btn:focus{
    color: #ffffff;
    outline: none;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
.ed_btn.ed_btn_lg{
    padding: 0px 35px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
}
.ed_btn.ed_btn_sm{
    padding: 0px 15px;
    font-size: 11px;
    height: 27px;
    line-height: 27px;
}

.ed_btn.ed_btn_white{
    background-color: #ffffff;
    color: #475065;
}

.ed_btn > i{
	font-size: 17px;
    line-height: inherit;
    vertical-align: middle;
    margin-right: 2px;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}
/* button end */

.ed_main_wrapper{
    padding: 50px;
    padding-top: 102px;
	margin-left:290px;
}
.editor_body .ed_main_wrapper{
	margin-left:0px;
}

.ed_section{
    padding: 20px 0;
}

/* heading start */
.ed_heading{
    margin-bottom: 30px;
    margin-top: -10px;
}
.ed_heading > h3{
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    color: #475065;
    line-height: 34px;
}
.ed_heading > h3 > i{
    vertical-align: middle;
    margin-right: 5px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    color: #845af7;
}
.ed_heading.small > h3{
    font-size: 18px;
}
.ed_heading.medium > h3{
    font-size: 18px;
}
.ed_heading.large > h3{
    font-size: 30px;
}
/* heading end */

/* radio start */
.ed_radio_group.inline .ed_radio{
    display: inline-block;
    margin-right: 15px;
}
.ed_radio{
    margin-bottom: 10px;
}
.ed_radio > input{
    position: absolute;
    left: -9999px;
}
.ed_radio > label{
    color: #545454;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}
.ed_radio > label::before{
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 2px solid #a0a0a0;
    margin-right: 8px;
    border-radius: 15px;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    transform: translateY(2px);
}
.ed_radio > label::after{
    content: "";
    position: absolute;
    top: 6px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    display: inline-block;
    background-color: #845af7;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    transform: scale(3);
    opacity: 0;
}
.ed_radio > input:checked ~ label::after{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
/* radio end */



/* colorPicker start */
.ed_colorPicker_wrapper{
    width: 100px;
    height: 30px;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}
.ed_colorPicker_wrapper:after{
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    border-radius: 3px;
    display: block;
    background-color: red;
    background: rgba(0,0,0,0) url('data:image/gif;base64,R0lGODlhJAAkAIAAAP///83NzSH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwNjcgNzkuMTU3NzQ3LCAyMDE1LzAzLzMwLTIzOjQwOjQyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMTM2REE2MjcxNkIxMUU1OTZEMUE3MjBFNzk0Qjg0MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBMTM2REE2MzcxNkIxMUU1OTZEMUE3MjBFNzk0Qjg0MSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkExMzZEQTYwNzE2QjExRTU5NkQxQTcyMEU3OTRCODQxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkExMzZEQTYxNzE2QjExRTU5NkQxQTcyMEU3OTRCODQxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAAAAAAAsAAAAACQAJAAAAlKMj3nA7d+UTLC+iYPdIE9ueRJYiQoJmRTqqAjbugYcyRrd2Xgu7/ZN+/l0OGGRGETuYMZk7/h0uoZRppLVtFaxV1SWu/V2SV9xmDwGldFnta0AADs=') repeat scroll left top;
    background-size: 50%;
    z-index: 0;
}
.ed_colorPicker_wrapper > input{
    width: 100%;
    height: 30px;
    border: none;
    font-size: 13px;
    outline: none;
    text-align: left;
    padding: 6px;
    z-index: 2;
    position: relative;
    background-color: transparent;
    padding-right: 35px;
}
.ed_colorPicker_wrapper > span{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    z-index: 1;
    border-radius: 3px;
    box-shadow: 0px 0px 5px #c5c5c5;
}
.colorpicker{
    animation: colorpicker 0.3s;
    transform-origin: top;
}
@keyframes colorpicker{
    0%{transform: translateY(-10px) rotateX(90deg);}
    100%{transform: translateY(0px) rotateX(0deg);}
}

.colorpicker-saturation {
    width: 200px;
    height: 200px;
}

.colorpicker-hue,
.colorpicker-alpha {
    width: 30px;
    height: 200px;
}

.colorpicker-color,
.colorpicker-color div {
    height: 30px;
}
/* colorPicker end */

/* select picker start */
.ed_selectpicker .bootstrap-select .dropdown-toggle:focus, .ed_selectpicker > .form-control:focus{
    box-shadow: none;
    outline: none !important;
}
.ed_selectpicker > .open > .btn-default, .ed_selectpicker .btn-default{
    background-color: #1e2131;
    border-radius: 0;
    border-color: #464646;
    outline: none;
    color: #d3d3d3;
}
.open>.dropdown-toggle.btn-default:hover, .ed_selectpicker > .open > .btn-default:focus, .ed_selectpicker .btn-default:focus{
    background-color: #1e2131;
    border-color: #d3d3d3;
    outline: none;
    color: #d3d3d3;
    box-shadow: none;
}

.ed_selectpicker > .bootstrap-select .dropdown-menu{
    background-color: #1e2131;
}
.ed_selectpicker > .bootstrap-select .dropdown-menu > li > a{
    color: #d3d3d3;
}
.ed_selectpicker > .bootstrap-select .dropdown-menu > li.active > a, .ed_selectpicker > .bootstrap-select .dropdown-menu > li > a:hover{
    background-color: #845af7;
    color: #ffffff;
}
.ed_selectpicker .bs-searchbox .form-control{
    background-color: #282b3d;
    border-color: #5d5d5d;
    border-radius: 0;
    color: #d3d3d3;
}
.ed_selectpicker .bs-searchbox .form-control:focus{
    box-shadow: none;
}
.ed_selectpicker .bootstrap-select.btn-group .no-results{
    background-color: transparent;
    color: #828282;
    text-align: center;
}
/* select picker end */

/* range slider start */
.ed_range_slider{
    max-width: 100%;
}
.ed_range_slider > label{
    display: inline-block;
    color: #545454;
    margin-right: 10px;
	vertical-align:middle;
}
.ed_range_slider > label > input{
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    border-bottom: 1px dashed #797979;
    max-width: 45px;
    text-align: center;
}
.ed_range_slider input[type=range] {
    -webkit-appearance: none;
    margin: 10px 0;
    width: 130px;
    background-color: transparent;
    display: inline-block;
	vertical-align:middle;
}
.ed_range_slider input[type=range]:focus {
    outline: none;
}
.ed_range_slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background-color: #484848;
    border-radius: 25px;
    outline: none;
}
.ed_range_slider input[type=range]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background-color: #845af7;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5px;
}
.ed_range_slider input[type=range]:active::-webkit-slider-thumb {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    outline: none;
}
.ed_range_slider input[type=range]:focus::-moz-slider-runnable-track, .ed_range_slider input[type=range]:focus::-webkit-slider-runnable-track {
    outline: none;
}
.ed_range_slider input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background-color: #484848;
    border-radius: 25px;
    outline: none;
}
.ed_range_slider input[type=range]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background-color: #845af7;
    cursor: pointer;
    border: none;
}
.ed_range_slider input[type=range]:focus::-moz-range-track, .ed_range_slider input[type=range]:focus::-moz-range-thumb {
    -webkit-outline: none;
    -moz-outline: none;
    outline: none;
}
.ed_range_slider input[type=range]:active::-moz-range-thumb {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}
.ed_range_slider input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 20px 0;
    color: transparent;
}
.ed_range_slider input[type=range]::-ms-fill-lower {
    background-color: #ffffff;
    border: 0px solid #000101;
    border-radius: 50px;
    margin-left: 3px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    
}
.ed_range_slider input[type=range]::-ms-fill-upper {
    background-color: #ffffff;
    border: 0px solid #000101;
    border-radius: 50px;
    margin-right: 3px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.ed_range_slider input[type=range]::-ms-thumb {
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background-color: #845af7;
    cursor: pointer;
    border: none;
}
.ed_range_slider input[type=range]:active::-ms-thumb {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}
.ed_range_slider input[type=range]:focus::-ms-fill-lower {
    background-color: #ffffff;
}
.ed_range_slider input[type=range]:focus::-ms-fill-upper {
    background-color: #ffffff;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	
}
@supports (-ms-accelerator:true) {
	/* IE Edge 12+ CSS styles go here */ 
}

/* range slider end */

/* dropdown menu start */
.dropdown-menu{
    border: none;
    margin-top: 10px;
    padding: 15px 10px;
    /* opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    display: block; */
}
.dropdown-menu:before{
    content: "";
    position: absolute;
    top: -8px;
    left: 5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}   
.dropdown-menu.dropdown-menu-right:before{
    left: auto;
    right: 22px;
}
.dropdown-menu > li{
    display: block;
}
.dropdown-menu > li > a{
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
}

.open .dropdown-menu{
    /* display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px); */
}
/* dropdown menu end */

/* custom scrollbar start */

.ed_custom_scrollbar{
    padding-right: 0;
}
.mCustomScrollBox{
    padding-right: 0px;
}

.editor_body .mCustomScrollBox{
	padding-right: 15px;
}

.mCSB_scrollTools{
    width: 6px;
    right: 4px;
}
.mCSB_scrollTools .mCSB_draggerRail{
    width: 4px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width: 6px;
    background-color: #ffffff;
}
.editor_body .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background-color: #845af7;
}
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color: #ffffff;
}

.editor_body .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .editor_body .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .editor_body .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color: #845af7;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0px;
}
/* custom scrollbar end */

/* popup start */
.ed_popup_wrapper {
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
    -webkit-transform: translateY(-20px) scale(0.95);
    -moz-transform: translateY(-20px) scale(0.95);
    -ms-transform: translateY(-20px) scale(0.95);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    border-radius: 10px;
}
.mfp-ready .ed_popup_wrapper{
    -webkit-transform: translateY(0px) scale(1);
    -moz-transform: translateY(0px) scale(1);
    -ms-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    opacity: 1;
    visibility: visible;
}
.ed_popup_heading{
    padding: 15px 30px;
    background-color: #8652fc;
    border-radius: 5px 5px 0 0;
}
.ed_popup_heading > h3{
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
}
.ed_popup_body{
    padding: 30px;
    border: 1px solid #dadada;
    border-top: none;
    border-radius: 0px 0px 5px 5px;
    background-color: #ffffff;
}

.mfp-close:active, .mfp-close{
    right: 5px;
    top: 5px;
}
.mfp-bg{
    background: #000000;
}
.mfp-close-btn-in .mfp-close{
    color: #fff;
}

.ed_popup_wrapper .ed_input {
    margin-bottom: 25px;
}
.ed_popup_wrapper .ed_input label{
    font-weight: 400;
}
.ed_popup_wrapper .ed_input .form-control{
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: none;
    margin-bottom: 25px;
    height: auto;
    border-radius: 5px;
    background-color: #f6feff;
}
.ed_popup_wrapper .ed_input .form-control:focus{
    border-color: #845af7;
}
.ed_popup_wrapper .ed_input select.form-control{
    padding: 0 20px;
    height: 42px;
}

.ed_popup_wrapper .ed_btn.mfp-close{
    position: relative;
    width: auto;
    opacity: 1;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    font-family: inherit;
    vertical-align: super;
    margin-left: 15px;
}

.ed_ad_preview_popup{
    max-width: 950px;
}
.ed_popup_wrapper.ed_ad_preview_popup .ed_input .form-control{
    padding: 6px 15px;
    font-size: 16px;
}
.ed_popup_wrapper.ed_ad_preview_popup .ed_input select.form-control{
    padding: 0 15px;
    height: 36px;
}

.ed_popup_wrapper .ed_input.ed_small_input .form-control{
    padding: 6px 15px;
    font-size: 16px;
}
.ed_popup_wrapper .ed_input.ed_small_input select.form-control{
    padding: 0 15px;
    height: 36px;
}

.ed_ad_preview{
    border: 1px solid;
    border-color: #e5e6e9 #dfe0e4 #d0d1d5;
    border-radius: 3px;
    position: relative;
    word-wrap: break-word;
    margin-bottom: 15px;
    padding: 12px;
}
.ed_ad_preview .adp_page_detail::after{
    content: "";
    display: table;
    width: 100%;
}
.ed_ad_preview .adp_page_detail > .image{
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.ed_ad_preview .adp_page_detail > .image > img{
    width: 40px;
    height: 40px;
}
.ed_ad_preview .adp_page_detail > .detail{
    display: inline-block;
}
.ed_ad_preview .adp_page_detail > .detail > h3{
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
    color: #365899;
}
.ed_ad_preview .adp_page_detail > .detail > p{
    font-size: 12px;
    color: #90949c;
}
.ed_ad_preview .adp_page_detail > .detail > p > span{
    display: inline-block;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.ed_ad_preview .adp_page_detail > .detail > p > img{
    display: inline-block;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}
.ed_ad_preview .adp_page_detail > .page_like_btn{
    float: right;
    margin-top: 6px;
}

.ed_ad_preview .adp_ad_box{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset, 0 1px 4px rgba(0, 0, 0, .1);
    margin-bottom: 5px;
}
.ed_ad_preview .adp_ad_box > .adimage{
    border: 1px solid #dadada;
}
.ed_ad_preview .adp_ad_box > .adimage > img{
    width: 100%;
}
.ed_ad_preview .adp_ad_box > .addetail{
    padding: 12px;
}
.ed_ad_preview .adp_ad_box > .addetail > h3{
    font-size: 18px;
    color: #1d2129;
    margin: 0;
    margin-bottom: 5px;
}
.ed_ad_preview .adp_ad_box > .addetail > p{
    font-size: 12px;
}
.ed_ad_preview .adp_ad_box > .addetail > .learn_more_btn:after{
    content: "";
    display: table;
    width: 100%;
}
.ed_ad_preview .adp_ad_box > .addetail > .learn_more_btn > p{
    float: left;
    color: #90949c;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 25px;
    margin-bottom: 0;
}
.ed_ad_preview .adp_ad_box > .addetail > .learn_more_btn > a{
    float: right;
    background-color: #f6f7f9;
    color: #4b4f56;
    border: 1px solid #ced0d4;
    border-radius: 2px;
    box-sizing: content-box;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    justify-content: center;
    padding: 0 8px;
    position: relative;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    line-height: 22px;
}

/* mobile view start */
.ed_ad_preview.ed_fb_mobile_view{
    padding: 12px 25%;
}
.ed_ad_preview.ed_fb_mobile_view .adp_ad_box{
    border-radius: 8px;
    overflow: hidden;
}
.ed_ad_preview.ed_fb_mobile_view .adp_page_detail{
    border-top: 10px solid #dddfe2;
    padding-top: 20px;
}
.ed_ad_preview.ed_fb_mobile_view .adp_page_detail > .page_like_btn{
    background-image: url('../images/ad_preview/option_like_btn.jpg');
    background-size: contain;
}
.ed_ad_preview.ed_fb_mobile_view .adp_page_detail > .page_like_btn > img{
    opacity: 0;
}
.ed_ad_preview.ed_fb_mobile_view > img{
    border-top: 1px solid #ccc;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    padding: 10px 0;
    border-bottom: 10px solid #dddfe2;
}
.ed_ad_preview.ed_fb_mobile_view .adp_ad_box > .addetail > h3{
    font-size: 14px;
}
/* mobile view end */

/* right column view start */
.ed_ad_preview.ed_fb_right_column_view{
    padding: 12px 25%;
}
.ed_ad_preview.ed_fb_right_column_view .adp_ad_box{
    box-shadow: none;
}
.ed_ad_preview.ed_fb_right_column_view .adp_ad_box > .addetail > h3{
    font-size: 12px;
    color: #3b5998;
    font-weight: 600;
}
.ed_ad_preview.ed_fb_right_column_view .adp_ad_box > .addetail > p{
    color: #3b5998;
    margin-bottom: 0;
}

.ed_ad_preview.ed_fb_right_column_view > img,
.ed_ad_preview.ed_fb_right_column_view .adp_ad_box > .addetail > .learn_more_btn > a,
.ed_ad_preview.ed_fb_right_column_view .adp_page_detail,
.ed_ad_preview.ed_fb_right_column_view .adp_text{
    display: none;
}

/* right column view end */


.ed_canvas_size{
    text-align: center;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
}
.ed_canvas_size > .ed_size{
    text-align: center;
    flex-grow: 1;
    margin-bottom: 15px;
}
.ed_canvas_size > .ed_size > input{
    position: absolute;
    left: -9999px;
}
.ed_canvas_size > .ed_size > label{
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
}
.ed_canvas_size > .ed_size > label > p{
    font-size: 14px;
    margin-bottom: 15px;
}   
.ed_canvas_size > .ed_size > label > h3{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.ed_canvas_size > .ed_size > input:checked ~ label{
    border-color: #845af7;
}
.ed_canvas_size > .ed_size > input:checked ~ label > p,
.ed_canvas_size > .ed_size > input:checked ~ label > h3{
    color: #845af7;
}


/* popup end */

/* help icon start */
.ed_help_icon{
    display: inline-block;
    position: relative;
    margin-left: 5px;
}
.ed_help_icon > .hi_icon{
    width: 15px;
    height: 15px;
    line-height: 16px;
    display: inline-block;
    border-radius: 15px;
    text-align: center;
    background-color: rgba(90, 121, 188, 0.85);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: help;
}
.ed_help_icon > .hi_icon::after{
    content: "?";
}
.ed_help_icon > .hi_text{
    position: absolute;
    bottom: 100%;
    left: 50%;
    background-color: #ffffff;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.12);
    padding: 10px;
    border-radius: 5px;
    z-index: 9;
    width: 200px;
    font-size: 12px;
    color: #616161;
    letter-spacing: 0.4px;
    word-wrap: break-word;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,-20px);
    -moz-transform: translate(-50%,-20px);
    -ms-transform: translate(-50%,-20px);
    transform: translate(-50%,-20px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    
}
.ed_help_icon > .hi_icon:hover ~ .hi_text{
    opacity: 1;
    visibility: visible; 
    -webkit-transform: translate(-50%,-10px);
    -moz-transform: translate(-50%,-10px);
    -ms-transform: translate(-50%,-10px);
    transform: translate(-50%,-10px);
}
.ed_help_icon > .hi_text::after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}
/* help icon end */

/* checkbox start */
.ed_checkbox{
    display: block;
    margin-bottom: 15px;
}   
.ed_checkbox > input{
    position: absolute;
    left: -9999px;
}
.ed_checkbox > label{
    position: relative;
    color: #222222;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    opacity: 0.7;
}
.ed_checkbox > label:before{
    content: "";
    width: 13px;
    height: 13px;
    display: inline-block;
    border: 1px solid #e9e9e9;
    background-color: #f6feff;
    border-radius: 2px;
    margin-right: 8px;
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    transform: translateY(1px);
}

.ed_checkbox > label:after{
    content: "";
    width: 11px;
    height: 7px;
    display: inline-block;
    border-left: 3px solid #845af7;
    border-bottom: 3px solid #845af7;
    border-radius: 3px;
    position: absolute;
    left: 3px;
    top: 3px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(-45deg) scale(0);
    -moz-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
}
.ed_checkbox > input:checked ~ label{
    opacity: 1;
}

.ed_checkbox > input:checked ~ label:after{
    -webkit-transform: rotate(-45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}
/* checkbox end */

/* alert box start */
.toaster{
    width: auto !important;
    max-width: 50%;
}
.toaster .alert{
    border-radius: 5px;
    border: none;
    -webkit-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    margin-bottom: 0;
    position: relative;
    margin-bottom: 10px;
}
@-webkit-keyframes alert_anim{
    0%{-webkit-transform: translateY(-50px);}
    100%{-webkit-transform: translateY(0px);}
}
@-moz-keyframes alert_anim{
    0%{-moz-transform: translateY(-50px);}
    100%{-moz-transform: translateY(0px);}
}
@keyframes alert_anim{
    0%{transform: translateY(-50px);}
    100%{transform: translateY(0px);}
}
.alert-danger {
    color: #ffffff;
    background-color: #F44336;
}
.alert-success {
    color: #ffffff;
    background-color: #4CAF50;
}
.alert button.close{
    outline: none;
    opacity: 0.8;
    font-weight: 100;
    line-height: 0px;
    position: absolute;
    top: 45%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* alert box end */

/* load more button start */
.ed_load_more{
    margin: 15px 0;
    position: relative;
    text-align: center;
}
.ed_load_more:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c7c7c7;
    z-index: -1;
}
.ed_load_more .ed_btn{
    background-color: #ffffff;
    border: 1px solid #c7c7c7;
    color: #909090;
    line-height: 32px;
    box-shadow: none;
    transform: none;
}
.ed_load_more .ed_btn:hover{
    color: #845af7;
    border-color: #845af7;
}
/* load more button end */


.padding-bottom-0{padding-bottom: 0px;}.padding-bottom-10{padding-bottom: 10px;}.padding-bottom-20{padding-bottom: 20px;}.padding-bottom-30{padding-bottom: 30px;}
.padding-bottom-40{padding-bottom: 40px;}.padding-bottom-50{padding-bottom:  50px;}.padding-top-0{padding-top: 0px;}.padding-top-10{padding-top: 10px;}.padding-top-20{padding-top: 20px;}.padding-top-30{padding-top: 30px;}.padding-top-40{padding-top: 40px;}.padding-top-50{padding-top:  50px;}.margin-top-0{margin-top: 0px;}.margin-top-10{margin-top: 10px;}.margin-top-20{margin-top: 20px;}.margin-top-30{margin-top: 30px;}.margin-top-40{margin-top: 40px;}.margin-top-50{margin-top:  50px;}
.margin-bottom-0{margin-bottom: 0px;}.margin-bottom-10{margin-bottom: 10px;}.margin-bottom-20{margin-bottom: 20px;}.margin-bottom-30{margin-bottom: 30px;}.margin-bottom-40{margin-bottom: 40px;}.margin-bottom-50{margin-bottom:  50px;}.margin-right-10{margin-right: 10px;}.margin-right-20{margin-right: 20px;}.margin-right-30{margin-right: 30px;}.margin-right-40{margin-right: 40px;}.margin-right-50{margin-right: 50px;}.margin-left-10{margin-left: 10px;}.margin-left-20{margin-left: 20px;}.margin-left-30{margin-left: 30px;}.margin-left-40{margin-left: 40px;}.margin-left-50{margin-left: 50px;}

/********************************************************************************************* 
51. components end
*********************************************************************************************/

/********************************************************************************************* 
52. responsive start
*********************************************************************************************/
@media (max-width: 1440px) {
.ed_sidebar_wrapper{
    width: 280px;
}
.sidebar_hide .ed_sidebar_wrapper {
    left: -280px;
}
.ed_sidebar_nav > ul > li > a{
    padding: 20px 5px;
}
.ed_sidebar_nav > ul > li > a > img{
    margin-bottom: 0;
}
.ed_sidebar_nav > ul > li > a > span{
    display: none;
}
.ed_canvas_wrapper{
    margin-left: 280px;
}
.ed_element_shape ul > li > a > img{
    max-height: 25px;
}
.ed_image_list > .ed_imglist_item > .ed_image > img{
	width: auto;
    height: auto;
}
.ed_color_group > .ed_color_block{
    width: 20.5px;
}
.ed_color_group > .ed_color_block > .ed_js_color{
    padding: 11px;
}
.edb_tab > ul > li > a{
    padding: 0px 5px 15px;
    font-size: 10px;
    letter-spacing: 0.3px;
}
.ed_element_shape .panel{
    margin-bottom: 8px;
}
.ed_element_shape .panel-heading .panel-title > a{
    font-size: 14px;
    padding: 8px;
}
.edp_text_option > ul > li > a{
    width: 28px;
    height: 28px;
    line-height: 26px;
}
.edp_text_option > ul > li > a > img {
    max-width: 12px;
    max-height: 12px;
}
.ed_help_wrapper > img{
    max-width: 90px;
}
.ed_help_wrapper > .ed_help_suggestion, .ed_help_wrapper > .ed_help_text{
    right: 40px;
    width: 180px;
}
.ed_help_wrapper > .ed_help_suggestion h3, .ed_help_wrapper > .ed_help_text h3{
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
}
    
}

/* Landscape phone to portrait tablet */
@media (max-width: 768px) {
.ed_nav_toggle{
    display: inline-block;
}
.ed_heading{
	margin-top:30px;
}
.ed_nav{
    position: fixed;
    top: 0;
    left: -250px;
    bottom: 0;
    width: 250px;
    background-color: #2c2f3e;
    z-index: 99;
    margin: 0;
    padding: 20px 0;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav_open .ed_nav{
    left: 0;
}
.ed_nav > ul > li {
    display: block;
}
.ed_nav > ul > li > a {
    padding: 12px 20px;
}

.ed_header_dd{
    display: inline-block;
}
.ed_header_dd > .icon_wrapper > label{
    display: none;
}
.ed_section{
    padding: 30px 0;
}

.ed_auth_inner{
    padding: 15px;
}
.ed_auth_inner .ed_auth_heading > h3{
    font-size: 25px;
}
.ed_auth_inner .ed_input > .form-control{
    padding: 20px;
}

.ed_header{
    left: 0;
    padding: 16px 20px;
}
.ed_main_wrapper{
    margin-left: 0;
    padding: 20px;
    padding-top: 40px;
}
.ed_mainSidebar_wrapper{
    left: -300px;
    -webkit-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav_open .ed_mainSidebar_wrapper{
    left: 0;
}


}



/* Landscape phones and down */
@media (max-width: 480px) {

}
/********************************************************************************************* 
52. responsive end
*********************************************************************************************/
