/*== Back to Top CSS ==*/

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
.cus-btt-padding {
    padding: 10px;
    color: #323232;
    background-color: #ccc;
    font-size: 20px;
}

.cus-btt-padding:hover {
    background-color: #323232;
    color: #fff;
}

#toTop {
    text-align: center;
    position: fixed;
    bottom: 2%;
    right: 2%;
    cursor: pointer;
    display: none;
    z-index: 9000;
    width: 49px;
    height: 49px;
    opacity: 0.7;
    filter: alpha(opacity=70);
    background: unset;
    border:unset;
}

#toTop .material-icons {
    background: #323232;
    border-radius: 7%;
    font-size: 50px;
    color: #F8F8F8;
}

#toTop:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}