/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/
#toTop {
    border: .0625rem solid #d9d9d9;
    padding: .75rem .75rem .50rem .75rem;
    bottom: 1.25rem;
    right: 1.25rem;
    -webkit-transition: opacity bottom ease 0s;
    -moz-transition: opacity bottom ease 0s;
    -o-transition: opacity bottom ease 0s;
    -ms-transition: opacity bottom ease 0s;
    transition: opacity bottom ease 0s;
    -webkit-transition: opacity .3s ease 0s,bottom .3s ease 0s;
    -moz-transition: opacity .3s ease 0s,bottom .3s ease 0s;
    -o-transition: opacity .3s ease 0s,bottom .3s ease 0s;
    -ms-transition: opacity .3s ease 0s,bottom .3s ease 0s;
    transition: opacity .3s ease 0s,bottom .3s ease 0s;
    display: block;
    position: fixed;
    text-decoration: none;
    background-color: #fff;
    line-height: 1;
    z-index: 200;
    display: none;
    opacity: 0;
}

#toTop i {
    font-size: 2rem;
    line-height: 1.3rem;
}

#toTop {
    display: block;
    opacity: 1;
}

#toTop:hover, .back-to-top__button:focus {
    color: #dd1d21;
    text-decoration: none;
    position: fixed;
    z-index: 200;
}


#toTop:active, #toTop:focus {
	outline:none;
}

#toTop {
    right: 1rem;
}


@media screen and (min-width: 768px){
    #toTop {
        right: calc(50% - 22.5rem);
        right: -moz-calc(50% - 22.5rem);
        right: -webkit-calc(50% - 22.5rem); 
        right: -o-calc(50% - 22.5rem);
    }
}

@media screen and (min-width: 992px){
    #toTop {
        right: calc(50% - 29.25rem);
        right: -moz-calc(50% - 29.25rem);
        right: -webkit-calc(50% - 29.25rem); 
        right: -o-calc(50% - 29.25rem);
    }
}

@media screen and (min-width: 1200px){
    #toTop {
        right: calc(50% - 35.25rem);
        right: -moz-calc(50% - 35.25rem);
        right: -webkit-calc(50% - 35.25rem); 
        right: -o-calc(50% - 35.25rem);
    }
}



@media (max-width: 767px) {
  #toTop_ {
    visibility:hidden;
  }
}
/*# totop */