

@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Source Sans 3", sans-serif;
background-repeat: no-repeat;
overflow-x: hidden;
height: 100vh;
background-color: #F3F4F6;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101d;
  padding: 6px 14px;
  z-index: 9999;
  transition: all 0.5s ease;
}
.sidebar.open {
  width: 250px;
}
.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon {
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
  opacity: 1;
}
.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn {
  text-align: right;
}
.sidebar i {
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list {
  margin-top: 20px;
  height: 100%;
}
.sidebar li {
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip {
  display: none;
}
.sidebar input {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}
.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #fff;
}
.sidebar.open .bx-search:hover {
  background: #1d1b31;
  color: #fff;
}
.sidebar .bx-search:hover {
  background: #fff;
  color: #11101d;
}
.sidebar li a {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101d;
}
.sidebar li a:hover {
  background: #fff;
}
.sidebar li a svg {
  color: #fff;
  font-size: 15px;
  font-weight: 400;

}
.sidebar li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i {
  transition: all 0.5s ease;
  color: #11101d;
}
.sidebar li i {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile {
  width: 250px;
}
.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li.profile .name,
.sidebar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.sidebar li.profile .job {
  font-size: 12px;
}
.sidebar .profile #log_out {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out {
  width: 50px;
  background: none;
}
.home-section {
  position: relative;
  background: #e4e9f7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section {
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text {
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}
@media (max-width: 420px) {
  .sidebar li .tooltip {
    display: none;
  }
}




a{
  text-decoration: none;
}
img{width: 100%;}




::selection{
  background-color: #222;
  color: #fefefe;
}

::-webkit-scrollbar-track{
  color: #222;
}

.navbar-brand img{
  max-width: 116px;
}





.main-card{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 
  background-color: #fff;
  padding: 3.5rem;
  margin: 0 auto;

}


.img-block{
  width: 400px;
}


.form-check-input:checked {
  background-color: #222;
  border: 1px solid #222;}

/* input[type=radio] {
  accent-color: #222 !important;
} */
/* form */

.form-group{
margin-bottom: 25px;
}
.form-group > label, .form-check > label{
/* display: block; */
/* font-size: 14px;	 */
  /* margin-bottom: 10px; */
/* color: #807979; */
}
.custom-control-label{
color: #000;
font-size: 12px;
}
.form-control{
height: 40px;
/* background: #fff;
border-color: #f1f1f1; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
/* background: #f8f8f8;
border-color: #eee; */
padding: 0 15px;
font-size: 14px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.form-control:focus{
border-color: #333;
-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}


.red-grad{
  background-image: linear-gradient(to right, #D31027 0%, #EA384D  51%, #D31027  100%);
  color: #fff;

}
.red-grad:hover{
  background-position: right center; /* change the direction of the change here */
  text-decoration: none;
  color: #fff;

}
.black-grad{
  background-image: linear-gradient(to right, #000000 0%, #434343  51%, #000000  100%);
  transition: 0.5s;
  color: #fff;
}
  
.black-grad:hover {
  background-position: right center; /* change the direction of the change here */
  text-decoration: none;
  color: #fff;
}
.btn-grad {
  background-image: linear-gradient(to right, #000000 0%, #434343  51%, #000000  100%);
  margin: 10px 0;
  padding: 10px 25px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;            
  box-shadow: 0 0 20px #eee;
  border-radius: 5px;
  display: block;
}


.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  text-decoration: none;
}
.btn-grad1 {
  background: #fff;
  margin: 10px 0;
  padding: 10px 25px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #222;            
  box-shadow: 0 0 20px #eee;
  border-radius: 5px;
  display: block;
}

.btn-grad1:hover {
  background-position: right center; /* change the direction of the change here */
  text-decoration: none;
}

section{
  margin-left: 78px;
}

.main-section{
background-image: url("./assets/dotBG.png");
/* height: 100%; */

}

/* form */


.progressbar-list{
  width: 33.33%;
}
.main-content .wizard-form .progressbar-list::after{
  content: "";
   background-color: rgb(228, 228, 228);
  padding: 0px 0px;
  position: absolute;
  top: 14px;
  left: -50%;
  width: 100%;
  height: 4px;
  margin: 9px auto;
  z-index: 0;
  transition: all 0.8s;
  }
.main-content .wizard-form .progressbar-list::before{
  position: relative;
  content: " ";
  background-color: rgb(155, 155, 155);
  border: 10px solid #fff;
  border-radius: 50%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 9px auto;
  box-shadow: 1px 1px 3px #606060;
  transition:all;
  z-index: 1;
 
  }

  .main-content .wizard-form .progressbar-list.active::after{
      background-color: #30A778;
  }
  .main-content .wizard-form .progressbar-list:first-child::after{
      content: none;
  }
  .main-content .wizard-form .progressbar-list.active::before{
      font-family: "Font Awesome 5 free";
      content: "\f00c";
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      padding: 6px;
      background-color: #30A778;
      border: 1px solid #30A778;
      box-shadow: 0 0 0 7.5px #30a7773a;
  }
  .progressbar-list{
      color:#6f787d;
  }
  .active{
      color:#000;
  }


  .form-check-input:focus {
      box-shadow: none;
  }
  .bg-color-info{
      background-color:#222 !important;
  }
  .border-color{
      border-color: #ececec;
  }
  .btn-{
      padding:16px 30px;
  }
  .back-to-wizard{
      transform: translate(-50%, -139%) !important;
  }
  .bg-success-color{
      background-color:#87D185;
  }
  .bg-success-color:focus{
      box-shadow: 0 0 0 0.25rem rgb(55 197 20 / 25%);
  }



  ul{
    margin-left: 0;
    padding-left: 0;
  }

  .smargin{
    margin-left: 78px;
  }


  .blank-icon{
    font-size: 70px;
    color: #bebebe;
  }

  .blank-title{
    font-weight: 700;
  }
  .blank-content{
    font-size: 14px;
    line-height: 23px;
    color: #636363;
  }


  .dt-layout-row.dt-layout-table{
    overflow-x: scroll;
  }


  div.dt-buttons > .dt-button, div.dt-buttons > div.dt-button-split .dt-button{
    border: 2px solid #242424;
    border-radius: 6px;
    background: #fff !important;

  }


  div.dt-buttons > .dt-button:hover:not(.disabled), div.dt-buttons > div.dt-button-split .dt-button:hover:not(.disabled){
    border: 2px solid #242424;
  }
#example > .thead{
    text-align: left !important;
  }

  .id-cell{
    background-color: #1a1a1a;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
  }

  .duration-cell ,.status-cell{
    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 20px;
  }
  .yearly{
    background-color: #FFA38F;
  }

  .monthly{
    background-color: #4A00E0;
  }

  .dt-layout-row.dt-layout-table{
    overflow-x: hidden;
  }

  thead > tr >th{
    font-size: 11px;
    text-transform: uppercase;
  }
  .plans-table > tr > td{
    font-size: 14px;
    /* text-align: start; */
  }
  /* .plans-table > tr:not(3rd) > td:{
    text-align: start;
  } */


  .share-btn{
    font-size: 24px;
    color: #2664DC;
  }
  .delete-btn{
    font-size: 24px;
    color: #F42E2E;
  }

  .status-active{
    background-color: #D4F8D3;
    color: #1a1a1a;
    font-weight: 500;
  }
  .in-active{
    background-color: #FFF6A1;
    color: #1a1a1a;
    padding: 6px 4px;
    font-weight: 500;
  }

  .table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover, table.dataTable thead > tr > td.dt-orderable-asc:hover, table.dataTable thead > tr > td.dt-orderable-desc:hover{
    outline: none;
  }
  table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td{
    padding: 6px;
  }

.dt-layout-row.dt-layout-table >.dt-layout-cell{
    border: 1px solid #eee;

  }
  div.dt-container.dt-empty-footer tbody > tr:last-child > *{
    border: none;
  }
  .dt-type-numeric{
    text-align: center !important;
  }


  .plan-card{
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    padding: 20px;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
  }

  .plan-card-title{
    font-size: 20px;
    font-weight: 600;
    color: #383838;

  }
  .plan-label{
    color: #807979;
    font-size: 16px;
  }
  .plan-input,.plan-desc{
   background-color: #fff;
  }
  .plan-desc{
    height: 80px;
  }

  .plan-duration >.nav > .nav-item >button{
    padding: 4px;
    border-right: 1px solid #1a1a1a;
    border-radius: 0;
    font-size: 13px;

  }

  .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #1a1a1a !important;
    border-radius: 0;
    
  }

  .plan-duration > .nav.nav-fill{
    border:1px solid #1a1a1a;
  }
  .nav-link{
    color: #1a1a1a;
  }


  .succcess-content{
    color: #3E3D3D;
    font-size: 18px;
    line-height: 28px;

  }
  
  .success-icon{
    background-color: #fff;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
  }

  .success-icon > i{
    font-size: 80px;
    color: #30A778;
    
  }

  .booking-title {
    color: #212121;
    font-size: 18px;
    font-weight: 500;
}

.share-block {
  font-size: 26px;
  color: #222;
}

.share-block+p {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 0;
}

input[name="copy-link"]::placeholder {
  font-size: 12px;
}

.share-block > svg ,.share-block > img{
  width: 45px ;
  height: 45px;
}

.header-title> h3{
  font-size: 28px;
  color: #212121;
  font-weight: 700;
  font-family: "El Messiri", sans-serif;
}
.Header-search {
  position: relative;

}

.Header-search > .search-icon{
  position: absolute;
  top: 13px;
  right: 20px;
  color: #606060;
}
.Header-search > .search-icon:hover{
cursor: pointer;
}

.table-block{
  position: relative;
}

.filter-block{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.preview-filter-block{
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 99;
}


.cus-id{
  background-color: #1a1a1a;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
}

.back-btn >  i{
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-right: 10px;

}

.payment-method > img{
  width: 30px;
}

.plan-name{
  white-space: nowrap; 
  width: 180px; 
  overflow: hidden;
  text-overflow: ellipsis; 
}

.inf-btn{
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.stats-card{
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1.2rem 1.2rem  0;
}
.mem-stats-title{
  font-size: 18px;
  color: #5e5e5e;
}

.stats-mem{
  font-size: 24px;
  color: #333;
  font-weight: 700;
}

.info-block{
  background-color: #dde9ff;
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 15px;
}

.imp-mem-dark,.imp-sub-light{
  background-color: #263238;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.imp-sub-light{
  background-color: #ffffff;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border:1px solid #263238;
}


.imp-icon-dark{
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 44;
}
.imp-icon-light{
  width: 40px;
  height: 40px;
  background-color: #263238;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 44;
}
.imp-icon-dark > i{
  font-size: 20px;
  color: #263238;
  font-weight: 800;
}
.imp-icon-light > i{
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

.imp-title-dark{
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  margin-left: 10px;
}
.imp-title-light{
  font-size: 16px;
  color: #263238;
  margin-bottom: 0;
  margin-left: 10px;
}

.dark-up, .light-up{
  position: absolute;
  left: 0px;
  bottom: 0;
  /* height: 100px;
  width: 100px; */
  z-index: 33;
}
.dark-down,.light-down{
  position: absolute;
  right: 0px;
  bottom: 0px;
  /* height: 100px;
  width: 100px; */
  z-index: 33;
}

/* upload css */


.hidden {
	display: none;
}

#dropzone {
	color: #ccc;
	background-color: #fff;
	/* width: 300px; */
	border-radius: 10px;
	border: 3px dashed #263238;
	/* margin: 20px; */
	padding: 50px;
	text-align: center;
	cursor: pointer;
}

#dropzone:hover {
	background-color: #ddd;
	color: #bbb;
	border: 3px solid #263238;
}

#dropzone.full {
	background-color: #54e592;
	color: #fff;
	border-color: #27ae60;
}

#file {
	display: none;
}
.invalid-text{
  color: #E50B0B;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 10px;
  font-weight: 500;
  display: none;
}

#dropzone.invalid{
	border: 3px dashed #E50B0B;

}
#dropzone.invalid +.invalid-text{
  display: block;
}

.selected-block{
  background-color: #F0F3F5;
  padding: 1rem 1.3rem;
  border-radius: 10px;
  position: relative;
  margin-top: 30px;

}

.upload-icon{
  color: #207E4F;
  font-size: 40px;
}

.upload-detail{
width: 100%;
  
}
.upload-detail > .file-name{
  font-size: 16px;
  color: #11101d;
  padding-bottom: 5px;
  
}
.file-detail{
  font-size: 12px;
  color: #7c7c7c;

}


.progress {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 10px;
  height: 10px;
}


.file-perc{
  font-size: 16px;
  color: #11101d;
  font-weight: 600;
}

.progress::-webkit-progress-bar {
  background-color: #fff;
}

.progress::-webkit-progress-bar,
.progress::-webkit-progress-value {
  border-radius: 10px;
}

.progress::-moz-progress-bar {
  border-radius: 10px;
}

.progress1::-webkit-progress-value {
  background: #263238;
}


.file-close-btn{
  position: absolute;
  top: 10px;
  right: 15px;
  color: #807979;
  font-size: 20px;
}


.mapping-block{
  border: 2px solid #263238;
  border-radius: 10px;
  position: relative;
}
.mapping-block > .list-group{
border-radius: 10px;
}

.mapping-header > input[type="checkbox"]{
position: absolute;
top: 10px;
right: 10px;
border: 1px solid #222;
}
.mapping-title{
font-size: 18px;
color: #807979;
font-weight: 600;
}
.select-column{
  background-color: #263238;
  color: #fff;
  /* display: none; */
}
.form-select:focus{
  outline: none;
  box-shadow: none;
  border: none;
}






.mapping-header> input:checked .mapping-header.list-group-item  .select-column{ 
  display: block;
}

/* #survey-form{
  position: relative;
} */

.preview-check{
  font-size: 16px;
  border: 1px solid #222;


}
.w-250{
  width: 200px;
}

.preview-select{
  border: none;
  padding: 0 10px;
}

.chosen-container.chosen-container-multi{
  width: 100% !important;
}

.chosen-container-multi .chosen-choices{
  border:none;
  border-bottom:1px solid #D79F34;
  color: #D79F34;
  font-size: 14px;
}


.chosen-container-multi .chosen-choices li.search-choice{
  background: #1A1A1A !important;
  border:1px solid #1A1A1A;
  color: #fff;
  box-shadow: none;
  border-radius: 20px;
  padding: 8px 30px 8px 13px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{
  top: 8px;
  right: 7px;

}

.pay-drop{
  
  background-color: #f7f7f7;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: #1a1a1a;
  padding: 20px;
  position: relative;
  border-radius: 0px 10px 10px 10px;

}


.pay-drop.arrow-left:after {
  content: " ";
  position: absolute;
  left: -15px;
  top: 0px;
  border-top:0px solid transparent;
  border-right: 15px solid #f7f7f7;
  border-left: none;
  border-bottom: 15px solid transparent;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */

}
.split-btn{
  background-color: #3923ff;
  display: inline-block;
  /* height: 30px; */
  /* width: 70px; */
  margin: auto;
border-radius: 3px;
  color: #fff;
  padding: 5px 14px;
  position: relative;
}
.split-btn::after {
  content: '';
  height: 10px;
  width: 10px;
  position: absolute;
  background-color: #3923ff;
  top: 11px;
  left: -5px;
  border-top: black solid 2px;
  border-left: black solid 2px;
  transform: rotate(-45deg);
}

.split-arr{
  display: none;
 transition: 1s;
}

.split-table > tr:hover .split-arr{
  display: block;
  
 
}


.Split-title{
  font-size: 20px;
  text-transform: uppercase;
  color: #3E3E3E;
  font-weight: 600;
}

.offcanvas.offcanvas-end{
  width: 600px;
}


.table-split{
  background-color: #FAFAFA;
}

.split-header{
  padding: 12px 15px;
    border: 1px solid #ededed;
}

.slpit-body{
 border-right: 1px solid #ededed;
 border-left: 1px solid #ededed;
}
.slpit-body >li{
  padding: 10px;
  border-bottom: 1px solid #ededed;
  list-style: none;
}

.split-plan-tittle{
  background-color: #1a1a1a;
  padding: 5px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
}
.split-plan-amount{
 color: #686868;
 font-size: 14px;
 text-align: right;
 font-weight: 700;
}

.slpit-main {
height: 55px;
}
.slpit-main > input{
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #1a1a1a;
}

.split-add{
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  padding: 4px 8px;
}
.split-del{
  background-color: #fff;
  border: 1px solid  #FF3333;
  color: #FF3333;
  font-size: 12px;
  border-radius: 5px;
  padding: 4px 8px;
  margin-right: 5px;
}

.review-card{
  padding: 40px 50px;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
}


.new-block,.existing-block,.error-block{
  padding:30px 0;
  border-bottom: 1px solid #e2e8f0b0;
}

.new-icon > i{
  color: #51A100;
  font-size: 30px;
}

.new-content-title{
  font-size: 20px;
  color: #5D5C64;
  /* margin-bottom: 0; */
}
.new-content-Sub{
  font-size: 18px;
  color: #5D5C64;
  margin-bottom: 0;
}

.new-data-btn{
  color: #51A100;
  font-size: 16px;
  border: 1px solid #51A100;
  border-radius: 5px;
  padding: 4px 10px;
  background-color: #fff;
  margin-top: 10px;
}


.new-data-btn > span{
  font-size: 20px;
  margin-right: 5px;
}



.existing-icon > i{
  color: #EB7910;
  font-size: 30px;
}

.existing-content-title{
  font-size: 20px;
  color: #5D5C64;
  /* margin-bottom: 0; */
}

.existing-block-points > li{
  font-size: 18px;
  color: #e69e42;
}
.existing-content-Sub{
  font-size: 18px;
  color: #5D5C64;
  margin-bottom: 0;
}

.existing-data-btn{
  color: #EB7910;
  font-size: 16px;
  border: 1px solid #EB7910;
  border-radius: 5px;
  padding: 4px 10px;
  background-color: #fff;
  margin-top: 10px;
}


.existing-data-btn > span{
  font-size: 20px;
  margin-right: 5px;
}

.error-icon > i{
  color: #FF0000;
  font-size: 30px;
}

.error-content-title{
  font-size: 20px;
  color: #5D5C64;
  /* margin-bottom: 0; */
}

.error-block-points > li{
  font-size: 18px;
  color: #db3737;
}
.error-content-Sub{
  font-size: 18px;
  color: #5D5C64;
  margin-bottom: 0;
}

.error-data-btn{
  color: #FF0000;
  font-size: 16px;
  border: 1px solid #FF0000;
  border-radius: 5px;
  padding: 4px 10px;
  background-color: #fff;
  margin-top: 10px;
}


.error-data-btn > span{
  font-size: 20px;
  margin-right: 5px;
}


/* switch ui */

.config-switch >.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.config-switch >.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch >.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.switch >.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.config-switch >.switch input:checked + .slider {
  background-color: #1a1a1a;
}

.config-switch >.switch input:checked + .slider:before {
  transform: translateX(16px);
}

.config-preview{
  background-color: #E8E8E8;
  height: 100%;
}

.config-preview > h4 ,.config-block > h4{
  font-size: 24px;
  color: #222;
}
.config-preview > h6 ,.config-block > h6{
  font-size: 16px;
  color: #565656;
}

.config-table > thead>tr >th{
  color: #555;
  text-transform: capitalize;
  font-size: 18px;
}
.config-table > tbody >tr >th{
  color: #555;
  font-size: 14px;
}

