@charset "UTF-8"; 


/*==================== Start Media Queries ====================*/
/*
bootstrap_ms_slakero.css: 
Extra small devices (phones, less than 480px)
Medium small devices (phones, 768px and up)

Extra small devices (Landscape phones and portrait tablets, less than 768px)

Small devices (Portrait tablets and small desktops, 768px and up)

Medium devices (Landscape tablets and medium desktops, 992px and up)

Large devices (Large desktops and laptops, 1200px and up)

*/


/* ===== Start Media Query by Min-Width ===== */

/*== less than 1200 == */
@media screen and (max-width: 1199px) {
}

/*== less than 992 == */
@media screen and (max-width: 991px) {
}

/*== less than 768 == */
@media screen and (max-width: 767px) {

  .navbar_xs {
    background-color: rgba(26, 40, 87, 1.0);
    /*background-color: rgba(138, 37, 40, 0.8);*/
    border:1px solid rgba(255, 255, 255, 0.2);
  }

  #menu_button_container {
    background-color: rgba(26, 40, 87, 1.0);
  }

  .menu_firstitem {
    margin-left:0px;
  } 

  .menu_lastitem
  {
    margin-right:0px;
  }

  #resy_container {
   top:80px !important;
  }

  .pagehours_text {
    margin:10px 0px 0px 0px !important;
  }


}

/*== less than 480 == */
@media screen and (max-width: 479px) {

  #resy_container {
    top:80px !important;
  }

  #address_container {
   top:10px !important;
  }

  .pagehours_text {
    text-align:left!important
  }

}

/* ===== End Media Query by Min-Width ===== */


/* ===== Start Media Query by Min-Width ===== */

/*== 1200 and more == */
@media screen and (min-width: 1200px) {
}

/*== 992 and more == */
@media screen and (min-width: 992px) {
}

/*== 768 and more == */
@media screen and (min-width: 768px) {

  .menu_firstitem {
    margin-left:110px;
    /*border: 1px solid rgba(255, 255, 230, 1.0);*/
  } 

}

/*== 480 and more == */
@media screen and (min-width: 480px) {
}

/* ===== End Media Query by Min-Width ===== */


/* ===== Start Media Query by Range ===== */

/*== 1200 and more == */
@media (min-width: 1200px) {
  .mediaquerytest {
    background-color: red;
  }

/* poop prob need to do #onpage_info_container / fullpage_info_container ... css too
  #intro_container {
    display:none;		
  }
*/

}

/*== 992 to 1199 == */
@media (min-width: 992px) and (max-width: 1199px) {

  .mediaquerytest {
    background-color: purple;
  }
}

/*== 768 to 991 == */
@media (min-width: 768px) and (max-width: 991px) {
  .mediaquerytest {
    background-color: blue;
  }

}

/* start temp formatting fix poop*/
/*== 640 to 767 == */
@media (min-width: 640px) and (max-width: 767px) {

  #resy_container {
    top:80px !important;
  }
/*
  #intro_container {
    top:0px !important;
  }
*/

}
/*end temp formatting fix poop*/


/*== 480 to 767 == */
@media (min-width: 480px) and (max-width: 767px) {
  .mediaquerytest {
    background-color: green;
  }

 /*start temp formatting fix poop*/
  .pagehours_text {
    margin-right:50px; 
  }

  #address_container {
    top:10px !important;
  }

  .pagehours_text {
    text-align:left!important
  }

  /*end temp formatting fix poop*/

}

/*== Less than 480 == */
@media (max-width: 480px) {
  .mediaquerytest {
    background-color: yellow;
  }

}

/* ===== End Media Query by Range ===== */


/*==================== End Media Queries ====================*/


