
.fibo-sample-wrapper { position: relative;  }
.fibo-sample-loader { border: 4px solid #ccc; border-top: 4px solid #333; border-radius: 50%; width: 20px; height: 20px; animation: spin 1s linear infinite; position: absolute; right: 10px; top: 10px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.fibo-sample-results { list-style: none; margin: 0; padding: 0; background: #fff;  max-height: 300px; overflow-y: auto; position: absolute; width: 100%; z-index: 1000; }


.fibo-sample-results img { 
	background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    display: block;
    margin: auto;
    padding: 2px;
    height: auto;
    width: 40px;
 }
.fibo-sample-results a { 
	cursor: pointer;
    font-size: 12px;
    line-height: 110%;
    text-align: left;
    padding: 7px 10px;
    position: relative;
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    resize: vertical;
    width: 100%;
    transition: none!important;
     }


  .fibo-sample-wrapper button{
  	background: 0 0;
    border-radius: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: absolute;
    min-height: 33px;
    min-width: 33px;
    height: 33px;
    width: 33px;
    right: 23px;
    top: 9px;
    transition: none;
  }   

  .s_img {
  	margin-right: 10px;
  } 

  .s_title {
  	width: 70%;
  	margin-right: 10px;
  } 

    .s_price {
  	width: 20%;
  	margin-right: 10px;
  } 


li.no-results {
	padding: 10px;
}

.fibo-sample-input-wrapper {
    position: relative;
}

#fibo-sample-input {
    padding-right: 30px; /* Space for the X button */
}

#fibo-clear-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    display: none;
}

#fibo-clear-button.show {
    opacity: 1;
    pointer-events: auto;
    display: block;
}


