body {
  font-family: 'Noto Sans Khmer', sans-serif !important;
  padding: 0;
  margin: 0;
}

.btnAdd {
  font-family: 'Noto Sans Khmer', sans-serif;
  margin-top: 55px;
  font-size: 20px;
}

.btnAdd span {
  padding-left: 5px;
}

.label-title {
  font-family: 'Noto Sans Khmer', sans-serif;
  padding: 0;
  margin-top: 40px;
  text-decoration: underline;
}

/* =====================================
# Form -> Add required filed to label
====================================== */
.required .control-label::after {
  content:" *";
  color:red;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f9fb;
  transition: opacity 0.75s, visility 0.75s;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #1284f8;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.chStatus {
  cursor: pointer;
}

.result-box {
  position: absolute;
  padding-right: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 3px 3px 3px rgb(180, 180, 172);
}

.product-item:hover {
  color: rgb(46, 146, 228);
  cursor: pointer;
  font-weight: bold;
  padding: 2px;
}

.img-box {
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
  object-fit: cover;
  background-image: url('../../images/no-image.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-box #productImg {
  width: 100%;
  height: 100%;
  float: left;
  opacity: 0;
}

.listImg {
  width: 40px;
  height: 40px;
  object-fit: cover;
}