/* Last-Modified: Sat, 1 Jan 2000 10:00:30 GMT [ver: ] */
/* Current-Time:Sat, 26 Sep 2026 17:06:39 -0500*/
/*! HTML5 Boilerplate v5.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/*
 * apply a natural box layout model to all elements
 */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/*Fix select boxes on certain browsers that were inheriting the select color from content.text or other variables that make it hard to read. */
.select {
    color: black;
}


/* ==========================================================================
   General
   ========================================================================== */

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font: 16px/26px 'Cardo', serif;
    font-weight: 400;
    color: #444;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

img.round {
    border: 10px solid #fff;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.05);
       -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.05);
            box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.05);
}

img.lazyload, img.lazyloaded {
    transition: opacity linear 300ms;
}

img.lazyload {
  opacity: 0;
}

img.lazyloaded {
  opacity: 1;
}

.float-right { float: right !important; }
.float-left { float: left !important; }
.float-none { float: none !important; }
.block { display: block !important; }

.margin-none { margin: 0 !important;}
.margin-top { margin-top: 30px !important; }
.margin-top-half { margin-top: 15px !important; }
.margin-bottom { margin-bottom: 30px !important; }
.margin-bottom-dbl { margin-bottom: 60px !important; }
.margin-bottom-half { margin-bottom: 15px !important; }
.margin-bottom-huge { margin-bottom: 120px !important; }
.margin-bottom-mobile { margin-bottom: 0px !important; }

.padding-none { padding: 0 !important; }
.padding-top { padding-top: 30px !important; }
.padding-bottom { padding-bottom: 30px !important; }
.padding-bottom-dbl { padding-bottom: 60px !important; }
.padding-bottom-half { padding-bottom: 15px !important; }

hr {
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 1px solid #d1c5a5;
    clear: both;
}

.flex {
   display: flex;
   align-items: center;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    color: #b59f65;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 25px;
    margin-top: 0;
    position: relative;
}

h3 {
    color: #5b6669;
}

h4, h5, h6 {
    color: #5b6669;
    font-weight: 400;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; text-align: right; margin-bottom: 40px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { text-decoration: none; }

h3 a, h4 a, h5 a, h6 a { color: #5b6669; }
h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { color: #b59f65; }

h2:after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0px;
    background-color: #d1c5a5;
    height: 1px;
    /* width: 50px; */
}

h2.left {
    text-align: left;
}

h2.left:after {
    left: 0;
}

h2.center {
    text-align: center;
}

h2.center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
}

.faso-user-p {
    margin: 0;
    padding: 0;
}
p { margin: 0 0 30px 0; }
em { font-style: italic; }
strong, b { font-weight: 700; }
small, .small { font-size: 85%; }

.text-center { text-align: center !important; }
.text-left, .text-left-center { text-align: left !important; }
.text-right, .text-right-center { text-align: right !important; }
.uppercase { text-transform: uppercase !important; }

@font-face {
    font-family: 'boldbrush';
    src: url('//www.scottburdick.com/styles/shared/fonts/boldbrush-webfont.eot');
    src: url('//www.scottburdick.com/styles/shared/fonts/boldbrush-webfont.eot?#iefix') format('embedded-opentype'),
         url('//www.scottburdick.com/styles/shared/fonts/boldbrush-webfont.woff2') format('woff2'),
         url('//www.scottburdick.com/styles/shared/fonts/boldbrush-webfont.woff') format('woff'),
         url('//www.scottburdick.com/styles/shared/fonts/boldbrush-webfont.ttf') format('truetype'),
         url('//www.scottburdick.com/styles/shared/fonts/boldbrush-webfont.svg#new_fontregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.fleur:before {
    content: 'F';
    font-family: 'boldbrush';
    font-size: 24px;
    font-style: normal;
    position: relative;
    top: 4px;
    left: 0;
    margin-right: 5px;
}

.fleur { color:#ED2024; }

.enso:before {
    content: 'B';
    font-family: 'boldbrush';
    font-size: 28px;
    font-style: normal;
    position: relative;
    top: 4px;
    left: 0;
    margin-right: 5px;
}

.dpw {
    position: relative;
    width: 35px;
    height: 16px;
    display: inline-block;
}

.dpw:before {
    content: 'D';
    font-family: 'boldbrush';
    font-size: 60px;
    font-style: normal;
    line-height: 0;
    position: absolute;
    top: 8px;
    left: 0;
}

.boldbrush {
    font-family: 'boldbrush';
    font-size: 24px !important;
    font-style: normal;
    position: relative;
    top: 2px;
    left: 0;
}

.faso-main-data-mainpagetext {text-align: left;}

/* ==========================================================================
   Links
   ========================================================================== */

a {
    color: #b59f65;
    text-decoration: none;
    outline: 0;
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

a:hover { color: #5b6669; }
a:hover, a:active, a:focus { outline: 0; }

a.link {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
}

/* ==========================================================================
   Lists
   ========================================================================== */

.inline-list, .subnav, .artist-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.inline-list li {
    display: inline;
    margin: 0 10px;
}

.inline-list li:first-child {
    margin-left: 0px;
}

.inline-list li:last-child .subnav li:last-child {
    margin-right: 0px;
}

.subnav {
    display: block;
    margin-top: 10px;
}

.subnav li {
    display: inline;
    margin-right: 20px;
    position: relative;
}

.subnav li:after {
    content: "/";
    position: absolute;
    top: -4px;
    right: -14px;
}

.subnav li:last-child:after {
    content: "";
}

.subnav li a {
    text-transform: lowercase;
    font-weight: 500;
    text-decoration: none;
}

.artist-list li {
    margin-bottom: 10px;
}

.artist-list li a {
    font-size: 22px;
    text-decoration: none;
}

/* ==========================================================================
   Structure
   ========================================================================== */

.wrapper {
    padding: 10px;
    max-width: 1440px;
    margin: 0 auto;
}

.main {
    max-width: none;
    width: 100%;
}

.container {
    padding: 20px;
}

.border {
    position: relative;
    width: 100%;
}

.border:before {
  content: " ";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #b59f65;
}

.content-section {
    position: relative;
    margin-bottom: 10px;
    padding: 50px 20px;
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
}

/*.page {
    max-width: 960px;
    width: 100%;
    position: relative;
    margin: 45px 0 0;
}

.article, .articles {
    margin-right: 260px;
}

.sidebar {
    width: 200px;
    position: absolute;
    top: 0;
    right: 0;
}

.sidebar h2 {
    font-size: 20px;
    margin-bottom: 40px;
}

.block-content {
    overflow: hidden;
    height: 34px;
    visibility: hidden;
}

.content-block {
    padding-top: 0;
    padding-bottom: 17px;
    padding-left: 17px;
    padding-right: 17px;
    position: relative;
    height: auto;
    clear: both;
}*/

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    width: 100%;
    height: 300px;
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: cover !important;
    margin-bottom: 10px;
}

.header .site-title {
    position: absolute;
    top: 20px;
    left: 40px;
}

.site-title img {
    width: 324px;
}

.nav-wrapper .site-title {
    position: relative;
}

.hamburger {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

.hamburger:hover {
    color: #b59f65;
}

.page-title {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: right;
    margin-left: 40px;
    max-width: 60%;
}

.page-title h1 {
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 0px;
}

.home .header {
    position: relative;
    max-width: 1440px;
    height: 140px;
    z-index: 999;
    margin-bottom: 0px;
    background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,0));
}


/* ==========================================================================
   Main Nav
   ========================================================================== */

.nav-wrapper {
    padding: 30px;
    width: 100%;
    background: #5b6669 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-dark.png') repeat left top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

.nav-wrapper hr {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #b59f65;
}

.close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.2s opacity linear;
            transition: 0.2s opacity linear;
}

.main-nav {
    position: relative;
    margin-left: 354px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    font-family: 'Cardo', serif;
    font-size: 22px;
    line-height: 40px;
    font-weight: 400;
    text-transform: uppercase;
    color: #cbbc93;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.2s opacity linear;
            transition: 0.2s opacity linear;
}

.main-nav ul ul {
    margin-bottom: 10px;
    margin-left: 30px;
}

.main-nav ul ul li a {
    font-size: 18px;
    line-height: 32px;
    text-transform: capitalize;
    color: #cbbc93;
    padding: 0;
}

.main-nav .selectednavlink > a {
    color: #fff !important;
}

.main-nav .emptynavlink {
    display: none !important;
    visibility: hidden;
}

.newsletter {
    float: left;
    position: relative;
}

.newsletter a {
    font-size: 16px;
    text-transform: uppercase;
    color: #cbbc93;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.2s opacity linear;
            transition: 0.2s opacity linear;
}

.newsletter i {
    margin-right: 5px;
}

.main-nav ul li a:hover, .close:hover, .newsletter a:hover, .social ul li a:hover {
    opacity: .5;
}

.logos {
    position: absolute;
  bottom: 0px;
  right: 10px;
}

.logos a {
    display: block;
    margin-bottom: 20px;
}

.logos a:last-child {
    margin-bottom: 0px;
}

/* ==========================================================================
   Social
   ========================================================================== */

.social {
    float: right;
}

.social ul {
    padding: 0;
    list-style: none;
    display: inline-block;
    margin: 0 0 10px;
    position: relative;
}

.social ul:first-child {
    margin-right: 30px;
}

.social ul li {
    display: inline-block;
    margin-right: 10px;
    line-height: 0;
    vertical-align: middle;
}

.social ul > li {
    font-size: 16px;
    color: #cbbc93;
    text-transform: uppercase;
}

.social ul li i {
    font-size: 20px;
}

.social ul li a {
    color: #cbbc93;
    line-height: normal;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.2s opacity linear;
            transition: 0.2s opacity linear;
}

/* ==========================================================================
   Home Widgets
   ========================================================================== */

.widget {
    text-align: right;
}

.widget h2 {
    font-size: 32px;
    line-height: 32px;
    text-align: left;
}

.widget h2 span, h2 span {
    font-size: 20px;
    line-height: 22px;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-align: center;
    color: #b59f65;
    padding: 60px;
    width: 100%;
    background: #5b6669 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-dark.png') repeat left top;
    position: relative;
}

.footer .site-title {
    margin-bottom: 40px;
}

.footer .contact-tagline {
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer .faso-tagline, .footer .boldbrush-tagline {
    margin-bottom: 15px;
}

.footer a {
    text-decoration: none;
    position: relative;
}

.footer a:hover {
    color: #fff;
}

.footer .top {
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
    padding-top: 30px;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

.footer .top:hover {
    color: #fff;
}

.footer .top i {
    display: block;
    font-size: 18px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn, input[type='submit'] {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    color: #b59f65;
    display: inline-block;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 100%;
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

.btn:before, input[type='submit']:before {
    content: "[";
    position: absolute;
    top: 0px;
    left: -15px;
    color: #5b6669;
}

.btn:after, input[type='submit']:after {
    content: "]";
    position: absolute;
    top: 0px;
    right: -15px;
    color: #5b6669;
}

.btn:hover, button:hover, input[type='submit']:hover {
    color: #5b6669;
}

.bbav .bbav-button {
    margin: 0 !important;
}

.bbav .bbav-button .btn, .bbav .bbav-button .btn:active, .bbav .bbav-button .btn:focus {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    color: #b59f65;
    display: inline-block;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 100%;
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

.bbav .bbav-button .btn:hover {
    color: #5b6669;
}

.bbav .bbav-button .btn:before, .bbav .btn:before {
    content: "";
}

.bbav .bbav-button .btn:after, .bbav .btn:after {
    content: "";
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    text-align: center;
    clear: both;
    position: relative;
}

.pagination ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.pagination ul li {
    float: left;
    list-style: none;
}

.pagination ul li a {
    padding: 10px 15px;
}

.pagination ul li a.current {
    color: #5b6669 !important;
    font-weight: 700;
}

/* ==========================================================================
   Toggles
   ========================================================================== */

.toggles {
    width: 100%;
    margin-top: 84px;
    margin-bottom: 50px;
}

.toggle {
    clear: both;
    position: relative;
}

.toggle .question {
    padding: 30px 50px;
    border-top: 1px solid #d1c5a5;
    cursor: pointer;
    position: relative;
    color: #5b6669;
    margin: 0;
    -webkit-transition:0.2s color linear;
            transition:0.2s color linear;
}

.toggle:hover .question {
    color: #b59f65;
}

.toggle .question:after {
    content: '';
    width: 16px;
    height: 16px;
    background: url("//www.scottburdick.com/styles/custom/lyonburdick/images/toggle.png") no-repeat;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.toggle .question:before {
    content: 'Q:';
    font-size: 24px;
    font-weight: 700;
    color: #b59f65;
    position: absolute;
    left: 0px;
    top: 28px;
}

.toggle .question.active:after {
    background-position-x: -16px;
}

.toggle:last-child {
    border-bottom: 1px solid #d1c5a5;
}

.toggle .toggle-content {
    display: none;
    margin-bottom: 45px;
    margin-right: 50px;
    overflow: hidden;
}

/* ==========================================================================
   Forms
   ========================================================================== */

::-webkit-input-placeholder {
   color: #5b6669;
}

:-moz-placeholder { /* Firefox 18- */
   color: #5b6669;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #5b6669;
}

:-ms-input-placeholder {
   color: #5b6669;
}

textarea:focus, input:focus, button:focus {
    outline: 0 !important;
}

select:focus {
    outline: 0 !important;
}

input[type="text"], textarea {
    color: #444;
    width: 100%;
    padding: 10px 15px;
    margin: 0;
    border: 1px solid #b59f65;
    background: none;

    -webkit-appearance: none;
    -webkit-border-radius: 0px;
            border-radius: 0px;
}

input[type="text"] {
    height: 46px;
}

textarea {
    height: 200px;
}

input[type="submit"] {
    display: block;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    border-radius: 0;
}

.form-item {
    margin-bottom: 25px;
}

.form-item.error input, .form-item.error textarea {
    border: 1px solid #ff0000;
}

.form-item.error label {
    color: #ff0000;
}

.radio-group {
    display: block;
    margin-bottom: 20px;
}

input[type='radio'] {
    margin-right: 5px;
}

.alert {
    margin-bottom: 20px;
    display: block;
}

.alert label {
    color: #ff0000;
    display: block;
}

/* ==========================================================================
   Misc Content
   ========================================================================== */

/*.event {
    margin-bottom: 35px;
}

.event:last-child {
    margin-bottom: 0px;
}*/

.date {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    color: #5b6669;
    display: block;
}

/*.event h3 {
    margin-bottom: 0px;
}*/

.artists-header {
    margin-bottom: 50px;
}

.artists-title {
    display: inline-block;
    margin-bottom: 0px;
}

/* ==========================================================================
   Works
   ========================================================================== */

.row-grid {
    width: 100%;
    clear: both;
    overflow: hidden;
}

.work-item {
    float: left;
    margin-bottom: 10px;
    position: relative;
}

.item-box {
    position: relative;
    overflow: hidden;
}

.item-box:hover .item-caption {
    opacity: 1;
}

.item-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    text-align: center;
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
    -webkit-transition: 0.2s opacity linear;
            transition: 0.2s opacity linear;
}

.item-data {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    display: block;
    text-align: center;
    -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

.item-data h2 {
    color: #b59f65;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 10px;
    width: 100%;
    text-align: center;
}

.item-category {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-transform: none;
    color: #444;
}

.work-nav {
    overflow: hidden;
    width: 100%;
    margin-bottom: 16px;
}

.work-nav a {
    text-transform: lowercase;
    text-decoration: none;
    color: #5b6669;
}

.work-nav a:hover {
    color: #b59f65;
}

.prev-next {
    float: right;
}

.artwork-details {
    text-align: left;
}

.artwork-details h2 {
    text-align: left;
}

.artwork-details h2:after {
    left: 0;
}

.price-boxes {
    display: flex;
    grid-gap: 15px;
    margin-bottom: 40px;
}

.price-boxes .box {
    flex: 1 0 0;
}

.price-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #b59f65;
}

.price-box span {
    display: block;
}

.price-box span span {
    display: inline-block;
}

.price-box .note {
    font-weight: 700;
}

.price-box .shipping {
    font-size: 11px;
}

.price-box .cart-form {
    margin-top: 10px;
}

/*.price-box .cart-form input[type="submit"], .faso-workszoom-link-contact.btn, .user-cta .btn {
    font-size: 14px;
    text-align: center;
    padding: 10px 20px;
    color: #666666;
    background: #DDDDDD;
    max-width: 100%;
    -webkit-transition: 0.25s all linear;
                    transition: 0.25s all linear;
}

.faso-workszoom-link-contact.btn:hover, .user-cta .btn:hover {
    color: #666666;
    background: #FFFFFF;
}

.price-box .cart-form input[type="submit"]:hover {
    color: #666666;
    background: none;
}*/

.user-cta {
    margin-top: 15px;
    margin-bottom: 30px;
}

.faso-workszoom-link-contact {
    display: inline-block;
}

/* ==========================================================================
   workszoom/worksdetail
   ========================================================================== */

#artwork-viewer {
    display: block;
    margin: 0 auto 25px auto;
}

#artwork-viewer.portrait .faso-workszoom-data-image,
#artwork-viewer.landscape .faso-workszoom-data-image {
    width: 100%;
    display: block;
}
#artwork-viewer.portrait{
    max-width: 600px;
}
#artwork-viewer.landscape {
    max-width: 800px;
}
#artwork-viewer .lazyload,
#artwork-viewer .lazyloading,
#artwork-viewer .lazyloaded {
    transition: opacity 300ms linear;
}
#artwork-viewer .lazyload {
    opacity: 0.5;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
#artwork-viewer .lazyloading,
#artwork-viewer .lazyloaded {
    opacity: 1;
}

/* ==========================================================================
   Blog
   ========================================================================== */

#blog-topical-nav, #blog-archive-nav {
    display: none;
}

.post-comment {
    margin-bottom: 10px;
    padding: 20px;
}

.post-comment .avatar {
    margin-right: 12px;
    float: left;
}

.post-comment .post-message {
    margin-bottom: 20px;
}

.post-comment .post-meta {
    font-size: 13px;
    line-height: normal;
}

.post-comment .post-body {
    overflow: hidden;
}

.post-message p:last-child {
    margin-bottom: 0px;
}

.blog-comment-odd {
    background: rgba(0, 0, 0, .05);
}

.blog-comment-even {
    background: none;
}

.social-button-container {
    margin-bottom: 10px;
    min-height: 28px;
}

.social-stuff {
    position: relative;
    overflow: hidden;
}

.social-share {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.social-share li {
    display: inline;
    margin: 0;
    padding: 0 5px;
    cursor: pointer;
}

.social-share li a {
    font-size: 18px;
}

.social-like {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    float: right;
}

.social-like li {
    float: left;
    margin: 0 5px;
}

.social-like li:first-child {
    margin-left: 0px;
}

.social-like li:last-child {
    margin-right: 0px;
}

.post {
    margin-bottom: 100px;
}

.post-image {
    margin-bottom: 34px;
}

.post-nav {
    list-style: none;
    overflow: hidden;
    border-top: 1px solid #d1c5a5;
    border-bottom: 1px solid #d1c5a5;
    padding: 15px 0;
    margin: 75px 0 0;
}

.post-nav li {
    float: left;
    width: 33.33333%;
    text-align: center;
}

.post-nav li:first-child {
    text-align: left;
}

.post-nav li:last-child {
    text-align: right;
}

.post-nav li i {
    font-size: 24px;
    line-height: normal;
}

.post-nav li a {
    text-decoration: none;
    text-transform: lowercase;
    color: #5b6669;
}

.post-nav li a:hover {
    color: #b59f65;
}

.social-helper {
    display: inline-block;
}

.share-buttons {
    width: 100%;
    text-align: center;
}

.share-buttons table {
    margin: 0 auto;
}

.related-posts {
    margin-bottom: 50px;
}

.related-posts ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.related-posts ul li {
    margin-bottom: 5px;
}

.related-posts ul li a {
    text-decoration: none;
}

.caption {
    font-size: 14px;
    opacity: .6;
}

.success_message {
    font: 16px/24px 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    padding: 20px;
    color: #444;
    background-color: #b59f65 !important;
}

.success_message h2 {
    font-size: 24px !important;
}

.success_message .blog_comment {
    border-bottom: none !important;
}

.follow-link a, .follow-link i {
    font-size: 14px;
    text-decoration: none;
    color: #5b6669;
}

.follow-link a:hover {
    color: #b59f65;
}

.follow-link i {
    margin-right: 5px;
}

.blog-record-nav {
    float: left;
    position: relative;
}

.blog-record-nav .pagination ul li:first-child a {
    padding-left: 0px;
}

.blog-record-nav .pagination ul li:first-child a {
    padding-right: 0px;
}

.blog-categories {
    float: right;
    text-align: right;
}

.faso-sidebar-blog-topical {
    margin-right: 10px !important;
}

.faso-sidebar-blog-topical, .faso-sidebar-blog-archives {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 0 10px;
    border: 1px solid #b59f65;
    width: 200px;
    overflow: hidden;
    background: none;
}

.faso-sidebar-blog-topical:after, .faso-sidebar-blog-archives:after {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    color: #444;
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    top: 6px;
    right: 10px;
    z-index: 5;
}

.faso-sidebar-blog-topical select, .faso-sidebar-blog-archives select {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    color: #444;
    line-height: normal;
    padding: 8px 12px;
    width: 100%;
    cursor: pointer;
    border: none;
    z-index: 10;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-border-radius: 0px;
            border-radius: 0;
}

.widget_sidebar_blog .widget-item {
    margin-bottom: 40px;
}

.widget_sidebar_blog a {
    font-size: 20px;
    line-height: 24px;
    display: block;
    text-decoration: none;
}

/* ==========================================================================
   Misc
   ========================================================================== */

.scroll {
    text-align: center;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
       -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
    z-index: 100;
}

.scroll a {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.scroll a:hover {
    color: #b59f65;
}

.scroll i {
    font-size: 24px;
}

/* ==========================================================================
   Slick Slider
   ========================================================================== */

.hero-slider {
    width: 100%;
    height: 100%;
    margin-top: -140px;
}

.hero-slider .slick-slide {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center !important;
    -webkit-background-size: cover !important;
       -moz-background-size: cover !important;
         -o-background-size: cover !important;
            background-size: cover !important;
}

.slick-list,
.slick-track {
    height: 100%;
}

.slick-slider {
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}


/* ==========================================================================
   Slick Theme
   ========================================================================== */

/* Slider */
.slick-loading .slick-list {
    background: #fff url('//www.scottburdick.com/styles/custom/lyonburdick/images/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    /*opacity: 1;*/
    color: #b59f65;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    opacity: 1;
    color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 30px;
}

[dir='rtl'] .slick-prev {
    right: -15px;
    left: auto;
}

.slick-prev:before {
    content: "\f060";
}

[dir='rtl'] .slick-prev:before {
    content: '&#226;†'';
}

.slick-next {
    right: 30px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -15px;
}

.slick-next:before {
    content: "\f061";
}

[dir='rtl'] .slick-next:before {
    content: '&#226;†';
}

/* Dots */
.slick-slider {
    margin-bottom: 10px;
}

.slick-dots {
    position: absolute;
    bottom: -20px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}

.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\f111';
    text-align: center;

    opacity: .25;
    color: #757064;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #757064;
}

/* ==========================================================================
   Grid
   ========================================================================== */

.row {
    max-width: 1440px;
    margin: 0 auto;
}

.row.full-width {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.row .row {
    width: auto;
    margin-left: -30px !important;
    margin-right: -30px !important;
}

*[class*='col-'] {
    float: left;
    padding: 0 30px;
    position: relative;
}

.col-1-1 { width: 100%; float: none; }
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.33333%; }
.col-2-3 { width: 66.66666%; }
.col-1-4 { width: 25%; }
.col-3-4 { width: 75%; }
.col-1-5 { width: 20%; }
.col-1-6 { width: 16.66666%; }
.col-2-5 { width: 40%; }
.col-3-5 { width: 60%; }
.col-4-5 { width: 80%; }

.cell-15 { padding: 15px; }
.cell-30 { padding: 30px; }
.cell-50 { padding: 50px; }

.centered { margin: 0 auto; position: relative; float: none; }

.grid-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 0 20px;
}

.grid-item {
    display: flex;
    padding: 5px 15px 25px;
    width: 33.33333%;
}

.grid-content {
   display: flex;
   flex-direction: column;
   width: 100%;
   text-align: center;
}

.grid-content h2 {
   font-size: 24px;
}

.grid-content img {
   margin-bottom: 15px;
}

.grid-content.cell {
   padding: 30px;
   border: 1px solid #d1c5a5;
   background: rgba(255, 255, 255, .15);
}

/*.grid-content p {
  flex: 1 0 auto;
}*/

/*.valign-middle {
    display: table;
}*/

.valign-middle [class*='col-'] {
    display: table-cell;
    vertical-align: middle;
}

.valign-middle [class*='col-'],
.valign-middle [class*='col-'] + [class*='col-']:last-child {
    float: none;
}

/* ==========================================================================
   lightGallery Overrides
   ========================================================================== */

@font-face {
  font-family: 'lg';
  src: url("//www.scottburdick.com/styles/shared/fonts/lg.eot?n1z373");
  src: url("//www.scottburdick.com/styles/shared/fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("//www.scottburdick.com/styles/shared/fonts/lg.woff?n1z373") format("woff"), url("//www.scottburdick.com/styles/shared/fonts/lg.ttf?n1z373") format("truetype"), url("//www.scottburdick.com/styles/shared/fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}

.lg-backdrop {
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
}

.lg-toolbar {
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
}

.lg-toolbar .lg-icon {
    color: #444;
}

.lg-toolbar .lg-icon:hover {
    color: #444;
    opacity: .75;
}

.lg-sub-html {
    font: 14px/24px 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: .04em;
    color: #444;
    width: 100%;
    white-space: normal;
    padding: 10px 25px;
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
}

.lg-image {
    padding-top: 47px;
    padding-bottom: 44px;
}

#lg-counter {
    font-size: 14px;
    color: #444;
    padding-left: 50px;
}

#lg-counter:before {
    content: 'F';
    font-family: 'boldbrush';
    font-size: 24px;
    font-style: normal;
    position: absolute;
    top: 12px;
    left: 20px;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
    border-radius: 0;
    color: #444;
    -webkit-transition: none;
    transition: none;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: #444;
    opacity: .75;
}

/* ==========================================================================
   Videos
   ========================================================================== */

.video-grid {
    margin: 0 -7px;
}

.isotope-item {
    position: relative;
    float: left;
    width: 25%;
    padding: 0 7px 50px;
}

.videos {
    min-width: 0;
    text-align: center;
}

.video-image {
    position: relative;
    margin-bottom: 10px;
    background: #000;
}

.video-meta {
    font-size: 14px;
    line-height: 24px;
}

.video-title {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    /*margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.video-title:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 40px;
    height: 1px;
    background: #d1c5a5;
    transform: translateX(-50%);
}

.video-length {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    background: #000;
    padding: 2px 3px 1px;
    border-radius: 2px;
    z-index: 2;
}

.video-buy {
    text-align: center;
    padding: 20px;
    border: 1px solid #b59f65;
    width: 300px;
    margin: 0 auto 60px;
}

.video-price {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.video-buy-btn {
    display: none;
}

.faso-video-paid-hide { display: none; }

/* ==========================================================================
   Filter
   ========================================================================== */

.filters {
    display: flex;
}

.filters > div {
    flex: 1;
}

.filter {
    display: inline-block;
}

.filter ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.filter ul li {
    float: left;
    position: relative;
    padding-right: 25px;
}

.filter > ul > li {
    margin-right: 30px;
    cursor: pointer;
    color: #b59f65;
    -webkit-transition: 0.2s color linear;
                    transition: 0.2s color linear;
}

.filter > ul > li:hover {
    color: #5b6669;
}

.filter > ul > li:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 20px;
    color: #b59f65;
    position: absolute;
    top: 0px;
    right: 0px;
    -webkit-transition: 0.2s color linear;
                    transition: 0.2s color linear;
}

.filter > ul > li:hover:after {
    color: #5b6669;
}

.filter ul li:first-child {
    margin-left: 0px;
}

.filter ul li:last-child {
    margin-right: 0px;
}

.filter ul ul {
    display: none;
    position: absolute;
    top: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
                    transform: translateX(-50%);
    margin: 0;
    padding: 20px;
    background: #ebe9e4 url('//www.scottburdick.com/styles/custom/lyonburdick/images/bg-light.png') repeat left top;
    text-align: left;
    min-width: 18em; /* allow long menu items to determine submenu width */
    *width: 18em; /* no auto sub width for IE7, see white-space comment below */
    z-index: 999;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
     -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
                    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}

.filter ul ul li {
    float: none;
    margin: 0;
    padding: 0 0 8px;
}

.filter ul ul li:last-child {
    padding-bottom: 0px;
}

.filter ul ul li:after {
    content: '';
}

.filter ul ul li a {
    display: block;
    color: #b59f65;
    text-transform: none;
    font-weight: 400;
    -webkit-transition: 0.2s color linear;
                    transition: 0.2s color linear;
}

.filter ul ul li a:hover, .filter a.selected {
    color: #5b6669;
}

.filter hr {
    margin: 5px 0;
}

.isotope-reset {
    text-align: right;
    color: #b59f65;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: 0.2s color linear;
            transition: 0.2s color linear;
}

.isotope-reset:hover {
    color: #5b6669;
}

.filter-container {
    text-align: center;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after,
.row:after {
    clear: both;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width : 1280px) {

    .price-boxes {
        flex-direction: column;
    }

}


@media only screen and (max-width : 1024px) {

    .grid-item {
        width: 50%;
    }

    .isotope-item {
        width: 33.33333%;
    }

    .social, .newsletter {
        float: none;
    }

    .newsletter {
        margin-bottom: 10px;
    }

}

@media only screen and (max-width : 768px) {

    *[class*='col-'] {
        float: none;
        width: 100%;
        padding: 0 15px;
    }

    .text-right-center {
        text-align: center;
    }

    .row .row {
        width: auto;
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .valign-middle [class*='col-'] {
        display: block;
    }

    .content-section {
        padding: 30px 15px;
    }

    .grid-container {
        padding: 0;
    }

    .widget, h2 {
        text-align: left;
    }

    h2:after {
        left: 0px;
    }

    .slick-slider {
        margin-bottom: 10px;
    }

    .margin-bottom-mobile { margin-bottom: 30px !important; }

    .main-nav {
        margin-left: 0px;
        margin-top: 15px;
    }

    .page-title {
        max-width: 100%;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .artwork-details {
        margin-top: 50px;
        text-align: center;
    }

    .artwork-details h2 {
        text-align: center;
    }

    .artwork-details h2:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
           -moz-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .blog-categories, .blog-record-nav {
        float: none;
        text-align: center;
    }

    .blog-record-nav {
        margin-bottom: 15px;
    }

    .faso-sidebar-blog-topical {
        margin-right: 0px;
    }

    .faso-sidebar-blog-topical, .faso-sidebar-blog-archives {
        width: 100%;
    }

    .isotope-item {
        width: 50%;
    }

    .filters {
        flex-direction: column;
    }

    .filter > ul > li {
        margin-right: 10px;
        margin-left: 5px;
    }

    .isotope-reset, .filter-display {
        text-align: center;
    }

    .filter-container {
        order: 1;
        margin-bottom: 15px;
    }

    .filter-display {
        order: 2;
    }

    .isotope-reset {
        order: 3;
    }

    .price-boxes {
        flex-direction: row;
    }

    .logos {
        position: static;
        margin-top: 20px;
    }

}

@media only screen and (max-width: 640px) {

    .post-nav {
        margin-bottom: 15px;
    }

    .grid-item {
        width: 100%;
    }

    .social ul li i {
        font-size: 18px;
    }

    .back {
        margin-bottom: 25px;
        display: inline-block;
    }

}

@media only screen and (max-width : 480px) {

    .header {
        text-align: center;
    }

    .header .site-title {
        position: relative;
        top: auto;
        left: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hamburger {
        top: 20px;
        right: 25px;
    }

    .slick-prev,
    .slick-next,
    .scroll {
        display: none !important;
    }

    .close {
        top: 20px;
        right: 20px;
    }

    .newsletter {
        display: block;
        margin-bottom: 15px;
    }

    .newsletter a {
        display: block;
    }

    .page-title {
        right: 50%;
        text-align: center;
        padding-right: 40px;
        padding-left: 40px;
        margin: 0;
        width: 100%;
        -webkit-transform: translateX(50%);
           -moz-transform: translateX(50%);
                transform: translateX(50%);
    }

    .toggle .question {
        padding: 30px 30px 30px 0;
    }

    .toggle .question:before {
        content: '';
    }

    .toggle .toggle-content {
        margin-right: 0px;
    }

    .social-share {
        margin-bottom: 15px;
        display: block;
    }

    .social-like {
        float: left;
        display: block;
    }

    .isotope-item {
        width: 100%;
    }

    .price-boxes {
        flex-direction: column;
    }

}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
table {border: 1px; #b3d4fc;}

.faso-user-p {color: #000;}
h3 a, h4 a, h5 a, h6 a {color: #000;}
h1, h2, h3, h4, h5, h6, .faso-main-data-mainpageheading {color: #3e3636;}
.border:before {border: 1.5px solid #3e3636;}

/ Default for all media types. /
div.row { width: 100%; }
div.columns-2 {
 float: none;
 padding: 0px 10px 50px 10px;
 width: 100%; text-align: center; }
div.columns-3 {
 float: none;
 padding: 0px 10px 50px 10px;
 width: 100%; text-align: center; }
img.full-width { width: 100%; }














/* Default for all media types. */
div.row { width: 100%; }
div.columns-2 {
 float: none;
 padding: 0px 10px 50px 10px;
 width: 100%; text-align: center; }
div.columns-3 {
 float: none;
 padding: 0px 10px 50px 10px;
 width: 100%; text-align: center; }
img.full-width { width: 100%; }
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) { }
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) { }
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
 div.columns-2 { float: left; width: 50%; }
 div.columns-3 { float: left; width: 33.33%;} }
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
 div.columns-2 { float: left; width: 50%; }
 div.columns-3 { float: left; width: 33.34%; } }
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
 div.columns-2 { float: left; width: 50%;}
 div.columns-3 { float: left; width: 33.33%; } }