body {
  margin: 0;
  height:auto;
  width:100%;
  font-family:'Lato', Helvetica Neue, Helvetica, Arial, sans-serif, "Microsoft Yahei","微软雅黑", STXihei, "华文细黑";
  background:#fff;
  padding:0px;
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background:#333;
}

::selection {
    color: #fff;
    background:#333;
}
a {
  color: #333;
  text-decoration: none!important;
}
a:hover,
a:focus {
  color: #333;
  text-decoration: underline;
}
a:focus {
  outline:0px;
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: -0px;
}

h1{
	font-size:72px!important;
	text-transform:uppercase;
	letter-spacing:10px;
	margin-top:0px;
	font-weight:700;
  -webkit-transition: font-size 200ms ease-in-out;
	 -moz-transition: font-size 200ms ease-in-out;
	  -ms-transition: font-size 200ms ease-in-out;
  	   -o-transition: font-size 200ms ease-in-out;
		  transition: font-size 200ms ease-in-out;
}
h2{
	font-size:26px!important;
	text-transform:uppercase;
	letter-spacing:3px;
	margin-top:0px;
  -webkit-transition: font-size 200ms ease-in-out;
	 -moz-transition: font-size 200ms ease-in-out;
	  -ms-transition: font-size 200ms ease-in-out;
  	   -o-transition: font-size 200ms ease-in-out;
		  transition: font-size 200ms ease-in-out;
}
p{
	font-size:21px!important;
	font-weight:300;
	line-height:24px;
	-webkit-transition: font-size 200ms ease-in-out;
	 -moz-transition: font-size 200ms ease-in-out;
	  -ms-transition: font-size 200ms ease-in-out;
  	   -o-transition: font-size 200ms ease-in-out;
		  transition: font-size 200ms ease-in-out;
}
p2{
	font-size:16px!important;
	font-weight:300;
	line-height:24px;
	-webkit-transition: font-size 200ms ease-in-out;
	 -moz-transition: font-size 200ms ease-in-out;
	  -ms-transition: font-size 200ms ease-in-out;
  	   -o-transition: font-size 200ms ease-in-out;
		  transition: font-size 200ms ease-in-out;
}

@media (max-width: 1200px){
h1{
	font-size:30px!important;
}
}
@media (max-width: 768px){
h1{
	font-size:24px!important;
}
h2{
	font-size:18px!important;
}
p{
	font-size:18px!important;
}
p2{
	font-size:12px!important;
}
}

/* NAVIGATION BTN */
.cd-nav-trigger {
  outline:0px!important;
  position: fixed;
  z-index: 3;
  left: 0px;
  top: 0px;
  height: 60px;
  width: 60px;
  background-color: #6a1b9a;
  border-radius: 50%;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}
.cd-nav-trigger .cd-nav-icon {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 22px;
  height: 2px;
  background-color: #fff;
}
.cd-nav-trigger .cd-nav-icon::before, .cd-nav-trigger .cd-nav-icon:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s, top 0.3s;
  -moz-transition: -moz-transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}
.cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.no-touch .cd-nav-trigger:hover .cd-nav-icon::after {
  top: 2px;
}
.no-touch .cd-nav-trigger:hover .cd-nav-icon::before {
  top: -2px;
}
.cd-nav-trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}
.navigation-is-open .cd-nav-trigger {
  /* rotate trigger when navigation becomes visible */
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::after,
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  /* animate arrow --> from hamburger to arrow */
  width: 50%;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s;
  -moz-transition: -moz-transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::after, .no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::before {
  top: 0;
}

/* BOOTSTRAP */



.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .1s ease-out cubic-bezier(0.82, 0.01, 0.77, 0.78);
       -o-transition:      -o-transform .1s ease-out cubic-bezier(0.82, 0.01, 0.77, 0.78);
          transition:         transform .1s ease-out cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
       -o-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: fixed;
  width: 100%;
  margin: 0px;
  height:100%!important;
}
.modal-content {
  position: relative;
  height:100%;
  background-color:rgba(0,0,0,0);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 0px solid #999;
  border: 0px solid rgba(0, 0, 0, .2);
  border-radius: 0px;
  outline: 0;
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .5);
          box-shadow: 0 0px 0px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=0);
  opacity: .0;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 0px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 100%;
    margin: 0px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .5);
            box-shadow: 0 0px 0px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}



/* FADES */

.fadeInLeft {
	opacity:0;  /* make things invisible upon start */
  
  -webkit-animation:fadeInLeft ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeInLeft ease-in 1;
	animation:fadeInLeft ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.3s;
	-moz-animation-duration:0.3s;
	animation-duration:0.3s;
}


@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft.one {
-webkit-animation-delay: 0.12s;
-moz-animation-delay: 0.12s;
animation-delay: 0.12s;
}

.fadeInLeft.two {
-webkit-animation-delay: 0.14s;
-moz-animation-delay:0.14s;
animation-delay: 0.14s;
}

.fadeInLeft.three {
-webkit-animation-delay: 0.16s;
-moz-animation-delay:0.16s;
animation-delay: 0.16s;
}
.fadeInLeft.four {
-webkit-animation-delay: 0.18s;
-moz-animation-delay:0.18s;
animation-delay: 0.18s;
}
.fadeInLeft.five {
-webkit-animation-delay: 0.2s;
-moz-animation-delay:0.2s;
animation-delay: 0.2s;
}
.fadeInLeft.six {
-webkit-animation-delay: 0.22s;
-moz-animation-delay:0.22s;
animation-delay: 0.22s;
}


.fadeInUp {
	opacity:0;  /* make things invisible upon start */
  
  -webkit-animation:fadeInUp cubic-bezier(.69,0,.64,.99) 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeInUp cubic-bezier(.69,0,.64,.99) 1;
	animation:fadeInUp cubic-bezier(.69,0,.64,.99) 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
}


@-webkit-keyframes fadeInUp {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp.one {
-webkit-animation-delay: 0.30s;
-moz-animation-delay: 0.30s;
animation-delay: 0.30s;
}

.fadeInUp.two {
-webkit-animation-delay: 0.35s;
-moz-animation-delay:0.35s;
animation-delay: 0.35s;
}

.fadeInUp.three {
-webkit-animation-delay: 0.40s;
-moz-animation-delay:0.40s;
animation-delay: 0.40s;
}
.fadeInUp.four {
-webkit-animation-delay: 0.45s;
-moz-animation-delay:0.45s;
animation-delay: 0.45s;
}
.fadeInUp.five {
-webkit-animation-delay: 0.5s;
-moz-animation-delay:0.5s;
animation-delay: 0.5s;
}

.fadeInDown {
	opacity:0;  /* make things invisible upon start */
  
  -webkit-animation:fadeInDown cubic-bezier(.69,0,.64,.99) 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeInDown cubic-bezier(.69,0,.64,.99) 1;
	animation:fadeInDown cubic-bezier(.69,0,.64,.99) 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
}


@-webkit-keyframes fadeInDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown.one {
-webkit-animation-delay: 0.30s;
-moz-animation-delay: 0.30s;
animation-delay: 0.30s;
}

.fadeInDown.two {
-webkit-animation-delay: 0.35s;
-moz-animation-delay:0.35s;
animation-delay: 0.35s;
}

.fadeInDown.three {
-webkit-animation-delay: 0.40s;
-moz-animation-delay:0.40s;
animation-delay: 0.40s;
}
.fadeInDown.four {
-webkit-animation-delay: 0.45s;
-moz-animation-delay:0.45s;
animation-delay: 0.45s;
}
.fadeInDown.five {
-webkit-animation-delay: 0.5s;
-moz-animation-delay:0.5s;
animation-delay: 0.5s;
}


.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing:1px;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 0px solid transparent;
  border-radius: 0px;
  -webkit-transition: all 200ms ease-in-out;
	   -moz-transition: all 200ms ease-in-out;
	   	-ms-transition: all 200ms ease-in-out;
		 -o-transition: all 200ms ease-in-out;
			transition: all 200ms ease-in-out;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: -0px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #111;
  border-color: #;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #000;
  background-color: #fff;
  border-color: #;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #000;
  border-color: #;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* Form Control */
.form-control{
  display: block;
  width: 100%;
  height: 60px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  outline:0px!Important;
  background-color: #fff;
  background-image: none;
  border-bottom: 4px solid #ddd!Important;
  border-top: 0px solid #fff!Important;
  border-left: 0px solid #ccc!Important;
  border-right: 0px solid #ccc!Important;
  border-radius: 0px;
  -webkit-box-shadow:  0 0px 0px rgba(0, 0px, 0, .75)!important;
          box-shadow:  0 0px 0px rgba(0, 0px, 0, .75)!important;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #000;
  outline: 0;
  border-bottom: 4px solid #000!Important;
  -webkit-box-shadow:  0 0px 0px rgba(0,0,0,.075), 0 0 0px rgba(102, 175, 233, .6)!important;
          box-shadow:  0 0px 0px rgba(0,0,0,.075), 0 0 0px rgba(102, 175, 233, .6)!important;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}



.cd-top {
  display: inline-block;
  height: 60px;
  width: 60px;
  position: fixed;
  z-index:1000;
  bottom: 0px;
  right: 0px;
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #6a1b9a url(../IMG/ArrowUp.svg) center center ;
  background-repeat:no-repeat;
  background-size:60% auto;
  color:#fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd{
	visibility:visible!important;
	opacity:1!important;
	margin:0px auto 0px auto!important;
	width:60px;
	height:60px;
	z-index:2000;
	stroke:#fff;
	float:right;
	left:0;
	right:0;
	top:0;
	text-align:center;
}
.cd svg{
	margin
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .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 {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #6a1b9a;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 0px;
    bottom: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 0px;
    bottom: 0px;
  }
}
