.st-actionContainer {
	z-index: 9999;
	position: fixed;
	display: inline-block;
}

.right-bottom {
	bottom: 0em;
	right: 2em;
	float: right !important;
}

.left-bottom {
	bottom: 2em;
	left: 2em;
	float: left !important;
}

div.st-actionContainer li{
	list-style: none;
}

.st-panel{
	width: auto;
	height: 500px;
	margin-bottom: 0px;
	background-color: #757575;
	color: white;
	border: 0px solid #eee;
	box-shadow: 0 3px 6px rgba(0,0,0,0.23), 0 3px 6px rgba(0,0,0,0.23);
	display: none;
	border-radius: 5px;	
}

div.st-panel {
    font-family: Roboto;
    font-size: 15px;
    position: relative;
    bottom: -40px;
    right: -1.5em;
    border: 1px solid lightgrey;
}

.st-panel-header{
	background-color: white;
	color: black;
	padding: 3px;
}

.st-panel-contents{
	padding: 15px;
}

.st-button-main{
	font-size:18px;
	color:#ffffff;
	text-align:center;
	line-height:40px;
	cursor:pointer;
}

.st-btn-container{
	background:rgb(240, 130, 25);
	width:150px;
	height:40px;
	border-radius:0px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.rotateForward{
    animation-name:             rotateF; 
    animation-duration:         0.65s; 
    animation-iteration-count:  1;

}

@keyframes rotateF {
  from {
            transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
  }
  to { 
            transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -webkit-transform: rotate(360deg);
  }
}

.rotateBackward{
    animation-name:             rotateB; 
    animation-duration:         0.65s; 
    animation-iteration-count:  1;

}

@keyframes rotateB {
  from {
            transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -webkit-transform: rotate(360deg);
  }
  to { 
            transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
  }
}