.logo-mobile-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-mobile-container__link {
    margin: 20px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Script", sans-serif;
    font-size: 21px;
    color: #207cd9;
}

.logo-mobile-container__link__image {
    width: 65px;
    height: auto;
}

.logo-mobile-container__search {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-mobile-container__search input {
    width: 99%;
    padding: 4px 27px 4px 5px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #ccc;
    font-size: 13px;
    height: auto;
    font-family: "RobotoFlex", sans-serif;
}

.logo-mobile-container__search input:focus {
    border: 1px solid royalblue;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-mobile-container__search-icon {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 7px;

    background: linear-gradient(135deg, #89CFF0, #1E90FF);
    background-size: 200% 200%;
    animation: gradientShift 6s infinite alternate;

    -webkit-mask: url("/images/Home/icon-search5.png") center/cover no-repeat;
    mask: url("/images/Home/icon-search5.png") center/cover no-repeat;
}

@keyframes gradientShift {
    0% {
        background-position: left top;
    }

    100% {
        background-position: right bottom;
    }
}

@keyframes gradientShift {
    0% {
        background-position: left top;
    }

    100% {
        background-position: right bottom;
    }
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/RobotoFlex.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Script";
    src: url("/fonts/MarckScript-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@media(min-width: 0px) and (max-width:426px) {
    
    .logo-mobile-container__search input {
        height: 32px;
        background-color: rgba(0, 0, 0, 0);
    }
}

@media(min-width: 426px) and (max-width:769px) {

    .logo-mobile-container__link {
        margin: 20px 20px;
    }

    .logo-mobile-container__search input {
        height: 32px;
        background-color: rgba(0, 0, 0, 0);
    }
}

@media(min-width: 769px) {

    .logo-mobile-container {
        display: none;
    }
}