/*** 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;
    height: 15px;
}
#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="#o-collection-video-wrapper"]::before {
    content: "The O Collection";
}
#navbar-circles a[href="#MainContainer_C010_Col00"]::before {
    content: "Collection Video";
}
#navbar-circles a[href="#changing-workplace-wrapper"]::before {
    content: "Changing Workplace";
}
#navbar-circles a[href="#how-it-works-wrapper"]::before {
    content: "How It Works";
}
#navbar-circles a[href="#product-gallery-wrapper"]::before {
    content: "Product Gallery";
}
#navbar-circles a[href="#connecting-the-dots-wrapper"]::before {
    content: "Connecting The Dots";
}
#navbar-circles a[href="#continuous-random-wrapper"]::before {
    content: "Continuous Random";
}
#navbar-circles a[href="#installs-wrapper"]::before {
    content: "Installs";
}
#navbar-circles a[href="#colorline-wrapper"]::before {
    content: "Colorline";
}
#navbar-circles a[href="#future-proof-wrapper"]::before {
    content: "Future Proof";
}
#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: 260px;
    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 O COLLECTION VIDEO  ***/
#o-collection-video-wrapper {
    background: #000; 
    position: relative;
    z-index: 2;
    padding: 0;
}
#o-collection-video-wrapper .video-container {
    position: relative;
    height: 100vh;
}
/* >> The O Collection Video - Video */
#o-collection-video-wrapper .video-container video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}
/* >> The O Collection Video - Text Overlay */
#o-collection-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;
}
#o-collection-video-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 8px;
}
#o-collection-video-wrapper .text-overlay h1 {
    font-size: 60px;  
    letter-spacing: 10px;
    margin-bottom: 15px;
    font-weight: 600 !important;
    color: #fff;
    margin: 0;
}
#o-collection-video-wrapper .text-overlay h1 span {
    font-weight: 800 !important;
    font-size: 80px;
}
#o-collection-video-wrapper .text-overlay > span.expanded {
    margin-top: 0;
    margin-bottom: 25px;
}
/* >> The O Collection Video - Media Queries */
/* >> The O Collection Video - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #o-collection-video-wrapper .text-overlay h1 {
        font-size: 95px;
    }
    #o-collection-video-wrapper .text-overlay h1 span {
        font-size: 125px;
    }
    #o-collection-video-wrapper .text-overlay > span {
        font-size: 35px;
    }
}
@media only screen and (max-width: 1450px) {
    #o-collection-video-wrapper .text-overlay h1 {
        letter-spacing: 5px;
    }
}
@media only screen and (max-width: 1275px) {
    #o-collection-video-wrapper .text-overlay h1 {
        font-size: 50px;
    }
    #o-collection-video-wrapper .text-overlay h1 span {
        font-size: 70px;
    }
}
@media only screen and (max-width: 1100px) {
    #o-collection-video-wrapper .text-overlay h1 {
        font-size: 40px;
    }
    #o-collection-video-wrapper .text-overlay h1 span {
        font-size: 60px;
    }
    #o-collection-video-wrapper .text-overlay > span {
        font-size: 18px;
    }
}
@media only screen and (max-width: 991px) {
    #o-collection-video-wrapper .text-overlay {
        top: 30vh;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    #o-collection-video-wrapper .text-overlay > span {
        letter-spacing: 5px;
    }       
}
@media only screen and (max-width: 600px) {
    #o-collection-video-wrapper .text-overlay > span {
        font-size: 17px;
        letter-spacing: 2px; 
    }
}
@media only screen and (max-width: 550px) {
    #o-collection-video-wrapper .text-overlay h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
    #o-collection-video-wrapper .text-overlay h1 span {
        font-size: 45px;
    }
}
@media only screen and (max-width: 500px) {

}
/*iphone 13 pro max*/
@media only screen and (max-width: 428px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #o-collection-video-wrapper .text-overlay h1 {
        white-space: nowrap;
    }
}
/*iphone 6+, 7+, 8+*/
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #o-collection-video-wrapper .text-overlay h1 {
        white-space: nowrap;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #o-collection-video-wrapper .text-overlay h1 {
        white-space: nowrap;
    }
}
/*iphone 6, 6s, 7, 8*/
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #o-collection-video-wrapper .text-overlay h1 {
        white-space: nowrap;
    }
}

/* >> The O Collection Video - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #o-collection-video-wrapper .text-overlay h1 {
        font-size: 25px;
        white-space: nowrap;
    }
    #o-collection-video-wrapper .text-overlay h1 span {
        font-size: 35px;
    }
    #o-collection-video-wrapper .text-overlay > span {
        font-size: 15px;
    }
}

/* EMBEDDED VIDEO - MainContainer_C010_Col00 */
.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: var(--embeddedVideoButtonTop);
}
div[title="Play Video"] svg {
    display: none;
}
#MainContainer_C010_Col00 .video-overlay {
    display: none;
}
#MainContainer_C010_Col00 picture img {
    height: 100vh !important;
}
#MainContainer_C010_Col00, #MainContainer_C010_Col00 section, #MainContainer_C010_Col00 iframe, #MainContainer_C010_Col00 picture img {
    height: 100vh !important;
}
.embedded-video .play-btn__text {
    visibility: hidden !important;
}
/* Media Queries */
@media only screen and (max-width: 991px) {
    div[title="Play Video"]::before {
        margin: 0 -57px;
    }
}
@media only screen and (max-width: 767px) {
    #MainContainer_C010_Col00 picture img {
        content: url(/-/media/d671bcb5829648879d8d9a58d540d5a6.ashx);
    }
    div[title="Play Video"]::before {
        margin: 0 -90px;
    }
}
/*iphone 5, 5c, 5s, se*/
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    div[title="Play Video"]::before {
        margin: 0 -100px;
    }
}

/*** CHANGING WORKPLACE ***/
#changing-workplace-wrapper {
    height: 100vh;
    background-image: url('/-/media/8cb4ed4ba7674686b003cfba6615470c.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    position: relative;
    min-height: 900px;
}
/* >> Changing Workplace - Hotspots */
#changing-workplace-hotspot-1 {
    top: 32%;
    right: 34%;
}
#changing-workplace-hotspot-2 {
    bottom: 20%;
    left: 45%;
}
/* >> Changing Workplace - Left Panel */
#changing-workplace-wrapper .left-panel {
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    background-image: url('/-/media/10b0e31566d040c6ba62ac41dbc697b5.ashx');
    background-repeat: no-repeat;
    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: 900px;
}
/* >> Changing Workplace - Content */
#changing-workplace-wrapper .left-panel .content {
    max-width: 350px;
    margin-left: 75px;
    margin-bottom: 0.63em;
}
#changing-workplace-wrapper .left-panel .content h1 {
    font-size: 35px;
    font-weight: 500 !important;
}
#changing-workplace-wrapper .left-panel .content p {
    font-size: 18px;
    color: #666;
}
/* >> Changing Workplace - Mobile Content */
#changing-workplace-mobile-wrapper {
    min-height: 35vh;
    background: #f0f0f0;
    display: none;
    -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;
    position: relative;
}
#changing-workplace-mobile-wrapper .content {
    max-width: 720px;
    padding: 40px 30px;
}
#changing-workplace-mobile-wrapper .content h1,
#changing-workplace-mobile-wrapper .content p {
    text-align: center;
}
#changing-workplace-mobile-wrapper .content h1 {
    font-size: 32px;
    font-weight: 500 !important;
    max-width: 600px;
}
#changing-workplace-mobile-wrapper .content p {
    font-size: 16px;
}
/* >> Changing Workplace - Media Queries */
@media only screen and (max-width: 1575px) {
    #changing-workplace-hotspot-1 {
        right: 28%;
    }
    #changing-workplace-hotspot-2 {
        left: 52%;
    }
}
@media only screen and (max-width: 1450px) {
    #changing-workplace-wrapper .left-panel .content {
        max-width: 300px;
    }
    #changing-workplace-wrapper .left-panel {
        background-position-x: -50px;
    }
}
@media only screen and (max-width: 1375px) {
    #changing-workplace-hotspot-1 {
        right: 18%;
    }
    #changing-workplace-hotspot-2 {
        left: 58%;
    }
}
@media only screen and (max-width: 1250px) {
    #changing-workplace-hotspot-1 {
        right: 40%;
    }
    #changing-workplace-hotspot-2 {
        left: 68%;
    }
}
@media only screen and (max-width: 1050px) {
    #changing-workplace-hotspot-1 {
        right: 31%;
    }
    #changing-workplace-hotspot-2 {
        left: 78%;
    }
}
@media only screen and (max-width: 991px) {
    #changing-workplace-wrapper {
        height: 65vh;
        background-position-x: center;
        min-height: 0;
    }
    #changing-workplace-hotspot-1,
    #changing-workplace-hotspot-2 {
        display: none;
    }
    #changing-workplace-wrapper .left-panel {
        display: none;
    }
    #changing-workplace-mobile-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media only screen and (max-width: 500px) {
    #changing-workplace-mobile-wrapper .content h1 {
        font-size: 23px;
    }
    #changing-workplace-mobile-wrapper .content p {
        font-size: 15px;
    }
}
/* >> Changing Workplace - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #changing-workplace-wrapper .left-panel .content {
        max-width: 500px;
    }
    #changing-workplace-wrapper .left-panel .content h1 {
        font-size: 45px;
    }
    #changing-workplace-wrapper .left-panel .content p {
        font-size: 25px;
    }
}
/* >> Changing Workplace - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #changing-workplace-mobile-wrapper .content p {
        font-size: 16px;
    }
}
/* >> Changing Workplace - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #changing-workplace-mobile-wrapper .content h1 {
        font-size: 20px;
    }
}

/*** HOW IT WORKS ***/
#how-it-works-wrapper {
    position: relative;
    padding: 0;
    background: #000;
    overflow: hidden;
}
/* >> How It Works - Slideshow */
#how-it-works-slideshow-wrapper > .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#how-it-works-slideshow-wrapper > .cycle-slideshow > .slide {
    width: inherit;
    height: inherit;
    background: #fff;
}
/* >> How It Works - Nested Slideshows */
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide {
    background-image: url('/-/media/1f53c925e22c47a786452e87c1913a60.ashx');
}
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide {
    background-image: url('/-/media/d166a8577cfc48148197da744130706d.ashx');
}
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide {
    background-image: url('/-/media/b552a219c58d414cbeae33198c07d1b9.ashx');
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel {
    width: 100%;
    height: 100vh;
    background-color: transparent;
    background-repeat: no-repeat;
    background-image: url('/-/media/21dffd3e118047429a369df76088688c.ashx');
    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;
    position: relative;
    z-index: 200;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls {
    width: 80px;
    height: 100vh;
    margin-left: 75px;
    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;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button {
    width: 80px;
    height: 300px;
    border: none;
    background: #fff;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls span,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls span,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls span {
    display: block;
    width: 300px;
    -webkit-transform: rotate(270deg) translateY(-115px);
    -ms-transform: rotate(270deg) translateY(-115px);
    transform: rotate(270deg) translateY(-115px);
    color: #999;
    font-size: 30px;
    font-weight: 700 !important;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button.active span,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button.active span,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button.active span {
    color: #222;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches {
    width: 180px;
    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;
    margin-left: 105px;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches img,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches img,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches img {
    width: 180px;
    height: 180px;
    margin: 10px 0;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content {
    position: absolute;
    width: 725px;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content {
    bottom: 82px;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls {
    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;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls button,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls button,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls button,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls button,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls button,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls button {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    background-image: url('/-/media/78b9a3c7a73c4d81b8698a2078e90cfc.ashx');
    margin: 0 10px;
    border: none;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls button.active,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls button.active,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content .inner-carousel-controls button.active,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls button.active,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls button.active,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content .inner-carousel-controls button.active {
    background-image: url('/-/media/efb8ecacff3a40d68c9f16fee1e7c0f8.ashx');
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p {
    color: #fff;
    text-shadow: 0 0 2px #000;
    text-align: center;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1 {
    text-transform: uppercase;
    font-size: 35px;
    margin-top: 0.63em;
    margin-bottom: 0.63em;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p {
    font-size: 18px;
    margin-bottom: 1em;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content > button,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content > button,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content > button {
    width: 300px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    display: block;
    margin: 10px auto 0;
    font-weight: 700 !important;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label {
    width: 100px;
    height: 100vh;
    margin-left: 75px;
    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;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label span,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label span,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label span {
    display: block;
    width: 300px;
    -webkit-transform: rotate(270deg) translateY(-100px);
    -ms-transform: rotate(270deg) translateY(-100px);
    transform: rotate(270deg) translateY(-100px);
    color: #999;
    font-size: 50px;
    font-weight: 700 !important;
    text-align:  center;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches {
    width: 180px;
    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;
    margin-left: 85px;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches img,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches img,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches img {
    width: 180px;
    height: 180px;
    margin: 10px 0;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    width: 100%;
    height: 100vh;
    background-color: transparent;
    background-repeat: no-repeat;
    z-index: 300;
    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-position-y: -20px;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel.open,
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel.open,
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel.open {
    left: 0;
}
#how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    background-image: url('/-/media/d7cc27ff9d4e44b08e5e3112c088eab9.ashx');
}
#how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    background-image: url('/-/media/efb63d67312b46fa8ce3dae0f11e23ae.ashx');
}
#how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    background-image: url('/-/media/d349a4eab8094a30886782daec6d804e.ashx');
}
/* >> How It Works - Media Queries */
@media only screen and (max-width: 1650px) {
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content {
        left: 60%;
    }
}
@media only screen and (max-width: 1400px) {
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content {
        width: 500px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1,
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1 {
        font-size: 30px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p,
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p {
        font-size: 16px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content {
        bottom: 142px;
    }
}
@media only screen and (max-width: 1200px) {
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content,
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
    #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content,
    #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content {
        left: 70%;
    }
}
@media only screen and (max-width: 991px) {
    #how-it-works-wrapper {
        display: none;
    }
}
/* >> How It Works Mobile - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls button {
        height: 350px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls span, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls span, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .outer-carousel-controls span {
        font-size: 40px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches {
        margin-left: 135px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches img, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches img, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-1-swatches img {
        width: 250px;
        height: 250px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label span, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label span, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .design-label span {
        font-size: 70px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches {
        margin-left: 110px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches img, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches img, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-swatches img {
        width: 250px;
        height: 250px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content {
        width: 950px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content, #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content {
        width: 950px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content h1, #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content h1 {
        font-size: 45px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-content p, #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content p {
        font-size: 25px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content > button, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content > button, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .left-panel .slide-2-content > button {
        width: 400px;
        font-size: 20px;
    }
    #how-it-works-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel, #how-it-works-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel, #how-it-works-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
        background-position-y: 0;
        background-size: contain;
    }
}

/*** HOW IT WORKS MOBILE ***/
#how-it-works-mobile-wrapper {
    position: relative;
    padding: 0;
    background: #000;
    overflow: hidden;
    display: none;
}
/* >> How It Works Mobile - Slideshow */
#how-it-works-mobile-slideshow-wrapper > .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#how-it-works-mobile-slideshow-wrapper > .cycle-slideshow > .slide {
    width: inherit;
    height: inherit;
    background: #fff;
}
/* >> How It Works - Nested Slideshows */
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    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;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide > .full-wrapper,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide > .full-wrapper,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide > .full-wrapper {
    width: inherit;
    height: inherit;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide {
    background-image: url('/-/media/1f53c925e22c47a786452e87c1913a60.ashx');
}
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide {
    background-image: url('/-/media/d166a8577cfc48148197da744130706d.ashx');
}
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide {
    background-image: url('/-/media/b552a219c58d414cbeae33198c07d1b9.ashx');
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls {
    width: 100%;
    height: 80px;
    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;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button {
    width: 312px;
    height: 80px;
    border: none;
    background: #fff;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span {
    display: block;
    width: 300px;
    color: #999;
    font-size: 30px;
    font-weight: 700 !important;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button.active span,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button.active span,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button.active span {
    color: #222;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches {
    width: 100%;
    height: 100px;
    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;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img {
    width: 180px;
    height: 180px;
    margin: 0 10px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content {
    width: 100%;
    max-width: 725px;
    position: relative;
    bottom: 50px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content {
    bottom: 82px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls {
    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;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    background-image: url('/-/media/78b9a3c7a73c4d81b8698a2078e90cfc.ashx');
    margin: 0 10px;
    border: none;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button.active,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button.active,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button.active,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button.active,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button.active,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button.active {
    background-image: url('/-/media/efb8ecacff3a40d68c9f16fee1e7c0f8.ashx');
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content h1,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content h1,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content h1,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content p,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content p,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content p,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p {
    color: #fff;
    text-shadow: 0 0 2px #000;
    text-align: center;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content h1,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content h1,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content h1,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1 {
    text-transform: uppercase;
    font-size: 30px;
    margin-top: 0.63em;
    margin-bottom: 0.63em;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content p,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content p,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content p,
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p {
    font-size: 16px;
    margin-bottom: 1em;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content > button,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content > button,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content > button {
    width: 300px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    display: block;
    margin: 10px auto 0;
    font-weight: 700 !important;
    color: #000;
    padding: 10px 20px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label {
    width: 100%;
    height: 80px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label span,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label span,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label span {
    display: block;
    width: 100%;
    color: #999;
    font-size: 50px;
    font-weight: 700 !important;
    text-align:  center;
    position: relative;
    top: 30px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches {
    width: 100%;
    height: 100px;
    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;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img {
    width: 180px;
    height: 180px;
    margin: 0 10px;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 300;
    position: absolute;
    top: -100vh;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-position-x: center;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel.open,
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel.open,
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel.open {
    top: 0;
}
#how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    background-image: url('/-/media/ec6519b7d42c48c2a0fe0fd5cbcbb6c8.ashx');
}
#how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    background-image: url('/-/media/45ab7d006f704d7b920a9c587d93ae6c.ashx');
}
#how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .overlay-panel {
    background-image: url('/-/media/796d11dfb1b8476aa4712219c5f096b9.ashx');
}
/* >> How It Works Mobile - Media Queries */
@media only screen and (max-width: 991px) {
    #how-it-works-mobile-wrapper {
        display: block;
    }
}
@media only screen and (max-width: 850px) {
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img {
        width: 130px;
        height: 130px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button {
        width: 160px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span {
        font-size: 20px;
        width: auto;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches {
        height: 70px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label span, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label span, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .design-label span {
        font-size: 30px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img {
        width: 130px;
        height: 130px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches {
        height: 70px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content {
        max-width: 500px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content {
        bottom: 142px;
    }
}
@media only screen and (max-width: 500px) {
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content {
        bottom: 105px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img {
        width: 100px;
        height: 100px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button {
        width: 140px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span {
        font-size: 17px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content h1, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content h1, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content h1, #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1 {
        font-size: 27px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content p, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content p, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content p, #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p {
        font-size: 15px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches {
        height: 50px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img {
        width: 100px;
        height: 100px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches {
        height: 50px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content .inner-carousel-controls button,
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content .inner-carousel-controls button {
        width: 40px;
        height: 40px;
    }
}
/* >> How It Works Mobile - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content p, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content p, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content p, #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content p {
        font-size: 14px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches {
        height: 40px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-2-swatches img {
        width: 80px;
        height: 80px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content h1, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content h1, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content h1, #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content h1 {
        font-size: 24px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-2-content > button, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-2-content > button, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-2-content > button {
        font-size: 14px;
        width: 280px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .slide-content, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .slide-content {
        bottom: 83px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches img {
        width: 80px;
        height: 80px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls button {
        width: 100px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
    #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span,
    #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .outer-carousel-controls span {
        font-size: 12px;
    }
    #how-it-works-mobile-slide-1-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches, #how-it-works-mobile-slide-2-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches, #how-it-works-mobile-slide-3-slideshow-wrapper .cycle-slideshow .slide .top-panel .slide-1-swatches {
        height: 40px;
    }
}

/*** PRODUCT GALLERY ***/
#product-gallery-wrapper {
    position: relative;
    padding: 0;
}
/* >> Product Gallery - Slideshow */
#product-gallery-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#product-gallery-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
}
#product-gallery-slide-1 {
    background-image: url('/-/media/68967b2899474d65a20e68cbe942cadf.ashx');
    background-position-x: right;
}
#product-gallery-slide-2 {
    background-image: url('/-/media/21b24b761b754d43900365ab691ec19c.ashx');
    background-position-x: center;
}
#product-gallery-slide-3 {
    background-image: url('/-/media/0d793c8aa95c41ac9906eac3c3a3c41f.ashx');
}
/* >> Product Gallery - Hotspots */
#product-gallery-hotspot-1 {
    bottom: 18%;
    left: 42%;
}
#product-gallery-hotspot-2 {
    top: 36%;
    right: 48%;
}
#product-gallery-hotspot-3 {
    top: 31%;
    right: 36%;
}
#product-gallery-hotspot-4 {
    top: 37%;
    right: 42%;
}
#product-gallery-hotspot-5 {
    bottom: 26%;
    left: 34%;
}
/* >> Product Gallery - Pager */
#product-gallery-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: 280px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#product-gallery-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #aaa;
}
#product-gallery-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #eee;  
}
/* >> Product Gallery - Slideshow Controls */
#product-gallery-outer-wrapper {
    position: relative;  
}
#product-gallery-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 500;
}
#product-gallery-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #eee;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #eee;
}
#product-gallery-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#product-gallery-slideshow-controls button:focus {
    outline: none;
}
/* >> Product Gallery - Media Queries */
@media only screen and (max-width: 1500px) {
    #product-gallery-hotspot-5 {
        left: 44%;
    }
}
@media only screen and (max-width: 1400px) {
    #product-gallery-hotspot-1 {
        left: 30%;
    }
    #product-gallery-hotspot-2 {
        right: 60%;
    }
    #product-gallery-hotspot-3 {
        right: 48%;
    }
}
@media only screen and (max-width: 1200px) {
    #product-gallery-hotspot-1 {
        left: 19%;
    }
    #product-gallery-hotspot-5 {
        left: 55%;
    }
}
@media only screen and (max-width: 1100px) {
    #product-gallery-hotspot-1 {
        left: 11%;
    }
    #product-gallery-hotspot-2 {
        right: 75%;
    }
    #product-gallery-hotspot-3 {
        right: 58%;
    }
    #product-gallery-hotspot-4 {
        right: 38%;
    }
}
@media only screen and (max-width: 991px) {
    #product-gallery-slideshow-wrapper .cycle-slideshow {  
        height: 65vh;
    }
    #product-gallery-slide-1 {
        background-position-x: 70%;
    }
    #product-gallery-slide-2,
    #product-gallery-slide-3 {
        background-position-x: center;
    }
    #product-gallery-hotspot-1,
    #product-gallery-hotspot-2,
    #product-gallery-hotspot-3,
    #product-gallery-hotspot-4,
    #product-gallery-hotspot-5 {
        display: none;
    }
    #product-gallery-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #product-gallery-slideshow-controls {
        display: block;
    }    
}

/*** CONNECTING THE DOTS ***/
#connecting-the-dots-wrapper {
    height: 100vh;
    background-image: url('/-/media/bd82b2f17e744277811641485dbf2c01.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    padding: 0;
    position: relative;
    min-height: 850px;
}
/* >> Connecting the Dots - Hotspots */
#connecting-the-dots-hotspot-1 {
    bottom: 36%;
    left: 35%;
}
#connecting-the-dots-hotspot-2 {
    top: 45%;
    left: 40%;
}
/* >> Connecting The Dots - Left Panel */
#connecting-the-dots-wrapper .left-panel {
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    background-image: url('/-/media/ab8e60d4862c4abe93d5e1f3f7a8a416.ashx');
    background-repeat: no-repeat;
    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: 850px;
}
/* >> Connecting The Dots - Content */
#connecting-the-dots-wrapper .left-panel .content {
    max-width: 350px;
    margin-left: 75px;
}
#connecting-the-dots-wrapper .left-panel .content h1 {
    font-size: 35px;
    font-weight: 500 !important;
    margin-bottom: 0.63em;
}
#connecting-the-dots-wrapper .left-panel .content p {
    font-size: 18px;
    color: #666;
}
/* >> Connecting the Dots - Mobile Content */
#connecting-the-dots-mobile-wrapper {
    min-height: 35vh;
    background: #f0f0f0;
    display: none;
    -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;
    position: relative;
}
#connecting-the-dots-mobile-wrapper .content {
    max-width: 720px;
    padding: 40px 30px;
}
#connecting-the-dots-mobile-wrapper .content h1,
#connecting-the-dots-mobile-wrapper .content p {
    text-align: center;
}
#connecting-the-dots-mobile-wrapper .content h1 {
    font-size: 32px;
    font-weight: 500 !important;
    max-width: 600px;
}
#connecting-the-dots-mobile-wrapper .content p {
    font-size: 16px;
}
/* >> Connecting the Dots - Media Queries */
@media only screen and (max-width: 1600px) {
    #connecting-the-dots-hotspot-1 {
        left: 41%;
    }
    #connecting-the-dots-hotspot-2 {
        top: 49%;
    }
}
@media only screen and (max-width: 1500px) {
    #connecting-the-dots-hotspot-1 {
        bottom: 23%;
    }
    #connecting-the-dots-hotspot-2 {
        top: 68%;
        left: 54%;
    }
}
@media only screen and (max-width: 1450px) {
    #connecting-the-dots-wrapper .left-panel .content {
        max-width: 300px;
    }
    #connecting-the-dots-wrapper .left-panel .content h1 {
        font-size: 33px;
    }
    #connecting-the-dots-wrapper .left-panel .content p {
        font-size: 17px;
    }
    #connecting-the-dots-wrapper .left-panel {
        background-position-x: -50px;
    }
}
@media only screen and (max-width: 1300px) {
    #connecting-the-dots-hotspot-1 {
        left: 51%;
    }
    #connecting-the-dots-hotspot-2 {
        left: 60%;
    }
}
@media only screen and (max-width: 1100px) {
    #connecting-the-dots-hotspot-1 {
        left: 54%;
    }
    #connecting-the-dots-hotspot-2 {
        left: 70%;
    }
}
@media only screen and (max-width: 991px) {
    #connecting-the-dots-wrapper {
        height: 65vh;
        background-position-x: center;
        min-height: 0;
    }
    #connecting-the-dots-hotspot-1,
    #connecting-the-dots-hotspot-2 {
        display: none;
    }
    #connecting-the-dots-wrapper .left-panel {
        display: none;
    }
    #connecting-the-dots-mobile-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media only screen and (max-width: 550px) {
    #connecting-the-dots-mobile-wrapper .content h1 {
        font-size: 23px;
        white-space: nowrap;
    }
    #connecting-the-dots-mobile-wrapper .content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 500px) {
}
/* >> Connecting the Dots - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #connecting-the-dots-wrapper .left-panel .content {
        max-width: 525px;
    }
    #connecting-the-dots-wrapper .left-panel .content h1 {
        font-size: 40px;
    }
    #connecting-the-dots-wrapper .left-panel .content p {
        font-size: 25px;
    }
}
/* >> Connecting the Dots- iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #connecting-the-dots-mobile-wrapper .content h1 {
        font-size: 19px;
    }
    #connecting-the-dots-mobile-wrapper .content p {
        font-size: 15px;
    }
}

/*** CONTINUOUS RANDOM ***/
#continuous-random-wrapper {
    background: #000; 
    position: relative;
    z-index: 2;
    padding: 0;
}
#continuous-random-wrapper .video-container {
    position: relative;
    height: 100vh;
}
/* >> Continuous Random - Video */
#continuous-random-wrapper .video-container video {
    height: 100vh;
    width: 100vw;
    -o-object-fit: cover;
    object-fit: cover;
}
/* >> Continuous Random - Media Queries */
@media only screen and (max-width: 1500px) {
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 93vh;
    }
}
@media only screen and (max-width: 1150px) {
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 70vh;
    }
}
@media only screen and (max-width: 991px) {
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 55vh;
    }
}
@media only screen and (max-width: 600px) {
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 45vh;
    }
}
@media only screen and (max-width: 500px) {
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 37vh;
    }
}
/* >> Continuous Random - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 44vh;
    }
}
/* >> Continuous Random - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 44vh;
    }
}
/* >> Continuous Random - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #continuous-random-wrapper .video-container,
    #continuous-random-wrapper .video-container video {
        height: 44vh;
    }
}

/*** INSTALLS ***/
#installs-wrapper {
    position: relative;
    padding: 0;
    background: #000;
    overflow: hidden;
}
/* >> Installs - Slideshow */
#installs-carousel-1-slideshow-wrapper .cycle-slideshow,
#installs-carousel-2-slideshow-wrapper .cycle-slideshow,
#installs-carousel-3-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#installs-carousel-1-slideshow-wrapper .slide,
#installs-carousel-2-slideshow-wrapper .slide,
#installs-carousel-3-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#installs-carousel-1-slide-1 {
    background-image: url('/-/media/f459dbeed9ac4a4f83f14a1882f299f9.ashx');
}
#installs-carousel-1-slide-2 {
    background-image: url('/-/media/b0b0f78fa598438e89f0a121e26013a1.ashx');
}
#installs-carousel-1-slide-3 {
    background-image: url('/-/media/18ff77372c4545e69a626a3de7705bfc.ashx');
}
#installs-carousel-1-slide-4 {
    background-image: url('/-/media/27d90a0ef56a4e48a1165ce53f3f107d.ashx');
}
#installs-carousel-1-slide-5 {
    background-image: url('/-/media/8682ffa35e2d4dd3a898e3003ccaa926.ashx');
}
#installs-carousel-1-slide-6 {
    background-image: url('/-/media/d7fe94184264426fbbe7ab5c1bc5ff36.ashx');
}
#installs-carousel-1-slide-7 {
    background-image: url('/-/media/19a7c0ef1457407ca82ad82abe8d6741.ashx');
}
#installs-carousel-2-slide-1 {
    background-image: url('/-/media/8710258e0816463398e0b077cf4ae2b7.ashx');
}
#installs-carousel-2-slide-2 {
    background-image: url('/-/media/4dd71d2271154ce695cb4f4e2ef26706.ashx');
}
#installs-carousel-2-slide-3 {
    background-image: url('/-/media/8a8be951170542228c8a7aac4d7b5358.ashx');
}
#installs-carousel-2-slide-4 {
    background-image: url('/-/media/60afcc322a0c47468209d02def09a127.ashx');
}
#installs-carousel-2-slide-5 {
    background-image: url('/-/media/808f7dd5bd7247c18c035bcc07bc3893.ashx');
}
#installs-carousel-2-slide-6 {
    background-image: url('/-/media/fd9877bf669b42aab2e5d9d17e33c054.ashx');
}
#installs-carousel-2-slide-7 {
    background-image: url('/-/media/2527289ed3f242de8e66cea4a604c0d0.ashx');
}
#installs-carousel-3-slide-1 {
    background-image: url('/-/media/93f9fb8eebfb4b42974957d739c36e11.ashx');
}
#installs-carousel-3-slide-2 {
    background-image: url('/-/media/3809e63dd69945028e957ec0f2c82535.ashx');
}
#installs-carousel-3-slide-3 {
    background-image: url('/-/media/5a75e807c863490188577a748a67c504.ashx');
}
#installs-carousel-3-slide-4 {
    background-image: url('/-/media/cf9c9ee3258140d5bb517bca1a30d073.ashx');
}
#installs-carousel-3-slide-5 {
    background-image: url('/-/media/4a5535932c9640ab80f7b73d72760c87.ashx');
}
#installs-carousel-3-slide-6 {
    background-image: url('/-/media/9cdcfafa65904a078cd12d20bb57908c.ashx');
}
#installs-carousel-3-slide-7 {
    background-image: url('/-/media/36823196fab946daafcbcb5be8ffb9fc.ashx');
}
#installs-carousel-1-slideshow-wrapper .slide-content,
#installs-carousel-2-slideshow-wrapper .slide-content,
#installs-carousel-3-slideshow-wrapper .slide-content {
    width: 430px;
    position: absolute;
    bottom: 20px;
    left: 50px;
}
#installs-carousel-1-slideshow-wrapper .slide-content p,
#installs-carousel-2-slideshow-wrapper .slide-content p,
#installs-carousel-3-slideshow-wrapper .slide-content p {
    color: #fff;
    font-size: 12px;
}
#installs-carousel-2,
#installs-carousel-3 {
    display: none;
}
/* >> Installs - Hotspots */
/* >>> Installs Carousel 1 Hotspots */
#installs-hotspot-1,
#installs-hotspot-2,
#installs-hotspot-3,
#installs-hotspot-5,
#installs-hotspot-7,
#installs-hotspot-8,
#installs-hotspot-9,
#installs-hotspot-11,
#installs-hotspot-13 {
    top: 17%;
    left: 24%;
}
#installs-hotspot-3,
#installs-hotspot-5,
#installs-hotspot-7,
#installs-hotspot-9,
#installs-hotspot-11,
#installs-hotspot-13 {
    top: 37%;
}
/* >>> Installs Carousel 2 Hotspots */
#installs-hotspot-14,
#installs-hotspot-15,
#installs-hotspot-16,
#installs-hotspot-18,
#installs-hotspot-20,
#installs-hotspot-21,
#installs-hotspot-22,
#installs-hotspot-24,
#installs-hotspot-26 {
    top: 17%;
    left: 24%;
}
#installs-hotspot-16,
#installs-hotspot-18,
#installs-hotspot-20,
#installs-hotspot-22,
#installs-hotspot-24,
#installs-hotspot-26 {
    top: 37%;
}
/* >>> Installs Carousel 3 Hotspots */
#installs-hotspot-27,
#installs-hotspot-28,
#installs-hotspot-29,
#installs-hotspot-31,
#installs-hotspot-33,
#installs-hotspot-34,
#installs-hotspot-35,
#installs-hotspot-37,
#installs-hotspot-39 {
    top: 55%;
    left: 24%;
}
#installs-hotspot-29,
#installs-hotspot-31,
#installs-hotspot-33,
#installs-hotspot-35,
#installs-hotspot-37,
#installs-hotspot-39 {
    top: 39%;
}
/* >> Installs - Carousel Controls */
#installs-carousel-controls {
    position: absolute;
    bottom: -137px;
    left: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
}
#installs-carousel-controls.open {
    bottom: 0;
}
#installs-carousel-controls > button {
    width: 100px;
    height: 55px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border: none;
    background: #fff;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#installs-carousel-controls > button svg,
#installs-carousel-controls > button i {
    color: #000;
}
#installs-carousel-controls > button svg.fa-caret-down,
#installs-carousel-controls > button i.fa-caret-down {
    display: none;
    position: relative;
    top: -1px;
}
#installs-carousel-controls > button span {
    font-size: 10px;
    display: block;
    width: 80px;
    margin: 0 auto;
    font-weight: 700 !important;
    position: relative;
    top: -3px;
    line-height: 1.15em;
    color: #666;
}
#installs-carousel-controls.open > button {
    width: 40px;
    height: 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    top: 5px;
}
#installs-carousel-controls.open > button span {
    display: none;
}
#installs-carousel-controls.open > button svg.fa-caret-up,
#installs-carousel-controls.open > button i.fa-caret-up {
    display: none;
}
#installs-carousel-controls.open > button svg.fa-caret-down,
#installs-carousel-controls.open > button i.fa-caret-down {
    display: inline-block;
}
#installs-carousel-controls .controls-wrapper {
    height: 137px;
    background: #fff;
    width: 700px;
    padding: 20px;
}
#installs-carousel-controls .controls-wrapper .panel-buttons-wrapper {
    width: 100%;
    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;
}
#installs-carousel-controls .controls-wrapper .panel-buttons-wrapper button {
    font-size: 12px;
    border-radius: 0;
    border: 1px solid transparent;
    background: #fff;
    font-weight: 700 !important;
    width: 175px;
    margin: 0 10px;
    padding: 5px 10px 3px;
    color: #616164;
}
#installs-carousel-controls .controls-wrapper .panel-buttons-wrapper button.active {
    border: 1px solid #616164;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper {
    width: 100%;
    margin-top: 15px;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel,
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel {
    width: 100%;
    height: 59px;
    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;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel.hidden,
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel.hidden {
    display: none;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button,
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button {
    border: 1px solid transparent;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    margin: 0 5px;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button.active,
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button.active {
    border: 1px solid #616164;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button {
    width: 84px;
    height: 59px;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button {
    width: 59px;
    height: 59px;
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:first-of-type {
    background-image: url('/-/media/09ba539661954f2e8f4700adc9c725cc.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:nth-of-type(2) {
    background-image: url('/-/media/454bbd740e674fc8b5d6c0ebe0746302.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:nth-of-type(3) {
    background-image: url('/-/media/3b76a6faa4e4489d814e388e4e2d8215.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:nth-of-type(4) {
    background-image: url('/-/media/2f71a318d0624d18a31c33524c36ff7a.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:nth-of-type(5) {
    background-image: url('/-/media/777aac1e785243e18cbd62288d900dc0.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:nth-of-type(6) {
    background-image: url('/-/media/36e407f1091c42cebdebdfafe1535748.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button:last-of-type {
    background-image: url('/-/media/786bdef70c8b469dbe2920f794af8bcd.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button:first-of-type {
    background-image: url('/-/media/d4ba5fb46fb44540b5e7e945bc504699.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button:nth-of-type(2) {
    background-image: url('/-/media/5d2edb2ac987449390b5886ad7bf46ee.ashx');
}
#installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button:last-of-type {
    background-image: url('/-/media/8c89b93a58de46e691a14738dc622995.ashx');
}
/* >> Installs - Media Queries */
@media only screen and (max-width: 1500px) {
    /* >>> Installs Carousel 1 Hotspots */
    #installs-hotspot-1,
    #installs-hotspot-2,
    #installs-hotspot-3,
    #installs-hotspot-5,
    #installs-hotspot-7,
    #installs-hotspot-8,
    #installs-hotspot-9,
    #installs-hotspot-11,
    #installs-hotspot-13 {
        left: 15%;
    }
    /* >>> Installs Carousel 2 Hotspots */
    #installs-hotspot-14,
    #installs-hotspot-15,
    #installs-hotspot-16,
    #installs-hotspot-18,
    #installs-hotspot-20,
    #installs-hotspot-21,
    #installs-hotspot-22,
    #installs-hotspot-24,
    #installs-hotspot-26 {
        left: 15%;
    }
    /* >>> Installs Carousel 3 Hotspots */
    #installs-hotspot-27,
    #installs-hotspot-28,
    #installs-hotspot-29,
    #installs-hotspot-31,
    #installs-hotspot-33,
    #installs-hotspot-34,
    #installs-hotspot-35,
    #installs-hotspot-37,
    #installs-hotspot-39 {
        left: 15%;
    }
}
@media only screen and (max-width: 1100px) {
    /* >>> Installs Carousel 1 Hotspots */
    #installs-hotspot-1,
    #installs-hotspot-2,
    #installs-hotspot-3,
    #installs-hotspot-5,
    #installs-hotspot-7,
    #installs-hotspot-8,
    #installs-hotspot-9,
    #installs-hotspot-11,
    #installs-hotspot-13 {
        left: 7%;
    }
    /* >>> Installs Carousel 2 Hotspots */
    #installs-hotspot-14,
    #installs-hotspot-15,
    #installs-hotspot-16,
    #installs-hotspot-18,
    #installs-hotspot-20,
    #installs-hotspot-21,
    #installs-hotspot-22,
    #installs-hotspot-24,
    #installs-hotspot-26 {
        left: 7%;
    }
    /* >>> Installs Carousel 3 Hotspots */
    #installs-hotspot-27,
    #installs-hotspot-28,
    #installs-hotspot-29,
    #installs-hotspot-31,
    #installs-hotspot-33,
    #installs-hotspot-34,
    #installs-hotspot-35,
    #installs-hotspot-37,
    #installs-hotspot-39 {
        left: 7%;
    }
}
@media only screen and (max-width: 991px) {
    #installs-carousel-1-slideshow-wrapper .hotspot,
    #installs-carousel-2-slideshow-wrapper .hotspot,
    #installs-carousel-3-slideshow-wrapper .hotspot {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    #installs-wrapper {
        display: none;
    }
}
/* >> Installs - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #installs-carousel-controls {
        bottom: -197px;
    }
    #installs-carousel-controls > button {
        width: 200px;
        height: 110px;
    }
    #installs-carousel-controls > button span {
        font-size: 15px;
        width: 150px;
        margin-top: 5px;
    }
    #installs-carousel-controls.open > button {
        width: 80px;
        height: 40px;
    }
    #installs-carousel-controls .controls-wrapper .panel-buttons-wrapper button {
        font-size: 16px;
        width: 250px;
    }
    #installs-carousel-controls .controls-wrapper {
        height: 197px;
        width: 1265px;
    }
    #installs-carousel-controls .controls-wrapper .panels-wrapper .installations-panel button {
        width: 168px;
        height: 118px;
    }
    #installs-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button {
        width: 118px;
        height: 118px;
    }
}

/*** INSTALLS MOBILE ***/
#installs-mobile-wrapper {
    position: relative;
    padding: 0;
    background: #000;
    overflow: hidden;
    display: none;
}
/* >> Installs Mobile - Slideshow */
#installs-mobile-carousel-1-slideshow-wrapper .cycle-slideshow,
#installs-mobile-carousel-2-slideshow-wrapper .cycle-slideshow,
#installs-mobile-carousel-3-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 65vh;
}
#installs-mobile-carousel-1-slideshow-wrapper .slide,
#installs-mobile-carousel-2-slideshow-wrapper .slide,
#installs-mobile-carousel-3-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#installs-mobile-carousel-1-slide-1 {
    background-image: url('/-/media/f459dbeed9ac4a4f83f14a1882f299f9.ashx');
}
#installs-mobile-carousel-1-slide-2 {
    background-image: url('/-/media/b0b0f78fa598438e89f0a121e26013a1.ashx');
}
#installs-mobile-carousel-1-slide-3 {
    background-image: url('/-/media/18ff77372c4545e69a626a3de7705bfc.ashx');
}
#installs-mobile-carousel-1-slide-4 {
    background-image: url('/-/media/27d90a0ef56a4e48a1165ce53f3f107d.ashx');
}
#installs-mobile-carousel-1-slide-5 {
    background-image: url('/-/media/8682ffa35e2d4dd3a898e3003ccaa926.ashx');
}
#installs-mobile-carousel-1-slide-6 {
    background-image: url('/-/media/d7fe94184264426fbbe7ab5c1bc5ff36.ashx');
}
#installs-mobile-carousel-1-slide-7 {
    background-image: url('/-/media/19a7c0ef1457407ca82ad82abe8d6741.ashx');
}
#installs-mobile-carousel-2-slide-1 {
    background-image: url('/-/media/8710258e0816463398e0b077cf4ae2b7.ashx');
}
#installs-mobile-carousel-2-slide-2 {
    background-image: url('/-/media/4dd71d2271154ce695cb4f4e2ef26706.ashx');
}
#installs-mobile-carousel-2-slide-3 {
    background-image: url('/-/media/8a8be951170542228c8a7aac4d7b5358.ashx');
}
#installs-mobile-carousel-2-slide-4 {
    background-image: url('/-/media/60afcc322a0c47468209d02def09a127.ashx');
}
#installs-mobile-carousel-2-slide-5 {
    background-image: url('/-/media/808f7dd5bd7247c18c035bcc07bc3893.ashx');
}
#installs-mobile-carousel-2-slide-6 {
    background-image: url('/-/media/fd9877bf669b42aab2e5d9d17e33c054.ashx');
}
#installs-mobile-carousel-2-slide-7 {
    background-image: url('/-/media/2527289ed3f242de8e66cea4a604c0d0.ashx');
}
#installs-mobile-carousel-3-slide-1 {
    background-image: url('/-/media/93f9fb8eebfb4b42974957d739c36e11.ashx');
}
#installs-mobile-carousel-3-slide-2 {
    background-image: url('/-/media/3809e63dd69945028e957ec0f2c82535.ashx');
}
#installs-mobile-carousel-3-slide-3 {
    background-image: url('/-/media/5a75e807c863490188577a748a67c504.ashx');
}
#installs-mobile-carousel-3-slide-4 {
    background-image: url('/-/media/cf9c9ee3258140d5bb517bca1a30d073.ashx');
}
#installs-mobile-carousel-3-slide-5 {
    background-image: url('/-/media/4a5535932c9640ab80f7b73d72760c87.ashx');
}
#installs-mobile-carousel-3-slide-6 {
    background-image: url('/-/media/9cdcfafa65904a078cd12d20bb57908c.ashx');
}
#installs-mobile-carousel-3-slide-7 {
    background-image: url('/-/media/36823196fab946daafcbcb5be8ffb9fc.ashx');
}
#installs-mobile-carousel-2,
#installs-mobile-carousel-3 {
    display: none;
}
/* >> Installs Mobile - Carousel Controls */
#installs-mobile-carousel-controls {
    position: absolute;
    bottom: -137px;
    left: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
}
#installs-mobile-carousel-controls.open {
    bottom: 0;
}
#installs-mobile-carousel-controls > button {
    width: 100px;
    height: 55px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border: none;
    background: #fff;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#installs-mobile-carousel-controls > button svg,
#installs-mobile-carousel-controls > button i {
    color: #000;
}
#installs-mobile-carousel-controls > button svg.fa-caret-down,
#installs-mobile-carousel-controls > button i.fa-caret-down {
    display: none;
    position: relative;
    top: -1px;
}
#installs-mobile-carousel-controls > button span {
    font-size: 10px;
    display: block;
    width: 80px;
    margin: 0 auto;
    font-weight: 700 !important;
    position: relative;
    top: -3px;
    line-height: 1.15em;
    color: #666;
}
#installs-mobile-carousel-controls.open > button {
    width: 40px;
    height: 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    top: 5px;
}
#installs-mobile-carousel-controls.open > button span {
    display: none;
}
#installs-mobile-carousel-controls.open > button svg.fa-caret-up,
#installs-mobile-carousel-controls.open > button i.fa-caret-up {
    display: none;
}
#installs-mobile-carousel-controls.open > button svg.fa-caret-down,
#installs-mobile-carousel-controls.open > button i.fa-caret-down {
    display: inline-block;
}
#installs-mobile-carousel-controls .controls-wrapper {
    height: 137px;
    background: #fff;
    width: 100vw;
    padding: 20px;
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper {
    width: 100%;
    margin-top: 15px;
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel {
    width: 100%;
    height: 59px;
    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;
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button {
    border: 1px solid transparent;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    margin: 0 5px;
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button.active {
    border: 1px solid #616164;
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button {
    width: 59px;
    height: 59px;
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button:first-of-type {
    background-image: url('/-/media/d4ba5fb46fb44540b5e7e945bc504699.ashx');
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button:nth-of-type(2) {
    background-image: url('/-/media/5d2edb2ac987449390b5886ad7bf46ee.ashx');
}
#installs-mobile-carousel-controls .controls-wrapper .panels-wrapper .colors-panel button:last-of-type {
    background-image: url('/-/media/8c89b93a58de46e691a14738dc622995.ashx');
}
/* >> Installs Mobile - Media Queries */
@media only screen and (max-width: 767px) {
    #installs-mobile-wrapper {
        display: block;
    }
}
@media only screen and (max-width: 500px) {
    #installs-mobile-carousel-controls > button span {
        margin-left: -5px;
    }
}

/*** COLORLINE ***/
#colorline-wrapper {
    position: relative;
    padding: 0;
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}
/* >> Colorline - Slideshow */
#colorline-slideshow-wrapper .cycle-slideshow {
    width: 100%;
    height: 100vh;
}
#colorline-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
}
#colorline-slideshow-wrapper .slide-content {
    width: inherit;
    height: inherit;
    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;
}
#colorline-slideshow-wrapper  .slide-content .text-content h1,
#colorline-slideshow-wrapper  .slide-content .text-content h2,
#colorline-slideshow-wrapper  .slide-content .text-content p {
    text-align: center;  
}
#colorline-slideshow-wrapper  .slide-content .text-content h1 {
    text-transform: none;
    font-size: 35px;
    font-weight: 600 !important;
    letter-spacing: 4px;
    margin-bottom: 0;
    color: #222;
}
#colorline-slideshow-wrapper  .slide-content .text-content h2 {
    margin: 12px 0;
    font-weight: 500 !important;
}
#colorline-slideshow-wrapper  .slide-content .text-content h2 button {
    border: none;
    background: #fff;
    padding: 0 5px;
    color: #999;
}
#colorline-slideshow-wrapper  .slide-content .text-content h2 button.active {
    color: #222;
}
#colorline-slideshow-wrapper  .slide-content .text-content h2 span.slash-separator {
    position: relative;
    top: -2px;
}
#colorline-slideshow-wrapper  .slide-content .text-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
#colorline-slideshow-wrapper  .slide-content .text-content a.mlkn-button {
    display: block;
    margin: 0 auto;
    width: 300px;
    text-align: center;
    background: #000;
    border: 1px solid #000;
    font-weight: 600 !important;
    color: #fff;
}
#colorline-slideshow-wrapper  .slide-content .text-content > span {
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}
/* >> Colorline - Colors Content */
#colorline-slideshow-wrapper  .slide-content .colorline-content {
    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;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .design-label {
    width: 80px;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .design-label span {
    font-size: 40px;
    font-weight: 700 !important;
    letter-spacing: 3px;
    display: block;
    color: #999;
    -webkit-transform: rotate(270deg) translate(-68px, 20px);
    -ms-transform: rotate(270deg) translate(-68px, 20px);
    transform: rotate(270deg) translate(-68px, 20px);
    text-align: right;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .design-label.orb span {
    -webkit-transform: rotate(270deg) translate(-39px, 20px);
    -ms-transform: rotate(270deg) translate(-39px, 20px);
    transform: rotate(270deg) translate(-39px, 20px);
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .tiles-content {
    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-content .colorline-content .tiles-content .tiles-row {
    margin: 5px 0;
    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  .slide-content .colorline-content .color-tile {
    margin: 0 7px;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .color-tile a {
    text-decoration: none;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .color-tile img {
    width: 125px;
    height: 125px;
    display: block;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .color-tile span {
    display: block;
    font-size: 10px;
    line-height: 1.2em;
    color: #212121;
}
#colorline-slideshow-wrapper  .slide-content .colorline-content .color-tile span:first-of-type {
    margin-top: 3px;
}
/* >> Colorline - Media Queries */
@media only screen and (max-width: 1550px) {
    #colorline-slideshow-wrapper .slide-content .colorline-content .design-label {
        width: 40px;
    }
    #colorline-slideshow-wrapper .slide-content .colorline-content .design-label span {
        font-size: 30px;
        -webkit-transform: rotate(270deg) translate(-63px, 9px);
        -ms-transform: rotate(270deg) translate(-63px, 9px);
        transform: rotate(270deg) translate(-63px, 9px);
    }
    #colorline-slideshow-wrapper  .slide-content .colorline-content .design-label.orb span {
        -webkit-transform: rotate(270deg) translate(-39px, 9px);
        -ms-transform: rotate(270deg) translate(-39px, 9px);
        transform: rotate(270deg) translate(-39px, 9px);
    }
    #colorline-slideshow-wrapper .slide-content .colorline-content .color-tile img {
        width: 100px;
        height: 100px;
    }
    #colorline-slideshow-wrapper .slide-content .colorline-content .color-tile span {
        font-size: 8px;
    }
}
@media only screen and (max-width: 1250px) {
    #colorline-wrapper {
        display: none;
    }
}
/* >> Colorline - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #colorline-slideshow-wrapper .slide-content .text-content h1 {
        font-size: 50px;
    }
    #colorline-slideshow-wrapper .slide-content .text-content h2 {
        font-size: 30px;
    }
    #colorline-slideshow-wrapper .slide-content .text-content p {
        max-width: 700px;
        font-size: 25px;
    }
    #colorline-slideshow-wrapper .slide-content .text-content a.mlkn-button {
        font-size: 22px;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 400px;
    }
    #colorline-slideshow-wrapper .slide-content .text-content > span {
        font-size: 18px;
    }
    #colorline-slideshow-wrapper .slide-content .colorline-content .color-tile img {
        width: 175px;
        height: 175px;
    }
    #colorline-slideshow-wrapper .slide-content .colorline-content .color-tile span {
        font-size: 14px;
    }
}

/*** COLORLINE MOBILE ***/
#colorline-mobile-wrapper {
    position: relative;
    padding: 0;
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
    display: none;
}
/* >> Colorline Mobile - Slideshow */
#colorline-mobile-slideshow-wrapper .cycle-slideshow {
    width: 100%;
    height: 146vh;
}
#colorline-mobile-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    overflow: hidden;
}
#colorline-mobile-slideshow-wrapper .slide-content {
    width: inherit;
    height: inherit;
    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;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h1,
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h2,
#colorline-mobile-slideshow-wrapper  .slide-content .text-content p {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h1 {
    text-transform: none;
    font-size: 35px;
    font-weight: 600 !important;
    letter-spacing: 4px;
    margin-bottom: 0;
    color: #222;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h2 {
    margin: 12px 0;
    font-weight: 500 !important;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h2 button {
    border: none;
    background: #fff;
    padding: 0 5px;
    color: #999;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h2 button.active {
    color: #222;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content h2 span.slash-separator {
    position: relative;
    top: -2px;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content a.mlkn-button {
    display: block;
    margin: 0 auto;
    width: 300px;
    text-align: center;
    background: #000;
    border: 1px solid #000;
    font-weight: 600 !important;
    color: #fff;
}
#colorline-mobile-slideshow-wrapper  .slide-content .text-content > span {
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}
/* >> Colorline - Colors Content */
#colorline-mobile-slideshow-wrapper  .colorline-content img {
    height: 1000px;
}
/* >> Colorline - Media Queries */
@media only screen and (max-width: 1250px) {
    #colorline-mobile-wrapper {
        display: block;
    }
}
@media only screen and (max-width: 991px) {
    #colorline-mobile-slideshow-wrapper .slide-content .text-content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 600px) {
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 137vh;
    }
    #colorline-mobile-slideshow-wrapper  .colorline-content img {
        height: auto;
        width: 500px;
    }
}
@media only screen and (max-width: 550px) {
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 124vh;
    }
    #colorline-mobile-slideshow-wrapper  .colorline-content img {
        width: 450px;
    }
}
@media only screen and (max-width: 500px) {
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 116vh
    }
    #colorline-mobile-slideshow-wrapper .slide-content .text-content h1 {
        font-size: 30px;
    }
    #colorline-mobile-slideshow-wrapper .slide-content .text-content h2 {
        font-size: 16px;
    }
    #colorline-mobile-slideshow-wrapper  .colorline-content img {
        width: 350px;
    }
}

/* >> Colorline Mobile - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 145vh;
    }
    #colorline-mobile-slideshow-wrapper .slide-content .text-content p {
        font-size: 14px;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 130vh;
    }

}
/* >> Colorline Mobile - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 150vh;
    }
}
/* >> Colorline Mobile - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #colorline-mobile-slideshow-wrapper .cycle-slideshow {
        height: 165vh;
    }
    #colorline-mobile-slideshow-wrapper .slide-content .text-content h2 {
        font-size: 14px;
    }
    #colorline-mobile-slideshow-wrapper .slide-content .text-content p {
        font-size: 15px;
    }
    #colorline-mobile-slideshow-wrapper .slide-content .text-content a.mlkn-button {
        width: 280px;
    }
    #colorline-mobile-slideshow-wrapper  .colorline-content img {
        width: 300px;
    }
}

/*** FUTURE PROOF ***/
#future-proof-wrapper {
    height: 100vh;
    background-image: url('/-/media/287e0a97788545ddba70caee04ed247c.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    position: relative;
    min-height: 850px;
}
/* >> Future Proof - Hotspots */
#future-proof-hotspot-1 {
    bottom: 33%;
    left: 38%;
}
/* >> Future Proof - Left Panel */
#future-proof-wrapper .left-panel {
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    background-image: url('/-/media/10b0e31566d040c6ba62ac41dbc697b5.ashx');
    background-repeat: no-repeat;
    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: 850px;
}
/* >> Future Proof - Content */
#future-proof-wrapper .left-panel .content {
    max-width: 350px;
    margin-left: 75px;
}
#future-proof-wrapper .left-panel .content h1 {
    font-size: 32px;
    font-weight: 500 !important;
    margin-bottom: 0.63em;
}
#future-proof-wrapper .left-panel .content p {
    font-size: 18px;
    color: #666;
}
/* >> Future Proof - Link */
#future-proof-wrapper .left-panel a.mlkn-button {
    display: block;
    width: 350px;
    text-align: center;
    position: relative;
    top: 175px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border: 1px solid #fff;
    font-weight: 700 !important;
    color: #000;
}
/* >> Future Proof - Mobile Content */
#future-proof-mobile-wrapper {
    min-height: 35vh;
    background: #f0f0f0;
    display: none;
    -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;
    position: relative;
}
#future-proof-mobile-wrapper .content {
    max-width: 720px;
    padding: 40px 30px;
}
#future-proof-mobile-wrapper .content h1,
#future-proof-mobile-wrapper .content p {
    text-align: center;
}
#future-proof-mobile-wrapper .content h1 {
    font-size: 32px;
    font-weight: 500 !important;
    max-width: 600px;
}
#future-proof-mobile-wrapper .content p {
    font-size: 16px;
}
#future-proof-mobile-wrapper .content a.mlkn-button {
    display: block;
    font-size: 15px;
    font-weight: 700 !important;
    text-align: center;
    width: 330px;
    margin: 20px auto 0;
    border: 1px solid #000;
    background: #000;
}
/* >> Future Proof - Media Queries */
@media only screen and (max-width: 1450px) {
    #future-proof-wrapper .left-panel .content {
        max-width: 300px;
    }
    #future-proof-wrapper .left-panel .content h1 {
        font-size: 33px;
    }
    #future-proof-wrapper .left-panel .content p {
        font-size: 17px;
    }
    #future-proof-wrapper .left-panel {
        background-position-x: -50px;
    }
}
@media only screen and (max-width: 1300px) {
    #future-proof-hotspot-1 {
        bottom: 39%;
        left: 52%;
    }
}
@media only screen and (max-width: 1050px) {
    #future-proof-hotspot-1 {
        left: 60%;
    }
}
@media only screen and (max-width: 991px) {
    #future-proof-wrapper {
        height: 65vh;
        background-position-x: center;
        min-height: 0;
    }
    #future-proof-hotspot-1 {
        display: none;
    }
    #future-proof-wrapper .left-panel {
        display: none;
    }
    #future-proof-mobile-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media only screen and (max-width: 625px) {
    #future-proof-mobile-wrapper .content h1 {
        font-size: 26px;
    }
}
@media only screen and (max-width: 500px) {
    #future-proof-mobile-wrapper .content h1 {
        font-size: 23px;
    }
    #future-proof-mobile-wrapper .content p {
        font-size: 15px;
    }
}
/* >> Future Proof - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #future-proof-wrapper .left-panel .content {
        max-width: 525px;
    }
    #future-proof-wrapper .left-panel .content h1 {
        font-size: 40px;
    }
    #future-proof-wrapper .left-panel .content p {
        font-size: 25px;
    }
}
/* >> Future Proof - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #future-proof-mobile-wrapper .content h1 {
        font-size: 19px;
    }
    #future-proof-mobile-wrapper .content p {
        font-size: 15px;
    }
    #future-proof-mobile-wrapper .content a.mlkn-button {
        width: 302px;
        font-size: 14px;
    }
}

/*** MY ROOM TOOL ***/
#my-room-tool-wrapper {
    position: relative;
    padding: 0;
    background: #fff;
    overflow: hidden;
}
/* >> My Room Tool - Slideshow */
#my-room-tool-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#my-room-tool-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#my-room-tool-slide-1 {
    background-image: url('/-/media/3f0d8e45f7214a47b4404174f89620ae.ashx');
}
#my-room-tool-slide-2 {
    background-image: url('/-/media/5295e3a74619454ab9137da738804298.ashx');
}
#my-room-tool-slide-3 {
    background-image: url('/-/media/8f4da4b395c046109acae0a6bae56f04.ashx');
}
#my-room-tool-slide-4 {
    background-image: url('/-/media/efeb72950e824963857440fa5172c833.ashx');
}
#my-room-tool-slideshow-wrapper .slide-content {
    width: inherit;
    height: inherit;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 220px;
}
#my-room-tool-slideshow-wrapper .slide-content b,
#my-room-tool-slideshow-wrapper .slide-content h1,
#my-room-tool-slideshow-wrapper .slide-content p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}
#my-room-tool-slideshow-wrapper .slide-content h1 {
    text-transform: none;  
}
#my-room-tool-slideshow-wrapper .slide-content b {
    font-size: 30px;
    font-weight: 400 !important;
}
#my-room-tool-slideshow-wrapper .slide-content h1 {
    font-size: 38px;  
    margin: 20px 0;
    letter-spacing: 4px;
    font-weight: 300 !important;
}
#my-room-tool-slideshow-wrapper .slide-content h1 span.collection-name {
    font-weight: 600 !important;
}
#my-room-tool-slideshow-wrapper .slide-content h1 span.o-name {
    font-weight: 800 !important;
    font-size: 53px;
}
#my-room-tool-slideshow-wrapper .slide-content p {
    font-size: 18px;
}
#my-room-tool-slideshow-wrapper .slide-content .buttons {
    text-align: center;  
    margin-top: 40px;
}
#my-room-tool-slideshow-wrapper .slide-content a.mlkn-button {
    width: 300px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #000;
    font-weight: 700 !important;
}
#my-room-tool-slideshow-wrapper .slide-content .buttons a:last-of-type {
    margin-left: 30px;  
}  
/* >> My Room Tool - Pager */
#my-room-tool-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: 370px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#my-room-tool-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #bbb;
}
#my-room-tool-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #f8f8f8;  
}
/* >> My Room Tool - Slideshow Controls */
#my-room-tool-outer-wrapper {
    position: relative;  
}
#my-room-tool-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 500;
}
#my-room-tool-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
}
#my-room-tool-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#my-room-tool-slideshow-controls button:focus {
    outline: none;
}
/* >> My Room Tool - Media Queries */
@media only screen and (max-width: 1450px) {
    #my-room-tool-slideshow-wrapper .slide-content h1 {
        font-size: 34px;
    }
    #my-room-tool-slideshow-wrapper .slide-content h1 span.o-name {
        font-size: 49px;
    }
}
@media only screen and (max-width: 1199px) {
    #my-room-tool-slideshow-wrapper .slide-content h1 {
        font-size: 30px;
    }
    #my-room-tool-slideshow-wrapper .slide-content h1 span.o-name {
        font-size: 45px;
    }
}
@media only screen and (max-width: 1099px) {
    #my-room-tool-slideshow-wrapper .slide-content h1 {
        font-size: 27px;
    }
    #my-room-tool-slideshow-wrapper .slide-content h1 span.o-name {
        font-size: 46px;
    }
    #my-room-tool-slideshow-wrapper .slide-content a.mlkn-button {
        width: 260px;  
    }
}
@media only screen and (max-width: 991px) {
    #my-room-tool-slideshow-wrapper .slide-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: auto;
    }
    #my-room-tool-slideshow-wrapper .slide-content b {
        font-size: 20px;  
    }
    #my-room-tool-slideshow-wrapper .slide-content p {
        font-size: 16px;
    }
    #my-room-tool-slideshow-wrapper .slide-content a.mlkn-button {
        display: block;
        margin: 20px auto !important;
        width: 300px;
    }
    #my-room-tool-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #my-room-tool-slideshow-controls {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #my-room-tool-slideshow-controls {
        margin: 20px 0 0;
    }
}
@media only screen and (max-width: 500px) {
    #my-room-tool-slideshow-wrapper .slide-content h1 {
        font-size: 20px;
        margin: 10px 0;
    }
    #my-room-tool-slideshow-wrapper .slide-content h1 span.o-name {
        font-size: 30px;
    }
    #my-room-tool-slideshow-wrapper .slide-content p {
        font-weight: 500 !important;
    }
    #my-room-tool-slideshow-wrapper .slide-content a.mlkn-button {
        width: 300px;
    }
}
/* >> 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-slideshow-wrapper .slide-content h1 {
        font-size: 60px;
    }
    #my-room-tool-slideshow-wrapper .slide-content h1 span.o-name {
        font-size: 80px;
    }
    #my-room-tool-slideshow-wrapper .slide-content p {
        font-size: 25px;
    }
    #my-room-tool-slideshow-wrapper .slide-content a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;        
    }
}
/* >> 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-slideshow-wrapper .slide-content h1 {
        font-size: 18px;  
    }
    #my-room-tool-slideshow-wrapper .slide-content p {
        font-size: 15px;
    }
    #my-room-tool-slideshow-wrapper .slide-content a.mlkn-button {
        width: 280px;
    }
    #my-room-tool-slideshow-controls {
        bottom: 30px;
    }
    #my-room-tool-slideshow-wrapper .cycle-slideshow {
        height: 105vh;
    }
}

/*** SHOP NOW ***/
#shop-now-wrapper {
    height: 100vh;
    background-image: url('/-/media/17dbef5f5d984aa9b5cc6730889946fc.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 h1,
#shop-now-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
}
#shop-now-wrapper h1 {
    font-size: 60px;  
    letter-spacing: 10px;
    margin-bottom: 15px;
    font-weight: 600 !important;
}
#shop-now-wrapper h1 span {
    font-weight: 800 !important;
    font-size: 80px;
}
#shop-now-wrapper p {
    font-size: 20px;
    letter-spacing: 8px;
}
#shop-now-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
}
#shop-now-wrapper a.mlkn-button {
    width: 315px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #000;
    font-weight: 700 !important;
}
#shop-now-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
}
/* >> Shop Now - Media Queries */
@media only screen and (max-width: 1450px) {
    #shop-now-wrapper h1 {
        letter-spacing: 5px;
    }
}
@media only screen and (max-width: 1275px) {
    #shop-now-wrapper h1 {
        font-size: 50px;
    }
    #shop-now-wrapper h1 span {
        font-size: 70px;
    }
}
@media only screen and (max-width: 1100px) {
    #shop-now-wrapper h1 {
        font-size: 40px;
    }
    #shop-now-wrapper h1 span {
        font-size: 60px;
    }
    #shop-now-wrapper p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 991px) {
    #shop-now-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
    }
    #shop-now-wrapper p {
        letter-spacing: 5px;
    }
}
@media only screen and (max-width: 767px) {
    #shop-now-wrapper .row > div {
        padding: 0 !important;
    }
}
@media only screen and (max-width: 600px) {
    #shop-now-wrapper p {
        font-size: 17px;
        letter-spacing: 2px; 
    }
}
@media only screen and (max-width: 575px) {
    #shop-now-wrapper h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
    #shop-now-wrapper h1 span {
        font-size: 45px;
    }
    #shop-now-wrapper .buttons {
        margin-left: 30px;
        margin-right: 30px;
    }
    #shop-now-wrapper a.mlkn-button {
        width: auto;
    }
}
@media only screen and (max-width: 500px) {

}
/* >> TShop Now - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #shop-now-wrapper h1 {
        font-size: 95px;
    }
    #shop-now-wrapper h1 span {
        font-size: 125px;
    }
    #shop-now-wrapper p {
        font-size: 35px;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #shop-now-wrapper h1 {
        white-space: nowrap;
    }
}
/*iphone 6, 6s, 7, 8*/
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #shop-now-wrapper h1 {
        white-space: nowrap;
    }
}
/* >> 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 h1 {
        font-size: 25px;
        white-space: nowrap;
    }
    #shop-now-wrapper h1 span {
        font-size: 35px;
    }
    #shop-now-wrapper p {
        font-size: 15px;
    }
    #shop-now-wrapper a.mlkn-button {
        font-size: 14px;
        width: 275px;
    }
    #shop-now-wrapper .buttons {
        margin-left: 25px;
    }
}

/*** PRINTWORKS ***/
#printworks-wrapper {
    height: 300px;
    background-image: url('/-/media/249cc41bd670473dacc5c70a6953775a.ashx');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}
/* >> PrintWorks - Image */
#printworks-wrapper img {
    width: 100%;
    margin-top: 65px;
}
/* >> PrintWorks - Button */
#printworks-wrapper a.mlkn-button {
    background: #036;
    border: 1px solid #036;
    text-align: center;
    margin-top: 135px;
    width: 300px;
    color: #fff;
    font-weight: 700 !important;
}
/* >> PrintWorks - Media Queries */
/* >> PrintWorks - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #printworks-wrapper a.mlkn-button {
        font-size: 20px;
    }
}
@media only screen and (max-width: 1199px) {
    #printworks-wrapper img {
      margin-top: 50px;  
    }
}
/*ipad pro*/
@media only screen and (width: 1024px) and (-webkit-device-pixel-ratio: 2) {
    #printworks-wrapper img {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 991px) {
    #printworks-wrapper img {
      margin-top: 75px;  
    }
}
@media only screen and (max-width: 767px) {
    #printworks-wrapper img {
      margin-top: 40px;  
    }
    #printworks-wrapper a.mlkn-button {
      display: block;
      margin: 30px auto 0;
    }
}


/*** 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;
    margin-bottom: 1rem;
}
/* >> 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;
    }
}