/* Search Form */

/* Mobile Style */
@media only screen and (max-width: 768px) {

    .searchform {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        padding-bottom: 0.5rem;
    }
    .mobile_searchform {
        width: 35%;
        border-bottom: 2px solid #484848;
    }
    .searchpage_searchform {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        border-bottom: 2px solid white;
    }

    .searchform input {
        background-color: transparent;
        border: none;
    }
    .searchpage_searchform input {
        width: 100%;
        color: white;
    }
    .mobile_searchform input {
        width: 50%;
        color: #484848;
        transition: 0.5s;
    }
    .mobile_searchform input:focus {
        width: 100%;
    }

    .searchform input::placeholder {
        font-size: 1.2rem;
        opacity: 1;
    }
    .searchpage_searchform input::placeholder {
        color: white;
    }
    .mobile_searchform input::placeholder {
        color: #484848;
    }

    .searchpage_searchform img {
        width: 1.5rem;
    }

}

/* Desktop Style */
@media screen and (min-width: 769px) {

    .searchform {
        display: flex;
        flex-direction: row;
    }

    .searchpage_searchform {
        display: none;
    }

    .input_bottom_line {
        border-bottom: 0.06rem solid white;
    }
    .searchform input {
        width: 12rem;
        height: 2.125rem;
        padding: 0;
        color: white;
        background-color: transparent;
        border: none;
    }
    .searchform input::placeholder {
        color: white;
        opacity: 1;
        font-size: 1rem;
    }

    .searchsubmit {
        width: 2.5rem;
        height: auto;
        cursor: pointer;
    }

}
