/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
body.cms-home .slideshow-container {
  margin-top: 0;
}

.slideshow .banner-msg {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  top: 30%;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow .banner-msg h2 {
  color: #FFFFFF;
  font-size: 24px;
  text-shadow: 1px 1px 3px #555555;
}

.slideshow .banner-msg h2 strong {
  font-weight: bold;
  display: block;
  font-size: 36px;
}

@media only screen and (max-width: 770px) {
  .slideshow .banner-msg h2 {
    font-size: 20px;
  }

  .slideshow .banner-msg h2 strong {
    font-size: 24px;
  }
}
@media only screen and (max-width: 479px) {
  .slideshow .banner-msg {
    top: 20%;
  }

  .slideshow .banner-msg h2 {
    font-size: 14px;
  }

  .slideshow .banner-msg h2 strong {
    font-size: 16px;
  }
}
/* -------------------------------------------- *
 * Promotion Banner Section
 */
.promos {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

.promos:after {
  content: '';
  display: table;
  clear: both;
}

/* Specifying the body only in order to override the .std ul li styling */
body .promos > li {
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  position: relative;
  border: 1px solid #CCCCCC;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.promos > li:last-child {
  margin-bottom: 0;
}

.promos img {
  max-width: 100%;
  width: 100%;
}

.promos a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: block;
}

.promos span {
  color: #FFFFFF;
  text-transform: uppercase;
  position: absolute;
  display: block;
  width: 100%;
  top: 10%;
  font-weight: 500;
  font-size: 20px;
  font-family: Arial, Verdana, sans-serif;
  text-shadow: 1px 1px 3px #555555;
}

.promos strong {
  font-weight: 600;
  font-size: 26px;
  display: block;
}

@media only screen and (min-width: 771px) {
  .promos span {
    font-size: 16px;
  }

  .promos strong {
    font-size: 17px;
  }

  /* Config: Three columns + flexible gutter */
  body .promos > li {
    float: left;
    width: 31.74603%;
    margin-right: 2.38095%;
  }

  .promos > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 880px) {
  .promos span {
    font-size: 18px;
  }

  .promos strong {
    font-size: 24px;
  }
}
/* -------------------------------------------- *
 * New Products Section
 */
/* Hiding the reviews content via CSS because we can't modify the template, */
/* since it may be used in other places where those elements are needed */
.cms-index-index .products-grid .ratings,
.cms-index-index .products-grid .actions,
.cms-index-noroute .products-grid .ratings,
.cms-index-noroute .products-grid .actions {
  display: none;
}

.cms-index-index h2.subtitle {
  padding: 6px 0;
  text-align: center;
  color: #3399CC;
  font-weight: 600;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
}

.cms-index-noroute h2.subtitle {
  display: none;
}

.container {
  margin-top: 20px;
}

.newsBanner {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 479px) {
  .newsBanner {
    display: none;
  }
}

.newsBanner-m {
  display: none;
}
@media only screen and (max-width: 479px) {
  .newsBanner-m {
    display: block;
    width: 100%;
    margin: 1em auto;
  }
}

.newsBlock {
  padding: 25px 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media only screen and (max-width: 479px) {
  .newsBlock {
    display: block;
    padding: 0;
  }
}
.newsBlock .bigAdd {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #dadada;
  margin-right: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsBlock .bigAdd a {
  max-width: 100%;
}
.newsBlock .bigAdd img {
  width: 100%;
}
@media only screen and (max-width: 479px) {
  .newsBlock .bigAdd {
    width: 100%;
  }
}
.newsBlock .bestsellers {
  width: 100%;
  display: inline-block;
}
.newsBlock .bestsellers h2 {
  font-family: "HemiHeadRg-BoldItalic", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  background: #dadada;
  padding-top: 4px;
  text-align: center;
  line-height: 50px;
}
@media only screen and (max-width: 479px) {
  .newsBlock .bestsellers h2 {
    line-height: 30px;
    margin-top: 0.5em;
  }
}
.newsBlock .bestsellers ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.newsBlock .bestsellers ul li {
  margin-left: 0;
  list-style: none;
  width: 32%;
  display: inline-block;
  border: 1px solid #dadada;
  margin-left: 2%;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  font-family: Arial;
  font-size: 14px;
  font-weight: 700;
}
.newsBlock .bestsellers ul li:nth-child(3n +1) {
  margin-left: 0;
}
.newsBlock .bestsellers ul li:nth-child(4), .newsBlock .bestsellers ul li:nth-child(5), .newsBlock .bestsellers ul li:nth-child(6) {
  margin-bottom: 0;
}
@media only screen and (max-width: 479px) {
  .newsBlock .bestsellers ul li {
    width: 49%;
    margin-bottom: 2%;
  }
  .newsBlock .bestsellers ul li:nth-child(3), .newsBlock .bestsellers ul li:nth-child(5) {
    margin-left: 0;
  }
  .newsBlock .bestsellers ul li:nth-child(4) {
    margin-left: 2%;
    margin-bottom: 2%;
  }
}
.newsBlock .bestsellers ul li img {
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 770px) {
  .newsBlock .bestsellers ul li img {
    width: 100%;
    margin-bottom: 8px;
  }
}
.newsBlock .bestsellers ul li .title, .newsBlock .bestsellers ul li .price {
  font-family: Arial, Verdana, sans-serif;
  display: block;
}
.newsBlock .bestsellers ul li a {
  display: block;
}

/* ============================================ *
 * Category Landing Pages
 * ============================================ */
.category-image {
  position: relative;
}

.categorylandingMainblock {
  border: 1px solid #E2E2E2;
  padding: 7px;
}

.catblocks {
  float: left;
  padding: 0 0 20px 0;
  width: 100%;
}

.catblocks li {
  position: relative;
  float: left !important;
  width: 23% !important;
  margin-right: 2.66667% !important;
  margin-bottom: 10px;
  border: 1px solid #CCCCCC;
  padding: 10px;
}

.catblocks li:hover {
  border-color: #3399CC;
}

@media only screen and (max-width: 770px) {
  .catblocks li {
    width: 49% !important;
    margin-right: 2% !important;
  }

  .catblocks li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 479px) {
  .catblocks li {
    width: 100% !important;
    margin-right: 0 !important;
    float: none;
  }
}
.catblocks li:last-child {
  margin-right: 0 !important;
}

.catblocks li img {
  width: 100%;
  max-width: 100%;
}

.catblocks li a span {
  color: #FFFFFF;
  position: absolute;
  background-color: #7B7C7B;
  font-family: raleway;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 5px 10px;
  margin-right: 10px;
}

.catblocklinks a {
  color: #FFFFFF;
  text-decoration: none;
}

.catlandingbottomPromoblock {
  float: left;
  width: 100%;
  border: 1px solid #E2E2E2;
  margin-bottom: 100px;
}

.catalog-category-view div.categoryland-caption {
  display: block;
  margin: 0;
  position: absolute;
  color: #000000;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(../images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption a.link:hover,
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.link:hover {
  text-decoration: underline;
  color: #1189C5;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.blue-big-text,
.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.three-dots,
.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(../images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption p.desc,
.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.category-title h1 {
  background: transparent;
  text-align: left;
  color: #ca0000;
  font-size: 28px;
}

.block-layered-nav .block-content > dl > dt {
  border-color: #e6e6e6;
  background: #efefef;
  text-transform: none;
  font-size: 17px;
  text-transform: uppercase;
}

.block-layered-nav .block-content > dl > dd {
  border-color: #e6e6e6;
}

.block-layered-nav dl dd ol li a {
  padding: 5px 0;
  font-family: Arial, Verdana, sans-serif;
  font-size: 17px;
  color: #303030;
}
@media only screen and (max-width: 770px) {
  .block-layered-nav dl dd ol li a {
    padding-left: 1.5%;
  }
}
@media only screen and (max-width: 479px) {
  .block-layered-nav dl dd ol li a {
    padding-left: 4%;
  }
}
.block-layered-nav dl dd ol li a .price {
  font-family: Arial, Verdana, sans-serif;
}

/*# sourceMappingURL=madisonisland.css.map */
