/* AppWT Back-to-Top - Mardi Gras themed. Mirrors the ADA button (bottom-left) on the bottom-right. */
#appwt-totop{
    position:fixed;
    right:20px;
    bottom:25px;
    width:50px;
    height:50px;
    padding:0;
    border-radius:50%;
    border:2px solid #ffd700;
    background:#1a0a24;
    color:#ffd700;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    z-index:99990;
    box-shadow:0 6px 22px rgba(0,0,0,.45);
    transition:all .25s ease;
    display:none;
    align-items:center;
    justify-content:center;
}
#appwt-totop.appwt-totop-show{display:flex}
#appwt-totop:hover,
#appwt-totop:focus{
    background:#ffd700;
    color:#6a2c8f;
    outline:none;
    box-shadow:0 0 0 4px rgba(255,215,0,.25),0 6px 22px rgba(0,0,0,.45);
}
@media(min-width:481px) and (max-width:1024px){#appwt-totop{bottom:20px}}
@media(max-width:480px){#appwt-totop{bottom:80px;right:14px;width:44px;height:44px;font-size:19px}}
