.form-group.with-mask-guide .form-control{
    position: relative;
    z-index: 1;
    background: transparent;
}

.form-group.with-mask-guide label[placeholder]{
    z-index: 3;
}

.form-group.with-mask-guide .mask-guide{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: #000000;
    white-space: pre;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.15s ease;
    font-variant-numeric: tabular-nums;
    overflow: hidden;
}

.form-group.with-mask-guide .mask-guide.is-visible{
    opacity: 1;
}

.form-group.with-mask-guide .mask-guide__consumed{
    visibility: hidden;
}

.form-group.with-mask-guide .mask-guide__remaining{
    color: #000000;
}
