@charset "utf-8";
/* CSS Document */
.scroll-btn-gotop.top {
    position: fixed;
    bottom: 24px;
    right: 24px !important;
    z-index: 1003;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.2) translateY(50px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}.scroll-btn-gotop.top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}.scroll-btn-gotop.top rect{
    fill:#200;
    transition: all 0.2s ease;
}.scroll-btn-gotop.top:hover rect{
    fill:#fff3f3
}.scroll-btn-gotop.top:hover {
    transform: scale(1.1) translateY(-4px);
}.scroll-btn-gotop.top svg{
    padding: 0;
}.scroll-btn-gotop.top:active {
    transform: scale(0.5) translateY(-4px);
}
.scroll-btn-go.bottom {
    position: fixed;
    bottom: 24px;
    right: 124px !important;
    z-index: 9999;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.2) translateY(50px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}.scroll-btn-go.bottom.is-visible {
    opacity: 1 !important;
    visibility: visible!important;
    transform: scale(1) translateY(0)!important;
}.scroll-btn-go.bottom rect{
    fill:#200;
    transition: all 0.2s ease;
}.scroll-btn-go.bottom:hover rect{
    fill:#fff3f3
}.scroll-btn-go.bottom:hover {
    transform: scale(1.1) translateY(-4px);
}.scroll-btn-go.bottom svg{
    padding: 0;
}.scroll-btn-go.bottom:active {
    transform: scale(0.5) translateY(-4px);
}.scroll-btn-go.bottom{
    rotate:180deg;
}