/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Tabs
	#Forms
        #Menu + Logo
	#Misc 
        #Sidebar
        #Footer
*/


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
	body {		
		background: url(../images/tile-02.jpg) ;
		font-family: 'Source Sans Pro', sans-serif;
		color: #EEE;
		}
	 #wpadminbar {
		position: fixed!important;
	}

/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #181818;
		font-family: 'Anton', sans-serif;
		font-weight: normal; 		
		text-transform: uppercase;
	}
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit;  text-decoration: none;}
	h1 { font-size: 55px; line-height: 55px; color: #ffc500; padding: 0 0 20px 0; }
	h2 { font-size: 35px; line-height: 32px;  color: #EEE; padding: 0 0 20px 0;}	
	h3 { font-size: 28px; line-height: 28px; color: #ffc500; padding: 0 0 20px 0;}	
	h4 { font-size: 21px; line-height: 21px; padding: 0 0 15px 0;}
	h5 { font-size: 17px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }
	.subheader { color: #777; }

	p { margin: 0 0 20px 0; line-height: 22px;}
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong, b  { font-weight: bold;}
	small { font-size: 80%; }

/*	Blockquotes 
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }
 */
	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }
	
	blockquote {
	  background: rgba(0, 0, 0, 0.6);
	  border-left: 10px solid #ccc;
	  margin: 1.5em 10px;
	  padding: 0.5em 10px;
	  quotes: "\201C""\201D""\2018""\2019";
	  font-size: 35px;
	  font-family: 'Anton', sans-serif;
	}
	blockquote:before {
	  content: open-quote;
	  font-size: 4em;
	  line-height: 0.1em;
	  margin-right: 0.25em;
	  vertical-align: -0.4em;
	}
	
	blockquote p {
	  display: inline;
	}
	blockquote cite {
	    color: #999999;
	    display: block;
	    font-size: 15px;
	    margin-top: 5px;
	}
	blockquote cite:before {
	    content: "\2014 \2009";

}

/* #Links
================================================== */
	a, a:visited { color: #ffc500; text-decoration: underline; outline: 0; }
	a:hover, a:focus { color: #FFF; }
	p a, p a:visited { line-height: inherit; }

/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: disc outside; margin-left:20px; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { line-height: 18px; margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }
	
	.alignleft {
		float:left;
		margin:0 20px 10px 0;
	}
	
	.alignright {
		float:right;
		margin:0 0 10px 20px;
	}
	
	.aligncenter {
		clear:both;
		display:block;
		margin:0 auto;
	}
	
	.attachment-featured-image {
		float:right;
		margin: 0 0 20px 20px;
		border: #858585 5px solid;
	}


/* #Forms
================================================== */

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width: 75%;
		display: inline-block;
		background: #fff; }
	select {		 
		padding: 0 !important;
		width: 100%
		}
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); }
	textarea {
		min-height: 60px; }
	label,
	legend {
	padding: 0 0 10px 0;
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	select {
		height: 25px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; 
	}
	#searchBox {
		float: right;
	 }
	#searchBox form {
		margin: 0px!important;
		padding: 0px!important;
	 }
	 #searchform label {
		 display: none;
	 }
	 #searchsubmit {
		height: 30px;
		width: 20%;
		background-color: #ffc500;
		color: #000;
		display: inline-block;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	 }
/* Comments
================================================== */
.comments-holder li{
	margin: 50px 20px 20px 20px;
	list-style: none;
	}
.comments-holder li {
	border-bottom:1px solid;
}
.comments-holder ul {
	list-style:none;
}
.comments-holder li {
	border:none;
}
.comment-author.vcard{
	float:left;
	margin:0 20px 10px 0;
	overflow: hidden;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: auto;
}
.comment-author.vcard img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.reply-holder {
	margin: 50px 20px 20px 20px;
}
.reply-holder .comment-form label {
	float:left;
	clear:both;
	width:100%;
}
.reply-holder .comment-form textarea {
	max-width:100%;
	width:100%;
}
.reply-holder .comment-form .comment {
padding: 10px;
	width:100%;
}

   
/* #Header
================================================== */        
    .header {
		background: url(../images/tile.jpg) ;
		text-align: center;
	} 
	ul.logo {
		padding: 0;
		margin: 0;
		font-family: 'Luckiest Guy', cursive; 
		text-align: center;		
		color: #ffc500;
	}
 	ul.logo li {
	 	position: relative;
	 	padding: 0;
		margin: 0;
		display: inline-block;
		vertical-align: middle;
		font-size: 95px;
		line-height: 112px;
		
	}
	ul.logo a {     	
     	text-decoration: none;
     	line-height: 0;
     	display: block;
    }   
    .logo-pic{
	 	z-index: 1;
	}
    .site-description {
	    padding: 0 0 15px 0;
	    font-size: 25px;
	    color: #FFF;
	    font-family: 'Luckiest Guy', cursive;
    }
    .strong {
	    z-index: 500 !important;
	    padding-top: 30px !important;	   
	    text-transform: uppercase;
    }  
    .dan {
	    z-index: 500 !important;  
	     padding: 25px 0 15px 0 !important; 
	    text-transform: uppercase;
    }    
    .title-shower {
		 display: none !important;
		 font-size: 60px  !important;
	}	
	.big-dan {
	    font-size: 180px;
    }
     .social {
     	 padding: 5px 0 0 0;
	    float: right;
    }   
 
        
 /* #Primary Nsavigation
================================================== */   
	.menu-wrapper {
		background: #666;		
		border-top: solid 1px #202c32;
		border-bottom: solid 2px #FFF;
	}
	.menu-holder {
		z-index: 2000;
	}
	#access {
		position:relative;
		font-family: 'Anton', sans-serif;	
		padding: 0;
		z-index: 2000;
		text-align: center;
	}
	#access li{	
		margin: 0;
		padding: 0;	
		border-left: 1px #000 solid;	
	}
	#access li:first-child{	
	
		border-left: none;	
	}
	#access ul{	
		list-style: none;
		margin: 0;
		padding: 0;
	}
	#access .menu-header,
	div.menu {
		font-size: 13px;
	}
	#access .menu-header ul,
	div.menu ul {
		list-style: none;
		margin: 0;
	}
	#access .menu-header li,
	div.menu li {
		margin: 0 0;
	}
	#access a {
		position:relative;
		color: #000;
		font-size:20px;
		display: block;
		line-height: 50px;
		padding: 0 15px;
		text-decoration: none;
		text-transform:uppercase;
		margin: 0;
	}
	#menu-main-menu {
		text-align:center;
	}	
	#menu-main-menu li{	
		display:inline-block;
		position:relative;	
		margin: 1px 0 2px 0;
		padding: 0 1%;
	}			
	<!--[if IE 8]>
	#menu-main-menu li{	
		float: left;
	}	
	#access ul ul {
		box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
		-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
		display: none;
		position: absolute;
		width: 180px;
		z-index: 2000;
		margin: 0 0;
		padding: 0 0;
		text-align:left;
	}
	#access ul ul li {
		min-width: 180px;
		margin: 0 0;
		border-bottom:#666 solid 1px;
		border-left:#666 solid 1px !important;
		padding: 0;	
	}
	#access ul ul ul {
		left: 100%;
		top: 0;
	}
	#access ul ul a {
		background: #777;
		line-height: 1em;
		padding: 10px;
		width: 160px;
		height: auto;
		font-size:14px;
		color:#fff;
	}
	#access li:hover > a {
		background-color: #111;
		color:#fff;
	}
	#access ul ul :hover > a {
		background-color: #666;
	}
	#access ul li:hover > ul {
		display: block;	
	}
	/*#access ul li.current_page_item > a,
	#access ul li.current-menu-ancestor > a,
	#access ul li.current-menu-item > a,
	#access ul li.current-menu-parent > a {
		color: #333;
	}*/
	* html #access ul li.current_page_item a,
	* html #access ul li.current-menu-ancestor a,
	* html #access ul li.current-menu-item a,
	* html #access ul li.current-menu-parent a,
	* html #access ul li a:hover {
		color: #FFF;
	}
	
	
 /* #Topnav
================================================== */  	
	.top-stuffs {
		height: 50px;
		}
		
	.menu-topnav-container {
		padding: 5px 0 0 0;
	}
	ul#menu-topnav {
		float:right;
		margin: 0;
	}
	ul#menu-topnav li {
		display:inline-block;
		padding: 0 7px;
		border-left: 1px #aaa solid;		
		line-height:18px;
		margin: 0;
	}
	ul#menu-topnav li:first-child {
		border-left: none;		
	}
	ul#menu-topnav li a {
		font-size: 14px;
		color: #FFF;
		text-decoration: none;	
		cursor:pointer;
		padding: 2px;	
		display: block;
	}	
	ul#menu-topnav li ul li a {
		color:#fff;
	}
	ul#menu-topnav li a:hover {
		background-color: #666;
		color:#fff;
	}	
	ul#menu-topnav ul.sub-menu  {
		box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
		-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
		display: none;
		position: absolute;
		width: 170px;
		z-index: 99999;
		margin: 0 0;
		padding: 0 0;
		text-align: left;
		background: #777;
	}	
	ul#menu-topnav ul.sub-menu li {
		min-width: 170px;
		margin: 0 0;
		border-bottom:#666 solid 1px;
		border-left:#666 solid 1px !important;
		border-right: #999 solid 1px !important;
		padding: 0;	
		background:#777;
	}
	ul#menu-topnav ul.sub-menu li:first-child {
		border-top:#666 solid 1px !important;
	}
	ul#menu-topnav ul ul {
		left: 100%;
		top: 0;
	}
	ul#menu-topnav ul a {
		font-style:italic;
		font-weight: 700;
		line-height: 1em;
		padding: 10px;
		width: 150px;
		height: auto;
		font-size:12px;
		display: block;
	}
	ul#menu-topnav ul :hover > a {
		color: #FFF;
		background-color: #666;
	}
	ul#menu-topnav li:hover > ul {
		display: block;	
	}
	ul#menu-topnav li:hover > a {
		color: #FFF;
		background-color: #666;
	}	
	.select-menu {
		display: none;
	}
	.the-selectors {
		margin: 10px auto;
		width: 70%;
	}
	
 /* Vid stuffs
================================================== */	
	.vid-holder iframe,  .video-wrapper iframe, .vid-holder object,  .vid-holder embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.video-thumb-holder {
		position: relative;
	}
	.video-thumb {
		position: absolute;
		display: block;
	}

	.vidsrunner-thumbs img {
		width: 20%;
		padding: 2.5%;
		float: left;
	}
	.page-holder {
		padding: 25px 0 50px 0 !important
	}
	
	/* #Slideshow
================================================== */   
	.slideshow-stage {
		margin: 20px auto !important;
		border: solid #FFF 8px;
	}

	.meteor-slides .mslide img {
	    width: 100% !important;
	}
	
/* #workoit page
================================================== */  	
.workout-meta-holder {
	float: left;
}
.workout-entity {	
	background: rgba(0, 0, 0, 0.6);
	padding: 25px;
	width: 90%;
	margin: 25px auto;
	border-radius: 25px 25px 0px 0px; 
	-moz-border-radius: 25px 25px 0px 0px; 
	-webkit-border-radius: 25px 25px 0px 0px; 
	border: 0px solid #FFF;
	border-bottom:  1px solid #FFF;
}
.workout-details {
	padding: 25px 0 0 0;
	float: left;
	width: 34%;
}
.workout-link {
	text-decoration: none ;
}
.workout-meta{
	background: #000;	
	display: block;
	width:  200px;
	height: 200px;	
	padding-top: 20px;
	margin: 0 25px;
	text-align: center;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-ms-transition: .25s;
	-o-transition: .25s;
	transition: .25s
}
.workout-meta h1 {	
	font-size: 30px;
	line-height: 30px;
	padding: 0;
}
.workout-meta h2 {	
	font-size: 94px;
	line-height: 94px;
	padding: 0;
}
.workout-meta h3{	
	font-size: 30px;
	line-height: 30px;
	padding: 0;	
}
.workout-thumb{
	float: right;	
	display: block;
	width:  200px;
	height: 200px;	
	text-align: center;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-ms-transition: .25s;
	-o-transition: .25s;
	transition: .25s
}

	.fallback{	
		float: right;
		display: block;	
	}
	.fallback:before, .social:after {
		
	}
	.fallback:after {
		clear: both
	}
	.fallback li {
		list-style: none;
		margin: 0 2px;
		
	}	
	.fallback li a {
		font-family: 'Luckiest Guy', cursive; 
		text-decoration: none;
		display: block;
		width: 200px;
		height: 200px;
		padding-top: 50px;
		border-radius: 50%;
		background: #3b3b3b;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		color: #ffc500;
		font-size: 35px;
		line-height: 32px;
		text-transform: uppercase;
		-webkit-transition: .25s;
		-moz-transition: .25s;
		-ms-transition: .25s;
		-o-transition: .25s;
		transition: .25s
	}
	.fallback li a:hover {
		text-decoration: none;
		background-color: #CCC;
		color: #1d1a1b
	}



.crossnumber {
	font-family: 'Anton', sans-serif;
	text-align: center;
	width: 200px;
	margin: 0 25px;
	padding: 10px 0 0 0;
}


/* #Misc
================================================== */
    body.home .entry-header {
	    text-align: center;
	    line-height: 25px;
	  }
	   .title{
        padding-bottom: 15px;
        }	
        
    .full-width{
        } 
        
 /* #Sidebar
================================================== */
    .sidebar{
        font: 14px/1.5em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      
        }   
                
    .sidebar li{
        list-style: none;
        }
        
 /* #Footer
================================================== */
	.footer {
		padding-top: 25px !important;
		color: #CCCCCC;
		text-align: center;
		background: url(../images/tile.jpg);
	}

	.foot-circle {
		list-style-type: none;
		margin: 0 auto 1.5em;
		padding: 1.5em 0;
		display: inline-block;		
	}
	.foot-circle:before, .social:after {
		
	}
	.foot-circle:after {
		clear: both
	}
	.foot-circle li {
		float: left;
		margin: 0 2px;
		width: 150px
	}
	foot-circle li:last-child {
		margin-right: 0
	}
	
	.foot-circle li a {
		font-family: 'Luckiest Guy', cursive; 
		text-decoration: none;
		display: block;
		width: 150px;
		height: 150px;
		padding-top: 35px;
		border-radius: 50%;
		background: #3b3b3b;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		color: #ffc500;
		font-size: 35px;
		line-height: 32px;
		text-transform: uppercase;
		-webkit-transition: .25s;
		-moz-transition: .25s;
		-ms-transition: .25s;
		-o-transition: .25s;
		transition: .25s
	}
	.foot-circle li a:hover {
		text-decoration: none;
		background-color: #CCC;
		color: #1d1a1b
	}
	

	.basement {
		padding-top: 3em;
		padding: 25px 0 !important;
		background-color: #000;
	}
	.basement p{
		font-size: 15px !important;
		line-height: 20px;
	}
	
	/* Pagination
================================================== */
	/* =Pagination
-------------------------------------------------------------- */
	.pagination {
		width: 100%;
		padding-bottom: 10px;
		margin: 0 auto;
	}
	ul.bootpag {
		text-align: center;
		list-style: none;
		padding: 0;
		margin: 0;
	}
	ul.bootpag li{
		padding: 0;
		margin: 0;
		display: inline-block;
	}
	ul.bootpag li a, span.current {
		font-family: Tahoma, Geneva, sans-serif;
	    display: block;
	    cursor: pointer;
	    text-decoration: none;
	    padding: 6px 8px;
	    width: 15px;
	    text-align: center;
	    margin: 5px 2px 0 2px;
	    color: #000;
	    font-size: 11px;
	    font-weight: 700;
	    background: #ffc500;
	    border-radius: 50%;

	}
	ul.bootpag li a:hover {	
		color: #FFF;
		background: #000;
	}
	ul.bootpag li a.active-alpha-selector, span.current  {
		background: #FFF;
		color:#000;
	}
	ul.bootpag li.disabled a{
		font-weight: 700;
		background: #034f66 ;
		color: #FFF;
	}	
	/* =resets */
	ul.bootpag li, ul.bootpag li.prev.disabled, ul.bootpag li.next.disabled {
		background: none !important;
	}
	ul.bootpag li, ul.bootpag li.prev.disabled, ul.bootpag li.next.disabled {		
		width: auto !important;
		height: auto !important;	
	}	

        
               
               
 /*
 * Ajax Load More
*/

button.alm-load-more-btn{	
   font-family: 'Luckiest Guy', cursive; 
   font-size:16px;
   width:auto;   
   height: 42px;
   line-height: 44px;
   background: #ffc500;
   color:#000;
   border: none;
   -webkit-border-radius:3px;
   -moz-border-radius:3px;
   border-radius:3px;
   margin: 0 0 4px;
   padding:0 20px;
   display: inline-block;		
   position: relative;
   -webkit-transition: padding 0.25s ease-in-out;
   -moz-transition: padding 0.25s ease-in-out;
   transition: padding 0.25s ease-in-out;
   text-align: center;	
   text-decoration: none;
   -webkit-appearance: none; 
   -moz-appearance: none;   
   appearance: none;      
   /* Prevents text selection */
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: -moz-none;
   -ms-user-select: none;
   -o-user-select: none;
   user-select: none;
   cursor: pointer;
}
button.alm-load-more-btn:hover{
	background-color: #000;
	color: #fff;
	text-decoration: none;
}
button.alm-load-more-btn:active{
	-webkit-box-shadow: inset 0 3px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 3px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 3px 2px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}	

/* Loading */
button.alm-load-more-btn.loading{
	padding-left: 44px;
}

/* Loaded / Done */
button.alm-load-more-btn.done{
	cursor: default;
	opacity: 0.2;
	filter: alpha(opacity=20); 
	background-color: #ed7070; 
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}  
  
/* Loading Icon */
button.alm-load-more-btn:before,
button.alm-load-more-btn.done:before{                
	background: none;
	width: 0;
}

/* Loading :before */
button.alm-load-more-btn.loading:before {
  background:  url(../images/ajax-loader.gif) no-repeat center center;
  width: 30px;
  height: 30px;
  margin: 6px;		
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  display: inline-block;
  z-index: 0;
  content: '';
  position: absolute;
  left: 0;
  overflow: hidden;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.alm-btn-wrap{
text-align:center;
padding:10px 10px 30px;
overflow: hidden;
display: block;
}

