.vas-search-container{
    width: 100%;
}
.vas-search-form{
    display: flex;
    flex-direction: column;
    position: relative;
}
.vas-search-input-row{
    position: relative;
}
.vas-input-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 25px;
    left: 10px;
    top: 10px;
}
.vas-close{
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
.vas-search-results{
    display: none;
    width: 100%;
    max-height: 550px;
    overflow-y: hidden;
    background-color: #fff;
    box-shadow: 2px 6px 8px #444;
    position: absolute;
    top: 50px;
    z-index: 9999;
    border: 1px solid #e3e3e3;
}
.vas-items-box{
    max-height: 500px;
    overflow-y: auto;
}
.vas-item{
    display: flex;
    gap: 10px;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}
.vas-item img{
    width: 70px;
    height: 70px;
}
.vas-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
}
.vas-content h4{
    font-size: 0.9rem !important;
    font-weight: 400;
}
.vas-content .mw-custom-modal-trigger{
    background: #fff !important;
    border: 2px solid #ff8600 !important;
    color: #ff8600 !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 1.6rem !important;
    min-height: unset !important;
    padding: unset !important;
    padding-top: 5px !important;
}
.vas-content>.vas-item,
.vas-price>.vas-item{
    display: none;
}
.vas-item-detail>.vas-item{
    border-bottom: unset;
}
.vas-items-box>.vas-content{
    position: relative;
}
.vas-items-box>.vas-content>.vas-item-detail{
    position: absolute;
    right: 80px;
    top: -80px;
}
.vas-item-detail .login-to-prices-msg{
    font-size: 12px;
}
.vas-view-all{
    width: 100%;
    background-color: #ff7100;;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
}
.vas-loader-div{
    width:32px;
    height:32px;
    display: none;
    justify-content: center;
    align-items: center;
}
.adding-sppiner-vas-loader,
.vas-loader {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: relative;
    animation: search-rotate 1s linear infinite
}
.adding-sppiner-vas-loader::before,
.adding-sppiner-vas-loader::after,
.vas-loader::before,
.vas-loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border:2px solid #666;
    animation: vas-prixClipFix 2s linear infinite ;
}
.adding-sppiner-vas-loader::after,
.vas-loader::after{
    border-color: #ff8600;
    animation: vas-prixClipFix 2s linear infinite , search-rotate 0.5s linear infinite reverse;
    inset: 3px;
}

@keyframes search-rotate {
    0%   {transform: rotate(0deg)}
    100%   {transform: rotate(360deg)}
}
@keyframes vas-prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}