

.search-wrapper {
    /*position: absolute;
    top:50%;
    left:50%;*/
    position: relative;
    z-index: 1;
}

.nav_form {
    /*margin-top: 10rem;*/
}

.search-wrapper .input-holder {
    /*display: inline-block;*/
    overflow: hidden;
    width: 1.5rem;
    height: 1.5rem;
    /*margin-top: 1rem;*/
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-wrapper.active .input-holder {
    border-radius: 1rem;
    /*border: 1px solid #79c1f9;*/
    box-shadow: 0px 0px 5px #79c1f9;
    width: 10.6rem;
    height: 24px;
    background: #fff;
    -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}

.search-wrapper .input-holder .search-input {
    width: 86%;
    height: 24px;
    /* padding-left: 0.8rem; */
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 6px;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 0.5rem;
    line-height: 24px;
    color: #333333;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.search-wrapper.active .input-holder .search-input {
    margin-top: -8px;
    opacity: 1;
    background: #fff;
    -webkit-transform: translate(2px, 8px);
    -moz-transform: translate(2px, 8px);
    transform: translate(2px, 8px);
}

.search-wrapper .input-holder .search-icon {
    left: -4px;
    top: 0;
    /* width: 14px; */
    border: none;
    background: none;
    /* padding-top: 1px; */
    outline: none;
    position: relative;
    z-index: 2;
    float: right;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .search-wrapper .input-holder .search-icon span {
        /*float: left*/
        vertical-align: middle;
        position: relative;
        top: -2px;
    }
