@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,600,900);
  .showbox {
	font-family: 'Raleway', sans-serif;
	position: fixed!important;
	bottom: -350px!important;
	z-index: 10000 !important;
	width: 100%;
	height: 400px;
	background: #fff;
	background-color: #fff;
	text-align: center;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: gray;
  }
  .showbox.slideright:hover {
    -webkit-transform: translate(0,-17em);
    -moz-transform: translate(0,-17em);
    -o-transform: translate(0,-17em);
    -ms-transform: translate(0,-17em);
    transform: translate(0,-17em);
  }
