/**
 * custom CSS for Floating hide me button
 *
 * Created 28 Apr 2023
 *
 * @author Dom Ockwell
 */

 .hide-me {
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
    box-shadow: 0 0 5px rgba(0,0,0,.4);
    position: fixed;
    right: 0;
    text-orientation: mixed;
    top: 25%;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 1000;
}

.hide-me .btn {
    padding: 1em;
}

@media only screen and (max-width: 600px) {
    .hide-me {
        top: 20%;
    }
}