.search_footer_module {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.search_footer_module input {
    border: 0;
    background: transparent;
    color: white;
    color: #FFFBF3;
    text-align: right;
    font-feature-settings: 'salt' on;
    font-family: "Garton Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    width: 275px;
    transform: translateX(300px);
    transition: transform 1000ms;
    -webkit-transition: transform 1000ms;
  padding-right: 15px;
}

.search_icon {
    background: #24292f !important;
    padding-top: 3px;
  	z-index: 2;
  	cursor: pointer;
}

.submit_search {
    background: #24292f !important;
    z-index: 3;
    position: absolute;
    right: 0;
    top: 4px;
    display: none;
  	cursor: pointer;
}

.search_footer_module.open input {
    transform: translateX(0px);
}

.search_footer_module input::-ms-input-placeholder { /* Edge 12-18 */
  color: white;
}

.search_footer_module input::placeholder {
  color: white;
}