/*
 * 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%;
  }
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {}*/ 

@media all and (max-width: 720px) {
.start-box {
float: none;
width: 290px;
margin: 0 auto;
text-align: center;
}
#site-name {margin-top: 20px;}
}

@media all and (max-width: 655px) {
#menu-bar {text-align: center;}
#block-lang-dropdown-language {
float: none;
display: block;
clear: both;
margin: 0 auto;
padding: 10px;
}

.nav li {
float: none;
}

.nav li a {
display: inline;
}
}

@media all and (max-width: 768px) {
.sidebar .block-menu {
position: absolute;
top: 50px;
height: 30px;
overflow: hidden;
left: 0;
right: 0;
}

.sidebar .block-menu .block-title:after {
content: " Menu \25BC";
}

.sidebar .block-menu.nav-active .block-title:after {
content: " Menu \25B2";
}

.sidebar .block-menu  .block-title {cursor: pointer;}


.sidebar .block-menu.nav-active {
height: auto;
background: #fff;
}
}

/* Custom */

@media all and (max-width: 655px) {
  #block-block-15, #block-block-24 {
  display: none;
  }
  
  #menu-bar {
  display: none;
  }
  
  body.front #menu-bar {
  padding: 0px;
  background-color: #000;
  display: block;
  border: 0px solid grey;
  padding: 0px;
  margin: 0px;
  }
  
  .content-inner {
  padding-top: 10px;
  }
  
  .social_share_privacy_area li {
  display: block !important;
  float: none !important;
  }
  
  .sidebar .block-menu {
    background: none repeat scroll 0 0 #FFFFFF;
    }
   
  body.halfmoon-film #block-menu-menu-halfmoonfiles-main-menu h2.block-title {
  background-color: #000;
  } 
   
  body.halfmoon-making-of #block-menu-menu-halfmoonfiles-making-of-men h2.block-title {
  background-color: #000;
  }
  
  body.halfmoon-archiv #block-menu-menu-halfmoonfiles-archiv-menu h2.block-title {
  background-color: #000;
  }
  
  body {
  background: none repeat scroll 0 0 #ffffff;
  }
  
  body.front  {
  background: none repeat scroll 0 0 #000000;
  }
  
  #site-name a {
  color: #000;
  }
  
  body.front #site-name a {
  color: #fff;
  }
}

























