/*@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);*/

/*@import url(font-awesome.min.css);*/

body{
  font-family: FontAwesome;
  font-style: normal;
  font-size: 1em;
  font-weight: normal;
  text-transform: none !important;
}
.st-actionContainer {
	z-index: 9999;
	position: fixed;
	display: inline-block;
	font-family: FontAwesome;
}

.right-bottom {
	bottom: 2em;
	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;
	margin-bottom: 10%;
	background-color: #eee;
	color: #0000CC;
	border: 2px solid #0000CC;
	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;
}
.st-panel form {
	float:left;
	width:100%;
}
.st-panel form button{
	box-shadow: 0 3px 6px #0000CC;
	border-radius: 5px;
	cursor: pointer;
	color:#0000CC;
	float:left;
	width:20%;
	margin:5%;
}
.st-panel form button:hover{
	box-shadow: 2px 0 2px #CC0000;
	cursor: pointer;
	color:#CC0000;
}
.st-panel form input{
	box-shadow: 0 3px 6px #0000CC;
	border-radius: 5px;
	float:left;
	width:70%;
}

div.st-panel{
	font-family: Roboto;
	font-size: 15px;
}

.st-panel-header{
	background-color: #CC0000;
	color: white;
	font-weight:bold;
	padding: 3px;
	font-size:1em;
}

.st-panel-contents{
	padding: 15px;
	font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
}

.st-button-main{
	font-size:24px;
	color:#ffffff;
	font-size:24px;
	text-align:center;
	line-height:60px;
	cursor:pointer;
	height: 100%;
	width: 100%;
	display: table;
}

.st-button-main > i{
	display: table-cell;
	vertical-align: middle;
}

.st-btn-container{
	background:#4B8AD6;
	color:#0000CC;
	/* opacity:80%; */
	width:40px;
	height:40px;
	border-radius:100%;
	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);
  }
}

/*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;
}
