/* Mozzo Search Icon */
.mozzo-search-icon {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

/* The Search Overlay */
.mozzo-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 991;
    transition: opacity 1s ease;
}
.mozzo-search-overlay.d-none {
    display: none;
}
.mozzo-search-overlay .overlay-background {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 992;
}
.mozzo-search-overlay .search-container {
    z-index: 993;
}

/* Search Input Field */
.mozzo-search-overlay .search-input,
.mozzo-search-overlay .search-input:focus {
    color: white;
    background-color: transparent;
    width: 300px;
    padding: 0.6rem 1rem;
    border: 1px solid white;
    border-radius: 3px;
    outline: none;
}
.mozzo-search-overlay .search-input::placeholder {
    color: white;
    opacity: 0.5;
}

/* Close Button */
.mozzo-search-overlay .close-search {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
