.acc-section {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-section > h2 {
  margin: 0;
  color: #3f51b5;
}
.acc-section #accessory_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
}
.acc-section #accessory_container .accessory_item {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-section #accessory_container .accessory_item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.acc-section #accessory_container .accessory_item:nth-of-type(2n) {
  background: #fafafa;
}
.acc-section #accessory_container .accessory_item > input[type=text] {
  width: 100%;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 0;
}
.acc-section #accessory_container .accessory_item > textarea {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 0;
  resize: none;
}
.acc-section #accessory_container .accessory_item > input[type=file] {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 320px;
  height: 32px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: white;
}
.acc-section #accessory_container .accessory_item .accessory-image-wrap {
  width: 30%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid #ddd;
  background: white;
}
.acc-section #accessory_container .accessory_item .accessory-image-wrap > input[type=file] {
  flex: 1 1 auto;
  align-self: flex-start;
  width: 100%;
  height: 32px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: white;
}
.acc-section #accessory_container .accessory_item .accessory-image-wrap .img-preview {
  width: 100%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.acc-section #accessory_container .accessory_item .accessory-image-wrap .img-preview > img {
  width: 100%;
  height: auto;
}
.acc-section #accessory_container .accessory_item .btn-remove-accessory {
  flex: 0 0 auto;
  align-self: flex-start;
  width: auto;
  height: 32px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #ff4040;
  background: white;
  border: 1px solid #ff4040;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.acc-section #accessory_container .accessory_item .btn-remove-accessory:hover {
  background: #ff4040;
  color: white;
}
.acc-section #btn-add-accessory {
  width: 100%;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #0066ff;
  border: 1px solid #0066ff;
  background: white;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.acc-section #btn-add-accessory:hover {
  background: #0066ff;
  color: white;
}/*# sourceMappingURL=admin_custom.css.map */