.hidden {
    display: none !important;
}

#open-search {
    background-color: transparent;
    border: 0;
    color: #e7e9ea;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#interstellar-search * {
    box-sizing: border-box;
}

#interstellar-blend-search {
    position: relative;
}

#interstellar-blend-search #tab-container {
    display: flex;
    margin-top: 4px;
    gap: 1rem;
}

#interstellar-blend-search .three-line-sample {
    -webkit-line-clamp: 3 !important;
}

#interstellar-blend-search #tab-container button {
    background-color: transparent !important;
    font-family: "riviera-thick";
    text-transform: uppercase;
    border-bottom-width: 4px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-top-width: 0px !important;
    border-style: solid;
    border-radius: 0px !important;
    color: #e7e9ea;
    margin: 0;
}

/* #interstellar-blend-search .close {
    color: #e7e9ea;
    font-size: 24px;
    font-family: "riviera-thick";
    position: absolute;
    top: -2rem;
    right: 15px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
} */

#interstellar-blend-search #close-word {
    font-size: 14px;
}

#interstellar-blend-search .spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 2s linear infinite;
    margin-left: 4px;
}

#interstellar-blend-search mark {
    background-color: #d80001;
    color: #e7e9ea;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    border-radius: 4px;
}

#interstellar-blend-search #search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100000;
}

#interstellar-blend-search #search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-radius: 0.25rem;
    border-color: #262626;
    border-style: solid;
    border-width: 1px;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
}

#interstellar-blend-search #search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: black;
    border-color: #262626;
    border-radius: 0px;
    border-width: 0px;
    border-style: none;
    z-index: 100001;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

#interstellar-blend-search #search-modal input {
    /* height: 2.75rem !important; */
    width: 100% !important;
    background-color: #141414 !important;
    padding: 10px 16px;
    border-width: 0px !important;
    font-family: "riviera-thin" !important;
    font-size: 16px !important;
    color: #e7e9ea !important;
    box-sizing: border-box !important;
    outline: none !important;
    border-radius: 50px !important;
    caret-color: red;
}

#interstellar-blend-search #search-modal #search-results {
    flex-grow: 1;
    overflow-y: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#interstellar-blend-search #search-modal ul {
    margin: 0 !important;
    width: 100%;
}

#interstellar-blend-search #search-modal li {
    display: flex;
    flex-direction: column;
    background-color: black;
    border-bottom: 1px solid transparent;
    position: relative;
}

#interstellar-blend-search #search-modal li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    border-bottom: 1px solid #242424;
    height: 0;
}

#interstellar-blend-search #search-modal li:last-child:after {
    border-bottom: none;
}

#interstellar-blend-search #search-modal li .search-result-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#interstellar-blend-search
    #search-modal
    li
    .search-result-container
    .search-result-title {
    font-size: 17px;
    font-family: "riviera-thick";
    color: #e7e9ea;
    padding-bottom: 8px;
}

#interstellar-blend-search
    #search-modal
    li
    .search-result-container
    .search-result-snippet {
    font-size: 13px;
    font-family: "riviera-thin";
    color: #e7e9ea;
    line-height: 1.6;
}

#interstellar-blend-search #search-modal li .accordion-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

#interstellar-blend-search #search-modal li .accordion-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1rem;
}

@keyframes expandAccordion {
    from {
        height: 0;
    }
    to {
        height: 250px;
    }
}

@keyframes collapseAccordion {
    from {
        height: 250px;
    }
    to {
        height: 0;
    }
}

#interstellar-blend-search #search-modal li .accordion-content .ingredients {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    gap: 4px;
}

#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .ingredient-skeleton {
    height: 175px;
    width: 175px;
    background-color: #141414;
    animation: pulseAnimation 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

#interstellar-blend-search #search-modal li .accordion-content .call-to-action {
    display: flex;
    gap: 8px;
}

#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .call-to-action
    button,
#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .call-to-action
    a {
    flex: 1;
    text-transform: uppercase;
    font-family: "riviera-thick";
    margin: 0;
    border-radius: 50px !important;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e7e9ea;
}

#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .call-to-action
    button {
    border: 1px solid #262626;
    font-size: 14px;
    background-color: #b20001;
}

#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .call-to-action
    a {
    background-color: transparent;
    border: 1px solid #262626;
    text-decoration: none;
}

#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .ingredients
    .ingredient-container {
    position: relative;
    flex: 0 0 auto;
    height: 175px;
}

#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .ingredients
    .ingredient-container
    img {
    border-radius: 0px;
    height: 175px;
    width: 175px;
}
#interstellar-blend-search
    #search-modal
    li
    .accordion-content
    .ingredients
    .ingredient-container
    .ingredient-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: "riviera-thin";
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    line-height: 1rem;
    color: #e7e9ea;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#interstellar-blend-search #search-modal li img {
    flex: 0 0 auto;
    height: 90px;
    width: 90px;
    border-radius: 1rem;
}

#interstellar-blend-search #search-modal li .post-info {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    font-family: "riviera-thin";
    flex-grow: 1;
    min-width: 0;
}

#interstellar-blend-search #search-modal li .accordion-toggle {
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#interstellar-blend-search #search-modal li .post-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
    font-family: "riviera-thick";
    color: #e7e9ea;
}

#interstellar-blend-search #search-modal li .post-price {
    font-family: "riviera-thick";
    color: #e7e9ea;
    margin-top: 4px;
    font-size: 16px;
}

#interstellar-blend-search #search-modal li .post-excerpt {
    margin: 0;
    color: #e7e9ea;
}

@media screen and (min-width: 768px) {
    #interstellar-blend-search #search-modal {
        max-width: 600px;
        max-height: 80%;
        border-radius: 10px;
        border-width: 1px;
        border-style: solid;
    }
}

@keyframes pulseAnimation {
    0%,
    100% {
        background-color: #141414;
    }
    50% {
        background-color: #1a1a1a;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
