/*==================================================
SEARCH
==================================================*/

.sidv-search{

    position:relative;

    width:100%;

}

.sidv-search__wrapper{

    display:flex;

    align-items:center;

    height:56px;

    background:#ffffff;

    border:1px solid #E4E7EC;

    border-radius:999px;

    overflow:hidden;

    transition:.25s;

}

.sidv-search__wrapper:focus-within{

    border-color:var(--sidv-primary,#FF9800);

    box-shadow:0 0 0 4px rgba(255,152,0,.12);

}

/*==================================================
ICON LEFT
==================================================*/

.sidv-search__leading{

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#98A2B3;

    flex-shrink:0;

}

.sidv-search__leading .sidv-icon{

    color:#98A2B3;

}

/*==================================================
INPUT
==================================================*/

.sidv-search__input{

    flex:1;

    height:100%;

    border:none;

    outline:none;

    background:transparent;

    color:#0D2137;

    font-size:.95rem;

    font-weight:500;

    padding-right:.5rem;

}

.sidv-search__input::placeholder{

    color:#98A2B3;

    font-weight:400;

}

/*==================================================
BUTTON
==================================================*/

.sidv-search__button{

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:none;

    background:var(--sidv-primary,#FF9800);

    color:#ffffff;

    cursor:pointer;

    transition:.25s;

    flex-shrink:0;

}

.sidv-search__button:hover{

    background:#F08C00;

}

.sidv-search__button .sidv-icon{

    color:#ffffff;

}

/*==================================================
RESULTS
==================================================*/

.sidv-search__results{

    display:none;

    position:absolute;

    top:calc(100% + .75rem);

    left:0;

    width:100%;

    background:#ffffff;

    border:1px solid #E5E7EB;

    border-radius:18px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    overflow:hidden;

    z-index:100;

}