<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    height: 100%;
}

html {
    overflow: hidden;
}

body {
    background-color: #3B3E44;
    box-sizing: content-box;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0px; /* Scrollbar width calculated in JS */
    width: 100%;
}

.site-container {
    background-color: #FCFCFC;
    float: left;
    height: 100vh;
    position: fixed;
    width: 80%;
}

.header-wrap {
    background: #fcfcfc;
    display: grid;
    left: 0;
    grid-template-columns: 0.9fr 5.1fr 1fr;
    padding: 0;
    position: fixed;
    right: 20%;
    z-index: 1;

    transition: transform 750ms ease-in-out;
}

.hamburger {
    transition: transform 550ms ease-in-out 200ms;
}

.open {
    transform: unset;
}

.close {
    transform: translateY(-100%);
}

.genesis-nav-menu a span, .login-button .login-text {
    font-size: 1rem;
}

.nav-primary {
    width: 100%;
}

.genesis-nav-menu {
    display: flex;
    justify-content: space-around;
}

.genesis-nav-menu a {
    padding: 0.422rem;
    text-align: center;
}

.genesis-nav-menu .current-menu-item &gt; a &gt; span {
    padding-bottom: 0;
    border-width: 2px;
}

.entry-header {
    grid-column: span 3;
    z-index: 1;
}

.login-button .login-text {
    margin-left: 0;
}

.site-header {
    margin-left: 3.157rem;
}

.header-wrap &gt; a:last-of-type, .breadcrumb {
    margin-right: 3.157rem;
}

.entry-title {
    margin-left: calc(3.157rem + 30px);
}

.breadcrumb {
    display: block;
}

.breadcrumb a {
    color: #919396;
}

.nav-toggle {
    bottom: 0px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 100%);
    z-index: 0;
}

.nav-toggle button {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: unset;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    outline: none;
    padding: 0;
    text-transform: capitalize;
    width: 50px;
}

.open .nav-toggle button {
    height: 45px;
}
.close .nav-toggle button {
    height: 50px;
}

.toggle-indicator {
    left: 50%;
    position: absolute;
}

.open .toggle-indicator {
    top: -5px;
}
.close .toggle-indicator {
    top: -15px;
}

.toggle-indicator span {
    border-bottom: 2px solid #3B3E44;
    border-right: 2px solid #3B3E44;
    border-radius: 2px;
    box-shadow: inset -3px -3px 1px -1px #FCFCFC;
    display: block;
    height: 20px;
    margin: -10px;
    width: 20px;
}

.open .toggle-indicator span {
    transform: rotate(-135deg);
    animation: TrafficUp 2s infinite;
}
.close .toggle-indicator span {
    transform: rotate(45deg);
    animation: TrafficDown 2s infinite;
}

.open .toggle-indicator span:nth-child(2) {
    animation-delay: 200ms;
}
.open .toggle-indicator span:nth-child(3) {
    animation-delay: 400ms;
}
.close .toggle-indicator span:nth-child(2) {
    animation-delay: -200ms;
}
.close .toggle-indicator span:nth-child(3) {
    animation-delay: -400ms;
}

@keyframes TrafficUp {
    0% {
        opacity: 0;
        transform: rotate(-135deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(-135deg) translate(20px, 20px);
    }
}

@keyframes TrafficDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.content {
    padding: 0;
}

.content article {
    margin-bottom: 0;
}

.builder-nav {
    border-left: 2px solid #2B2B2B;
    float: right;
    width: 20%;
}

.builder-nav li {
    position: relative;
    z-index: 1;
}

.builder-nav li.active {
    z-index: 2;
}

.builder-nav button {
    background: #3B3E44;
    border-bottom: 2px solid #575757;
    border-top: 2px solid #2B2B2B;
    border-radius: 0;
    color: #919396;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    padding: 2.369rem;
    text-align: left;
    text-transform: capitalize;
    width: 100%;

    transition: transform 150ms ease;
}

.builder-nav .in-frame button:hover, .builder-nav .active button {
    color: #FCFCFC;
    font-weight: 900;

    transform: scaleX(1.05) translateX(-2.5%);
}

.builder-nav .in-frame:not(.active) button:hover {
    border-color: #3B3E44;
}

.builder-nav .active button {
    border-color: #777C71;
}

.builder-nav .active button {
    background: #777C71;
    cursor: default;
}

.builder-nav .in-frame button:hover span, .builder-nav .active span {
    font-weight: 400;
}

.builder-nav .out-frame button {
    cursor: default;
}

.strike button {
    text-decoration: line-through;
}

.strike.active button {
    text-decoration: unset;
}

/* START checkmark */
.checkmark {
    height: 44px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 1.333rem;
    top: calc(50% - 24px);
    width: 44px;

    transform: scale(0.65);
    transition: transform 150ms ease;
}

.builder-nav .in-frame button:hover + .checkmark, .builder-nav .active button + .checkmark {
    transform: scale(0.68) translateX(-5%);
}

.hide {
    display: none;
}

.check-icon {
    border: 2px solid gray;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border-radius: 50%;
    box-sizing: content-box;
    height: 40px;
    padding: 0;
    position: relative;
    width: 40px;
}

.check-icon.check-success {
    border-color: #78E67C;
}

.check-icon.check-success::before, .check-icon.check-success::after {
    content: '';
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border-radius: 50%;
    position: absolute;
    height: 60px;
    background: #3b3e44;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 30px;
}
.active .check-icon.check-success::before, .active .check-icon.check-success::after {
    background: #777c71;
}

.check-icon.check-success::before {
    -webkit-border-radius: 60px 0 0 60px;
    border-radius: 30px 0 0 60px;
    top: -3px;
    left: -16px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 30px 30px;
    transform-origin: 30px 30px;
}

.check-icon.check-success::after {
    -webkit-border-radius: 0 60px 60px 0;
    border-radius: 0 60px 60px 0;
    top: -5px;
    left: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0px 30px;
    transform-origin: 0px 30px;
}

.check-icon.check-success .check-placeholder {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(120, 230, 124, .5);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -2px;
    top: -2px;
    z-index: 2;
}

.check-icon.check-success .check-fix {
    width: 2px;
    height: 45px;
    background-color: #3b3e44;
    position: absolute;
    left: 14px;
    top: 4px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.active .check-icon.check-success .check-fix {
    background: #777c71;
}

.check-icon.check-success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.animateSuccessTip {
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 23px;
        top: 27px;
    }
    65% {
        width: 0;
        right: 23px;
        top: 27px;
    }
    84% {
        width: 27px;
        right: 0px;
        top: 17px;
    }
    100% {
        width: 23px;
        right: 4px;
        top: 19px;
    }
}
@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 0px;
        top: 9px;
    }
    54% {
        width: 0;
        left: 0px;
        top: 9px;
    }
    70% {
        width: 25px;
        left: -4px;
        top: 17px;
    }
    84% {
        width: 8px;
        left: 10px;
        top: 24px;
    }
    100% {
        width: 12px;
        left: 7px;
        top: 22px;
    }
}
@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 0px;
        top: 9px;
    }
    54% {
        width: 0;
        left: 0px;
        top: 9px;
    }
    70% {
        width: 25px;
        left: -4px;
        top: 17px;
    }
    84% {
        width: 8px;
        left: 10px;
        top: 24px;
    }
    100% {
        width: 12px;
        left: 7px;
        top: 22px;
    }
}
  
@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 23px;
        top: 27px;
    }
    65% {
        width: 0;
        right: 23px;
        top: 27px;
    }
    84% {
        width: 27px;
        right: 0px;
        top: 17px;
    }
    100% {
        width: 23px;
        right: 4px;
        top: 19px;
    }
}

.check-icon.check-success .check-line {
    height: 2px;
    background-color: #78E67C;
    display: block;
    border-radius: 1px;
    position: absolute;
    z-index: 2;
}

.check-icon.check-success .check-line.check-tip {
    width: 12px;
    left: 7px;
    top: 23px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-icon.check-success .check-line.check-long {
    width: 23px;
    right: 4px;
    top: 19px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}

@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}
/* END checkmark */

/* START Builder Form */
.builder-form {
    background-color: #3A3A3A;
    box-sizing: content-box;
    display: none;
    height: calc(100vh - 4.209rem + 2px);
    overflow-y: auto;
    margin-left: 0px; /* To be calculated via JS */
    margin-top: 2px;
    width: 100%;

    transition: width 300ms ease-in-out;
}

.builder-form.up {
    display: grid;
    grid-template-areas: "close" "form-content";
    grid-template-rows: [close] min-content [form-content] auto;
    margin-top: 2px;
}

#close-form {
    background-color: #3B3E44;
    border-bottom: 2px solid #575757;
    cursor: pointer;
    grid-area: close;
    padding: 1.333rem;
}

#close-form span {
    color: #919396;
    font-size: 1rem;
    margin-left: 0.5rem;
}

#close-form span::before {
    content: "\00BB";
    display: inline-block;
    font-size: 1.333rem;
    line-height: 0;
    margin-right: 0.5rem;
    padding-left: 1px;
    transform: rotate(90deg) scaleY(2);
}

.gform_wrapper, .gform_confirmation_wrapper, .gform_anchor {
    align-self: center;
    grid-area: form-content;
}

html::-webkit-scrollbar {
    width: 0px;
    background:transparent;
}

#gform_wrapper_2 { 
    border-top: 2px solid #2B2B2B;
    margin: 0
}

.builder-form .gform_wrapper li.hidden_label input,
form#gform_2 textarea {
    margin-top: 0;
    color: #FCFCFC;
}

form#gform_2 .finalize-title {
    margin-top: 2.369rem;
}

form#gform_2 .finalize-title h6 {
    color: #FCFCFC;
    margin-bottom: 1rem;
}

.finalize-title p {
    color: #919396;
    font-size: 0.9rem;
}

.form-components {
    background-color: rgba(252, 252, 252, 0.08);
    margin: 0.5rem;
}

form#gform_2 .form-components ul {
    padding: 1rem .5rem;
}

form#gform_2 .form-components ul li:first-of-type {
    padding-top: 0;
}

.component-field {
	border-bottom: 1px solid #424242;
    padding-bottom: 0.5rem;
}

form#gform_2 .form-components input, form#gform_2 .form-components label {
    color: #919396;
    font-size: 0.85rem;
    padding: 0;
}

form#gform_2 .form-components li, form#gform_2 .form-components li &gt; div {
    margin-top: 0;
}

form#gform_2 .form-components li {
    padding: 0.5em 0;
}

form#gform_2 .form-components label {
    color: #B9BABC;
    font-weight: 400;
	letter-spacing: 0;
}

.edit-build {
    background: url('/content/uploads/2019/01/edit-build-icon.png') center no-repeat;
    border: 1px solid #676767;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    position: absolute;
    right: 0;
    top: calc(50% - 14px);
    width: 28px;
}

form#gform_2 .form-components input {
    background-color: transparent;
    cursor: default;
    margin-left: 22px;
    width: calc(100% - 1rem);
}

.form-components input:focus {
    border: none;
}

form#gform_2 .component-field.magazine {
    border-bottom: none;
    padding-bottom: 0;
}

.form-components .end-finalize {
    display: none;
}

form#gform_2 .total-price input {
    background: transparent;
    color: #FCFCFC;
    font-size: 1.167rem;
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
}

.total-price input:focus {
    border: none;
}

form#gform_2 li {
    min-width: 100%;
    padding: 0 0.5rem;
}

form input, form textarea {
    background-color: rgba(252, 252, 252, 0.08);
    box-shadow: none;
    border: none;
}

form#gform_2 .gform_footer {
    visibility: hidden;
}

#gform_2 li.gfield_error {
    background-color: unset;
    border: unset;
    margin-top: 10px;
}

#gform_2 li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    border-color: #c00;
}

#gform_2 div.validation_error {
    border-color: #565C5B;
    color: #D2BFBF;
    margin-bottom: 0;
    padding: 0.5rem;
}

#gform_2 .validation_message {
    color: #D2BFBF;
    padding-top: 5px;
}

.gform_confirmation_message {
    border-top: 2px solid #565C5C;
    border-bottom: 2px solid #565C5C;
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 1.333rem;
    line-height: 1.2;
    padding: 1rem 0.5rem;
    text-align: center;
}
/* END Builder Form */

.filler {
    height: calc(4.209rem - 2px);
}

.component-cycle {
    border-left: 1px solid #3B3E44;
    border-top: 1px solid #3B3E44;
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    margin-left: -3px;
    position: fixed;
    width: 20%; /* Exact width is calculated via JS */
    z-index: 3;
}

.component-cycle a {
    background: #565C5C;
    flex-grow: 1;
    font-size: 1.333rem;
    padding: 1.333rem 0;
    text-align: center;
}

#reset, #previous {
    border-right: 1px solid #777C71;
}

#previous, #next, #finalize {
    border-left: 1px solid #3B3E44;
}

#next, #finalize {
    background: #777C71;
    color: #FCFCFC;
    font-weight: bold;
}

#reset, .no-sibling {
    color: #777C71;
}

#finalize {
    display: none;

    transition: color 150ms, background-color 150ms;
}

#finalize.submit.disable-submit {
    background-color: #919396;
    color: #C3C3C3;
    cursor: default;
    pointer-events: none;
}

.has-sibling {
    color: #FCFCFC;
}

.builder-container {
    position: relative;
}

.logo-background {
    background: #FCFCFC url("/content/uploads/2018/10/fims-logo.png") center/contain no-repeat;
    height: 100px;
    margin: 0.422rem 17px;
    opacity: 0.25;
    position: absolute;
    width: 105px;
}

#component-window {
    bottom: 0;
    display: grid;
    grid-template-columns: 6fr 1fr;
    grid-template-areas: "title clear"
                         "slider slider";
    margin-left: calc(3.157rem + 30px);
    position: fixed;
    width: calc(80% - 3.157rem - 30px);
}

#component-window h3 {
    color: #333;
    display: flex;
    grid-area: title;
}

#component-window .component-info {
    background-color: #919396;
    border-radius: 50%;
    box-shadow: none;
    color: #FCFCFC;
    font-size: 16px;
    height: 27px;
    letter-spacing: 1.5px;
    line-height: 1.8;
    margin-left: 1rem;
    outline: none;
    padding: 0;
    text-transform: lowercase;
    width: 27px;
}

.reset-component {
    align-items: center;
    align-self: center;
    display: flex;
    grid-area: clear;
    margin-bottom: 1.333rem;
}

.reset-component.none-selected {
    display: none;
}

.reset-component button {
    background: none;
    box-shadow: none;
    color: #919396;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    outline: none;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    

    transition: all 250ms ease;
}

.reset-component button span {
    border: 2px solid #919396;
    border-radius: 50%;
    color: #919396;
    margin-left: 0.5rem;
    padding: 0 4px;

    transition: all 100ms ease;
}

.reset-component button:hover span {
    background-color: #d6d6d6;
    box-shadow: 0px 0px 5px 0px #919396;
    color: #747474;
}

#component-window aside {
    bottom: 0;
    height: calc(100% - 55px);
    pointer-events: none;
    position: absolute;
}

#component-window aside.left-haze {
    left: calc(-3.157rem - 30px);
    width: calc(3.157rem + 30px);

    background: linear-gradient(90deg, rgba(252,252,252,1), rgba(252,252,252,0));
}

#component-window aside.right-haze {
    right: 0;
    width: 150px;

    background: linear-gradient(90deg, rgba(252,252,252,0), rgba(252,252,252,1));
}

.component-slider {
    color: #565c5c;
    display: flex;
    grid-area: slider;
    margin-left: calc(-3.157rem - 30px);
    overflow-x: scroll;
    overflow-y: hidden;
    /* scroll-behavior: smooth; */
    text-align: center;
    white-space: nowrap;
    width: calc(100% + 3.157rem + 30px);

    /* For WebKit implementations, provide inertia scrolling */
    -webkit-overflow-scrolling: touch;
}

.component-slider &gt; div {
    flex: 0 0 auto;
    padding: 0 0.75rem;
}

.component-slider &gt; div:first-of-type {
    margin-left: calc(3.157rem + 30px);
    padding-left: 0;
}

.component-slider::after {
    content: " ";
    padding-right: 150px;
}

.active {
    cursor: pointer;
    opacity: 1;
}

.component-slider img {
    background-image: linear-gradient(to right top, #eeeeee, #fcfcfc, #fcfcfc, #eeeeee, #dfdede);
    border: 1px solid #919396;
    border-radius: 0.317rem;
    cursor: pointer;
    padding: 1rem;
    width: 200px;

    transition: box-shadow 150ms ease;
}

.component-slider img:hover {
    box-shadow: 0px 0px 5px 1px #919396;
}   

.component-slider .selected-component {
    border: 2px solid #777c71;
    box-shadow: 0px 0px 5px 1px #919396;
    cursor: default;
}

/* Confirmation Modals */
.msc-confirm {
    z-index: 99999;
}

.msc-overlay {
    background-color: #000;
    opacity: 0.5;
}

.msc-close {
    box-shadow: unset;
    font-size: 3.157rem;
    padding: 0;
}

.msc-content {
    background-color: #fcfcfc;
    border-radius: 0.317rem;
    box-shadow: 1px 1px 11px #000;
    margin: auto;
    margin-top: calc(50vh - 150px);
}

.msc-title {
    margin: 0 0 0.6em 0;
}

.msc-action button {
    background-color: #fcfcfc;
    border: 1px solid #A39F81;
    border-radius: 0.317rem;
    box-shadow: none;
    color: #A39F81;
}

button.msc-ok:hover, button.msc-ok:focus {
    background-color: #A39F81;
    border: 1px solid #A39F81;
    color: white;
}

button.msc-cancel, button.msc-cancel:hover, button.msc-cancel:focus {
    border: 1px solid #3B3E44;
    box-shadow: none;
    color: #3B3E44;
}

/* START Mobile Landscape Message */
#mobile-landscape-msg {
    background: #FCFCFC;
    bottom: 0;
    color: #3A3A3A;
    padding: 2em 3em 3em;
    display: none;
    font-size: 1.333rem;
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
}

.rotate-phone-container {
    align-items: flex-end;
    height: 150px;
    display: flex;
    justify-content: center;
}

.phone-rotate {
    align-items: center;
    background: #A9A9A9;
    border: 0 solid #2B2B2B;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    height: 0;
    justify-content: center;
    position: relative;
    width: 0;
}

.phone-rotate span {
    align-self: flex-end;
    color: #454545;
    font-size: 50px;
    line-height: 90px;
    opacity: 0;
}
/* START Mobile Landscape Message */

/**********************/
/*  Responsive Styles */
/**********************/
@media only screen and (max-width: 1440px) {
    .site-header, .entry-title {
        margin-left: 1.777rem;
    }

    .header-wrap &gt; a:last-of-type, .breadcrumb {
        margin-right: 1.777rem;
    }

    .entry-title, #component-window {
        margin-left: calc(1.777rem + 30px);
    }

    #component-window {
        width: calc(80% - 1.777rem - 30px);
    }

    #component-window aside.left-haze {
        left: calc(-1.777rem - 30px);
        width: calc(1.777rem + 30px);
    }

    .component-slider {
        margin-left: calc(-1.777rem - 30px);
        width: calc(100% + 1.777rem + 30px);
    }

    .component-slider &gt; div:first-of-type {
        margin-left: calc(1.777rem + 30px);
    }
}

@media only screen and (max-width: 1250px) {
    .site-header {
        min-height: 90px;
        margin-left: 1rem;
    }

    .header-image .title-area, .header-image .site-title, .header-image .site-title a {
        min-height: 90px;
        width: 90px;
    }

    .login-button button {
        padding: 0.422rem 0.75rem;
    }

    .entry-title {
        font-size: 2.369rem;
    }

    .genesis-nav-menu a span, .login-button .login-text {
        font-size: 0.9rem;
    }

    .checkmark {
        right: 0.5rem;
    }

    .component-cycle a {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1115px) {
    .genesis-nav-menu a span, .login-button .login-text {
        font-size: 0.85rem;
    }

    #component-window h3 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 1050px) {
    /* Hide desktop UI elements */
    .nav-toggle, .login-button, .logo-background, .builder-nav &gt; ul {
        display: none;
    }

    /* START Adjust for full width */
    .site-container {
        height: calc(100vh - 65px);
    }

    .site-container, .component-slider, .builder-nav &gt; ul {
        width: 100%;
    }

    .header-wrap {
        position: static;
        width: 100%;
    }

    #component-window {
        width: calc(100% - 1.777rem - 30px);
    }

    .component-slider {
        margin-right: -9999px;
        width: calc(100% + 1.777rem + 30px);
    }

    .component-slider::after {
        padding-right: calc(1.777rem + 30px);
    }

    .component-cycle {
        right: 0;
        width: 100%;
    }

    .component-cycle a {
        flex-basis: 0;
        font-size: 1.333rem;
    }

    #component-window {
        margin-bottom: 65px;
    }
    /* END Adjust for full width */

    .header-image .title-area, .header-image .site-title, .header-image .site-title a {
        min-height: 100px;
        width: 100px;
    }

    .site-header, .entry-title {
        margin-left: 3.157rem;
    }

    .header-wrap &gt; a:last-of-type, .breadcrumb {
        margin-right: 3.157rem;
    }

    .entry-title {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    /* START Mobile Menu */
    .wprmenu_bar #custom_menu_icon.hamburger {
        border-left: 2px solid #EDEDED;
        background-color: transparent !important;
        padding: 39px 3.157rem 31px 3.157rem;
        right: 0 !important;
        top: 0 !important;
    }

    .wprmenu_bar #custom_menu_icon.hamburger.is-active {
        border-left: unset;
    }

    .wprmenu_bar .hamburger-inner, .wprmenu_bar .hamburger-inner::before, .wprmenu_bar .hamburger:hover .hamburger-inner, .wprmenu_bar .hamburger:hover .hamburger-inner::before, .wprmenu_bar .hamburger:hover .hamburger-inner::after {
        background: #3B3E44;
    }

    .wprmenu_bar .hamburger-inner::after, .wprmenu_bar .hamburger:hover .hamburger-inner::after {
        background: linear-gradient(to right, #3B3E44 0%, #3B3E44 60%, transparent 61%, transparent 100%);
    }

    .wprmenu_bar.active .hamburger-inner, .wprmenu_bar.active .hamburger-inner::before, .wprmenu_bar.active .hamburger-inner::after, .wprmenu_bar.active .hamburger:hover .hamburger-inner, .wprmenu_bar.active .hamburger:hover .hamburger-inner::before, .wprmenu_bar.active .hamburger:hover .hamburger-inner::after {
        background: #FCFCFC;
    }

    #mg-wprm-wrap {
        background: #3B3E44ED;
    }

    #mg-wprm-wrap li.current-menu-item &gt; a {
        background: #777C71;
    }

    #mg-wprm-wrap ul#wprmenu_menu_ul li.menu-item a:hover {
        background: #565C5C;
    }
    /* END Mobile Menu */

    .canvas-container {
        border-bottom: 2px solid #EDEDED;
    }

    /* START Form */
    .builder-form {
        background-color: #3A3A3AFE;
        height: calc(100% - 170px);
        left: 0;
        position: fixed;
        right: 0;
        z-index: 1;

        transition: top 500ms;
    }

    .builder-nav .builder-form {
        display: grid;
    }

    .builder-nav .builder-form.down {
        top: 100%;
    }

    .builder-nav .builder-form.up {
        margin-top: 0;
        top: 170px;
    }

    #close-form {
        align-items: center;
        background-color: #565C5C;
        border-top: 2px solid #2B2B2B;
        align-items: center;   
        display: flex;
        justify-content: center;
    }

    #close-form span {
        font-size: 1.777rem;
    }

    #close-form span::before {
        display: none;
    }

    #gform_wrapper_2 {
        padding: 0 3.157rem 100px 3.157rem;
    }

    .finalize-title h6 {
        font-size: 2.369rem;
    }

    .form-components {
        margin: 0;
    }

    form#gform_2 .form-components ul {
        padding: 1em;
    }

    form#gform_2 li {
        padding: 0;
    }

    .form-components li {
        display: flex;
        align-items: center;
    }

    form#gform_2 .form-components input, form#gform_2 .form-components label {
        font-size: 1rem;
    }

    .form-components label::after {
        content: "\2012";
        margin-left: 5px;
    }

    .form-components li &gt; div {
        line-height: 1rem;
    }

    form#gform_2 .form-components input {
        margin-left: 5px;
        width: 100%;
    }

    .edit-build {
        right: 1em;
    }

    .form-components li:first-of-type .edit-build {
        top: calc(50% - 14px - 0.25em);
    }
    
    .form-components li.magazine .edit-build {
        top: calc(50% - 14px + 0.25em);
    }

    form#gform_2 .total-price input {
        font-size: 1.777rem;
    }
    /* END Form */

    .component-cycle a {
        background: #3B3E44;
    }

    #reset, .no-sibling {
        color: #919396;
    }

    #previous, #next, #finalize {
        border-left: 1px solid #2B2B2B;
    }

    #component-window {
        grid-template-areas: "title"
                             "slider";
        grid-template-columns: auto;
        margin-left: 2.369rem;
        width: calc(100% - 2.369rem);
    }

    #component-window h3 {
        margin: 1.777rem 0;
    }

    .reset-component {
        background: #FCFCFC;
        border-radius: 0.317rem;
        margin: 0;
        opacity: 0.75;
        padding: 0.25rem;
        position: absolute;
        right: 0.75rem;
        top: 0;
        transform: translateY(-115%);
    }

    .component-slider &gt; div {
        height: 200px;
    }

    .component-slider img {
        padding: 2rem 0.5rem;
    }

    .component-slider p {
        padding: 0 0.5rem;
    }

    .component-slider img, .component-slider p {
        width: 150px;
    }

    .component-slider p {
        margin-bottom: 1rem;
        white-space: pre-wrap;
    }

    #component-window aside.left-haze {
        left: -2.369rem;
        width: 2.369rem;
    }

    #component-window aside.right-haze {
        width: 75px;
    }

}

@media only screen and (max-width: 800px) {
    #component-window h3 {
        font-size: 2.369rem;
    }
}

@media only screen and (max-width: 600px) {
    .site-header {
        min-height: 75px;
        margin-left: 1.777rem;
    }

    .header-image .title-area, .header-image .site-title, .header-image .site-title a {
        min-height: 75px;
        width: 75px;
    }

    .wprmenu_bar #custom_menu_icon.hamburger {
        padding: 26px 1.777rem 19px 1.777rem;
    }

    .entry-title {
        font-size: 1.777rem;
        margin: 0.75rem 0 0.75rem 1.777rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
        margin-right: 1.777rem;
    }

    /* START Form */
    .builder-form {
        height: calc(100% - 126px);
    }

    .builder-nav .builder-form.up {
        top: 126px;
    }

    #gform_wrapper_2 {
        padding-left: 1.777rem;
        padding-right: 1.777rem;
    }

    .finalize-title h6 {
        font-size: 1.777rem;
    }

    .form-components li {
        display: block;
    }

    .form-components label::after {
        content: unset;
        margin-left: unset;
    }

    form#gform_2 .form-components input {
        margin-left: 26px;
    }

    form#gform_2 .total-price input {
        font-size: 1.333rem;
    }
    /* END Form */

    #component-window {
        margin-left: 1.777rem;
        width: calc(100% - 1.777rem);
    }

    #component-window h3 {
        font-size: 1.777rem;
        margin: 1rem 0;
    }

    .component-slider &gt; div {
        height: 150px;
        margin: 0 0.5rem 0.3rem;
    }

    .component-slider img {
        padding: 1.333rem 0.25rem;
    }

    .component-slider img, .component-slider p {
        width: 125px;
    }

    .component-slider p {
        font-size: 0.85rem;
        font-weight: bold;
        line-height: 0.9rem;
    }

    #component-window aside.left-haze {
        left: -1.777rem;
        width: 1.777rem;
    }

    .msc-content {
        padding: 25px 0;
    }
}

@media only screen and (max-width: 426px) and (orientation: portrait) {
    .site-header, .entry-title {
        margin-left: 1rem;
    }

    .breadcrumb {
        display: none;
    }

    #component-window h3 {
        font-size: 1.333rem;
    }

    #component-window .component-info {
        font-size: 13px;
        height: 19px;
        letter-spacing: 0.4px;
        line-height: 1.5;
        width: 19px;
    }
}

@media only screen and (max-height: 650px) and (max-width: 1050px) and (orientation: landscape) {
    .custMenu #custom_menu_icon, .component-cycle {
        display: none;
    }

    #mobile-landscape-msg {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .phone-rotate {
        -webkit-animation: sizeIncrease .5s forwards ease,  borderIncrease .5s .5s forwards ease,  rotateLeft .7s 1s forwards ease;
                animation: sizeIncrease .5s forwards ease,  borderIncrease .5s .5s forwards ease,  rotateLeft .7s 1s forwards ease;
    }
    
    .phone-rotate span {
        -webkit-animation: fadeIn .5s .8s forwards ease;
                animation: fadeIn .5s .8s forwards ease;
    }
}

/* Keyframes for mobile landscape message */
/* Animate width + height */
@-webkit-keyframes sizeIncrease {
    0% {
    width: 10px;
    height: 0;
    }
    50% {
    width: 10px;
    height: 90px;
    }
    100% {
    width: 160px;
    height: 90px;
    }
}
@keyframes sizeIncrease {
    0% {
    width: 10px;
    height: 0;
    }
    50% {
    width: 10px;
    height: 90px;
    }
    100% {
    width: 160px;
    height: 90px;
    }
}
/* Add borders */
@-webkit-keyframes borderIncrease {
    100% {
    border-width: 6px 12px;
    }
}
@keyframes borderIncrease {
    100% {
    border-width: 6px 12px;
    }
}
/* fade-in  */
@-webkit-keyframes fadeIn {
    100% {
    color: #000;
    opacity: 1;
    }
}
@keyframes fadeIn {
    100% {
    color: #000;
    opacity: 1;
    }
}
/* Rotate device */
@-webkit-keyframes rotateLeft {
    100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    }
}
@keyframes rotateLeft {
    100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);   
    }
}</pre></body></html>