﻿.ecommerce-search-pane {
    >span {
        height: 2.6rem;
    }
    .ecommerce-search-input {
        input {
            transition: all .5s ease-in-out;
            width: 0;
            opacity: 0;
            font-size: 0;
            border: none;
            padding: 0;
            outline: none;
            background: transparent;
        }

        position: absolute;
        transition: all .5s ease-in-out;
    }

    &.active {
        .ecommerce-search-input {
            position: relative;
            transition: all .5s ease-in-out;

            input {
                transition: all .5s ease-in-out;
                width: 10rem;
                opacity: 1;
                font-size: inherit;
            }
        }
    }
}
.header-content-wrap{
    width: 75%;
}
.dashboard{
    
}