@charset "UTF-8";
/* CSS Document */

#page_top {
/*    position: relative;*/
    background-color: #173c5f;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 200;
}
#page_top::before {
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    content: "\f106";
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media screen and (max-width:425px) {
    #page_top {
        display: none!important;
    }
}