input[type="text"]{
  height: 46px;
  font-size: 13px;
  padding:12px;
  color: #1f1f1f
}
textarea{
  height: 96px;
  font-size: 13px;
  padding:12px;
  color: #1f1f1f;
  border: solid 1px #cccccc;
  resize: none;
}

/* new checkbox */
.new_checkbox {
  width: 22px;
  height: 20px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance:none;
  border-radius: 0;
  border: none;
  background: transparent url('/assets/img/icon/ico-check-copy.png') no-repeat;
  background-size: 20px 20px;
  background-position: 50% 50%;
  margin: 0 6px 0 0;
}

.new_checkbox:checked {
  background: transparent url('/assets/img/icon/ico-check-copy-checked.png') no-repeat; 
  background-size: 20px 20px;
  background-position: 50% 50%;
}

/* The checkbox */
.checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  color: #383838;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background: white url('../../../assets/img/icon/ico-check-copy.png') no-repeat;
  background-size: 20px 20px;
  background-position: 50% 50%;
  border: none;
  /* background-color: white;
  border: 1px solid #e2e2e2;
  box-sizing: border-box; */
}

/* On mouse-over, add a grey background color */
/* .checkbox:hover input ~ .checkmark {
  background-color: #ccc;
} */

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background: white url('../../../assets/img/icon/ico-check-copy-checked.png') no-repeat; 
  background-size: 20px 20px;
  background-position: 50% 50%;
  border: 1px solid #1f1f1f;
  /* background-color: #1f1f1f; */
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  /* border: solid white; */
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

app-main{
  height: 100%;
  /*position: absolute;*/
}