/*
Author: Bobby Donathan | Mike Ligocki
Author URI: https://bigredrooster.com
Version: 1.0.0
*/
/**********************
Font Styles
AUTHOR: Bobby Donathan - BigRedRooster
_fonts.scss
***********************/
@font-face {
  font-family: "RheemSansLight";
  src: url("fonts/RheemSans-Light.eot"); /* IE9 Compat Modes */
  src: url("fonts/RheemSans-Light?#iefix") format("embedded-opentype"), url("fonts/RheemSans-Light.woff2") format("woff2"), url("fonts/RheemSans-Light.woff") format("woff"), url("fonts/RheemSans-Light.ttf") format("truetype"), url("fonts/RheemSans-Light.svg#RheemSans-Light") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "RheemSansRoman";
  src: url("fonts/RheemSans-Roman.eot"); /* IE9 Compat Modes */
  src: url("fonts/RheemSans-Roman.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-Roman.woff2") format("woff2"), url("fonts/RheemSans-Roman.woff") format("woff"), url("fonts/RheemSans-Roman.ttf") format("truetype"), url("fonts/RheemSans-Roman.svg#RheemSans-Roman") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "RheemSansBold";
  src: url("fonts/RheemSans-Bold.eot"); /* IE9 Compat Modes */
  src: url("fonts/RheemSans-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-Bold.woff2") format("woff2"), url("fonts/RheemSans-Bold.woff") format("woff"), url("fonts/RheemSans-Bold.ttf") format("truetype"), url("fonts/RheemSans-Bold.svg#RheemSans-Bold") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "RheemSansLightItalic";
  src: url("fonts/RheemSans-LightItalic.eot"); /* IE9 Compat Modes */
  src: url("fonts/RheemSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-LightItalic.woff2") format("woff2"), url("fonts/RheemSans-LightItalic.woff") format("woff"), url("fonts/RheemSans-LightItalic.ttf") format("truetype"), url("fonts/RheemSans-LightItalic.svg#RheemSans-LightItalic") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "RheemSansRomanItalic";
  src: url("fonts/RheemSans-RomanItalic.eot"); /* IE9 Compat Modes */
  src: url("fonts/RheemSans-RomanItalic.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-RomanItalic.woff2") format("woff2"), url("fonts/RheemSans-RomanItalic.woff") format("woff"), url("fonts/RheemSans-RomanItalic.ttf") format("truetype"), url("fonts/RheemSans-RomanItalic.svg#RheemSans-RomanItalic") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "RheemSansBoldItalic";
  src: url("fonts/RheemSans-BoldItalic.eot"); /* IE9 Compat Modes */
  src: url("fonts/RheemSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-BoldItalic.woff2") format("woff2"), url("fonts/RheemSans-BoldItalic.woff") format("woff"), url("fonts/RheemSans-BoldItalic.ttf") format("truetype"), url("fonts/RheemSans-BoldItalic.svg#RheemSans-BoldItalic") format("svg"); /* Legacy iOS */
}
/*MIXINS*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}

body {
  background-color: #fff;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.fancybox__content {
  height: 100% !important;
}

a:focus {
  outline: none;
}

#mainstage {
  display: flex;
  position: relative;
  z-index: 0;
}
#mainstage #brandnav {
  flex: 0 0 270px;
  display: flex;
  border-right: 1px solid #ccc;
  flex-direction: column;
  height: 100vh;
  background-color: #F5F5F6;
  position: relative;
}
#mainstage #brandnav .brandbox {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
  flex: 1 1 20%;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  color: #E41E2D;
}
#mainstage #brandnav .brandbox .over {
  display: none;
  color: #fff;
}
#mainstage #brandnav #chaser {
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  background-color: #636363;
  transition: all 300ms ease;
}
#mainstage #siteframe {
  flex: 1 0 auto;
}
#mainstage #siteframe iframe {
  border: none;
}

#productsbackgroundvideo {
  position: fixed;
  z-index: 0;
  background-color: #000;
}
#productsbackgroundvideo video {
  min-width: 100vw;
  height: 100vh;
}

#productswrapper {
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  color: #fff;
}
#productswrapper h1 {
  display: block;
  text-align: center;
}
#productswrapper .cards {
  display: flex;
}
#productswrapper .cards a {
  flex: 1 1 auto;
  text-align: center;
}
#productswrapper .cards a img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

#videopagewrapper, #toolswrapper {
  padding-top: 80px;
  height: 100vh;
  overflow-y: scroll;
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  color: #fff;
  padding-bottom: 100px;
}
#videopagewrapper h1, #toolswrapper h1 {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
#videopagewrapper img, #toolswrapper img {
  max-width: 100%;
  height: auto;
}

.contentpopup {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 80px;
  text-align: center;
}
.contentpopup img {
  display: inline-block;
}
.contentpopup .closebox {
  position: absolute;
  top: 0px;
  right: 0px;
}
.contentpopup .choices {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contentpopup .choices .choice {
  flex: 0 1 30%;
  height: 140px;
  border: 1px solid #fff;
  display: flex;
  align-content: center;
}
.contentpopup .choices .choice a {
  flex: 1 0 auto;
  font-family: "RheemSansBold", Helvetica, Arial, sans-serif;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  line-height: 140px;
}

.smallqr {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

#rapidspec-content .contentcontainer {
  position: relative;
  display: inline-block;
}
#rapidspec-content .contentcontainer .framewrapper {
  width: 53%;
  height: 71%;
  display: block;
  position: absolute;
  top: 50px;
  right: 20px;
  z-index: 1;
}
#rapidspec-content .contentcontainer .framewrapper video {
  max-width: 100%;
  height: auto;
}
#rapidspec-content .contentcontainer .backgroundimage {
  max-width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */