/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
    [STORE SEARCH]

    [MEDIA QUERIES]
*/


/* [STORE SEARCH] --------------------------------------------------- */

#searchstore {
    font-size: 1.3em;
}

    #searchstore .search-box {
        display: inline-block;
        padding: 0;
    }
    
/* [STORE SEARCH] END --------------------------------------------------- */


/* [MEDIA QUERIES] --------------------------------------------------- */


@media screen and (min-width: 992px) {
    #searchstore {
        position: relative;
        text-align: right;
    }

        #searchstore .search-box {
            position: absolute;
            right: 0;
            top: 100%;
            width: 0;
            width: 31.25rem;
            margin-top: 1.25rem;
            overflow: hidden;
            transition: 0.3s all;
        }

        #searchstore.show .search-box {
            width: 18.75rem;
        }
}

@media screen and (max-width:991.98px) {
    #searchstore .search-box {
       margin: 0.94rem 0;
    }
}


/* [MEDIA QUERIES] END --------------------------------------------------- */