/* ----------------------------------------------------------------------------------
  Simon Lee Gallery
---------------------------------------------------------------------------------- */



/* ----------------------------------------------------------------------------------
  Layout
---------------------------------------------------------------------------------- */

html {
   background-color: #151515;
}
body {
    padding: 0;
    /* for safari’s tint and bounce colour */
   /* removed - bad performance on firefox on slow machines  background-color: #151515;*/
   /* for the document’s body background color 
   background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);
   */
}

body.overlay-open {
    overflow: hidden;
}
.hidden {
    display: none;
}
.mobile-only {
    display: none;
}

#top_nav_section {
    display: none !important;
}

#header {
    pointer-events: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    opacity: 0;
    left: 0;
    right: 0;
    padding: 26px 26px 20px;
    transform: translate3d(0, -100px, 0);
    transition: transform 600ms cubic-bezier(.65,.06,.19,.96), opacity 800ms ease-in-out, background 800ms ease-in-out;
    background: rgba(255,255,255,1);
}
    #header:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: opacity 800ms ease-in-out;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+1,ffffff+100&0.4+31,0+100 */
        background: -moz-linear-gradient(top,  rgba(255,255,255,0.4) 1%, rgba(255,255,255,0.4) 31%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  rgba(255,255,255,0.4) 1%,rgba(255,255,255,0.4) 31%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  rgba(255,255,255,0.4) 1%,rgba(255,255,255,0.4) 31%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    }
	body.cms-frontend-toolbar-active #header {
	    top: 28px;
	}
    #header * {
        pointer-events: auto;
    }
    body.first-load-complete #header {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    body.splash-open #header,
    body .scrolling-down #header,
    body.xpage-transition #header {
        opacity: 0;
        transform: translate3d(0, -100px, 0);
        background: rgba(255,255,255,0);
    }
    body .hero-section-visible #header,
    body .page-top #header {
        background: rgba(255,255,255,0);
    }
    body.page-popup-active #header {
        opacity: 1;
        background: rgba(255,255,255,0);
        transform: translate3d(0, 0, 0);
        transition: transform 600ms cubic-bezier(.65,.06,.19,.96), opacity 800ms ease-in-out, background 800ms ease-in-out;
    }

    body.active-init #container #header,
    body.overlay-open #container #header {
        background: rgba(255,255,255,0);
        transition: transform 600ms cubic-bezier(.65,.06,.19,.96), opacity 800ms ease-in-out, background 800ms ease-in-out;
    }
    body.overlay-open #container #header {
        transition: none !important;
    }

    body.page-popup-active #header:before,
    body.active-init #container #header:before,
    body.overlay-open #container #header :before{
        opacity: 0;
        transition: none !important;
    }

    #logo {
        float: left;
        width: 92px;
        height: 58px;
        position: relative;
        z-index: 10000;
        cursor: pointer;
        transition: transform 500ms cubic-bezier(.65,.06,.19,.96), opacity 500ms ease-in-out;
    }
        #logo svg {
            width: 100%;
            height: 100%;
        }
        #logo svg path,
        #logo svg polygon {
            transition: fill 600ms ease-in-out;
            fill: #151515;
        }
        body.overlay-open #logo svg path,
        body.overlay-open #logo svg polygon {
            fill: #414141;
        }
        body.nav-overlay-open.overlay-open #logo svg path,
        body.nav-overlay-open.overlay-open #logo svg polygon {
            fill: #fff;
        }

    body.overlay-open #menu,
    body.overlay-open #enquire,
    body.overlay-open #search_menu,
    body.overlay-open #basket,
    body.overlay-open #top_nav,

    body.page-popup-active #menu,
    body.page-popup-active #enquire,
    body.page-popup-active #search_menu,
    body.page-popup-active #basket,
    body.page-popup-active #top_nav  {
        opacity: 0;
        transform: translate3d(0, -100px, 0);
    }

    #menu {
        float: right;
        border: 2px solid #151515;
        padding: 7px 16px 9px;
        margin: 0 0 0 20px;
        cursor: pointer;
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        letter-spacing: 1px;
        -webkit-font-smoothing: antialiased;
        position: relative;
        overflow: hidden;
        transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    }
        #menu:after {
            content: '';
            display: block;
            background: #151515;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            position: absolute;
            z-index: 1;
            transform: translate3d(0, -101%, 0);
            transition: transform 400ms cubic-bezier(.65,.06,.19,.96);
        }
        #menu span {
            position: relative;
            z-index: 2;
            transition: color 400ms cubic-bezier(.65,.06,.19,.96);
        }
        #menu:hover span {
            color: #fff;
        }
        #menu:hover:after {
            transform: translate3d(0, 0, 0);
        }
        /*
        #menu:after {
            content: '';
            display: block;
            width: 0;
            border-bottom: 2px solid #151515;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: width 400ms ease-in-out;
        }
        #menu:hover:after {
            width: 100%;
        }
        */

    #basket {
        float: right;
        position: relative;
        z-index: 1900;
        padding: 7px 0 9px;
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        font-weight: bold;
        border: 2px solid transparent;
        color: #151515;
        height: 17px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    }
            #basket #store_cart_widget {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                height: 18px;
                padding-right: 27px;
                transition: transform 400ms cubic-bezier(.65,.06,.19,.96);
                background: url(/images/cart.png) right 1px no-repeat;
                background-size: 17px 17px;
                transition: background-image 400ms linear;
            }
            #basket #store_cart_widget {
                opacity: 0;
            }
            #basket #store_cart_widget.empty {
                opacity: 0 !important;
            }
            #basket .scw_total_items {
                
            }
            #basket #store_cart_widget.active .scw_total_items {
                
            }
            #basket #store_cart_widget.active.empty .scw_total_items {
                
            }
            #basket .scw_label {
                position: absolute;
                z-index: 4;
                top: 0;
                right: 0;
                left: 0;
                bottom: 0;
                display: block;
                cursor: pointer;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                -khtml-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                font-size: 1.1rem;
                line-height: 1.8rem;
                text-transform: uppercase;
                letter-spacing: 2px;
                font-weight: bold;
                color: #fff;
                transform: translate(0, 0);
                transition: padding 400ms cubic-bezier(.65,.06,.19,.96), opacity 300ms linear;
            }
                #basket a {
	                position: absolute;
	                z-index: 4;
	                top: 0;
	                right: 0;
                	left: 0;
	                bottom: 0;
                    display: block;
                }
                #basket .empty a {
                    
                }
                    #basket .scw_label .label_basket {
                        display: block;
                        padding-top: 2px;
                        text-indent: -100px;
                        display: none;
                    }

    #enquire {
        float: right;
        border: 2px solid #151515;
        margin: 0 0 0 25px;
        cursor: pointer;
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        letter-spacing: 1px;
        -webkit-font-smoothing: antialiased;
        overflow: hidden;
        position: relative;
        transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    }
        #enquire:after {
            content: '';
            display: block;
            background: #151515;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            position: absolute;
            z-index: 1;
            transform: translate3d(0, -101%, 0);
            transition: transform 400ms cubic-bezier(.65,.06,.19,.96);
        }
        #enquire a {
            padding: 7px 22px 9px;
            display: block;
            position: relative;
            z-index: 2;
            transition: color 400ms cubic-bezier(.65,.06,.19,.96);
        }
        #enquire:hover a {
            color: #fff;
        }
        #enquire:hover:after {
            transform: translate3d(0, 0, 0);
        }


    #search_menu {
        float: right;
        border: 2px solid transparent;
        padding: 7px 0 9px;
        margin: 0 0 0 18px;
        cursor: pointer;
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        letter-spacing: 1px;
        -webkit-font-smoothing: antialiased;
        position: relative;
        display: none;
        transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    }
        #search_menu:after {
            content: '';
            display: block;
            width: 0;
            border-bottom: 2px solid #151515;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: width 400ms ease-in-out;
        }
        #search_menu:hover:after {
            width: 100%;
        }

    #top_nav {
        margin: 0 auto;
        z-index: 0;
        width: auto;
        text-align: center;
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        letter-spacing: 1px;
        -webkit-font-smoothing: antialiased;
        position: relative;
        display: none;
        position: absolute;
        top: 26px;
        left: 240px;
        right: 240px;
        transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    }
        #top_nav ul {
        	display: block;
        	text-align: center;
        	margin: 0;
        	padding: 0;
        	list-style: none;
        }
        #top_nav ul li {
            display: inline-block;
            position: relative;
            margin: 0 10px;
        }
            #top_nav ul li:first-child {
                margin-left: 0;
            }
            #top_nav ul li:last-child {
                margin-right: 0;
            }
        #top_nav ul li a {
            display: block;
            position: relative;
            border: 2px solid transparent;
            padding: 7px 0 9px;
            cursor: pointer;
        }
        #top_nav ul li a:after {
            content: '';
            display: block;
            width: 0;
            border-bottom: 2px solid #151515;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: width 400ms ease-in-out;
        }
        .device-desktop #top_nav ul li:hover a:after,
        #top_nav ul li.active a:after {
            width: 100%;
        }
        #top_nav ul li a,
        #top_nav ul li a:visited {
            color: inherit;
        }

    .menu_standard #top_nav {
        display: block;
    }
    .menu_standard #search_menu {
        display: block;
    }
    .menu_standard #menu {
        display: none;
    }
    


.scroll-container {
    position: relative;
    z-index: 1;
    pointer-events: none;
}
    .scroll-container.is-active {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
    }
    .scroll-container .scroll-container-inner {
        pointer-events: none;
        background: #fff;
        /* Note - this animation is intentionally slower than the splash screen to give a rubber band effect */
        transition: opacity 1000ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1);
    }
    .scroll-container .scroll-container-inner * {
        pointer-events: auto;
    }
    .scroll-container .scroll-container-inner .faux_footer {
        pointer-events: none;
    }

    #main_content {
        min-height: 100vh;
        transition: opacity 800ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1);
        position: relative;
    }

        /* Page transitions
        ----------------------------------------------------------- */

        body.browser-js-enabled #main_content {
            opacity: 0;
        }
        body.splash-main-content-in #main_content,
        body.first-load-complete #main_content {
            opacity: 1;
        }
        body.browser-js-enabled.splash-loader-active .scroll-container-inner {
            transform-origin: center top;
            transform: translate(0, 100vh);
        }
        /*
            Removed as this breaks the fixed side navigation
            body.first-load-complete .scroll-container-inner {
                transform: translate(0, 0);
            }
        */
        body.skip-splash-screen .scroll-container-inner {
            transform: translate(0, 0);
            transition: none;
        }

        body.page-transition .scroll-container-inner {
            transform-origin: center top;
            transform: translate(-100%, 0);
            transition: opacity 800ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1);
        }
        body.page-transition.page-transition2 .scroll-container-inner {
            /*transform: translate(100%, 0);*/
            transform: translate(0, 0);
            opacity: 0;
            transition: none;
        }

            /* Inner page element transitions
            ----------------------------------------------------------- */
            body.page-transition .image {
                transition: opacity 800ms ease-in-out, transform 800ms cubic-bezier(.86,.01,.14,.99) !important;
                transform: translate(-100%, 0);
            }
            body.page-transition #main_slideshow {
                overflow: hidden;
            }
            body.page-transition #main_slideshow .slide .image {
                transform: none;
                transition: opacity 800ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1), max-width 800ms ease-in-out !important;
                transform: translateX(90%);
                opacity: 0;
            }
            body.page-transition h1 {
                transition: opacity 800ms ease-in-out, transform 800ms cubic-bezier(.86,.01,.14,.99) !important;
                transform: translate(-200%, 0);
            }
            
            body.page-transition .artwork_detail .content h1 {
                transform: none;
            }
            body.page-transition .artwork_detail .image {
                transform: none;
            }


.footer {
    background: #151515;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
    color: #888;
    font-family: 'Apercu_Pro', Sans-Serif;
    font-size: 1.4rem;
    line-height: 2rem;
}
    body.fixed-footer #footer {
        position: fixed;
        z-index: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translate3d(0,0,0);
        visibility: hidden;
    }
    body.fixed-footer .footer-visible #footer {
        visibility: visible;
    }
    body.page-transition #footer,
    body.page-artwork-detail-standard #footer,
    body.fixed-footer.page-artwork-detail-standard #footer {
        display: none !important;
    }
    body.page-artwork-detail-standard #main_content,
    body.fixed-footer.page-artwork-detail-standard #main_content {
        margin-bottom: 0 !important;
    }
    /* PERFORMANCE ISSUE overflow auto 
    body.footer-active.fixed-footer #footer {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }*/


    .footer a,
    .footer a:visited {
        color: #888;
    }
    .footer .prelude {
        color: #eee;
        letter-spacing: 1.5px;
        font-size: 11px;
        -webkit-font-smoothing: antialiased;
    }
        .footer .prelude:after {
            background: rgba(255,255,255,0.1);
        }

    .footer .inner {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 125px 100px 50px;
        min-height: 100vh;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-direction: column;
        flex-direction: column;
        /* End flexbox */
        margin: 0 auto;
        max-width: 1680px;
        width: 100%;
        padding: 0 150px;
        margin: 0 auto;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .footer .wrapper { 
        padding: 40px 0;
    }
    .footer .main {
        clear: both;
        display: block;
        margin: 0 -75px 50px 0;
    }
        .footer .main .item {
            width: 33.33%;
            display: inline-block;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            padding: 0 75px 0 0;
            vertical-align: top;
        }
            .footer .main .item .content > div {
                margin: 0 0 18px;
            }
            /*
                .footer .main .item {
                    transform: translate3d(0, 200px, 0);
                    opacity: 0;
                    transition: transform 500ms cubic-bezier(.18, 1, .21, 1), opacity 500ms cubic-bezier(.18, 1, .21, 1);
                }
                .footer-visible2 .footer .main .item  {
                    opacity: 1;
                    transform: translate3d(0, 0, 0);
                    transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 3500ms cubic-bezier(.18, 1, .21, 1);
                }
            */

    .footer .aside {
        clear: both;
        display: block;
        margin: 0 -75px 75px 0;
        text-align: center;
    }
        .footer .aside .item {
            width: 33.33%;
            display: inline-block;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            padding: 0 75px 0 0;
            vertical-align: top;
            text-align: left;
        }
        /* 
            .footer .aside .item {
                opacity: 0;
                transition: opacity 3000ms cubic-bezier(.18, 1, .21, 1);
            }
            .footer-visible2 .footer .aside .item  {
                opacity: 1;
                transform: translate3d(0, 0, 0);
                transition-delay: 500ms;
            }
        */

    .footer .social_media_links {
        margin: 0 0 30px;
        text-align: center;
    }
    /*
    .footer .social_media_links {
        opacity: 0;
        transition: opacity 3000ms cubic-bezier(.18, 1, .21, 1);
    }
        .footer-visible2 .footer .social_media_links  {
            opacity: 1;
            transition-delay: 1000ms;
        }
        */
        .footer .social_media_links .social_links_item {
            float: none;
            margin: 0 5px;
            display: inline-block;
        }
    .footer .credit {
        text-align: center;
        font-family: Apercu_Pro, serif;
        color: #666;
        font-weight: bold;
        font-size: 10px;
        line-height: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    /*
    .footer .credit {
        opacity: 0;
        transition: opacity 3000ms cubic-bezier(.18, 1, .21, 1);
    }
        .footer-visible2 .footer .credit  {
            opacity: 1;
            transition-delay: 1000ms;
        }
        */
        .footer .credit div {
            display: inline-block;
            margin: 0 10px;
        }
        .footer .credit a,
        .footer .credit a:visited {
            color: #666;
        }


        /* Mailing list signup ----------------------------------------------------------- */

        .footer .mailing_list_signup {
            padding: 25px 0 0;
            margin: 0 0 20px;
            clear: both;
        }
            .footer .mailing_list_signup .prelude:after {
                margin-bottom: 20px;
            }
            .footer .mailing_list_signup .error {
                color: #f30000;
            }
            .footer .mailing_list_signup .form_row {
                width: 100%;
                position: relative;
                border: none;
            }
                .footer .mailing_list_signup form .form_row input[type='text'] {
                    background: transparent;
                    color: #888;
                    padding: 2px 60px 10px 0;
                    outline: none;
                    font-size: 1.4rem;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    width: 100%;
                    font-weight: normal;
                }
                .footer .mailing_list_signup .form_row input:-webkit-autofill,
                .footer .mailing_list_signup .form_row input:-webkit-autofill:hover, 
                .footer .mailing_list_signup .form_row input:-webkit-autofill:focus
                .footer .mailing_list_signup .form_row input:-webkit-autofill {
                    -webkit-box-shadow: 0 0 0 50px #222 inset;
                    background: #222;
                    -webkit-text-fill-color: #fff;
                    border-color: #555;
                }
                .footer .mailing_list_signup form .form_row input[type='text'].active {
                    color: #fff;
                }
                .footer .mailing_list_signup .form_row a {
                    position: absolute;
                    overflow: hidden;
                    top: 0;
                    right: 0;
                    height: 30px;
                    width: 47px;
                    background: url('/images/arrow_right_reverse.png') center center no-repeat;
                    background-size: 47px auto;
                    display: block;
                    text-indent: -100px;
                }


#container {    
    margin: 0;
    padding-top: 0;
    opacity: 1;
    transition: padding 500ms cubic-bezier(.09,.39,.02,.99), opacity 300ms linear, background 5000ms linear;
    
    
    background: #151515;
    background: #f2f2f2; /* Asked to remove transition screen */
    background: #fff; /* Asked to remove transition screen */
}
    body.first-load-complete #container {
        opacity: 1;
        margin-top: 0;
        padding-top: 0;
    }
    body.navigation-open #container {
        opacity: 0;
    }

    #container h1.hidden {
        overflow: hidden;
        height: 0;
        width: 0;
        padding: 0;
        margin: 0;
    }

    #container .transition-logo {
        position: fixed;
        top: 50%;
        left: 50%;
        opacity: 0;
        z-index: 0;
        margin: -45px 0 0 -55px;
        transition: transform 1800ms cubic-bezier(.18, 1, .21, 1) 450ms, opacity 5000ms cubic-bezier(.18, 1, .21, 1) 0ms;
        transform: translateY(-100px);
        display: none;

        display: none !important; /* Asked to remove transition screen */
    }
        body.page-transition-active #container .transition-logo { 
            display: block;
        }
        #container .transition-logo svg {
            width: 110px;
        }
        body.page-transition #container .transition-logo,
        body.page-transition2 #container .transition-logo,
        body.ajax-loading #container .transition-logo,
        body.ajax-loading-complete #container .transition-logo {
            opacity: 0.2;
            transform: none;
        }
        body.ajax-loading-complete #container .transition-logo {
            opacity: 0;
            transition: transform 5000ms cubic-bezier(.18, 1, .21, 1), opacity 1000ms ease-in-out;
        }


/* ----------------------------------------------------------------------------------
  Classes
---------------------------------------------------------------------------------- */
    
    /* Artwork detail
    ---------------------------------------------------------------------------------- */

    .pagination_controls {
        height: 0;
    }
        .pagination_controls > div {
            position: absolute;
            z-index: 6;
            top: 50px;
            width: 100px;
            height: 80vh;
            cursor: pointer;
            text-indent: -200px;
            background: url('/images/arrow_left.png') 25% center no-repeat;
            background-size: 47px auto;
            opacity: 0.15;
            transition: opacity 400ms ease-in-out, transform 600ms cubic-bezier(.65,.06,.19,.96);
            transform: translate3d(10px, 0, 0);
            overflow: hidden;
        }
            .pagination_controls > div.pagination_controls_next {
                right: 0;
                transform: translate3d(-10px, 0, 0);
                background: url('/images/arrow_right.png') 75% center no-repeat;
                background-size: 47px auto;
            }
            /* PERFORMANCE ISSUE - causes footer to repaint */
            .pagination_controls > div:hover {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
            .pagination_controls > div.pagination_controls_next:hover {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
                .pagination_controls > div a {
                    position: absolute;
                    display: block;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    right: 0;
                }
            .pagination_controls > div.disabled {
                display: none;
            }
            body.user-idle .pagination_controls > div {
                opacity: 0;
            }


    .artwork_detail {
        z-index: 5;
        position: relative;
    }
        .artwork_detail .footer {
            clear: both;
            float: left;
            width: 100%;
        }
        .artwork_detail .artwork_detail_main {
            min-height: 100vh;
            width: 100%;
            position: relative;
            background: #fff;
            z-index: 1;
            position: relative;
        }
        .artwork_detail.has_hero_image .artwork_detail_main {
            background: transparent;
        }
        .artwork_detail .artwork_detail_main:after {
            content: '';
            clear: both;
            display: block;
            height: 0;
        }
            .artwork_hero_image_container,
            .artwork_hero_image_container.image_lazy_load {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 4;
                background: #fefefe;
                transition: opacity 600ms ease-in-out, transform 800ms cubic-bezier(.75,.01,.3,.99);
            }
            .content-not-reversed .artwork_hero_image_container.active {
                max-height: 50px;
                opacity: 0;
            }
                .artwork_hero_image_container .image {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 4;
                    opacity: 0;
                    transition: opacity 600ms ease-in-out, transform 800ms cubic-bezier(.75,.01,.3,.99);
                    background: center 0 no-repeat;
                    background-size: cover;
                }
                .artwork_hero_image_container.active .image {
                    opacity: 1;
                }
                .artwork_hero_image_container.loading .image {
                    opacity: 0;
                }
                .artwork_hero_image_container img {
                    visibility: hidden;
                }

            
            .artwork_detail .draginner {
                transition: transform 250ms ease-in-out;
            }
            .artwork_detail.dragging .draginner {
                transition: none;
            }
            .artwork_detail .image_container {
                float: left;
                width: 60%;
                position: relative;
                z-index: 5;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 150px 0 100px 150px;
            }
                .artwork_detail .image {
                    max-width: 100%;
                    height: 100%;
                    text-align: center;
                }
                    .artwork_detail .image .image_inner {
                        max-width: 100%;
                        width: 100%;
                        height: 100%;
                        text-align: center;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                        body.browser-msie .artwork_detail .image .image_inner {
                            display: block;
                        }
                    .artwork_detail .image img {
                        max-height: 100%;
                        display: block;
                        margin: 0 auto;
                    }
                    .artwork_detail.dragging .image img {
                        pointer-events: none;
                        -khtml-user-select: none;
                        -o-user-select: none;
                        -moz-user-select: none;
                        -webkit-user-select: none;
                        user-select: none;
                    }
                .artwork_detail .images {
                    position: absolute;
                    top: 150px;
                    left: 100px;
                    right: 0;
                    bottom: 70px;
                }
                    .artwork_detail .images .image {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                    }
                    .artwork_detail .images .image.image_hero_placeholder {
                        visibility: hidden;
                    }
            .artwork_detail .content_container {
                float: right;
                width: 40%;
                position: relative;
                z-index: 5;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 150px 150px 50px 100px;
            }
            @media screen and (min-width: 1660px) {
                .artwork_detail .content_container {
                    padding-top: 13%;
                }
            }
                .artwork_detail .content {
                    width: 100%;
                }
                    .artwork_detail .content h1 {
                        font-size: 2.5rem;
                        line-height: 3rem;
                        margin: 0 0 30px;
                        padding: 10px 0 0;
                    }
                        .artwork_detail .content h1 span {
                            display: block;
                        }
                    .artwork_detail .artwork_details {
                        display: block;
                        width: 100%;
                        margin: 0 0 30px;
                    }
                        .artwork_detail .artwork_details .detail_subtitle {
                            margin: 0 0 25px;
                        }
                        .artwork_detail .artwork_details .subtitle {
                            font-family: Apercu_Pro, serif;
                            color: #151515;
                            font-weight: bold;
                            text-align: left;
                            margin: 0;
                            padding: 0;
                            font-size: 22px;
                            line-height: 30px;
                            margin: 0 0 30px;
                        }
                        .artwork_detail .artwork_details > div {
                            margin: 0 0 6px;
                        }
                        .artwork_detail .fallback_cart_wrapper {
                            margin: 0 0 20px;
                        }
                    .artwork_detail .store_item {
                        display: block;
                        float: left;
                        width: 100%;
                        margin: 0 0 30px;
                    }
                        .artwork_detail .store_item .store_item {
                            display: block;
                            width: 100%;
                        }
                            .artwork_detail .store_item .store_item .title {
                                display: none;
                            }
                            .artwork_detail .store_item .store_item .price,
                            .artwork_detail .store_item .store_item .delivery_info {
                                color: #333;
                            }
                            .artwork_detail .store_item .store_item .price.sold_out_dynamic,
                            .artwork_detail .store_item .store_item .price.sold_out {
                                color: #e62330;
                            }
                    .artwork_detail .tools {
                        display: block;
                        float: left;
                        width: 100%;
                        margin: 0;
                    }
                        .artwork_detail .tools > div {
                            float: left;
                            margin: 0 20px 0 0;
                        }
                    .artwork_detail .image_gallery_multiple_thumbnails {
                        display: block;
                        float: left;
                        width: 100%;
                        margin: 0 0 30px;
                    }
                        .artwork_detail .image_gallery_multiple_thumbnails ul {
                            display: block;
                            margin: 0 -10px 0 0;
                            padding: 0;
                            list-style: none;
                        }
                        .artwork_detail .image_gallery_multiple_thumbnails ul li {
                            float: left;
                            width: 25%;
                            min-width: 40px;
                            max-width: 90px;
                            margin: 0;
                            padding: 0 10px 10px 0;
                            -moz-box-sizing: border-box;
                            -webkit-box-sizing: border-box;
                            box-sizing: border-box;
                            height: auto;
                        }
                        .artwork_detail .image_gallery_multiple_thumbnails ul li a {
                            display: block;
                            position: relative;
                        }
                            .artwork_detail .image_gallery_multiple_thumbnails ul li a img {
                                display: block;
                            }
                            .artwork_detail .image_gallery_multiple_thumbnails ul li a:after {
                                display: block;
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background: rgba(0,0,0,0.3);
                                transition: opacity 400ms ease-in-out;
                                opacity: 0;
                            }
                            .device-desktop .artwork_detail .image_gallery_multiple_thumbnails ul li a:hover:after {
                                opacity: 1;
                            }

        .artwork_detail .artwork_detail_additional {
            width: 100%;
            min-height: 100vh;
            clear: both;
            float: left;
            padding: 150px 70px 100px;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            background: #151515;
        }
            .artwork_detail .artwork_detail_additional .content {
                width: 60%;
                float: left;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 0 70px 0 0;
            }
                .artwork_detail .artwork_detail_additional .content .section {
                    width: 100%;
                    clear: both;
                    margin: 0 0 50px;
                }
                .artwork_detail .artwork_detail_additional .content h3 {
                    margin: 0 0 40px;
                }
                .artwork_detail .artwork_detail_additional .content .description {
                    margin: 0 0 40px;
                }



	/*  Hero slideshow
	---------------------------------------------------------------------------------- */

	#main_slideshow_nav {
	    width: 100%;
	    position: absolute;
	    bottom: 10px;
	    left: 40px;
	    z-index: 2;

	    font-family: 'Apercu_Pro';
	    -webkit-transform-origin: 0%;
	    -moz-transform-origin: 0%;
	    -ms-transform-origin: 0%;
	    -o-transform-origin: 0%;
	    transform-origin: 0%;
	    -webkit-transform: rotate(-90deg);
	    -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	    -o-transform: rotate(-90deg);
	    transform: rotate(-90deg);
	    color: #fff;
	    width: 305px;
	    text-align: right;
	    font-size: 11px;
	    line-height: 12px;
	    font-weight: 200;
	    letter-spacing: 1px;
	    text-transform: uppercase;
	    font-weight: 200;
	    color: #151515;
	    margin: 0;
	    font-weight: bold;
	    padding-top: 15px;
	    transition: opacity 400ms ease-in-out;
	}
	    #main_slideshow_nav ul {
	        margin: 0;
	        padding: 0;
	        list-style: none;
	    }
	    #main_slideshow_nav ul li {
	        float: left;
	        margin: 0 20px 0 0;
            min-width: 20px;
            text-align: center;
	        border-bottom: 2px solid transparent;
	        transition: border 300ms ease-in-out;
	        cursor: pointer;
	        transition: transform 400ms cubic-bezier(.45,0,.27,1), opacity 400ms ease-in-out;
	        opacity: 0;
	        transform: translate3d(0, -70px, 0);
	    }
	        #main_slideshow_nav ul li:nth-of-type(2) {
	            transition-delay: 50ms;
	        }
	        #main_slideshow_nav ul li:nth-of-type(3) {
	            transition-delay: 100ms;
	        }
	        .first-load-complete .hero-section-active #main_slideshow_nav ul li {
	            opacity: 1;
	            transform: translate3d(0, 0, 0);
	        }
	    #main_slideshow_nav ul li:after {
	        display: block;
	        clear: both;
	        content: '';
	        width: 0;
	        margin: 12px 0 0;
	        border-bottom: 2px solid #ccc;
	        transition: width 800ms ease-in-out, border 300ms ease-in-out;
	    }
	    #main_slideshow_nav ul li:hover:after {
	        width: 100%;
	        transition: width 300ms ease-in-out;
	    }
	    #main_slideshow_nav ul li.active:after {
	        width: 100%;
	        border-color: #151515;
	    }

	#main_slideshow {
	    width: 100%;
	    position: absolute !important;
	    z-index: 1;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
        overflow: hidden;
	}
    #main_slideshow.hidden-off-screen {
        /* This was causing issues on some of the galleries machines, hidden-off-screen would always be on the element so it would not be visible... Unresolved issue. */
        /*visibility: hidden;*/
    }
	    #main_slideshow .slide {
	        width: 100%;
            bottom: 0;
            right: 0;
	    }
	        #main_slideshow .slide .content {
	            width: 40%;
	            position: absolute;
	            top: 0;
	            left: 0;
	            bottom: 0;
	            z-index: 2;
	            box-sizing: border-box;
	            padding: 0 0 0 90px;
	            opacity: 0;
	            transform: translate3d(0, 0, 0);
	            transition: transform 1000ms ease-in-out, opacity 400ms ease-in-out;
	        }
	            #main_slideshow.slide-active .slide .content {
	                opacity: 1;
	            }
	            #main_slideshow.slide-end .slide .content {
	                transform: translate3d(-50px, 0, 0);
	            }

                #main_slideshow .slide .content .scroll {
                    position: absolute;
                    width: 100px;
                    bottom: 30px;
                    cursor: pointer;
                    height: 47px;
                    background: url('/images/arrow_down.png') 0 0 repeat-y;
                    background-size: auto 47px;
                    padding: 0 0 0 30px;
                    font-family: Apercu_Pro, serif;
                    color: #151515;
                    font-weight: bold;
                    font-size: 12px;
                    line-height: 47px;
                    -webkit-font-smoothing: subpixel-antialiased;
                    transition: background 400ms ease-in-out, opacity 400ms ease-in-out;
                    opacity: 0;

                    display: none;
                }
                    #main_slideshow.has_navigation .slide .content .scroll {
                        margin-left: 40px;
                    }
                    #main_slideshow .slide .content .scroll:hover {
                        background-position: 0 47px;
                    }
                    .hero-section-active #main_slideshow .slide .content .scroll {
                        opacity: 1;
                    }

                #main_slideshow .slide .content .content_header {
                    position: absolute;
                    width: 100%;
                    top: 50%;
                    transform: translateY(-50%);
                    padding: 40px 0 0;
                }
                #main_slideshow .slide .content .content_header {
                    /* 
                        DO NOT MESS AROUND WITH THIS, BY DEFAULT THIS SHOULD BE VISIBLE AND ONLY DISSAPEAR WITH ANIMATE CLASSES
                        opacity: 0;
                        transform: translate3d(0, -100px, 0) translateY(-50%);
                    */
                    opacity: 1;
                    transform: translate3d(0, 0, 0) translateY(-50%);
                    transition: opacity 400ms ease-in-out, transform, transform 400ms ease-in-out;
                }
                .hero-section-active #main_slideshow .slide .content .content_header {
                    opacity: 1;
                    transform: translate3d(0, 0, 0) translateY(-50%);
                    transition: opacity 2000ms ease-in-out, transform, transform 1200ms cubic-bezier(0,0,.58,1);
                }
                .hero-section-animate #main_slideshow .slide .content .content_header {
                    transform: translate3d(0, -400px, 0) translateY(-50%);
                    transition: opacity 2000ms ease-in-out, transform, transform 500ms cubic-bezier(.69,.02,.99,.19);
                }
                    #main_slideshow .slide .content .content_header h1,
                    #main_slideshow .slide .content .content_header .faux_h1 {
                        width: 50vw;
                        margin-bottom: 40px;
                    }
                        .text_animate .word1,
                        .text_animate .word2,
                        .text_animate .word3,
                        .text_animate .word4,
                        .text_animate .word5,
                        .text_animate .word6,
                        .text_animate .word7 {
                            white-space: nowrap;
    	                }

                        #main_slideshow .slide .content .content_header .pre-title {
                            transition: opacity 400ms ease-in-out, transform 400ms cubic-bezier(.45,0,.27,1);
                            transform: translate3d(-100px, 0, 0);
                            opacity: 0;
                            position: absolute;
                            top: 0;
                            padding: 40px 0 0;
                        }
                            #main_slideshow.slide-begin .slide .content .content_header .pre-title {
                                transform: translate3d(0, 0, 0);
                                opacity: 1;
                            }
                            #main_slideshow.slide-begin .slide .content .content_header .post-title {
                                opacity: 0;
                            }
                        #main_slideshow .slide .content .content_header .post-title {
                            transition: opacity 400ms ease-in-out, transform 400ms cubic-bezier(.45,0,.27,1);
                            transform: translate3d(0, 0, 0);
                            opacity: 1;
                            margin: 0 0 40px;
                        }
                            #main_slideshow .slide .content .content_header .post-title h1 {
                                margin: 0 0 40px;
                            }

                    #main_slideshow .slide .content .content_header h2 {
                        width: 40vw;
                        font-size: 55px;
                        line-height: 65px;
                        letter-spacing: -1px;
                    }
                    #main_slideshow .slide .content .content_header .subtitle {
                        font-size: 2.0rem;
                        line-height: 2.8rem;
                        font-family: Apercu_Pro, serif;
                        color: #151515;
                        font-weight: bold;
                        text-align: left;
                        margin: 0 0 40px;
                    }
	                #main_slideshow .slide .content .content_header .prelude {
	                    float: left;
	                    /*padding-left: 5px;*/
	                }
	                    #main_slideshow .slide .content .content_header .prelude:after {
	                        margin-top: 10px;
	                    }
	                    #main_slideshow.slide-active .slide .content .content_header .prelude:after {
                            transform: scaleX(1);
                            transition-delay: 0;
	                    }
	                    #main_slideshow.slide-begin .slide .content .content_header .prelude:after {
                            transform: scaleX(0);
                            transition-delay: 0;
	                    }
	        #main_slideshow .slide .image {
	            max-width: 60%;
	            width: 100%;
	            position: absolute;
	            top: 0;
	            right: 0;
	            bottom: 0;
	            z-index: 1;
	            background: center center no-repeat;
	            background-size: cover;
	            transition: max-width 800ms cubic-bezier(.45,0,.27,1), transform 800ms cubic-bezier(.45,0,.27,1), opacity 400ms ease-in-out;
	            opacity: 0;
	        }
	            #main_slideshow.slide-active .slide .image {
	                opacity: 1;
	            }
	            #main_slideshow .slide .image:after {
	                background: #fff;
	                display: block;
	                content: '';
	                position: absolute;
	                top: 0;
	                left: 0;
	                bottom: 0;
	                width: 100%;
                    transform: scaleX(1);
	                transition: transform 800ms cubic-bezier(.45,0,.27,1), opacity 400ms ease-in-out;
                    transform-origin: right 0;
	            }
	            #main_slideshow.slide-active .slide .image:after {
                    transform: scaleX(0);
	            }
	            #main_slideshow.slide-end .slide .image {
	                opacity: 0;
	            }
	            #main_slideshow.slide-end .slide .image:after {
	                width: 0;
	            }

            /*  No text overlay variant ------------------------------------------- */

            #main_slideshow .slide.slide-no-overlay .content {
                width: 50%;
            }
                #main_slideshow .slide.slide-no-overlay .content .content_header {
                    left: 0;
                    padding-left: 90px;
                    padding-right: 20px;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                }
                #main_slideshow .slide .content .content_header h1 {
                    width: auto;
                }
            #main_slideshow .slide.slide-no-overlay .image {
                width: 50%;
            }


	/*  Scroll sections
	---------------------------------------------------------------------------------- */

	#scroll_section_nav {
	    width: 100%;
	    position: fixed;
	    bottom: 10px;
	    left: 40px;
	    z-index: 2;

	    font-family: 'Apercu_Pro';
	    -webkit-transform-origin: 0%;
	    -moz-transform-origin: 0%;
	    -ms-transform-origin: 0%;
	    -o-transform-origin: 0%;
	    transform-origin: 0%;
	    -webkit-transform: rotate(-90deg);
	    -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	    -o-transform: rotate(-90deg);
	    transform: rotate(-90deg);
	    width: 500px;
	    text-align: right;
	    font-size: 10px;
	    line-height: 12px;
	    font-weight: 200;
	    letter-spacing: 1px;
	    text-transform: uppercase;
	    font-weight: 200;
	    color: #151515;
	    margin: 0;
	    font-weight: bold;
	    padding-top: 15px;
	    transition: opacity 400ms ease-in-out;
	}
    .hero-section-active #scroll_section_nav,
    .hero-section-active #scroll_section_nav * {
        pointer-events: none;
    }
	    #scroll_section_nav ul {
	        margin: 0;
	        padding: 0;
	        list-style: none;
	        white-space: nowrap;
	        text-align: left;
	    }
	    #scroll_section_nav ul li {
	        display: inline-block;
	        margin: 0 20px 0 0;
	        border-bottom: 2px solid transparent;
	        transition: border 300ms ease-in-out;
	        cursor: pointer;
	        transition: transform 400ms cubic-bezier(.45,0,.27,1), opacity 400ms ease-in-out;
	        opacity: 1;
	        transform: translate3d(0, 0, 0);
	    }
	        #scroll_section_nav ul li:nth-of-type(2) {
	            transition-delay: 50ms;
	        }
	        #scroll_section_nav ul li:nth-of-type(3) {
	            transition-delay: 100ms;
	        }
	        #scroll_section_nav ul li:nth-of-type(4) {
	            transition-delay: 150ms;
	        }
	        #scroll_section_nav ul li:nth-of-type(5) {
	            transition-delay: 200ms;
	        }
	        .hero-section-active #scroll_section_nav ul li,
	        .scroll-section-setup #scroll_section_nav ul li {
	            opacity: 0;
	            transform: translate3d(0, -70px, 0);
	        }
            .footer-visible #scroll_section_nav {
                position: absolute;
            }
        #scroll_section_nav ul li a {
            display: block;
        }
        #scroll_section_nav ul li a:after {
            display: block;
            clear: both;
            content: '';
            width: 0;
            margin: 12px 0 0;
            border-bottom: 2px solid #ccc;
            transition: width 300ms ease-in-out, border 300ms ease-in-out;
        }
	    #scroll_section_nav ul li a:hover:after {
	        width: 100%;
	        transition: width 300ms ease-in-out;
	    }
	    #scroll_section_nav ul li.active a:after {
	        width: 100%;
	        border-color: #151515;
	    }

	.scroll_section {
	    width: 100%;
	    position: relative;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
	}
        .scroll_section.scroll_section_top {
            transition: background 400ms ease-in-out;
        }
        .hero-section-animate .scroll_section.scroll_section_top {
            
        }
        .scroll_section.scroll_section_panels {
            padding: 0 0 0;
        }
        .scroll_section.scroll_section_panels > .inner {
            max-width: 1680px;
            width: 100%;
            padding: 75px 150px 0;
            margin: 0 auto;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
        .scroll_section.scroll_section_panels.section_index_1 > .inner,
        .scroll_section.scroll_section_standard.section_index_1 > .inner {
            padding-top: 150px;
        }
            .scroll_section .heading_wrapper {
                margin: 0 0 50px;
                padding: 20px 0 0;
            }
                .scroll_section .heading_wrapper:after {
                    content: '';
                    display: block;
                    clear: both;
                    overflow: hidden;
                    height: 0;
                }
                .scroll_section .heading_wrapper h1 {
                    font-size: 35px;
                    line-height: 38px;
                    float: left;
                }

        .scroll_section.scroll_section_standard > .inner {
            max-width: 1680px;
            width: 100%;
            padding: 75px 150px 0;
            margin: 0 auto;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }


    /* Page enquiry widget
    ---------------------------------------------------------------------------------- */

        .page_enquiry_widget {
            display: block;
            clear: both;
            background: #fafafa;
        }
            .page_enquiry_widget form {
                display: block;
                margin: 0 auto;
                max-width: 440px;
                padding: 110px 20px 140px;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                transform: translate3d(0, 50px, 0);
                opacity: 0;
                transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
            }
                .page_enquiry_widget.visible form {
                    transform: translate3d(0, 0, 0);
                    opacity: 1;
                }
            .page_enquiry_widget h3 {
                text-align: center;
                margin: 0 0 40px;
            }

            .page_enquiry_widget_field {
                display: block;
                width: 100%;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;

                border: 2px solid #151515;
                font-size: 1.5rem;
                line-height: 2.0rem;
                font-family: Apercu_Pro, serif;
                color: #151515;
                font-weight: bold;
                padding: 0;
                position: relative;
            }
                .page_enquiry_widget_field label {
                    display: none;
                }
                .page_enquiry_widget_field input {
                    border: 0;
                    outline: none;
                    font-size: 1.4rem;
                    line-height: 2.0rem;
                    padding: 16px 75px 18px 25px;
                    width: 100%;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    margin: 0 0 1px 0;
                }
                    body.device-handheld .page_enquiry_widget_field input {
                        font-size: 16px
                    }
                .page_enquiry_widget_field .page_enquiry_widget_submit {
                    float: right;
                    width: 75px;
                    height: 55px;
                    position: absolute;
                    top: 0;
                    right: 0;
                    overflow: hidden;
                }
                    .page_enquiry_widget_field .page_enquiry_widget_submit .loader {
                        display: block;
                        width: 75px;
                        height: 55px;
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 0;
                    }
                    .page_enquiry_widget_field .page_enquiry_widget_submit a {
                        display: block;
                        margin: 0 auto;
                        width: 47px;
                        height: 55px;
                        background: url('/images/arrow_right.png') center center repeat-x;
                        background-size: 47px auto;
                        display: block;
                        text-indent: -100px;
                        overflow: hidden;
                        position: relative;
                        z-index: 1;
                        transition: background 400ms ease-in-out;
                    }
                    .page_enquiry_widget_field .page_enquiry_widget_submit a:hover {
                        background-position: 47px center;
                    }
                    .page_enquiry_widget_field .page_enquiry_widget_submit.loading a,
                    .page_enquiry_widget_field .page_enquiry_widget_submit.loading a:visited {
                        opacity: 0;
                        transition: opacity 400ms ease-in-out;
                    }
                    .page_enquiry_widget_field .page_enquiry_widget_submit .loader {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        width: 100%;
                        height: 55px;
                        overflow: hidden;
                        z-index: 5;
                        transition: transform 400ms cubic-bezier(.75,.01,.3,.99);
                        transform: translateY(-100%);
                    }
                    .page_enquiry_widget_field .page_enquiry_widget_submit.loading .loader {
                        transform: translateY(0);
                    }
                        .page_enquiry_widget_field .page_enquiry_widget_submit.loading .loader svg {
                            -webkit-animation: rotate 2s linear infinite;
                            animation: rotate 2s linear infinite;
                            -webkit-transform-origin: center center;
                            transform-origin: center center;
                            height: 23px;
                            width: 23px;
                            position: absolute;
                            top: 15px;
                            left: 26px;
                        }
                            .page_enquiry_widget_field .page_enquiry_widget_submit.loading .loader svg .path {
                                stroke-dasharray: 1, 200;
                                stroke-dashoffset: 0;
                                -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
                                animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
                                stroke-linecap: round;
                            }


    /*  Feature panels
    ---------------------------------------------------------------------------------- */

    .feature_panels section {
        float: left;
        width: 100%;
        position: relative;
        padding: 25px 0 0; /* 100px 0 0 Removed - asked to reduce space between elements */
    }
    /*
    .scroll_section.section_index_1 .feature_panels section.panel_index_1 {
        padding-top: 175px;
    }
    */
        .feature_panels section .panel_heading_container {
            margin-right: -75px;
        }
        .feature_panels section .panel_heading {
            color: #fff;
            width: 33.33%;
            font-family: 'Apercu_Pro';
            font-size: 11px;
            line-height: 11px;
            font-weight: 200;
            letter-spacing: 0.1rem;
            text-transform: uppercase;
            font-weight: 200;
            color: #151515;
            margin: 0 0 85px;
            font-weight: bold;
            padding-top: 15px;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            padding-right: 75px;
        }
        .feature_panels section.has_filters .panel_heading {
            margin: 0 0 25px;
        }
            .feature_panels section .panel_heading:after {
                display: block;
                content: '';
                height: 2px;
                background: #151515;
                margin: 25px 0 0;
                width: 100%;
                transition: transform 1100ms ease-in-out;
                transform: scaleX(0);
                transform-origin: 0 0;
            }
            .feature_panels section .panel_heading.visible:after {
                transform: scaleX(1);
                transition-delay: 200ms;
            }

            .feature_panels section.variant_condensed .panel_heading {
                margin: 0 0 50px;
            }

        .feature_panels section .panel_filters {
            width: 100%;
            margin: 0 0 85px;
        }
            .feature_panels section .panel_filters ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            .feature_panels section .panel_filters ul li {
                font-family: 'Apercu_Pro';
                font-size: 1.1rem;
                line-height: 1.2rem;
                font-weight: 200;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                color: #151515;
                margin: 0 10px 0 0;
                display: inline-block;
                font-weight: bold;
            }
            .feature_panels section .panel_filters ul li a {
                display: block;
                position: relative;
                border: 2px solid transparent;
                padding: 7px 0 9px;
                cursor: pointer;
            }
            .feature_panels section .panel_filters ul li a:after {
                content: '';
                display: block;
                width: 0;
                border-bottom: 2px solid #151515;
                position: absolute;
                bottom: 0;
                left: 0;
                transition: width 400ms ease-in-out;
            }
            .feature_panels section .panel_filters ul li:hover a:after,
            .feature_panels section .panel_filters ul li.active a:after {
                width: 100%;
            }
            .feature_panels section .panel_filters ul li a,
            .feature_panels section .panel_filters ul li a:visited {
                color: inherit;
            }

        .feature_panels section .panel_footer {
            display: block;
        }
            .feature_panels section .panel_footer.panel_footer_revealable_link {
                margin: 0 0 75px;
            }
                .feature_panels section .panel_footer.panel_footer_revealable_link:before {
                    display: block;
                    display: none;
                    content: '';
                    height: 2px;
                    background: #151515;
                    margin: 15px 0 30px;
                    width: 33.33%;
                    max-width: 100px;
                    transition: width 1100ms ease-in-out;
                }
            .feature_panels section .panel_footer.panel_footer_revealable_link.disabled {
                display: none;
            }


        /*  Custom enquiries panel
        ---------------------------------------------------------------------------------- */

        .feature_panels section.panel_custom_enquiries {
            margin: 0 0 75px;
        }
            .feature_panels section.panel_custom_enquiries .area_wrapper {
                margin: 0 -75px 0 0;
                display: block;
            }
                .feature_panels section.panel_custom_enquiries .enquiry_form {
                    width: 66.66%;
                    max-width: 642px;
                    float: left;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    padding: 0 75px 0 0;
                }
                .feature_panels section.panel_custom_enquiries .enquiry_text {
                    width: 33.33%;
                    float: right;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    padding: 0 75px 0 0;
                }
                    .feature_panels section.panel_custom_enquiries .enquiry_text .content .description {
                        margin-bottom: 15px;
                    }
                    .feature_panels section.panel_custom_enquiries .enquiry_text .content .columns {
                        margin-bottom: 15px;
                    }


    /*  Basic page layout format
    ---------------------------------------------------------------------------------- */

        .content_basic_layout {
            padding: 150px 150px;
            max-width: 1023px;
            margin: 0 auto;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
            .content_basic_layout .heading_wrapper {
                margin: 0 0 40px;
            }
                .content_basic_layout .heading_wrapper:after {
                    content: '';
                    display: block;
                    clear: both;
                    overflow: hidden;
                    height: 0;
                }
                .content_basic_layout h1 {
                    font-size: 3.5rem;
                    line-height: 3.8rem;
                    display: block;
                    margin: 0 0 20px;
                }
                .content_basic_layout .subtitle {
                    font-family: Apercu_Pro, serif;
                    color: #151515;
                    font-weight: bold;
                    text-align: left;
                    font-family: Apercu_Pro, serif;
                    color: #151515;
                    font-weight: bold;
                    font-size: 12px;
                    line-height: 20px;
                    letter-spacing: 1px;
                    -webkit-font-smoothing: subpixel-antialiased;
                    display: block;
                    clear: both;
                    margin: 0 0 20px;
                }
                .content_basic_layout .prelude {
                    width: 33.33%;
                }
            .content_basic_layout .heading_image {
                margin: 0 0 40px;
            }


    /*  Text columns
    ---------------------------------------------------------------------------------- */

    .text_columns {
        margin: 0 -75px 75px 0;
        display: block;
    }
        .text_columns .aside {
            float: left;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 33.33%;
            padding: 0 75px 0 0;
        }
            .text_columns .aside .pull_quote {
                margin: 0 0 40px;
            }
        .text_columns .content {
            float: left;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 66.66%;
            padding: 0 75px 0 0;
        }
            .text_columns .content_initial_text {
                display: block;
                max-height: 2000px;
                transition: all 600ms ease-in-out;
            }
                .text_columns .content_initial_text .inner {
                    display: block;
                    -webkit-column-count: 2;
                    -moz-column-count: 2;
                    column-count: 2;

                    -webkit-column-gap: 75px;
                    -moz-column-gap: 75px; 
                    column-gap: 75px;
                }
                .text_columns .extended_text_show .content_initial_text {
                    max-height: 0;
                    overflow: hidden;
                    display: none;
                }
            .text_columns .content_extended_text {
                display: block;
                transition: all 2000ms cubic-bezier(.18, 1, .21, 1);
            }
                .text_columns .content_extended_text .inner {
                    display: block;
                    -webkit-column-count: 2;
                    -moz-column-count: 2;
                    column-count: 2;

                    -webkit-column-gap: 75px;
                    -moz-column-gap: 75px; 
                    column-gap: 75px;
                }
                .text_columns .extended_text_hidden .content_extended_text {
                    opacity: 0;
                    transform: translateY(200px);
                    transition: none;
                    height: 0;
                    overflow: hidden;
                }
                .text_columns .extended_text_show .content_reveal_more_link {
                    display: none;
                }


    /*  Basic records grid styles
    ---------------------------------------------------------------------------------- */

    .records_grid {
        transition: transform 500ms cubic-bezier(.65,.06,.19,.96), opacity 500ms ease-in-out;
    }
        .records_grid.filter_transition {
            transform: translateY(100px);
            opacity: 0;
        }


	/*  Standard grid
	---------------------------------------------------------------------------------- */

	.standard_grid {
	    width: auto;
	    margin: 0 -75px 0 0;
	}
        .standard_grid .item {
            box-sizing: border-box;
            width: 33.33%;
            padding: 0 75px 75px 0;
            display: inline-block;
            vertical-align: top;
            transform: translate3d(0, 50px, 0);
            opacity: 0;
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
            /* Tile list variant ------------------------ */
            .standard_grid.tile_grid .group {
                box-sizing: border-box;
                width: 33.33%;
                padding: 0 75px 0 0;
                display: inline-block;
                vertical-align: top;
            }
            .standard_grid.tile_grid .group .item {
                width: 100%;
                padding: 0 0 75px 0;
            }
        .standard_grid .item.animate-from-bottom {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .standard_grid .item.animate-from-top {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
            transform: translate3d(0, -50px, 0);
        }
        .standard_grid .item.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        .standard_grid .item.revealable {
            display: none;
        }
            .standard_grid .item .image {
                width: 100%;
                margin: 0 0 30px;
                display: flex;
                min-height: 100px;
                overflow: hidden;
            }
            body.browser-msie .standard_grid .item .image {
                display: block;
            }
	            .standard_grid .item .image img {
	                max-width: 100%;
                    display: block;
                    align-self: flex-end;
                    transition: transform 500ms ease-out;
	            }
            .standard_grid .item h3 {
                min-height: 125px;
                min-height: 75px;
                min-height: 0;
                margin: 0 0 25px;
            }
                .standard_grid .item.no_caption h3 {
                    min-height: 65px;
                }
	        .standard_grid .item .content {
	            margin: 0 0 20px;
	            padding: 0 30px 0 0;
                color: #444;
	        }
	        .standard_grid .item .bottom {
	            margin: 0 0 20px;
	        }


        /*  Condensed variant
        ---------------------------------------------------------------------------------- */

            .standard_grid.standard_grid_condensed .item {
                padding-bottom: 50px;
            }
                .standard_grid.standard_grid_condensed .item h3 {
                    min-height: 0;
                    margin: 0 0 12px;
                    font-size: 2.0rem;
                    line-height: 2.8rem;
                }
                .standard_grid.standard_grid_condensed .item .bottom {
                    margin: 0;
                }

	/*  Text grid
	---------------------------------------------------------------------------------- */

	.text_grid {
	    width: auto;
	    margin: 0 -75px 0 0;
	    padding: 0 0 75px;
	}
	    .text_grid .item {
	        box-sizing: border-box;
	        width: 33.33%;
	        padding: 0 75px 0 0;
	        display: inline-block;
	        vertical-align: top;
	    }
	        .text_grid .item h3 {
	            margin: 0 0 50px;
	        }
	        .text_grid .item .content {
	            font-size: 15px;
	            line-height: 32px;
	        }

    /*  Instagram grid
    ---------------------------------------------------------------------------------- */

    .instagram_grid {
        width: auto;
        margin: 0 -20px 0 0;
        padding: 0 0 75px;
    }
        .instagram_grid .item {
            box-sizing: border-box;
            width: 20%;
            padding: 0 20px 20px 0;
            display: inline-block;
            vertical-align: top;
        }
            .instagram_grid .item a {
                display: block;
                padding-top: 100%;
                width: 100%;
                height: 0;
                position: relative;
            }
            .instagram_grid .item .image {
                position: absolute;
                top: 0;
                left: 0;
            }
            .instagram_grid .item .image img {

            }

	/*  Artworks grid
	---------------------------------------------------------------------------------- */

	.works_grid {
	    width: auto;
	    margin: 0 -75px 0 0;
	}
	    .works_grid .item {
	        box-sizing: border-box;
	        width: 33.33%;
	        padding: 0 75px 75px 0;
	        display: inline-block;
	        vertical-align: top;
	        transform: translate3d(0, 80px, 0);
	        opacity: 0;
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
	    }
            /* Tile list variant ------------------------ */
            .works_grid.tile_grid .group {
                box-sizing: border-box;
                width: 33.33%;
                padding: 0 75px 0 0;
                display: inline-block;
                vertical-align: top;
            }
            .works_grid.tile_grid .group .item {
                width: 100%;
                padding: 0 0 75px 0;
            }
	    .works_grid .item.animate-from-top {
	        transform: translate3d(0, -80px, 0);
	    }
	    .works_grid .item.visible {
	        transition: opacity 1000ms ease-in-out, transform, transform 1000ms cubic-bezier(0,0,.58,1);
	        transform: translate3d(0, 0, 0);
	        opacity: 1;
	    }
	        .works_grid .item:nth-of-type(2),
	        .works_grid .item:nth-of-type(5) {
	            transition-delay: 150ms;
	        }
	        .works_grid .item:nth-of-type(3),
	        .works_grid .item:nth-of-type(6) {
	            transition-delay: 300ms;
	        }
            .works_grid .item.revealable {
                display: none;
            }
            .works_grid .item .image {
                width: 100%;
                margin: 0;
                display: flex;
                overflow: hidden;
            }
                body.browser-msie .works_grid .item .image {
                    display: block;
                }
                .works_grid .item .image img {
                    max-width: 100%;
                    display: block;
                    align-self: flex-end;
                    transition: transform 500ms ease-out;
                }
            .works_grid .item .bottom {
                padding: 30px 0 0;
            }
                .works_grid .item .bottom .caption p {
                    margin-bottom: 0;
                }
	        .works_grid .item .prelude {
	            max-width: 100px;
	        }



    /*  Large grid
    ---------------------------------------------------------------------------------- */

    .full_grid {
        width: 100%;
        float: left;
        margin: 0 0 0 0;
    }
        .full_grid .item {
            width: auto;
            margin: 0 0 75px 0;
            position: relative;
            transform: translate3d(0, 50px, 0);
            opacity: 0;
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .full_grid .item.animate-from-bottom {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .full_grid .item.animate-from-top {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
            transform: translate3d(0, -50px, 0);
        }
        .full_grid .item.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
            .full_grid .item .area {
                width: 50%;
                display: inline-block;
                vertical-align: top;
                box-sizing: border-box;
            }
                .full_grid .item .area .content {
                    margin: 0 0 20px;
                }
                .full_grid .item .area .align_bottom {
                    width: 100%;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                }
            .full_grid .item .image {
                width: 100%;
                margin: 0 0 40px;
                display: block;
                box-sizing: border-box;
                vertical-align: top;
                background: #fefefe;
                overflow: hidden;
            }
                .full_grid .item .image img {
                    max-width: 100%;
                    display: block;
                }

	/*  Large grid
	---------------------------------------------------------------------------------- */

	.large_grid {
	    width: 100%;
        float: left;
	    margin: 0 0 0 0;
	}
	    .large_grid .item {
	        width: auto;
	        margin: 0 0 75px 0;
	        position: relative;
            transform: translate3d(0, 50px, 0);
            opacity: 0;
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
	    }
        .large_grid .item.animate-from-bottom {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .large_grid .item.animate-from-top {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
            transform: translate3d(0, -50px, 0);
        }
        .large_grid .item.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        .large_grid .item:after {
            content: '';
            display: block;
            height: 0;
            clear: both;
            overflow: hidden;
        }
	        .large_grid .item .area {
	            width: 33.33%;
                padding-right: 75px;
                float: left;
	            vertical-align: top;
	            box-sizing: border-box;
	        }
                .large_grid .item .area .content {
                    margin: 0 0 20px;
                    padding: 0 30px 0 0;
                }
                .large_grid .item .area h3 {
                    font-size: 40px;
                    line-height: 48px;
                }
	            .large_grid .item .area .align_bottom {
	                width: 100%;
	                position: absolute;
	                bottom: 0;
	                left: 0;
	                right: 0;
	            }
	        .large_grid .item .image {
	            width: 66.66%;
                float: right;
	            box-sizing: border-box;
	            vertical-align: top;
                background: #fefefe;
                overflow: hidden;
	        }
	            .large_grid .item .image img {
	                max-width: 100%;
                    margin: 0 auto;
                    display: block;
                    transition: transform 500ms ease-out;
	            }


	/*  Medium grid
	---------------------------------------------------------------------------------- */

	.medium_grid {
	    width: 100%;
        float: left;
	    margin: 0 0 0 0;
	}
        .medium_grid .item {
            width: auto;
            margin: 0 0 75px 0;
            position: relative;
            transform: translate3d(0, 50px, 0);
            opacity: 0;
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .medium_grid .item.animate-from-bottom {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .medium_grid .item.animate-from-top {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
            transform: translate3d(0, -50px, 0);
        }
        .medium_grid .item.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        .medium_grid .item:after {
            content: '';
            display: block;
            height: 0;
            clear: both;
            overflow: hidden;
        }
	        .medium_grid .item .area {
	            width: 50%;
	            padding-right: 0;
                padding-left: 75px;
                float: left;
	            vertical-align: top;
	            box-sizing: border-box;
	        }
	            .medium_grid .item .area h3 {
	                min-height: 125px;
                    min-height: 0;
	                margin: 0 0 30px;
	            }
	            .medium_grid .item .area .content {
	                margin: 0 0 20px;
	                padding: 0 30px 0 0;
	            }
	        .medium_grid .item .image {
	            width: 50%;
                min-height: 10px;
                float: left;
	            box-sizing: border-box;
	            vertical-align: top;
                background: #fefefe;
                overflow: hidden;
	        }
	            .medium_grid .item .image img {
	                max-width: 100%;
                    margin: 0 auto;
                    display: block;
                    transition: transform 500ms ease-out;
	            }

    /* Lazy load
    ---------------------------------------------------------------------------------- */

    .image_lazy_load {
        position: relative;
    }
    .image_lazy_load:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        background: #fafafa;
        transition: opacity 400ms ease-in-out;
        content: '';
        display: block;
    }
    .image_lazy_load img {
        transition: opacity 400ms ease-in-out;
    }
    .image_lazy_load img.zoomImg {
        transition: none;
    }
    .image_lazy_load img.init_img {
        max-width: 100%;
        width: 100%;
    }
        .image_lazy_load.loaded img.init_img {
            display: none;
        }
    .image_lazy_load.loading img {
        opacity: 0;
        transition: none;
    }
    .image_lazy_load.loading:before {
        opacity: 1;
    }
    .image_lazy_load svg.loader {
        display: none;
    }
        .image_lazy_load.loading svg.loader {
            -webkit-animation: rotate 2s linear infinite;
                  animation: rotate 2s linear infinite;
            -webkit-transform-origin: center center;
                  transform-origin: center center;
            width: 30px;
            height: 30px;
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -10px 0 0 -10px;
            display: block;
        }
            .image_lazy_load.loading svg.loader .path {
                stroke-dasharray: 1, 200;
                stroke-dashoffset: 0;
                -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
                      animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
                stroke-linecap: round;
            }
            @-webkit-keyframes rotate {
              100% {
                -webkit-transform: rotate(360deg);
                        transform: rotate(360deg);
              }
            }
            @keyframes rotate {
              100% {
                -webkit-transform: rotate(360deg);
                        transform: rotate(360deg);
              }
            }
            @-webkit-keyframes dash {
              0% {
                stroke-dasharray: 1, 200;
                stroke-dashoffset: 0;
              }
              50% {
                stroke-dasharray: 89, 200;
                stroke-dashoffset: -35px;
              }
              100% {
                stroke-dasharray: 89, 200;
                stroke-dashoffset: -124px;
              }
            }
            @keyframes dash {
              0% {
                stroke-dasharray: 1, 200;
                stroke-dashoffset: 0;
              }
              50% {
                stroke-dasharray: 89, 200;
                stroke-dashoffset: -35px;
              }
              100% {
                stroke-dasharray: 89, 200;
                stroke-dashoffset: -124px;
              }
            }
            @-webkit-keyframes color {
              100%,
              0% {
                stroke: #151515;
              }
              40% {
                stroke: #151515;
              }
              66% {
                stroke: #151515;
              }
              80%,
              90% {
                stroke: #151515;
              }
            }
            @keyframes color {
              100%,
              0% {
                stroke: #151515;
              }
              40% {
                stroke: #151515;
              }
              66% {
                stroke: #151515;
              }
              80%,
              90% {
                stroke: #151515;
              }
            }
            @-webkit-keyframes color2 {
              100%,
              0% {
                stroke: #fff;
              }
              40% {
                stroke: #fff;
              }
              66% {
                stroke: #ccc;
              }
              80%,
              90% {
                stroke: #ccc;
              }
            }
            @keyframes color2 {
              100%,
              0% {
                stroke: #fff;
              }
              40% {
                stroke: #fff;
              }
              66% {
                stroke: #ccc;
              }
              80%,
              90% {
                stroke: #ccc;
              }
            }
            @-webkit-keyframes color3 {
              100%,
              0% {
                stroke: #fff;
              }
              40% {
                stroke: #fff;
              }
              66% {
                stroke: #fff;
              }
              80%,
              90% {
                stroke: #fff;
              }
            }
            @keyframes color3 {
              100%,
              0% {
                stroke: #fff;
              }
              40% {
                stroke: #fff;
              }
              66% {
                stroke: #fff;
              }
              80%,
              90% {
                stroke: #fff;
              }
            }



	/*  Misc
	---------------------------------------------------------------------------------- */

    .video_embed_wrapper {

    }
        .video_embed_wrapper .video_embed_functions {
            display: none;
        }

    a .content,
    a:visited .content {
        color: #444;
    }

    .text_blocks {
        display: block;
    }
        .text_blocks .block {
            display: block;
            margin: 0 0 15px;
        }

    .columns {
        margin: 0 -15px 0 0;
        display: block;
    }
        .columns:after {
            content: '';
            clear: both;
            height: 0;
            overflow: hidden;
            display: block;
        }
        .columns .column {
            float: left;
            vertical-align: top;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 50%;
            padding: 0 15px 0 0;
        }

    .link,
    .content_read_more_link {
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        font-size: 12px;
        line-height: 20px;
        -webkit-font-smoothing: subpixel-antialiased;
    }
    .content_read_more_link {
        clear: both;
        display: block;
        padding-top: 20px;
    }
    .content_reveal_more_link {
        clear: both;
        display: block;
        padding-top: 20px;
    }
    .link.link_more a:before {
        content: '+ ';
    }

    .links_simple ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .links_simple ul li {
            display: block;
            margin: 0 0 8px;
        }
        .links_simple ul li a {
            font-family: Apercu_Pro, serif;
            color: #151515;
            font-weight: bold;
            font-size: 12px;
            line-height: 20px;
            -webkit-font-smoothing: subpixel-antialiased;
        }

    .fallback_cart_wrapper {
        
    }
        .fallback_cart_wrapper .price,
        .fallback_cart_wrapper .link {
            display: inline-block;
            margin: 0 20px 0 0;
        }

    .bottom {
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        -webkit-font-smoothing: subpixel-antialiased;
    }
    
    .price {
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        -webkit-font-smoothing: subpixel-antialiased;
    }

    .detail_subtitle {
        font-size: 12px;
        line-height: 20px;
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
    }

    .label {
        font-family: Apercu_Pro, serif;
        color: #151515;
        font-weight: bold;
        font-size: 11px;
        line-height: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        -webkit-font-smoothing: subpixel-antialiased;
        transform: translate3d(0,0,0);
        margin: 0 0 30px;
    }

	.prelude {
	    font-family: Apercu_Pro, serif;
	    color: #151515;
	    font-weight: bold;
	    font-size: 11px;
	    line-height: 20px;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    -webkit-font-smoothing: subpixel-antialiased;
	    transform: translate3d(0,0,0);
	}
        .prelude:after {
            display: block;
            content: '';
            height: 2px;
            background: #151515;
            margin: 15px 0 30px;
            width: 100%;
            transition: transform 1100ms ease-in-out;
            transform: scaleX(0);
            transform-origin: 0 0;
        }
            .prelude.prelude_no_text:after {
                margin-top: 0;
            }
        .visible .prelude:after,
        .records_grid.standard_grid .prelude:after {
            transform: scaleX(1);
            transition-delay: 200ms;
        }

        /*
            .item.visible:hover .prelude:after {
                -webkit-animation: preludehover 1000ms  cubic-bezier(.86,.01,.14,.99) 1;
                animation: preludehover 1000ms  cubic-bezier(.86,.01,.14,.99) 1;
            }
                @-webkit-keyframes preludehover {
                    0% {
                        transform: scaleX(1);
                        transform-origin: 100% 0;
                    }
                    50% {
                        transform: scaleX(0);
                        transform-origin: 100% 0;
                    }
                    51% {
                        transform: scaleX(0);
                        transform-origin: 0 0;
                    }
                    100% {
                        transform: scaleX(1);
                    }
                }
                @keyframes preludehover {
                    0% {
                        transform: scaleX(1);
                        transform-origin: 100% 0;
                    }
                    50% {
                        transform: scaleX(0);
                        transform-origin: 100% 0;
                    }
                    51% {
                        transform: scaleX(0);
                        transform-origin: 0 0;
                    }
                    100% {
                        transform: scaleX(1);
                    }
                }
        */




    /* Forms
    ----------------------------------------------------------- */

    form {
        margin: 0;
        padding: 0;
    }
        form .form_row .g-recaptcha {
            margin: 0 0 10px;
        }
        form .form_row {
            display: block;
            clear: both;
            margin: 0 0 10px;
            float: left;
            width: 100%;
            border-bottom: 1px solid #eee;
        }
            form .form_row.error_row {
                border: 0;
                max-height: 0;
                opacity: 0;
                margin: 0;
                padding: 0;
                font-size: 1.4rem;
                line-height: 2.1rem;
                color: #f30000;
                transition: all 400ms ease-in-out;
            }
                form .form_row.error_row.active {
                    opacity: 1;
                    max-height: 100px;
                    padding: 0 0 10px;
                }
            form .form_row label {
                display: none;
            }
            form .form_row .checkbox_container {
                float: left;
                clear: both;
                width: 100%;
                cursor: pointer;
                padding-left: 4px;
            }
                form .form_row .checkbox_container input {
                    display: none;
                }
                form .form_row .checkbox_container label {
                    display: block;
                    float: left;
                    padding: 0 0 0 25px;
                    margin: 5px 0 10px;
                    position: relative;
                }
                    form .form_row .checkbox_container label:after {
                        content: '';
                        display: block;
                        position: absolute;
                        top: 5px;
                        left: 0px;
                        height: 15px;
                        width: 15px;
                        border: 1px solid #666;
                        border-radius: 2px;
                    }
                    form .form_row .checkbox_container label:before {
                        content: '';
                        display: block;
                        position: absolute;
                        top: 9px;
                        left: 2px;
                        height: 11px;
                        width: 15px;
                        background: url('/images/tick.svg') 0 0 no-repeat;
                        background-size: auto 11px;
                        opacity: 0;
                        transform: scale(0.2);
                        transition: opacity 400ms ease-in-out, transform 800ms cubic-bezier(.12,1.93,.58,1);
                    }
                    form .form_row .checkbox_container input:checked + label:before {
                        transform: scale(1);
                        opacity: 1;
                    }
            form .form_row input[type='text'],
            form .form_row textarea,
            form .form_row select {
                background: none;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                width: 100%;
                border: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                color: #aaa;
                padding: 10px 4px;
                outline: none;
                border-radius: 0;
                resize: none;
            }
                form .form_row.error input[type='text'],
                form .form_row.error textarea,
                form .form_row.error select,
                form .form_row.error .checkbox_container label {
                    color: #f30000;
                }
                form .form_row input:-webkit-autofill {
                    -webkit-box-shadow: 0 0 0px 1000px #222 inset;
                    color: #fff;
                    -webkit-text-fill-color: #fff;
                }
                @media screen and (-webkit-min-device-pixel-ratio:0) { 
                    /* Stops mobile safari from zooming-in when you focus on a field */
                    .device-handheld form .form_row input, .device-handheld form .form_row textarea, .device-handheld form .form_row select {
                        font-size: 16px;
                    }
                }
            form .form_row textarea {
                min-height: 100px;
            }
            form .form_row input.active,
            form .form_row textarea.active,
            form .form_row select.active {
                color: #151515;
            }

            .select_container {
                position: relative;
            }
                .select_container:after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    transform: translate(0, -3px);
                    right: 15px;
                    width: 0; 
                    height: 0; 
                    border-left: 4px solid transparent;
                    border-right: 4px solid transparent;
                    border-top: 4px solid #151515;
                    pointer-events: none;
                }



    /*  Store item
    ---------------------------------------------------------------------------------- */

        .store_item {

        }
            .store_item .title {
                display: none;
            }
            .store_item .quantity {
                height: 0;
                width: 0;
                overflow: hidden;
                visibility: hidden;
            }
            .store_item .price {
                float: left;
                margin: 0 20px 0 0;
                padding: 10px 0 11px;
                font-size: 12px;
                line-height: 20px;
                font-family: Apercu_Pro, serif;
                color: #151515;
                font-weight: bold;
            }
            .store_item .delivery_info {
                float: left;
                margin: 0;
                padding: 15px 0 11px;
                line-height: 1.8rem;
                color: #e62330;
            }
            .store_item .store_item_controls {
                float: left;
                margin: 0;
            }
            .store_item .store_item_remove_container {
                opacity: 1 !important;
            }
            .store_item .store_item_remove_container .store_item_remove_from_cart {
                display: none !important;
            }


        .store_item_controls {
            float: left;
            border: 2px solid #151515;
            font-size: 12px;
            line-height: 20px;
            font-family: Apercu_Pro, serif;
            color: #151515;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            transition: color 600ms cubic-bezier(.65,.06,.19,.96);
        }
            .site-content-reversed .store_item_controls {
                background: #222;
                color: #fff;
            }
            .store_item_controls:before {
                content: '';
                pointer-events: none;
                background: #222;
                position: absolute;
                top: 0;
                left: 0;
                width: 102%;
                bottom: 0;
                transform: translate3d(0, -101%, 0);
                transition: transform 600ms cubic-bezier(.65,.06,.19,.96);
            }
                .store_item_controls:hover {
                    color: #fff;
                }
                .store_item_controls:hover:before {
                    transform: translate3d(-1%, 0, 0);
                }
                .site-content-reversed .store_item_controls:before {
                    background: #fff;
                }
                .site-content-reversed .store_item_controls:hover {
                    color: #333;
                }
            .store_item_add_to_cart {
                display: block;
                width: auto;
                height: 35px;
                width: 85px;
                cursor: pointer;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                text-align: center;
                transition: transform 600ms cubic-bezier(.65,.06,.19,.96);
            }
            .store_item_add_to_cart span {
                display: block !important;
                position: absolute;
                pointer-events: none;
                top: 0;
                left: 0;
                padding: 7px 25px 9px;
                width: 85px;
                cursor: pointer;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                text-align: center;
                transition: transform 600ms cubic-bezier(.65,.06,.19,.96);
            }
            .store_item_remove_container {
                display: block !important;
                position: absolute;
                pointer-events: none;
                transform: translate3d(160px, 0, 0);
                top: 0;
                left: 0;
                padding: 7px 5px 9px;
                width: 85px;
                cursor: pointer;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                text-align: center;
                transition: transform 600ms cubic-bezier(.65,.06,.19,.96);
            }
                .store_item_remove_container,
                .store_item_remove_container * {
                    pointer-events: none;
                }

            .store_item.active .store_item_add_to_cart span {
                transform: translate3d(-101%, 0, 0);
            }
            .store_item.active .store_item_remove_container {
                transform: translate3d(0, 0, 0);
                pointer-events: none;
            }
                .store_item.active .store_item_remove_container * {
                    pointer-events: none;
                }


        .button,
        button {
            float: left;
            position: relative;
            background: #fff;
            overflow: hidden;
            font-family: inherit;
            outline: none;
            border: none;
        }
            .button em.qty {
                display: inline-block;
                background: #333;
                border-radius: 50px;
                height: 22px;
                width: 22px;
                /*border: 2px solid #151515;*/
                vertical-align: top;
                transition: transform 400ms cubic-bezier(.75,.01,.3,.99), opacity 400ms ease-in-out, color 400ms ease-in-out, background 400ms ease-in-out;
                transform: scale(0.5);
                opacity: 0;
                font-style: normal;
                color: #fff;
                margin-top: -4px;
                margin-left: 8px;
                font-size: 1.0rem;
                line-height: 2.3rem;
                text-align: center;
                font-weight: bold;
                letter-spacing: -0.6px;
                text-indent: -1px;
            }
                .filters_active .button em.qty {
                    transform: scale(1);
                    opacity: 1;
                }
                .button:hover em.qty {
                    transform: scale(1.2);
                    background: #fff;
                    color: #222;
                }

            .button a,
            .button span,
            button {
                float: left;
                border: 2px solid #151515;
                font-size: 12px;
                line-height: 20px;
                font-family: Apercu_Pro, serif;
                color: #151515;
                font-weight: bold;
                padding: 9px 25px 11px;
                cursor: pointer;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                text-align: center;
                position: relative;
                transition: color 600ms cubic-bezier(.65,.06,.19,.96);
            }
            .button:before {
                content: '';
                pointer-events: none;
                background: #222;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 101%;
                transform: translate3d(0, -101%, 0);
                transition: transform 400ms cubic-bezier(.65,.06,.19,.96);
            }
                .device-desktop .button a:hover,
                .device-desktop .button span:hover {
                    color: #fff;
                }
                .device-desktop .button:hover:before {
                    transform: translate3d(0, -0%, 0);
                }
                .site-content-reversed .button a:hover,
                .site-content-reversed .button span:hover {
                    color: #151515;
                }

            .overlay .button {
                background: none;
            }
            .overlay .button a {
                color: #fff;
                border: 2px solid #fff;
            }
            .overlay .button:before {
                background: #fff;
            }
            .overlay .button:hover a {
                color: #151515;
            }

            .button.loading:before {
                left: 0;
            }
                .button.loading a,
                .button.loading a:visited {
                    color: #fff;
                    opacity: 0;
                    transition: opacity 400ms ease-in-out;
                }
                .button .loader {
                    position: absolute;
                    top: 50px;
                    left: 50%;
                    margin-left: -13px;
                    min-width: 0;
                    z-index: 5;
                    padding: 0 !important;
                    transition: top 400ms ease-in-out;
                }

                .button.loading .loader {
                    top: 7px;
                }
                    .button.loading .loader svg {
                        -webkit-animation: rotate 2s linear infinite;
                        animation: rotate 2s linear infinite;
                        -webkit-transform-origin: center center;
                        transform-origin: center center;
                        height: 26px;
                        width: 26px;
                    }
                        .button.loading .loader svg .path {
                            stroke-dasharray: 1, 200;
                            stroke-dashoffset: 0;
                            -webkit-animation: dash 1.5s ease-in-out infinite, color3 6s ease-in-out infinite;
                            animation: dash 1.5s ease-in-out infinite, color3 6s ease-in-out infinite;
                            stroke-linecap: round;
                        }




/* -----------------------------------------------------------
   Notify panel / slide-in panel
----------------------------------------------------------- */

    .notify_panel {
        display: none;
        position: fixed;
        z-index: 2002;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 290px;
        width: 100%;
        background: #fff;
        transition: all 600ms cubic-bezier(.65,.06,.19,.96);
        transform: translate3d(415px,0,0);
        opacity: 1;
    }
    body.cms-frontend-toolbar-active .notify_panel {
        top: 28px;
    }
    .notify_panel.active {
        display: block;
    }
    .notify_panel.active.animate {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
        .notify_panel_mask {
            display: none;
            transition: background 700ms ease-in-out;
        }
            body.sc_quick_cart_widget_active {
                overflow: hidden;
            }
            body.sc_quick_cart_widget_active .notify_panel_mask {
                position: fixed;
                display: block;
                z-index: 2001;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                background: rgba(0,0,0,0.2);
                opacity: 0;
                -webkit-transition: opacity 400ms ease-in-out;
                transition: opacity 400ms ease-in-out;
            }
            body.sc_quick_cart_widget_active.sc_quick_cart_widget_animate .notify_panel_mask {
                opacity: 1;
            }
            body.sc_quick_cart_widget_animate #main_content {
        		transform: translate3d(-200px,0,0);
            }
        .notify_panel .notify_panel_header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 20px 0;
            height: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;

            display: none;
        }
            .notify_panel .notify_panel_header h2 {
                font-size: 1.5rem;
                line-height: 2rem;
                margin: 0;
                float: left;
            }
            .notify_panel h3 {
                font-size: 1.8rem;
                line-height: 2.3rem;
                margin: 0 0 10px;
                padding: 10px 0 0 4px;
                float: left;
            }
            .notify_panel_close {
                color: #151515;
                position: absolute;
                top: 13px;
                right: 15px;
                border: 2px solid transparent;
                padding: 7px 0 9px;
                margin: 0 0 0 25px;
                z-index: 1200;
                cursor: pointer;
                font-family: 'Apercu_Pro';
                font-weight: bold;
                font-size: 11px;
                line-height: 20px;
                letter-spacing: 1px;
            }
                .notify_panel_close:after {
                    position: absolute;
                    z-index: 1900;
                    top: 0;
                    right: 0;
                    display: block;
                    content: '';
                    width: 16px;
                    height: 16px;
                    transform: rotate(0deg);
                    background: url(/images/menu.png) center center no-repeat;
                    background-size: 16px 16px;
                    transition: background-image 400ms linear, transform 400ms cubic-bezier(.65,.06,.19,.96);
                }
                .notify_panel.active .notify_panel_close:after {
                  transform: rotate(135deg);
                  transition-delay: 300ms;
                }
        .notify_panel .notify_panel_content {
            position: absolute;
            top: 0px;
            bottom: 115px;
            left: 0;
            right: 0;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }
            .notify_panel .notify_panel_items {
                float: left;
                width: 100%;
            }
            .notify_panel .notify_panel_content form {
                padding: 20px;
            }
            .notify_panel .notify_panel_content ul {
                margin: 0;
                float: left;
                width: 100%;
                padding: 0;
                list-style: none;
            }
                .notify_panel .notify_panel_content ul li {
                    display: block;
                    float: left;
                    width: 100%;
                    padding: 0;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    clear: both;
                    max-height: 500px;
                    background: #fff;
                }
                    .notify_panel .notify_panel_content ul li.hide {
                        transition: max-height 500ms cubic-bezier(.65,.06,.19,.96), padding 500ms cubic-bezier(.65,.06,.19,.96);
                        max-height: 0;
                        padding: 0;
                        transition-delay: 500ms;
                    }
                    .notify_panel .notify_panel_content ul li.hide .sqcw_item_inner {
                        transition: transform 500ms cubic-bezier(.65,.06,.19,.96);
                        transform: translate3d(-100%, 0, 0);
                    }
                    .notify_panel .notify_panel_content ul li .sqcw_item_inner {
                        display: block;
                        width: 100%;
                        float: left;
                    }
                    .notify_panel .notify_panel_content ul li .sqcw_item_image {
                        float: left;
                        width: 100%;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                        background: #efefef;
                        text-align: center;
                    }
                        .notify_panel .notify_panel_content ul li .sqcw_item_image img {
                            max-height: 215px;
                            margin: 0 auto;
                            display: block;
                        }
                    .notify_panel .notify_panel_content ul li.product_type_artworks .sqcw_item_image {
                        background: #efefef;
                        padding: 15px;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                    }
                        .notify_panel .notify_panel_content ul li.product_type_artworks .sqcw_item_image img {
                            box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
                            max-height: 160px;
                        }
                    .notify_panel .notify_panel_content ul li .sqcw_item_content {
                        float: left;
                        width: 100%;
                        clear: both;
                        padding: 20px;
                        margin: 0 0 15px;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                    }
                        .notify_panel .notify_panel_content #sqcw_items_list:after {
                            display: none;

                            margin: 20px;
                            clear: both;
                            float: left;
                            font-size: 1.3rem;
                            line-height: 1.8rem;
                            border: 1px solid rgba(255,255,255,0.3);
                            background: rgba(255,255,255,0.1);
                            clear: both;
                            -moz-border-radius: 3px;
                            -webkit-border-radius: 3px;
                            border-radius: 3px;
                            padding: 15px 20px;
                            content: 'Please note: Items in your basket are not reserved. Please complete your order to secure the purchase of the item.';
                        }
                    .notify_panel .notify_panel_content ul li .content {
                        float: left;
                        width: 70%;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;

                    }
                        .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_error,
                        .notify_panel .notify_panel_content ul li .sqcw_item_unavailable {
                            width: 100%;
                            display: block;
                            font-size: 1.3rem;
                            line-height: 2.1rem;
                            color: #f30000;
                            margin: 0 0 10px;
                            display: none;
                        }
                            .notify_panel .notify_panel_content ul li.sqcw_max_qty_error .sqcw_item_content .sqcw_item_error,
                            .notify_panel .notify_panel_content ul li .sqcw_item_unavailable  {
                                display: block;
                            }
                        .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_details {
                            width: 100%;
                            display: block;
                        }
                        .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_details .title,
                        .notify_panel .notify_panel_content ul li .content .title,
                        .notify_panel .notify_panel_content ul li .content .artist,
                        .notify_panel .notify_panel_content ul li .content .content_type {
                            display: block;
                            font-family: Apercu_Pro, serif;
                            color: #151515;
                            font-weight: bold;
                            font-size: 1.2rem;
                            line-height: 2.0rem;
                            margin: 0 0 10px;
                        }
                        .notify_panel .notify_panel_content ul li .content .content_type {
                            margin: 0;
                            color: #aaa;
                        }
                        .notify_panel .notify_panel_content ul li .content .artist {
                            margin: 0;
                        }
                        .notify_panel .notify_panel_content ul li .content .title em {
                            font-style: normal;
                        }
                        .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_details .details,
                        .notify_panel .notify_panel_content ul li .content {
                            display: none;
                        }
                        .notify_panel .notify_panel_content ul li .content {
                            margin: 0
                        }
                        .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools {
                            width: 100%;
                            display: block;
                            float: left;
                            border-top: 1px solid #eee;
                            padding: 8px 0 0;
                        }
                            .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_singleprice {
                                display: none;
                            }
                            .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_quantity {
                                float: left;
                                display: none;
                            }
                                .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_quantity .qty {
                                    padding: 0 4px;
                                }
                                .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_quantity .qty:after {
                                    /*content: 'x';
                                    display: inline-block;
                                    padding: 0 8px;
                                    text-transform: lowercase;
                                    */
                                }
                                .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_quantity .sqcw_item_qty_label {
                                    display: none;
                                }
                                .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_quantity .decrease_qty.disabled,
                                .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_quantity .increase_qty.disabled {
                                    opacity: 0.3;
                                }

                            .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_total {
                                float: left;

                                font-family: Apercu_Pro, serif;
                                color: #999;
                                font-weight: bold;
                                font-size: 1.1rem;
                                line-height: 2.0rem;
                                letter-spacing: 0.5px;
                            }
                            .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_remove {
                                float: right;
                            }
                                .notify_panel .notify_panel_content ul li .sqcw_item_content .sqcw_item_tools .sqcw_cell_remove a {
                                    display: block;
                                    text-align: left;
                                    text-indent: -100px;
                                    overflow: hidden;
                                    height: 14px;
                                    width: 14px;
                                    margin-right: -4px;
                                    background: url(/images/close_small.png) center center no-repeat;
                                    background-size: 7px 7px;
                                }
                    .notify_panel .notify_panel_content #sqcw_empty {
                        font-family: Apercu_Pro, serif;
                        display: block;
                        padding: 50px 20px;
                        text-align: center;
                        color: #151515;
                        font-weight: bold;
                        font-size: 1.5rem;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                        line-height: 2.0rem;
                        -webkit-font-smoothing: antialiased;
                        width: 100%;
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                    }

        .notify_panel .notify_panel_footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            padding: 0;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            background: rgba(255,255,255,0.06);
        }
            .notify_panel .notify_panel_footer #sqcw_total {
                display: block;
                width: 100%;
                float: left;
                font-family: Apercu_Pro, serif;
                color: #151515;
                font-weight: bold;
                font-size: 1.2rem;
                line-height: 2.0rem;
                -webkit-font-smoothing: antialiased;
                padding: 15px 20px;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                background: #fafafa;
            }
                .notify_panel .notify_panel_footer #sqcw_total .sqcw_total_label {
                    float: left;
                }
                .notify_panel .notify_panel_footer #sqcw_total .sqcw_total_price {
                    float: right;
                }
                .notify_panel .notify_panel_footer #sqcw_total .sqcw_total_price_currency {
                    padding-right: 6px;
                }
            .notify_panel .notify_panel_footer #sqcw_checkout {
                clear: both;
                display: block;
            }
                .notify_panel .notify_panel_footer .sqcw_checkout_button {
                    display: block;
                    width: 100%;
                    float: none;
                }
                    .notify_panel .notify_panel_footer .sqcw_checkout_button a {
                        display: block;
                        float: none;
                        padding: 14px 25px 16px;
                    }

                    .notify_panel .notify_panel_footer .sqcw_checkout_button.button {
                        background: #151515;
                    }
                    .notify_panel .notify_panel_footer .sqcw_checkout_button.button:before {
                        background: #fff;
                    }
                    .notify_panel .notify_panel_footer .sqcw_checkout_button.button a,
                    .notify_panel .notify_panel_footer .sqcw_checkout_button.button a:visited {
                        color: #fff;
                        border: 0;
                    }
                    .notify_panel .notify_panel_footer .sqcw_checkout_button.button:hover a,
                    .notify_panel .notify_panel_footer .sqcw_checkout_button.button:hover a:visited {
                        color: #151515;
                    }


/* -----------------------------------------------------------
   Shopping cart / Checkout
----------------------------------------------------------- */
    
    #sc_processing_payment {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200000;
        display: none;
    }
    .section-store.page-param-basket.sc-payment-processing #sc_processing_payment {
        display: block;
    }
        #sc_processing_payment div.arpromptfade {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 200000;
            opacity: 0.6;
        }
        #sc_processing_payment div#arprompt {
            z-index: 200001;
            top: 50%;
            left: 50%;
            transform: translate3d(-50%, -50%, 0);
        }
        #sc_processing_payment div.arprompt .arpromptmessage {
            margin: 0;
        }


    .section-store.page-param-basket #header #basket {
        display: none;
    }
    .section-store .subsection-store-basket {
        margin: 0 auto;
    }
    .section-store .subsection-store-basket:after {
        height: 0;
        display: block;
        content: '';
        clear: both;
        overflow: hidden;
    }
        .section-store .subsection-store-basket #content_module {
            float: left;
            width: 60%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 150px 100px 50px;
        }
        .section-store .subsection-store-basket #sidebar {
            float: right;
            clear: none;
            width: 40%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 150px 50px 50px;
            background: #f8f8f8;
        }
        .section-store .subsection-store-basket h2 {
            margin: 0 0 35px;
            font-size: 3.2rem;
            line-height: 4rem;
        }
        #sc_checkout_content #shipping_container #shipping_zones_container h3, #sc_checkout_content #shipping_container #shipping_options_container h3 {
            font-size: 13px;
        }
        #sc_checkout_content .divider {
            height: 40px;
        }

        #sc_coupon_container {

        }
            #sc_coupon_container.active .form:before {
                font: normal normal normal 20px/1 FontAwesome;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                content: "\f058";
                margin: 5px 16px 0 2px;
                color: #a3d940;
                float: left;
            }
            #sc_coupon_container .form .inputField {
                float: left;
                width: 200px;
                margin: 0 16px 0 0;
                min-height: 33px;
            }
            #sc_coupon_container .form .button {
                float: left;
                clear: none;
                margin: 0;
            }
        #sc_contents_container {

        }
            #sc_contents_container #sc_reserve_note {
                float: left;
                clear: both;
                padding: 15px 0 0;
                font-size: 1.4rem;
                line-height: 2rem;
            }
            #sc_contents_container #sc_vat_note {
                float: left;
                clear: both;
                padding: 30px 0 0;
                font-size: 1.4rem;
                line-height: 2rem;
            }
            #sc_contents_container #sc_totalweight {
                float: left;
                display: none;
                padding: 15px 0 0;
            }
            #sc_contents_container #sc_vat_note {
                display: none;
            }
            #shopping_cart_information,
            #wishlist_information {
                width: 100%;
            }
                #shopping_cart_information .sc_cell_item {
                    float: left;
                    width: 100%;
                    clear: both;
                    margin: 0 0 30px;
                    padding: 0 0 30px;
                    border-bottom: 1px solid #eee;
                }
                    #shopping_cart_information .sc_cell_item .image {
                        float: left;
                        padding: 0 30px 0 0;
                        width: 55%;
                        max-width: 350px;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                    }
                        #shopping_cart_information .sc_cell_item .image img {
                            max-height: 250px;
                            display: block;
                            margin: 0 auto;
                        }
                    #shopping_cart_information .sc_cell_item .content {
                        float: left;
                        width: 45%;
                    }
                        #shopping_cart_information .sc_cell_item .content .title {
                            display: block;
                            font-family: Apercu_Pro, serif;
                            color: #151515;
                            font-weight: bold;
                            text-align: left;
                            font-size: 2.1rem;
                            line-height: 2.8rem;
                            margin: 0 0 20px;
                            font-weight: bold;
                        }
                        #shopping_cart_information .sc_cell_item .content .details {
                            display: block;
                            color: #888;
                            margin: 0 0 20px;
                        }
                        #shopping_cart_information .sc_cell_item .content .tools {
                            display: block;

                            font-family: Apercu_Pro, serif;
                            color: #151515;
                            font-weight: bold;
                            font-size: 1.2rem;
                            line-height: 2.0rem;
                            letter-spacing: 0.5px;
                        }

                    #shopping_cart_information .sc_cell_quantity {
                        float: left;
                    }
                        #shopping_cart_information .sc_cell_quantity .decrease_qty,
                        #shopping_cart_information .sc_cell_quantity .increase_qty {
                            float: left;
                            font-size: 1.6rem;
                            font-weight: bold;
                        }
                        #shopping_cart_information .sc_cell_quantity .decrease_qty.disabled {
                            opacity: 0.4;
                            cursor: default;
                        }

                        #shopping_cart_information .sc_cell_quantity .qty {
                            float: left;
                            padding: 0 8px;
                        }
                    #shopping_cart_information .sc_cell_singleprice {
                        display: none;
                    }
                    #shopping_cart_information .sc_cell_total {
                        float: right;
                    }

                    #shopping_cart_information .sc_cell_unavailable {
                        color: red;
                        font-weight: bold;
                    }
                    #shopping_cart_information td .sc_cell_error_message {
                        color: red;
                        font-weight: bold;
                    }
                    #shopping_cart_information .sc_cell_remove .remove,
                    #wishlist_information .sc_cell_remove .remove {
                        display: block;
                        float: right;
                        text-align: left;
                        text-indent: -100px;
                        margin-left: 10px;
                        overflow: hidden;
                        height: 20px;
                        width: 14px;
                        margin-right: -2px;
                        background: url(/images/close_small.png) center center no-repeat;
                        background-size: 7px 7px;
                    }


            #sc_checkout_container {

            }
                #sc_checkout_container #sc_demo_note {
                    margin-top: 50px;
                    font-size: 1.2rem;
                    line-height: 1.8rem;
                    color: #151515;
                }
                #sc_checkout_content {

                }
                #sc_checkout_content .divider {
                    display: none;
                }
                #sc_checkout_content .sc_subtotal_label,
                #sc_checkout_content .sc_discount_label,
                #sc_checkout_content .sc_vat_total_label,
                #sc_checkout_content .sc_shipping_total_label,
                #sc_checkout_content .sc_order_total_label {
                    float: left;
                    width: 100px;

                    color: #888;
                }
                #sc_checkout_content #sc_subtotal,
                #sc_checkout_content #sc_discount,
                #sc_checkout_content #sc_vat_total,
                #sc_checkout_content #sc_shipping_total,
                #sc_checkout_content #sc_order_total {
                    padding: 0 0 0;
                    font-family: Apercu_Pro, serif;
                    font-weight: bold;
                    font-size: 1.2rem;
                    line-height: 2rem;
                    margin: 0 0 20px;
                    font-weight: bold;
                    color: #151515;
                }
                #sc_checkout_content .order_total {
                    font-size: 25px;
                }
                #sc_checkout_content .currency {
                    padding-right: 5px;
                }
                #sc_checkout_content #shipping_container {
                    margin: 0;
                    padding: 20px 0 0;
                    clear: both;
                }
                    #sc_checkout_content #shipping_container select {
                        border: 0;
                        padding: 10px 0;
                        width: 100%;

                        background: none;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                        width: 100%;
                        border: none;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        outline: none;
                        border-radius: 0;
                        resize: none;
                    }
                    #sc_checkout_content #shipping_container select::-ms-expand {
                       display: none;
                    }
                        #sc_checkout_content #shipping_container select.active {
                        }
                    #sc_checkout_content #shipping_container #shipping_zones_container,
                    #sc_checkout_content #shipping_container #shipping_options_container {
                        display: none;
                        margin: 0 0 15px;
                        padding: 0 15px;
                        border: 2px solid #eee;
                    }
                    #sc_checkout_content #shipping_container #shipping_zones_container.active,
                    #sc_checkout_content #shipping_container #shipping_options_container.active {
                        display: block;
                    }
                    #sc_checkout_content #shipping_container #shipping_zones_container h3,
                    #sc_checkout_content #shipping_container #shipping_options_container h3 {
                        margin: 0 0 10px;
                    }
                #sc_checkout_container .button {
                    float: left;
                    display: inline;
                }
                    #sc_checkout_container .proceed_to_payment {
                        display: none;
                        position: relative;
                    }
                    #sc_checkout_container .proceed_to_payment.active,
                    #sc_checkout_container .proceed_to_payment.loading,
                    #sc_checkout_container .proceed_to_payment.placeholder {
                        display: block;
                    }
                        #sc_checkout_container .proceed_to_payment #stripe_loader {
                            position: absolute;
                            top: 7px;
                            left: 50%;
                            margin-left: -15px;
                            z-index: 5;
                        }
                        #sc_checkout_container .proceed_to_payment #stripe_loader svg {
                            -webkit-animation: rotate 2s linear infinite;
                                  animation: rotate 2s linear infinite;
                            height: 30px;
                            -webkit-transform-origin: center center;
                                  transform-origin: center center;
                            width: 30px;
                        }
                            #sc_checkout_container .proceed_to_payment #stripe_loader svg .path {
                                stroke-dasharray: 1, 200;
                                stroke-dashoffset: 0;
                                -webkit-animation: dash 1.5s ease-in-out infinite, color3 6s ease-in-out infinite;
                                      animation: dash 1.5s ease-in-out infinite, color3 6s ease-in-out infinite;
                                stroke-linecap: round;
                            }
                        #sc_checkout_container .proceed_to_payment #stripe_button_container {
                            -webkit-transition: opacity 400ms ease-in-out;
                            transition: opacity 400ms ease-in-out;
                            opacity: 0.3;
                            z-index: 10;
                            position: relative;
                            height: 45px;
                        }
                        #sc_checkout_container .proceed_to_payment.active #stripe_button_container {
                            opacity: 1;
                        }
                    #sc_checkout_container .proceed_to_payment.placeholder #stripe_button_container {
                        opacity: 0.4;
                    }
                        #sc_checkout_container .proceed_to_payment.placeholder button {
                            cursor: default;
                        }
                #sc_total_price_container {
                    padding: 15px 0 0;
                }
                    #sc_total_price_container h3 {
                        margin: 0 0 15px;
                        padding: 0 0 15px;
                        border-bottom: 1px solid #444;
                        display: none;
                    }
                    #sc_total_price_container .order_total_wrapper {
                    }
                #sc_checkout_content #sc_terms_box {
                    margin: 30px 0 10px;
                    position: relative;
                }
                    #sc_checkout_content #sc_terms_box input {
                        display: inline-block;
                        position: absolute;
                        top: 9px;
                        left: 0;
                    }
                    #sc_checkout_content #sc_terms_box label {
                        display: inline-block;
                        padding: 0 0 0 25px;
                        font-family: Apercu_Pro, serif;
                        font-weight: bold;
                        font-size: 1.2rem;
                        line-height: 2.8rem;
                        font-weight: bold;
                        color: #888;
                    }
                #sc_checkout_content #sc_checkout_button {
                    padding: 20px 0 0;
                    min-height: 50px;
                    position: relative;
                    -moz-transition: opacity 0.4s ease-in-out;
                    -webkit-transition: opacity 0.4s ease-in-out;
                    transition: opacity 0.4s ease-in-out;
                }
                    #sc_checkout_content #sc_checkout_button.sc_terms_unconfirmed #stripe_button_container,
                    #sc_checkout_content #sc_checkout_button.sc_fields_unconfirmed #stripe_button_container {
                        opacity: 0.3;
                    }
                        #sc_checkout_content #sc_checkout_button.sc_terms_unconfirmed .proceed_to_payment,
                        #sc_checkout_content #sc_checkout_button.sc_shipping_unconfirmed .proceed_to_payment,
                        #sc_checkout_content #sc_checkout_button.sc_fields_unconfirmed .proceed_to_payment {
                            pointer-events: none;
                        }
                        #sc_checkout_content #sc_checkout_button.sc_terms_unconfirmed:after,
                        #sc_checkout_content #sc_checkout_button.sc_shipping_unconfirmed:after,
                        #sc_checkout_content #sc_checkout_button.sc_fields_unconfirmed:after {
                            content: '.';
                            text-indent: -100px;
                            display: block;
                            position: absolute;
                            z-index: 1000000;
                            top: 0;
                            left: 0;
                            bottom: 0;
                            right: 0;
                            width: 100%;
                        }

        #basket_footer {

        }
            #basket_footer #store_payment_logos {
                clear: both;
                float: left;
                width: 100%;
            }
                #basket_footer #store_payment_logos ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    float: left;
                    width: 100%;
                }
                #basket_footer #store_payment_logos ul li {
                    float: left;
                    margin: 0 10px 0 0;
                    text-indent: -100px;
                    height: 32px;
                    width: 52px;
                    background: 0 0 no-repeat;
                }
                #basket_footer #store_payment_logos ul li.wp_worldpay { background-image: url(/lib/worldpay/images/worldpay.jpg);width:100px }
                #basket_footer #store_payment_logos ul li.wp_visa { background-image: url(/lib/images/payment/visa-curved-32px.png) }
                #basket_footer #store_payment_logos ul li.wp_mastercard { background-image: url(/lib/images/payment/mastercard-curved-32px.png) }
                #basket_footer #store_payment_logos ul li.wp_amex { background-image: url(/lib/images/payment/american-express-curved-32px.png) }
                #basket_footer #store_payment_logos ul li.wp_paypal { background-image: url(/lib/images/payment/paypal-curved-32px.png) }
                #basket_footer #store_payment_logos ul li.wp_stripe { background-image: url(/lib/images/payment/powered-by-stripe.png);width:120px;background-position:center; }

            .sc_warning,
            #sc_demo_note,
            .sc_demo_note {
                clear: both;
                font-size: inherit;
                border: 1px solid #ffd503;
                background: #f7f3de;
                clear: both;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
                border-radius: 3px;
                padding: 15px 20px;
                line-height: inherit;
                max-width: 600px;
            }
                .sc_warning h3,
                .sc_demo_note h3 {
                    font-size: 2.4rem;
                    line-height: 3rem;
                    margin: 0 0 10px;
                }

            #sc_dev_mode_box {
                display: inline-block;
                padding: 40px 0 0;
                font-family: Apercu_Pro, serif;
                font-weight: bold;
                font-size: 1.2rem;
                line-height: 2.8rem;
                font-weight: bold;
                color: #888;
            }
                #sc_dev_mode_box h4 {
                    font-size: 1.6rem;
                    margin: 0 0 15px;
                }

    /* Store confirmation
    ---------------------------------------- */

        .subsection-store-basket .subsection-confirmation {
            
        }
            .subsection-store-basket .subsection-confirmation .content_basic_layout h1 {
                width: 100%;
                float: none;
                margin: 0 0 40px;
            }
            .subsection-store-basket .subsection-confirmation .divider {
                height: 0;
            }
            .subsection-store-basket .subsection-confirmation .sc_confirmation_body {
                margin: 0 0 50px;
            }
            .subsection-store-basket .subsection-confirmation .sc_warning,
            .subsection-store-basket .subsection-confirmation .sc_demo_note {
                margin: 0 0 50px;
            }

    /* Stripe button
    ---------------------------------------- */

    .stripe-button-el {
        /* Default stripe button styles, including these here for the placeholder button */
            overflow: hidden;
            display: inline-block;
            visibility: visible !important;
            background-image: -webkit-linear-gradient(#28a0e5,#015e94);
            background-image: -moz-linear-gradient(#28a0e5,#015e94);
            background-image: -ms-linear-gradient(#28a0e5,#015e94);
            background-image: -o-linear-gradient(#28a0e5,#015e94);
            background-image: -webkit-linear-gradient(#28a0e5,#015e94);
            background-image: -moz-linear-gradient(#28a0e5,#015e94);
            background-image: -ms-linear-gradient(#28a0e5,#015e94);
            background-image: -o-linear-gradient(#28a0e5,#015e94);
            background-image: linear-gradient(#28a0e5,#015e94);
            -webkit-font-smoothing: antialiased;
            border: 0;
            padding: 1px;
            text-decoration: none;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
            -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
            -ms-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
            -o-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
            box-shadow: 0 1px 0 rgba(0,0,0,0.2);
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -o-user-select: none;
            user-select: none;
            cursor: pointer;
        /* END Default stripe button styles */


        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        -ms-border-radius: 0 !important;
        -o-border-radius: 0 !important;
        border-radius: 0 !important;
        width: 100%;
        background: none !important;
        box-shadow: none !important;
        outline: none;
    }
        .stripe-button-el span {
            /* Default stripe button styles, including these here for the placeholder button */
                display: block;
                position: relative;
                padding: 0 12px;
                height: 30px;
                line-height: 30px;
                background: #fff;
                font-size: 14px;
                color: #fff;
                font-weight: bold;
                font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
                text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
                -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
                -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
                -ms-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
                -o-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                -ms-border-radius: 4px;
                -o-border-radius: 4px;
                border-radius: 4px;
            /* END Default stripe button styles */


            border: 2px solid #151515 !important;
            font-size: 12px !important;
            line-height: 20px !important;
            font-family: Apercu_Pro, serif !important;
            color: #fff !important;
            background: #151515 !important;
            font-weight: bold !important;
            padding: 10px 50px 11px !important;
            cursor: pointer !important;
            min-width: 160px !important;
            -moz-box-sizing: border-box !important;
            -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
            text-align: center !important;
            position: relative !important;
            transition: color 600ms cubic-bezier(.65,.06,.19,.96) !important;
            -webkit-border-radius: 0 !important;
            -moz-border-radius: 0 !important;
            -ms-border-radius: 0 !important;
            -o-border-radius: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            text-shadow: none !important;
            text-align: center !important;
            height: auto !important;
        }
            .stripe-button-el span:before {
                font-family: FontAwesome;
                content: "\f023";
                position: absolute;
                right: 20px;
            }

    /* Share links
    ----------------------------------------------------------- */

    .share_links {
        position: relative;
        z-index: 5;
    }
        .share_links .link a {
            outline: none;
        }
        .share_links .share_options {
            width: 0;
            opacity: 0;
            position: absolute;
            top: 16px;
            left: 0;
            transition: width 600ms cubic-bezier(.65,.06,.19,.96), opacity 400ms ease-in-out;
            white-space: nowrap;
            overflow: hidden;
            padding: 6px 0 0;
            cursor: default;
        }
            .share_links.active .share_options {
                width: 130px;
                opacity: 1;
            }
            .share_links .share_options_inner {
                position: relative;
                background: #fff;
                border: 2px solid #151515;
                padding: 5px;
                height: 22px;
            }
            .share_links .share_options:after {
                top: 0;
                left: 23px;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-color: transparent;
                border-bottom-color: #151515;
                border-width: 3px;
                margin-left: -3px;
            }
            .share_links .share_options .social_links_item {
                display: inline-block;
                float: none;
            }
            .share_links .share_options .social_links_item .social_media_icon:after {
                color: #151515;
                font-size: 16px;
            }
            .share_links .share_options .social_links_item .social_media_icon:hover:after {
                
            }

            /* Reversed ----------------- */


        /* Position top -------------- */

        .share_links.position_top .share_options {
            bottom: 26px;
            top: auto;
            padding: 0 0 6px;
        }
        .share_links.position_top .share_options:after {
            bottom: 0;
            top: auto;
            left: 23px;
            border-color: transparent;
            border-top-color: #151515;
            border-width: 3px;
            margin-left: -3px;
        }

    /* Social media icons
    ----------------------------------------------------------- */

        /* Icons ----------------------------------------------------------- */

        .social_media_links {
            width: 100%;
            float: left;
            clear: both;
        }
            .social_links_item {
                margin: 0 5px 0 0;
                width: auto;
                height: auto;
                float: left;
            }
                .social_links_item:last-child {
                    margin-right: 0;
                }
                .social_links_item a { 
                    position: relative;
                    width: 22px;
                    height: 22px;
                    float: left;
                    text-indent: -100px;
                }
                    .social_media_icon {
                        float: left;
                        text-indent: -200px;
                        text-align: center;
                        border: 0;
                        background: none;
                        margin: 0;
                        width: 22px;
                        height: 22px;
                        position: relative;
                        overflow: hidden;
                    }
                    .social_media_icon:after {
                        display: block;
                        width: 100%;
                        text-align: center;
                        font: normal normal normal 14px/1 FontAwesome;
                        font-size: 19px;
                        line-height: 23px;
                        float: left;
                        text-rendering: auto;
                        position: relative;
                        z-index: 2;
                        -webkit-font-smoothing: antialiased;
                        -moz-osx-font-smoothing: grayscale;
                        transition:  color 200ms ease-in-out, background 200ms ease-in-out, transform 400ms cubic-bezier(.2,1.1,.78,.99);
                        color: #fff;
                        text-align: center;
                        text-indent: 0;
                    }
                        .social_media_icon:hover:after {
                            
                        }
                        .social_media_icon.facebook:after {
                            content: "\f09a";
                        }
                        .social_media_icon.twitter:after {
                            content: "\f099";
                        }
                        .social_media_icon.instagram:after {
                            content: "\f16d";
                        }
                        .social_media_icon.pinterest:after {
                            content: "\f231";
                        }
                        .social_media_icon.tumblr:after {
                            content: "\f173";
                        }
                        .social_media_icon.artsy:after {
                            content: "";
                            background: url(/images/artsy.svg) center center no-repeat;
                            background-size: 20px 20px;
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            display: block;
                        }
                        .social_media_icon.artsy:hover:after {
                            background-image: url(/images/artsy_active.svg);
                        }

    /* Pageload loader
    ----------------------------------------------------------- */

            #preloader #loader_wrapper {
                position: fixed;
                top: 0;
                left: 0;
                width: 0;
                z-index: 10000;
                height: 4px;
                width: 100% !important;
                transition: opacity 400ms ease-in-out;
            }
            body.cms-frontend-toolbar-active #preloader #loader_wrapper {
                top: 28px;
            }
                #preloader #splash_loader_icon {
                    display: none;
                }
                #preloader #loader {
                    height: 2px;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 0;
                    height: 4px;
                    width: 100% !important;
                    overflow: hidden;
                    background-color: transparent !important;
                }
                    #preloader #loader:before {
                        display: block;
                        position: absolute;
                        content: "";
                        left: 0;
                        width: auto;
                        height: 2px;
                        background-color: #151515;
                        animation: loading2 1200ms cubic-bezier(.87,.17,.18,.85) infinite;
                        transition: background 400ms ease-in-out;
                    }

                    body.splash-loader-active #preloader #loader_wrapper #loader {
                        display: none;
                    }

                 /* Basic states
                ------------------------------------------- */

                    body.browser-js-enabled #preloader {
                        display: block;
                    }
                    body.first-load-complete #preloader {
                        display: none;
                        height: 4px;
                        bottom: auto;
                    }
                    body.first-load-complete #preloader_mask {
                        height: 0;
                        display: none;
                    }
                    body.first-load-complete.loader-active #preloader {
                        display: block;
                    }

                 /* Ajax page loading
                ------------------------------------------- */

                    #preloader #loader {
                        opacity: 0;
                        transition: opacity 800ms ease-in-out, width 400ms ease-in-out;
                        -webkit-transition: opacity 800ms ease-in-out, width 400ms ease-in-out;
                    }
                    body.ajax-loading #preloader #loader {
                        opacity: 1;
                    }
                    body.ajax-loading-complete #preloader {
                        opacity: 0;
                        transition: opacity 800ms ease-in-out, width 400ms ease-in-out;
                        -webkit-transition: opacity 800ms ease-in-out, width 400ms ease-in-out;
                    }

                 /* Splash screen
                ------------------------------------------- */

                    body.splash-loader-active {
                        overflow: hidden;
                    }

                    body.splash-loader-active.splash-screen-in #preloader {
                        cursor: pointer;
                    }

                    body.splash-loader-active.loader-active #preloader #loader_wrapper {
                        opacity: 0;
                    }
                        body.splash-loader-active.loader-active #preloader.loading-bar-start #loader_wrapper {
                            opacity: 1;
                        }

            @keyframes loading2 {
                from {width: 0;opacity: 0.8;}
                50% {left:0;width: 100%;opacity: 1;}
                to {left: 100%;width: 100%;opacity: 0.4;}
            }
                    
    /* Popups (extended details, artworks)
    ----------------------------------------------------------- */

        body.content-swipe,
        body.page-popup-active {
            overflow: hidden;
        }
        body.content-swipe #popup_box,
        body.content-swipe #popup_content {
            overflow: hidden;
        }
        #popup_container {

        }
            #popup_overlay {
                background: #fff;
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                z-index: 1100;
            }
            #popup_box {
                margin: 0 auto;
                width: 100%;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1200;
            }
                #popup_box .inner {
                    float: left;
                    width: 100%;
                    overflow: hidden;
                }
                    #popup_box .close {
                        color: #151515;
                        position: fixed;
                        top: 26px;
                        right: 26px;
                        border: 2px solid transparent;
                        padding: 7px 0 9px;
                        margin: 0 0 0 25px;
                        z-index: 1200;
                        cursor: pointer;
                        font-family: 'Apercu_Pro';
                        font-weight: bold;
                        font-size: 12px;
                        line-height: 20px;
                        letter-spacing: 1px;
                        -moz-transition: opacity 2s cubic-bezier(.18, 1, .21, 1);
                        -o-transition: opacity 2s cubic-bezier(.18, 1, .21, 1);
                        -webkit-transition: opacity 2s cubic-bezier(.18, 1, .21, 1);
                        transition: opacity 2s cubic-bezier(.18, 1, .21, 1);
                    }
                    #popup_content {
                        width: 100%;
                        max-height: 100vh;
                        overflow: auto;
                        -webkit-overflow-scrolling: touch;
                    }

                    /* Hide the pagination controls which are within the ajax page content */
                    #popup_content .artwork_detail .pagination_controls {
                        display: none;
                    }


                /* Effects ----------------------------------------------------------- */

                #popup_container {
                    display: none;
                }
                    .page-popup-active #popup_container {
                        display: block;
                    }
                #popup_overlay {
                    opacity: 0;
                    transition: opacity 0.6s ease-in-out;
                    -webkit-transition: opacity 0.6s ease-in-out;
                }
                    .page-popup-visible #popup_overlay {
                        opacity: 1;
                    }
                #popup_box .close {
                    opacity: 0;
                    transform: translate3d(200px, 0, 0);
                    transition: transform 0.6s cubic-bezier(.87,.17,.18,.85), opacity 0.8s ease-in-out;
                    -webkit-transform: translate3d(200px, 0, 0);
                    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.87,.17,.18,.85), opacity 0.8s ease-in-out;
                }
                    .page-popup-visible #popup_box .close {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                        -webkit-transform: translate3d(0, 0, 0);
                    }
                #popup_content {
                    opacity: 0;
                    transition: opacity 0.6s ease-in-out;
                }
                    .page-popup-visible #popup_content {
                        opacity: 1;
                    }

                #popup_content .image_container {
                    opacity: 0;
                    transform: translate3d(0, 0, 0) scale(0.9);
                    transition: transform 400ms cubic-bezier(.86,.01,.14,.99), opacity 400ms ease-in-out;
                }
                    .page-popup-visible #popup_content .image_container {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                    }

                #popup_content .content_container {
                    opacity: 0;
                    transform: translate3d(0, 50px, 0);
                    transition: transform 600ms cubic-bezier(.65,.06,.19,.96), opacity 400ms ease-in-out;
                }
                    .page-popup-visible #popup_content .content_container {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                        transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 1000ms ease-in-out;
                    }

                /* Standard artworks ----------------------------------------------------------- */

                #popup_content .content_basic_layout {
                    transition: transform 600ms cubic-bezier(.86,.01,.14,.99), opacity 600ms ease-in-out;
                    transform: translate3d(0, 600px, 0);
                    opacity: 0;
                }
                    .page-popup-visible #popup_content .content_basic_layout {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                    }




                /* Previous / Next animation ----------------------------------------------------------- */

                        body.page-popup-transition #popup_box .artwork_hero_image_container {
                            opacity: 0;
                        }
                        body.page-popup-transition.page-popup-transition2 #popup_box .artwork_hero_image_container {
                            opacity: 0;
                        }

                        body.page-popup-transition #popup_box .artwork_detail .image_container {
                            opacity: 0;
                            transform: translate3d(0, 0, 0);
                        }
                        body.page-popup-transition.page-popup-transition2 #popup_box .artwork_detail .image_container {
                            opacity: 0;
                            transform: translate3d(0, 0, 0);
                        }
                        body.page-popup-transition #popup_box .artwork_detail .content_container {
                            opacity: 0;
                            transition: transform 600ms cubic-bezier(.65,.06,.19,.96), opacity 400ms ease-in-out;
                            transform-origin: center top;
                            transform: translate3d(0, -20px, 0);
                        }
                        body.page-popup-transition.page-popup-transition2 #popup_box .artwork_detail .content_container {
                            transform: translate3d(0, 0, 0);
                            transition: none;
                        }
                            body.page-popup-transition #popup_box .artwork_detail .content_container .label {
                                
                            }
                            body.page-popup-transition.page-popup-transition2 #popup_box .artwork_detail .content_container .label {
                                width: 0;
                            }

                        body.page-popup-transition-initial #popup_box .pagination_controls .artwork_detail .pagination_controls_previous,
                        body.page-popup-transition-initial #popup_box .pagination_controls .artwork_detail .pagination_controls_next {
                            opacity: 0;
                        }






/* ----------------------------------------------------------------------------------
  Page specific
---------------------------------------------------------------------------------- */

	/*  Contact
	---------------------------------------------------------------------------------- */

    .section-contact .scroll_section .heading_wrapper {
        display: none;
    }

    /*  Error page
    ---------------------------------------------------------------------------------- */

    .section-error .scroll-container .scroll-container-inner {
        min-height: 100vh;
    }
    .section-error .scroll-container .scroll-container-inner #main_content {
        min-height: 100vh;
        position: static;
    }
    .section-error .content_body .description {
        margin: 0 0 40px;
    }
    .section-error #header {
        right: auto;
        bottom: 0;
        width: 40%;
        padding: 0 !important;
        background: #151515 !important;
    }
        .section-error #header:before {
            display: none;
        }
    .section-error #logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .section-error #logo svg path,
    .section-error #logo svg polygon {
        fill: #414141;
    }
    .section-error .content_basic_layout {
        position: absolute;
        top: 50%;
        left: 40%;
        width: 60%;
        padding: 50px;
        transform: translateY(-50%);
    }
    .section-error .content_basic_layout .content_body {
        max-width: 350px;
        margin: 0 auto;
    }
    .section-error .content_basic_layout .prelude {
        width: 100%;
    }

	/*  Artists
	---------------------------------------------------------------------------------- */

    .scroll_section_artist_list_combined .column_list {
        margin: 0 0 40px;
        padding-top: 30px;
    }
        .scroll_section_artist_list_combined .column_list ul {
            margin-right: -15px;
        }

    .subsection-artist-list-standard .scroll_section.scroll_section_panels.section_index_1 > .inner, 
    .subsection-artist-list-standard .scroll_section.scroll_section_standard.section_index_1 > .inner {
        padding-top: 0 !important;
    }
    .hero-section-active .subsection-artist-list-standard #scroll_section_nav ul li {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    .hero-section-active .subsection-artist-list-standard #scroll_section_nav, 
    .hero-section-active .subsection-artist-list-standard #scroll_section_nav * {
        pointer-events: auto;
    }
    .scroll-section-setup .subsection-artist-list-standard #scroll_section_nav ul li {
        opacity: 0;
        transform: translate3d(0,-70px,0);
    }

    .scroll_section_artist_list_names {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 100vh;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
        .scroll_section .scroll_section_artist_list_names .column_list {
            padding: 100px 0 50px;
        }

        .scroll_section .scroll_section_artist_list_grid .image_list {
            padding: 50px 0 50px;
        }

    .column_list {
        display: block;
        width: 100%;
        /* IMPORTANT - needs width 100% for IE!!!  but this is breaking the rhs margin now... 
        margin: 0 -30px 0 0;*/
        margin: 0;
    }
        .column_list ul {
            padding: 0;
            list-style: none;
            display: block;
            /*
            -webkit-column-count: 4;
            -moz-column-count: 4;
            column-count: 4;
            */
            width: 25%;
            padding-right: 30px;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            float: left;
            transform: translate3d(0, 120px, 0);
            opacity: 0;
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .column_list ul.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
            .column_list ul li {
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                display: inline-block;
                vertical-align: top;
                width: 100%;
                padding: 0 0 30px 0;
                font-family: 'Apercu_Pro';
                font-size: 1.4rem;
                line-height: 1.5rem;
                font-weight: bold;
            }
            .column_list ul li a {
                display: block;
                width: 100%;
            }

    .image_list {
        display: block;
    }
        .image_list ul {
            margin: 0 -30px 0 0;
            padding: 0;
            list-style: none;
            display: block;
        }
        .image_list ul li {
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            display: inline-block;
            vertical-align: top;
            width: 25%;
            padding: 0 30px 75px 0;
            transform: translate3d(0, 50px, 0);
            opacity: 0;
        }
        .image_list ul li.animate-from-bottom {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
        }
        .image_list ul li.animate-from-top {
            transition: transform 4000ms cubic-bezier(.18, 1, .21, 1), opacity 2500ms cubic-bezier(.18, 1, .21, 1);
            transform: translate3d(0, -50px, 0);
        }
        .image_list ul li.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
            .image_list ul li .image {
                display: block;
                width: 100%;
                margin: 0 0 20px;
            }
                .image_list ul li .image img {
                    max-width: 100%;
                    display: block;
                }
            .image_list ul li h3 {
                width: 100%;
                clear: both;
                display: block;
                font-family: 'Apercu_Pro';
                font-size: 1.4rem;
                line-height: 1.5rem;
                font-weight: bold;
            }





































/* ------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
*/



/* OVERLAYS
------------------------------------------------------------------- */

    .splash-container,
    .enquire-overlay,
    .search-overlay,
    .nav-overlay,
    .filter-overlay {
        pointer-events: none;
        position: fixed;
        background: rgba(0, 0, 0, 0);
        top: 0;
        left: 0;
        z-index: 1500;
        height: 100vh;
        /* opacity: 0; */
        overflow: hidden;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        width: 100vw;
        display: -webkit-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: none;
    }
    body.cms-frontend-toolbar-active .splash-container,
    body.cms-frontend-toolbar-active .enquire-overlay,
    body.cms-frontend-toolbar-active .search-overlay,
    body.cms-frontend-toolbar-active .nav-overlay,
    body.cms-frontend-toolbar-active .filter-overlay {
        top: 28px;
    }
    body.cms-frontend-toolbar-active #popup_box .close {
        top: 58px;
    }
    .active-init .splash-container {
        display: flex;
    }
    .active-init .enquire-overlay,
    .active-init .search-overlay,
    .active-init .nav-overlay,
    .active-init .filter-overlay {
        display: flex;
    }
    .splash-container.active,
    .enquire-overlay.active,
    .search-overlay.active,
    .nav-overlay.active,
    .filter-overlay.active {
        pointer-events: auto;
    }


    .splash-bg,
    .overlay-bg {
        position: fixed;
        background: rgba(0, 0, 0, 0);
        top: 0;
        left: 0;
        z-index: 400;
        /* opacity: 0; */
        overflow: hidden;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        width: 100vw;
        left: 0;
        top: 0;
    }

    .overlay-bg {
        height: 0;
        background: #111;
        -webkit-transition: background 600ms, height 600ms cubic-bezier(.45,0,.27,1), width 600ms ease-in-out;
        transition: background 600ms, height 600ms cubic-bezier(.45,0,.27,1), width 600ms ease-in-out;
    }
    .overlay-bg.open {
        background: #111;
        height: 100vh;
        -webkit-transition: background .35s, height 300ms cubic-bezier(.45,0,.27,1), width 600ms ease-in-out;
        transition: background .35s, height 300ms cubic-bezier(.45,0,.27,1), width 600ms ease-in-out;
    }

    .filter-reveal,
    .nav-reveal,
    .enquire-reveal,
    .search-reveal {
        position: relative;
        z-index: 9999;
    }
    .filter-close-button,
    .nav-close-button,
    .enquire-close-button,
    .search-close-button {
        color: #fff;
        position: absolute;
        top: 26px;
        right: 26px;
        border: 2px solid transparent;
        padding: 7px 0 9px;
        margin: 0 0 0 25px;
        z-index: 1200;
        cursor: pointer;
        font-family: 'Apercu_Pro';
        font-weight: bold;
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 1px;
        opacity: 0;
        transform: translate3d(200px, 0, 0);
        transition: transform 0.6s cubic-bezier(.87,.17,.18,.85), opacity 0.8s ease-in-out;
        -webkit-transform: translate3d(200px, 0, 0);
        -webkit-transition: -webkit-transform 0.6s cubic-bezier(.87,.17,.18,.85), opacity 0.8s ease-in-out;
    }
        .overlay.active .filter-close-button,
        .overlay.active .nav-close-button,
        .overlay.active .enquire-close-button,
        .overlay.active .search-close-button {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
        }

    .overlay-container-inner {
        visibility: hidden;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        z-index: 1000;
        width: 100vw;
        padding: 150px 100px 100px;
        box-sizing: border-box;
    }
        .overlay.active .overlay-container-inner {
            visibility: visible;
        }

    .enquire-input-wrapper,
    .enquire-contact-wrapper,
    .search-wrapper,
    .nav-wrapper,
    .nav-contact-wrapper {
        display: inline-block;
        vertical-align: middle;
        box-sizing: border-box;
        min-height: 400px;
        position: relative;
        font-family: 'Apercu_Pro';
        padding-left: 35px;
        color: #888;
        font-size: 15px;
    }
    .nav-wrapper {
        min-height: 0;
    }

    .nav-contact-module::before,
    .enquire-input-wrapper::before,
    .enquire-contact-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        width: 2px;
        display: block;
        left: -2px;
        background: #292929;
        height: 0;
        opacity: 0;
    }
    .nav-contact-module.visible::before,
    .visible .nav-contact-module::before,
    .enquire-input-wrapper.visible::before {
        height: 100%;
        -webkit-transition-delay: 0.5s; /* Safari */
        transition-delay: 0.5s;
        -moz-transition: height 3s cubic-bezier(.18, 1, .21, 1);
        -o-transition:  height 3s cubic-bezier(.18, 1, .21, 1);
        -webkit-transition: height 3s cubic-bezier(.18, 1, .21, 1);
        transition: height 3s cubic-bezier(.18, 1, .21, 1);
        opacity: 1;
    }

    .filter-wrapper {
        display: block;
    }
        .filter-wrapper a,
        .filter-wrapper a:visited {
            color: #888;
        }
        .filter-wrapper .filter-group {
            opacity: 0;
            transform: translateY(200px);
            transition: all 1200ms cubic-bezier(0.030, 0.420, 0.145, 1.005);
        }
        .filter-wrapper .filter-group.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .animate-out .filter-wrapper .filter-group {
            opacity: 0;
            transform: translateY(-200px);
            transition: all 300ms ease-in-out;
        }
        .filter-wrapper .filter-group ul li a {
            transition: color 500ms ease-in-out;
        }
        .filter-wrapper .filter-group ul li:hover a {
            color: #ccc;
        }


    /* Splash overlay
    --------------------------------------------- */

        .splash-bg {
            width: 100%;
            height: 100vh;
            transform: translateY(100%);
            background: #151515;
            transition: opacity 2000ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1);
        }
            .splash-bg.open {
                transform: translateY(0);
                transition: height 800ms cubic-bezier(.45,0,.27,1), background 400ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1);
            }
            .splash-bg.open.start {

            }
            body.first-load-complete .splash-bg {
                transform: translateY(-100%);
            }
        .splash-container-inner {
            width: 100%;
            height: 100vh;
            padding: 0 125px;
            display: block;
            box-sizing: border-box;
            position: relative;
            z-index: 1001;
            opacity: 0;
            transition: opacity 2000ms ease-in-out, transform 800ms cubic-bezier(.45,0,.27,1);
            align-items: center;
            justify-content: center;
            display: flex;
        }
            body.splash-open .splash-container-inner {
                opacity: 1;
                transform: translateY(0);
            }
            body.first-load-complete .splash-container-inner {
                transform: translateY(-100%);
                opacity: 0;
            }
        .logo-wrapper,
        .location-wrapper {
            display: inline-block;
            vertical-align: middle;
            width: 50%;
        }
        .logo-wrapper svg path {
            opacity: 0;
            fill: #fff;
            transform: translateY(100%);
            transition: transform 1000ms cubic-bezier(.65,.06,.19,.96), opacity 1000ms ease-in-out;
        }
            .logo-wrapper svg path.complete {
                opacity: 1;
                transform: translateY(0%);
            }
        .location-wrapper {
            text-align: right;
        }
        .location-item {
            margin-left: 30px;
            color: #fff;
            font-family: 'Apercu_Pro';
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.2rem;
            font-weight: bold;
            transform:translateY(30px);
            display: inline-block;
            opacity: 0;
        }
        .location-item.visible {
            transform:translateY(0);
            opacity: 1.0;
            -moz-transition: -moz-transform 2s cubic-bezier(.18, 1, .21, 1), opacity 1s cubic-bezier(.18, 1, .21, 1);
            -o-transition: -o-transform 2s cubic-bezier(.18, 1, .21, 1), opacity 1s cubic-bezier(.18, 1, .21, 1);
            -webkit-transition: -webkit-transform 2s cubic-bezier(.18, 1, .21, 1), opacity 1s cubic-bezier(.18, 1, .21, 1);
            transition: transform 2s cubic-bezier(.18, 1, .21, 1), opacity 1s cubic-bezier(.18, 1, .21, 1);
        }




    /* Navigation overlay
    --------------------------------------------- */

    	.nav-wrapper ul {
    	    list-style: none;
    	    padding: 0;
    	    margin: 0;
    	}
    	.nav-wrapper ul li {
    		display: block;
    	    font-family: 'Apercu_Pro';
    	    color: #4d4d4d;
    	    margin: 0;
    	    font-weight: bold;
    	    font-size: 77px;
    	    line-height: 90px;
            font-size: 45px;
            line-height: 55px;
    	    display: block;
    	    float: left;
    	    clear: both;
    	    opacity: 0;
    	    transform: translateX(150px);
    	}
    	.nav-wrapper ul li a,
    	.nav-wrapper ul li a:visited {
        	color: #fff;
            transition: color 600ms ease-in-out;
    	}
    	.nav-wrapper ul li a:hover {
    	    color: #888;
    	}
    	.nav-wrapper ul li.visible {
    	    opacity: 1.0;
    	    transform: translateX(0);
    	    transition: all .8s cubic-bezier(0.030, 0.420, 0.145, 1.005), color 600ms ease-in-out;
    	}
    	.animate-out .nav-wrapper ul li {
    	    transform: translateX(0);
    	    transition: all .8s cubic-bezier(0.030, 0.420, 0.145, 1.005), color 600ms ease-in-out;
    	}


    /* Search overlay
    --------------------------------------------- */

        #sw_form {
            position: absolute;
            top: 26px;
            right: 100px;
            margin: 0 0 0 25px;
            z-index: 1200;
            width: 100%;
            max-width: 250px;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            opacity: 0;
        }
            .search-overlay.active #sw_form {
                opacity: 1;
            }
            #sw_form form .form_row {
                margin: 0;
                padding: 0;
                border: 0;
            }
                #sw_form form .form_row input[type='text'] {
                    padding: 7px 25px 9px 0;
                    border-bottom: 1px solid rgba(255,255,255,0.2);
                    color: #fff;
                }
                #sw_form #sw_field_search_button {
                    display: none;
                }
                #sw_form form .form_row svg.loader {
                    display: none;
                }
                .search-loading #sw_form form .form_row svg.loader {
                    -webkit-animation: rotate 2s linear infinite;
                          animation: rotate 2s linear infinite;
                    -webkit-transform-origin: center center;
                          transform-origin: center center;
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    top: 50%;
                    right: 0;
                    margin: -10px 0 0 -10px;
                    display: block;
                }
                    .search-loading #sw_form form .form_row svg.loader .path {
                        stroke-dasharray: 1, 200;
                        stroke-dashoffset: 0;
                        -webkit-animation: dash 1.5s ease-in-out infinite, color3 6s ease-in-out infinite;
                              animation: dash 1.5s ease-in-out infinite, color3 6s ease-in-out infinite;
                        stroke-linecap: round;
                    }

        .search-wrapper {
            color: #fff;
            max-width: 1680px;
            width: 100%;
            margin: 0 auto;
            display: block;
        }
            .search-wrapper .prelude,
            .search-wrapper h2,
            .search-wrapper h3 {
                color: #fff;
                -webkit-font-smoothing: antialiased;
            }
            .search-wrapper .prelude:after {
                background: #fff;
            }
            .search-wrapper .content,
            .search-wrapper .standard_grid .item .content {
                font-family: Theinhardt;
                color: #888;
                font-weight: 300;
                font-size: 1.3rem;
                line-height: 2em;
            }
            .search-wrapper .notify_panel_footer {
                display: none;
            }
                .search-results-active .search-wrapper .notify_panel_footer {
                    display: block;
                }


    /* Enquire overlay
    --------------------------------------------- */

    .enquire-input-wrapper {
        padding-right: 70px;
    }

    .enquire-input-wrapper {
        width: 50%;
        vertical-align: top;
    }
        .enquire-input-wrapper .enquiry_form {
            
        }
            .enquire-input-wrapper .enquiry_form .notify_panel_items {
                clear: both;
            }
                .enquire-input-wrapper .enquiry_form .notify_panel_items ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }
                .enquire-input-wrapper .enquiry_form .notify_panel_items ul li {
                    display: block;
                    border-bottom: 1px solid rgba(255,255,255,0.15);
                    padding-bottom: 20px;
                    padding-top: 10px;
                    margin-bottom: 20px;
                }
                    .enquire-input-wrapper .enquiry_form .notify_panel_items ul li:after {
                        content: '';
                        display: block;
                        clear: both;
                        overflow: hidden;
                    }
                    .enquire-input-wrapper .enquiry_form .notify_panel_items ul li .image {
                        width: 35%;
                        /*padding-top: 35%;*/
                        width: 100px;
                        height: 100px;
                        float: left;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                        position: relative;
                    }
                        .enquire-input-wrapper .enquiry_form .notify_panel_items ul li .image div {
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: rgba(255,255,255,0.15);
                            display: flex;
                            text-align: center;
                        }
                        body.browser-msie .enquire-input-wrapper .enquiry_form .notify_panel_items ul li .image div {
                            display: block;
                        }
                        .enquire-input-wrapper .enquiry_form .notify_panel_items ul li .image div img {
                            max-width: 100%;
                            max-height: 100%;
                            align-self: center;
                            margin: 0 auto;
                        }
                    .enquire-input-wrapper .enquiry_form .notify_panel_items ul li .content {
                        width: 65%;
                        float: left;
                        font-size: 1.2rem;
                        line-height: 1.8rem;
                        padding: 0 0 0 20px;
                        -moz-box-sizing: border-box;
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                    }
            .enquire-input-wrapper .enquiry_form form .form_row {
                border-bottom: 1px solid rgba(255,255,255,0.15);
            }
            .enquire-input-wrapper .enquiry_form form .form_row input[type='text'], 
            .enquire-input-wrapper .enquiry_form form .form_row textarea, 
            .enquire-input-wrapper .enquiry_form form .form_row select {
                color: #666;
                font-weight: normal;
                font-size: 1.4rem;
            }
            .enquire-input-wrapper .enquiry_form form .form_row input.active, 
            .enquire-input-wrapper .enquiry_form form .form_row textarea.active, 
            .enquire-input-wrapper .enquiry_form form .form_row select.active {
                color: #fff;
            }
            .enquire-input-wrapper .button {
                background: #151515;
            }
            .enquire-input-wrapper .button a,
            .enquire-input-wrapper .button.loading a {
                border-color: #fff;
            }
            .enquire-input-wrapper .button a,
            .enquire-input-wrapper .button a:visited {
                color: #fff;
            }
            .enquire-input-wrapper .button:before {
                background: #fff;
            }
            .device-desktop .enquire-input-wrapper .button:hover:before,
            .enquire-input-wrapper .button.loading:before {
                transform: translate3d(0, 0, 0);
            }
            .enquire-input-wrapper .button.loading .loader svg .path {
                -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
                animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
            }
            .device-desktop .enquire-input-wrapper .button:hover a,
            .device-desktop .enquire-input-wrapper .button:hover a:visited {
                color: #151515;
            }
    .enquire-contact-wrapper {
        width: 50%;
        vertical-align: top;
    }

.vert-label {
    font-family: 'Apercu_Pro';
    -webkit-transform-origin: 100%;
    -moz-transform-origin: 100%;
    -ms-transform-origin: 100%;
    -o-transform-origin: 100%;
    transform-origin: 100%;
    -webkit-transform: rotate(-90deg) translate(0px, -200px);
    -moz-transform: rotate(-90deg) translate(0px, -200px);
    -ms-transform: rotate(-90deg) translate(0px, -200px);
    -o-transform: rotate(-90deg) translate(0px, -200px);
    transform: rotate(-90deg) translate(0px, -200px);
    color: #fff;
    position: absolute;
    left: -25px;
    top: -10px;
    width: 200px;
    text-align: right;
    font-size: 11px;
    line-height: 2.0rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 200;
    color: #eee;
    margin: 0;
    font-weight: bold;
}

    .nav-wrapper {
        width: 50%;
    }
    .nav-contact-wrapper {
        width: 50%;
        /*overflow-x: hidden;*/
    }
    .nav-contact-module {
        position: relative;
        padding-left: 40px;
        font-size: 1.4rem;
        line-height: 2rem;
        display: block;
        margin-bottom: 8vh;
        margin-right: -30px;
    }
    .nav-contact-module.last {
        margin-bottom: 0;
    }
    .nav-contact-module h3 {
        font-size: 15px;
        font-weight: normal;
        color: #eee;
        margin: 0 0 20px 0;
        line-height: 18px;
    }
    .nav-contact-column {
        display: inline-block;
        box-sizing: border-box;
        padding: 0 30px 0 0;
        width: 45%;
        vertical-align: top;
    }
    .nav-contact-column.address-column {
        width: 55%;
    }
    .nav-contact-column span {
        margin-bottom: 20px;
        display: block;
    }
    .contact-details {
        display: block;
    }

    .nav-contact-module-inner, 
    .contact-details, 
    .enquire-input-wrapper .enquiry_form {
        opacity: 0;
        transform: translateY(100px);
    }
    .send-button {
        opacity: 0;
    }
    .visible .send-button {
        opacity: 1;

        -webkit-transition: all 3s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition: all 3s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition-delay: 0.5s;
    }
    .nav-contact-module.visible .nav-contact-module-inner, 
    .visible .nav-contact-module-inner, 
    .visible .contact-details, 
    .enquire-input-wrapper.visible  .enquiry_form  {
        -webkit-transition: all 1s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition: all 1s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        opacity: 1.0;
        transform: translateY(0);
    }
    .animate-out .nav-contact-module .nav-contact-module-inner {
        -webkit-transition: all 1s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition: all 1s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transform: translateY(0);
    }

    .overlay .vert-label {
        opacity: 0;
    }
    .overlay .visible .vert-label {
        opacity: 1.0;
        -webkit-transition: all 3s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition: all 3s cubic-bezier(0.030, 0.420, 0.145, 1.005);
    }
    .overlay.animate-out .vert-label {
        -webkit-transition: all 2s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition: all 2s cubic-bezier(0.030, 0.420, 0.145, 1.005);
    }
    .overlay.animate-out .nav-contact-module .nav-contact-module-inner {
        -webkit-transition: all 2s cubic-bezier(0.030, 0.420, 0.145, 1.005);
        transition: all 2s cubic-bezier(0.030, 0.420, 0.145, 1.005);
    }
    .overlay.animate-out .nav-contact-module::before,
    .overlay.animate-out .enquire-input-wrapper::before,
    .overlay.animate-out .enquire-contact-wrapper::before{
        height: 0;
        -webkit-transition-delay: 0.5s; /* Safari */
        transition-delay: 0.5s;
        -moz-transition: height 3s cubic-bezier(.18, 1, .21, 1);
        -o-transition:  height 3s cubic-bezier(.18, 1, .21, 1);
        -webkit-transition: height 3s cubic-bezier(.18, 1, .21, 1);
        transition: height 3s cubic-bezier(.18, 1, .21, 1);
    }










    /* Prompt ----------------------------------------- */

    div.arpromptfade{
        position: absolute;
        background-color: #000;
    }
    div.arprompt{
        width: 400px;
        position: absolute;
        background-color: #111;
        text-align: left;
        padding: 25px;
    }
    div.arprompt .arpromptclose{
        position: absolute;
        z-index: 1900;
        top: 25px;
        right: 25px;
        display: block;
        content: '';
        width: 16px;
        height: 16px;
        transform: rotate(135deg);
        background: url(/images/menu.png) center center no-repeat;
        background-size: 16px 16px;
        transition: background-image 400ms linear;
        text-indent: -100px;
        cursor: pointer;
    }
    div.arprompt .arpromptmessage {
        margin: 0 0 25px;
        padding: 0 25px 0 0;
        color: #fff;
    }
        div.arprompt .arpromptmessage h2 {
            font-size: 2rem;
            line-height: 2.8rem;
        }
        div.arprompt .arpromptmessage h2,
        div.arprompt .arpromptmessage h3,
        div.arprompt .arpromptmessage h4 {
            color: #fff;
        }
    div.arprompt .arpromptbuttons {
        border-top: 1px solid #333;
        padding-top: 25px;
    }

