.search-form__hd--wrap {
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 70px auto;
}

.card {
    border: none;
    background: #e0ebfb;
    border-radius: 0.375rem;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    min-width: 80vw;
}

.search-invoice {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 15px;
    height: 45px;
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 5px;
    vertical-align: middle;
    font-size: 14px;
    position: relative;
}

.search-input__invoice {
    color: var(--white-color);
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    margin-top: 5px;
    caret-color: transparent;
    line-height: 20px;
    transition: width 0.4s linear
}

.search-invoice .search-input__invoice {
    padding: 0 10px;
    width: 100%;
    caret-color: #536bf6;
    font-size: 15px;
    font-weight: 300;
    color: var(--black-color);
    transition: width 0.4s linear;
}

.search-icon {
    width: 50px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background-color: #536bf6;
    outline: none;
    border: none;

    border-radius: 5px;
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.search-icon:hover svg {
    fill: var(--white-color);
}

.card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--white-color);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    transition: all 2s;
}

.card-inner:hover {
    transform: scale(1.1);
}

.mg-text span {
    font-size: 12px;
}

.mg-text {
    line-height: 14px;
}

@media screen and (max-width: 575px) {
    .search-form__hd--wrap {margin-top: 20px;}
    .search-invoice .search-input__invoice {
        padding: 0 5px;
        font-size: 13px;
    }
}