.gotoRiss{
	margin-left:20px;
}
.collapsibleRiss {
  background-color: #fe8515;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}


.contentRiss {

  display: none;
  overflow: hidden;

}

.text-boxRiss {
    display: inline-block;
    margin-bottom: 50px;
    width: 70px;
}

.btnRiss:link,
.btnRiss:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 10px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
    position: absolute;
}

.btnRiss:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btnRiss:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-whiteRiss {
    background-color: #f45b00;
    color: white;
}

.btnRiss::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-whiteRiss::after {
    background-color: #f45b00;
}

.btnRiss:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animatedRiss {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

 #loading {
	display: block;
	z-index: 2000;
    background:url(http://www.webdesign.org/img_articles/13053/loading-gif-animation.gif) no-repeat center center #999999;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}