.cd-container {
  width: 90% !important;
  max-width: 768px !important;
  margin: 2em auto !important;
}
.cd-container::after {
  /* clearfix */
  content: '' !important;
  display: table !important;
  clear: both !important;
}

/* -------------------------------- 

Main components 

-------------------------------- */

.cd-top {
  display: inline-block !important;
  height: 40px !important;
  width: 40px !important;
  position: fixed !important;
  bottom: 40px !important;
  right: 10px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05) !important;
  /* image replacement properties */
  overflow: hidden !important;
  text-indent: 100% !important;
  white-space: nowrap !important;
  background: rgba(232, 98, 86, 0.8) url(cd-top-arrow.svg) no-repeat center 50% !important;
  visibility: hidden !important;
  opacity: 0 !important;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s !important;
  -moz-transition: opacity .3s 0s, visibility 0s .3s !important;
  transition: opacity .3s 0s, visibility 0s .3s !important;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s !important;
  -moz-transition: opacity .3s 0s, visibility 0s 0s !important;
  transition: opacity .3s 0s, visibility 0s 0s !important;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible !important;
  opacity: 1 !important;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 1 !important;
}
.no-touch.cd-top:hover {
  background-color: blue; !important /* #e86256; */
  opacity: 1 !important;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px !important;
    bottom: 20px !important;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px !important;
    width: 60px !important;
    right: 30px !important;
    bottom: 30px !important;
  }
}
