﻿/*=========================================
            BACK TO TOP
==========================================*/

.back-to-top {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #C89B3C;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(200,155,60,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 9999;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: #08111F;
        transform: translateY(-5px);
    }

@media(max-width:768px) {

    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }
}
