@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900');
body {
    margin: 0;
}
*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
a, button{
    text-decoration: none !important;
    outline: none;
    transition: .5s all ease;
}
img{
    vertical-align: top;
    max-width: 100%;
}
.btn:disabled {
    opacity: .5;
}
.appHeaderRight button.btn {
    margin-left: 14px;
}
.titleBox h1 a {
    font-size: 18px;
}
.leftsidebar{
    min-height: calc(100vh);
    background: #ffffff;
    font-weight: 300;
    padding: 0;
    width: 280px;
    border-right: 1px solid #e3e3e3;
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
}
.topBack {
    box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
    position: relative;
    z-index: 9;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}
.topBack a {
    background: #fff;
    width: 100%;
    display: block;
    padding: 18px 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.topBack a img {
    margin-right: 25px;
    margin-top: 2px;
    vertical-align: top;
}
.sidebarPanel ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.sidebarPanel li a {    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 13px;
    background: transparent;
    color: #4035c8;
    border-right: 3px solid transparent;
    font-size: 14px;
    font-weight: 400;
}
.sidebarPanel li a:hover, .sidebarPanel li.active a {
    /*background: #222222;*/
    border-color: #4035c8;
}
.sidebarPanel li a span.list-section-title {
    margin-right: 8px;
}

.sidebarPanel li a img {
    margin-right: 15px;
    vertical-align: middle;
}
.sidebarPanel .section-list li a {
    color: #000;
    border-bottom: 1px solid #dfe3e8;
}
.sidebarPanel .section-list li:last-child a {
    color: #000;
    border-color: transparent;
}

.sidebarPanel .section-list li a span img{
     filter: brightness(0.25); 
      -webkit-filter:brightness(0.25);
}
.sidebarPanel {
    height: calc(100vh - 60px);
    overflow: hidden;
    position: relative;
}
.sidebarPanel ul.new-add-section {
    opacity: 1;
    transition: .5s all ease;
}
.sidebarPanel.show-items-list ul.new-add-section {
    opacity: 0;
}
.sidebarPanel ul.section-list {
    position: absolute;
    background: #ffffff;
    left: 0;
    right: 0;
    height: 100%;
    top: 100%;
    overflow: auto;
    z-index: 1;
    transition: .3s all ease;
}
.sidebarPanel.show-items-list ul.section-list {
    top: 0;
}
.section-new-add h3 {
    color: #222437;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
    margin: 0;
    padding: 16px 45px 16px 15px;
    border-bottom: 1px solid #dfe3e8;
    background: #ffffff;
    border-right: 3px solid transparent;
    cursor: pointer;
    position: relative;
    transition: .5s all ease;
}
.section-new-add h3 i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 25px;
    width: 100%;
    line-height: 34px;
    text-align: right;
    transition: .3s all ease;
}
.section-new-add h3 i.disabled-true::before {
    content: "\f070";
}
.section-new-add h3 i:hover {
    color: #5563c1;
}
.section-new-add h3:hover {
    border-right-color: #4035c8;
}
.sectionMainSettings {    
    background: #f4f6f8;
    position: absolute;
    top: 0;
    width: 100%;
    left: 100%;
    height: 100%;
    transition: .3s all ease;
    overflow: auto;
    z-index: 4;
}
.ui-sortable-helper .sectionMainSettings {
    opacity: 0;
    transition: 0s all ease;
}

.sectionSettingsBar {    
    padding: 16px;
}
.show-items-setting.sectionMainSettings {    
    left: 0;
}
.themeSetting {
    margin-bottom: 12px;
    position: relative;
}
.themeSetting:last-of-type {
    margin-bottom: 0;
}

.themeSetting lable .dxFontColor-wrapper .dx-color.dxFontColor {
    width: 20px;
    height: 18px;
    margin-right: 0;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #8b8b8b !important;
}

.themeSetting lable {
    display: inline-block;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin-bottom: 4px;
}
.themeSetting .dx-input {
	background: #fff;
    -webkit-box-shadow: inset 0 1px 0 0 rgba(63,63,68,0.05);
    box-shadow: inset 0 1px 0 0 rgba(63,63,68,0.05);
    border: 1px solid #c4cdd5;
    width: 100%;
    resize: none;
    padding: 10px 10px;
    border-radius: 3px;
}
.themeSetting  input[type="range"].dx-input {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    padding: 0;
}
.themeSetting input[type="range"].dx-input:hover {
    opacity: 1;
}
.themeSetting input[type="range"].dx-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #5563c1;
    border-radius:40px;
    cursor: pointer;
}
.themeSetting input[type="range"].dx-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #5563c1;
  cursor: pointer;
}
.themeSetting .dx-input .uploadedImg-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.themeSetting .dx-input .uploadedImg {
    height: 100%;
}
.themeSetting .dx-input .uploadedImg img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: center center;
}
.pp_Tp-overlpselect_panel button.select-image {
    background: -webkit-gradient(linear, left top, left bottom, from(#6371c7), to(#5563c1));
    background: linear-gradient(to bottom, #6371c7, #5563c1);
    border: 1px solid #3f4eae;
    -webkit-box-shadow: inset 0 1px 0 0 #6f7bcb;
    box-shadow: inset 0 1px 0 0 #5b69c3;
    color: white;
    padding: 10px 23px;
    border-radius: 4px;
    cursor: pointer;
}

.pp_Tp-overlpselect_panel {
    text-align: right;
}

.pp_Tp-overlpselect_panel button.select-image:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#5c6ac4), to(#4959bd));
    background: linear-gradient(to bottom, #5c6ac4, #4959bd);
    border-color: #3f4eae;
}

.changeOptions {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.changeOptions button {
    border-radius: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 11px 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#f9fafb));
    background: linear-gradient(to bottom, white, #f9fafb);
    border: 1px solid #c4cdd5;
    -webkit-box-shadow: 0 1px 0 0 rgba(22,29,37,0.05);
    box-shadow: 0 1px 0 0 rgba(22,29,37,0.05);
    cursor: pointer;
    border-radius: 0px 0px 4px 0px;
    padding: 10px 5px;
    border-radius: 0;
    border-width: 0 0 0 1px;
    text-transform: capitalize;
}

.changeOptions button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8));
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8);
    border-color: #c4cdd5;
    -webkit-box-shadow: 0 1px 0 0 rgba(22,29,37,0.05);
    box-shadow: 0 1px 0 0 rgba(22,29,37,0.05);
    color: #212b36;
}

.changeOptions button:first-child {
    border-left: 0;
    border-radius: 0px 0px 0px 0px;
}
.themeSetting textarea.dx-input{
    height: 150px;
}
.sidebarPanel-Insert {
    height: 100%;
    overflow-y: auto;
}

.sidebarPanel li span.addSec {
    background: #3f4eae;
    padding: 1px 7px;
    font-size: 10px;
    border-radius: 14px;
    float: right;
    letter-spacing: 1px;
    font-weight: 400;
    color: #fff;
}
.saveBar-wrapper {
    padding: 10px 20px;
    text-align: right;
    box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 9;
}

.image-uploader {
    width: 100%;
}

.image-uploader {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-uploader input[type="file"] {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.show-items-setting ul.thisBlocksList li a {
    padding: 0;
    display: inline-block;
    margin-left: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    color: #000;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}
.show-items-setting ul.thisBlocksList li a:hover {
    border-color: #ffffff;
    text-decoration: underline !important;
}
.sidebarPanel li a.addBlockList {
    color: #000;
    border-color: transparent;
}
.sidebarPanel li a.addBlockList:hover{
    border-right-color: #4035c8;
}
.sidebarPanel li a.addBlockList span img {
     filter: brightness(0.25); 
      -webkit-filter:brightness(0.25);
  }
.show-items-setting ul.thisBlocksList {
    margin-top: 10px;
    padding: 0 10px 0 16px;
}
.show-items-setting .settingBlocks .new-add-block {
    margin-bottom: 13px;
}
.show-items-setting .settingBlocks:last-child .new-add-block {
    margin-bottom: 0;
}
.show-items-setting .settingBlocks ul.thisBlocksList {
    display: none;
    opacity: 0;
    transition: .3s all ease;
}

.show-items-setting .settingBlocks ul.thisBlocksList li{
    margin-bottom: 20px;
}
.show-items-setting .settingBlocks ul.thisBlocksList.list-opened {
    display: block;
    opacity: 1;
}
.blockSectionContent {
    padding: 16px;
}
.section-new-add .settingCurrentBlocks .blockSectionHeading h3 {
    color: #000;
    padding: 15px 10px;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}
.section-new-add .settingCurrentBlocks .blockSectionHeading h3::after {    
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    left: auto;
    right: 10px;
    font-size: 11px;
    top: 50%;
    transform: translateY(-50%);
}
.remove-section {
    padding: 10px 10px 10px 20px;
    border-top: 1px solid #b1b1b1;
    width: 100%;
    align-self: flex-end;
}



button.del-button i, button.del-block i {
    margin-right: 3px;
}

.sectionMainSettingsup {
    min-height: calc(100vh - 120px);
}














.mainPannel {
    width: calc(100% - 280px);
    padding: 70px 0px 0px 30px;
    margin-left: 280px;
}

.mainPannel iframe#previewFrame{
  border: 0;
    height: calc(100vh - 75px);
}
.tab-content {
    background: #fff;
}

.mainPannelInner {
    height: 100%;
}



.accordianMain .card-header {
    padding: 0;
    border: 0;
    background: #ebebeb;
    border-radius: 0;
}
.tabContent .nav-tabs .nav-link {
    background: #e7e7e7;
    border-radius: 0;
    margin-right: 4px;
    font-size: 13px;
    color: #000000;
    font-weight: 500;
    padding: 7px 18px;
    border: 0;
}

.tabContent .nav-tabs .nav-link.active, .tabContent .nav-tabs .nav-link:hover {
    background: #fff;
}
.tab-content_sec {
    padding: 26px 0px;
}
.tab-content .tab-pane {
    font-size: 14px;
}
.tab-content .tab-pane > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.nav.nav-tabs {
    border: 0;
}

.accordianMain .card {
    border: 0;
    border-radius: 0;
    margin-bottom: 16px;
}

.accordianMain .card-header h5 button {
    font-size: 14px;
    color: #000;
    display: block;
    padding: 7px 18px;
    width: 100%;
    text-align: left;
    border-radius: 0;
}

.accordianMain .card .collapse .card-body > *:last-child {
    margin-bottom: 0;
}
.accordianMain .card .collapse .card-body p {
    font-size: 14px;
}
.editAll ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}

.editAll ul li {
    display: inline-block;
    margin: 0 5px;
    text-align: center;
}
.editAll {
    margin-bottom: 22px;
}



	          
.accordianDefault .accordion-head {
	background-color: #e7e7e7;
	color: #000;
	cursor: pointer;
	padding: 9px 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 13px;
	transition: 0.4s;
	font-weight: 500;
	margin: 8px 0 0;
}

.accordianDefault .accordion-head.active, .accordianDefault .accordion-head:hover {
	background-color: #d8d8d8;
}
.accordianMain.accordianDefault.accordianDefault .panel p {
	font-size: 14px;
	margin: 12px 0;
}

.accordianDefault .accordion-head:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.accordianDefault .accordion-head.active:after {
	content: "\2212";
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}



.image-block-img img {
    max-width: 100%;
    width: 100%;
    vertical-align: top;
}

.image-block {
    position: relative;
}

.image-block-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
}

.block-image-innertext {
    max-width: 800px;
    color: #fff;
}

.block-image-innertext h2 {
    color: #fff;
    font-size: 34px;
    position: relative;
    margin-bottom: 40px;
    margin-top: 0;
}

.block-image-innertext h2::before {
    height: 2px;
    background: #fff;
    content: "";
    position: absolute;
    width: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -14px;
}

.block-image-innertext p {
    font-size: 14px;
    max-width: 640px;
    margin: 0 auto;
}


.slick-slider {
    margin-bottom: 0;
}

.slick-slider .slide-item {
    padding: 0 10px;
}
/*
.multiple-products-items.slick-slider {
    margin-left: -10px;
    margin-right: -10px;
}*/
.slick-slider button.slick-arrow::before {
    color: #000;
    font-size: 28px;
}

.slick-slider button.slick-prev.slick-arrow {
    left: 0;
    z-index: 9;
}

.slick-slider button.slick-next.slick-arrow {
    right: 10px;
    z-index: 9;
}
.slick-dots {
    bottom: 0;
    position: static;
    margin: 20px 0 0;
}
.slick-dots li button {
    width: auto;
}

.slick-dots li button::before {
    font-size: 12px;
}

.slick-dots li {
    margin: 0;
}


.app_Tp-overlp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    z-index: 12;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f9fafb;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.app_Tp-overlp.app_Tp-overlp--active {
    -webkit-transform: translateY(0);
    /* transform: translateY(0); */
}

.app_Tp-overlpHeader {
    padding: 15px 40px;
    position: relative;
    text-align: center;
    background: #f9fafb;
    -webkit-box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
    box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
}

.app_Tp-overlpHeader button.app_Tp-overlpClose {
    position: absolute;
    right: 6px;
    top: 0;
    border: 0;
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
}

.app_Tp-overlpHeader h3 {
    margin: 0;
    font-weight: normal;
    font-size: 16px;
}

.app_Tp-overlpHeader button.app_Tp-overlpClose svg {
    height: 16px;
    width: 16px;
}

.app_Tp-overlpImg_sec {
    padding: 10px 10px 0px 10px;
    overflow: auto;
    height: calc(100% - 48px);
}

.app_Tp-overlpImg_panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.app_Tp-overlpImage_picker {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    overflow: hidden;
}
.app_Tp-overlpImage_picker label.pick-image {
    padding-top: 100%;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.app_Tp-overlpImage_picker label.pick-image img {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.app_Tp-overlpImage_picker:nth-child(2n) {
    margin-right: 0;
}

.img_addNew input[type="file"] {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.img_addNew {
    border: 2px dashed #c4cdd5;
    color: #637381;
    background-image: none;
    background-color: transparent;
}

.app_file_images button {
    background: transparent;
    padding: 0;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    cursor: pointer;
}

.app_file_images {
    background: white url(//cdn.shopify.com/s/assets/admin/shared/checkerboard-pattern-54dc557baa2f2cd671777a9f09e1c384c720b5b20a6dc438da9df7f0495071bf.svg) 0/10px 10px;
    position: relative;
}

.app_file_images input[type="radio"] {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.app_file_images label span {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    border: 2px solid #5b69c3;
    opacity: 0;
}
.app_file_images label span::after {
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #5563c1;
    font-size: 23px;
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    background: white;
    border-radius: 50px;
}
.app_file_images input[type="radio"]:checked + .pick-image-div span {
    opacity: 1;
}
.app_file_images input[type="radio"]:checked + .pick-image-div img {
}
.pick-image-div {
    height: 100%;
    width: 100%;
    display: block;
    overflow: hidden;
    transform: scale(1);
    transition: .2s all ease;
    position: absolute;
    left: 0;
    top: 0;
}

.app_file_images input[type="radio"]:checked + .pick-image-div {
    transform: scale(.8);
}
.app_Tp-overlpImg_sec .app_Tp-overlpImg_panel_sec {
    padding-bottom: 80px;
}
.pp_Tp-overlpselect_panel {
    text-align: right;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 8px 10px;
    background: white;
    -webkit-box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 -1px 3px 0 rgba(63,63,68,0.15);
    box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 -1px 3px 0 rgba(63,63,68,0.15);
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 0px;
    margin-top: 10px;
    z-index: 9;
}
.pp_Tp-overlpselect_panel button.select-image {
    background: -webkit-gradient(linear, left top, left bottom, from(#6371c7), to(#5563c1));
    background: linear-gradient(to bottom, #6371c7, #5563c1);
    border: 1px solid #3f4eae;
    -webkit-box-shadow: inset 0 1px 0 0 #6f7bcb;
    box-shadow: inset 0 1px 0 0 #5b69c3;
    color: white;
    padding: 10px 23px;
    border-radius: 4px;
    cursor: pointer;
}

.pp_Tp-overlpselect_panel button.select-image:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#5c6ac4), to(#4959bd));
    background: linear-gradient(to bottom, #5c6ac4, #4959bd);
    border-color: #3f4eae;
}
.app_Tp-overlpImage_picker.app_loadMore {
    width: 100%;
    display: block;
}
.app_loadMore button {
    width: 100%;
    cursor: pointer;
    border: 0;
    font-size: 16px;
    border: 1px solid #c4cdd5;
    background: transparent;
    padding: 10px 10px;
    border-radius: 4px;
    color: #212b36;
}

.app_loadMore::after {content: "";padding-bottom: 100%;}

.img_addNew::after {content: "";padding-bottom: 100%;}


.titleBox a {
    font-size: 14px;
    color: #74788d;
    font-weight: 500;
}

.titleBox a img {
    margin-right: 5px;
    margin-top: 3px;
    vertical-align: top;
    opacity: .5;
}

.modal.templatePopup {
    position: fixed;
    height: 100%;
    width: 100%;
    max-width: 100%;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
    transition: opacity .15s linear;
    opacity: 0;
    overflow: auto;
}

.modal.templatePopup .modal_dialouge {
    max-height: calc(100% - (1.75rem * 2));
    transition: all .3s ease-out;
    transition: all .3s ease-out;
    transition: all .3s ease-out;
    max-width: 1440px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   /* -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;*/
    position: relative;
    z-index: 99;
    top: -100%;
    opacity: 0;
}

.modalOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    background-color: #000;
    opacity: .85;
}

.modal_dialouge button.close {
    position: fixed;
    left: auto;
    right: 30px;
    top: 30px;
    background: #4035c8;
    border: 0;
    color: #fff;
    font-size: 16px;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    cursor: pointer;
    transition: .5s all ease;
}

.modal_dialouge button.close:hover {
    background: #fff;
    color: #4035c8;
}
.templatePopupSec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
 .templatePopupItems{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.saveTemplatePopup .modal_dialouge button.close, .altPopup .modal_dialouge button.close {
    position: absolute;
    top: 0px;
    right: 0;
    background: transparent;
    color: #000;
    font-size: 25px;
}

.saveTemplatePopup .templatePopupSec.altPopup .altPopup_header, .altPopup .templatePopupSec.altPopup .altPopup_header {
    position: relative;
}

.saveTemplatePopup .modal_dialouge button.close:hover, .altPopup .modal_dialouge button.close:hover {
    color: #4035c8;
}
.templateCol {
    width: 33.33%;
    padding: 5px;
}
.templateCol.sectionPopup-item .templateColImg::after {
    content: "";
    padding-top: 100%;
    display: block;
}
.templateCol.sectionPopup-item .templateColImg img {
    vertical-align: top;
    max-width: 100%;
}
.templateColImg {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}

.templateColImg .templateBtn {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 120%;
    transform: translateY(-50%);
    z-index: 9;
    transition: .4s all ease;
}

.templateColImg .templateBtn button {
    margin: 10px 10px;
    background: #4035c8;
    border: 1px solid #4035c8;
    color: #fff;
    padding: 8px 30px;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: .4s all ease;
}

.templateColImg::before {content: "";position: absolute;left: 0;right: 0;top: 0;bottom: 0;background: #d4d4d4;z-index: 2;opacity: 0;transition: .4s all ease;}

.templateColImg:hover::before {
    opacity: .6;
}

.templateColImg .templateBtn button:hover {
    border-color: #4238c3;
    color: #fff;
    background: #3a30b9;
}

.templateColImg:hover .templateBtn {
    top: 50%;
}
.templatePopupSec h3.customTemplates {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 32px;
}

.templatePopupSec .customTemplate  .templateColImg .templateBtn {
    position: static;
    transform: inherit;
}

.templatePopupSec .customTemplate .templateColImg:hover::before {
    opacity: 0;
}
.modal-open .modal {
    visibility: visible;
    opacity: 1;
}

.modal-open .modal.templatePopup .modal_dialouge {
    top: 0;
    opacity: 1;
}
.chooseTemplate-section.chooseTemplate {
    padding: 27px 16px;
    /* border-bottom: 1px solid #dfe3e8; */
    background: #ffffffad;
    box-shadow: -1px 0 20px rgba(89,102,122,0.1);
    position: relative;
    z-index: 1;
}
.chooseTemplate-section.chooseTemplate a.chooseTemplate-btn.btn {
    -webkit-box-shadow: -9px 0 20px rgba(7, 50, 115, 0.14);
    box-shadow: -9px 0 20px rgba(7, 50, 115, 0.14);
    width: 100%;
    border: 0;
    padding: 12px 18px;
    font-weight: 600;
    position: relative;
}
.chooseTemplate-section.chooseTemplate a.chooseTemplate-btn.btn::after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.saveBar-inner, .appHeaderRight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.selectToUL-selected span.selectToUL-span {
    font-size: 14px;
}
.selectToUL-selected {
    padding: 7px 40px 7px 20px;
    text-align: left;
    background: #f3f3f9;
    border: 1px solid #f3f3f9;
    overflow: hidden;
    margin-right: 0;
    position: relative;
    border-radius: 3px;
    min-width: 180px;
    width: 100%;
}
.selectToUL-selected::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #949494;
    position: absolute;
    left: auto;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.selectToUL-items {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: -1;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    display: none;
    z-index: 9;
    border-radius: 5px;
    padding: 10px 0;
}

.selectToUL-scroll {
    height: 100%;
    overflow: auto;
}

.selectToUL-items ul {
    padding: 0;
    list-style: none;
    text-align: left;
    margin: 0;
}

.selectToUL-items ul li {
    padding: 7px 25px;
    font-size: 13px;
    cursor: pointer;
}

.selectToUL-items ul li.selectToUL-selectedLi, .selectToUL-items ul li:hover {
    background: #f8f9fa;
    color: #444;
}
.selectToUL-wrapper.selectToUL-opened .selectToUL-items {
    display: block;
}

.banner_caption{
    width: 100%;
}



.dxloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.84);
    opacity:0;
    visibility:hidden;
    transition: .3s all ease; 
    z-index: 999;
}
.loaderActive .dxloader {
    opacity:1;
    visibility:visible;    
}
.dxloader i {
    color: #fff;
    font-size: 34px;
}
.image_loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .4s all ease;
}

.loading .image_loader {
    visibility: visible;
    opacity: 1;
}

.image_loader i {
    font-size: 22px;
    color: #fff;
}
.themeSetting lable.rangeLabel {
    width: 100%;
}

.themeSetting lable.rangeLabel div {
    float: right;
}

.themeSetting lable.rangeLabel div span {
    font-size: 14px;
}