/* form */
.form-label{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.form-control, .form-select, html:not([dir=rtl]) .form-select{
  border: 1px solid #E6E6E6;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.form-control::placeholder{
  color: #CDD0D3;
}
html:not([dir=rtl]) .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
  border-left: none;
}
.input-group-text{
  background-color: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
}
html:not([dir=rtl]) .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), html:not([dir=rtl]) .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), html:not([dir=rtl]) .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, html:not([dir=rtl]) .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select{
  border-right: none;
}
.form-check{
  margin-bottom: 12px;
}
.form-check:last-child{
  margin-bottom: 0;
}
.form-check-label{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4F5F6F;
}
.form-check-input[type=checkbox]{
  border-radius: 4px;
}
.form-check-input{
  background: #E6E6E6;
  border: 1px solid #E6E6E6;
  width: 16px;
  height: 16px;
}
.form-check-input:focus{
  box-shadow: 0 0 0 0.25rem rgba(207, 49, 45, .25);
}
.form-check-input:active{
  filter: none;
}
.form-check-input:checked{
  border-color: #CF312D;
  background-color: #CF312D;
}

/* input number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* input date */
input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url('../../image/icon/time.svg') no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  border-width: thin;
}

/* input image */
.card-input-file {
    height: 100px;
    position: relative;
}
.card-input-file .label-upload-file{
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    background: #FFFFFF;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #9D9EA2;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.card-input-file input{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.form-search{
    gap: 12px;
}
.form-search .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media(max-width: 768px){
  .form-search{
    gap: 24px;
  }
}