/*
 * 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) {} */
/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region Blocks - custom media query CSS example:
   * 
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used 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.
   */
  /* line 57, ../sass/responsive.custom.scss */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
  .book_btn {
    margin-right: 0px;
  }
  #block-system-main{
    font-size:14px;
  }
  .star{
    font-size: 1px;
  }
  .view-content {
    justify-content: center;
  }
  .block-content h2,p{
    text-align: center;
  }
  .begin-button {
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
  }
  .homepage{
  background-size: cover !important;}
  
  /* .block-content p{
    display: flex;
    justify-content: center;
  } */
  .pane-2{
    background: #ffffffd1;
  }
  .agenda_page .pane-consultationcompanylogo{
    background: #ffffffd1 !important;
  }
  .offer-main{
    margin: 5px;
  }
  .view-footer .field-content{
    margin-bottom: 15px;
  }
  .view-footer button{
    line-height: 40px;
  }
  
  .finalPage {
    background-size: cover;
  }
  .middleBox.expiredForm {
    margin-top: 65%;
    opacity: .8;
  }
  .tnc_page table{
      display: block;
      overflow-x: auto;
      white-space: nowrap;
  }
  .views-field-field-module-attributes{
    display: none;
  }
  .views-field-counter{
    display: none;
  }
  .cols-0{
    display: table !important;
  }
  .tnc_page .view-consultationmodulesproposalterms2 {
    height: 500px;
  }
  .tnc_page .panel-display > .region:last-child{
    display: block;
  }
  .page-thank-you .middleBox  {
    margin-top: 40vh;
  }
  .proposal_page .view-footer {
    padding: 5px;
  }
  .finalPage .pane-2{
    background: none;
    
  }
  .finalPage .final-wrapper {
    background: #ffffffd1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.finalPage .elite-button::before {
  left: 0px;}
  .finalPage .starter-button::before {
    left: 5px;}
    .finalPage .elite-button {
      display: grid;
      padding: 10px;
  }
  .finalPage .starter-button {
    display: grid;
    padding: 10px;
}
.finalPage .gold-button {
  display: grid;
  padding: 10px;
}
/* .agenda_page .pane-consultationcompanylogo {
display: none;
} */
  .agenda_page ol > li {
    list-style-type: none;
    min-height: 45px;
    padding-left: 45px;
   padding-bottom: 0;
   margin-bottom: 0px;
    border-bottom: #dde4ee solid 1px;
    position: relative;
}
.agenda_page ol > li span:not(.toggled) {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  margin-left: 10px;
}
.agenda_page .pane-consultationcompanylogo {
  margin-top: -20px;
}

#block-system-main {
  font-size: 11px;
}
.agenda_page .image-style-mainlogoagenda {
  width: 100px;
}
.agenda_page .mainContent .block-inner{
  margin-top: 20px;
}
.agenda_page .begin-button{
  display: flex;  }
}
  /* .finalPage .pane-3{
    background: #ffffffd1;
  } 
  .finalPage .pane-2{
    background: #ffffffd1;
    padding: 20px;
  }
  .finalPage .pane-1{
    background: #ffffffd1;
  } */
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */

/*# sourceMappingURL=responsive.custom.css.map */
