/* iPadPro, iPadAir, SurfacePro7 */
@media (max-width: 1024px) and (min-width: 821px) {
    .header-container{
        padding: 20px 0;
    }
    .header-container-content-center{
        display: none;
    }
    .header-actions{
        display: none;
    }
    .header-menu-list{
        display: none;
    }
    .header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
    }
    .header-toggle-btn-icon{
        width: 30px;
        height: 30px;
    }
    .header-toggle-btn-icon-img{
        width: 30px;
        height: 30px;
    }
    .header-toggle-btn-icon-img:last-of-type{
        display: none;
    }
    .header-transparent .header-toggle-btn-icon-img:first-of-type{
        display: none;
    }
    .header-transparent .header-toggle-btn-icon-img:last-of-type{
        display: block;
    }
    .header-brand-logo{
        width: max-content;
        height: 40px;
    }
    .header-brand-logo-img{
        width: unset;
        height: 40px;
        object-fit: contain;
    }
    .language-switcher{
        padding-left: 0;
        width: 30px;
        height: 30px;
        border: none;
    }
    .header-transparent .language-switcher{
        border: none;
    }
    .language-switcher-icon{
        width: 30px;
        height: 30px;
    }
    .language-switcher-icon-img{
        width: 30px;
        height: 30px;
    }

    /* 手机版下拉菜单 */
    @keyframes fadeRight {
        from {transform: translateX(-100%);}
        to {transform: translateX(0%);}
    }
    /* 手机版下拉菜单 */
    .header-mobile-dropdown-menu-container{
        width: 100%;
        height: calc(100vh - 30px - var(--wp-admin--admin-bar--height, 0px));
        padding: calc(10px + var(--wp-admin--admin-bar--height, 0px)) 0 20px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        animation: fadeRight ease-in .3s forwards;
    }
    .header-mobile-dropdown-menu-header{
        width: calc(100% - 40px);
        padding: 10px 20px 20px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: rgba(0,0,0,0.1) solid 1px;
    }
    .header-mobile-dropdown-menu-header-left{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-right{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #6fa032;
        border-radius: 15px;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon{
        width: 14px;
        height: 14px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon-img{
        width: 14px;
        height: 14px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-list{
        width: calc(100% - 40px);
        padding: 0 20px;
        height: calc(100% - 61px);
        overflow-y: auto;
        /*padding-top: 20px;*/
    }
    .header-mobile-dropdown-menu{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .header-mobile-dropdown-menu-info{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: #EEEEEE solid 1px;
    }
    .header-mobile-dropdown-menu-title{
        font-size: 14px;
        color: #000000;
        flex: 1;
        text-decoration: none;
    }
    .header-mobile-dropdown-menu-icon{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-icon-img{
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-icon-img:last-of-type{
        display: none;
    }
    .header-mobile-dropdown-menu-brand-logo{
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-brand-logo-img{
        height: 40px;
        object-fit: contain;
        /*filter: grayscale(100%) brightness(1000%);*/
    }
    .header-mobile-dropdown-menu-sub-menu{
        display: none;
        width: calc(100% - 20px);
        padding-left: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: #EEEEEE solid 1px;
        padding-top: 10px;
    }
    .header-mobile-dropdown-menu-sub-menu-item{
        width: 100%;
        font-size: 14px;
        color: #000000;
        text-decoration: none;
        padding-bottom: 10px;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-sub-menu{
        display: flex;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-icon-img:last-of-type{
        display: block;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-icon-img:first-of-type{
        display: none;
    }
}

/* iPadMini */
@media (max-width: 820px) and (min-width: 641px) {
    .header-container{
        padding: 20px 0;
    }
    .header-container-content-center{
        display: none;
    }
    .header-actions{
        display: none;
    }
    .header-menu-list{
        display: none;
    }
    .header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
    }
    .header-toggle-btn-icon{
        width: 30px;
        height: 30px;
    }
    .header-toggle-btn-icon-img{
        width: 30px;
        height: 30px;
    }
    .header-toggle-btn-icon-img:last-of-type{
        display: none;
    }
    .header-transparent .header-toggle-btn-icon-img:first-of-type{
        display: none;
    }
    .header-transparent .header-toggle-btn-icon-img:last-of-type{
        display: block;
    }
    .header-brand-logo{
        width: max-content;
        height: 40px;
    }
    .header-brand-logo-img{
        width: unset;
        height: 40px;
        object-fit: contain;
    }
    .language-switcher{
        padding-left: 0;
        width: 30px;
        height: 30px;
        border: none;
    }
    .header-transparent .language-switcher{
        border: none;
    }
    .language-switcher-icon{
        width: 30px;
        height: 30px;
    }
    .language-switcher-icon-img{
        width: 30px;
        height: 30px;
    }

    /* 手机版下拉菜单 */
    @keyframes fadeRight {
        from {transform: translateX(-100%);}
        to {transform: translateX(0%);}
    }
    /* 手机版下拉菜单 */
    .header-mobile-dropdown-menu-container{
        width: 100%;
        height: calc(100vh - 30px - var(--wp-admin--admin-bar--height, 0px));
        padding: calc(10px + var(--wp-admin--admin-bar--height, 0px)) 0 20px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        animation: fadeRight ease-in .3s forwards;
    }
    .header-mobile-dropdown-menu-header{
        width: calc(100% - 40px);
        padding: 10px 20px 20px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: rgba(0,0,0,0.1) solid 1px;
    }
    .header-mobile-dropdown-menu-header-left{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-right{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #6fa032;
        border-radius: 15px;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon{
        width: 14px;
        height: 14px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon-img{
        width: 14px;
        height: 14px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-list{
        width: calc(100% - 40px);
        padding: 0 20px;
        height: calc(100% - 61px);
        overflow-y: auto;
        /*padding-top: 20px;*/
    }
    .header-mobile-dropdown-menu{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .header-mobile-dropdown-menu-info{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: #EEEEEE solid 1px;
    }
    .header-mobile-dropdown-menu-title{
        font-size: 14px;
        color: #000000;
        flex: 1;
        text-decoration: none;
    }
    .header-mobile-dropdown-menu-icon{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-icon-img{
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-icon-img:last-of-type{
        display: none;
    }
    .header-mobile-dropdown-menu-brand-logo{
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-brand-logo-img{
        height: 40px;
        object-fit: contain;
        /*filter: grayscale(100%) brightness(1000%);*/
    }
    .header-mobile-dropdown-menu-sub-menu{
        display: none;
        width: calc(100% - 20px);
        padding-left: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: #EEEEEE solid 1px;
        padding-top: 10px;
    }
    .header-mobile-dropdown-menu-sub-menu-item{
        width: 100%;
        font-size: 14px;
        color: #000000;
        text-decoration: none;
        padding-bottom: 10px;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-sub-menu{
        display: flex;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-icon-img:last-of-type{
        display: block;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-icon-img:first-of-type{
        display: none;
    }
}

/* iPhone */
@media (max-width: 640px) {
    .header-container{
        padding: 20px 0;
    }
    .header-container-content-center{
        display: none;
    }
    .header-actions{
        display: none;
    }
    .header-menu-list{
        display: none;
    }
    .header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
    }
    .header-toggle-btn-icon{
        width: 30px;
        height: 30px;
    }
    .header-toggle-btn-icon-img{
        width: 30px;
        height: 30px;
    }
    .header-toggle-btn-icon-img:last-of-type{
        display: none;
    }
    .header-transparent .header-toggle-btn-icon-img:first-of-type{
        display: none;
    }
    .header-transparent .header-toggle-btn-icon-img:last-of-type{
        display: block;
    }
    .header-brand-logo{
        width: max-content;
        height: 40px;
    }
    .header-brand-logo-img{
        width: unset;
        height: 40px;
        object-fit: contain;
    }
    .language-switcher{
        padding-left: 0;
        width: 30px;
        height: 30px;
        border: none;
    }
    .header-transparent .language-switcher{
        border: none;
    }
    .language-switcher-icon{
        width: 30px;
        height: 30px;
    }
    .language-switcher-icon-img{
        width: 30px;
        height: 30px;
    }

    /* 手机版下拉菜单 */
    @keyframes fadeRight {
        from {transform: translateX(-100%);}
        to {transform: translateX(0%);}
    }
    /* 手机版下拉菜单 */
    .header-mobile-dropdown-menu-container{
        width: 100%;
        height: calc(100vh - 30px - var(--wp-admin--admin-bar--height, 0px));
        padding: calc(10px + var(--wp-admin--admin-bar--height, 0px)) 0 20px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        animation: fadeRight ease-in .3s forwards;
    }
    .header-mobile-dropdown-menu-header{
        width: calc(100% - 40px);
        padding: 10px 20px 20px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: rgba(0,0,0,0.1) solid 1px;
    }
    .header-mobile-dropdown-menu-header-left{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-right{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #6fa032;
        border-radius: 15px;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon{
        width: 14px;
        height: 14px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-header-toggle-btn-icon-img{
        width: 14px;
        height: 14px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-list{
        width: calc(100% - 40px);
        padding: 0 20px;
        height: calc(100% - 61px);
        overflow-y: auto;
        /*padding-top: 20px;*/
    }
    .header-mobile-dropdown-menu{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .header-mobile-dropdown-menu-info{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: #EEEEEE solid 1px;
    }
    .header-mobile-dropdown-menu-title{
        font-size: 14px;
        color: #000000;
        flex: 1;
        text-decoration: none;
    }
    .header-mobile-dropdown-menu-icon{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-icon-img{
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .header-mobile-dropdown-menu-icon-img:last-of-type{
        display: none;
    }
    .header-mobile-dropdown-menu-brand-logo{
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-mobile-dropdown-menu-brand-logo-img{
        height: 40px;
        object-fit: contain;
        /*filter: grayscale(100%) brightness(1000%);*/
    }
    .header-mobile-dropdown-menu-sub-menu{
        display: none;
        width: calc(100% - 20px);
        padding-left: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: #EEEEEE solid 1px;
        padding-top: 10px;
    }
    .header-mobile-dropdown-menu-sub-menu-item{
        width: 100%;
        font-size: 14px;
        color: #000000;
        text-decoration: none;
        padding-bottom: 10px;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-sub-menu{
        display: flex;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-icon-img:last-of-type{
        display: block;
    }
    .header-mobile-dropdown-menu-open .header-mobile-dropdown-menu-icon-img:first-of-type{
        display: none;
    }
}