/*** BODY ***/
body {
    position: relative;  
}
main {
    overflow-x: hidden;
}

/*** HEADINGS ***/
h1 {
    font-size: 37px;  
}

/*** NAVBAR CIRCLES ***/
#navbar-circles {
    position: fixed;
    right: 1vw;
    top: 25vh;
    z-index: 500;
}
#navbar-circles > a {
    display: block;
    color: #fff;
    font-size: 20px;
    position: relative;
    top: -20px;
    left: -11px;
}
#navbar-circles > a,
#navbar-circles > a:link,
#navbar-circles > a:active,
#navbar-circles > a:focus {
    text-decoration: none;  
}
#navbar-circles ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#navbar-circles li {
    display: block;  
    float: none;
    margin-bottom: 20px;
}
#navbar-circles li a {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 8px;
    padding: 0;
    border: 2px solid #fff;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    display: block !important;
}
#navbar-circles a::before {
    color: #fff;
    position: absolute;
    left: -210px;
    top: -8px;
    text-align: right;
    float: right;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
    width: 200px;
    border-radius: 25px;
}
#navbar-circles a[href="#the-lowdown-video-wrapper"]::before {
    content: "The Lowdown";
}
#navbar-circles a[href="#MainContainer_C013_Col00"]::before {
    content: "Collection Video";
}
#navbar-circles a[href="#pattern-intro-wrapper"]::before {
    content: "Pattern Intro";
}
#navbar-circles a[href="#color-infusion-wrapper"]::before {
    content: "Color Infusion";
}
#navbar-circles a[href="#versatile-installs-wrapper"]::before {
    content: "Versatile Installs";
}
#navbar-circles a[href="#printworks-wrapper"]::before {
    content: "PrintWorks";
}
#navbar-circles a[href="#quick-ship-wrapper"]::before {
    content: "Quick Ship";
}
#navbar-circles a[href="#colorline-wrapper"]::before {
    content: "Colorline";
}
#navbar-circles a[href="#my-room-tool-wrapper"]::before {
    content: "My Room Tool";
}
#navbar-circles a[href="#shop-now-wrapper"]::before {
    content: "Shop Now";
}
#navbar-circles li > a.active,
#navbar-circles li > a.active:focus,
#navbar-circles li > a.active:hover {
    background: #fff;
}
#navbar-circles li > a.active::before,
#navbar-circles li > a.active:focus::before,
#navbar-circles li > a.active:hover::before {
    display: inline-block;
}
/*  >> Nav Circles - Dark Theme */
#navbar-circles.dark-theme > a {
    color: #000;  
}
#navbar-circles.dark-theme li a {
    border: 2px solid #000;
}
#navbar-circles.dark-theme a::before {
    color: #000;
}
#navbar-circles.dark-theme li > a.active,
#navbar-circles.dark-theme li > a.active:focus,
#navbar-circles.dark-theme li > a.active:hover {
    background: #000;
}
/* >> Nav Circles - Media Queries */
@media only screen and (max-width: 991px) {
    h1 {
        font-size: 30px;  
    }
    #navbar-circles {
        display: none;  
    }
}

/*** KEYFRAMES ***/
@keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-moz-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-webkit-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-o-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-ms-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}

/*** HOTSPOTS ***/
.hotspot {
    position: absolute;
}
.hotspot-anchor {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    border: 3px solid #fff;
    background-clip: content-box;
    transition: 0.3s;
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
.hotspot-content {
    background: #fff;
    width: 250px;
    padding: 15px;
    border-radius: 20px;
    position: absolute;
    top: -23px;
    left: 40px;
    display: none;
}
.hotspot-content p {
    color: #000;
    margin: 0;
}
/* >> Hotspot - Hover Styles */
.hotspot-anchor:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    -ms-animation: none;
    animation: none;
}
.hotspot-anchor:hover .hotspot-content {
    display: block;
}

/*** INTERACTIVE BROCHURE ANCHOR ***/
#interactive-brochure-anchor {
    display: inline-block;
    padding: 5px 20px 9px;
    position: fixed;
    top: 50vh;
    background: #fff;
    color: #000;
    font-weight: 700 !important;
    z-index: 2000;
    left: -146px;
    width: 325px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    font-size: 16px;
    line-height: 1.2em;
    text-decoration: none;
}
#interactive-brochure-anchor.dark-theme {
    background: #303030;
    color: #fff;
}
/* >> Interactive Brochure Anchor - Media Queries */
@media only screen and (max-width: 767px) {
    #interactive-brochure-anchor {
        top: auto;
        bottom: 0;
        left: 50%;
        -webkit-transform: rotate(0) translateX(-50%);
        -ms-transform: rotate(0) translateX(-50%);
        transform: rotate(0) translateX(-50%);
    }
    #interactive-brochure-anchor,
    #interactive-brochure-anchor.dark-theme {
        background: #000;
        color: #fff;
    }
}
@media only screen and (max-width: 500px) {
    #interactive-brochure-anchor {
        display: block;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*** THE LOWDOWN VIDEO  ***/
#the-lowdown-video-wrapper {
    background: #000; 
    position: relative;
    z-index: 2;
    padding: 0;
}
#the-lowdown-video-wrapper .video-container {
    position: relative;
    height: 100vh;
}
/* >> The Lowdown Video - Video */
#the-lowdown-video-wrapper .video-container video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}
/* >> The Lowdown Video - Text Overlay */
#the-lowdown-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 32vh;
    text-align: center;
    z-index: 10;
}
#the-lowdown-video-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}
#the-lowdown-video-wrapper .text-overlay img {
    width: 700px;
}
#the-lowdown-video-wrapper .text-overlay > span.expanded {
    margin-top: 0;
    margin-bottom: 25px;
}
#the-lowdown-video-wrapper .text-overlay > span.tagline {
    margin-top: 250px;
}
.embedded-video {
    margin-top: 0 !important;
}
div[title="Play Video"]::before {
    content: "WATCH COLLECTION VIDEO";
    width: 300px;
    display: block;
    text-align: center;
    color: #000;
    background: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    /* top: 290px; */
    top: var(--lowdownVideoButtonTop);
    right: 20.75vw;
}
div[title="Play Video"] svg {
    display: none;
}
#MainContainer_C013_Col00 .video-overlay {
    display: none;
}
#MainContainer_C013_Col00 picture img {
    height: 100vh !important;
}
#MainContainer_C013_Col00, #MainContainer_C013_Col00 section, #MainContainer_C013_Col00 iframe, #MainContainer_C013_Col00 picture img {
    height: 100vh !important;
}
.embedded-video .play-btn__text {
    visibility: hidden !important;
}
/* Media Queries */
@media only screen and (max-width: 767px) {
    #MainContainer_C013_Col00 picture img {
        content: url(/-/media/5a2f277d8e6944e09da80f2a82ca40be.ashx);
    }
}

/* >> The Lowdown Video - Media Queries */
/* >> The Lowdown Video - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #the-lowdown-wrapper .text-overlay {
        width: auto;
        max-width: 1000px;
    }
    #the-lowdown-video-wrapper .text-overlay img {
        width: 1000px;
        margin: 25px 0;
    }
    #the-lowdown-video-wrapper .text-overlay > span.expanded,
    #the-lowdown-video-wrapper .text-overlay > span {
        font-size: 35px;
    }
}
@media only screen and (max-width: 1200px) {
    div[title="Play Video"]::before {
        right: 18.75vw;
    }
}
@media only screen and (max-width: 1100px) {
    #the-lowdown-video-wrapper .text-overlay > span {
        font-size: 18px;
    }
    #the-lowdown-video-wrapper .text-overlay img {
        width: 600px;
    }
}
@media only screen and (max-width: 991px) {
    #the-lowdown-video-wrapper .text-overlay {
        top: 30vh;  
    }
    #the-lowdown-video-wrapper .text-overlay > span {
        letter-spacing: 5px;
    }
    #the-lowdown-video-wrapper .text-overlay > span:last-of-type {
        top: 70px;
    }      
    div[title="Play Video"]::before {
        right: 12.75vw;
    }
}
@media only screen and (max-width: 767px) {
    #the-lowdown-video-wrapper .text-overlay > span.expanded {
        font-size: 20px;
    }
    #the-lowdown-video-wrapper .text-overlay {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    #the-lowdown-video-wrapper .text-overlay img {
        width: 100%;
        padding: 0 10px;
    }
    div[title="Play Video"]::before {
        right: -17vw;
    }
}
@media only screen and (max-width: 600px) {
    #the-lowdown-video-wrapper .text-overlay > span.expanded {
        font-size: 18px;
    }
    #the-lowdown-video-wrapper .text-overlay > span {
        font-size: 17px;
        letter-spacing: 2px; 
    }
    #the-lowdown-video-wrapper .text-overlay > span:last-of-type {
        top: 30px;
    } 
}
/*iphone 13 pro max*/
@media only screen and (max-width: 428px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    div[title="Play Video"]::before {
        right: -25vw;
    }
}
/*iphone 6, 6s, 7, 8*/
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    div[title="Play Video"]::before {
        right: -27vw;
    }
}
/* >> The Lowdown Video - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #the-lowdown-video-wrapper .text-overlay > span.tagline {
        margin-top: 175px;
    }
    div[title="Play Video"]::before {
        right: -31vw;
    }
}

/*** PATTERN INTRO ***/
#pattern-intro-wrapper {
    position: relative;
    padding: 0;
    background: #fff;
}
/* >> Pattern Intro - Slideshow */
#pattern-intro-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#pattern-intro-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
}
#pattern-intro-slideshow-wrapper .slide .slide-top,
#pattern-intro-slideshow-wrapper .slide .slide-bottom {
    width: 100%;
    height: 50vh;
    display: block;
}
#pattern-intro-slideshow-wrapper .slide .slide-top {
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: bottom;
    position: relative;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom {
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left,
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right {
    height: 50vh;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left {
    width: 42vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right {
    width: 58vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/* >> Pattern Intro - Slide Content */
#pattern-intro-slide-1 .slide-top {
    background-image: url('/-/media/dae17f6d5971401a8b3cc82ed6aff327.ashx');
}
#pattern-intro-slide-2 .slide-top {
    background-image: url('/-/media/681ade570c3a44f5ad373f4bdb27b1f1.ashx');
}
#pattern-intro-slide-3 .slide-top {
    background-image: url('/-/media/e0018db332be4c6b90c090f91bc6ca7d.ashx');
}
#pattern-intro-slide-4 .slide-top {
    background-image: url('/-/media/38b5d310792e4d27a1fd4d7b98f53120.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1,
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p {
    width: 400px;
    color: #fff;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1 {
    font-size: 35px;
    font-weight: 600 !important;
    line-height: 1.1em;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p.pager-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 7px;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager {
    width: 400px;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button {
    border: none;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button:first-of-type {
    background-image: url('/-/media/2515cd8b02674c65b6cbc5694da38fbf.ashx');
    margin: 0 5px 0 0;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button:nth-of-type(2) {
    background-image: url('/-/media/d217f4ed3b4c40688c365b5b50494dd0.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button:nth-of-type(3) {
    background-image: url('/-/media/f750cfb6dde640c78ee638a020f68b3a.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button:last-of-type {
    background-image: url('/-/media/aab115e90ff84a93a250c78b51341733.ashx');
    margin: 0 0 0 5px;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button.active:first-of-type {
    background-image: url('/-/media/382613b5feb14ecfb7f8248db67d7896.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button.active:nth-of-type(2) {
    background-image: url('/-/media/758431eb68df4e5d8167765c1f1dfca3.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button.active:nth-of-type(3) {
    background-image: url('/-/media/b79ddf3f824e4ceb8cb1cbf0aa237f14.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button.active:last-of-type {
    background-image: url('/-/media/68c920b800ba480fa1fdf0ac22c14e8b.ashx');
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right img.plank {
    width: 70px;
    margin: 0 5px;
}
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right .plus-sign,
#pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right .equal-sign {
    color: #fff;
    font-weight: 500 !important;
    font-size: 40px;
    margin: 0 5px;
}
/* >> Pattern Intro - Hotspots */
#pattern-intro-hotspot-1 {
    top: 38%;
    left: 16%;
}
#pattern-intro-hotspot-2 {
    bottom: 21%;
    left: 30%;
}
#pattern-intro-hotspot-3 {
    top: 38%;
    right: 20%;
}
#pattern-intro-hotspot-4 {
    bottom: 20%;
    left: 24%;
}
#pattern-intro-hotspot-5 {
    top: 22%;
    left: 38%;
}
#pattern-intro-hotspot-6 {
    bottom: 30%;
    right: 25%;
}
#pattern-intro-hotspot-7 {
    bottom: 39%;
    left: 9%;
}
#pattern-intro-hotspot-8 {
    top: 38%;
    left: 50%;
}
#pattern-intro-hotspot-9 {
    bottom: 39%;
    right: 28%;
}
#pattern-intro-hotspot-10 {
    bottom: 38%;
    left: 36%;
}
#pattern-intro-hotspot-11 {
    bottom: 20%;
    right: 33%;
}
/* >> Pattern Intro - Media Queries */
@media only screen and (max-width: 1600px) {
    #pattern-intro-hotspot-11 {
        right: 28%;
    }
}
@media only screen and (max-width: 1350px) {
    #pattern-intro-hotspot-6 {
        right: 19%;
    }
    #pattern-intro-hotspot-7 {
        bottom: 26%;
    }
}
@media only screen and (max-width: 1200px) {
    #pattern-intro-hotspot-3 {
        right: 15%;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right img.plank {
        width: 60px;
    }
    #pattern-intro-hotspot-11 {
        right: 23%;
    }
}
@media only screen and (max-width: 1100px) {
    #pattern-intro-slide-2 .slide-top {
        background-position-x: 65% !important;
    }
    #pattern-intro-slideshow-wrapper .hotspot {
        display: none;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left {
        width: 100vw;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p {
        width: 550px;
        text-align: center;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right {
        display: none;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager {
        margin-top: 10px;
        width: 250px;
    }
}
@media only screen and (max-width: 800px) {
    #pattern-intro-slide-2 .slide-top {
        background-position-x: 70% !important;
    }
    #pattern-intro-slide-3 .slide-top {
        background-position-x: 30% !important;
    }
    #pattern-intro-slide-4 .slide-top {
        background-position-x: 70% !important;
    }
}
@media only screen and (max-width: 767px) {
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 500px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 78vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-top {
        height: 38vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right {
        height: 40vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1 {
        font-size: 25px;
    }
    #pattern-intro-slide-1 .slide-top {
        background-position-x: 43% !important;
    }
    #pattern-intro-slide-2 .slide-top {
        background-position-x: 80% !important;
    }
    #pattern-intro-slide-3 .slide-top {
        background-position-x: 35% !important;
    }
    #pattern-intro-slide-4 .slide-top {
        background-position-x: 73% !important;
    }
}
/* >> Pattern Intro - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p {
        width: 550px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1 {
        font-size: 45px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p {
        font-size: 25px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left p.pager-title {
        font-size: 22px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager {
        width: 550px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left .slideshow-pager button {
        width: 90px;
        height: 90px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right img.plank {
        width: 110px;
        margin: 0 12px;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right .plus-sign,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right .equal-sign {
        font-size: 50px;
    }
}
/* >> Pattern Intro - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 81vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right {
        height: 43vh;
    }
}
/* >> Pattern Intro - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 88vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-right {
        height: 50vh;
    }
}
/* >> Pattern Intro - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 98vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom,
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left {
        height: 60vh;
    }
    #pattern-intro-slideshow-wrapper .slide .slide-bottom .slide-bottom-left h1 {
        font-size: 20px;
    }
}

/*** COLOR INFUSION ***/
#color-infusion-wrapper {
    position: relative;
    padding: 0;
    background: #fff;
}
/* >> Color Infusion - Slideshow */
#color-infusion-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#color-infusion-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#color-infusion-slide-1 {
    background-image: url('/-/media/9fed2bc0eab946eca5b9290d4b30d040.ashx');
}
#color-infusion-slide-2 {
    background-image: url('/-/media/8f5b1f73ef6f44a7a8e35a6bc73b9ea8.ashx');
}
#color-infusion-slide-3 {
    background-image: url('/-/media/15b8f182d118447dbe928d8e0d099a13.ashx');
}
#color-infusion-slide-4 {
    background-image: url('/-/media/632eaac2cf6d47a38ba5906fe97e4bb6.ashx');
}
#color-infusion-slideshow-wrapper .slide-content {
    width: 1100px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#color-infusion-slideshow-wrapper .slide-content h1,
#color-infusion-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}
#color-infusion-slideshow-wrapper .slide-content p {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
}
#color-infusion-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: 600 !important;
    letter-spacing: 3px;
    font-size: 35px;
    text-transform: none;
    margin-bottom: 10px;
}
/* >> Color Infusion - Hotspots */
#color-infusion-hotspot-1 {
    top: 50%;
    left: 30%;
}
#color-infusion-hotspot-2 {
    bottom: 40%;
    right: 45%;
}
#color-infusion-hotspot-3 {
    top: 43%;
    right: 22%;
}
#color-infusion-hotspot-4 {
    bottom: 35%;
    left: 25%;
}
#color-infusion-hotspot-5 {
    top: 6%;
    left: 39%;
}
#color-infusion-hotspot-6 {
    top: 20%;
    left: 7%;
}
#color-infusion-hotspot-7 {
    bottom: 43%;
    right: 43%;
}
#color-infusion-hotspot-8 {
    top: 40%;
    right: 30%;
}
/* >> Color Infusion - Pager */
#color-infusion-slideshow-wrapper .cycle-pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;  
    position: absolute;
    bottom: 50px;
    z-index: 500;
    width: 365px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#color-infusion-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #aaa;
}
#color-infusion-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #eee;  
}
/* >> Color Infusion - Slideshow Controls */
#color-infusion-outer-wrapper {
    position: relative;  
}
#color-infusion-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 29vh;
    width: 100%;
    z-index: 500;
}
#color-infusion-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
}
#color-infusion-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#color-infusion-slideshow-controls button:focus {
    outline: none;
}
/* >> Color Infusion - Mobile Content */
#color-infusion-mobile-content {
    background: #000;
    display: none;
    position: relative;
}
#color-infusion-mobile-content [class^="col"] {
    min-height: 30vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px; 
}
#color-infusion-mobile-content h1,
#color-infusion-mobile-content p {
    color: #fff;
    text-align: center;
}
#color-infusion-mobile-content h1 {
    font-weight: 600 !important;
    letter-spacing: 4px;
    font-size: 34px;
    color: #fff;
}
#color-infusion-mobile-content p {
    font-size: 15px;
}
/* >> Color Infusion - Media Queries */
@media only screen and (max-width: 1450px) {
    #color-infusion-slideshow-wrapper .slide-content {
        max-width: 700px;
    }
}
@media only screen and (max-width: 1100px) {
    #color-infusion-slideshow-wrapper .slide-content {
        width: 600px;
    }
}
@media only screen and (max-width: 991px) {
    #color-infusion-slideshow-wrapper .cycle-slideshow,
    #color-infusion-slideshow-wrapper .slide {
        height: auto;
        min-height: 100vh;
    }
    #color-infusion-slideshow-wrapper .slide-content {
        height: 42vh;
        width: 100%;
        padding: 30px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: 0;
    }
    #color-infusion-slideshow-wrapper .slide-content h1 {
        font-size: 32px;
        margin-top: 40px;
    }    
    #color-infusion-slideshow-wrapper .slide-content p {
        font-size: 17px;
    }
    #color-infusion-slideshow-wrapper .slide-content a.mlkn-button {
        border: 2px solid #333;
    }
    #color-infusion-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #color-infusion-slideshow-wrapper .hotspot {
        display: none;
    }
    #color-infusion-slideshow-controls {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #color-infusion-slideshow-wrapper .cycle-slideshow,
    #color-infusion-slideshow-wrapper .slide {
        min-height: 50vh;
    }
    #color-infusion-slideshow-wrapper .cycle-slideshow {
        height: 50vh;
    }
    #color-infusion-slideshow-wrapper .slide-content {
        display: none;
    }
    #color-infusion-mobile-content {
        display: block;
    }
    #color-infusion-slideshow-controls {
        bottom: 30px;
        margin: 20px 0 0;
    }
}
@media only screen and (max-width: 500px) {
    #color-infusion-mobile-content h1 {
        font-size: 21px;
    }
    #color-infusion-mobile-content p {
        font-size: 16px;
    }
}
/* >> Color Infusion - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #color-infusion-slideshow-wrapper .slide-content h1 {
        font-size: 59px;
    }    
    #color-infusion-slideshow-wrapper .slide-content p {
        font-size: 28px;
    }
}
/* >> Color Infusion - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #color-infusion-mobile-content h1 {
        font-size: 16px;
    }
}

/*** VERSATILE INSTALLS ***/
#versatile-installs-wrapper {
    position: relative;
    padding: 0;
    background: #fff;
}
/* >> Versatile Installs - Slideshow */
#versatile-installs-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#versatile-installs-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#versatile-installs-slide-1 {
    background-image: url('/-/media/50294590472a49248422dd885aef5a66.ashx');
}
#versatile-installs-slide-2 {
    background-image: url('/-/media/8e09657c17514297b9b023755d982ac1.ashx');
}
#versatile-installs-slide-3 {
    background-image: url('/-/media/1df07071e0ea43ec9885e49ae67e5f47.ashx');
}
#versatile-installs-slide-4 {
    background-image: url('/-/media/e0336de374434c20898ea3fbc7d8eb52.ashx');
}
#versatile-installs-slideshow-wrapper .slide-content {
    width: 1100px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#versatile-installs-slideshow-wrapper .slide-content h1,
#versatile-installs-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}
#versatile-installs-slideshow-wrapper .slide-content p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}
#versatile-installs-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: 600 !important;
    letter-spacing: 3px;
    font-size: 35px;
    text-transform: none;
    margin-bottom: 10px;
}
/* >> Versatile Installs - Hotspots */
#versatile-installs-hotspot-1 {
    bottom: 45%;
    left: 32%;
}
#versatile-installs-hotspot-2 {
    bottom: 30%;
    left: 43%;
}
#versatile-installs-hotspot-3 {
    top: 20%;
    left: 46%;
}
#versatile-installs-hotspot-4 {
    bottom: 40%;
    left: 20%;
}
#versatile-installs-hotspot-5 {
    bottom: 50%;
    right: 36%;
}
#versatile-installs-hotspot-6 {
    bottom: 41%;
    left: 18%;
}
/* >> Versatile Installs - Pager */
#versatile-installs-slideshow-wrapper .cycle-pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;  
    position: absolute;
    bottom: 50px;
    z-index: 500;
    width: 365px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#versatile-installs-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #aaa;
}
#versatile-installs-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #eee;  
}
/* >> Versatile Installs - Slideshow Controls */
#versatile-installs-outer-wrapper {
    position: relative;  
}
#versatile-installs-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 29vh;
    width: 100%;
    z-index: 500;
}
#versatile-installs-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
}
#versatile-installs-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#versatile-installs-slideshow-controls button:focus {
    outline: none;
}
/* >> Versatile Installs - Mobile Content */
#versatile-installs-mobile-content {
    background: #000;
    display: none;
    position: relative;
}
#versatile-installs-mobile-content [class^="col"] {
    min-height: 30vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px; 
}
#versatile-installs-mobile-content h1,
#versatile-installs-mobile-content p {
    color: #fff;
    text-align: center;
}
#versatile-installs-mobile-content h1 {
    font-weight: 600 !important;
    letter-spacing: 4px;
    font-size: 31px;
    color: #fff;
}
#versatile-installs-mobile-content p {
    font-size: 16px;
}
/* >> Versatile Installs - Media Queries */
@media only screen and (max-width: 1450px) {
    #versatile-installs-slideshow-wrapper .slide-content {
        max-width: 700px;
    }
}
@media only screen and (max-width: 1100px) {
    #versatile-installs-slideshow-wrapper .slide-content {
        width: 600px;
    }
}
@media only screen and (max-width: 991px) {
    #versatile-installs-slideshow-wrapper .cycle-slideshow,
    #versatile-installs-slideshow-wrapper .slide {
        height: auto;
        min-height: 100vh;
    }
    #versatile-installs-slideshow-wrapper .slide-content {
        height: 42vh;
        width: 100%;
        padding: 30px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: 0;
    }
    #versatile-installs-slideshow-wrapper .slide-content h1 {
        font-size: 30px;
        margin-top: 40px;
    }    
    #versatile-installs-slideshow-wrapper .slide-content p {
        font-size: 16px;
    }
    #versatile-installs-slideshow-wrapper .slide-content a.mlkn-button {
        border: 2px solid #333;
    }
    #versatile-installs-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #versatile-installs-slideshow-wrapper .hotspot {
        display: none;
    }
    #versatile-installs-slideshow-controls {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #versatile-installs-slideshow-wrapper .cycle-slideshow,
    #versatile-installs-slideshow-wrapper .slide {
        min-height: 50vh;
    }
    #versatile-installs-slideshow-wrapper .cycle-slideshow {
        height: 50vh;
    }
    #versatile-installs-slideshow-wrapper .slide-content {
        display: none;
    }
    #versatile-installs-mobile-content {
        display: block;
    }
    #versatile-installs-slideshow-controls {
        bottom: 30px;
        margin: 20px 0 0;
    }
}
@media only screen and (max-width: 500px) {
    #versatile-installs-mobile-content h1 {
        font-size: 25px;
    }
    #versatile-installs-mobile-content p {
        font-size: 15px;
    }
}
/* >> Versatile Installs - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #versatile-installs-slideshow-wrapper .slide-content h1 {
        font-size: 55px;
    }    
    #versatile-installs-slideshow-wrapper .slide-content p {
        font-size: 25px;
    }
}
/* >> Versatile Installs - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #versatile-installs-mobile-content h1 {
        font-size: 28px;
    }
}

/*** PRINTWORKS ***/
#printworks-wrapper {
    position: relative;
    padding: 0;
}
#printworks-outer-wrapper {
    position: relative;
}
/* >> PrintWorks - Slideshow */
#printworks-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#printworks-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
}
#printworks-slideshow-wrapper .slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/* >> PrintWorks - Slide Content */
#printworks-slideshow-wrapper .slide .left-content,
#printworks-slideshow-wrapper .slide .right-content {
    height: 100vh;
}
#printworks-slideshow-wrapper .slide .right-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 55vw;
    order: 2;
    position: relative;
}
#printworks-slideshow-wrapper .slide .left-content {
    background: #000;
    width: 45vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    order: 1;
}
#printworks-slide-1 .right-content {
    background-image: url('/-/media/c27f86f825434f70807c4b5a7e4f064c.ashx');
}
#printworks-slide-2 .right-content {
    background-image: url('/-/media/80e8f58a4b494769800f708a70a9c36d.ashx');
}
#printworks-slide-3 .right-content {
    background-image: url('/-/media/c22329aa22e142149ed8b78c58f3f577.ashx');
}
#printworks-slideshow-wrapper .slide .left-content > div {
    max-width: 500px;
    margin: 0 auto;
    margin-right: 175px;
}
#printworks-slideshow-wrapper .slide .left-content h1 {
    font-size: 35px;
    font-weight: 600 !important;
    color: #fff;
    letter-spacing: 4px;
    text-align: center;
}
#printworks-slideshow-wrapper .slide .left-content p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5em;
    text-align: center;
    padding-bottom: 20px;
}
#printworks-slideshow-wrapper .slide .left-content a.mlkn-button {
    display: block;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    font-weight: bold !important;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 30px;
    max-width: 400px;
}
/* >> PrintWorks - Hotspots */
#printworks-hotspot-1 {
    bottom: 10%;
    left: 20%;
}
#printworks-hotspot-2 {
    bottom: 20%;
    right: 45%;
}
#printworks-hotspot-3 {
    bottom: 18%;
    left: 20%;
}
#printworks-hotspot-4 {
    bottom: 18%;
    left: 20%;
}
/* >> PrintWorks - Pager */
#printworks-slideshow-wrapper .slideshow-pager {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#printworks-slideshow-wrapper .slideshow-pager button {
    width: 75px;
    height: 75px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 10px;
    border: none;
}
#printworks-slideshow-wrapper .slideshow-pager button:first-of-type {
    background-image: url('/-/media/1958c4b402434b8ba44e681607a5a248.ashx');
}
#printworks-slideshow-wrapper .slideshow-pager button:nth-of-type(2) {
    background-image: url('/-/media/1a715e2359bb45258ee0e03eb6ae13c2.ashx');
}
#printworks-slideshow-wrapper .slideshow-pager button:last-of-type {
    background-image: url('/-/media/f5112cabe9484022b28e9e3e8e498f8d.ashx');
}
#printworks-slideshow-wrapper .slideshow-pager button.active:first-of-type {
    background-image: url('/-/media/1c4d364158e642d4ac9ee43d20a134ac.ashx');
}
#printworks-slideshow-wrapper .slideshow-pager button.active:nth-of-type(2) {
    background-image: url('/-/media/ab2e1e9e8ef3453480a2213a2a3606b7.ashx');
}
#printworks-slideshow-wrapper .slideshow-pager button.active:last-of-type {
    background-image: url('/-/media/b32888bd40e940fbb621e1049220e9b7.ashx');
}
/* >> PrintWorks - Slideshow Controls */
#printworks-slideshow-controls {
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none;
}
#printworks-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
}
#printworks-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#printworks-slideshow-controls button:focus {
    outline: none;
}
/* >> PrintWorks - Media Queries */
@media only screen and (max-width: 1550px) {
    #printworks-slideshow-wrapper .slide .left-content > div {
        max-width: 400px;
        margin: 0 0 0 100px;
    }
}
@media only screen and (max-width: 1300px) {
    #printworks-slideshow-wrapper .cycle-slideshow {
        height: auto;
        min-height: 100vh;
    }
    #printworks-slideshow-wrapper .slide .left-content,
    #printworks-slideshow-wrapper .slide .right-content {
        width: 100%;
    }
    #printworks-slideshow-wrapper .slide .right-content {
        height: 50vh;
        order: 1;
    }
    #printworks-slideshow-wrapper .slide .left-content {
        min-height: 50vh;
        height: auto;
        padding: 30px 15px;
        order: 2;
    }
    #printworks-slideshow-wrapper .slide > div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #printworks-slideshow-wrapper .slide .right-content {
        background-position-x: center;
        background-position-y: 80%;
    }
    #printworks-slideshow-wrapper .slide .left-content > div {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    #printworks-slideshow-wrapper .slide .left-content p {
        font-size: 18px;
    }
    #printworks-slideshow-wrapper .slideshow-pager {
        display: none;
    }
    #printworks-slideshow-controls {
        display: block;
    }
    #printworks-hotspot-2 {
        bottom: 40%;
        right: 30%;
    }
}
@media only screen and (max-width: 991px) {
    #printworks-slideshow-wrapper .slide .right-content {
        background-position-y: bottom;
    }
    #printworks-slideshow-wrapper .hotspot {
        display: none;
    }
    #printworks-slideshow-wrapper .slide .left-content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    #printworks-slideshow-wrapper .slide .left-content {
        height: 50vh;
    }
    #printworks-slideshow-wrapper .slide .left-content a.mlkn-button {
        font-size: 15px;
    }
}
@media only screen and (max-width: 500px) {
    #printworks-slideshow-wrapper .slide .right-content {
        height: 52vh;
    }
    #printworks-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
    #printworks-slideshow-wrapper .slide .left-content a.mlkn-button {
        max-width: none;
        width: 100%;
        margin: 0 0 30px;
    }
}
/* >> PrintWorks - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #printworks-slideshow-wrapper .slide .left-content > div {
        max-width: 700px;
    }
    #printworks-slideshow-wrapper .slide .left-content h1 {
        font-size: 55px;
    }
    #printworks-slideshow-wrapper .slide .left-content p {
        font-size: 26px;
    }
    #printworks-slideshow-wrapper .slide .left-content a.mlkn-button {
        font-size: 20px;
    }
    #printworks-slideshow-wrapper .slideshow-pager button {
        width: 100px;
        height: 100px;
    }
}
/* >> PrintWorks - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #printworks-slideshow-wrapper .slide .right-content {
        height: 53vh;
    }
}
/* >> PrintWorks - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #printworks-slideshow-wrapper .slide .right-content,
    #printworks-slideshow-wrapper .slide .left-content {
        height: 55vh;
    }
}
/* >> PrintWorks - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #printworks-slideshow-wrapper .slide .right-content {
        height: 57vh;
    }
    #printworks-slideshow-wrapper .slide .left-content {
        height: 71vh;
    }
    #printworks-slideshow-controls {
        width: 168px;
    }
}

/*** QUICK SHIP ***/
#quick-ship-wrapper {
    min-height: 100vh;
    position: relative;
    background: #000;
    padding-left: 0;
    padding-right: 0;
}
/* >> Quick Ship - Video Container */
#quick-ship-wrapper .slideshow-container {
    height: 75vh;
    width: 100%;
    position: relative;
}
#quick-ship-wrapper .video-container video {
    width: 100%;
    height: 75vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
/* >> Quick Ship - Text Container */
#quick-ship-wrapper .container {
    height: 25vh;
}
#quick-ship-wrapper .container .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 25vh;
    padding: 15px !important;
}
#quick-ship-wrapper .container h1 {
    color: #fff;
    text-align: center;
    font-size: 35px;
    margin-bottom: 7px;
    font-weight: 600 !important;
}
#quick-ship-wrapper .container p {
    color: #fff;
    text-align: center;
    font-size: 16px;
}
#quick-ship-wrapper .container a.mlkn-button {
    border: 1px solid #fff;
    color: #000;
    font-weight: 600 !important;
    letter-spacing: 1px;
    background: #fff;
    width: 225px;
    display: block;
    text-align: center;
    margin: 0 auto;
}
/* >> Quick Ship - Media Queries */
@media only screen and (max-width: 500px) {
    #quick-ship-wrapper .container h1 {
        font-size: 30px;
    }
    #quick-ship-wrapper .container p {
        font-size: 15px;
    }
    #quick-ship-wrapper .container a.mlkn-button {
        width: 100%;
        font-size: 15px;
    }
}
/* >> Quick Ship - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #quick-ship-wrapper .container h1 {
        font-size: 50px;
    }
    #quick-ship-wrapper .container p {
        font-size: 25px;
    }
    #quick-ship-wrapper .container a.mlkn-button {
        width: 400px;
        font-size: 20px;
    }
}

/* >> Quick Ship - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #quick-ship-wrapper {
        height: 105vh;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #quick-ship-wrapper {
        min-height: 105vh;
    }
    }
/* >> Quick Ship - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #quick-ship-wrapper {
        height: 111vh;
    }
}
/* >> Quick Ship - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #quick-ship-wrapper {
        height: 117vh;
    }
    #quick-ship-wrapper .container p {
        font-size: 14px;
    }
}

/*** COLORLINE ***/
#colorline-wrapper {
    position: relative;
}
#colorline-wrapper .container {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;    
}
/* >> Colorline - Top Content */
#colorline-wrapper .top-content h1,
#colorline-wrapper .top-content h2,
#colorline-wrapper .top-content p {
    text-align: center;  
}
#colorline-wrapper .top-content h1 {
    text-transform: none;
    font-size: 35px;
    font-weight: 600 !important;
    letter-spacing: 4px;
    margin-bottom: 0;
    color: #555;
}
#colorline-wrapper .top-content h2 {
    margin: 12px 0;
    font-weight: 500 !important;
}
#colorline-wrapper .top-content p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 15px;
}
#colorline-wrapper a.mlkn-button {
    display: block;
    margin: 0 auto;
    width: 300px;
    text-align: center;
    background: #fff;
    border: 2px solid #333;
    font-weight: 600 !important;
    color: #333;
}
#colorline-wrapper .bottom-content {
    margin-top: 50px;  
}
/* >> Colorline - Slideshow */
#colorline-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
}
#colorline-slideshow-wrapper .slide {
    width: 100%;  
    position: relative;
}
#colorline-slideshow-wrapper .slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#colorline-slideshow-wrapper span.title {
    display: block;
    margin: 10px 0;
    text-align: center;
    font-weight: 600 !important;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
}
#colorline-slideshow-wrapper .color-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#colorline-slideshow-wrapper .color-tile {
    display: inline-block;
    width: 80px;
    margin: 0 10px;
}
#colorline-slideshow-wrapper .color-tile a {
    text-decoration: none;
}
#colorline-slideshow-wrapper .color-tile img {
    width: 80px;
}
#colorline-slideshow-wrapper .color-tile p {
    color: #000;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1.2em;
    margin: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
#colorline-slideshow-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
#colorline-slideshow-wrapper .slide .plus,
#colorline-slideshow-wrapper .slide .equals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#colorline-slideshow-wrapper .slide .plus-sign,
#colorline-slideshow-wrapper .slide .equal-sign {
    color: #000;
    font-weight: 500 !important;
    font-size: 40px;
    margin: 0 5px;
    position: relative;
    top: 15px;
}
/* >> Colorline - Pager */
#colorline-slideshow-wrapper .cycle-pager {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
      width: 850px;
      margin: 50px auto 0;
}
#colorline-slideshow-wrapper .cycle-pager a {
    width: 50px;
    height: 50px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#colorline-slideshow-wrapper .cycle-pager a:first-of-type {
    background-image: url('/-/media/4ea7e350531a4aa0a42b285de4abbbe8.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(2) {
    background-image: url('/-/media/cb624023642f41df9e57d9173df807ce.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(3) {
    background-image: url('/-/media/a71f6a2175a9461eb75347f91e1e13cc.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(4) {
    background-image: url('/-/media/fde4c84840624e65ac47bd34f1ca4183.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(5) {
    background-image: url('/-/media/5ec5099c20c141b4a78839941847d9ee.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(6) {
    background-image: url('/-/media/0052ad2d6df84c9ea913050ef85d7da7.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(7) {
    background-image: url('/-/media/99b72781de734fcea53a8a093d9605f0.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(8) {
    background-image: url('/-/media/92e707e4bd144f87a86ffa8f57b5a6ec.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(9) {
    background-image: url('/-/media/b9cab1ff29a245bdb800ba99fe998fc6.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(10) {
    background-image: url('/-/media/0b09d70b220944e2b79df0b98f95528c.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(11) {
    background-image: url('/-/media/9cfe08b9483c4b07b8c47c6a4520ba05.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(12) {
    background-image: url('/-/media/43954d6bd26a43829d36385619cbd3d9.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(13) {
    background-image: url('/-/media/69982eeff4d248b7b6fa1f5a966fabe0.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:nth-of-type(14) {
    background-image: url('/-/media/806c461352d44531b28a12eaf985d380.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a:last-of-type {
    background-image: url('/-/media/e7b14d5e4c8645e69bd57d25e172ad2a.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:first-of-type {
    background-image: url('/-/media/9de0094659624c66935ec083e8d1bbc5.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(2) {
    background-image: url('/-/media/24d045fd24c84581836bf3a40ae92c00.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(3) {
    background-image: url('/-/media/084b1fd00ff14b61975c3a5e8aa1c9ec.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(4) {
    background-image: url('/-/media/a005b05458254c2dbaf840f45abf7505.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(5) {
    background-image: url('/-/media/e168b5b48dfa4fa58db477ab138bf4c9.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(6) {
    background-image: url('/-/media/789bda8f6b674619af9d51795749f06b.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(7) {
    background-image: url('/-/media/3e86f99548b74d6da23d6a673dec1c23.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(8) {
    background-image: url('/-/media/089086f2798f479b8c8f2badb837a240.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(9) {
    background-image: url('/-/media/d97f9d5b73cb46c1b4771c1216a71e0a.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(10) {
    background-image: url('/-/media/d8acfe6ef1d043d8b4823cebbf4195af.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(11) {
    background-image: url('/-/media/a3c9cd43d3ba4f2b93d00d058568d8c5.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(12) {
    background-image: url('/-/media/158a567bacae43bf8f3f6fc8eab093b4.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(13) {
    background-image: url('/-/media/87735c8417c7418d849f144c811d3256.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:nth-of-type(14) {
    background-image: url('/-/media/b826d7c0e05542d98576097f5887b4bf.ashx');
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active:last-of-type {
    background-image: url('/-/media/480c756ea5504392b85b795fd6642392.ashx');
}
/* >> Colorline - Slideshow Controls */
#colorline-slideshow-controls {
    margin: 50px 0 0;
    text-align: center;
    display: none;
}
#colorline-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #333;
    background: #fff;
    padding: 15px 23px;
    font-size: 30px;
    color: #333;
}
#colorline-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#colorline-slideshow-controls button:focus {
    outline: none;
}
/* >> Colorline - Media Queries */
@media only screen and (max-width: 1200px) {
    #colorline-slideshow-wrapper .color-tile,
    #colorline-slideshow-wrapper .color-tile img {
        width: 70px;
    }
    #colorline-slideshow-wrapper .color-tile p {
        display: none;
    }
    #colorline-slideshow-wrapper .cycle-pager {
        width: 720px;
    }
    #colorline-slideshow-wrapper .cycle-pager a {
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 991px) {
    #colorline-wrapper .top-content h1 {
        margin-top: 50px;
    }
}
@media only screen and (max-width: 800px) {
    #colorline-slideshow-wrapper .color-tile,
    #colorline-slideshow-wrapper .color-tile img {
        width: 50px;
    }
    #colorline-slideshow-wrapper .slide .plus-sign,
    #colorline-slideshow-wrapper .slide .equal-sign {
        font-size: 25px;
    }
    #colorline-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #colorline-slideshow-controls {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #colorline-wrapper .bottom-content {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 500px) {
    #colorline-wrapper .container {
        height: 129vh;
    }
    #colorline-wrapper .top-content,
    #colorline-wrapper .bottom-content {
        position: relative;
        top: 2vh;
    }
    #colorline-wrapper .bottom-content {
        margin-top: 170px;
    }
    #colorline-wrapper .top-content h1 {
        margin-top: 0;
        font-size: 28px;
    }
    #colorline-wrapper .top-content h2 {
        font-size: 16px;
    }
    #colorline-wrapper a.mlkn-button {
        width: auto;
    }
    #colorline-slideshow-wrapper .slide > div {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        position: relative;
        left: 22px;
    }
    #colorline-slideshow-wrapper span.title {
        font-size: 13px;
    }
    #colorline-slideshow-wrapper .color-tile,
    #colorline-slideshow-wrapper .color-tile img {
        width: 65px;
    }
    #colorline-slideshow-wrapper .color-tile {
        margin: 0 5px;
    }
    #colorline-slideshow-wrapper .slide .plus-sign,
    #colorline-slideshow-wrapper .slide .equal-sign {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    #colorline-slideshow-controls {
        margin: 170px 0 0;
    }
}
/* >> Colorline - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #colorline-wrapper .top-content p {
        max-width: 900px;
    }
    #colorline-wrapper .top-content h1 {
        font-size: 50px;
    }
    #colorline-wrapper .top-content h2 {
        font-size: 27px;
    }
    #colorline-wrapper .top-content p {
        font-size: 25px;
    }
    #colorline-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;
    }
    #colorline-slideshow-wrapper span.title {
        font-size: 22px;
    }
    #colorline-slideshow-wrapper .color-tile,
    #colorline-slideshow-wrapper .color-tile img {
        width: 120px;
    }
    #colorline-slideshow-wrapper .color-tile {
        margin: 0 15px;
    }
    #colorline-slideshow-wrapper .color-tile p {
        font-size: 15px;
    }
    #colorline-slideshow-wrapper .slide .plus-sign,
    #colorline-slideshow-wrapper .slide .equal-sign {
        font-size: 55px;
    }
    #colorline-slideshow-wrapper .cycle-pager {
        width: 100%;
    }
    #colorline-slideshow-wrapper .cycle-pager a {
        width: 70px;
        height: 70px;
    }
}
/* >> Colorline - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #colorline-wrapper .container {
        height: 134vh;
    }
    #colorline-wrapper .top-content h2 {
        font-size: 18px;
    }
    #colorline-wrapper .bottom-content {
        margin-bottom: 75px;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #colorline-wrapper .container {
        height: 132vh;
    }
}
/* >> Colorline - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #colorline-wrapper .container {
        height: 160vh;
    }
    #colorline-wrapper .top-content h2 {
        font-size: 16px;
    }
}
/* >> Colorline - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #colorline-wrapper .container {
        height: 180vh;
    }
    #colorline-wrapper .top-content h1 {
        margin-top: 30px;
    }
    #colorline-wrapper .top-content h2 {
        font-size: 13px;
    }
    #colorline-wrapper .top-content p {
        font-size: 15px;
    }
    #colorline-slideshow-wrapper .color-tile,
    #colorline-slideshow-wrapper .color-tile img {
        width: 55px;
    }
}

/*** MY ROOM TOOL ***/
#my-room-tool-wrapper {
    height: 100vh;
    background-image: url('/-/media/b6e43ad1106740fa8f1cf77f9c8c4d92.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
}
#my-room-tool-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK */
    height: 1px;
    /* -- END IE 11 HACK */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#my-room-tool-wrapper .row  > div {
    margin-bottom: 10vh;
}
/* >> My Room Tool - Content */
#my-room-tool-wrapper b,
#my-room-tool-wrapper h1,
#my-room-tool-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}
#my-room-tool-wrapper h1 {
    text-transform: none;  
}
#my-room-tool-wrapper b {
    font-size: 30px;
    font-weight: 600 !important;
}
#my-room-tool-wrapper h1 {
    font-size: 45px;  
    margin: 20px 0;
    letter-spacing: 4px;
    font-weight: 300 !important;
}
#my-room-tool-wrapper p {
    font-size: 18px;
}
#my-room-tool-wrapper .buttons {
    text-align: center;  
    margin-top: 40px;
}
#my-room-tool-wrapper a.mlkn-button {
    width: 300px;
    background: #fff;
    border: 2px solid #fff;
    text-align: center;
    color: #000;
    font-weight: 600 !important;
    letter-spacing: 1px;
}
#my-room-tool-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
}  
/* >> My Room Tool - Media Queries */
@media only screen and (max-width: 1399px) {
    #my-room-tool-wrapper h1 {
        font-size: 40px;  
    }
}
@media only screen and (max-width: 1199px) {
    #my-room-tool-wrapper h1 {
        font-size: 30px;  
    }
}
@media only screen and (max-width: 1099px) {
    #my-room-tool-wrapper a.mlkn-button {
        width: 260px;  
    }
}
@media only screen and (max-width: 991px) {
    #my-room-tool-wrapper b {
        font-size: 20px;  
    }
    #my-room-tool-wrapper p {
        font-size: 16px;
    }
    #my-room-tool-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
        width: 300px;
    }
}
@media only screen and (max-width: 767px) {
    #my-room-tool-wrapper h1 {
        font-size: 35px;  
    }
}
@media only screen and (max-width: 500px) {
    #my-room-tool-wrapper {
        background-position-x: 25% !important;
        height: 60vh;
    }
    #my-room-tool-wrapper .row {
        min-height: 60vh;
    }
    #my-room-tool-wrapper .row  > div {
        margin-bottom: 3vh;
    }    
    #my-room-tool-wrapper h1 {
        font-size: 23px;
        font-weight: 500 !important;
        margin: 10px 0;
    }
    #my-room-tool-wrapper p {
        font-weight: 500 !important;
    }
    #my-room-tool-wrapper a.mlkn-button {
        width: auto;
    }
}
/* >> My Room Tool - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #my-room-tool-wrapper .row [class^="col"] {
        margin-bottom: 15vh;
    }
    #my-room-tool-wrapper h1 {
        font-size: 70px;
    }
    #my-room-tool-wrapper p {
        font-size: 25px;
    }
    #my-room-tool-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;        
    }
}
/* >> My Room Tool - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #my-room-tool-wrapper {
        height: 65vh;
    }
    #my-room-tool-wrapper .row {
        min-height: 65vh;
    }
    #my-room-tool-wrapper h1 {
        font-size: 25px;
    }
}
/* >> My Room Tool - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #my-room-tool-wrapper {
        height: 65vh;
    }
    #my-room-tool-wrapper .row {
        min-height: 65vh;
    }
    #my-room-tool-wrapper h1 {
        font-size: 21px;
    }
}
/* >> My Room Tool - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #my-room-tool-wrapper {
        height: 70vh;
    }
    #my-room-tool-wrapper .row {
        min-height: 70vh;
    }
    #my-room-tool-wrapper h1 {
        font-size: 18px;  
    }
    #my-room-tool-wrapper p {
        font-size: 15px;
    }
}

/*** SHOP NOW ***/
#shop-now-wrapper {
    height: 100vh;
    background-image: url('/-/media/335a57dd8fb04d838511a696badb6ee2.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#shop-now-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK -- */
    height: 1px;
    /* -- END IE 11 HACK -- */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/* >> Shop Now - Content */
#shop-now-wrapper img,
#shop-now-wrapper img.mobile-image {
    display: block;
    margin: 0 auto;
}
#shop-now-wrapper img {
    width: 900px;
}
#shop-now-wrapper img.mobile-image {
    display: none;
    width: 100%;
    padding: 0 10px;
    max-width: 500px;
}
#shop-now-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
}
#shop-now-wrapper a.mlkn-button {
    width: 310px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
}
#shop-now-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
}
/* >> Shop Now - Media Queries */
@media only screen and (max-width: 1350px) {
    #shop-now-wrapper img {
        width: 800px;
    }
}
@media only screen and (max-width: 1150px) {
    #shop-now-wrapper img {
        width: 700px;
    }
}
@media only screen and (max-width: 991px) {
    #shop-now-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
    }
}
@media only screen and (max-width: 767px) {
    #shop-now-wrapper img {
        display: none;
    }
    #shop-now-wrapper img.mobile-image {
        display: block;
    }
}
@media only screen and (max-width: 500px) {
    #shop-now-wrapper {
        height: 60vh;
        background-position-x: 75%;
    }
    #shop-now-wrapper .row {
        min-height: 60vh;
    }
    #shop-now-wrapper a.mlkn-button {
        width: auto;
    }
}
/* >> Shop Now - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #shop-now-wrapper img {
        width: 1400px;
    }
    #shop-now-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;
        font-weight: 600 !important;
    }
}
/* >> Shop Now - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #shop-now-wrapper {
        height: 65vh;
    }
    #shop-now-wrapper .row {
        min-height: 65vh;
    }
}
/* >> Shop Now - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #shop-now-wrapper {
        height: 65vh;
    }
    #shop-now-wrapper .row {
        min-height: 65vh;
    }
}
/* >> Shop Now - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #shop-now-wrapper {
        height: 70vh;
    }
    #shop-now-wrapper .row {
        min-height: 70vh;
    }
}

/*** CREATIVE COLLECTIVE ***/
#creative-collective-wrapper {
    height: 300px;
    background-image: url('/-/media/2c81f3e15b7c405f98a28df6105315d4.ashx');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}
/* >> Creative Collective - Image */
#creative-collective-wrapper img {
    width: 200px;  
    margin-top: 40px;
}
/* >> Creative Collective - Button */
#creative-collective-wrapper a.mlkn-button {
    background: #036;
    border: 1px solid #036;
    text-align: center;
    margin-top: 135px;
    width: 300px;
    color: #fff;
    font-weight: 700 !important;
}
/* >> Creative Collective - Media Queries */
@media only screen and (max-width: 767px) {
    #creative-collective-wrapper .row > div:first-of-type {
        text-align: center;  
    }
    #creative-collective-wrapper .row > div:first-of-type img {
        margin: 20px auto 0;  
        width: 150px;
    }
    #creative-collective-wrapper a.mlkn-button {
        display: block;
        margin: 30px auto 0;
    }
}
@media only screen and (max-width: 500px) {
    #creative-collective-wrapper a.mlkn-button {
        width: 100%;
    }
}
/* >> Creative Collective - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #creative-collective-wrapper a.mlkn-button {
        font-size: 20px;
    }
}

/*** SUSTAINABILITY OVERVIEW ***/
#sustainability-overview-wrapper {
    background: #322F30;
    position: relative;
}
#sustainability-overview-wrapper .container {
    padding-top: 50px;
    padding-bottom: 50px;
}
#sustainability-overview-wrapper [class^="col"] {
    padding-left: 30px;
    padding-right: 30px;
}
/* >> Sustainability Overview - Content */
#sustainability-overview-wrapper h2,
#sustainability-overview-wrapper p {
    color: #fff;
}
#sustainability-overview-wrapper h2 {
    text-transform: none;  
}
/* >> Sustainability Overview - Image */
#sustainability-overview-wrapper img {
    width: 100%;
}
/* >> Sustainability Overview - Media Queries */
@media only screen and (max-with: 500px) {
    #creative-collective-wrapper a.mlkn-button {
        width: auto;
    }    
}
/* >> Sustainability Overview - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #sustainability-overview-wrapper h2 {
        font-size: 32px; 
    }
    #sustainability-overview-wrapper p {
        font-size: 20px;
    }
}