/**
*---------------------------------------------------------------------------
* beam me up, scotty!
* note: top anchor link
*---------------------------------------------------------------------------
*/
a#beam_me_up {
    position: absolute;
    display: block;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
}

/**
*---------------------------------------------------------------------------
* moveup link
*---------------------------------------------------------------------------
*/
a.move_up {
    display: block;
    position: fixed;
    z-index: 99999;
    bottom: 60px;
    right: 2%;
    width: 45px;
    height: 45px;
    padding: 0;
    background: #0042B9;
    border-radius: 3px;
    outline: none;
    transition: 0s;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

a.move_up::before {
    display: inline-block;
    position: absolute;
    content: '';
    opacity: 1;

    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    padding: 0;
    margin: 0;

    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.613' height='10.863' fill='none'%3E%3Cpath d='M.488 7.7c.7-.7 7.5-7.2 7.5-7.2.3-.4.8-.5 1.3-.5s.9.2 1.3.5c0 0 6.9 6.5 7.5 7.2.7.7.7 1.9 0 2.6-.7.7-1.7.8-2.5 0l-6.3-6-6.3 6c-.9.8-1.8.7-2.5 0s-.6-1.9 0-2.6z' fill='%23fff'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -ms-background-size: contain;
    -o-background-size: contain;
    transition: 0s;
}

a.move_up:hover,
a.move_up:focus {
    background: #052a6e;
    border-radius: 0 3px 3px 0;
    transition: 0.3s;
}

a.move_up:hover::before,
a.move_up:focus::before {
    opacity: 1;
    transition: 0.3s;
}

/**
*---------------------------------------------------------------------------
* moveup link info box
*---------------------------------------------------------------------------
*/
a.move_up span.info {
    display: block;
    position: absolute;
    visibility: hidden;
    opacity: 0;

    top: 0;
    right: 100%;
    height: 45px;
    max-height: 45px;
    padding: 14px 20px 15px 20px;
    white-space: nowrap;

    background: #052a6e;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;

    text-align: center;
    font-size: 1rem;
    font-weight: 350;
    font-style: normal;
    line-height: normal;
    color: rgb(255, 255, 255);

    transition: 0.3s;
}

a.move_up:hover span.info,
a.move_up:focus span.info {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

/**
*---------------------------------------------------------------------------
* moveup link info box
* note: firefox only
*---------------------------------------------------------------------------
*/
@-moz-document url-prefix() {
    a.move_up span.info {
        font-size: 11pt;
    }
}

@media handheld, only screen and (max-width: 767px) {
    /**
    *---------------------------------------------------------------------------
    * hide on mobile and tablet
    *---------------------------------------------------------------------------
    */
    a.move_up {
        display: none !important;
    }
}
