#coeFuzzySearchModal {
    z-index: 1000000;
    max-height: calc(100% - 30px);
}

#coe_fuzzy_search_wrapper {
    position: absolute;
    z-index: 9998;
    background-color: #fff;
    padding: 0.5em;
    min-width: 320px;
}

/* ew adventury template */
.open.animated #coe_fuzzy_search_wrapper {
    width: 100%;
}

#coeFuzzySearchModal #coe_fuzzy_search_wrapper {
    position: relative;
    z-index: unset;
}

.coe_fuzzy_search_result_list_wrapper {
    position: relative;
    max-height: 50vh;
    overflow-y: auto;
}

.coe_fuzzy_search_result_row {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    border-bottom: solid 1px #ccc;
    border-bottom-color: #f2f2f2;
    width: 100%;
}

.coe_fuzzy_search_result_title {
    width: 100%;
}
.coe_fuzzy_search_result_row:hover {
    background-color: #f2f2f2;
}

.coe_fuzzy_search_result_img {
    display: block;
    max-width: 65px;
    max-height: 65px;
    height: auto;
}

.coe_fuzzy_search_result_row .no-image {
    display: block;
    width: 65px;
    min-height: 65px !important; /* Older template fluid fix */
    background-size: 55px auto; /* Older template fluid fix */
}

.coe_fuzzy_search_result_row .no-image .fa-camera,
.coe_fuzzy_search_result_row .no-image .fa-image {
    font-size: var(--c-font-size-lg);
}

.coe_fuzzy_search_result_info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 0.5rem;
    align-self: stretch;
    line-height: 1.2;
}

.coe_fuzzy_search_result_price {
    margin-top: 5px;
}

.coe_fuzzy_search_result_pm, .coe_fuzzy_search_result_price, .coe_fuzzy_search_result_price_special {
    font-size: smaller;
}

.coe_fuzzy_search_result_price .price-tag {
    font-weight: normal;
}

.coe_fuzzy_search_result_price_org {
    text-decoration: line-through;
}

.coe_fuzzy_search_more_results {
    width: 100%;
}

.matchExact {
    font-weight: bold;
}

.coe_fuzzy_search_spinner {
    background-image: url('../images/ajax-loader.gif') !important;
    background-position: left !important;
    background-repeat: no-repeat !important;
    /*background-color: inherit !important;*/
}

/* -- match icon -- */
.circular-chart {
    display: block;
    width: 3.5em;
    margin-left: 1em;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-chart.orange .circle {
    stroke: orange;
}

.circular-chart.yellow .circle {
    stroke: yellowgreen;
}

.circular-chart.green .circle {
    stroke: forestgreen;
}

.coe_fuzzy_search_result_chart .percentage {
    font-size: 8px;
    text-anchor: middle;
}

/* Evelations template fix */
#ew-search-input ~ #coe_fuzzy_search_wrapper {
    margin-top: 16px;
}

/* bootstrap 3 fix */
.cfs-css-fix {
    overflow: auto;
}
.cfs-css-fix .modal-title {
    float: left;
}
.cfs-css-fix .btn-close {
    float: right;
    border: 0;
    background-color: transparent;
    padding: 0;
    line-height: 1;
}

/*SMALL DEVICES*/
@media screen and (max-width: 480px) {
    .coe_fuzzy_search_result_row {
        width: auto;
    }
    #coe_fuzzy_search_wrapper {
        min-width: 100%;
    }
}