.search-panel{

    position: fixed;
    top: 95px;
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 15px 0 25px;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;

    transition:
        transform .5s ease,
        opacity .9s ease;

    z-index: 9999;

}

/* OPEN */

.search-panel.active{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;

}

/* SEARCH CONTAINER */

.search-container{

    position: relative;

    width: 650px;
    max-width: 58%;

}

/* SEARCH INPUT */

.field-search{
    width: 100%;
    height: 50px;
    padding: 0 55px 0 55px;
    border: none;
    outline: none;
    border-radius: 30px;
    background: var(--color-hover-bg);
    font-size: 16px;
    font-family: var(--ff-paragraph);
    color: var(--clr-text-secondary);
}

.field-search::placeholder{

    color: var(--clr-placeholder);

}

.icon-search{
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    object-fit: contain;
    pointer-events: none;

}

/* CLOSE BUTTON */

#btnclosesearch{
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
    color: var(--clr-text-secondary);
    transition: .3s ease;
}

#btnclosesearch:hover{
    color:var(--clr-text);
    transform: translateY(-50%) rotate(90deg);
}

/* SEARCH INPUT FOCUS */

.field-search:focus{

    box-shadow: 0 0 0 3px var(--clr-quote-box);

}


.access-shell{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;

}

@media (max-width:768px){

.search-panel{

    top:70px;

    padding:18px;

}

.search-container{

    width:100%;

    max-width:100%;

    height:50px;

    border-radius:18px;

    padding:0 6px;

}

.field-search{

    font-size:.9rem;

}

.icon-search{

    width:18px;

}

#btnclosesearch{

    font-size:1.7rem;

}

}
/* =========================================================
   SEARCH RESULTS
========================================================= */

.search-results{

    width: 650px;
    max-width: 58%;

    margin-top: 10px;

    display: flex;
    flex-direction: column;
    gap: 7px;

}


/* INDIVIDUAL RESULT */

.search-result-item{

    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 18px;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid rgba(180, 150, 170, .15);

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.search-result-item:hover{

    background: #fdf8fa;

    transform: translateY(-1px);

    box-shadow:
        0 6px 18px rgba(80, 50, 70, .08);

}


/* RESULT TEXT */

.search-result-content{

    min-width: 0;

}


.search-result-content h3{

    margin: 0 0 3px;

    font-family: var(--ff-display);

    font-size: 15px;

    font-weight: 500;

    color: var(--clr-heading);

}


.search-result-content p{

    margin: 0;

    font-family: var(--ff-paragraph);

    font-size: 12.5px;

    line-height: 1.4;

    color: var(--clr-text);

}


/* ARROW */

.search-result-arrow{

    flex-shrink: 0;

    margin-left: 15px;

    font-size: 17px;

    color: var(--clr-primary);

}
.search-result-text strong{

    font-family: var(--ff-paragraph);

    color: var(--clr-text);

    font-weight: 600;

    font-size: .85rem;
}

.search-result-text span{

    font-family: var(--ff-paragraph);

    color: var(--clr-text-secondary);

    font-size: .85rem;
}
/* NO RESULTS */

.search-no-results{

    width: 100%;
    box-sizing: border-box;

    padding: 16px;

    background: #ffffff;

    border-radius: 14px;

    text-align: center;

    border: 1px solid rgba(180, 150, 170, .15);

}


.search-no-results strong{

    display: block;

    margin-bottom: 4px;

    font-family: var(--ff-paragraph);

    font-weight: 500;

    color: var(--clr-heading);

}


.search-no-results p{

    margin: 0;

    font-family: var(--ff-paragraph);

    font-size: 12.5px;

    color: var(--clr-text);

}


/* MOBILE */

@media (max-width:768px){

    .search-results{

        width: 100%;
        max-width: 100%;

        margin-top: 10px;

    }

}

