/*
Theme Name: Flower
Author: Abhijit Jana
Theme URI: https://ewayscraper.com
Tags: hats
Version: Latest Version
*/
 

.variation-radios {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.variation-radios label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}


/* -------------- */

.dlvry-zne-frm-inr{
    position:relative;
}

.prediction-list{
    position:absolute;
    top:80%;
    left:0;
    right:0;
    margin-top:5px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    max-height:97px;
    overflow-y:auto;
    display:none;
    z-index:99999;
}

.prediction-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:2px 11px;
    cursor:pointer;
    transition:.25s;
    border-bottom:1px solid #f3f3f3;
}

.prediction-item:last-child{
    border-bottom:none;
}

.prediction-item:hover{
    background:#fff3f7;
}

.prediction-icon{
    font-size:18px;
}

.prediction-text{
    font-size:15px;
    color:#333;
}