/*
Theme Name:   Seattle Made
Description:  Custom WordPress theme built exclusively for use on the Seattle Made website
Version:      1.0
Author:       Christine Estrada via TRAY Creative
Author URI:   http://www.traycreative.com
*/

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, font, 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 {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, nav, section { 
  display: block; 
}

audio, canvas, video { 
  display: inline-block; *display: inline; *zoom: 1; 
}
audio:not([controls]) { 
  display: none; 
}

[hidden] { 
  display: none; 
}

body {
    font-family: 'Roboto', sans-serif;
	line-height: 1.5;

}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

blockquote {
	quotes: none;
}

blockquote:before, blockquote:after {
	content: '';
	content: none;
}

del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* float clearing */
.group:after {
	content: ".";  
 	display: block; 
 	height: 0; 
 	clear: both; 
 	visibility: hidden; 
}

.group {
	display: inline-block;
}

/* Hides from IE-mac */
* html .group {
	height: 1%;
}

.group {
	display: block;
}
/* End hide from IE-mac */




/* GENERAL TYPOGRAPHY
 * Styling for global typographical elements
 * ---------------------------------------------------------------------- */

body {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  background-color: #000;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
  color: #23a267;
}

a:hover {
  text-decoration: underline;
}

a.button,
button.button,
input.button {
  font-family: 'Slabo 13px', serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
  display: inline-block;
  line-height: 40px;
  margin: 15px 0;
  padding: 2px 30px 0;
  border: 2px solid #000;
  border-radius: 4px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 4px;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a.button.green {
  background-color: #23a267;
}
a.button:hover,
a.button.green:hover,
button.button:hover,
input.button:hover {
  color: #fff;
  background-color: #23a267;
}
a.sm-cat::after { content: ', '; }
a.sm-cat:last-of-type::after { content: none; }
a.button.no-pad {
  margin-top: 0;
}

p {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
}

p.large {
  font-size: 22px;
  margin-bottom: 40px;
}

p#backtoblog {
  margin-bottom: 45px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Slabo 13px', serif;
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: normal;
}

h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  text-transform: uppercase;
  color: #23a267;
  margin-bottom: 10px;
}

  h3 a {
    font-size: 34px;
    color: #23a267;
    margin-bottom: 10px;
  }

h4 {
  font-size: 32px;
  color: #23a267;
  margin-bottom: 5px;
}

  h4 a {
    font-size: 32px;
    color: #23a267;
    margin-bottom: 5px;
  }

h5 {
  font-size: 32px;
  margin-bottom: 5px;
}

img.with-border {
  border: 1px solid #dad8d6;
  border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.blocked-image {
  width: 317px;
  height: 243px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #dad8d6;
  margin-bottom: 25px;
  border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

  .blocked-image .blocked-logo {
    width: 90%;
    height: 90%;
    margin: 5% auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }

  .blocked-logo img {
    width: auto;
    height: 100%;
  }
  



/* SITE STRUCTURE
 * Structural elements
 * ---------------------------------------------------------------------- */

body {
  min-width: 480px;
}

.content-container {
  position: relative;
  min-width: 420px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 30px;
}

.mobile-wide {
  padding-left: 0;
  padding-right: 0;
}

.mobile {
  display: block;
}

a.button.mobile-button {
  display: inline-block;
}

.desktop {
  display: none;
}

.page-content {
  padding-top: 75px;
  margin-top: 25px;
  background-color: #fff;
}

  .page-content.no-pad {
    padding-bottom: 0;
  }
  
img.alignright {
  float: right;
  margin-left: 20px;
}

img.alignleft {
  float: left;
  margin-right: 20px;
}




/* COMMON ELEMENT STYLING
 * Styling for common elements (column, etc)
 * ---------------------------------------------------------------------- */

.cms-copy ul {
  list-style: none;
  padding: 0 0 0 5px;
  margin: 15px 0;
}

.cms-copy ul li {
  line-height: 1.4;
  padding-left: 10px;

  margin-bottom: 10px;
}

.cms-copy ol li {
  list-style: decimal;
  line-height: 1.4;
  margin-left: 20px;
  margin-bottom: 10px;
}

.cms-copy ul li:before {
  font-family: 'serif';
  content: "•";
  padding-right: 6px;
  color: #23a267;
}

.panel-image {
  width: 100%;
  height: auto;
  border: 1px solid #dad8d6;
  border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
  margin-bottom: 35px;
}

  .panel-image img {
    float: left;
    width: 100%;
    height: auto;
  }





/* HEADER STYLING
 * Styling for the header area of the site
 * ---------------------------------------------------------------------- */
 
header[role='banner'] {
  text-align: center;
  background-color: #000;
}




/* FOOTER STYLING
 * Styling for the footer area of the site
 * ---------------------------------------------------------------------- */

footer[role='contentinfo'] {
  padding: 55px 0;
  color: #fff;
}

  footer[role='contentinfo'] a {
    color: #23a267;
  }
  
  footer[role='contentinfo'] p.copyright {
    font-size: 11px;
    margin-top: 30px;
  }

  footer[role='contentinfo'] .column.credits {
    margin-top: 25px;
  }

  footer[role='contentinfo'] .site-design {
    display: block;
    margin-top: 5px;
  }




/* NAVIGATION STYLING
 * Styling for navigation
 * ---------------------------------------------------------------------- */

  /* TYPOGRAPHY: GLOBAL NAV
   * Global typography for nav elements
   * ---------------------------------------------------------------------- */

  nav a {
  }
  
    nav a:hover {
      text-decoration: none;
    }


  /* NAV STYLING: PRIMARY NAV
   * Styling for primary header nav
   * ---------------------------------------------------------------------- */

  .nav-primary {
    font-family: 'Slabo 13px', serif;
    position: absolute;
    top: 176px;
    left: 0;
    width: 100%;
    min-height: 55px;
    text-align: left;
    background-color: #23a267;
    z-index: 100;
	padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .nav-primary.sticky {
    position: fixed;
    left: 0;
    top: 0 !important;
    width: 100%;
    z-index: 100;
  }

  .nav-primary a {
    font-size: 22px;
    display: block;
    padding: 10px 0;
    color: #fff;
  }
  
  .nav-primary ul#menu-primary-nav {
    display: none;
    padding-top: 60px;
  }
  
  .nav-primary ul#menu-primary-nav > li > a {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .nav-primary .sub-menu {
    display: none;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #000;
  }


  .nav-primary li#menu-item-4588.current-menu-item .sub-menu,
  body.sm_events .nav-primary li#menu-item-4588 .sub-menu,
  .nav-primary .current_page_parent .sub-menu {
    display: block;
  }
    
  .nav-open {
    display: block;
    position: absolute;
    top: 12px;
    left: 25px;
    width: 300px;
    height: 31px;
    background: #23a267 url('images/ham.png') left center no-repeat;
    cursor: pointer;
  }
  
  .nav-open.open {
    background: #23a267 url('images/ham_gray.png') left center no-repeat;
  }
  

  /* NAV STYLING: FOOTER NAV
   * Styling for footer nav
   * ---------------------------------------------------------------------- */

  .nav-footer {
    margin-top: 25px;
  }

  .nav-footer li {
    display: inline-block;
  }
  
  .nav-footer li:before {
    content: "|";
    padding: 0 5px;
    color: #23a267;
  }
  
  .nav-footer li:first-child:before {
    content: none;
  }


  /* NAV STYLING: PAGINATION NAV
   * Styling for pagination nav
   * ---------------------------------------------------------------------- */
	
  .nav-pagination {
    text-align: center;
	font-size:18px;
  }
  
  .nav-pagination .prev {
    float: left;
  }
  
  .nav-pagination .next {
    float: right;
  }
  .nav-bottom{
	margin-bottom:20px;
  }
  
  
  /* NAV STYLING: EVENT FILTER NAV
   * Styling for event filter nav
   * ---------------------------------------------------------------------- */
  
  @media screen and (min-width: 800px) {
	  .event-filter {
	  	display: inline-block; 
	  	width: 30%; 
	  	margin-right: 4.5%; 
	  	vertical-align: top;
	  }
	  .event-filter:last-of-type {
	  	margin-right: 0;
	  }
  }
  @media screen and (max-width: 800px) {
	  .event-filter {
	  	display: inline-block; 
	  	width: 180px; 
	  	margin: 0 1em 1em; 
	  	vertical-align: top;
	  }
  }

  

  /* NAV STYLING: MANUFACTURER NAV
   * Styling for manufacturer nav
   * ---------------------------------------------------------------------- */

  .archive.tribe-is-responsive .nav-manufacturers {
    display: none;
  }

  .nav-manufacturers {
    margin-top: 75px;
  }
  
  .nav-manufacturers #browse-by-industry {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    vertical-align: top;
    font-size: 18px;
    line-height: 1.6;
    padding: 6px 15px 2px;
    border: 1px solid #dad8d6;
    border-radius: 4px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 4px;
    background-color: #fff;
  }
  
    .nav-manufacturers #browse-by-industry option {
      padding: 2px 0;
    }
  .content-container #searchform2 {
	display: inline-block;
	margin-right: 20px;
	}
  
    .content-container #searchform2 input[type='text'] {
      display: inline-block;
      font-family: 'Roboto', serif;
      font-size: 18px;
      line-height: 36px;
      padding: 4px 40px 2px 20px;
      vertical-align: top;
      border: 2px solid #777878;
      border-radius: 4px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 4px;
      box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
      background-color: #fff;
    }
    
    .content-container #searchform2 input[type='submit'] {
      display: inline-block;
      width: 46px;
      height: 46px;
      margin-left: 5px;
      vertical-align: top;
      border: none;
      border: 2px solid #777878;
      border-radius: 4px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 4px;
      box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
      background: #fff url('images/icon_search.png') center center no-repeat;
	  margin-right: 40px;
    }
  /* end home search form */
  .nav-manufacturers #searchform {
    display: inline-block;
    margin-bottom: 20px;
  }
  
  
    .nav-manufacturers #searchform input[type='text'] {
      display: inline-block;
      font-size: 18px;
      line-height: 27px;
      padding: 4px 20px 2px 20px;
      vertical-align: top;
      border: 1px solid #dad8d6;
      border-radius: 4px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 4px;
      box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
      background-color: #fff;
    }
    
    .nav-manufacturers #searchform input[type='submit'] {
      display: inline-block;
      width: 37px;
      height: 37px;
      margin-left: 8px;
      vertical-align: top;
      border: none;
      border: 1px solid #dad8d6;
      border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
      box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
      background: #fff url('images/icon_search.png') center center no-repeat;
    }
    
    .nav-manufacturers .filters {
      margin-top: 20px;
    }
    
    .nav-manufacturers .filters label {
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
      display: inline-block;
      margin: 0 10px;
      color: #fff;
    }
    
    .nav-manufacturers .filters input[type='checkbox']:first-child {
      margin-left: 0;
    }
    
    .nav-manufacturers .filters input[type='checkbox'] {
      display: none;
    }
    
    .nav-manufacturers .filters label {
      display: inline-block;
      height: 20px;
	  text-transform: uppercase;
      padding-left: 30px;
      margin: -1px 10px 0 0;
      vertical-align: middle;
      cursor: pointer;
      background: url('images/radial_off.png') center left no-repeat;
    }

    .nav-manufacturers .filters input[type='checkbox']:checked + label {
       background: url('images/radial_on.png') center left no-repeat;
    }




/* SECTION STYLING
 * Styling for section content
 * ---------------------------------------------------------------------- */

  section.with-border {
    padding: 50px 0;
    border-top: 2px solid #e3e3e3;
  }
  
  section.with-border.even {
    background-color: #fafafa;
  }
  
  

  /* SECTION STYLING: MEMBER GRID
   * Styling for member grid
   * ---------------------------------------------------------------------- */

  .section-members {
    text-align: center;
  }
  
  .section-members h2 {
    text-align: left;  
  }

  .section-member-grid {
    text-align: center;
    margin: 30px 0;
  }
  
  .section-member-grid .member {
    position: relative;
    display: inline-block;
    max-width: 329px;
    margin: 0 1.25% 35px;
    text-align: left;
    vertical-align: top;
  }
  
  .section-member-grid .member .content {
    position: relative;
    max-width: 329px;
  }
  
  .section-member-grid .member .member-name {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    color: #fff;
    background: url('images/bg_black.png');
  }
  
  .section-member-grid .member .member-name span {
    display: block;
    font-family: 'Abel', sans-serif;
    font-weight: 500;
    font-size: 24px;
    border-left: 1px solid #dad8d6;
    padding: 14px 20px;
  }
  
  .section-member-grid .alm-btn-wrap {
    clear: both;
  }


  /* SECTION STYLING: PARTNERS
   * Styling for founding partners area
   * ---------------------------------------------------------------------- */

  .section-partners {
    border-top: 2px solid #e3e3e3;
  }
  
  .section-partners .partners {
    text-align: center;
  }
  

  /* SECTION STYLING: SIDEBAR
   * Styling for sidebar content
   * ---------------------------------------------------------------------- */

  .section-sidebar section {
    margin-bottom: 25px;
  }
  
  .section-sidebar .manufacturer-social-media {
    margin-top: 25px;
  }
  
  .section-sidebar section.buy-online a {
    display: block;
  }
  



/* ARTICLE STYLING
 * Styling for articles
 * ---------------------------------------------------------------------- */

article.with-sidebar {
}

.article-excerpt {
}




/* PAGE STYLING
 * Styling for specific pages
 * ---------------------------------------------------------------------- */

  /* PAGE STYLING: HOME
   * Styling for home page
   * ---------------------------------------------------------------------- */

  #home .nav-primary {
    top: 248px;
  }
  
  #home .page-content {
    padding-top: 0;
  }
  
  #home .blocked-logo {
    margin-bottom: 0;
  }

  #home .section-hero {
    color: #fff;
    margin-bottom: 50px;
    background-color: #000;
  }

  #home .section-hero .hero-image {
    width: 100%;
	margin-top: 90px;
    height: 250px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #home .section-hero aside {
    padding: 30px 0;
  }
  
  #home .section-hero aside .content {
    font-size: 21px;
	padding-right: 40px;
  }
  
  #home .section-events .get-involved {
    margin-top: 25px;
  }
  
  #home .section-events .get-involved .block {
    margin-top: 30px;
  }
  
  #home .section-events .get-involved #mc_embed_signup form {
    margin-top: 40px;
  }
  
  #home .section-events .get-involved #mc_embed_signup form input[type='email'] {
    width: 50%;
  }
  
  #home .section-events .event-list li {
    margin-bottom: 20px;
  }
  
  #home .section-partners {
    margin-top: 0;
  }
    
    
  /* PAGE STYLING: ABOUT
   * Styling for about page
   * ---------------------------------------------------------------------- */


  section#our-team .with-border {
    padding-bottom: 0;
  }
  
  section#founding-partners,
  section#strategic-partners {
    padding-bottom: 15px;
  }
  
  .section-bios {
    padding-bottom: 35px;
  }
  
  .section-bios .bio {
    cursor: pointer;
  }

  .section-bios .bio img {
    cursor: pointer;
  }

  .section-bios .bio-detail {
    position: relative;
    display: none;
    margin-bottom: 35px;
  }
  
  .section-bios .bio-detail.open {
    display: inline-block;
  }
  
  .section-bios .bio-close {
    float: right;
    width: 82px;
    height: 39px;
    margin-top: 35px;
    background: url('images/bio-close.png') center center no-repeat;
    cursor: pointer;
  }



  /* PAGE STYLING: CONTACT US
   * Styling for contact us page
   * ---------------------------------------------------------------------- */

  #contact-us .page-content .logo {
    display: block;
    width: 100%;
    padding: 45px 0;
    margin-bottom: 35px;
    text-align: center;
    background-color: #000;
  }


  /* PAGE STYLING: SINGLE MANUFACTURER
   * Styling for single manufacturer page
   * ---------------------------------------------------------------------- */

  .carousel-images {
    position: relative;
    border: 1px solid #dad8d6;
    border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
    margin-bottom: 35px;
  }

    .carousel-images .slides li {
      width: auto;
      height: 410px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
    }
  
  .carousel-images .flex-direction-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 60px;
    margin-top: -30px;
  }
  
  .carousel-images .flex-direction-nav .flex-prev {
    float: left;
    width: 26px;
    height: 60px;
    text-indent: -9999px;
    background: url('images/arrow_left.png') center center;
  }
  
  .carousel-images .flex-direction-nav .flex-disabled {
    opacity: .5;
  }
  
  .carousel-images .flex-direction-nav .flex-next {
    float: right;
    width: 26px;
    height: 60px;
    text-indent: -9999px;
    background: url('images/arrow_right.png') center center;
  }
  
 
  /* PAGE STYLING: LOGOS
   * Styling for logos page
   * ---------------------------------------------------------------------- */

  #logos .cms-copy h2 {
    margin-top: 45px;
  }
  
  #logos .cms-copy img {
    max-width: 100%;
    height: auto;
  }
  



/* GRAVITY FORMS STYLING
 * Styling for forms
 * ---------------------------------------------------------------------- */

.gform_wrapper {
  margin-top: 0 !important;
}

.gform_wrapper .top_label .gfield_label {
  font-weight: normal;
  letter-spacing: 0px;
  color: #23a267;
  margin-left: 25px;
}

.gform_wrapper input[type=text], .gform_wrapper textarea, .gform_wrapper input[type=url], .gform_wrapper input[type=email], .gform_wrapper input[type=tel], .gform_wrapper input[type=number], .gform_wrapper input[type=password], .gform_wrapper select {
  padding: 6px !important;
  border: 1px solid #999;
  border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  background-color: #fff;
  color: #000;
}

.gform_wrapper li, 
.gform_wrapper form li {
  margin-bottom: 15px !important;
}

.gform_wrapper input[type='submit'] {
  font-family: 'PT Serif', serif;
  display: inline-block;
  min-width: 100px;
  line-height: 1.2;
  margin: 20px 0;
  padding: 6px 50px;
  border: 1px solid #777878;
  border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.gform_wrapper input[type='submit']:hover {
  color: #fff;
  background-color: #000;
}

#join .gform_wrapper .top_label .gfield_label,
#account .gform_wrapper .top_label .gfield_label {
  font-family: 'Abel', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

#join .gform_wrapper .gsection .gfield_label, 
#join .gform_wrapper h2.gsection_title, 
#join .gform_wrapper h3.gform_title,
#account .gform_wrapper .gsection .gfield_label, 
#account .gform_wrapper h2.gsection_title, 
#account .gform_wrapper h3.gform_title {
  font-weight: normal !important;
  font-size: 26px !important;
}

#join .gform_wrapper .gfield_description,
#account .gform_wrapper .gfield_description {
  font-family: 'Abel', sans-serif;
  font-size: 13px;
  color: #000;
}

#join .gform_wrapper .description,
#join .gform_wrapper .gsection_description,
#account .gform_wrapper .description,
#account .gform_wrapper .gsection_description {
  font-family: 'Abel', sans-serif;
  font-size: 16px;
  color: #000;
}

#join .gform_wrapper .top_label .gfield_label,
#account .gform_wrapper .top_label .gfield_label {
  margin: 5px 0 2px !important;
}

#join .gform_wrapper label.gfield_label + div.ginput_container,
#account .gform_wrapper label.gfield_label + div.ginput_container {
  margin-top: 0 !important;
}

#join .gform_wrapper .percentbar_green,
#account .gform_wrapper .percentbar_green {
  background-color: #23a267 !important;
}


/* make form halfs responsive */
@media screen and (max-width: 900px) {
  .gform_wrapper li.gfield.gf_left_half {
    float: none !important;
    width: 100% !important;
  }

  .gform_wrapper li.gfield.gf_right_half {
    float: none !important;
    width: 100% !important;
  }
}

.acf-form input[type='submit'] {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  display: inline-block;
  min-width: 100px;
  line-height: 28px;
  margin: 20px 0;
  padding: 2px 30px 0;
  border: 1px solid #777878;
  border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.acf-form input[type='submit']:hover {
  color: #fff;
  background-color: #000;
}

/* AJAX LOAD MORE STYLING
 * Styling for Ajax load more
 * ---------------------------------------------------------------------- */

button.alm-load-more-btn {	
   display: inline-block;		
   position: relative;
   width: auto;   
   height: 42px;
   line-height: 44px;
   margin: 0 0 4px;
   padding: 0 20px;
   -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: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;
}
    
button.alm-load-more-btn.done {
	cursor: default;
	opacity: 0.2;
	filter: alpha(opacity=20); 
	-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: #fff 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 {
	display: block;
	text-align:center;
	padding: 10px 10px 30px;
	overflow: hidden;
}



/* EVENT STYLING
 * Styling for event calendar stuff
 * ---------------------------------------------------------------------- */

.single.tribe_events #tribe-events-header .tribe-events-sub-nav {display: none;}

.tribe-events-notices {
  border: 1px solid #999 !important;
  background: #ccc !important;
  color: #000 !important;
  text-shadow: none !important;
}

.tribe-events-event-meta .column, 
.tribe-events-event-meta .tribe-events-meta-group {
  padding: 0 !important;
}

#tribe-events-pg-template .tribe-events-content ul, 
.tribe-events-after-html ul, 
.tribe-events-before-html ul {
  padding-left: 20px;
}

#tribe-events-pg-template h3 {
  margin-top: 20px;
}

#tribe-events-pg-template dl dt {
  float: left;
  margin-right: 6px;
  clear: left;
}

#tribe-events-pg-template dl dd {
  float: left;
}

#tribe-events-pg-template dd.location {
  clear: both;
  float: none;
}

#tribe-events-pg-template dd.location .adr .street-address,
#tribe-events-pg-template dd.location .adr .country-name {
  display: block;
}
@media (max-width: 597px){
 .content-container #searchform2 {
  display: inline-block;
  margin: 20px;
 padding-top: 1px;
}
    a.button.no-pad{
        padding-top: 1px;
    }
}