/*
 * Showup.js jQuery Plugin
 * http://github.com/jonschlinkert/showup
 *
 * Copyright (c) 2013 Jon Schlinkert, contributors
 * Licensed under the MIT License (MIT).
 */

/**
 * Docs Buttons
 */

/* Fixed button, bottom right */
#back-to-top, #back-to-top-left{
    padding: 15px 20px;
    background: url(arrow_top_2022.png) no-repeat;
    background-position: center center;
    background-color: #FFD100;
    background-size: 70%;
    color: black;
    cursor: pointer;
}

#back-to-top:hover, #back-to-top-left:hover{
    background-color: #D6AF00;
}



#back-to-top {
    position: fixed;
    bottom: 110px;
    display: none;
    z-index: 99
}

#back-to-top1 {
    padding: 5px 20px;
    position: fixed;
    bottom: 10px;
    left: 80px;
    display: none;
    z-index: 99;
    color: white;
    background-color: #6B1544;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#back-to-top-left {
    position: fixed;
    bottom: 10px;
    left: 20px;
    display: none;
    z-index: 99;
}


@media (min-width: 1px) {
    #back-to-top, #back-to-top-left {
        width: 45px;
        height: 45px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
    }

    #back-to-top {
        right: 5px;
    }
}

@media (min-width: 1300px) {
    #back-to-top, #back-to-top-left {
        width: 55px;
        height: 55px;
        -webkit-border-radius: 35px;
        -moz-border-radius: 35px;
        border-radius: 35px;
    }


}