/* ==========================================================================
   Color Mixer
   1. Topbar link (#header-info-bar)
   2. Color Mixer page template (page-color-mixer.php)
   ========================================================================== */

/* 1. Topbar link ---------------------------------------------------------- */

#header-info-bar .info-bar-mixer-link {
  display: block;
  float: right;
  height: 40px;
  line-height: 40px;
  margin-right: 20px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: color 0.4s ease-in-out;
  -moz-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
#header-info-bar .info-bar-mixer-link:hover,
#header-info-bar .info-bar-mixer-link:focus {
  color: #50b900;
}
#header-info-bar .info-bar-mixer-link i.fa {
  margin-right: 8px;
  font-size: 13px;
  vertical-align: -1px;
}

@media (max-width: 479px) {
  #header-info-bar .info-bar-mixer-link {
    margin-right: 12px;
    font-size: 10px;
  }
  #header-info-bar .info-bar-mixer-link i.fa {
    margin-right: 6px;
  }
}

/* 1b. Mixer CTA button ---------------------------------------------------- */
/* For linking to the mixer from inside page content (e.g. the COLOR tab on the
   /services/ product pages). Square corners and the fade-to-transparent hover
   follow the theme's own .cmo-button; color is DuraPlay green. */

a.dp-mixer-cta,
a.dp-mixer-cta:visited {
  display: inline-block;
  padding: 12px 28px;
  background-color: #50b900;
  border: 1px solid #50b900;
  border-radius: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  -moz-transition: color 0.3s ease, background-color 0.3s ease;
  -o-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
a.dp-mixer-cta:hover,
a.dp-mixer-cta:focus {
  background-color: transparent;
  color: #50b900;
}

@media (max-width: 479px) {
  a.dp-mixer-cta {
    padding: 11px 18px;
    font-size: 12px;
    white-space: normal;
  }
}

/* 2. Color Mixer page ----------------------------------------------------- */

/* #cmo-header is fixed and 90px tall (40px info bar + 50px nav) at every
   breakpoint, so the frame is offset and sized against that. */
.color-mixer-content {
  padding-top: 90px;
}
.color-mixer-content .color-mixer-frame {
  display: block;
  width: 100%;
  height: -webkit-calc(100vh - 90px);
  height: -moz-calc(100vh - 90px);
  height: calc(100vh - 90px);
  min-height: 620px;
  border: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .color-mixer-content .color-mixer-frame {
    min-height: 560px;
  }
}
