.tip-buttons,
.checkouttabs {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
    row-gap: 10px;
    margin: 20px 0;
}
/* search css start  */

.form-group {
    position: relative;
}

.sidebar-menu-input-1 {
    margin-top: 20px;
}

.sidebar-menu-input-2 {
    margin-top: 40px;
}

.form-group input {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    background-color: var(--white--color);
    color: var(--text--color);
    border: 1px solid #343434;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    padding: 6px 10px;
}

.form-group label {
    position: absolute;
    left: 18px;
    /* top: 12px; */
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text--color);
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.form-group input:focus {
    border-color: #343434;
    outline: none;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    background-color: #ffffff;
    border-radius: 4px;
    left: 8px;
    position: absolute;
    top: -12px;
    left: 35px;
    padding: 2px;
    z-index: 1;

    .sidebar-form-icon {
        display: none;
    }
}

:placeholder-shown {
    display: block;
}

.sidebar-form-icon {
    align-self: center !important;
    margin-right: 5px;
}

#search {
    margin-top: 70px;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-button .search-btn {
    border: none;
    cursor: pointer;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color);
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 50px;
}

/* search css end  */
/* popular services start  */
.popular-service-card img {
    max-width: 80px;
    max-height: 80px;
}

.popular-service-card h4 {
    margin-top: 10px;
    color: var(--text--color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
}

.all-popular-services {
    column-gap: 70px;
    row-gap: 30px;
}

/* popular services end  */
/* recent search start */
.tip-buttons {
    display: flex;
    align-items: baseline;
    justify-content: start;
    column-gap: 10px;
    padding: 10px 0;
}

.tip-btn {
    cursor: pointer;
    background: transparent;
    white-space: nowrap;
    border: 1px solid var(--text--color);
    color: var(--text--color);
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 20px;
}

.tip-btn:active,
.tip-btn.active {
    border: 1px solid var(--primary--color);
    background: var(--primary--color--with--opacity);
}

.menu-page-heading h4 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
    color: var(--secondary--color);
}

.recent-searches {
    margin: 30px 0;
}

/* recent search end */

/* popular services start  */
.popular-service-card img {
    max-width: 80px;
    max-height: 80px;
}

.popular-service-card h4 {
    margin-top: 10px;
    color: var(--text--color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
}

/* popular services start  */

/* RESPONSIVE START */
@media only screen and (max-width: 768px) {
    .all-popular-services {
        display: flex;
        flex-wrap: wrap;
        /* gap: 30px; */
        margin: 30px 0;
    }

    .tip-buttons {
        row-gap: 15px;
        flex-wrap: wrap;
    }

    #search {
        margin-top: 53px !important;
    }

    .search-button .search-btn {
        padding: 10px 20px;
    }
}


/* RESPONSIVE end */
