

.kd_fab ul {
    
}

.kd_fab ul a {
    text-decoration: none;
    color: #CCC;
    font-size: 20px;
    line-height: 1.7em;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.kd_fab ul a:hover {
    color: #ff8c00;
} 

.kd_fab ul a i {
    color: #ff8c00;
    min-width: 30px;
    text-align: center;
}

.st-actionContainer, .totop {
	z-index: 9999;
	position: fixed;
	display: inline-block;
}

.right-bottom {
	bottom: 1.5em;
	right: 1.5em;
	float: right !important;
}

.left-bottom {
	bottom: 2em;
	left: 2em;
	float: left !important;
}

div.st-actionContainer li{
	list-style: none;
}

.st-panel{
    
	width: auto;
	margin-bottom: 10%;
	background-color: #151515;
	color: white;
	border: 2px solid #eee;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	/* border-radius: 5px; */
	display: none;
}

div.st-panel{
	/* font-family: 'Open Sans', sans-serif; */
	font-size: 15px;
	
}

.st-panel-header{
	background-color: white;
	color: black;
	padding: 3px;
}

.st-panel-contents{
	padding: 15px;
}

.st-button-main {
	font-size:24px;
	color:#ffffff;
	font-size:24px;
	text-align:center;
	line-height:60px;
	cursor:pointer;
}

.st-btn-container {
	background: #ff8c00;
	width:60px;
	height:60px;
	
    border-radius:100%; 
	
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.totop  {
    bottom: 4em;
	right: 25px;
	float: right !important;
    z-index: 9998; 
	font-size:24px;
	color:#ff8c00;
	font-size:24px;
	text-align:center;
	line-height:60px;
	cursor:pointer;
	background: #fff;
	width:60px;
	height:60px;
	border-radius:100%;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    display: none;
}



.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);
  }
}

/*option grid in panel*/

.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.gridChild {
	flex: 0 0 33.33%;
	height: 50px;
	background-color: #999;
	text-align:center;
	text-decoration: none;
	color: white;
	line-height:50px;
}

.gridChild:hover {
	background-color: #eee;
	color: black;
}