/*
 * 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: 768px) {
#main-content {border-right: none !important;}
#block-crumbs-breadcrumb {display: none;}
#block-lang-dropdown-language {padding: 0 0 10px 0;
}
.sidebar .block-menu {
position: absolute;
top: 50px;
background: #fff;
overflow: hidden;
height: 0;
}

.nav-active .sidebar .block-menu {height: auto;}
.nav-active #site-name a:after {content: " \2718";}
#site-name a:after {content: " \25be";}
.sidebar .block-menu .block-title {display: none;}
}

/* Menu nicht auf der Startseite */
body.front #site-name a:after {
  content: "";
}

/*.domain-dertagdesspatzen-de .view-mode-full .field-item p {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
overflow: hidden;
max-width: 100%;
height: auto;
}*/

.domain-dertagdesspatzen-de .view-mode-full .field-item iframe {
position: absolute;
left: 0;
right: 0;
top: 0;
width: 100%;
height: 100%;
}

/* Custom */

@media all and (max-width: 768px) {
  #block-lang-dropdown-language {
  display: none;
  }
  
  .region-header .block {
  margin-bottom: 0px !important;
  }
  
  #main-content, .content-inner {
  min-height: 0px;
  padding-bottom: 0px;
  }
  
  .region-sidebar-second {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  }
  
  #block-menu-menu-tagdesspatzen-main-menu ul li a {
  border-bottom: 0px;
  }
  
  #block-menu-menu-tagdesspatzen-main-menu ul li {
  border-bottom: 1px solid #ccc;
  padding-top: 2px;
  padding-bottom: 2px;
  }
}