#gelo-slideout {
	position: fixed;
    top: 430px;
    right: 0;
    width: 40px;
    height: 120px;
    padding: 12px 0;
    text-align: center;
    background: transparent;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    z-index: 1001;
}
#gelo-slideout-inner {
	position: fixed;
    top: 400px;
    right: 0;
    background: transparent;
    width: 0;
    padding: 0;
    min-height: 200px;
	z-index: 1;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
	text-align: left;
	display: none;
	-webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}	
#gelo-slideout-inner .content {
 	width: 280px;
    min-height: 200px;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}
#gelo-slideout-header {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%)rotate(-90deg);
    color: white;
	background: #000;
    font-weight: bold;
    white-space: nowrap;
	z-index: 1001;
	cursor: pointer;
	border: 0;
	-webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}
#gelo-slideout-header:hover {
	background: #ea5b0c;
}
#gelo-slideout-header::after {
	display: inline-block;
  	font-family: FontAwesome;
	font-style: normal;
    font-weight: normal;
    line-height: 1;
	content: '\f055';
    font-size: 18px;
	color: #fff;
	margin-left: 10px;
	vertical-align: middle;
}
#gelo-slideout-header.open::after {
	display: inline-block;
  	font-family: FontAwesome;
	font-style: normal;
    font-weight: normal;
    line-height: 1;
	content: '\f057';
    font-size: 18px;
	color: #fff;
	margin-left: 10px;
	vertical-align: middle;
}