.tcvopen {
  padding-top: 10px;
  padding-right: 5px;
  padding-left: 7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: small;
  background-color: rgb(247, 243, 237);
  margin-top: 30px;
}

.tcvopen:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);

}

.h6 {
  position: relative;
  /* font-family: "Raleway", sans-serif; */
  font-family: "Alice", serif;
  font-weight: bold;
  font-size: small;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.seven {
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: solid brgb(0, 0, 0);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: solid;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 10px 0;
  grid-gap: 1px;
  align-items: center;
}

.seven:after,
.seven:before {
  content: " ";
  display: block;
  border-bottom: 2px solid brown;
  border-top: 2px solid brown;
  height: 0px;
  background-color: #f8f8f8;
}

/* toggle button ECNS*/
.on-off-toggle_cns {
  width: 180px;
  height: 34px;
  margin-left: 10px;
  position: relative;
  display: inline-block;
}

.on-off-toggle__slider_cns {
  width: 180px;
  height: 34px;
  display: block;
  border-radius: 34px;
  background-color: #d8d8d8;
  transition: background-color 0.4s
}

.on-off-toggle__slider_cns:before {
  content: '';
  display: block;
  background-color: #fff;
  box-shadow: 0 0 0 1px #949494;
  bottom: 2px;
  height: 30px;
  left: 3px;
  position: absolute;
  transition: .10s;
  width: 30px;
  z-index: 10;
  border-radius: 100%;
}

.on-off-toggle__slider_cns:after {
  display: block;
  line-height: 34px;
  text-transform: initial;
  font-size: 12px;
  font-weight: bold;
  content: 'System Generated';
  color: #484848;
  padding-left: 0px;
  transition: all 0.10s;
}

.on-off-toggle__input_cns {
  /*
          This way of hiding the default input is better 
          for accessibility than using display: none;
        */
  position: absolute;
  opacity: 0;
}

.on-off-toggle__input_cns:checked+.on-off-toggle__slider_cns {
  background-color: rgb(212, 151, 60)
}

.on-off-toggle__input_cns:checked+.on-off-toggle__slider_cns:before {
  transform: translateX(145px);
}

.on-off-toggle__input_cns:checked+.on-off-toggle__slider_cns:after {
  content: 'Pre Printed(132 cm)';
  color: #FFFFFF;
  padding-left: 8px;
}