﻿/*  === 1- Number input Start ===   */
/*  === 2- Product Container height ===   */
/*  === 3-  GOOGLE MAP Start ===   */
/*  === 4-  search ===   */

/* 1 Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.qty-btn {
    padding-left: 0px !important;
}

/*  === End of 1 ===   */

/*  === 2- Product Container height  startt ===   */
.product-img a img {
    height:14rem  !important;
    /*object-fit:contain;*/
}

.product-text-dt > h4{
    height:3.4rem;
}
.qty-cart{
   height: 3.1rem;
}

.qty-group{
    height:3.1rem;
}
.cart-product-img{
    height:7rem;
}
.cart-text > h4{
    height:3.4rem;
}

.text-cart > h4 {
    height: 2.7rem;
}
/*========= end ===========*/

.product-img-list > img {
    width: 100%;
    height:8rem;
    object-fit:contain;
    position: relative;
    padding: 10px 20px;
    display: block
}

/* ======= 3) GOOGLE MAP Start =========*/
.map-container {
    height: 400px;
    width: 100%;
}

.map-autocomplete-input {
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    margin-top: 10px;
    text-overflow: ellipsis;
    width: 400px;
    border: 0px;
    padding: 0px 17px;
    text-transform: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    user-select: none;
    direction: ltr;
    overflow: hidden;
    height: 40px;
    vertical-align: middle;
    color: rgb(86, 86, 86);
    font-family: Roboto, Arial, sans-serif;
    font-size: 18px;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
}

    .map-autocomplete-input:focus {
        outline: none;
    }

div.pac-container {
    z-index: 99999999999 !important;
}
/* ======= MAP End OF 3 =========*/


/* ======= SEARCH START  4 =========*/

/* Search box Suggestion and Sliding Tab */
.suggestions-wrapper {
    max-height: 80vh;
    width: inherit;
    position: absolute;
    z-index: 1001;
    top: 48px;
    background: white;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.15);
    overflow: scroll;
}

.suggestions {
    margin: 0;
    padding: 0;
}

    .suggestions li {
        background: white;
        list-style: none;
        padding: 5px 20px 5px 20px;
        transition: background 0.2s;
        /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.14)*/
    }

        .suggestions li.suggestions-content:hover {
            background: #F6F6F6;
            cursor: pointer;
        }

        .suggestions li a div img {
            width: 4.5rem;
            height: 4.5rem;
            object-fit: cover;
        }

        .suggestions li a {
            color: black;
        }

            .suggestions li a div div div.suggestion-name {
                font-size: 1rem;
            }

            .suggestions li a div div div, .suggestions li a span {
                font-size: 0.8rem;
            }

.suggestions-header {
    /*position: -webkit-sticky; /* Safari */
    position: sticky;
    -webkit-position: sticky;
    top: 0;
}


/* End of search box Suggestion and Sliding Tab*/

/* ======= SEARCH END  4 =========*/

.overflow-hidden-2-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical
}