/* 
Theme Name: Crown Boxes
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Talha Bashir
Author URI: talhacodes.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Base Styling */
#collision-circle-btn {
    display: inline-block;
    color: #000;
	border-radius:8px;
    background: #f1f1f1;
    padding: 11px;
    border: 2px solid #002868;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    font-family: sans-serif;
    
    font-weight: bold;
    z-index: 1;
}

/* Hover States */
#collision-circle-btn:hover {
    cursor: pointer;
    color: #fff;
}

/* Circle Animations */
#collision-circle-btn:before, 
#collision-circle-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #bf0a30;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.7s ease-in-out;
}

#collision-circle-btn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

#collision-circle-btn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

/* Hover Animations */
#collision-circle-btn:hover:before {
    animation: circle-left 0.7s both alternate;
}

#collision-circle-btn:hover:after {
    animation: circle-right 0.7s both alternate;
}

/* Keyframes */
@keyframes circle-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes circle-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
.ajax-search-result {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.search-product-image {
    margin-right: 10px;
}

.search-product-image img {
    max-width: 50px; /* You can adjust the size */
    height: auto;
}

.search-result-title a {
    font-size: 16px; /* Adjust the font size as needed */
    text-decoration: none;
    color: #000;
}

.search-result-title a:hover {
    color: #0073e6; /* Adjust hover color as needed */
}
#ajax-search-results {
	display: block;
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 9999;
	margin-top: 20px;
}

#ajax-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#ajax-search-results li {
    padding: 8px;
    border-bottom: 1px solid #eee;
	list-style-type: none;
}

#ajax-search-results li a {
    color: #333;
    text-decoration: none;
}

#ajax-search-results li a:hover {
    color: #BF0A30;
}
#ajax-search-input{
	border-radius:8px;
}

