/* Thank you to: https://codyhouse.co/gem/back-to-top/ */

.cd-top {
    background: rgba(55, 69, 26, 0.8) url("/imgs/chevron-up.svg") no-repeat scroll center 50%;
    bottom: 20px;
    display: inline-block;
    height: 40px;
    opacity: 0;
    position: fixed;
    right: 20px;
    transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    visibility: hidden;
    width: 40px;
    z-index: 10;
    border-radius:90px;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
    transition: opacity 0.3s ease 0s, visibility 0s ease 0s;
}
.cd-top.cd-is-visible {
    opacity: 1;
    visibility: visible;
    outline:0;
}
.cd-top.cd-fade-out {
    opacity: 0.5;
}
.no-touch .cd-top:hover {
    background-color: #e86256;
    opacity: 1;
}
@media only screen and (min-width: 768px) {
.cd-top {
    right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
.cd-top {
    height: 60px;
    right: 20px;
    width: 60px;
  }
}