﻿/* #pagetop a {
    background-color: #F27F23;
    color: #fff;
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pagetop a::after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
}

#pagetop a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
} */

#pagetop a {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: solid 1px deepskyblue;
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
}

#pagetop a:hover {
    opacity: 0.7;
}