.tb-search-box__form.mobile .search-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    background-color: white;
    z-index: 1000;
    display: none;
    align-items: center;
}

.tb-search-box__form.mobile .search-box.show {
    display: flex;
}

.tb-search-box__form.mobile .search-box .search-box-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.tb-search-box__form.mobile .search-box .search-box-form .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.3rem;
}

.tb-search-box__form.mobile .search-box .search-box-form input {
    display: block;
    width: 100%;
    margin-right: 0.5rem;
}

.tb-search-box__form.desktop {
    display: none;
}

.tb-search-box__form.desktop .tb-search-box__inner {
    border: 1px solid #DEDEDE;
    border-radius: 25px;
    padding-inline: 0.5rem;
    display: flex;
}

@media (min-width: 768px) {
    .tb-search-box__form.mobile {
        display: none;
    }

    .tb-search-box__form.desktop {
        display: block;
    }
}

.tb-search-box__form.desktop .tb-search-box__inner input {
    border: none;
    background: transparent;
    outline: none;
    color: #333333;
}

.tb-search-box__form.desktop .tb-search-box__inner button {
    border: none;
    background: none;
    box-shadow: none;
    color: #C8C8C8;
}

.tb-search-box__form.desktop .tb-search-box__inner button:hover {
    border: none;
}
