/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries, regardless of screen size.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable got to your theme settings and
 * look under the "CSS" settings tab.
 */
/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */
/*
 * Smartphone sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smartphone sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region blocks example:
   * In smaller screen sizes we can remove the float and widths so all blocks
   * stack instead of displaying horizonally. The selector used here is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   * 
   * "Float Region blocks" is an extension for floating blocks in regions, see
   * your themes appearance settings, under the Extensions tab.
   */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
  
  #header-wrapper {
  	height: 300px;
  }
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */

@media only screen and (max-width: 768px) and (min-width: 300px) {
	#header-wrapper {
		height: 300px;
	}
  html, body { min-width: 100%; }
  #branding { float: none; margin: 0 auto !important; }
  #branding + .region-header { margin: 0 auto !important; }
  #block-block-1 { float: none; text-align: center; }
  #block-block-1 p { margin: 0; }
  .responsive-menus.responsified.responsive-toggled.absolute .responsive-menus-simple {
    position: absolute;
    z-index: 9999;
  }
  #main-content, .pane-inner, .menu-wrapper, .branding-elements, .breadcrumb-wrapper, .attribution, .at-panel .rounded-corner, .block-panels-mini > .block-title, div.messages {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .slider-cycle-loaded #block-block-6, .slider-cycle-loaded #block-block-7, .slider-cycle-loaded #block-block-8 { margin-top: 0; }
  .region-three-33-first .block-inner, .region-three-33-third .block-inner { margin-left: 0 !important; margin-right: 0 !important; }
  .three-3x33 > .region { width: 100%; }
  .region-three-33-first .block-inner, .region-three-33-second .block-inner, .region-three-33-third .block-inner { text-align: center; }
  .content-inner {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  #branding { max-width: 100%; }
  #block-superfish-1 {  }
  .responsive-menus.responsified span.toggler { text-align: left; padding-left: 20px; border-radius: 0;position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; height: 34px; }
  .responsive-menus.responsified.responsive-toggled.absolute .responsive-menus-simple { top: 34px; z-index: 9998; }
  #page-wrapper { padding-top: 20px; } 
} 