@use "@/src/assets/scss/variables" as *;
@use "@/src/assets/scss/partial" as *;

.DatePickerItemWrap {
  position: relative;
  input {
    position: relative;
    z-index: 1;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
  }
  &::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: block;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
    mask-position: center;
    background-color: $grey475Color;
    mask-image: url("../../../public/images/icon-date.svg");
    -webkit-mask-image: url("../../../public/images/icon-date.svg");
  }
}
