.echron-addedit {
  padding: 25px 0;
}
.echron-addedit .tab ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
.echron-addedit .tab ul li {
  padding: 15px;
  cursor: pointer;
  transition: .5s;
  color: #a5a5a5;
}
.echron-addedit .tab ul li:hover {
  background: #f1f1f1;
}
.echron-addedit .tab ul li.active {
  border: 1px solid lightgrey;
  border-bottom: 1px solid #ffffff;
  margin-bottom: -1px;
  color: #000;
  font-weight: 600;
}
.echron-addedit .form {
  display: none;
}
.echron-addedit .form.active {
  display: block;
}
.echron-addedit .form .group,
.echron-addedit .form .cbox {
  padding-top: 50px;
  position: relative;
  display: flex;
}
.echron-addedit .form .group label,
.echron-addedit .form .cbox > label {
  width: 25%;
  display: flex;
  justify-content: end;
  padding-right: 25px;
  font-size: 15px;
  color: #545454;
  font-weight: 700;
}
.echron-addedit .form .group .input,
.echron-addedit .form .cbox .list-group {
  width: 75%;
  padding: 10px;
  font-size: 13px;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.echron-addedit .form .input .echron-parent {
  background-color: #eeeeee;
  border-bottom: 1px solid #ccc;
}
.echron-addedit .form .group::before {
  position: absolute;
  content: '';
  border-bottom: 1px solid #ddd;
  width: 100%;
  margin-bottom: 12px;
  bottom: -32px;
  left: 0;
}
.echron-addedit .form .group:last-child::before {
  border-bottom: none;
}
/****************image*******************/
/****************image*******************/
/****************image*******************/
/****************image*******************/
/****************image*******************/
.echron-addedit .form .images {
  background: #f5f5f5;
}
.echron-addedit .form .images table {
  width: 100%;
  border: 1px solid #ccc;
}
.echron-addedit .form .images label.payyu{
  display: block;
  text-align: center;
  padding-top: 25px;
}
.echron-addedit .form .images table .heading {
  width: 100%;
  float: left;
  padding: 5px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 600;
}
.echron-addedit .form .images table .heading.gal {
  display: flex;
  justify-content: center;
}
.echron-addedit .form .images table tr td {
  border: 1px solid #ddd;
  padding: 5px 0;
}
.echron-addedit .form .images table .on-h {
  width: 150px;
  position: relative;
  margin-right: 12px;
}
.echron-addedit .form .images table .on-h img {
  width: 100%;
  margin-left: 5px;
  margin-right: 8px;
  background: #fff;
  padding: 5px;
  border: 1px solid lightgray;
}
.echron-addedit .form .images table .on-hover {
  padding: 5px;
  box-shadow: 0 0 5px #ccc;
  margin-left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  background: #fff;
  width: 100px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.echron-addedit .form .images table .on-h:hover .on-hover {
  visibility: visible;
  opacity: 1;
}