/* TOP button only */
.t2d_auto_sidebar_wrap,
.t2d_sidebar_mobile_wrap {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
    width: 62px;
    height: 62px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #0879ef;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .28s ease, transform .32s ease, visibility 0s linear .32s;
}

.t2d_auto_sidebar_wrap.is-visible,
.t2d_sidebar_mobile_wrap.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.t2d_auto_sidebar_wrap > ul,
.t2d_auto_sidebar_wrap > ul > li {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.t2d_auto_sidebar_wrap .t2d_gotop_btn,
.t2d_sidebar_mobile_wrap .t2d_gotop_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s ease;
}

.t2d_auto_sidebar_wrap .t2d_gotop_btn:hover,
.t2d_sidebar_mobile_wrap .t2d_gotop_btn:hover {
    background: #0069d8;
}

.t2d_sidebar_mobile_wrap { display: none; }

@media screen and (max-width: 1200px) {
    .t2d_auto_sidebar_wrap { display: none; }
    .t2d_sidebar_mobile_wrap { display: block; width: 54px; height: 54px; right: 12px; bottom: 12px; }
}
