p {
  margin-bottom: 0 !important;
}

hr {
  margin: 0 !important;
  border-top: solid 1px;
}

img {
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}

.table-result-true td:first-child {
  width: 30px;
}

.main,
.search-serial,
.serial-result,
.result-true,
.result-false {
  display: none;
}

.btn-copy span {
  position: absolute;
  top: -35px;
  right: 5px;
  font-size: 12px;
  display: none;
  padding: 4px;
}

/* Custom checkbox */
input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.checkbox-mark {
  display: block;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 3px;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-mark {
  background-color: #FE382B;
}

.checkbox-mark:after {
  content: '';
  display: block;
  position: absolute;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-mark:after {
  opacity: 1;
}

.checkbox-label {
  flex: 1;
}

@media screen and (max-width: 576px) {
  .checkbox-mark {
    position: relative;
    top: 6px;
  }

  .checkbox-mark:after {
    left: 7px;
    top: 3px;
  }
}

/* Modal */
.modal-content-custom {
  padding: 20px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .modal-content-custom {
    width: auto;
  }
}