#custom-search-wrapper {
    height: 50px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100vw - 16px);
    display: flex;
    font-size: 15px;
    text-transform: uppercase;
    fill: #000;
    color: #000;
    background-color: #fff;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.17);
}
#custom-search-wrapper input#searchElement {
    padding-left: 16px;
    border: 0;
    width: 100%;
    margin: 0;
    color: #ff8b74;
}
#custom-search-wrapper input#searchElement:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}
#custom-search-wrapper .icon-button {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #000;
    border:0;
    background-color: #fff;
}
#custom-search-wrapper .icon-button:focus {
    outline: none;
    border: 0;
    box-shadow: none;
}
#custom-search-wrapper .icon-button.go-back-icon {
    width: 0px;
    overflow: hidden;
    transition: all 0.26s cubic-bezier(0.51, -0.4, 0.62, 1.42);
}
#custom-search-wrapper .icon-button.go-back-icon.visible {
    transition: all 0.26s cubic-bezier(0.51, -0.4, 0.62, 1.42);
    width: 50px;
}
#custom-search-wrapper .icon-button .icon-holder.clear-icon {
    transform: translate(40px, 0);
    transition: all 0.45s cubic-bezier(0.51, -0.4, 0.62, 1.42);
}
#custom-search-wrapper .icon-button .icon-holder.clear-icon:before, #custom-search-wrapper .icon-button .icon-holder.clear-icon::after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #ff8b74;
    position: absolute;
    top: 50%;
    left: 50%;
}
#custom-search-wrapper .icon-button .icon-holder.clear-icon:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#custom-search-wrapper .icon-button .icon-holder.clear-icon:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#custom-search-wrapper .icon-button .icon-holder.clear-icon.visible {
    transform: translate(50%, 50%) rotate(-180deg);
    transition: all 0.45s cubic-bezier(0.51, -0.4, 0.62, 1.42);
}
#custom-search-wrapper .icon-button .icon-holder.search-icon:before {
    content: "";
    display: block;
    width: 1px;
    background-color: #f3f3f3;
    height: 36px;
    left: 0;
    top: 8px;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
}
#custom-search-wrapper .icon-button .icon-holder path:last-child {
    fill: #54595f;
}
#custom-search-wrapper .icon-button:hover {
    cursor: pointer;
}
#custom-search-wrapper .icon-button:hover path:last-child {
    fill: #ff8b74;
}
