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


    .pagetop a {
    color: #000000;
    text-decoration: none;
    display: block;
    font-size: 5rem;
    }
    .pagetop.show {
    height: auto;
    opacity: 1;
    animation-name: fadein;
    width: 75px;
    z-index: 10000;
    }
    .pagetop.hide {
      height: 0;
      opacity: 0;
      animation-name: fadeout;
    }
    
    @keyframes fadein {
      0% {
        height: 0;
        opacity: 0;
      }
      1% {
        height: auto;
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    @keyframes fadeout {
      0% {
        height: auto;
        opacity: 1;
      }
      99% {
        height: auto;
        opacity: 0;
      }
      100% {
        height: 0;
      }
    }
@media screen and (min-width:1200px){
    .pagetop {
    position: fixed;
    bottom: 0px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    animation-duration: 1s;
    width: 75px;
    z-index: 10000;
    right: 0px;
    }
    .pagetop.static {
    position: absolute;
    bottom: auto;
    margin-top: -100px;
    margin-right: 0;
    margin-bottom: 0;
    }
}

@media screen and (max-width:1200px){
    .pagetop {
    position: fixed;
    right: 5px;
    bottom: 5px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    animation-duration: 1s;
    left: auto;
    z-index: 0;
    }
    .pagetop.static {
    position: absolute;
    bottom: auto;
    margin-top: -100px;
    margin-right: 0;
    margin-bottom: 0;
    left: auto;
    }
}
