.input-wrapper {
    flex: 1 68%;
    position: relative;
}
.input-wrapper input {
    width: 100%;
}
.clear-input {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    border: 0;
    padding: 0;
    background: transparent;
    color: #5a6a74;
    font-size: 26px;
    line-height: 26px;
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease, visibility 0.2s ease;
}
.clear-input:hover {
    color: #FF4B33;
}
.input-wrapper input:not(:placeholder-shown) + .clear-input {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.clear-input.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
