input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

svg {
    pointer-events: none;
}
.page-title {
    padding-inline: 10%;
}
.search-box-container {
    max-width: 270px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.search-box-form {
    position: relative;
    width: 44px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border: 0.5px solid #A90E064D;
    padding-block: 6px;
    padding-inline: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: width 0.6s;
}
.search-box-form:not(.empty):hover,
.empty {
    width: 100%;
}
.search-box-form:not(.empty):hover .search-input,
.empty .search-input {
    position: static;
}
.search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-block: 4px;
}
.search-input {
    width: 100%;
    position: absolute;
    left: 100%;
    color: #A90E064D;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    line-height: 2em;
    border: none;
    outline: none;
    transition: all 0.6s;
    background-color: transparent;
}
.search-input:focus {
    background-color: transparent;
}
.search-input::placeholder {
    color: inherit;
}

@media screen and(max-width: 512px) {
    .search-box-container {
        width: 200px;
    }
}