﻿body {
    background: #262a2f;
    color: #333
}

.search-box {
    width: 100%;
    background: #fff;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    /*    border: 2px solid #cccccc1c;
*/ border-radius: 5px;
}


.search-box-row {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.input-box {
    flex: 1;
    height: 50px;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #333;
}

.search-button {
    background-color: transparent;
    border: 0;
    outline: 0;
    
}
.search-button .fa-search {
        width: 25px;
        color: #555;
        font-size: 25px;
        cursor: pointer;
    }

::placeholder {
    color: #555;
}

.result-box {
    width: 100%;
    height: auto;
    max-height: 300px;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.result-box ul {
    border-top: 1px solid #999;
    padding: 0px 0px;
    transition: opacity 0.3s ease-in-out;
    margin-bottom: 0px;
}

.result-box ul li {
    list-style: none;
    border-radius: 3px;
    padding: 0px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-bottom: dotted 1px #e9f3ff;
}

.result-box ul li:hover {
    background-color: #e9f3ff;
}

.hidden {
    max-height: 0;
    opacity: 0;
}

.visible {
    max-height: 300px;
    opacity: 1;
    position: absolute;
    z-index: 10000;
    background: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    top:67px
}
.li-parent {
    display: flex;
    align-items: center;
}
.li-parent img{
    border-radius:50%;
}
.li-child {
    margin-left: 10px;
    margin-top: 12px;
    text-align: left;
}
.li-child i.icon-lh {
    font-size: 20px;
}
.star-address {
    font-size: 11px;
    margin-bottom: 0px !important;
    margin-left: 5px
}
.tencoso{
    font-size:12px;
    font-weight:500;
    margin-bottom:0px;
}
.tencoso span {
    opacity: 0.6
}

.star-address .DaXepHang {
    display: inline-block;
    margin-top: 5px;
}
.star-address span.ChuaXepHang {
    margin-right: 5px;
    display: inline-block;
}
.star-address .LoaiHinh {
    opacity: 0.6;
    font-style:italic;
    position:absolute;
} 
@media (min-width: 0px) {
    .search-box {
        width: 80%;
    }
}

@media (min-width: 768px) {
    .search-box {
        width: 50%;
    }
}