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

@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap);

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);


/*9359FF - ligth*/
/*5568FF - dark*/
/*223bff - hover*/
/*337ab7 - hover*/

.st-actionContainer {
	z-index: 9999;
	position: fixed;
	display: inline-block;
}

.right-bottom {
	bottom: 2em;
	right: 4em;
	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: #757575;
	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: 'Manrope', Roboto;
	font-size: 15px;

}

.st-panel-header{
	background-color: white;
	color: black;
	padding: 3px;
}

.st-panel-contents{
	padding: 15px;
}

.st-button-main{
	color:#FFFFFF;
	font-size:18px;
	text-align:center;
	line-height:60px;
	cursor:pointer;
	height: 100%;
	width: 100%;
	background: linear-gradient(63.59deg, #FFC30D -5.49%, #F2C34A 100.08%);
	border-radius: 24px;
    border: none;
    outline: none;
    white-space: nowrap;
    padding: 10px 18px;
    transition: all 0.8s ease-in-out 0s;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
}

.st-button-main i{
	font-weight: bold;
}

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

.st-btn-container{
	background:#D15D36;
	width:170px;
	height:60px;
	border-radius:30px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.st-button-main .close {
    display: none;
}

.st-button-main.rotateForward {
    color: #FFFFFF;
}

.rotateForward{
    /* animation-name:             rotateF; */
    /* animation-duration:         0.65s; */
    /* animation-iteration-count:  1; */
    background : #fff;
    width: 50px;
    height: 50px;
    box-shadow: 1px 1px 10px 4px #00000029;
    position: relative;
}
.rotateForward span { display : none;}
.rotateForward .close { 
    display: block;
    opacity: 1;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.rotateForward .open { display: none;}

@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; */
}
.rotateBackward .close { display: none;}
.rotateBackward .open { display: block;}

@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;
}
