*{
	margin: 0px;
	padding: 0px;
}
@media screen and (max-width: 980px){
    .singleSearchResult{
        margin-top: 15px;
    }
    .singleSearchResult p{
        font-size: 24px;
    }
}
@media screen and (min-width: 981px){
    .singleSearchResult p{
        font-size: 15px;
    }
}
.select-menu{
    text-align: center;
}
.select-menu.active .options{
    height: 40vh;
    overflow: scroll;
    padding: 0px;
}
.select-menu .fa,
.select-menu .options{
    transition: all 1s;
}
.select-menu.active .fa{
    transform: rotate(180deg);
}
.search-option-name{
    font-size: 16px;
    margin: 20px 0 10px 0px;
    font-weight: bold;
}
.select-menu .select-btn{
    display: flex;
    height: 40px;
    background: #E9F4FC;
    padding: 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}
.select-menu .options{
    height: 0;
    overflow: hidden;
    position: relative;
    padding: 0px;
    margin-top: 10px;
    border-radius: 8px;
    background: #E9F4FC;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    text-align: center;
}
.options .option{
    display: flex;
    height: 40px;
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    margin: 5px;
    text-align: center;
    padding-left: 10px;
}
.options .option:hover{
    background: #fff;
}
.options .option span{
    padding-left: 15px;
    transition: all 0.6s;
}
.options .option:hover span{
    padding-left: 25px;
}
.submit-btn-class, #submit-btn{
    text-align: center;
    background: blueviolet;
    color: #fff;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.8s;
    margin-top: 30px;
}
.submit-btn-class:hover, #submit-btn:hover{
    opacity: 0.8;
}
#hint{
    margin-top: 10px;
    font-size: 14px;
    color: red;
}
.searchResultWrap{
    margin-top: 20px;
}
#search_result #note{
    font-size: 16px;
    padding: 10px 5px;
}
.searchResultWrap img{
    width: 100%;
}
.searchResultWrap.process::before{
    animation: progress 3s ease-in-out forwards;
}
@keyframes progress {
    0% {
        left: -100%;
    }
    10% {
        left: -97%;
    }
    20% {
        left: -92%;
    }
    30% {
        left: -82%;
    }
    40% {
        left: -60%;
    }
    50% {
        left: -45%;
    }
    60% {
        left: -14%;
    }
    80% {
        left: -7%;
    }
    90% {
        left: -3%;
    }
    100% {
        left: 0%;
    }
}
.singleSearchResult{
    cursor: pointer;
    text-decoration: none;
}
.singleSearchResult p{
    color: #000;
    font-weight: bold;
    padding: 0 0 0 2px;
    margin: 0 0 0 2px;
}
.singleSearchResult:hover{
    opacity: 0.85;
}
.singleSearchResult a:hover{
    text-decoration: none;
}
#hint-quick-search{
    margin-top: 10px;
    font-size: 14px;
    color: red;
    text-align: center;
}