/* Scroll Top Button */
.cd-top{
    position: fixed;
    z-index: 9999;
    right: 10px;
    bottom: 40px;
    display: inline-block;
    visibility: hidden;
    overflow: hidden;
    width: 40px;
    height: 40px;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
       -moz-transition: opacity .3s 0s, visibility 0s .3s;
            transition: opacity .3s 0s, visibility 0s .3s;
    white-space: nowrap;
    text-indent: 100%;
    opacity: 0;
    -webkit-border-radius: 100%;
    border-radius: 101%;
    background: #e7044d url(../img/cd-top-arrow.svg) no-repeat center 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}
.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.cd-top:hover{
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
       -moz-transition: opacity .3s 0s, visibility 0s 0s;
            transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible{
    visibility: visible;
    opacity: 1;
}
.cd-top.cd-fade-out{
    opacity: .5;
}
.cd-top:hover{
    opacity: 1;
}
@media only screen and (min-width: 768px){
    .cd-top{
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
}
@media only screen and (min-width: 1024px){
    .cd-top{
        right: 30px;
        bottom: 30px;
        width: 50px;
        height: 50px;
    }
}