.search-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.search-wrapper.active {}

.search-wrapper .input-holder {
    overflow: hidden;
    height: 90px;
    background: rgba(255,255,255,0);
    position: relative;
    width: 70px;
    -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 {
    width: 940px;
    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: 880px;
    height: 31px;
    padding: 0 20px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    /*-webkit-transform: translate(0, 60px);
    -moz-transform: translate(0, 60px);
    transform: translate(0, 60px);*/
    -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;
    color: #afafaf;
    font-family: DINPro;
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    margin-top: 27px;
}
.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    /*-webkit-transform: translate(0, 27px);
    -moz-transform: translate(0, 27px);
    transform: translate(0, 27px);*/
}
.search-wrapper .input-holder .icon-search {
    width: 20px;
    height: 20px;
    border: none;
    background: #FFF;
    padding: 0;
    outline: none;
    position: absolute;
    top: 35px;
    right: 0;
    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;
    color: #ce303a;
    font-size: 20px;
    margin: 0;
    line-height: 20px;
}
.search-wrapper.active .input-holder .icon-search {
    width: 20px;
    height: 20px;
    margin: 0;
    -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    -moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    right: 50px;
}
.search-wrapper .close-icon {
    position: absolute;
    z-index: 1;
    top: 34px;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
    font-size: 20px;
}
.search-wrapper.active .close-icon {
    right: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.search-wrapper .close-icon::before, .search-wrapper .close-icon::after {
    position: absolute;
    content: "";
    background: #fff;
}

.search-wrapper.active .close-icon::before, .search-wrapper.active .close-icon::after {
    background: #ce303a;
}
.search-wrapper .close-icon::before {
    width: 2px;
    height: 26px;
    left: 10px;
    top: -2px;
}
.search-wrapper .close-icon::after {
    width: 26px;
    height: 2px;
    left: -2px;
    top: 10px;
}
.search-wrapper .result-container {
    width: 100%;
    position: absolute;
    top:80px;
    left:0;
    text-align: center;
    font-size: 14px;
    display:none;
    color:#B7B7B7;
}