/* ===== == = === Base Styles === = == ===== */

/* ===== == = === 20em (320px) === = == ===== */

@media only screen and (min-width: 20em) {}

/* ===== == = === 30em (480px) === = == ===== */

@media only screen and (min-width: 30em) {}

/* ===== == = === 37.5em (600px) === = == ===== */

@media only screen and (min-width: 37.5em) {}

/* ===== == = === 48em (768px) === = == ===== */

@media only screen and (min-width: 48em) {}

/* ===== == = === 56.25em (900px) === = == ===== */

@media only screen and (min-width: 56.25em) {}

/* ===== == = === 68.75em (1100px) === = == ===== */

@media only screen and (min-width: 68.75em) {}

/* ===== == = === 81.25em (1300px) === = == ===== */

@media only screen and (min-width: 81.25em) {}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* ---- masonry-grid ----
Assumes max width of 1200px

menu has 5 cols at largest
user has 4
reg has 2

*/

.masonry-menu-grid,
.masonry-user-grid,
.masonry-reg-grid {
  max-width: 1200px;
}

@media (min-width: 1200px) {
  .masonry-reg-grid {
    height: 600px;
    width: 1100px;
  }
}

/* clearfix */

.masonry-menu-grid:after,
.masonry-user-grid:after,
.masonry-reg-grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- masonry-grid-item ---- */

.masonry-menu-grid-sizer,
.masonry-menu-grid-item,
.masonry-user-grid-sizer,
.masonry-user-grid-sizer,
.masonry-reg-grid-sizer,
.masonry-reg-grid-item {
  width: 100%;
}

.masonry-menu-grid-item,
.masonry-user-grid-item,
.masonry-reg-grid-item, {
  height: auto;
  float: left;
}

.masonry-menu-grid-item {
  margin-bottom: 0px;
}

@media (min-width: 600px) {
  .masonry-menu-grid-sizer,
  .masonry-menu-grid-item {
    width: 50%;
  }
  .masonry-menu-grid-item--width2 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .masonry-menu-grid-sizer,
  .masonry-menu-grid-item {
    width: 33.3%;
  }
  .masonry-menu-grid-item--width2 {
    width: 66%;
  }
  .masonry-menu-grid-item--width3 {
    width: 99%;
  }
}

@media (min-width: 800px) {
  .masonry-user-grid-sizer,
  .masonry-user-grid-item {
    width: 50%;
  }
  .masonry-user-grid-item--width2 {
    width: 95%;
  }
  .masonry-user-grid-item--width3 {
    width: 75%;
  }

  .masonry-reg-grid-sizer,
  .masonry-reg-grid-item {
    width: 50%;
  }
  .masonry-reg-grid-item--width2 {
    width: 95%;
  }
  .masonry-reg-grid-item--width3 {
    width: 75%;
  }

}

@media (min-width: 1024px) {
  .masonry-menu-grid-sizer,
  .masonry-menu-grid-item {
    width: 20%;
  }
}

@media (min-width: 1200px) {
  .masonry-user-grid-sizer,
  .masonry-user-grid-item {
    width: 25%;
  }
  .masonry-user-grid-item--width2 {
    width: 50%;
  }
  .masonry-user-grid-item--width3 {
    width: 70%;
  }

  .masonry-user-grid-item--narrow {
    width: 20%;
  }

  .masonry-reg-grid-sizer,
  .masonry-reg-grid-item {
    width: 25%;
  }
  .masonry-reg-grid-item--width2 {
    width: 50%;
  }
  .masonry-reg-grid-item--width3 {
    width: 70%;
  }
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.

ASG -- Clean this up
*/

.check-media{
    display:none;
    width:0;
}

/* Larger than mobile */
@media (min-width: 400px) {
  .check-media {
    width: 400px;
  }
}

/* Larger than phablet */

@media (min-width: 550px) {}

@media (min-width: 600px) {
  .check-media {
    width: 600px;
  }

@media (min-width: 650px) {
  .check-media {
    width: 650px;
  }

/* Larger than tablet */

@media (min-width: 750px) {}

@media (min-width: 768px) {
  .check-media {
    width: 768px;
  }
}

@media (min-width: 800px) {
  .check-media {
    width: 800px;
  }
}

/* Larger than desktop */

@media (min-width: 1000px) {}

@media (min-width: 1024px) {
  .check-media {
    width: 1024px;
  }
}

/* Larger than Desktop HD */

@media (min-width: 1200px) {
  .check-media {
    width: 1200px;
  }
}
