.wcas-box {
    position: relative;
    max-width: 100%;
}

#wcas-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
	height: 50px;
    border-radius: 10px;
}

#wcas-results {
    position: fixed;
  width: 42.7%;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 9999;
  border-radius: 10px;
}

.wcas-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wcas-item {
    border-bottom: 1px solid #eee;
}

.wcas-item a {
    display: flex;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #000;
}

.wcas-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.wcas-title {
    font-weight: bold;
}

.wcas-price {
    color: green;
    display: block;
}

.wcas-empty,
.wcas-loading {
    padding: 10px;
}

@media screen and (max-width:600px){
#wcas-results {width: 99%;top: 142px;left: 0;right: 0;margin: auto; height:400px;overflow:scroll}
}