/*!
Theme Name: Arkitektura 22
Theme URI: http://arksf.com.me/
Author: FuturePerfekt
Author URI: http://futureperfekt.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: arkitektura22
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

arkitektura22 is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

@font-face {
    font-family: "AvenirWeb";
    src: url("/wp-content/themes/arkitektura22/fonts/avenir/Avenir-Light-07.ttf")
        format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AvenirWeb";
    src:
        url("/wp-content/themes/arkitektura22/fonts/avenir/Avenir-Medium.woff2")
            format("woff2"),
        url("/wp-content/themes/arkitektura22/fonts/avenir/Avenir-Medium.woff")
            format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AvenirWeb";
    src:
        url("/wp-content/themes/arkitektura22/fonts/avenir/Avenir-Heavy.woff2")
            format("woff2"),
        url("/wp-content/themes/arkitektura22/fonts/avenir/Avenir-Heavy.woff")
            format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*@font-face {
    font-family: "AvenirCondensedWeb";
    src:
        url("/wp-content/themes/arkitektura22/fonts/AvenirNextProRegular/font.woff2")
            format("woff2"),
        url("/wp-content/themes/arkitektura22/fonts/AvenirNextProRegular/font.woff")
            format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}*/

@font-face {
    font-family: "AvenirCondensedWeb";
    src:
        url("/wp-content/themes/arkitektura22/fonts/AvenirNextProCondensedMedium/font.woff2")
            format("woff2"),
        url("/wp-content/themes/arkitektura22/fonts/AvenirNextProCondensedMedium/font.woff")
            format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AvenirCondensedWeb";
    src:
        url("/wp-content/themes/arkitektura22/fonts/AvenirNextProCondensedBold/font.woff2")
            format("woff2"),
        url("/wp-content/themes/arkitektura22/fonts/AvenirNextProCondensedBold/font.woff")
            format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

:root {
    --ark-grey: #52555c;
    --ark-max-width: 1728px;
    --ark-text-width: 55%;
    --ark-container-width: 90%;
}

body {
    margin: 0;
    padding: 120px 0px 0px 0px !important;
    background-color: #fff;
    font-family: "AvenirWeb", "Avenir", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4em;
    letter-spacing: 0.04px;
    color: var(--ark-grey) !important;
    transition: padding 0.3s ease;
}

.grecaptcha-badge
{
    display: none;
}

body.no-anim {
    transition: padding 0s ease;
}

body.banner-active {
    padding: 165px 0px 0px 0px !important;
}

body.noscroll {
    overflow: hidden;

    width: 100%;
}

@media all and ( max-width: 781px ){
    body.noscroll
    {
        position: fixed;
    }
}

body.admin-bar {
    padding: 143px 0px 0px 0px;
}

body.admin-bar.banner-active {
    padding: 177px 0px 0px 0px;
}

body.home
{
    padding: 143px 0px 0px 0px !important;
}

/*body.home,
body.home.banner-active {
    padding: 118px 0px 0px 0px;
}

body.home.admin-bar,
body.home.admin-bar.banner-active {
    padding: 118px 0px 0px 0px;
}*/

.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption)::before 
{
    backdrop-filter: none !important;
}

.light-grey {
    color: #858585;
}

.ark-italic {
    font-style: italic;
}

.ark-announcements {
    background-color: var(--ark-grey);
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 45px;
    text-align: center;
    height: 45px;
    overflow: hidden;
    border: 0px;
    border-radius: 0;
    margin: 0px;
    position: relative;
    top: 0px;
    width: 100%;
    z-index: 1001;
    overflow: hidden;
    height: 45px;
    transition: height 0.2s ease;
}

.ark-announcements .inner {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
    position: relative;
}

.ark-announcements.no-anim {
    transition: height 0s ease;
}

.ark-announcements.hidden {
    height: 0px;
}

.ark-announcements .close-btn {
    position: absolute;
    left: 15px;
    top: 0px;
    width: 40px;
    top: 50%;
    transform: translate(0px, -50%);
    font-size: 30px;
    cursor: pointer;
    text-align: right;
    cursor: pointer;
}

.ark-announcements .close-btn img {
    width: 50%;
    height: auto;
}

.ark-announcements a {
    color: #fff;
    border-bottom: 1px solid #fff;
    /*animation: opacity-1 2000ms infinite ease-in-out;*/
}

.ark-announcements a:hover {
    color: #000;
    border-bottom: 1px solid #000;
    animation: none;
}

@keyframes opacity-1 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media all and (max-width: 1000px) {
    .ark-announcements {
        font-size: 12px;
    }
}

@media all and (max-width: 767px) {
    .ark-announcements {
        font-size: 10px;
        line-height: 15px;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .ark-announcements a {
        border-bottom: 0px;
        background-image: linear-gradient(
            rgb(255, 255, 255),
            rgb(255, 255, 255)
        );
        background-size: 100% 1px;
        background-position: 0 100%;
        background-repeat: no-repeat;
        margin-left: 0px;
    }

    .ark-announcements .inner {
        width: 71%;
    }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    background-color: #CCC;
    height: 55px;
    width: 100%;
    bottom: 0;
    box-sizing: border-box;
    padding: 10px;
    color: #000;
    z-index: 1000;
    font-size: 10.5pt;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-notice .button-container,
body.page-id-3837 .cookie-notice .container {
    width: auto;
    display: inline-block;
    position: relative;
}

body.page-id-3837 .cookie-notice .container {
    top: 15%;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.ark-text {
    margin: 0px auto;
    max-width: 800px;
}

.rsvp-text {
    width: 90%;
}

.lead-modal .inner,
.daloom-form .inner {
    max-width: 540px;
    margin: 45px auto 0px auto;
}

.form-section {
    margin-bottom: 1em;
}

.cookie-notice .container {
    top: 0px;
    transform: translateY(0%);
    display: inline-block;
    width: auto;
    position: relative;
    margin: 0px 0px;
    max-width: none;
}

.cookie-notice.hidden {
    display: none;
}

.cookie-notice p {
    margin: 0;
    position: relative;
}

.cookie-notice a {
    background-repeat: no-repeat,no-repeat;
  transition: background-position 1s ease, color 1s linear;
  background-image: linear-gradient(#CCC, #CCC), linear-gradient(#000, #000), linear-gradient(#000, #000);
  background-size: 100px 1px, 100% 1px, 0 1px;
  background-position: calc(100px * -1) 100%, 100% 100%, 0 100%;
  padding-bottom: 2px;
  border-bottom: 0px;
}

.cookie-notice a:hover {
    background-size: 100px 1px, 0 1px, 100% 1px;
    background-position: calc(100% + 100px) 100%, 100% 100%, 0 100%;
    border-bottom: none;
}

.cookie-notice a.accept-button {
    text-transform: uppercase;

    margin-left: 40px;
}

@media all and (max-width: 767px) {
    .cookie-notice {
        text-align: left;
        font-size: 10px;
        line-height: 15px;
        padding: 10px 30px;
    }

    .cookie-notice .container {
        width: 100%;
    }

    .cookie-notice p {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .cookie-notice span {
        flex-basis: 50%;
    }

    .cookie-notice a.accept-button {
        margin-left: auto;
        font-size: 11px;
    }
}

/* End cookie notice */

p {
    margin: 0px 0px 1em 0px;
}

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

b,
strong {
    font-weight: 900;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    font-size: 1em;
    text-transform: uppercase;
    margin: 0px 0px 1em 0px;
    line-height: 1.3em;
}

h2 {
    text-transform: none;
    font-family: "AvenirWeb", sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    background-size: 100% 1px;
    border-bottom: 1px solid var(--ark-grey);
    transition: all 0.3s ease;
    color: inherit;
}

a:hover {
    color: #000;
    border-bottom: 1px solid #000;
}

.wp-block-image {
    margin: 0px;
}

.wp-block-image a,
.wp-block-image a:hover
{
    border-bottom: 0px;
}

.mobile-only {
    display: none;
}

.site-main {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
}

@media (max-width: 767px) {
    .site-main {
        width: 100%;
    }
}

.entry-content ul {
    list-style: none;
}

.entry-content ul li:before {
    content: "\2014";
    margin-right: 5px;
}

.entry-content ul.kb-gallery-ul li:before {
    content: "";
    margin-right: 0px;
    display: none;
}

.entry-content .ark-gallery ul li:before {
    content: "";
    margin-right: 0px;
}

body.page-id-589 .site-main {
    min-height: 600px;
}

body.page .site-main,
body.post-type-archive-brands .site-main {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 24px auto 20px auto;
}

body.home.page .site-main {
    width: 100%;
    margin-top: 0px;
}

.catalog-page .site-main {
    min-height: 900px;
}

body.admin-bar header.site-header {
    top: 32px;
}

body.admin-bar header.site-header.banner-active {
    top: 77px;
}

header.site-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 120px;
    margin-bottom: 0px;
    margin-top: 0px;
    z-index: 1000;
    background-color: #fff;
}

header.site-header.banner-active {
    top: 45px;
}

.logo {
    width: 300px;
    position: relative;
    margin-left: auto;
    color: #000;
    /*right: 0px;
  top: 0px;*/
}

.logo a
{
    border: none;
}

.logo svg
{
    width: 100%;
    height: auto;
    border: none;
    position: relative;
    display: block;
}

.logo::after
{
    content: '';
    display: block;
    height: 68px;
    background-color: #000;
    width: 11px;
    position: absolute;
    right: 1px;
    top: 0px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s ease;
}

.logo.animate::after
{
    transform: scaleY(1);
}

.logo svg .ark-link
{
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s ease;
    fill: none;
}

/*.logo svg .ark-link.visible
{
    transform: scaleY(1);
}*/

.logo svg .word-forty > path
{
    transform: translate3d(150px, 0px, 0px);
    transition: transform 1s ease-in-out;
}

.logo svg .word-arkitektura > path
{
    opacity: 0;
    transform: translate3d(10px, 0px, 0px);
    transition: transform .5s ease, opacity .5s linear;
}

.logo svg .word-arkitektura > path,
.logo svg .word-celeb > path
{
    opacity: 0;
    transform: translate3d(0px, 10px, 0px);
    transition: transform .5s ease, opacity .5s linear;
}

.logo svg .word-forty.visible > path,
.logo svg .word-arkitektura.visible > path,
.logo svg .word-celeb.visible > path
{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}

.logo svg .word-forty.visible > path.letter-o
{
    transition-delay: .2s;
}

.logo svg .word-forty.visible > path.letter-r
{
    transition-delay: .4s;
}

.logo svg .word-forty.visible > path.letter-t
{
    transition-delay: .6s;
}

.logo svg .word-forty.visible > path.letter-y
{
    transition-delay: .8s;
}




.slogan {
    text-align: right;
    text-transform: uppercase;
    font-family: 'AvenirCondensedWeb', 'Avenir Next Condensed', sans-serif;
    font-weight: 400;
    font-size: 15.5px;
    margin-top: 10px;
    line-height: 1.4em;
    opacity: 0;
    transform: translate3d(0px, 10px, 0px);
    transition: transform .5s ease, opacity .5s linear;
}

.slogan.visible
{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}

.slogan p {
    margin: 0px;
}

@media all and (max-width: 767px) {
    .slogan {
        display: flex;
        justify-content: right;
    }

    .slogan p {
        width: 80%;
    }

    header.site-header {
        height: 80px;
    }

    body.banner-active header.site-header {
        height: 155px;
    }

    body.page .site-main,
    body.post-type-archive-brands .site-main {
        margin-bottom: 0px;
    }
}

@media all and (max-width: 450px) {
    .logo {
        width: 66%;
    }

    .logo::after {
        height: 54px;
    }
}

/* Search Form */

header.site-header .wrap {
    position: relative;
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 24px auto 20px auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.search-icon {
    width: 20px;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
}

.search-icon img {
    cursor: pointer;
}

.search-icon::before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    bottom: -10px;
    left: -10px;
    right: -10px;
    top: -10px;
    background: none;
    border-radius: 50%;
    box-sizing: border-box;
    transform: scale(0);
    transition-property: transform, opacity;
}

.search-icon:hover::before {
    background-color: rgba(32, 33, 36, 0.059);
    border: none;
    box-shadow: none;
    opacity: 1;
    transform: scale(1);
}

.search-holder {
    position: absolute;
    top: 0px;
    left: 40px;
    width: 20px;

    height: 30px;
    transition: 0.3s all ease;
    transform: translateY(-1px);
    z-index: 1;
}

.search-holder.open {
    width: 250px;
}

.search-form {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 30px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s opacity ease;
    height: 24px;
    width: 190px;
}

.mobile-search-form {
    display: none;
}

.search-holder.open .search-form {
    opacity: 1;
    pointer-events: visible;
}

.search-form input[type="text"] {
    font-family: "AvenirWeb", sans-serif;
    letter-spacing: 0.4px;
    -webkit-appearance: none;
    border-radius: 0;
    border-width: 0px 0px 1px 0px;
    border-color: var(--ark-grey);
    border-style: solid;
    background-color: transparent;
    font-size: 10pt;
    padding-left: 0px;
    margin: 0px;
    outline: none;
    transform: translateY(-5px);
    width: 100%;
}

@media (max-width: 767px) {
    header.site-header .wrap {
        width: 95%;
    }
}

/* End Search Form */

/* Conatct Link */
.ark-contact-link
{
    position: absolute;
    left: 86px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ark-contact-link a
{
    border-bottom: 0px;
}

/* Anniversary Link */

.ark-40-link
{
    position: absolute;
    left: 270px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ark-catalog-link
{
    position: absolute;
    left: 595px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media all and ( max-width: 1160px)
{
    .ark-catalog-link
    {
        display: none;
    }
}

@media all and ( max-width: 900px)
{
    .ark-40-link
    {
        display: none;
    }
}


/* Hamburger */

.hamburger-menu {
    position: absolute;
    top: 1px;
    left: 0px;
    margin: auto;
    width: 25px;
    height: 25px;
    z-index: 1;
    cursor: pointer;
}

.stick {
    position: relative;
    transform: translateY(7px);
    background: var(--ark-grey);
    transition: all 0s 0.3s;
}

.stick:after,
.stick:before,
.tagline {
    position: absolute;
}

.stick,
.stick:after,
.stick:before {
    width: 100%;
    height: 1px;
}

.stick:before {
    bottom: 8px;
    transition:
        bottom 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stick:after {
    top: 8px;
    transition:
        top 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stick.animate {
    background: rgba(255, 255, 255, 0);
}

.stick.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition:
        bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stick.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition:
        top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stick:after,
.stick:before {
    content: "";
    left: 0;
    background: var(--ark-grey);
}
.menu-img {
    position: relative;
    top: 20px;
    opacity: 1;
    transition: 0.3s opacity;
}

.stick.animate ~ .menu-img {
    opacity: 0;
}

/* End of HAmburger */

.main-navigation {
    background-color: var(--ark-grey);
    color: #fff;
    text-transform: uppercase;
    padding: 0px;
    font-size: 20px;
    overflow: hidden;
    height: 0px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0px;
    transition: height 0.3s ease-out;
    font-size: 18px;
}

.main-navigation.visible {
}

header.site-header .main-navigation .wrap {
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    padding: 60px 0 80px 0;
}

.main-navigation a {
    color: rgba(255, 255, 255, .8);
    border-bottom: 0px;
    text-decoration: none;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: 0% 1px;
}

.main-navigation .bold a
{
    font-weight: 500;
}

@media (pointer: fine) {
    .main-navigation a:hover {
        background-size: 100% 1px;
        color: rgba(255, 255, 255, 1);
    }
}

.main-navigation .col {
    padding: 0px 0px 0px 35px;
    opacity: 1;
    transition: opacity 0.2s linear;
    min-height: 0px;
    box-sizing: border-box;
    position: relative;
}

.main-navigation .col:after {
    display: block;
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 0%;
    width: 1px;
    border-right: 1px solid #fff;
    transition: all 0.4s ease;
}

.main-navigation .col:after {
    transition-delay: 0.1s;
}

.main-navigation .col:first-child {
    padding-left: 0px;
    flex-basis: 17.4%;
}

.main-navigation .col:nth-child(2) {
    flex-basis: 34.6%;
}

/*.main-navigation .col:nth-child(2):after
{
    transition-delay: .2s;
}*/

.main-navigation .col:nth-child(3) {
    flex-basis: 24.15%;
}

/*.main-navigation .col:nth-child(3):after
{
    transition-delay: .3s;
}*/

.main-navigation .col.hiding::after,
.main-navigation
    .col.hiding:nth-child(2)::after
    .main-navigation
    .col.hiding:nth-child(3)::after {
    transition-delay: 0s;
}

.main-navigation .col:nth-child(4) {
    flex-basis: 23%;
}

/*.main-navigation .col:nth-child(2):after
{
    transition-delay: .4s;
} remove dealys*/

.main-navigation .col.visible {
    opacity: 1;
}

.main-navigation .col.visible:after {
    height: 100%;
}

.main-navigation .col.visible.hiding:after {
    height: 0%;
    transition-delay: 0s;
}

.main-navigation .col.visible:nth-child(2) {
    transition: opacity 0.2s linear 0.1s;
}

.main-navigation .col.visible:nth-child(3) {
    transition: opacity 0.2s linear 0.2s;
}

.main-navigation .col.visible:nth-child(4) {
    transition: opacity 0.2s linear 0.3s;
}

.main-navigation .col:last-child {
    border-right: 0px;
}

.main-navigation .col:last-child:after {
    display: none;
}

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

.main-navigation .wrap ul li {
    margin-bottom: 13px;
    transition: 0.45s ease 0.1s;
    opacity: 0;
    transform: translateY(-10px);
}

.main-navigation .col.visible ul li {
    opacity: 1;
    transform: translateY(0px);
}

.main-navigation .col.visible ul li:first-child {
    transition: 0.45s ease 0s;
}

.main-navigation .col.visible ul li:nth-child(2) {
    transition: 0.45s ease 0.1s;
}

.main-navigation .col.visible ul li:nth-child(3) {
    transition: 0.45s ease 0.2s;
}

.main-navigation .col.visible ul li:nth-child(4) {
    transition: 0.45s ease 0.3s;
}

.main-navigation .col.visible ul li:nth-child(5) {
    transition: 0.45s ease 0.4s;
}

.main-navigation .col.visible ul li:nth-child(6) {
    transition: 0.45s ease 0.5s;
}

.main-navigation .col.visible ul li:nth-child(7) {
    transition: 0.45s ease 0.6s;
}

.main-navigation .col.visible ul li:nth-child(8) {
    transition: 0.45s ease 0.7s;
}

.main-navigation .col.visible ul li:nth-child(9) {
    transition: 0.45s ease 0.8s;
}

.main-navigation .col.visible ul li:nth-child(10) {
    transition: 0.45s ease 0.9s;
}

.main-navigation .col.visible ul li:nth-child(11) {
    transition: 0.45s ease 1s;
}

.main-navigation .col.visible ul li:nth-child(12) {
    transition: 0.45s ease 1.1s;
}

.main-navigation .col.visible ul li:nth-child(13) {
    transition: 0.45s ease 1.2s;
}

.main-navigation .col.visible ul li:nth-child(14) {
    transition: 0.45s ease 1.3s;
}

.main-navigation .col.visible ul li:nth-child(15) {
    transition: 0.45s ease 1.4s;
}

.main-navigation .col.visible ul li:nth-child(16) {
    transition: 0.45s ease 1.5s;
}

.main-navigation .col.visible ul li:nth-child(17) {
    transition: 0.45s ease 1.6s;
}

.main-navigation .col.visible ul li:nth-child(18) {
    transition: 0.45s ease 1.7s;
}

.main-navigation .col.visible.hiding ul li,
.main-navigation .col.visible.hiding:nth-child(2),
.main-navigation .col.visible.hiding:nth-child(3),
.main-navigation .col.visible.hiding:nth-child(4) {
    transition-delay: 0s;
    opacity: 0;
    transform: translateY(-10px);
}

.main-navigation ul li:last-child {
    margin-bottom: 0px;
}

@media all and (max-width: 900px) {
    .main-navigation {
        font-size: 14px;
    }

    .main-navigation .wrap ul li {
        margin-bottom: 10px;
    }

    .main-navigation .col {
        padding: 0px 0px 0px 20px;
    }
}

@media all and (max-width: 767px) {
    .main-navigation {
    }

    .main-navigation .col,
    .main-navigation .col:first-child,
    .main-navigation .col:nth-child(2),
    .main-navigation .col:nth-child(3),
    .main-navigation .col:nth-child(4) {
        flex-basis: 100%;
        padding: 0px 0px 30px 0px;
    }

    .main-navigation .col:after {
        border-right: 0px;
    }

    header.site-header .main-navigation .holder {
        height: calc(100vh - 120px);
        overflow: auto;
    }

    header.site-header .main-navigation .wrap {
        flex-wrap: wrap;
    }
}

.site-footer {
    color: #fff;
    background-color: var(--ark-grey);
    padding: 90px 0px 90px 0px;
    margin-top: 200px;
    font-size: 18px;
}

.site-footer .wrap {
    position: relative;
    width: 95%;
    margin: 24px auto 20px auto;
    max-width: 1600px;
    display: flex;
}

.site-footer .col {
    border-right: 1px solid #fff;
    padding: 0px 35px 175px 35px;
}

.site-footer .col:first-child {
    flex-basis: 50%;
}

.site-footer .col:last-child {
    border-right: 0px;
}

.site-footer h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 100%;
    font-weight: 300;
}

.site-footer form {
    border-bottom: 1px solid #fff;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.site-footer form > div {
    flex-basis: 75%;
    display: flex;
    align-items: flex-end;
}

.site-footer .js-cm-form div {
    position: relative;
}

.site-footer .js-cm-form span.error {
    position: absolute;
    top: 100%;
    top: calc(100% + 5px);
    left: 0px;
}

.site-footer input[type="email"],
.site-footer input[type="text"] {
    background-color: var(--ark-grey);
    color: #fff;
    -webkit-appearance: none;
    border-width: 0px 0px 1px 0px;
    border: 0px;
    padding: 0px 0px 10px;
    outline: none;
    font-family: "AvenirWeb", sans-serif;
    width: 100%;
    font-size: 16px;
    margin: 0px;
}

.site-footer input[type="email"]::placeholder,
.site-footer input[type="text"]::placeholder {
    font-size: 16px;
}

.site-footer button {
    -webkit-appearance: none;
    border-radius: 0px;
    border: 0px;
    background-color: transparent;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s linear;
    font-family: "AvenirWeb", sans-serif;
    font-size: 16px;
    padding: 10px 0px 10px 10px;
    margin: 0px;
    /*position: relative;
  top: 1px;*/
    line-height: 1em;
}

.site-footer button:hover {
    opacity: 0.5;
}

.site-footer .ark-contact-info {
    margin-top: 140px;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.01em;
}

/*.site-footer button:hover
{
  background-color: rgba(255,255,255, 1);
  color: var(--ark-grey);
}*/

.site-footer a {
    background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: 0% 1px;
    border-bottom: 0px;
    color: #fff;
}

.site-footer a:hover {
    background-size: 100% 1px;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
}

.site-footer ul.social,
.menu-social-menu-container {
    margin-top: 30px;
}

.site-footer ul li {
    margin-bottom: 13px;
}

@media all and (max-width: 900px) {
    .site-footer {
        font-size: 14px;
    }

    .site-footer form {
        width: 75%;
    }

    .site-footer ul li {
        margin-bottom: 10px;
    }

    .site-footer .col {
        padding: 0px 20px 175px 20px;
    }
}

@media all and (max-width: 767px) {
    .site-footer {
        padding: 30px 0px 30px 0px;
        margin-top: 120px;
    }

    .site-footer .wrap {
        flex-wrap: wrap;
        width: 100%;
    }

    .site-footer .col:first-child,
    .site-footer .col {
        flex-basis: 100%;
        padding: 0px 5% 35px 5%;
        border-right: none;
    }

    .site-footer .ark-contact-info {
        margin-top: 70px;
    }
}

/* Home Page */

.spinner {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0px auto;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: default !important;
}

.ark-home-section .flickity-slider a {
    border-bottom: 0px;
}

.ark-home-section .ark-home-slider > .wp-block-group__inner-container {
    width: 100%;
}

.ark-home-slider .flickity-slider > .wp-block-group {
    width: 100%;
    height: 100%;
}

.ark-home-slider
    .flickity-slider
    > .wp-block-group
    .wp-block-group__inner-container {
    width: 100%;
    height: 100%;
}

.ark-home-slider .wp-block-embed,
.ark-home-slider .wp-block-embed__wrapper {
    width: 100%;
    height: 100%;
}

.wp-block-embed iframe {
    width: 100%;
    height: 100%;
}

.featherlight.ark-video-lightbox .featherlight-content {
    padding: 25px !important;
    max-width: 1000px;
}

figure.ark-video-link:before {
    content: "";
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("/wp-content/themes/arkitektura22/images/play-btn.svg");
    background-size: 100% auto;
    background-position: center;
    pointer-events: none;
}

.featherlight.ark-video-lightbox .featherlight-content .vid-holder {
    position: relative;
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.featherlight.ark-video-lightbox .featherlight-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (pointer: fine) {
    .ark-home-section .flickity-slider > figure::before,
    .ark-home-section
        .ark-home-slider
        .flickity-slider
        > .wp-block-group::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s linear;
        background-color: var(--ark-grey);
        mix-blend-mode: multiply;
        z-index: 1001;
    }

    .ark-home-section .wp-block-gallery:hover .flickity-slider > figure::before,
    .ark-home-section
        .ark-home-slider:hover
        .flickity-slider
        > .wp-block-group::before {
        opacity: 0.4;
    }
}

.flickity-button {
    background: transparent !important;
}

.flickity-button-icon {
    display: none !important;
}

.flickity-button:focus {
    box-shadow: none !important;
}

.flickity-prev-next-button {
    border-radius: 0px !important;
}

.flickity-prev-next-button.previous {
    background-image: url("/wp-content/themes/arkitektura22/images/arrows/arrow-left.svg") !important;
    background-size: auto 40px !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    background-position: center center !important;
    width: 10%;
    height: 100%;
    padding: 0px;
    left: 0px !important;
}

.flickity-prev-next-button.next {
    background-image: url("/wp-content/themes/arkitektura22/images/arrows/arrow-right.svg") !important;
    background-size: auto 40px !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    background-position: center center !important;
    width: 10%;
    height: 100%;
    padding: 0px;
    right: 0px !important;
}

@media (pointer: fine) {
    .flickity-prev-next-button {
        opacity: 0;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .flickity-prev-next-button.previous {
        transform: translate(-10px, -50%);
    }

    .flickity-prev-next-button.next {
        transform: translate(10px, -50%);
    }

    .ark-home-section .wp-block-gallery:hover .flickity-prev-next-button,
    .ark-home-section .ark-home-slider:hover .flickity-prev-next-button {
        opacity: 1;
        transform: translate(0px, -50%);
        pointer-events: visible;
    }
}

/* flickity-fade */

.flickity-enabled.is-fade .flickity-slider > * {
    pointer-events: none;
    z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
}

.ark-home-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.ark-home-section:last-of-type {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.ark-home-section .wp-block-gallery,
.ark-home-section .ark-home-slider > .wp-block-group__inner-container {
    width: 100%;
    margin: 0px;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.ark-home-section .wp-block-gallery.ready,
.ark-home-section .ark-home-slider > .wp-block-group__inner-container.ready {
    opacity: 1;
}

.ark-home-section
    .wp-block-gallery.has-nested-images
    figure.wp-block-image
    figcaption,
.ark-slider-caption {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.9);
    /*width: 339px;*/
    width: 26.66%; /*min(17.7vw, 339px);*/
    max-width: none;
    /*height: 375px;*/
    height: 47.02%;
    max-height: none;
    flex-grow: 0;
    color: var(--ark-grey);
    text-align: left;
    margin: 0px;
    box-sizing: border-box;
    padding: 2.359%;
    bottom: auto;
    pointer-events: none;
}

.ark-slider-caption.has-link {
    pointer-events: visible;
    z-index: 1000;
}

.ark-home-section .flickity-slider .ark-slider-caption a {
    border-bottom: 1px solid var(--ark-grey);
}

.ark-home-section
    .wp-block-gallery.has-nested-images
    figure.wp-block-image
    figcaption:before,
.ark-slider-caption:before {
    content: "";
    border-top: 1px solid #cacaca;
    display: block;
    width: 43%; /*120px;*/
    height: 1px;
    margin-bottom: 10.74%; /*30px;*/
}

.ark-home-section
    .wp-block-gallery.has-nested-images
    figure.wp-block-image:nth-child(2n)
    figcaption,
.ark-home-section
    .ark-home-slider
    .wp-block-group:nth-child(2n)
    .ark-slider-caption {
    left: auto;
    right: 0px;
}

.ark-home-section .wp-block-gallery figcaption h3,
.ark-slider-caption h3,
.ark-slider-caption h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: min(1.46vw, 28px); /*28px;*/
    margin-bottom: 0px;
}

.ark-home-section .wp-block-gallery figcaption p.sub-heading,
.ark-slider-caption h4 {
    font-size: min(0.859vw, 16px); /*16px;*/
    line-height: 1.25em;
    letter-spacing: 0.01em;
    font-weight: 900;
    text-transform: uppercase;
    width: 100%;
    margin-top: 2.88%; /*8px*/
    margin-bottom: 21.5%; /*60px*/
    font-style: normal;
}

.ark-home-section .wp-block-gallery figcaption p,
.ark-slider-caption p {
    font-style: italic;
    font-size: min(0.9665vw, 18px); /*18px;*/
    line-height: 1.55em;
    letter-spacing: 0.01em;
    position: relative;
    width: 84%;
}

.ark-quotes:before {
    content: "\201C";
    display: block;
    position: absolute;
    top: 0px;
    left: -0.61vw;
}

.ark-quotes:after {
    content: "\201D";
    display: inline-block;
    position: relative;
    bottom: 0px;
    right: 0px;
}

@media all and (max-width: 900px) {
    .ark-quotes:before {
    }
}

.ark-home-section h2 {
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: right;
}

.ark-home-hero .wp-block-group__inner-container figure {
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding-bottom: 57.8%;
    position: relative;
}

.ark-home-hero .wp-block-group__inner-container figure figcaption,
.ark-home-hero p {
    position: absolute;
    bottom: 15px;
    right: 30px;
    color: #fff;
    margin: 0px;
    z-index: 2;
}

.ark-home-hero .wp-block-group__inner-container figure figcaption a,
.ark-home-hero p a {
    background-size: 100% 1px;
    border-bottom: 1px solid #fff;
}

.ark-home-hero p a:hover {
    border-bottom: 1px solid #000;
}

.ark-home-hero .wp-block-group__inner-container img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
}

.ark-home-hero .wp-block-group__inner-container picture {
    position: relative;
}

.ark-home-hero .wp-block-group__inner-container .home-header-img {
    position: relative;
}

.home-header-img .inner {
    overflow: hidden;
    width: 100%;
    height: 0px;
    padding-bottom: 63.12%;
    position: relative;
}

.ark-home-hero .home-header-img .inner {
    padding-bottom: 51.57%;
}

.ark-home-hero .wp-block-group__inner-container .home-header-img img,
.ark-feature-header img {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0;
    transition:
        transform 0.75s ease,
        opacity 1s ease;
    transform: translateY(50px);
}

.ark-home-hero .wp-block-group__inner-container .home-header-img img.visible,
.ark-feature-header img.visible {
    opacity: 1;
    transform: translateY(0px);
}

.ark-home-hero .wp-block-group__inner-container .home-header-img .caption,
.ark-feature-header .caption {
    position: absolute;
    width: 100%;
    bottom: 0px;
    top: 0px;
    pointer-events: none;
}

.ark-feature-header .caption p {
    position: absolute;
    bottom: 15px;
    right: 30px;
    color: #fff;
    z-index: 2;
    font-size: 16px;
    line-height: 1.4em;
    pointer-events: visible;
}

.ark-feature-header .caption p a {
    border-bottom: 1px solid #fff;
}

.ark-feature-header .caption p a:hover {
    border-bottom: 1px solid #000;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: none;
    z-index: 2;
    font-size: 16px;
    line-height: 1.4em;
    text-align: right;
    padding: 0px 30px 15px 0px;
}

.ark-home-hero
    .wp-block-group__inner-container
    .home-header-img
    .caption:before,
.ark-feature-header .caption:before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background-image: url("/wp-content/themes/arkitektura22/images/product-gradient.png");
    background-repeat: repeat-x;
    background-position: left 30px;
    background-size: 100% 100%;
    mix-blend-mode: multiply;
    opacity: 0.9;
    z-index: 1;
}

.ark-home-hero .wp-block-group__inner-container .home-header-img p {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    margin: 0px;
}

.ark-home-hero .wp-block-group__inner-container .home-header-img .caption p {
    bottom: 15px;
    right: 30px;
}

/*.ark-home-hero .wp-block-group__inner-container .home-header-img::before,*/
.ark-feature-header.has-caption .inner::before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background-image: url("/wp-content/themes/arkitektura22/images/product-gradient.png");
    background-repeat: repeat-x;
    background-position: left 30px;
    background-size: 100% 100%;
    mix-blend-mode: multiply;
    opacity: 0.9;
    transition: all 0.2s ease;
    z-index: 1;
    pointer-events: none;
}

.ark-home-hero .wp-block-group__inner-container .home-header-img p a {
    background-size: 100% 1px;
}

.ark-home-section .wp-block-columns {
    margin-bottom: 0px;
}

.ark-home-section .wp-block-columns.ark-reverse {
    flex-direction: row-reverse;
}

.ark-home-section .wp-block-columns.ark-reverse h2 {
    text-align: left;
}

.ark-home-section
    .wp-block-columns.ark-reverse
    .wp-block-column:nth-child(2)
    .wp-block-button,
.ark-home-section
    .wp-block-columns.ark-reverse
    .wp-block-column:nth-child(2)
    .wp-block-button
    .wp-block-button__link {
    text-align: left;
}

.ark-home-section
    .wp-block-columns.ark-reverse
    .wp-block-column:last-child
    .wp-block-buttons
    .ark-active-indicator {
    left: -20px;
    right: auto;
}

.ark-home-section .wp-block-group__inner-container {
    width: 95%;
    margin: 0px auto;
    max-width: var(--ark-max-width);
    position: relative;
}

.ark-home-section ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.005em;
}

.ark-home-section .wp-block-buttons {
    position: relative;
}

.ark-home-section .wp-block-buttons .ark-active-indicator {
    min-height: 30px;
    width: 1px;
    position: absolute;
    left: -20px;
    top: 0px;
    border-left: 1px solid var(--ark-grey);
    transition: all 0.5s ease-out;
}

.ark-home-section .wp-block-button {
    padding: 0px;
    border: 0px;
    text-align: right;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.005em;
    width: 100%;
    margin-bottom: 30px;
    opacity: 1;
    transition: 0.2s opacity linear;
    position: relative;
}

.ark-home-section.ark-assembly .wp-block-button {
    margin-bottom: 0px;
    text-transform: uppercase;
}

.ark-home-section.ark-vs.ark-assembly .wp-block-button {
    margin-bottom: 30px;
}

.ark-home-section .wp-block-button.active {
    /*opacity: .5;*/
    color: var(--ark-grey);
}

.ark-home-section .wp-block-button__link {
    border: 0px !important;
    text-align: right;
    padding: 0px !important;
    border: 0px;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.005em;
}

.ark-home-section
    .is-style-outline.active
    > .wp-block-button__link:not(.has-text-color) {
    color: var(--ark-grey);
}

.ark-home-section
    .is-style-outline
    > .wp-block-button__link:not(.has-text-color):hover {
    color: var(--ark-grey);
}

.ark-home-section
    .is-style-outline
    > .wp-block-button__link:not(.has-text-color) {
    color: #a8aaad;
}

.ark-home-section ul li {
    margin-bottom: 50px;
    opacity: 0.5;
    position: relative;
}

.ark-home-section ul li:before,
.ark-home-section .wp-block-button:before {
    display: none;
    letter-spacing: 0.005em;
}

.ark-home-section ul li.active {
    opacity: 1;
}

/*.ark-home-section ul li.active:before,
.ark-home-section .wp-block-button.active:before
{
  display: block;
  content: '';
  border-left: 1px solid #000;
  position: absolute;
  left: -20px;
  top: 0px;
  height: 100%;
}*/

/*.ark-home-section .wp-block-column:last-child,
.ark-home-section .wp-block-column:last-child .wp-block-button,
.ark-home-section .wp-block-column:last-child .wp-block-button__link
{
  text-align: right;
}*/

.ark-home-section .wp-block-column:last-child .wp-block-button.active:before {
    right: -20px;
    left: auto;
}

.ark-home-section
    .wp-block-column:last-child
    .wp-block-buttons
    .ark-active-indicator {
    right: -20px;
    left: auto;
}

.ark-home-section ul li:last-child {
    margin-bottom: 0px;
}

.ark-home-section .flickity-viewport {
    width: 100%;
    height: 0px;
    padding-bottom: 62.69%;
}

.ark-home-section .flickity-viewport .wp-block-group__inner-container {
    width: 100%;
}

.ark-home-section .wp-block-gallery .wp-block-image {
    width: 100%;
    height: 100%;
    /*padding-bottom: 68.42%;*/
    position: relative;
}

.ark-home-section .wp-block-gallery .wp-block-image img,
.ark-home-section
    .wp-block-gallery.has-nested-images
    figure.wp-block-image
    img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0px;
    left: 0px;
    margin-bottom: 0px;
}
.ark-home-section
    .wp-block-gallery.has-nested-images:not(.is-cropped)
    figure.wp-block-image:not(#individual-image)
    img {
    margin-bottom: 0px;
}

@media all and (max-width: 900px) {
    .ark-home-section .wp-block-button__link {
        font-size: 15px;
        line-height: 22px;
    }

    .ark-home-section .wp-block-columns {
        margin-bottom: 0px;
        display: block;
    }

    .ark-home-section .wp-block-button {
        display: none;
    }

    .ark-home-section .wp-block-button.active {
        display: block;
        opacity: 1;
    }

    .ark-home-section h2 {
        margin: 20px 0px;
    }

    .ark-home-section .wp-block-button__link {
        line-height: 24px;
    }
}

@media all and (max-width: 767px) {
    .home-header-img.mobile-exists .inner {
        padding-bottom: 160%;
    }

    .ark-active-indicator {
        display: none;
    }

    .flickity-prev-next-button.previous {
        width: 20px;
        height: 20px;
        left: 10px !important;
    }

    .flickity-prev-next-button.next {
        width: 20px;
        height: 20px;
        right: 10px !important;
    }

    .ark-feature-header .caption p {
        font-size: 10px;
        line-height: 1.4em;
    }

    .ark-home-hero
        .wp-block-group__inner-container
        .home-header-img
        .caption
        p {
        right: 10px;
        bottom: 10px;
    }

    .ark-home-section
        .wp-block-gallery.has-nested-images
        figure.wp-block-image
        figcaption,
    .ark-home-section .ark-slider-caption {
        display: none;
    }
}

/* End of Home Page */

/* Brands Page */

.brands {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0px 2.5%;
    margin: 0px -8px;
}

.one-col {
    flex-basis: 33.3333%;
    position: relative;
    margin-bottom: 16px;
    padding: 0px 8px;
    box-sizing: border-box;
}

.one-col:first-child {
    margin-left: 0px;
}

.brand .img-holder {
    position: relative;
    height: 0px;
    padding-bottom: 72%;
    overflow: hidden;
}

.brand .img-holder .inner {
    width: 100%;
    overflow: hidden;
    height: 0px;
    position: relative;
    padding-bottom: 72.084%;
}

.brand .logo-background {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    background-color: #52555b;
    background-color: rgba(82, 85, 91, 0.4);
    mix-blend-mode: multiply;
    opacity: 1;
    transition: all 0.2s ease;
}

.brand:hover .logo-background {
    background-color: rgba(82, 85, 91, 0.7);
}

.brand .logo {
    background-color: transparent;
    opacity: 1;
    transition: opacity 0.2s ease;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    text-align: center;
    max-width: none;
}

.brand .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.brand .logo img {
    margin: 0px auto;
    max-width: 150px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.brand .logo.abcd img {
    max-width: 225px;
}

.brand .logo.yamagiwa img {
    max-width: 170px;
}

.brand .logo.ruckstuhl img {
    max-width: 190px;
}

@media (max-width: 767px) {
    .brands {
        margin: 0px auto;
        padding: 0px;
        width: var(--ark-container-width);
    }

    .brands .one-col {
        padding: 0px;
    }

    .one-col:first-child {
        margin-left: auto;
    }
}

/* End Brands Page */

.ark-page-header {
    /*background-color: var(--ark-grey);
  color: #FFF;*/
    border-bottom: 1px solid #dedfe0;
    text-align: center;
    padding: 65px 0px 65px 0px;
    box-sizing: border-box;
    font-size: 22px;
    line-height: 1.6em;
    margin-bottom: 65px;
}

.ark-page-header.no-padding
{
    padding: 0px 0px 65px 0px;
}

.ark-page-header .ark-feature-header {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto 65px auto;
}

.ark-page-header.no-border {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.ark-page-header figure {
    width: 95%;
    margin: 0px auto 65px auto;
}

.ark-page-header h1 {
    text-transform: none;
    padding: 30px 0px;
    margin-bottom: 40px;
    font-size: 54px;
    border-width: 1px 0px;
    border-style: solid;
    border-color: #dedfe0;
    font-weight: 300;
}

.ark-page-header h3 {
    max-width: var(--ark-text-width);
    margin: 0px auto 1em auto;
}

.ark-page-header p {
    max-width: var(--ark-text-width);
    margin: 0px auto 1em auto;
}

.ark-page-header p:last-child {
    margin-bottom: 0px;
}

.ark-page-header .wp-block-group__inner-container {
    margin: 0px auto;
}

.ark-page-header h2 {
    text-transform: none;
}

.ark-page-header h3 {
    text-transform: none;
    font-family: "AvenirWeb", serif;
}

.ark-form-holder {
    max-width: 600px;
    width: 95%;
    margin: 0px auto;
}

.ark-vs-list {
    margin: 0px auto 30px auto;
    width: var(--ark-container-width);
    text-align: center;
    font-size: 15px;
    line-height: 25px;
}

.ark-vs-list .wp-block-columns {
    gap: 10px;
}

.ark-vs-list .wp-block-image {
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.ark-vs-list .wp-block-image:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(82, 85, 91, 0);
    mix-blend-mode: multiply;
    opacity: 1;
    transition: all 0.2s ease;
    z-index: 2;
    display: block;
    content: "";
    pointer-events: none;
}

.ark-vs-list .wp-block-image:hover:before {
    background-color: rgba(82, 85, 91, 0.1);
}

.ark-vs-list .wp-block-image img {
    transform: scale(1) translate3d(0, 0px, 0);
    transition:
        opacity 1s linear,
        transform 1.7s cubic-bezier(0.1, 0.6, 0.4, 1);
}

.ark-vs-list .wp-block-image:hover img {
    transform: scale(1.01) translate3d(0, 0px, 0);
}

.ark-showroom-link {
    margin: 0px auto 30px auto;
    width: var(--ark-container-width);
}

.ark-showroom-link figure {
    position: relative;
}

.ark-showroom-link figcaption {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 0px;
    font-size: 36px;
    padding: 30px 30px 30px 0px;
    width: 38%;
    text-align: right;
}

.ark-showroom-link figure:before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background-image: url("/wp-content/themes/arkitektura/images/product-gradient.png");
    background-repeat: repeat-x;
    background-position: left 30px;
    background-size: 100% 100%;
    mix-blend-mode: multiply;
    opacity: 0.9;
    transition: all 0.2s ease;
    pointer-events: none;
}

.ark-showroom-link a {
    border-bottom: 0px;
    color: #fff;
}

@media all and (max-width: 900px) {
    .one-col {
        flex-basis: 50%;
    }

    .ark-page-header p {
        max-width: 70%;
    }

    .ark-page-header figure {
        margin-bottom: 50px;
        width: var(--ark-container-width);
    }
}

@media all and (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    br.mobile-only {
        display: inline-block;
    }

    .one-col {
        flex-basis: 100%;
    }

    .ark-form-holder {
        width: var(--ark-container-width);
    }

    .ark-page-header {
        font-size: 18px;
        padding-top: 0px;
        margin-bottom: 32px;
    }

    .ark-page-header h1 {
        font-size: 30px;
        line-height: 1.2em;
        margin-bottom: 30px;
    }

    .ark-page-header p {
        width: var(--ark-container-width);
        max-width: none;
    }

    .post-7550 .entry-content ul {
        padding: 0;
        width: var(--ark-container-width);
        margin: 0px auto;
    }

    .ark-showroom-link figcaption {
        font-size: 18px;
        width: 45%;
        padding: 20px 0px;
    }

    .ark-vs-list {
        margin-bottom: 0px;
    }

    .ark-vs-list .wp-block-column {
        margin-bottom: 70px;
    }

    .ark-vs-list .wp-block-column:last-of-type {
        margin-bottom: 0px;
    }

    .ark-vs-list .wp-block-columns {
        margin-bottom: 0px;
        gap: 0px;
    }

    .ark-vs-list .wp-block-column p:last-child {
        margin-bottom: 0px;
    }
}

p.architonic_link {
    font-size: 31px;
    font-weight: 900;
    color: #52555b;
    letter-spacing: 0.86px;
    line-height: 42px;
    text-transform: uppercase;
    margin-top: 20px;
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 20px auto 0px auto;
}

p.architonic_link a {
    color: #52555b;
    border-bottom: 0px;
    position: relative;
    display: inline-block;
    height: 100px;
}

p.architonic_link a::after {
    display: block;
    content: " ";
    background-image: url("/wp-content/themes/arkitektura/images/right@1.5x.svg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 31px;
    height: 31px;
    position: absolute;
    left: 0px;
    bottom: -20px;
    transition: 0.2s all ease;
    transform: translateX(0px);
}

p.architonic_link a:hover::after {
    transform: translateX(10px);
}

@media (max-width: 767px) {
    p.architonic_link {
        width: var(--ark-container-width);
        margin: 0px auto;
        font-size: 28px;
    }
}

/* Virtual Showroom Page */

.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0px -8px;
}

body.single-rooms .special-links,
body.single-rooms header.main-header nav,
body.term-ark-floor-sample-sale .special-links,
body.term-ark-floor-sample-sale header.main-header nav,
body.term-bb-floor-sample-sale .special-links,
body.term-bb-floor-sample-sale header.main-header nav,
body.page-id-10463 .special-links,
body.page-id-10463 header.main-header nav {
    display: none;
}

body.single-rooms .logo,
body.term-ark-floor-sample-sale .logo,
body.term-bb-floor-sample-sale .logo,
body.page-id-10463 .logo {
    margin-bottom: 0px;
}

body.single-rooms,
body.single-rooms.admin-bar,
body.term-ark-floor-sample-sale,
body.term-ark-floor-sample-sale.admin-bar,
body.term-bb-floor-sample-sale,
body.term-bb-floor-sample-sale.admin-bar,
body.page-id-10463,
body.page-id-10463.admin-bar {
    /*margin: 300px 0 0;*/
}

@media all and (max-width: 767px) {
    body.single-rooms,
    body.single-rooms.admin-bar,
    body.term-ark-floor-sample-sale,
    body.term-ark-floor-sample-sale.admin-bar,
    body.term-bb-floor-sample-sale,
    body.term-bb-floor-sample-sale.admin-bar,
    body.page-id-10463,
    body.page-id-10463.admin-bar {
        margin: 0px 0 0;
    }
}

@media all and (max-width: 700px) {
    body.single-rooms,
    body.single-rooms.admin-bar,
    body.term-ark-floor-sample-sale,
    body.term-ark-floor-sample-sale.admin-bar,
    body.term-bb-floor-sample-sale,
    body.term-bb-floor-sample-sale.admin-bar,
    body.page-id-10463,
    body.page-id-10463.admin-bar {
        margin: 0px 0 0;
    }
}

@media all and (max-width: 500px) {
    body.single-rooms,
    body.single-rooms.admin-bar,
    body.term-ark-floor-sample-sale,
    body.term-ark-floor-sample-sale.admin-bar,
    body.term-bb-floor-sample-sale,
    body.term-bb-floor-sample-sale.admin-bar,
    body.page-id-10463,
    body.page-id-10463.admin-bar {
        margin: 0px 0 0;
    }
}

/* Sale Home Page */

.ark-sale-notice {
    background-color: var(--ark-grey);
    color: #fff;
    padding: min(1.95vw, 34px);
    padding-bottom: min(1.67vw, 30px);
    gap: min(1.95vw, 34px);
}

.ark-sale-notice h2 {
    font-weight: 800;
    font-size: min(3.32vw, 56px);
    line-height: 1em;
    margin: 0px;
    text-align: left;
}

.ark-sale-notice .ark-heading-col {
    text-align: left;
}

.ark-sale-notice .wp-block-column {
    flex-basis: 38% !important;
    border-right: 0px solid #fff;
    padding-right: min(1.95vw, 34px);
    padding-right: 34px;
    position: relative;
    font-size: min(1.337vw, 25px);
    /*font-size: 1.337vw;  */
    line-height: 1.6em;
}

.ark-sale-notice .wp-block-column:after {
    content: "";
    width: 1px;
    border-right: 1px solid #fff;
    display: block;
    position: absolute;
    top: 0;
    right: 0px;
    height: 100%;
}

.ark-sale-notice .wp-block-column:first-of-type {
    flex-basis: 18% !important;
}

.ark-sale-notice .wp-block-column:last-of-type {
    padding-right: 0px;
    border-right: 0px;
}

.ark-sale-notice .wp-block-column:last-of-type:after {
    display: none;
}

.ark-sale-notice .ark-heading-col p {
    font-weight: 800;
    font-size: min(1.357vw, 26px);
    line-height: 36px;
}

.ark-home-section .wp-block-columns.ark-sale-notice {
    display: flex;
}

@media (max-width: 781px) {
    .ark-sale-notice h2 {
        font-size: 3.832vw;
        line-height: 1em;
    }

    .ark-sale-notice .ark-heading-col p {
        font-size: 2.4vw;
        line-height: 1.4em;
    }

    .ark-sale-notice .wp-block-column {
        font-size: 2vw;
        line-height: 1.6em;
    }

    .ark-home-section .wp-block-columns.ark-sale-notice {
        flex-wrap: nowrap !important;
        width: 134.4%;
    }

    .ark-home-section .wp-block-group__inner-container {
        overflow: auto;
    }

    .wp-block-columns.ark-sale-notice:not(.is-not-stacked-on-mobile)
        > .wp-block-column {
        flex-basis: 38% !important;
    }

    .wp-block-columns.ark-sale-notice:not(.is-not-stacked-on-mobile)
        > .wp-block-column.ark-heading-col {
        flex-basis: 18% !important;
    }
}

.ark-full-width {
    width: 100%;
    max-width: none;
}

.ark-sale-content {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto 65px auto;
}

.ark-sale-content.center-thumbs .wp-block-group__inner-container {
    max-width: none;
    margin: 0px auto;
}

.ark-sale-content.center-thumbs .kb-gallery-type-grid {
    justify-content: center;
}

.ark-sale-content .kadence-blocks-gallery-item__caption {
    font-weight: 500;
}

.ark-heading {
    text-align: center;
    border-width: 1px 0px;
    border-style: solid;
    border-color: #dedfe0;
    margin-bottom: 30px;
}

.ark-heading .wp-block-group__inner-container {
    max-width: var(--ark-text-width);
    margin: 0px auto;
}

.ark-heading h2 {
    padding: 30px 0px 27px 0px;
    margin: 0px;
    font-size: 22px;
    line-height: 1.6em;
}

.ark-sale-text {
    text-align: center;
    padding: 0px 0px 65px 0px;
    padding-bottom: 65px;
    box-sizing: border-box;
    font-size: 22px;
    line-height: 1.6em;
    margin: 30px auto 0px auto;
    border-bottom: 1px solid #dedfe0;
}

.ark-sale-text.no-border {
    border-bottom: 0px;
}

.ark-sale-text p {
    max-width: 60%;
    margin: 0px auto 1em auto;
}

.ark-sale-text p:last-child
{
    margin-bottom: 0px;
}

@media (max-width: 900px) {
    .ark-sale-text p {
        max-width: 70%;
    }

    .ark-heading h2 {
        width: 90%;
        margin: 0px auto;
    }
}

@media (max-width: 767px) {
    .ark-full-width .wp-block-group__inner-container {
        width: var(--ark-container-width);
        margin: 0px auto;
    }

    .ark-sale-text {
        font-size: 18px;
        line-height: 1.6em;
    }

    .ark-heading h2 {
        width: 100%;
        font-size: 20px;
    }

    .ark-sale-text p {
        max-width: none;
        width: var(--ark-container-width);
    }

    .ark-sale-content .vs-rooms.products .product.one-col {
        flex-basis: 100%;
    }

    .ark-heading .wp-block-group__inner-container {
        width: var(--ark-container-width);
        max-width: none;
        margin: 0px auto;
    }

    .ark-sale-content.center-thumbs .wp-block-group__inner-container {
        max-width: none;
    }
}

body.page-id-16152 .ark-page-header {
    margin-bottom: 65px;
}

body.page-id-16152 .ark-page-header .ark-feature-header {
    margin-bottom: 0px;
}

/* New Home Page */
.ark-home-block {
    width: 95%;
    margin: 0 auto;
    max-width: var(--ark-max-width);
    position: relative;
}

.ark-home-block .wp-block-column {
    position: relative;
    overflow: hidden;
}

.ark-home-block p {
    font-family: 'AvenirCondensedWeb', "Avenir Next Condensed", sans-serif;
    font-size: 50px;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    line-height: 100%;
    letter-spacing: 0px;
    font-weight: 400;
    z-index: 2;
}

.ark-home-block p a {
    text-decoration: none;
}

.ark-home-block p a:hover {
    color: #fff;
}

.ark-image-block .wp-block-column,
.ark-home-events .wp-block-column
{
    opacity: 0;
    transform: scale(.95) translate3d(0,25px,0);
    transition: opacity .3s linear, transform 800ms ease 0ms;
}

.ark-image-block .wp-block-column.visible,
.ark-home-events .wp-block-column.visible
{
    opacity: 1;
    transform: scale(1) translate3d(0,0px,0);
}

.ark-image-block figure,
.ark-home-events figure 
{
    opacity: 1;
    position: relative;
    
    transition: opacity .3s linear, transform 800ms ease 0ms;
    position: relative;
    height: 0px;
    overflow: hidden;
    padding-bottom: 62.75%;
}

.ark-home-events figure
{
    padding-bottom: 100%;
}

.ark-image-block.ark-home-2-col figure
{
    padding-bottom: 130%;
}

.ark-image-block figure.visible,
.ark-home-events figure.visible
{
    transform: scale(1) translate3d(0,0px,0);
    opacity: 1;
}

.ark-image-block figure img
{
    transform: scale(1.025) translate3d(0px, 0px, 0px);
    transition: transform 1.5s ease-out, opacity .3s linear;
    opacity: 0;
}

.ark-image-block figure img.visible
{
    opacity: 1;
}

.ark-home-block figure.wp-block-futureperfekt-picture-element
{
    margin: 0px;
}

.ark-image-block figure::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: linear-gradient(
        360deg,
        rgba(31, 31, 31, 0.75),
        rgb(120, 120, 120, 0.75) 50%,
        transparent 100%
    );
    z-index: 1;
    mix-blend-mode: multiply;
    transition: opacity 1.5s linear;
    opacity: 0;
    pointer-events: none;
}


.ark-image-block .wp-block-column:hover figure::before {
    opacity: 0;
}

.ark-image-block .wp-block-column:hover figure img
{
    transform: scale(1) translate3d(0,0px,0);
}


.ark-home-block .ark-image-block p a {
    border-bottom: 0px;
}

.ark-home-block .wp-block-buttons {
    position: absolute;
    bottom: 60px;
    left: 30px;
    width: 250px;
    text-transform: uppercase;
    z-index: 2;
}

.ark-home-block .wp-block-buttons .wp-block-button {
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: transparent;
    border: 2px solid #FFF;
    transition: all .2s linear;
    transition-delay: .2s;
    padding: 0 22px;
}

.ark-home-block .wp-block-buttons .wp-block-button:hover
{
    border-color: #000;
}


.ark-home-block .wp-block-button::before
{
    content: '';
    background: #000;
    width: 120%;
    height: 0;
    position: absolute;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 0%;
    transform: translate3d(0,68%,0) scale3d(0,0,0);
}

.ark-home-block .wp-block-button:hover::before {
  transform: translate3d(0,0,0) scale3d(1,1,1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.ark-home-block .wp-block-button::after
{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translate3d(0,-100%,0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.ark-home-block .wp-block-button:hover::after {
  transform: translate3d(0,0,0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.ark-home-block .wp-block-button__link 
{
    display: block;
    position: relative;
    /*mix-blend-mode: difference;*/
    z-index: 10;
    background-color: transparent;
    width: 100%;
    border-radius: 0px;
    border-bottom: none;
    color: #FFF;
    background-image: none;
    display: block;
    position: relative;
    z-index: 10;
    padding: 19px 0px 18px 0px;
    font-size: 15px;
    font-weight: 500;
    box-sizing: border-box;
    transition:
        color 0.3s linear,
        background-color 0.3s linear;
}


.ark-home-block .wp-block-button:hover .wp-block-button__link
{
    color: #FFF;
}


.ark-home-block .wp-block-button:hover .wp-block-button__link {
        /*background-color: rgba(0, 0, 0, .25);
        background-blend-mode: multiply;*/
        animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
        color: #FFF;
    }


@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0,-105%,0) scale3d(1,2,1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0,100%,0) scale3d(1,2,1);
        opacity: 0;
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.ark-home-block .wp-block-columns {
    margin-bottom: 14px;
    gap: 14px;
}

.ark-home-block .wp-block-columns.ark-home-events a:hover {
    color: #000;
}

.ark-home-block .wp-block-columns.ark-home-events a
{
    background-repeat: no-repeat,no-repeat;
    transition: background-position 1s ease, color 1s linear;
    background-image: linear-gradient(#FFF, #FFF), linear-gradient(#000, #000), linear-gradient(#000, #000);
    background-size: 100px 1px, 100% 1px, 0 1px;
    background-position: calc(100px * -1) 100%, 100% 100%, 0 100%;
    padding-bottom: 2px;
    border-bottom: 0px;
}

.ark-home-block .wp-block-columns.ark-home-events a:hover
    {
        background-size: 100px 1px, 0 1px, 100% 1px;
        background-position: calc(100% + 100px) 100%, 100% 100%, 0 100%;
    }


.ark-home-block .wp-block-columns.ark-home-events figure {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.ark-home-block .wp-block-columns.ark-home-events .wp-block-column figure::after
{
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient( 360deg, rgba(31, 31, 31, 0.75), rgb(120, 120, 120, 0.75) 50%, transparent 100% );
    opacity: 0;
    mix-blend-mode: multiply;
    transition: opacity 1.5s linear;
    pointer-events: none;
}

.ark-home-block .wp-block-columns.ark-home-events .wp-block-column:hover figure::after
{
    opacity: .4;
}

.ark-home-block .wp-block-columns.ark-home-events figure img
{
    transform: scale(1.025) translate3d(0px, 0px, 0px);
    transition: transform 1.5s ease, opacity .3s linear;
}

.ark-home-block .wp-block-columns.ark-home-events .wp-block-column:hover figure img
{   
    transform: scale(1) translate3d(0px, 0px, 0px);
}

.ark-home-block .wp-block-columns.ark-home-events h2 {
    color: #000;
    font-size: 23px;
    position: relative;
    text-transform: uppercase;
    font-family: 'AvenirCondensedWeb', "Avenir Next Condensed", sans-serif;
    text-align: center;
    font-weight: 400;
    width: 91%;
    margin: 0px auto 25px auto;
}

.ark-home-block .wp-block-columns.ark-home-events p {
    font-family: "AvenirWeb", "Avenir", sans-serif;
    font-size: 18px;
    color: #000;
    position: relative;
    top: auto;
    left: auto;
    text-transform: none;
    line-height: 1.4em;
    font-weight: 300;
    text-align: center;
    width: 91%;
    margin: 0px auto 1em auto;
}

@media all and (max-width: 1024px) {
    .ark-home-block .wp-block-columns.ark-home-events h2
    {
        font-size: 21px;
    }

    .ark-home-block .wp-block-columns.ark-home-events p
    {
        font-size: 14px;
    }
}

@media all and (max-width: 781px) {


    .ark-image-block figure
    {
        padding-bottom: 130.1%;
    }

    .ark-home-block .wp-block-columns {
        gap: 10px;
        margin-bottom: 10px;
    }

    .ark-home-block .wp-block-columns.ark-home-events {
        gap: 60px;
    }

    .ark-home-block .wp-block-columns.ark-home-events h2 {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .ark-home-block .wp-block-columns.ark-home-events p {
        font-size: 15px;
    }

    .ark-home-block p {
        font-size: 21px;
        top: 15px;
        left: 15px;
    }

    .ark-home-block .wp-block-buttons {
        width: 125px;
        font-size: 8px;
        left: 15px;
        bottom: 20px;
        line-height: 1.4em;
        padding: 0px 0px;
        box-sizing: border-box;
    }

    .ark-home-block .wp-block-buttons .wp-block-button
    {
        padding: 0px 3px;
    }

    .ark-home-block .wp-block-button__link {
        font-size: 8px;
        padding: 10px 0px;
    }

    .ark-image-block .wp-block-column figure::before {
        opacity: 0;
    }
}

/* End New Home Page */

/* Home Page */

body.page-id-10463 .kt-row-column-wrap {
    padding-top: 0px;
}

body.page-id-10463 h2 {
    margin-top: 0px;
}

span.half-width {
    width: 48%;
    display: inline-block;
}

#post-10463 p a:hover {
    color: #b3b3b3;
}

.ark-sale-images figure {
    background-color: #fff;
}

.ark-sale-images figure:hover {
    background-color: #d1d1d1;
    transition: all 0.2s linear;
}

.ark-showroom-title {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900;
}

.vs-rooms.products .product.one-col {
    flex-basis: 33.3333%;
}

.ark-showroom-title a {
    color: var(--ark-grey);
    position: relative;
}

.ark-showroom-title a:before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    transition: width 0.3s;
    border-bottom: 1px solid var(--ark-grey);
}

.ark-showroom-title a:hover:before {
    width: 100%;
}

.main-image-holder {
    position: relative;
    width: 100%;
}

.productButton {
    position: absolute;
    width: 4vw;
    height: 4vw;
    max-width: 60px;
    max-height: 60px;
    opacity: 1;
}

.productButton.active {
    z-index: 1;
}

.room-slides.hidden .productButton {
    opacity: 0;
}

.productButton .circle-blur {
    content: "";
    display: block;
    background-color: #fff;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0px;
    left: 0px;

    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.2s linear;
    box-shadow: 0px 0px 30px #fff;
}

.productButton.active .circle-blur {
    opacity: 1;
}

.productButton .circle {
    background-color: transparent;

    width: 81%;
    height: 81%;
    border-radius: 100%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.productButton .circle-spinner {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.3s infinite ease-in-out;
    animation: sk-scaleout 1.3s infinite ease-in-out;
    cursor: pointer;
    box-sizing: border-box;
    position: absolute;
}

.productButton .circle-spinner:nth-child(2) {
    animation-delay: 0.4s;
    border: 3px solid #f1954c;
}

.productButton .pending .circle-spinner {
    background-color: red; /*#ff8d00;*/
}

.productButton .pending .circle-spinner:nth-child(2) {
    border: 3px solid red;
}

@-webkit-keyframes circle-pulse {
    0% {
        border-color: #fff;
    }

    50% {
        border-color: #ff0a0a;
    }

    100% {
        border-color: #fff;
    }
}

@keyframes circle-pulse {
    0% {
        border-color: #fff;
    }

    50% {
        border-color: #ff0a0a;
    }

    100% {
        border-color: #fff;
    }
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    10% {
        -webkit-transform: scale(0.2);
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0.2);
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.productTitle {
    background: #fff;
    width: 215px;
    min-height: 120px;
    height: auto;
    box-sizing: border-box;
    padding: 18px 15px;
    position: absolute;
    border-radius: 15px;
    top: 50%;
    left: 60px;
    transition:
        opacity 0.2s ease-in,
        transform 0.2s ease-out;
    opacity: 0;
    transform: translateY(calc(-50% + 10px));
    pointer-events: none;
    z-index: 2;
    box-shadow:
        25px 25px 70px rgba(53, 53, 53, 0.5),
        -25px -25px 70px rgba(108, 108, 108, 0.5);
}

.productTitle::before {
    display: block;
    position: absolute;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    background-color: transparent;
    border-top: 10px solid transparent;
    border-right: 9px solid #fff;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.floor-sale .productTitle {
    padding: 15px;
    /*min-height: 0px;*/
}

.productButton.floor-sale .productTitle {
    text-transform: uppercase;
    font-size: 11.5px;
}

.floor-sale .product-links {
    position: relative;
    left: 0px;
    bottom: auto;
}

.floor-sale ul.product-links li:last-child {
    margin-right: 0px;
}

p.item-number {
    margin: 0px;
    text-transform: none;
    font-weight: 900;
}

.productTitle .sale-text {
    color: red;
    font-weight: 900;
}

.productButton.floor-sale .productTitle p.pending {
    color: red;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 1em;
}

.productButton.active .productTitle {
    opacity: 1;
    pointer-events: visible;
    transform: translateY(-50%);
}

.productTitle.left-side {
    right: 50px;
    left: auto;
}

.productTitle.left-side:before {
    left: auto;
    right: -19px;
    border-top: 10px solid transparent;
    border-right: 9px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 1);
    border-bottom: 10px solid transparent;
}

.productButton.active .productTitle.top-edge,
.productTitle.top-edge {
    bottom: auto;
    top: 160px;
    left: 0px;
}

.productTitle.top-edge:before {
    left: 26px;
    top: -20px;
    transform: translateX(-50%);
    background-color: transparent;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
    bottom: auto;
}

.productTitle.top-side {
    top: auto;
    bottom: -20px;
    left: 0px;
}

.productTitle.top-side:before {
    /*left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border-top: 10px solid transparent;
    border-right: 10px solid #FFF;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    bottom: auto;*/

    left: 20px;
    top: auto;
    /*transform: translateX(-50%);*/
    background-color: transparent;
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    bottom: -29px;
}

.productTitle.top-left {
    left: auto;
    right: 10px;
    top: auto;
    bottom: 0px;
}

.productTitle.top-left::before {
    left: auto;
    top: auto;
    bottom: -19px;
    right: 10px;
    transform: translateY(0px);
    border-top: 10px solid rgba(255, 255, 255, 0.95);
    border-right: 9px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.productTitle h2 {
    text-transform: uppercase;
    font-size: 11.5px;
    letter-spacing: 0.03px;
    margin: 0px 0px 20px 0px;
    line-height: 15px;
    font-weight: 900;
}

.floor-sale .productTitle h2 {
    margin-bottom: 1em;
}

.productTitle p {
    font-size: 10px;
    line-height: 14px;
}

.productButton.floor-sale .productTitle p.purchase-link {
    margin-top: 1em;
    margin-bottom: 0px;
}

.purchase-link a {
    font-weight: 300;
    font-size: 10px;
    line-height: 1.4em;
    text-transform: uppercase;
}

.featherlight.pending .purchase {
    display: none;
}

.featherlight.purchase .pending {
    display: none;
}

.featherlight.purchase .vs-modal h2,
.featherlight.pending .vs-modal h2 {
    max-width: none;
}

.vs-modal a.phone-number {
    font-weight: 900;
    color: var(--ark-grey);
}

.productButton.floor-sale .productTitle p {
    font-size: 11.5px;
    line-height: 15px;
    margin-bottom: 0.5em;
    margin-top: 0px;
}

ul.product-links {
    padding: 0px;
    margin: 0px;
    list-style: none;
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 10px;
    line-height: 1.4em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

ul.product-links li {
    display: inline-block;
    margin-right: 20px;
}

ul.product-links li a {
    border-bottom: 0px;
    text-decoration: underline;
    color: var(--ark-grey);
}

ul.product-links li a:before {
    border-bottom: 0px;
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    position: absolute;
    width: 100%;
    top: 0px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 0px;
    transform: translateY(4px);
    font-weight: 900;
    text-transform: uppercase;
}

.room-slides {
    position: relative;
    width: 100%;
    background: transparent;
    border: 0px;
    /*overflow: hidden;*/
}

.room-slides.hidden {
    display: block;
}

.wait-bounce {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffaf31;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.room-slides .main-image-holder {
}

.room-slides ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.room-slides .img-container {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 62.322%;
    transition: opacity 0.2s;
    opacity: 1;
}

.room-slides.hidden .img-container {
    opacity: 0;
}

.room-slides .img-container img.ark-lazy {
    opacity: 0;
    transition: opacity 0.2s;
}

.room-slides .img-container img.ark-lazy.visible {
    opacity: 1;
}

.room-slides .spinner {
    opacity: 0;
    z-index: 10;
    top: 45%;
    pointer-events: none;
}

.room-slides.hidden .spinner {
    opacity: 1;
    pointer-events: visible;
}

.room-slides .flex-direction-nav {
    height: 40px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-transform: uppercase;
    font-size: 13px;
}

.room-slides.flexslider .flex-direction-nav .flex-prev {
    left: 0px;
}

.room-slides.flexslider .flex-direction-nav a.flex-prev:before {
    content: " ";
    display: inline-block !important;
    position: relative;
    width: 30px;
    height: 20px;
    margin-right: 10px;
    background-image: url("images/rooms/left@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
}

.room-slides.flexslider .flex-direction-nav .flex-next {
    right: 0px;
}

.room-slides.flexslider .flex-direction-nav a.flex-next:after {
    content: " ";
    display: inline-block !important;
    position: relative;
    width: 30px;
    height: 20px;
    margin-left: 10px;
    background-image: url("images/rooms/right@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
}

.room-slides.flexslider .flex-direction-nav a {
    width: auto;
}

.ark-product-title-holder {
    overflow: hidden;
    /*padding-bottom: 40px;*/
    position: relative;
}

.image-info {
    padding: 12px 0px;
    box-sizing: border-box;
    height: 22px;
    position: relative;
    width: 100%;
    top: 100%;
    box-sizing: border-box;
    /*transform: translateY(-30px);*/
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.image-info p.next-post {
    position: absolute;
    top: 5px;
    right: 0px;
    height: 100%;
    margin: 0px;
}

.image-info p.prev-post {
    position: absolute;
    top: 5px;
    left: 0px;
    height: 100%;
    margin: 0px;
}

.image-info a {
    font-size: 13px;
    line-height: 13px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    text-transform: uppercase;
    color: var(--ark-grey);
    letter-spacing: 0.5px;
    border-bottom: 0px;
}

.image-info a:before {
    border-bottom: 0px;
}

.image-info .next-post a {
    margin-right: 25px;
}

.image-info .next-post a:after {
    content: " ";
    display: inline-block !important;
    position: absolute;
    right: -25px;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background-image: url("images/rooms/right@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
    transform: translateX(0px);
    transition: transform 0.2s ease;
}

.image-info .next-post a:hover:after {
    transform: translateX(10px);
}

.image-info .next-post a:after {
    content: " ";
    display: inline-block !important;
    position: absolute;
    right: -25px;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background-image: url("images/rooms/right@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
    transform: translateX(0px);
    transition: transform 0.2s ease;
}

.image-info .next-post a:hover:after {
    transform: translateX(10px);
}

.image-info .next-post a:before {
    border-bottom: 1px solid var(--ark-grey);
    width: 0px;
    bottom: -4px;
}

.image-info .next-post a:hover:before {
    width: 100%;
}

.image-info .prev-post a {
    margin-left: 25px;
}

.image-info .prev-post a:before {
    content: " ";
    display: inline-block !important;
    position: absolute;
    left: -25px;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-image: url("images/rooms/left@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
    border-bottom: 0px;
    transform: translateX(0px);
    transition: transform 0.2s ease;
}

@media (max-width: 767px) {
    .image-info .prev-post a:before,
    .image-info .next-post a:after {
        width: 32px;
        height: 32px;
        background-size: 16px auto;
    }
}

.image-info .prev-post a:hover:before {
    transform: translateX(-10px);
}

.image-info .prev-post a:after {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    right: 0;
    bottom: -4px;
    width: 0%;
    transition: width 0.3s;
    border-bottom: 1px solid var(--ark-grey);
}

.image-info .prev-post a:hover:after {
    width: 100%;
}

.center-title {
    display: none;
}

a.breadcrumb-icon {
    border-bottom: 0px;
}

a.breadcrumb-icon img {
    width: 20px;
    display: inline-block;
    margin-right: 5px;
    opacity: 0.6;
    transition: opacity 0.2s;
    position: relative;
    top: 1px;
}

a.breadcrumb-icon.floor-sale img {
    width: 40px;
}

a.breadcrumb-icon img:hover {
    opacity: 1;
}

a.breadcrumb-icon:before {
    display: none;
}

.vs-modal {
    max-width: 540px;
    width: 90%;
    display: none;
    text-align: center;
    margin: 55px auto 0px auto;
    padding: 0px 15px 20px 15px;
    color: var(--ark-grey);
}

/*.vs-modal h2
{
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.4px;
    max-width: 380px;
    margin: 0px auto 10px auto;
    color: var(--ark-grey);
}*/

@media all and (max-width: 767px) {
    .room-breadcrumb {
        width: var(--ark-container-width);
        margin: 0px auto;
    }

    .room-slides {
        width: var(--ark-container-width);
        margin: 0px auto;
    }

    .productButton {
        transform: translate(-10px, -10px);
    }

    .section-title h2,
    .image-info a {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .section-title h2 {
        transform: translateY(0px);
    }

    .image-info {
        height: 45px;
        bottom: -10px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .section-title {
        transform: translateY(0px);
        line-height: 1.4em;
        margin-top: 10px;
    }

    .image-info .next-post a,
    .image-info .prev-post a {
        top: 0px;
        transform: translateY(-7px);
    }

    .image-info p.next-post,
    .image-info p.prev-post {
        height: auto;
        top: 3px;
        transform: translateY(0px);
        margin: 10px 0px 0px 0px;
    }

    .products {
        margin: 0px auto;
    }
}

@media all and (max-width: 450px) {
    .image-info a {
        top: auto;
        transform: translateY(0px);
    }

    .image-info p.prev-post,
    .image-info p.next-post {
        height: auto;
        line-height: 27px;
    }

    .image-info p.next-post a:after,
    .image-info .prev-post a:before {
        top: -3px;
    }
}

@media all and (max-width: 450px) {
    ul.product-links {
        text-transform: uppercase;
    }

    .center-title {
        display: block;
        top: auto;
        left: 50%;
        bottom: 20px;
        z-index: 2;
        background-color: #fff;
        transform: translate(-50%, 0%);
        pointer-events: none;
        text-transform: uppercase;
    }
    .center-title:before {
        left: 50%;
        top: auto;
        bottom: -19px;
        transform: translateX(-50%);
        border-top: 10px solid #fff;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .productButton .circle {
        width: 100%;
        height: 100%;
    }

    .productButton {
        width: 30px;
        height: 30px;
        /*transform: translate(-5px, -23px);*/
    }

    .center-title.visible {
        opacity: 1;
        pointer-events: visible;
    }

    .productButton.active .productTitle {
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
    }

    .productButton .productTitle {
        display: none;
    }

    .productTitle {
        box-shadow:
            16px 16px 25px rgba(53, 53, 53, 0.5),
            -16px -16px 25px rgba(108, 108, 108, 0.5);
    }
}

@media all and (pointer: none) {
    .image-info .prev-post a:hover:before,
    .image-info .next-post a:hover:after {
        transform: translateX(0px);
    }
}

@media all and (pointer: coarse) {
    .image-info .prev-post a:hover:before,
    .image-info .next-post a:hover:after {
        transform: translateX(0px);
    }
}

/* End of Virtual Showroom Page */

/* Products Display */

.product .img-holder {
    position: relative;
}

.product .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(82, 85, 91, 0);
    mix-blend-mode: multiply;
    opacity: 1;
    transition: all 0.2s ease;
    z-index: 2;
}

.product.square .overlay {
    pointer-events: none;
}

.product:hover .overlay {
    background-color: rgba(82, 85, 91, 0.1);
}

.product .caption-holder {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.product.square .caption-holder {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin-top: 15px;
}

.product .caption-overlay {
    display: none;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.product .caption-holder:before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    /*background-image: url('/wp-content/themes/arkitektura/images/product-gradient.png');
background-repeat: repeat-x;
background-position: left 30px;
background-size: 100% 100%;
mix-blend-mode: multiply;
opacity: .9;
transition: all .2s ease;*/
}

.product.square .caption-holder:before {
    display: none;
    background-image: none;
}

.product:hover .caption-holder:before {
    opacity: 0;
}

.product:hover .caption-holder {
}

.product .img-holder .inner {
    width: 100%;
    overflow: hidden;
    height: 0px;
    position: relative;
    padding-bottom: 72.084%;
}

.products.product-cat .product .img-holder .inner {
    padding-bottom: 68.92%;
}

.product.square .img-holder .inner {
    padding-bottom: 100%;
}

.product .img-holder .inner img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    transform: scale(1) translate3d(0, 25px, 0);
    transition:
        opacity 1s linear,
        transform 1.7s cubic-bezier(0.1, 0.6, 0.4, 1);
}

.product .img-holder .inner img.lazy-loaded {
    transform: scale(1) translate3d(0, 0px, 0);
    opacity: 1;
}

.product .img-holder .inner:hover img {
    transform: scale(1.01) translate3d(0, 0px, 0);
}

.product .caption {
    position: absolute;

    padding: 0px;
    bottom: 21px;
    left: 24px;
    right: 24px;
    margin: 0px;
    text-transform: uppercase;
    font-family: "Avenir-Medium";
    color: #fff;
    opacity: 1;
    z-index: 3;
    transition: opacity 0.2s ease;
    line-height: 1.2em;
}

.product.square .caption {
    position: relative;
    padding: 0;
    bottom: auto;
    left: auto;
    right: auto;
    text-transform: none;
    font-weight: 300;
    color: var(--ark-grey);
    font-size: 20px;
}

.product.square .caption .product-meta {
    margin: 15px 0px;
    font-size: 13px;
    height: 18px;
}

.product.square .product-designer {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
}

.product.square .product-price {
    display: block;
    /*position: absolute;*/
    top: 0px;
    right: 0px;
    /*text-align: right;*/
    font-size: 13px;
}

.product.square .caption .product-name {
    margin: 0px;
}

body.touch .product .caption {
    opacity: 1;
}

.product .caption a {
    color: #fff;
    text-decoration: none;
    border-bottom: 0px;
    background-image: none;
}

.product.square .caption a {
    color: var(--ark-grey);
}

.product .caption a:before {
    display: none;
}

.product.square .caption p.product-name a:before {
    display: block;
    width: 0%;
}

.product.square .caption p.product-name a:hover:before {
    width: 100%;
}

/* End of Products Display */

/* Popup Forms */

.featherlight .featherlight-close-icon {
    right: auto;
    left: 0px;
}

.featherlight .close-btn {
}

.featherlight-inner .intro-text {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 2em;
}

.intro-text a {
}

.featherlight .featherlight-content {
    padding: 0px !important;
    width: 90%;
    max-width: 700px;
    transition: opacity 0.2s linear;
    opacity: 1;
}

.featherlight .featherlight-content.hidden {
    opacity: 0;
    pointer-events: none;
}

.featherlight-content {
}

/*.vs-modal h2
{
    font-size: 28px;
    line-height: 38px;
  font-weight: 900;
    letter-spacing: 0.4px;
    max-width: 380px;
    margin: 0px auto 15px auto;
    color: var(--ark-grey);
  text-transform: none;
}*/

.quickship-modal .wpcf7-form,
.vs-modal .wpcf7-form {
    text-align: left;
}

.quickship-modal .wpcf7-text,
.vs-modal .wpcf7-text,
.quickship-modal .wpcf7-not-valid-tip,
.vs-modal .wpcf7-not-valid-tip {
    font-size: 12px;
}

.quickship-modal .wpcf7-textarea,
.vs-modal .wpcf7-textarea {
    height: 130px;
    font-size: 12px;
}

.wpcf7-form div.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    position: relative;
}

.ark-modal .wpcf7-form div.row,
.lead-modal .wpcf7-form div.row
{
    margin-bottom: 1em;
}

.ark-modal .wpcf7-form div.row p,
.lead-modal .wpcf7-form div.row p
{
    width: 100%;
}

.ark-modal .wpcf7-form div.row label,
.lead-modal .wpcf7-form div.row label
{
    font-size: 12px;
    line-height: 1.25em;
    transform: translateY(0px);
    position: absolute;
    top: 2px;
    left: 0px;
    pointer-events: none;
    opacity: 1;
}

.ark-modal .wpcf7-form div.row label.filled,
.lead-modal .wpcf7-form div.row label.filled
{
    opacity: 0;
}

.wpcf7-form div.row.last-row {
    margin-bottom: 1em;
}

.wpcf7-form div.row.has-margin {
    margin-top: 40px;
}

.wpcf7-form div.row div {
    flex-basis: 49%;
    margin-right: 2%;
}

.wpcf7-form div.row div.form-section {
    margin-top: 16px;
    flex-basis: 100%;
}

.wpcf7-form div.row div .wpcf7-select {
    margin-top: 39px;
}

.wpcf7-form div.row div.full-width {
    flex-basis: 100%;
}

.wpcf7-form div.row div:last-child {
    margin-right: 0px;
}

.wpcf7-form div.row label {
    padding: 10px 10px 8px 10px;
    color: #858585;
    transform: translateY(39px);
    transition: 0.2s transform ease-out;
    position: relative;
    display: inline-block;
    z-index: 1;
    pointer-events: none;
    font-size: 14px;
}

label .asterisk
{
    color: #000;
    font-weight: 500;
}

span.wpcf7-list-item {
    color: #858585;
}

.wpcf7-form div.row label.normal {
    transform: translateY(0px);
    padding: 0px;
}

.wpcf7-form div.row label.filled {
    transform: translateY(0px);
}

.wpcf7-form p:last-of-type {
    margin-bottom: 0px;
}

.wpcf7-text {
    font-size: 14px;
    -webkit-appearance: none;
    border-radius: 0px;
    margin: 0px;
    padding: 0px;
    border: 1px solid #ccc;
    font-weight: 300;
    padding: 10px;
    outline: none;
    /*font-weight: 300;*/
    box-sizing: border-box;
    width: 100%;
    -webkit-transition: 0.2s background-color ease;
    transition: 0.2s background-color ease;
}

.wpcf7-text[name="first-name"],
.wpcf7-text[name="last-name"],
.wpcf7-text[name="your-email"],
.wpcf7-text[name="your-first-name"],
.wpcf7-text[name="your-last-name"],
.wpcf7-text[name="first_name"],
.wpcf7-text[name="last_name"]
{
    background-color: #EEEEEE;
}

.wpcf7-form label.ark-display {
    font-size: 12px;
    padding-left: 11px;
}

.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder {
    font-family: "Avenir", sans-serif;
    font-size: 12pt;
    line-height: 14pt;
    font-weight: 300;
    vertical-align: bottom;
    position: relative;
    top: 0px;
    color: #bbb;
    opacity: 1;
}

.js-cm-form input::placeholder {
    top: 3px;
}

.post-7956 .wpcf7-text::placeholder,
.post-7956 .post-7956.wpcf7-textarea::placeholder {
    font-size: 12pt;
    line-height: 19pt;
}

.wpcf7-text {
    padding: 10px 10px 8px 10px;
}

.wpcf7-select {
    -webkit-appearance: none;
    border-radius: 0px;
    border: 1px solid #ccc;
    /*border-radius: 0px 30px;*/
    padding: 12px 10px 10px 10px;
    margin: 0px;
    width: 100%;
    font-weight: 300;
    font-size: 14px;
    background-color: transparent;
    background-image: url("/wp-content/themes/arkitektura/images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px auto;
    outline: none;
}

#wpcf7-f7959-p7956-o1 .wpcf7-select,
#wpcf7-f576-p425-o1 .wpcf7-select {
    color: #858585;
}

#wpcf7-f576-p425-o1 .wpcf7-select {
    padding: 12px 10px 10px 9px;
}

.wpcf7-select option {
    background-color: transparent;
}

.wpcf7-textarea {
    -webkit-appearance: none;
    margin: 0px;
    padding: 10px 10px 10px 10px;
    border: 1px solid #ccc;
    font-family: "Avenir", sans-serif;

    outline: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 300;
    width: 100%;
    box-sizing: border-box;
    -webkit-transition: 0.2s background-color ease;
    transition: 0.2s background-color ease;
    resize: none;
}

.wpcf7-spinner {
    top: 9px;
}

.featherlight-content .wpcf7-textarea {
    height: 100px;
    min-height: 100px;
    resize: vertical;
}

.post-7956 .wpcf7-text,
.post-7956 .post-7956.wpcf7-textarea,
.post-425 .wpcf7-text,
.post-425 .post-425.wpcf7-textarea {
    font-size: 14px;
    line-height: 0em;
    padding: 12px 10px 10px 15px;
}

.post-425 .wpcf7-select,
.post-7956 .wpcf7-select {
    padding: 12px 10px 10px 10px;
}

.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder,
.js-cm-form input::placeholder {
    font-family: "Avenir", sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    vertical-align: bottom;
    position: relative;
    top: 0px;
    color: #858585;
}

.js-cm-form input::placeholder {
    top: 3px;
}

.post-7956 .wpcf7-text::placeholder,
.post-7956 .post-7956.wpcf7-textarea::placeholder {
    font-size: 14px;
    line-height: 19pt;
}

label.half-width {
    width: 49%;
    margin-right: 2%;
    display: inline-block;
}

label.half-width2 {
    width: 49%;
    margin-right: 0%;
    display: inline-block;
}

@media all and (max-width: 767px) {
    label.half-width,
    label.half-width2 {
        width: 100%;
        margin-right: 0px;
    }

    label.half-width {
        margin-bottom: 15px;
    }

    .wpcf7-form div.row.has-margin {
        margin-top: 0px;
    }

    .wpcf7-text {
        font-size: 16px;
    }
    .post-7956 .wpcf7-text,
    .post-7956 .post-7956.wpcf7-textarea,
    .post-425 .wpcf7-text,
    .post-425 .post-425.wpcf7-textarea {
        font-size: 16px;
    }

    .featherlight-inner .intro-text {
        line-height: 20px;
    }
}

div.wpcf7 input.wpcf7-text.half-width,
.js-cm-form input.half-width {
    width: 49%;
    margin-right: 2%;
}

div.wpcf7 input.wpcf7-text.half-width2,
.js-cm-form input.half-width2 {
    width: 49%;
    margin-right: 0;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
    background-color: #f7f7f7;
}

.wpcf7-file {
}

.wpcf7-submit {
    background-color: transparent;
    color: var(--ark-grey);
    text-transform: uppercase;
    font-size: 9pt;
    letter-spacing: 1px;
    padding: 15px 0px 14px 0px;
    text-align: center;
    -webkit-appearance: none;
    margin: 0px 0px 0px 0px; /* 60px 0px 0px 0px */
    top: 1px;
    position: relative;
    transition: all 0.2s ease;
    font-family: "AvenirWeb", sans-serif;
    line-height: 1em;
    cursor: pointer;
    border: 1px solid var(--ark-grey);
    border-radius: 0px;
    width: 110px;
    box-sizing: border-box;
}

.wpcf7-submit:hover {
    background-color: var(--ark-grey);
    color: #fff;
}

.featherlight .wpcf7-submit,
.ark-contact-form .wpcf7-submit,
.ark-form-holder .wpcf7-submit {
    background-color: var(--ark-grey);
    color: #fff;
}

.featherlight .wpcf7-submit:hover,
.ark-contact-form .wpcf7-submit:hover {
    background-color: transparent;
    color: var(--ark-grey);
}

.wpcf7-form button.file-button {
    background-color: transparent;
    color: var(--ark-grey);
    text-transform: uppercase;
    font-size: 9pt;
    letter-spacing: 1px;
    width: 110px;
    box-sizing: border-box;
    padding: 15px 0px 14px 0px;
    text-align: center;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "AvenirWeb", sans-serif;
    line-height: 1em;
    cursor: pointer;
    border: 1px solid var(--ark-grey);
    border-radius: 0px;
}

.wpcf7-form button.file-button:hover {
    background-color: var(--ark-grey);
    color: #fff;
}

.file-holder p {
    display: none;
    position: relative;
}

.file-holder p.visible {
    display: block;
}

.wpcf7 input[type="file"] {
    opacity: 0;
}

.file-instruction {
    font-size: 13px;
}

.ark-form-note {
    font-size: 13px;
    margin: 40px 0px 30px 0px;
}

span.ark-file {
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    pointer-events: none;
}

span.ark-file:before {
}

span.ark-file .close-btn {
    width: 20px;
    height: 20px;
    padding-right: 30px;
    position: relative;
    top: 1px;
    pointer-events: visible;
    cursor: pointer;
    display: none;
    right: -20px;
    left: 0px;
}

span.ark-file.filled .close-btn {
    display: inline-block;
}

@media all and (max-width: 767px) {
    .js-cm-form input.half-width,
    .js-cm-form input.half-width2 {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 1em;
    }

    .js-cm-form input.half-width2 {
        margin-bottom: 0px;
    }
}
/* End of Popup Forms */

/* New Quickship Styles */

.ark-load-btn {
    text-align: center;
    margin-top: 40px;
}

.ark-load-btn a {
    background-color: transparent;
    color: var(--ark-grey);
    text-transform: uppercase;
    font-size: 9pt;
    letter-spacing: 0.7px;
    padding: 15px 30px 12px 30px;
    -webkit-appearance: none;
    margin: 0px;
    top: 1px;
    position: relative;
    transition: all 0.2s ease;
    font-family: "AvenirWeb", sans-serif;
    line-height: 1em;
    cursor: pointer;
    border: 1px solid var(--ark-grey);
    display: inline-block;
    background-image: none;
}

.ark-load-btn a:hover {
    background-color: var(--ark-grey);
    color: #fff;
}

body.term-quickship {
    /*margin: 310px 0px 0px 0px;*/
}

body.term-quickship .site-main {
    width: 100%;
    max-width: none;
}

body.term-quickship .ark-featured-img {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
    position: relative;
}

body.single-products .site-main {
    width: 100%;
    max-width: none;
}

body.term-quickship .logo,
body.term-quickship header.main-header.mini-header .logo,
body.single-products .logo,
body.single-products header.main-header.mini-header .logo {
    margin-bottom: 0px;
}

body.page-id-589 .logo.qs-logo,
body.page-id-589 header.main-header.mini-header .logo.qs-logo {
    margin-bottom: 0px;
}

.ark-regular-content {
    width: 95%;
    margin: 0px auto;
}

.ark-back-button-holder {
    margin: 20px 0px 40px 0px;
}

.ark-back-button {
    color: var(--ark-grey);
    font-size: 13px;
    border-bottom: 0px;
}

.ark-back-button:hover {
    border-bottom: 0px;
}

p a.ark-back-button:before {
    display: none;
}

.ark-back-button span {
    width: 15px;
    display: inline-block;
    margin-right: 5px;
    transition: 0.2s transform ease;
    transform: translateX(0px);
}

.ark-back-button:hover span {
    transform: translateX(-5px);
}

.ark-qs-header {
    border-width: 1px 0px;
    border-color: #dedfe0;
    border-style: solid;
    padding: 15px 0px;

    text-align: left;
    width: 100%;
    margin: 0px auto 20px auto;
}

.ark-qs-header .inner {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
    display: flex;
}

.ark-qs-header h1 {
    text-transform: uppercase;
    margin: 0px;
    line-height: 1.5em;
    font-size: 20px;
    font-weight: 900;
    margin: 0px;
    flex-basis: 30%;
}

#qs-products {
    min-height: 500px;
    position: relative;
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 60px auto 0px auto;
}

.ark-product-filter {
    width: 95%;
    margin: 0px auto;
}

.ark-product-filter > form > ul {
    padding: 0px;
    margin: 0px 0px 0px 0px;
    list-style: none;
}

.ark-product-filter > form > ul > li {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 1px solid #5b5c5e;
    width: 18%;
    margin-right: 2.75%;
    position: relative;
    cursor: pointer;
    width: 25%;
}

.ark-product-filter > form > ul > li.mobile-only {
    display: none;
}

.ark-product-filter > form > ul > li:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background-image: url("/wp-content/themes/arkitektura/images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    pointer-events: none;
    width: 10px;
    height: 10px;
    display: block;
    z-index: 10;

    transition: transform 0.2s ease;
}

.ark-product-filter > form > ul > li.goto-products:before {
    display: none;
}

.ark-product-filter > form > ul > li.open:before {
    transform: translateY(-50%) rotate(-90deg);
}

.ark-product-filter > form > ul > li.filter-clear {
    width: auto;
    border-bottom: 0px;
    visibility: hidden;
    position: relative;
    padding-left: 20px;
    margin-right: 0px;
}

.ark-product-filter > form > ul > li.text-search {
    position: relative;
}

.ark-product-filter > form > ul > li.text-search .search-icon {
    position: absolute;
    right: 0px;
    top: 5px;
    left: auto;
    width: 15px;
}

.ark-product-filter > form > ul > li.text-search:before,
.ark-product-filter > form > ul > li.filter-clear:before {
    display: none;
}

.ark-product-filter > form > ul > li.filter-clear.visible {
    visibility: visible;
}

.ark-product-filter > form > ul > li.filter-clear a {
    color: #f1954c;
    position: relative;
    line-height: 1.5em;
}

.ark-product-filter > form > ul > li.filter-clear a:before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    border-bottom: 1px solid #f1954c;
    transition: width 0.3s;
}

.ark-product-filter > form > ul > li.filter-clear a:hover:before {
    width: 100%;
}

.filter-close-btn {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 12px;
    height: 12px;
}

.filter-close-btn .stick.animate {
    background-color: transparent;
}

.filter-close-btn .stick:after,
.filter-close-btn .stick:before {
    background-color: #f1954c;
}

.ark-product-filter > form > ul > li:last-child {
    margin-right: 0px;
}

.ark-product-filter > form > ul > li > a {
    color: #5b5c5e;
    display: inline-block;
    width: 100%;
    font-weight: 500;
    border-bottom: 0px;
}

.ark-product-filter > form > ul > li > a span {
    font-weight: 300;
}

.ark-product-filter > form > ul > li ul.filter {
    border: 1px solid #585c5e;
    position: absolute;
    top: 27px;
    left: 0px;
    background-color: #fff;
    list-style: none;
    z-index: 5;
    width: 500px;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
    display: none;
}

.ark-product-filter > form > ul > li ul.filter.brands-menu {
    width: 218%;
}

.ark-product-filter > form > ul > li ul.filter.type-menu {
    width: 218%;
}

.ark-product-filter > form > ul > li ul.filter.price-select {
    width: 100%;
}

.ark-product-filter > form > ul > li.open ul.filter {
    display: flex;
}

.ark-product-filter > form > ul > li ul.filter li {
    width: 33.3333%;
    display: flex;
    flex-direction: row;
    flex-basis: 33.3333%;
    display: inline-block;
    letter-spacing: 0.5px;
    line-height: 1.5em;
}

.ark-product-filter > form > ul > li ul.filter li a {
    color: var(--ark-grey);
}

.ark-product-filter > form > ul > li ul.filter li a span {
    font-weight: 300;
}

.ark-product-filter > form > ul > li ul.filter.select li,
.ark-product-filter > form > ul > li ul.filter.price-select li {
    flex-basis: 100%;
}

.ark-product-filter > form > ul > li ul.filter li label {
    cursor: pointer;
}

.ark-product-filter > form > ul > li ul.filter li label:hover {
    color: #000;
}

.ark-product-filter > form > ul > li ul.filter li input[type="checkbox"],
.ark-product-filter > form > ul > li ul.filter li input[type="radio"] {
    border: 1px solid #585c5e;
    background-color: #fff;
    position: relative;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    top: 4px;
    cursor: pointer;
    margin-right: 6px;
    border-radius: 0px;
}

.ark-product-filter
    > form
    > ul
    > li
    ul.filter
    li
    input[type="checkbox"]:checked
    + span,
.ark-product-filter
    > form
    > ul
    > li
    ul.filter
    li
    input[type="radio"]:checked
    + span {
    color: black;
}

.ark-product-filter button {
    background-color: #4b4b50;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px 8px 20px;
    -webkit-appearance: none;
    border: 0px;
    cursor: pointer;
    font-weight: 500;
    font-family: "AvenirWeb", sans-serif;
    letter-spacing: 1px;
}

.ark-product-filter button.show-products {
    width: 100%;
    max-width: 180px;
    margin: 20px auto 0px auto;
    background-color: transparent;
    border: 1px solid var(--ark-grey);

    color: var(--ark-grey);
    padding: 14px 32px;
}

.ark-product-filter
    > form
    > ul
    > li
    ul.filter
    li
    input[type="checkbox"]:checked:before,
.ark-product-filter
    > form
    > ul
    > li
    ul.filter
    li
    input[type="radio"]:checked:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 9px;
    height: 9px;
    background: #585c5e no-repeat center center;
}

.ark-product-filter input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
    border: 0px;
    -webkit-appearance: none;
    outline: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-family: "AvenirWeb", sans-serif;
}

.ark-product-filter input[type="text"]::placeholder {
    text-transform: uppercase;
    font-family: "AvenirWeb", sans-serif;
    color: #5b5c5e;
    font-weight: 300;
    font-size: 11px;
}

.ark-result-message {
    margin: 170px auto 0px auto;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4em;
}

.ark-result-message .bold {
    font-weight: 900;
}

@media all and (max-width: 1260px) {
    .ark-product-filter > form > ul > li ul.filter.brands-menu {
        width: 280%;
    }
}

@media all and (max-width: 1000px) {
    .ark-product-filter > form > ul > li ul.filter.brands-menu {
        width: 320%;
    }
}

@media all and (max-width: 900px) {
    .ark-product-filter > form > ul > li ul.filter.brands-menu {
        width: 350%;
    }

    #ark-qs-filter-switch.mobile-only {
        display: block;
    }

    .ark-qs-header .inner {
        flex-wrap: wrap;
        width: 100%;
    }

    .ark-qs-header h1 {
        flex-basis: 100%;
        flex-shrink: 0;
        border-width: 1px 0px;
        border-style: solid;
        border-color: #dedfe0;
        padding: 8px 5% 6px 5%;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    #ark-qs-filter-switch {
        font-weight: 900;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-bottom: 1px solid #5b5c5e;
        position: relative;
        cursor: pointer;
        margin-bottom: 0px;
        flex-basis: var(--ark-container-width);
        margin: 0px auto;
    }

    #ark-qs-filter-switch .clear-btn-holder {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 85px;
    }

    #ark-qs-filter-switch .clear-btn-holder .filter-close-btn {
        top: 2px;
    }

    #ark-qs-filter-switch .filter-text {
        margin-right: 20px;
    }

    #ark-qs-filter-switch .filter-toggle {
        color: #5b5c5e;
        position: relative;
        position: relative;
        display: inline-block;
        padding-right: 20px;
        line-height: 0em;
        border: 0px;
    }

    #ark-qs-filter-switch .filter-toggle:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0px;
        left: auto;
        border-bottom: 0px;
        transform: translateY(-50%);
        background-image: url("/wp-content/themes/arkitektura/images/arrow-down.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;

        width: 8px;
        height: 8px;
        display: block;
        z-index: 10;

        transition: transform 0.2s ease;
    }

    #ark-qs-filter-switch .filter-toggle.open:before {
        transform: translateY(calc(-50% - 1px)) rotate(-90deg);
    }

    #ark-qs-filter-switch .filter-clear {
        display: inline-block;
        position: absolute;
        top: 0px;
        right: 0px;
        display: none;
        color: #f1954c;
        border-bottom: 0px;
    }

    #ark-qs-filter-switch .filter-clear.visible {
        display: inline-block;
    }

    .ark-product-filter {
        max-height: 0px;
        overflow: hidden;
        margin-top: 20px;
        transition: all 0.6s ease-out;
        flex-basis: var(--ark-container-width);
    }

    .ark-product-filter.visible {
        max-height: 800px;
    }

    .ark-product-filter > form > ul > li.mobile-only {
        display: inline-block;
    }

    .ark-product-filter > form > ul > li ul.filter.type-menu,
    .ark-product-filter > form > ul > li ul.filter.brands-menu {
        width: 100%;
    }

    .ark-product-filter > form > ul > li {
        width: 100%;
        border-bottom: 0px;
        overflow: hidden;
    }

    .ark-product-filter > form > ul > li.open {
        overflow: visible;
    }

    .ark-product-filter > form > ul > li > a {
        border-bottom: 1px solid #5b5c5e;
        margin-bottom: 10px;
    }

    .ark-product-filter > form > ul > li ul.filter {
        width: 100%;
        z-index: 11;
        position: relative;
        top: 0px;
        margin-bottom: 0px;
        border: 0px;
        display: flex;
        padding: 0px 20px;
        max-height: 0px;

        overflow: hidden;
        transition: all 0.2s ease-out;
    }

    .ark-product-filter > form > ul > li.open ul.filter {
        max-height: 500px;
        padding: 17px 20px;
        margin-bottom: 20px;
    }

    .ark-product-filter > form > ul > li ul.filter li {
        flex-basis: 50%;
        margin-bottom: 0.5em;
    }

    .ark-product-filter > form > ul > li:before {
        top: 7px;
        transform: translateY(0%);
    }

    .ark-product-filter > form > ul > li.open:before {
        transform: translateY(0%) rotate(-90deg);
    }

    .ark-product-filter > form > ul > li.filter-clear.visible {
        visibility: hidden;
    }

    .ark-product-filter input[type="text"] {
        padding-left: 0px;
    }

    .ark-qs-header {
        border: 0px;
    }
}

@media all and (max-width: 767px) {
    body.term-quickship,
    body.admin-bar.term-quickship {
    }

    body.single-products {
    }

    body.admin-bar.single-products {
        margin-top: 200px;
    }

    .goto-products {
        text-align: center;
    }

    .ark-qs-header {
        border-width: 0px;
    }

    .ark-product-filter {
        width: var(--ark-container-width);
        margin-bottom: 10px;
    }

    .ark-product-filter > form > ul {
    }

    .ark-product-filter > form > ul > li:before {
        width: 8px;
        height: 8px;
    }

    #qs-products {
        margin-top: 30px;
    }

    .ark-result-message {
        margin: 0px auto 0px auto;
    }
}

/* End New Quickship Styles */

/* Quickship Single Product */

.uppercase {
    text-transform: uppercase;
}

.quickship-archive-header {
    text-transform: uppercase;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.nav-links {
    position: relative;
    width: 100%;
}

.nav-links a {
    color: var(--ark-grey);
}

.nav-previous {
    position: absolute;
    top: 0px;
    right: 0px;
}

.nav-previous a:after {
    content: " ";
    display: inline-block !important;
    position: relative;
    width: 30px;
    height: 20px;
    margin-left: 10px;
    background-image: url("images/rooms/right@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
    border-bottom: 0px;
}

.nav-next {
    position: absolute;
    top: 0px;
    left: 0px;
}

.nav-next a:before {
    content: " ";
    display: inline-block !important;
    position: relative;
    width: 30px;
    height: 20px;
    margin-right: 10px;
    background-image: url("images/rooms/left@1.5x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: text-bottom;
}

.products.quickship-products {
    margin-bottom: 60px;
}

.quickship-products-header {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.quickship-archive-header h2 {
    font-size: 22px;
}

.quickship-products-header h2 {
    margin: 0px;
    font-size: 22px;
    text-transform: uppercase;
}

.quickship-products-header h2 a {
    color: var(--ark-grey);
    position: relative;
    display: inline;
    font-weight: 900;
}

.quickship-products-header h2 a:before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    border-bottom: 1px solid var(--ark-grey);
    transition: width 0.3s;
}

.quickship-products-header h2 a:hover:before {
    width: 100%;
}

.all-products-link {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0px;
    font-size: 12px;
}

.all-products-link a {
    color: var(--ark-grey);
    vertical-align: top;
    border-bottom: 1px solid var(--ark-grey);
}

.all-products-link a:before {
    width: 100%;
}

.ark-product-info.brand-navigation li {
    text-transform: none;
    line-height: 1em;
}

.ark-product-info.brand-navigation li.uppercase {
    text-transform: uppercase;
}

.ark-product-info.brand-navigation li:not(.brand-logo) {
    height: 40px;
}

.ark-product-info.brand-navigation li.quote {
    text-transform: uppercase;
}

.ark-product-text.text-holder {
    width: 66.5%;
}

.ark-product-info h1 {
    margin: 0px;
    font-size: 1em;
    line-height: 1.2em;
}

ul.ark-product-colors {
    list-style: none;
    padding: 0px;
    margin-left: 0px;
    font-size: 12px;
    color: #8c8c8c;
}

ul.ark-product-colors p {
    margin-bottom: 5px;
}

ul.ark-product-colors .color-name {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s linear;
}

ul.ark-product-colors .color-name.visible {
    opacity: 1;
    pointer-events: visible;
}

ul.ark-product-colors li {
    display: inline-block;
    width: 35px;
    height: 35px;
    position: relative;
    margin-right: 10px;
    text-transform: uppercase;
    border-radius: 100%;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 8px;
    letter-spacing: 0.5px;
}

ul.ark-product-colors li:after {
    display: block;
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: transparent;
    box-shadow:
        -2px -2px 7px #d7d7d7,
        2px 2px 7px #e9e9e9;
    opacity: 0;
    transition: opacity 0.2s linear;
    position: absolute;
    z-index: -1;
}

ul.ark-product-colors li:hover {
    border-color: #fff !important;
}

ul.ark-product-colors li:hover:after {
    opacity: 1;
}

ul.ark-product-colors li span {
    position: absolute;
    color: var(--ark-grey);
    width: 200px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s linear;
}

@media all and (max-width: 767px) {
    ul.ark-product-colors li:first-of-type {
        text-align: left;
    }

    ul.ark-product-colors li:first-of-type span {
        left: 0px;
        transform: translateX(0px);
    }

    .quickship-products-header {
        width: 90%;
        margin: 0px auto 20px auto;
    }
}

ul.ark-product-colors li:hover span {
    opacity: 1;
}

.products.product-category-quickship {
    margin: 0px auto;
}

.product-title {
    border-width: 1px 0px;
    border-color: #dedfe0;
    border-style: solid;
    width: 100%;
    padding: 20px 0px;
}

.product-title .inner {
    width: 79%;
    /*max-width: 1440px;*/
    margin: 0px auto;
}

.product-title h1 {
    text-transform: uppercase;
    font-weight: 900;
    margin: 0px;
}

.ark-back-button-holder {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 20px auto 10px auto;
}

div.single-product {
    padding-top: 50px;
    width: 100%;
    border-bottom: 1px solid #dedfe0;
    padding-bottom: 40px;
}

div.single-product .inner {
    width: 79%;
    /*max-width:  1440px;*/
    margin: 0px auto;
    display: flex;
    justify-content: space-around;
}

.single-product .product-image,
.ark-product-details {
    /*display: inline-block;*/
    vertical-align: top;
}

.single-product .product-image {
    flex-basis: 69%;
    margin-left: 20px;
    flex-shrink: 0;
}

.single-product .product-image .product-image-wrap {
    max-width: 718px;
    margin: 0px auto;
}

.ark-product-details {
    width: auto;
    text-align: left;
    line-height: 32px;
    flex-basis: 29%;
    padding-left: 0px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.ark-product-details a {
    position: relative;
}

.ark-product-details span {
    position: relative;
}

.ark-product-details .brand-title a {
    border-bottom: 0px;
    display: inline-block;
    padding-bottom: 3px;
}

.ark-product-details .brand-title a:hover {
    border-bottom: 0px;
}

/*.ark-product-details .brand-title a:before
{
    display: block;
    position: absolute;
    content: "";

    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    transition: width .3s;
    border-bottom: 1px solid #000;
    width: 0%;
}

.ark-product-details .brand-title a:before
{
    display: block;
}

.ark-product-details .brand-title a:hover:before
{
    width: 100%;
}*/

ul.ark-product-info {
    margin: 0px 0px 0px 0px;
    padding: 0px;
    list-style: none;
}

ul.ark-product-info li {
    margin-bottom: 0px;
}

ul.ark-product-info li.extra-margin {
    margin-bottom: 10px;
}

ul.ark-product-info li.brand-title {
    font-weight: 300;
    margin-top: -5px;
}

.brand-title {
    font-weight: normal;
}

.ark-brand {
    display: block;
    line-height: 1em;
}

li.product-designer {
    line-height: 26px;
    /*display: inline-block;
    margin-bottom: 10px;*/
}

.ark-product-info .quote {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-top: 20px;
    line-height: 1.6em;
}

.ark-product-info .quote a {
    display: inline-block;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.ark-product-info .quote a:last-child {
    margin-right: 0px;
    margin-bottom: 0px;
}

.product-blurb {
    /*font-size: 13px;*/
    line-height: 1.6em;
    margin: 20px 0px 16px 0px;
    font-weight: 300;
}

.product-blurb.last-item {
    margin: 29px 0px 0px 0px;
}

.product-blurb a {
    /*color: #8c8c8c;
    border-bottom: 1px solid #8c8c8c;*/
}

.product-blurb .black a {
    /*color: #000;
    border-bottom: 1px solid #000;*/
}

.product-blurb a:before,
.product-blurb a:hover:before {
    width: 0px;
}

.ark-load-next-page {
    text-align: left;
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
}

.ark-load-next-page a {
    color: var(--ark-grey);
    position: relative;
}

.ark-load-next-page a:before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    transition: width 0.3s;
    border-bottom: 1px solid var(--ark-grey);
    width: 100%;
}

.ark-load-next-page a:hover:before {
}

.ark-load-next-page .spinner {
    left: 110px;
    transform: translate(0%, -50%);
    width: 20px;
    height: 20px;
}

.ark-load-next-page .spinner .double-bounce1 {
    background-color: var(--ark-grey);
    -webkit-animation: sk-bounce 1.3s infinite ease-in-out;
    animation: sk-bounce 1.3s infinite ease-in-out;
}

.quickship-modal,
.products-modal {
    max-width: 540px;
    width: 90%;
    display: none;
    text-align: center;
    margin: 50px auto 0px auto;
    padding: 0px 15px;
    color: var(--ark-grey);
}

.quickship-modal h2,
.products-modal h2 {
    /*font-size: 28px;
    line-height: 35px;*/
    /*font-weight: 300;
    letter-spacing: 0.4px;*/
    /*max-width: 380px;*/
    /*margin: 0px auto 15px auto;*/
    /*color: var(--ark-grey);*/
}

.products-modal p {
    text-align: left;
}

.products-modal p.center-text {
    text-align: center;
}

.featherlight.information h2.pricing {
    display: none;
}

.featherlight.pricing h2.information {
    display: none;
}

.quickship-modal .wpcf7-textarea,
.vs-modal .wpcf7-textarea {
    height: 130px;
    font-size: 12px;
}

.quickship-modal .wpcf7-form,
.vs-modal .wpcf7-form {
    text-align: left;
}

.quickship-modal .wpcf7-textarea::placeholder,
.vs-modal .wpcf7-textarea::placeholder {
    font-size: 14px;
    top: 0px;
    color: #858585;
}

.quickship-modal .wpcf7-text,
.vs-modal .wpcf7-text,
.quickship-modal .wpcf7-not-valid-tip,
.vs-modal .wpcf7-not-valid-tip {
    font-size: 14px;
}

.quickship-modal .wpcf7-text::placeholder,
.vs-modal .wpcf7-text::placeholder {
    font-size: 14px;
    top: -1px;
    color: #858585;
}

.featherlight-inner .intro-text {
    font-size: 14px;
}

@media all and (max-width: 767px) {
    .ark-back-button-holder {
        width: var(--ark-container-width);
    }

    .ark-product-text.text-holder {
        width: 95%;
        margin-top: 30px;
    }

    .single-product {
        display: block;
        padding-top: 0px;
        flex-wrap: wrap;
    }

    .single-product .product-image,
    .ark-product-details {
        width: 100%;
        margin: 30px auto 0px auto;
        max-width: none;
        padding-left: 0px;
        flex-basis: 100%;
    }

    ul.ark-product-info {
        margin-left: 0px;
    }

    .product-title .inner {
        width: var(--ark-container-width);
    }

    div.single-product .inner {
        width: var(--ark-container-width);
        margin: 0px auto;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .quickship-modal .wpcf7-textarea::placeholder,
    .vs-modal .wpcf7-textarea::placeholder,
    .quickship-modal .wpcf7-text,
    .vs-modal .wpcf7-text,
    .quickship-modal .wpcf7-text::placeholder,
    .vs-modal .wpcf7-text::placeholder,
    .wpcf7-select {
        font-size: 16px;
    }

    /*.quickship-modal h2,
  .products-modal h2
  {
    font-size: 25px;
    line-height: 30px;
  }*/

    .daloom-form {
        margin: 50px auto 0px auto;
        padding: 0px 15px;
        max-width: 540px;
        width: 90%;
    }
}

/* End Quickship Single Product */

/* Project Page */

.ark-project-list.wp-container-9 {
    gap: 0em !important;
}

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

.ark-project-list {
    width: 80%;
    margin: 60px auto 0px auto;
    gap: 40px !important;
}

.ark-project-list ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    color: #77777a;
    font-size: 16px;
    text-align: center;
}

.ark-project-list ul li {
    margin-bottom: 1em;
    line-height: 1.3em;
}

.ark-project-list ul li:before {
    content: "";
    margin: 0px;
    display: none;
}

.ark-project-list ul li a {
    /*color: #000;
  border-bottom: 1px solid #000;*/
}

.ark-gallery-holder {
    position: relative;
}

.ark-gallery-holder > .wp-block-group__inner-container {
    width: 95%;
    max-width: var(--ark-max-width);
}

.ark-gallery .flickity-viewport {
    width: 100%;
    height: 0px;
    padding-bottom: 68.42%;
}

@media (max-width: 900px) {
    .ark-project-list ul {
        font-size: 12px;
    }

    .ark-project-list {
        width: 85%;
    }
}

@media (max-width: 767px) {
    .ark-project-list {
        width: var(--ark-container-width);
        gap: 0px !important;
    }

    .ark-project-list ul:last-of-type li:last-child {
        margin-bottom: 0px;
    }
}

/* End of Projects Page */

/* Promo Modal */

.ark-promo-lightbox.featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.7) !important;
    /*mix-blend-mode: multiply;*/
}

.featherlight.ark-promo-lightbox .featherlight-content {
    transform: translateY(25px);
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    opacity: 1;
    padding: 25px 25px 0;

    -webkit-transition:
        transform 0.75s ease,
        opacity 1s ease;
    -moz-transition:
        transform 0.75s ease,
        opacity 1s ease;
    -o-transition:
        transform 0.75s ease,
        opacity 1s ease;
    transition:
        transform 0.75s ease,
        opacity 1s ease;

    overflow: visible !important;
    max-width: 546px;
    padding: 50px 50px 50px !important;
}

.ark-promo-lightbox .featherlight-content.visible {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    border-bottom: 0px;
    overflow: auto !important;
}

.ark-promo {
    display: none;
    margin: 0px;
    padding: 30px;
}

.ark-promo .promo-inner {
    position: relative;
    height: 0px;
    padding-bottom: 62.4%;
}

.ark-promo .promo-inner .cover-img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.3);
}

.ark-promo p {
    width: 75%;
    margin: 20px auto 0px auto;
    text-align: center;
    font-weight: 300;
    color: var(--ark-grey);
}

.ark-promo form p {
    text-align: left;
    width: 100%;
}

.ark-promo a {
    color: var(--ark-grey);
    text-decoration: underline;
    font-weight: 600;
}

.ark-promo a.ark-close-btn {
    color: #343434;
    font-weight: normal;
    outline: none;
    letter-spacing: 1px;
}

.ark-promo a:hover:before {
    width: 0;
}

body.home .fatherlight-content {
    max-width: 600px;
}

.featherlight.ark-promo-lightbox .featherlight-close-icon {
    color: #fff;
    font-size: 20px;
    background: transparent;
    font-weight: 700;
    top: 6px;
    box-sizing: content-box;
    right: 6px;
    width: 20px;
    height: 20px;
    padding: 0px;
}

.line,
.line:after,
.line:before {
    width: 20px;
    height: 1px;
}

.line {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line:after,
.line:before {
    content: "";
    left: 0;
    background: var(--ark-grey);
    position: absolute;
}

.line:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition:
        bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.line:after {
    top: 0;
    transform: rotate(45deg);
    transition:
        top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.3s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.open-product {
    cursor: pointer;
}

.ark-promo-lightbox .featherlight-close-icon {
    display: none;
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-out;
}

.promo-close-btn img {
    width: 100%;
    height: auto;
}

.promo-holder {
    background-image: url("/wp-content/themes/arkitektura22/images/modal/bb-pop-up3.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top left;
    width: 100%;
    height: 0px;
    padding-bottom: 147%;
}

.promo-holder .wrap {
    width: 87%;
    margin: 0px auto 0px auto;
    padding-top: 42px;
}

.promo-holder {
    color: #fff;
    position: relative;
}

.promo-holder h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 51px;
    text-transform: uppercase;
    margin: 0px;
}

.pre-header {
    font-weight: 800;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0px 0px 19px 0px;
}

.post-header {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 26.5417px;
    line-height: 36px;
}

.promo-holder ul {
    font-weight: 800;
    font-size: 26px;
    line-height: 36px;
    list-style-position: inside;
    padding-left: 0px;
    margin: 80px 0px 0px 0px;
}

.promo-holder ul.alt {
    margin: 0px 0px 0px 0px;
}

.promo-holder ul li {
    position: relative;
    list-style: none;
}

.promo-holder ul li:before {
    content: "\2022";
    position: relative;
    left: 0px;
    top: 0px;
    margin-right: 10px;
    font-size: 13px;
    vertical-align: top;
}

.button-footer {
    position: absolute;
    left: 0px;
    bottom: 60px;
    width: 100%;
    text-align: center;
    line-height: 0em;
}

.promo-holder .button-footer a {
    background-color: #434445;
    color: #fff;
    border-bottom: 0px;
    text-align: center;
    padding: 10px 60px 10px 60px;
    font-weight: 900;
}

.promo-footer {
    font-weight: 400;
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    font-size: 19px;
    line-height: 32px;
    position: absolute;
    bottom: 45px;
}

.promo-holder a {
    border-bottom: 1px solid #fff;
    transition: color;
}

p.showroom-text {
    text-transform: uppercase;
    font-weight: 800;
}

@media all and (max-width: 600px) {
    .promo-holder .wrap {
        padding-top: 20px;
    }

    .featherlight.ark-promo-lightbox .featherlight-content {
        padding: 25px 25px 25px !important;
    }

    .featherlight .featherlight-inner.promo-close-btn {
        width: 25px;
        height: 25px;
        top: 1px;
        right: 1px;
    }

    .promo-close-btn img {
        width: 45%;
    }

    .promo-holder h2 {
        font-size: 44px;
        line-height: 41px;
    }

    .post-header {
        font-size: 19.5px;
        line-height: 29px;
    }

    .promo-holder ul {
        font-size: 17px;
        line-height: 1.5;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .promo-holder ul li::before {
        vertical-align: middle;
    }

    .promo-footer {
        bottom: 15px;
        font-size: 15px;
        line-height: 25px;
        position: relative;
    }

    p.showroom-text {
        font-size: 13px;
    }

    .promo-close-btn {
        top: 1px;
        right: 1px;
    }

    .button-footer {
        bottom: 40px;
    }
}

/* End Promo Modal */

/* Generic Modal Window */

.ark-modal,
.holiday-modal {
    max-width: 540px;
    width: 90%;
    display: none;
    text-align: left;
    margin: 65px auto 0px auto;
    padding: 0px 15px;
    color: var(--ark-grey);
}

.holiday-modal {
    text-align: center;
}

.holiday-modal form {
    text-align: left;
}

#appt-modal-holder.ark-modal {
    margin: 55px auto 30px auto;
    padding-bottom: 0px;
}

#sale-appt-modal .inner {
    width: 80%;
    margin: 0px auto;
}

.ark-promo-lightbox .ark-modal {
    margin: 0px auto 0px auto;
    padding-bottom: 40px;
}

.ark-modal .wpcf7-text,
.ark-modal .wpcf7-select,
.ark-modal .wpcf7-not-valid-tip {
    font-size: 12px;
}

.ark-modal .wpcf7-select {
    padding: 10px 10px 8px 10px;
}

.ark-modal .wpcf7-text::placeholder {
    font-size: 12px;
    top: -1px;
}

.display-subject {
    padding-left: 0px;
    font-size: 14px;
}

.ark-modal .wpcf7-textarea {
    height: 130px;
    font-size: 12px;
}

.ark-modal .wpcf7-textarea::placeholder {
    font-size: 12px;
    top: -1px;
}

span.wpcf7-not-valid-tip {
    font-size: 12px;
}

.form-section.checkboxes {
    margin-bottom: 30px;
    text-align: left;
}

.form-section.checkboxes.last {
    margin-bottom: 0px;
}

.form-section.checkboxes .wpcf7-checkbox {
    display: flex;
    flex-direction: row;
    padding-left: 0px;
    margin-top: 10px;
}

.ark-contact-form .form-section.checkboxes .wpcf7-checkbox {
    padding-left: 0px;
}

.form-section.checkboxes .wpcf7-checkbox br {
    display: none;
}

.form-section.checkboxes label {
    margin-bottom: 0px;
    font-size: 14px;
}

span.wpcf7-list-item {
    display: block;
    margin: 0 0 0 0em;
    cursor: pointer;
    font-size: 13px;
    padding-left: 11px;
}

.form-section.checkboxes .wpcf7-checkbox span.wpcf7-list-item {
    flex-basis: 30%;
    padding-left: 0px;
}

span.wpcf7-list-item input[type="checkbox"],
span.wpcf7-list-item input[type="radio"] {
    border: 1px solid var(--ark-grey);
    background-color: #fff;
    position: relative;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    top: 2px;
    cursor: pointer;
    margin-right: 6px;
    margin-left: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
}

span.wpcf7-list-item input[type="checkbox"]:checked,
span.wpcf7-list-item input[type="radio"]:checked {
    background-color: black;
}

@media (max-width: 767px) {
    .ark-modal .wpcf7-text,
    .ark-modal .wpcf7-select,
    .ark-modal .wpcf7-not-valid-tip {
        font-size: 16px;
    }

    .ark-modal .wpcf7-text::placeholder {
        font-size: 16px;
    }

    .form-section.checkboxes .wpcf7-checkbox span.wpcf7-list-item {
        flex-basis: 50%;
    }
}

/* End Generic Modal Window */

/* Signup Modal Window */

.two-col {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.two-col:last-of-type .input-wrap {
    margin-bottom: 0px;
}

.signup-modal p.intro {
    color: #97989a;
}

span.error {
    font-size: 12px;
    color: #dc3232;
    display: none;
}

p.error span.error,
div.error span.error {
    display: block;
}

.signup-modal {
    display: none;
}

.signup-modal .close-btn,
.featherlight .close-btn,
.ark-message .close-btn {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 25px;
    height: 25px;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.signup-modal .close-btn img,
.featherlight .close-btn img,
.ark-message .close-btn img {
    width: 45%;
    height: auto;
}

.signup-modal .inner {
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 30px 20px;
}

.featherlight.ark-signup-lightbox .featherlight-content {
    width: 80%;
    max-width: 370px;
    padding: 25px 25px 25px 25px !important;
}

.featherlight.ark-signup-lightbox .featherlight-content {
    overflow: visible;
    border-bottom: 0px;
}

.featherlight.ark-signup-lightbox .featherlight-close-icon {
    color: #fff;
    font-size: 20px;
    background: transparent;
    font-weight: 700;
    top: 6px;
    box-sizing: content-box;
    right: 6px;
    width: 20px;
    height: 20px;
    padding: 0px;
}

.feather-light-inner {
    padding: 35px;
}

.ark-signup-lightbox p.heading {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4em;
    text-transform: uppercase;
    color: var(--ark-grey);
    margin-top: 0em;
    margin-bottom: 0em;
}

.ark-signup-lightbox .img-holder {
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    padding-bottom: 63.12%;
}

.ark-signup-lightbox .img-holder img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

.ark-signup-lightbox input[type="email"],
.ark-signup-lightbox input[type="text"] {
    background-color: #fff;
    color: var(--ark-grey);
    -webkit-appearance: none;
    border: 0px;
    padding: 7px;
    outline: none;
    font-weight: 300;
    width: 100%;
    font-size: 13px;
    margin: 0px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0px;
}

.ark-signup-lightbox select {
    background-color: #fff;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 6px 7px;
    font-family: "Avenir", "AvenirWeb", sans-serif;
    font-weight: 300;
    font-size: 13px;
    outline: none;
    color: var(--ark-grey);
    background-image: url("/wp-content/themes/arkitektura/images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 10px auto;
    margin: 0px;
}

@-moz-document url-prefix() {
    .ark-signup-lightbox select {
        text-indent: -2px;
    }
}

.ark-signup-lightbox select option {
    font-family: "Avenir", "AvenirWeb", sans-serif;
    font-weight: 300;
    font-size: 13px;
}

.ark-signup-lightbox ::-moz-placeholder {
    opacity: 1;
}

.ark-signup-lightbox .js-cm-form input::placeholder {
    color: #97989a;
    top: 0px;
    font-size: 13px;
}

.ark-signup-lightbox .input-wrap {
    /*border-bottom: 1px solid #000;*/
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.two-col .input-wrap {
    flex-basis: 50%;
}

.ark-signup-lightbox p.button-holder {
    margin-bottom: 0px;
    text-align: center;
}

.ark-signup-lightbox .input-wrap p {
    margin: 0px;
    flex-basis: 100%;
}

.ark-signup-lightbox button {
    -webkit-appearance: none;
    border-radius: 0px;
    border: 1px solid var(--ark-grey);
    background-color: var(--ark-grey);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s linear;
    font-family: "Avenir", "AvenirWeb", sans-serif;
    font-size: 13px;
    padding: 9px 10px 8px 10px;
    margin: 0px;
    position: relative;
    top: 0px;
    line-height: 1em;
    text-transform: none;
    width: 100%;
}

.ark-signup-lightbox .toggle {
    position: absolute;
    width: 65px;
    height: 65px;
    top: -26px;
    left: -26px;
    cursor: pointer;
    pointer-events: visible;
    z-index: 1;
    /*transition: transform .25s;*/
    transition: all 0.25s ease-out;
}

.ark-signup-lightbox.hidden .toggle {
    /*transform: translate3d( 275px, 300px, 0px );*/
    top: calc(100% - 82px);
    left: calc(100% - 82px);
}

.ark-signup-lightbox .toggle div {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: transparent;
    border: 0px;
    outline: none;
    cursor: pointer;
}

.ark-signup-lightbox .toggle div.chat {
}

.ark-signup-lightbox .toggle div img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    opacity: 1;
    transition: opacity 0.2s;
}

.ark-signup-lightbox .toggle div.close img {
    width: 42px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ark-signup-lightbox .toggle div img.hidden {
    opacity: 0;
}

.ark-signup-lightbox .toggle div.visible {
    opacity: 1;
    pointer-events: visible;
}

@media (pointer: fine) {
    .ark-signup-lightbox .toggle div img.hover {
        opacity: 0;
    }

    .ark-signup-lightbox .toggle:hover div img.hover {
        opacity: 1;
    }
}

.ark-signup-lightbox .input-wrap.ark-name-field {
    display: none;
}

@media all and (max-width: 767px) {
    .signup-modal .inner {
        padding: 35px 20px;
    }

    .two-col {
        gap: 0px;
        flex-wrap: wrap;
        flex-shrink: 0;
    }

    .two-col .input-wrap {
        flex-basis: 100%;
    }

    .two-col:last-of-type .input-wrap {
        margin-bottom: 15px;
    }

    .two-col:last-of-type .input-wrap:last-of-type {
        margin-bottom: 0px;
    }

    .ark-signup-lightbox input[type="email"],
    .ark-signup-lightbox input[type="text"],
    .ark-signup-lightbox button,
    .ark-signup-lightbox select,
    .ark-signup-lightbox .js-cm-form input::placeholder {
        font-size: 16px;
    }
}

/* End Signup Modal Window */

/* Design Services Page */

#post-7550 strong,
#post-7727 strong {
    font-weight: 900;
}

.how-it-works-cols .wp-block-column {
    box-shadow: 12px 12px 12px -8px #ccc;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    padding: 30px;
}

.how-it-works-cols .wp-block-column .wp-block-group figure {
    width: 35%;
    margin: 0px auto;
}

.how-it-works-cols .wp-block-column .wp-block-group h3 {
    text-transform: uppercase;
    color: #ffae33;
}

.how-it-works-cols .wp-block-column .wp-block-group h3:after {
    content: "";
    display: block;
    border-bottom: 1px solid #ffae33;
    height: 1px;
    width: 80px;
    margin: 10px auto 0px auto;
}

p.ark-get-started {
    margin-top: 70px;
    text-align: center;
}

.ark-get-started a {
    background-color: transparent;
    color: var(--ark-grey);
    padding: 10px 25px;
    font-size: 21px;
    border: 1px solid var(--ark-grey);
    transition: all 0.2s linear;
    display: inline-block;
}

.ark-get-started a::before {
    width: 0px;
}

.ark-get-started a:hover {
    background-color: var(--ark-grey);
    color: #fff;
    background-size: 0px 1px;
    border: 1px solid var(--ark-grey);
}

.ark-get-started a:hover:before {
    width: 0px;
}

.view-all-brands {
    position: absolute;
    top: 50%;
    left: 0px;
    margin: 0px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
}

.view-all-brands a {
    border-bottom: 0px;
    color: var(--ark-grey);
}

.view-all-brands a:hover {
    color: #fff;
}

.view-all-brands a:before {
    display: none;
}

.design-servces.flexslider {
    background-color: transparent;
    border: 0px;
}

.post-7550 .flickity-slider figure:before {
    display: none;
}

h3.how-it-works {
    margin-top: 50px;
}

@media (min-width: 782px) {
    .how-it-works-cols .wp-block-column:not(:first-child) {
        margin-left: 80px;
    }
}

@media (max-width: 767px) {
    #post-7550 .project-text.text-holder,
    #post-7810 .project-text.text-holder {
        font-size: 16px;
        line-height: 1.6em;
    }

    #post-7550 .project-text h2,
    #post-7550 .project-text h3,
    #post-7810 .project-text h2,
    #post-7810 .project-text h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .design-servces .one-col,
    .design-servces .products .product {
        width: calc(33.3333% - 6px) !important;
        flex-basis: calc(33.3333% - 16px) !important;
        margin-left: 8px !important;
        float: left !important;
    }

    .design-servces .one-col:first-child,
    .design-servces .products .product:first-child {
        margin-left: 0px !important;
    }
}

@media (min-width: 600px) and (max-width: 781px) {
    .how-it-works-cols .wp-block-column:not(:first-child) {
        margin-left: auto;
    }

    .how-it-works-cols .wp-block-column:nth-child(2n) {
        margin-left: auto;
    }

    .how-it-works-cols .wp-block-column {
        margin: 0px auto 40px auto;
    }
}

@media (max-width: 599px) {
}

@media (max-width: 599px) {
    .how-it-works-cols .wp-block-column {
        margin-bottom: 40px;
    }

    .post-7550 .flickity-enabled,
    .post-7550 .flickity-viewport {
        height: 0px !important;
        padding-bottom: 71%;
    }
}

/* End Design Services Page */

/* Your Vsion Page */

.ark-brand-logos {
    margin: 0px auto;
    width: 100%;
    max-width: 968px;
    font-size: 24px;
    line-height: 39px;
}

.ark-brand-logos .inner {
    margin: 0px -0.75%;
    display: flex;
    flex-wrap: wrap;
}

.ark-brand-logos .brand {
    width: 9%;
    background-color: #d8dadb;
    margin: 0.75%;
    padding: 1%;
    transition: background-color 0.15s linear;
    position: relative;
}

.ark-brand-logos .brand:hover {
    background-color: #52555b;
}

.ark-brands-header {
    max-width: 968px;
    margin: 0px auto;
}

.page-id-7559 #primary h2 {
    font-size: 36px;
}

@media (max-width: 767px) {
    .page-id-7559 h2 {
        font-size: 24px;
    }

    .ark-brands-header {
        width: var(--ark-container-width);
    }

    .ark-brand-logos {
        width: var(--ark-container-width);
        margin: 0px auto;
    }

    .ark-brand-logos .inner {
        margin: 0px auto;
        gap: 1.5%;
    }

    .ark-brand-logos .brand {
        width: auto;
        flex-basis: 23.5%;
        margin: 0 0 1.5% 0px;
        box-sizing: border-box;
    }

    .ark-brand-logos .brand:nth-child(4n) {
    }
}

/* End Your Vsion Page  */

/* Products Section */

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

.ark-products-main .ark-feature-header {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
    position: relative;
}

.ark-header-caption {
    position: absolute;
    bottom: 15px;
    right: 30px;
    color: #fff;
    margin: 0px;
    z-index: 2;
}

.ark-header-caption p {
    margin: 0px;
}

.ark-header-caption a {
    border-bottom: 1px solid #fff;
}

.ark-header-caption a:hover {
    border-bottom: 1px solid #000;
}

.ark-featured-img {
    margin-bottom: 40px;
}

.ark-product-sort {
    border-width: 1px 0px;
    border-style: solid;
    border-color: #e5e4e5;
    margin-bottom: 40px;
    margin-top: 40px;
    padding: 24px 0px 20px 0px;
}

.ark-product-sort .inner {
    display: flex;
    align-content: center;
    flex-direction: row;
    width: 95%;
    max-width: var(--ark-max-width);

    margin: 0px auto;
}

.ark-product-sort h1 {
    margin: 0px;
    line-height: 1em;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.ark-product-sort ul {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 0px 50px;
    line-height: 1em;
    text-transform: lowercase;
}

.ark-product-sort li {
    display: inline-block;
    margin-right: 20px;
}

.ark-product-sort li a {
    /*background-size: 100% 1px;
  background-image: linear-gradient(var(--ark-grey), var(--ark-grey));*/
}

.ark-product-sort li:last-child {
    margin-right: 0px;
}

.ark-child-cat {
}

.ark-child-cat li {
}

.ark-child-cat li:last-child {
    margin-right: 0px;
}

.ark-product-sort .ark-views {
    margin-left: auto;
}

.ark-products-main .products {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
    gap: 16px;
}

.ark-products-main .products .product.one-col {
    flex-basis: calc(50% - 8px);
    padding: 0px;
}

.products .product.one-col {
    flex-basis: 50%;
    margin-bottom: 40px;
}

.products.quickship-products .product.one-col {
    flex-basis: 50%; /*33.3333%;*/
}

.products .product .caption-holder {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
}

.products .product .caption {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    text-transform: none;
    font-family: "AvenirWeb", "Avenir", sans-serif;
    margin-top: 15px;
    line-height: 1.6em;
    color: var(--ark-grey);
}

.products .product .caption a {
    color: var(--ark-grey);
}

.products .product .caption a.prod-title {
    background-image: linear-gradient(#000, #000);
    background-position: 0% 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: 0% 1px;
}

.products .product .caption a.prod-title:hover {
    background-size: 100% 1px;
}

@media (max-width: 900px) {
    .ark-header-caption {
        font-size: 10px;
        text-align: right;
        right: 10px;
        bottom: 10px;
        width: 60%;
        line-height: 1.4em;
    }
}

@media (max-width: 767px) {
    .products .product .caption {
        line-height: 1.4em;
        margin-top: 15px;
        font-size: 14px;
    }

    .ark-product-sort .inner {
        width: var(--ark-container-width);
    }

    .ark-products-main .products {
        width: var(--ark-container-width);
    }

    .ark-products-main .products .product.one-col {
        flex-basis: 100%;
    }
}

/* End of Products Section */

/* Contact Page */

.ark-contact-details {
    line-height: 1.4em;
}

.ark-contact-details figure {
    width: 90px;
    margin-bottom: 20px;
}

.ark-contact-details p {
    max-width: none;
}

.ark-contact-form h2 {
    margin-bottom: 0px;
    text-align: left;
}

.ark-contact-details strong a {
    border-bottom: 0px;
}

@media all and (max-width: 767px) {
    .ark-contact-details figure {
        width: 75px;
        margin-bottom: 20px;
    }

    .ark-contact-details p {
        font-size: 15px;
    }
}

/* End of Contact Section */

/* Locations Page */

.ark-page-header .wp-block-columns {
    width: var(--ark-text-width);
    margin: 0px auto;
    font-size: 20px;
    justify-content: center;
    gap: 70px;
}

.ark-page-header .wp-block-columns.ark-store-list {
    width: 100%;
    max-width: 875px;
    margin-top: 65px;
}

.ark-page-header .wp-block-columns .wp-block-column {
    margin-left: 0px !important;
}

.ark-contact-details.wp-block-columns .wp-block-column {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s all ease;
    max-width: 320px;
}

.ark-contact-details.wp-block-columns .wp-block-column.fadein {
    opacity: 1;
    transform: translateY(0px);
}

.ark-page-header .wp-block-columns .wp-block-column:first-child {
    margin-left: 0px !important;
}

.ark-page-header a:hover {
}

@media (max-width: 900px) {
    .ark-page-header .wp-block-columns {
        font-size: 18px;
    }

    .ark-page-header .wp-block-columns.ark-store-list {
        width: 90%;
    }

    #ark-contact-map.ark-contact-text {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .ark-page-header .wp-block-columns .wp-block-column {
        margin-left: 0px !important;
        flex-basis: 50% !important;
    }

    .ark-page-header .wp-block-columns.ark-store-list .wp-block-column {
        flex-basis: 100% !important;
        margin-bottom: 60px;
    }

    .ark-page-header .wp-block-columns {
        width: 100%;
        gap: 0px;
    }
}

/* Single Brand Page */

.brand-image {
    position: relative;
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding-bottom: 55.756%;
}

.post-7956 .brand-image {
    padding-bottom: 44.4%;
}

textarea.short-msg {
    height: 150px;
}

.brand-image h1 {
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    margin: 0px;
    top: 50%;
    text-align: center;
    z-index: 1;
    width: 100%;
    font-size: 52px;
    font-size: 3vw;
    font-weight: 600;
    line-height: 1em;
    transform: translateY(50px);
    transform: translateY(calc(-50% + 50px));
    opacity: 0;
    -webkit-transition:
        transform 0.75s ease,
        opacity 1s ease;
    -moz-transition:
        transform 0.75s ease,
        opacity 1s ease;
    -o-transition:
        transform 0.75s ease,
        opacity 1s ease;
    transition:
        transform 0.75s ease,
        opacity 1s ease;
    z-index: 1;
}

@media all and (min-width: 1700px) {
    .brand-image h1 {
        font-size: 3vw;
    }
}
/*
@media all and (max-width: 1260px) {
  .brand-image h1
  {
    font-size: 45px;
  }
}

@media all and (max-width: 1160px) {
  .brand-image h1
  {
    font-size: 40px;
  }
}*/

.brand-image .overlay.dark {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    mix-blend-mode: multiply;
    display: block;
}

/*.brand-image .overlay
{
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F7F9FA;
  position: absolute;
  top: 0px;
  left: 0px;
  content: ' ';
  transform: translateY(0%);
  transition: .5s all ease;
}*/

.brand-image img {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    opacity: 0;
    -webkit-transition:
        transform 0.75s ease,
        opacity 1s ease;
    -moz-transition:
        transform 0.75s ease,
        opacity 1s ease;
    -o-transition:
        transform 0.75s ease,
        opacity 1s ease;
    transition:
        transform 0.75s ease,
        opacity 1s ease;
    z-index: 1;
}

.brand-image img.lazy-loaded {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

img.lazy-loaded ~ .overlay {
    transform: translateY(-100%);
}

img.lazy-loaded ~ .overlay.dark {
    transform: translateY(0%);
}

.brand-image img.lazy-loaded ~ h1 {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);

    transform: translateY(calc(-50% - 20px));
}

@media all and (max-width: 767px) {
    .brand-image h1 {
        font-size: 34px;
    }
}

.type-brands .text-holder {
    max-width: 1600px;
    width: 70%;
    margin: 0px auto;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0.04px;
    color: #52555b;
}

.brand-navigation {
    list-style: none;
    padding: 0px;
    margin: 0px auto;
    width: 70%;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.brand-navigation p {
    margin-bottom: 0px;
}

.brand-navigation.visible {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.brand-navigation li {
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
    margin-right: 50px;
}

.brand-logo {
    width: 150px;
}

.brand-navigation li a {
    text-decoration: none;

    position: relative;
}

.brand-navigation li p a {
    color: var(--ark-grey);
}

.brand-navigation li p a:hover {
    color: #000;
}

/*.brand-navigation li a:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  transition: width .3s;
  border-bottom: 1px solid #000;
  width: 100%;
}

.brand-navigation li a:hover:before
{
  width: 100%;
}*/

.featherlight-content {
    width: 90%;
    max-width: 700px;
}

.featherlight {
    background: rgba(0, 0, 0, 0.4) !important;
}

.ark-brand-modal {
    max-width: 540px;
    width: 90%;
    display: none;
    text-align: center;
    margin: 65px auto 0px auto;
    padding: 0px 20px;
    color: var(--ark-grey);
}

.ark-brand-modal .inner {
    width: 100%;
    margin: 0px auto;
}

.ark-brand-modal h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 900;
    letter-spacing: 0.4px;
    max-width: 380px;
    margin: 0px auto 0px auto;
    color: var(--ark-grey);
}

.ark-brand-modal form {
    text-align: left;
}

.ark-brand-modal .wpcf7-text {
    /*font-size: 12px;*/
}

.ark-brand-modal .wpcf7-text::placeholder {
    /*font-size: 12px;
  top: -1px;*/
}

.ark-brand-modal .wpcf7-textarea {
    height: 130px;
    /*font-size: 12px;*/
}

.ark-brand-modal .wpcf7-textarea::placeholder {
    font-size: 12px;
    top: 0px;
}

/*.ark-brand-modal .wpcf7-submit
{
  padding: 10px 40px 8px 40px;
  background-color: #000;
}*/

.featherlight .featherlight-content {
    padding: 0px !important;
    padding-bottom: 25px !important;
    border-bottom: 0px !important;
}

.wp-block-group.ark-regular-text {
    text-align: left;
    margin-top: 90px;
}

.wp-block-group.left-align {
    text-align: left;
}

.fade-in-up p,
.fade-in-up h2,
.fade-in-up h3,
.fade-in-up li,
.fade-in-up .brand-navigation {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);

    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.fade-in-up p.fadein,
.fade-in-up h2.fadein,
.fade-in-up h3.fadein,
.fade-in-up li.fadein,
.fade-in-up.visible .brand-navigation {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

/*.fade-in-up.visible p,
.fade-in-up.visible h2,
.fade-in-up.visible .brand-navigation
{
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.fade-in-up.visible p:nth-of-type(2)
{
  transition-delay: .3s;
}

.fade-in-up.visible p:nth-of-type(3)
{
  transition-delay: .6s;
}

.fade-in-up.visible p:nth-of-type(4)
{
  transition-delay: .9s;
}

.fade-in-up.visible p:nth-of-type(5)
{
  transition-delay: 1.2s;
}

.fade-in-up.visible p:nth-of-type(6)
{
  transition-delay: 1.5s;
}

.fade-in-up.visible p:nth-of-type(7)
{
  transition-delay: 1.8s;
}

.fade-in-up.visible p:nth-of-type(8)
{
  transition-delay: 2.1s;
}*/

/* End Single Brand Page */

/* Form Messages */
.ark-contact-text div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ok {
    background-color: #21cd76;
    color: #fff;
    border: 0px;
    padding: 23px;
    margin-left: 0px;
}

.wpcf7 form {
    position: relative;
}

.ark-contact-text div.wpcf7-validation-errors,
.ark-contact-text div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
    background-color: #cd2132;
    border: 0px;
    padding: 23px;
    color: #fff;
    margin-left: 0px;
}

.wpcf7 form .wpcf7-response-output,
.ark-message {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 324px;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0px;
    opacity: 1;
    pointer-events: visible;
    transition: 0.2s opacity;

    border: 0px;
    /*box-shadow: 0px 6px 13px rgba(44, 50, 41, .4);*/
    box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.25);
}

.ark-message .close-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 20px;
    line-height: 20px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ark-message .wrap {
    width: 90%;
    margin: 0px auto;
}

.wpcf7 form .wpcf7-response-output:before {
    content: "\00d7";
    color: rgba(255, 255, 255, 0.85);
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 1em;
    cursor: pointer;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s opacity;
    margin: 0px;
    border: 0px;
    border-radius: 8px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
    background-color: #b40020;
    height: 416px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    letter-spacing: 0.2px;
    text-align: center;
    margin: 2em 0em 1em;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0px;
    opacity: 1;
    pointer-events: visible;
    transition: 0.2s opacity;
    display: flex;
    align-items: center;
}

.wpcf7 form .ark-message.ark-error {
    opacity: 0;
}

.wpcf7 form .ark-message.ark-error.visible {
    opacity: 1;
}

.ark-message.ark-confirmation {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.2s opacity;
    opacity: 0;
}

.ark-message.ark-confirmation.visible {
    opacity: 1;
}

.ark-message.ark-confirmation .wrap {
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #0a9d83;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    letter-spacing: 0.2px;
    text-align: center;
    margin: 2em 0em 1em;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0px;
    opacity: 1;
    pointer-events: visible;
    transition: 0.2s opacity;
    display: flex;
    align-items: center;
    height: 416px;
}

.ark-message {
    background-color: #fff;
    color: #97989a;
    font-size: 18px;
    line-height: 1.7em;
    letter-spacing: 0.2px;
    text-align: left;
    margin: 2em 0em 1em;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s opacity;
    display: flex;
    align-items: center;
    height: auto;
    padding: 38px;
    max-width: 536px;
    justify-content: center;
}

.ark-message.no-modal {
    position: fixed;
}

.ark-message.visible {
    opacity: 1;
    pointer-events: visible;
}

.ark-message .wrap {
    width: 100%;
    margin: 0px;
    border: 0;
    padding: 38px;
    box-sizing: border-box;
    min-height: 300px;
    display: flex;
    align-items: center;
    white-space: normal;
}

.ark-message.ark-error .wrap {

    color: #ec1a1a;
}

.ark-message.ark-confirmation {
    background-color: #fff; /*#0A9D83;*/
    color: #97989a; /*rgba(255,255,255,.85);*/
    font-size: 18px;
    line-height: 1.7em;
    letter-spacing: 0.2px;
    text-align: left;
    margin: 2em 0em 1em;
    box-sizing: border-box;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s opacity;
    display: flex;
    align-items: center;
    height: auto;
    text-transform: uppercase;
    padding: 38px;
    max-width: 536px;
    justify-content: center;
}

.ark-message.ark-confirmation .wrap {
    width: 100%;
    margin: 0px;

    padding: 38px;
    min-height: 300px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.ark-message.ark-confirmation h2 {
    color: #494b50;
    margin: 0px;
    font-size: 1.2em;
    text-transform: uppercase;
}

.ark-message.ark-confirmation p {
    margin: 0px;
}

.ark-message.ark-confirmation.visible {
    opacity: 1;
    pointer-events: visible;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    line-height: 25px;
}

.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

div.wpcf7 .ajax-loader {
    background-image: url("/wp-content/themes/arkitektura22/images/loader2.gif");
    background-position: center;
    background-size: 100% auto;
    width: 16px;
    height: 16px;
    background-color: transparent;
}

.wpcf7-select {
    position: relative;
    padding: 10px 10px 8px 10px;
    font-size: 14px;
    color: #858585;
    font-weight: 300;
}

.wpcf7-select.entered,
#wpcf7-f7959-p7956-o1 .wpcf7-select.entered,
#wpcf7-f576-p425-o1 .wpcf7-select.entered {
    color: var(--ark-grey);
}

@media (max-width: 767px) {
    .wpcf7 form.sent .wpcf7-response-output,
    .wpcf7 form.invalid .wpcf7-response-output,
    .wpcf7 form.unaccepted .wpcf7-response-output {
        height: 60vh;
        width: 80%;
        position: fixed;
    }

    .lead-modal {
        margin: 45px auto 0px auto;
        padding-bottom: 40px;
        width: 90%;
        padding: 0px 15px;
    }

    .ark-message {
        width: 80vw;
    }

    .ark-message.ark-confirmation {
        padding: 19px;
        font-size: 13px;
    }

    .ark-message.ark-confirmation .wrap {
        padding: 19px;
        min-height: 200px;
    }

    .ark-message.ark-confirmation .close-btn {
        width: 21px;
        height: 21px;
    }
}

/* End of Form Messages */

/* Catalog Modal */

li.ark-catalogs
{
    margin-top: 26px;
}

.ark-catalog-modal
{
    position: fixed;
    top: 120px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #FFF;
    padding-bottom: 60px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all .3s linear;
}

body.admin-bar .ark-catalog-modal
{
    top: 152px;
}

.ark-catalog-modal .wrap
{
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    overflow: auto;
}

.ark-catalog-modal .inner
{
    width: 95%;
    margin: 150px auto 0 auto;
    max-width: 1234px;
    position: relative;
    box-sizing: border-box;
    padding: 0px 0px 60px 0px;
    opacity: 1;
    transition: all .3s linear;
}



.ark-catalog-modal .wp-block-columns
{
    gap: 17px;
    margin: 0px 0px 0px 0px;
}

.btn-wrap
{
    position: absolute;
    top: 103px;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
    width: 95%;
    z-index: 2;
    max-width: 1234px;
    height:24px;
}

.ark-catalog-modal .close-btn
{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
    -webkit-appearance: none;
    background-color: transparent;
    padding: 0px;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    border: none;
}

.ark-catalog-modal .close-btn svg
{
    transform: translate3d(-1px, 0px, 0px);
}

.ark-catalog-modal.visible
{
    opacity: 1;
    pointer-events: visible;
}

.ark-catalog-modal .inner .wp-block-column
{
    opacity: 0;
    transform: scale(.95) translate3d(0,25px,0);
    transition: opacity .3s linear, transform 800ms ease 0ms;
}

.ark-catalog-modal .inner .wp-block-column:nth-child(2)
{
    transition-delay: .2s;
}

.ark-catalog-modal .inner .wp-block-column:nth-child(3)
{
    transition-delay: .3s;
}

.ark-catalog-modal .inner.visible .wp-block-column
{
    opacity: 1;
    transform: scale(1) translate3d(0,0px,0);
}


.ark-catalog-modal .inner .wp-block-column figure
{
    overflow: hidden;
}

.ark-catalog-modal .inner .wp-block-column figure img
{
    transform: scale(1) translate3d(0px, 0px, 0px);
    transition: transform 1.5s ease, opacity .3s linear;
}

.ark-catalog-modal .inner .wp-block-column:hover figure img
{
    transform: scale(1.025) translate3d(0px, 0px, 0px);
}

.ark-catalog-modal .wp-block-column figcaption,
.ark-catalog-modal .wp-block-column p
{
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'AvenirCondensedWeb', sans-serif;
    font-size: 21px;
    margin-top: 22px;
    
}

.ark-catalog-modal .wp-block-column figcaption a,
.ark-catalog-modal .wp-block-column p a
{
    border-bottom: none;
    color: #000;
    border-bottom: 0px;
    text-decoration: none;
    background-image: linear-gradient(#000, #000);
    background-position: 0% 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: 0% 1px;
}

@media (pointer: fine) {
    .ark-catalog-modal .wp-block-column figcaption a:hover,
    .ark-catalog-modal .wp-block-column p a:hover
    {
        background-size: 100% 1px;
    }
}



@media all and (max-width: 781px){

    .ark-catalog-modal .close-btn
    {
        right: 55px;
        bottom: 10px;
        top: auto;
    }

    .ark-catalog-modal .inner
    {
        width: 100%;
        margin-top: 125px;
    }

    .btn-wrap
    {
        transform: translate3d(0px, 0px, 0px);
        left: auto;
        box-sizing: border-box;
        width: 100%;
        top: 0;
        height: 78px;
        background-color: #FFF;
  
    }

    .ark-catalog-modal .wp-block-columns
    {
        padding: 0px 55px;
        gap: 60px;
    }

}

/* End Catalog Modal */

/* ArkPro page */

body.page-id-7956 .site-main
{
    margin-top: 0px;
}

.ark-image-header
{
    margin-bottom: 65px;
}

.ark-image-header figure
{
    width: 320px;
    margin: 0px auto;
}

@media all and (max-width: 781px){
    .ark-image-header figure
    {
        width: 250px;
    }
}

/* end of ArkPro page */

/* 404 Page */

.error-404 {
    text-align: center;
    min-height: 600px;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.005em;
    margin-top: 225px;
}

.error-404 h1 {
    font-weight: 900;
    text-transform: none;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 26px;
}

.error-404 a {
}

/*  end of 404 Page */

.ark-contact-text {
    width: 100%;
    max-width: 875px;
    margin: 0px auto;
    margin-bottom: 0px;
}

#location-map {
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
}

.map-marker {
    background-image: url("/wp-content/themes/arkitektura22/images/pin_orange.png");
    background-size: 13px auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.mapboxgl-popup {
    max-width: 200px;
    font-family: "AvenirWeb", sans-serif;
    font:
        12px/20px "AvenirWeb",
        sans-serif;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mapboxgl-popup-content {
    padding: 10px 30px 10px !important;
}

.ark-page-header .ark-store-list p {
    width: 100%;
    max-width: 100%;
}

/* End of Locations Page */

/* About Page */

.ark-about-text {
    margin: 0px auto;
    font-size: 20px;
    line-height: 1.6em;
    border-bottom: 1px solid #ccc;
    padding-top: 40px;
    padding-bottom: 40px;
}

.ark-about-text:last-of-type {
    border-bottom: 0px;
}

.ark-about-text .wp-block-group__inner-container {
    width: 95%;
    max-width: var(--ark-max-width);
    margin: 0px auto;
}

.ark-about-text.ark-showroom {
    text-align: center;
}

.ark-about-text.ark-showroom figure {
    overflow: hidden;
    height: 0px;
    padding-bottom: 62.6%;
}

.ark-about-text figure img {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s all ease;
}

.ark-about-text figure img.lazy-loaded {
    opacity: 1;
    transform: translateY(0px);
}

.ark-about-text.ark-showroom h2 {
    text-align: left;
}

.ark-about-text.ark-showroom h3 {
    font-family: "Avenir-Medium", sans-serif;
    text-transform: none;
}

.ark-about-text.ark-showroom p {
    margin: 0px auto;
}

.ark-about-text.ark-showroom p.ark-vs-link {
    margin-top: 40px;
}

.ark-about-text.ark-showroom figure {
    margin-bottom: 40px;
}

.ark-about-text h2 {
    font-size: 36px;
    line-height: 1.4em;
}

.ark-about-text .wp-block-columns {
    margin: 0px;
}

.ark-about-text p {
    width: 90%;
}

.ark-founder .wp-block-column {
    width: 100%;
}

.ark-founder .wp-block-image {
    width: 100%;
    height: 0px;
    padding-bottom: 100%;
    overflow: hidden;
}

.ark-founder-links {
    margin-top: 42px;
}

.ark-testimonials {
    font-size: 20px;
    line-height: 1.6em;
}

.ark-testimonials .wp-block-group__inner-container {
    max-width: 1200px;
}

.ark-testimonials p {
    margin-bottom: 42px;
}

.ark-masonry-grid .wp-block-group__inner-container {
    columns: 3 242px;
    column-gap: 42px;
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    transform: translateY(50px);
    transition: all 0.7s ease;
    width: 100%;
}

.ark-masonry-grid p {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    padding-right: 0px;
    margin-bottom: 80px;
    padding-left: 0px;
    box-sizing: border-box;
}

.ark-showroom-desc {
    width: var(--ark-text-width);
    margin: 0px auto;
}

.assembly-logo {
    width: 250px;
    margin-top: 40px;
}

#post-3340 .entry-content {
    width: 90%;
    margin: 0px auto;
    max-width: 900px;
}

@media (max-width: 1220px) {

    .ark-founder-links .desktop-only
    {
        display: none;
    }
}

@media (max-width: 900px) {
    .ark-about-text {
        font-size: 16px;
        line-height: 1.4em;
    }

    .ark-about-text .ark-team a {
        line-height: 2em;
    }

    .ark-masonry-grid .wp-block-group__inner-container {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .ark-about-text .wp-block-group__inner-container {
        width: var(--ark-container-width);
    }

    .ark-about-text p {
        width: 100%;
    }

    .ark-showroom-desc {
        width: 100%;
        text-align: left;
    }

    .ark-showroom-desc .wp-block-group__inner-container {
        width: 100%;
    }

    .ark-mobile-reverse .wp-block-columns {
        flex-direction: column-reverse;
        flex-grow: 1;
    }

    .ark-about-text:last-of-type {
        padding-bottom: 0px;
    }
}

/* End of About Page */

/* Ark Hotline */

.ark-hotline {
    position: fixed;
    bottom: 0px;
    right: 0px;
    background-color: transparent;
    width: 345px;
    height: 394px; /*371px; 343px*/
    box-sizing: border-box;
    font-size: 12px;
    line-height: 18px;
    color: var(--ark-grey);
    z-index: 12;
    pointer-events: visible;
    display: none;
}

.ark-hotline .close-btn {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 25px;
    height: 25px;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-out;
}

.ark-hotline .close-btn img {
    width: 45%;
    height: auto;
}

.ark-hotline a {
    border-bottom: 0px;
}

.ark-hotline.hidden {
    pointer-events: none;
}

.ark-hotline .inner {
    padding: 25px;
    transition:
        transform 0.25s ease-out,
        opacity 0.25s ease-out;
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: right bottom 0;
    background-color: #fff;
    height: 100%;
    box-sizing: border-box;
}

.ark-hotline .inner .wrap {
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 20px;
}

.ark-hotline.hidden .inner {
    transform: scale(0, 0);
    opacity: 0;
}

.ark-hotline .toggle {
    position: absolute;
    width: 65px;
    height: 65px;
    top: -26px;
    left: -26px;
    cursor: pointer;
    pointer-events: visible;
    z-index: 1;
    transition: all 0.25s ease-out;
}

.ark-hotline.hidden .toggle,
.ark-hotline.hidden .close-btn {
    /*transform: translate3d( 275px, 300px, 0px );*/
    top: calc(100% - 82px);
    left: calc(100% - 82px);
}

.ark-hotline .toggle div {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: transparent;
    border: 0px;
    outline: none;
    cursor: pointer;
}

.ark-hotline .toggle div.chat {
}

.ark-hotline .toggle div img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    opacity: 1;
    transition: opacity 0.2s;
}

.ark-hotline .toggle div.close img {
    width: 42px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ark-hotline .toggle div img.hidden {
    opacity: 0;
}

.ark-hotline .toggle div.visible {
    opacity: 1;
    pointer-events: visible;
}

@media (pointer: fine) {
    .ark-hotline .toggle div img.hover {
        opacity: 0;
    }

    .ark-hotline .toggle:hover div img.hover {
        opacity: 1;
    }
}

.ark-hotline a {
    color: var(--ark-grey);
}

.ark-hotline a:before {
    width: 100%;
}

.ark-hotline h3 {
    text-transform: uppercase;
    margin: 0px;
    font-weight: 500;
    font-size: 14px;
}

.location-numbers {
    line-height: 1.9em;
    border-collapse: collapse;
    width: 100%;
}

.location-numbers a {
    text-decoration: underline;
    border-bottom: 0px;
    color: var(--ark-grey);
}

.location-numbers td {
    padding-right: 8px;
    vertical-align: top;
    line-height: 1.4em;
    padding-bottom: 10px;
}

.location-numbers td:nth-child(3) {
    color: #f1954c;
    text-align: right;
    font-weight: 500;
}

.store-closed,
.store-closed a {
    color: #a5a5a5;
}

.store-closed a:before {
    width: 0px;
}

.main-email,
.ark-promo-container p.main-email {
    margin: 10px 0px 0px 0px;
}

.main-email a {
    font-weight: 500;
    color: var(--ark-grey);
}

.main-email a:before {
    width: 0px;
}

@media all and (max-width: 767px) {
    .ark-hotline .toggle {
        width: 58px;
        height: 58px;
    }

    .ark-hotline.hidden .toggle {
        top: calc(100% - 92px);
    }
}

/* New Feature List */
.feature-list {
    text-transform: uppercase;
    line-height: 2em;
    font-size: 12px;
}

.feature-list strong {
    font-weight: 500;
}

.ark-hotline .feature-list a {
    border: 0px;
    text-decoration: underline;
}

.ark-hotline .feature-list a span {
    width: 13px;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-right: 6px;
}

.ark-hotline .feature-list a:before,
.ark-hotline .feature-list a:hover:before {
    width: 0%;
}

.ark-hotline .feature-list a.vs-link {
    color: #ff5200;
    word-spacing: 1px;
    letter-spacing: 0.33px;
}

.ark-hotline .feature-list a.qs-link {
    color: #41ad49;
    word-spacing: 2px;
}

.ark-hotline .feature-list a.ds-link {
    color: #00aeef;
    word-spacing: 0px;
}

@media all and (max-width: 767px) {
    .feature-list {
        line-height: 2.2em;
    }
}

/* End new feature list */

.design-note {
    background-color: #f76900;
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
}

.design-note a {
    color: #fff;
}

.ark-hotline .design-note a:before {
    border-bottom: 1px solid #fff;
}

@media all and (max-width: 767px) {
    .ark-hotline {
        font-size: 12px;
        line-height: 20px;
        /*max-width: 75%;
    height: 391px;*/
        max-width: 80%;
        height: 420px;
        z-index: 1000;
    }

    .location-numbers {
        line-height: 2.25em;
    }
    /*.ark-hotline.hidden .toggle
  {
    transform: translate3d( 190px, 310px, 0px );
  }*/

    .ark-hotline .inner {
        padding: 28px 18px 18px 18px;
    }

    .desktop-only {
        display: none;
    }
}

@media all and (max-width: 320px) {
    .ark-hotline {
        font-size: 12px;
        line-height: 20px;
        max-width: 75%;
        height: 441px;
    }

    .ark-hotline.hidden .toggle {
    }
}

@media (pointer: none) {
    .ark-hotline .toggle:hover div img.hover {
        opacity: 0;
    }
}

@media (pointer: coarse) {
    .ark-hotline .toggle:hover div img.hover {
        opacity: 0;
    }
}

/* End of Ark Hotline */

/* Audio Player */

.episode-audio,
.episode-audio div,
.episode-audio h1,
.episode-audio a,
.episode-audio img,
.episode-audio span,
.episode-audio button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

div.episode-audio {
    position: relative;
    width: var(--ark-text-width);
    height: 180px;
    background-color: transparent;
    box-sizing: border-box;
    margin: 30px auto 0px auto;
}

.episode-audio .mejs-container,
.episode-audio .mejs-container,
.episode-audio .mejs-controls,
.episode-audio .mejs-embed,
.episode-audio .mejs-embed body {
    background-color: transparent !important;
    height: 180px !important;
}

.episode-audio .mejs-button.mejs-playpause-button {
    height: 52px !important;
    width: 52px !important;
    margin: 0px auto 0px auto;
}

.episode-audio .mejs-button.mejs-playpause-button > button {
    background: transparent
        url("/wp-content/themes/arkitektura/images/play-sprite.svg") !important;
    background-repeat: no-repeat !important;
    background-size: 104px auto !important;
    height: 52px !important;
    width: 52px !important;
    background-position: 0 0 !important;
    margin: 0px;
}

.episode-audio .mejs-button.mejs-playpause-button.mejs-pause > button {
    background-position: -53px 0 !important;
}

.episode-audio .mejs-controls .mejs-time-rail .mejs-time-current {
    background: #dac200 !important;
}

.episode-audio .mejs-time-buffering,
.episode-audio .mejs-time-current,
.episode-audio .mejs-time-float,
.episode-audio .mejs-time-float-corner,
.episode-audio .mejs-time-float-current,
.episode-audio .mejs-time-hovered,
.episode-audio .mejs-time-loaded,
.episode-audio .mejs-time-marker,
.episode-audio .mejs-time-total {
    height: 5px !important;
}

.episode-audio .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: #e0e0e0 !important;
}

.episode-audio .mejs-time-rail {
    height: 5px !important;
    margin: 0 !important;
    padding-top: 0 !important;
    position: absolute !important;
    width: 100% !important;
    top: auto !important;
    left: 0 !important;
    bottom: 0px !important;
}

.episode-audio .mejs-time-float {
    display: none !important;
}

.episode-audio .mejs-time-total {
    margin: 0 !important;
}

.episode-audio .mejs-currenttime-container {
    position: absolute !important;
    /*left: calc(50% - 20px) !important;*/
    transform: translateX(-50%);
    bottom: 106px !important;
    color: #292929 !important;
    height: auto !important;
    font-size: 13px !important;

    width: 100px;
    text-align: right !important;
    left: calc(50% - 50px) !important;
}

.episode-audio .mejs-currenttime-container,
.episode-audio .mejs-duration-container {
    display: block !important;
    top: auto !important;
}

.episode-audio .mejs-button.mejs-playpause-button > button {
    margin: 0px 0px 0px 0px !important;
}

.episode-audio .mejs-currenttime {
    padding-left: 1px !important;
}

.episode-audio .mejs-currenttime-container:after {
    content: "/" !important;
    display: inline-block;
    margin-left: 5px;
}

.episode-audio .mejs-duration-container {
    position: absolute !important;
    left: calc(50% + 5px) !important;
    bottom: 106px !important;
    color: #292929 !important;
    margin-left: 1px !important;
    height: auto !important;
    font-size: 13px !important;
}

.episode-audio .mejs-volume-button,
.episode-audio .mejs-horizontal-volume-slider {
    display: none !important;
}

.episode-audio .mejs-container .mejs-controls {
    padding-top: 0px;
}

/* end of Audio Player */

/* Splide code */

.ark-page-header .ark-gallery {
    width: 100%;
    /*max-width: var(--ark-max-width);*/
    margin: 0px auto 65px auto;
    opacity: 0;
    transition:
        transform 0.75s ease,
        opacity 1s ease;
    transform: translateY(50px);
    height: 0px;
    padding-bottom: 63.12%; /* or 53% */
    overflow: hidden;
}

.ark-page-header .ark-gallery.visible {
    transform: translateY(0px);
    opacity: 1;
}

.ark-page-header .ark-gallery .wp-block-group__inner-container {
}

.splide__track--fade .wp-block-gallery figure:before {
    display: block;
    position: absolute;
    top: auto;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background-image: url("/wp-content/themes/arkitektura22/images/product-gradient.png");
    background-repeat: repeat-x;
    background-position: left 30px;
    background-size: 100% 100%;
    mix-blend-mode: multiply;
    opacity: 0.9;
    z-index: 1;
}

.splide__track--fade .wp-block-gallery figure,
.splide__track--fade
    .wp-block-gallery.has-nested-images
    figure.wp-block-image.splide__slide {
    position: absolute;
    left: 0px;
    top: 0px;
}

.splide__track--fade .wp-block-gallery figure.is-active,
.splide__track--fade
    .wp-block-gallery.has-nested-images
    figure.wp-block-image.splide__slide.is-active {
    position: relative;
    left: 0px;
    top: 0px;
}

.ark-page-header .ark-gallery figure.wp-block-gallery {
    width: 100%;
    flex-wrap: nowrap;
}

.splide__arrows svg {
    display: none;
}

.splide__arrow {
    opacity: 0;
    transition: all 0.2s ease;
    pointer-events: none;
}

.splide__arrow.splide__arrow--next {
    background-image: url("/wp-content/themes/arkitektura22/images/arrows/arrow-right.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: auto 100%;
    width: 40px;
    height: 40px;
    margin: 0px;
    padding: 0px;
    right: 20px;
    transform: translateX(10px, -50%);
}

.splide__arrow.splide__arrow--prev {
    background-image: url("/wp-content/themes/arkitektura22/images/arrows/arrow-left.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: auto 100%;
    width: 40px;
    height: 40px;
    margin: 0px;
    padding: 0px;
    left: 20px;
    transform: translateX(-10px, -50%);
}

/*.splide__arrow
{
  opacity: 1;
}

.splide__arrow:hover:not(:disabled)
{
  opacity: 1;
}*/

.ark-gallery:hover .splide__arrow {
    opacity: 1;
    transform: translate(0px, -50%);
}

.splide__pagination__page {
    border-radius: 0px;
    height: 2px;
    width: 30px;
}

.splide__pagination__page.is-active {
    background: var(--ark-grey);
    transform: scale(1);
}

.a-progress {
    background-color: rgba(29, 31, 38, 0.2);
    height: 1px;
    max-width: 200px;
    max-width: calc(100% - 110px);
    width: 30%;
    overflow: hidden;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.a-progress__bar {
    background-color: #1d1f26;
    height: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: -webkit-transform 1.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 1.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:
        transform 1.4s cubic-bezier(0.645, 0.045, 0.355, 1),
        -webkit-transform 1.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
}

@media all and (max-width: 900px) {
    .ark-page-header
        .ark-gallery
        .wp-block-gallery.has-nested-images
        figure.wp-block-image
        figcaption {
        font-size: 10px;
        text-align: right;
        right: 10px;
        bottom: 10px;
        width: 60%;
        line-height: 1.4em;
        position: absolute;
        right: 10px;
        bottom: 10px;
        left: auto;
        padding: 0px;
    }
}

@media (max-width: 767px) {
    .ark-page-header .ark-gallery {
    }

    .splide__arrow.splide__arrow--next,
    .splide__arrow.splide__arrow--prev {
        width: 20px;
        height: 20px;
    }

    .splide__arrow.splide__arrow--next {
        right: 10px;
    }

    .splide__arrow.splide__arrow--prev {
        left: 10px;
    }
}

/* End Splide code */

/* Flexslider Code */

.flex-direction-nav a {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 1;
    margin: 0px;
    border: 0px;
}

.flex-direction-nav a img {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: auto;
}

/* End Flexslider Code */

@media all and (max-width: 900px) {
    .one-col,
    .vs-rooms.products .product.one-col,
    .products.quickship-products .product.one-col {
        flex-basis: 50%;
    }

    .brand-navigation li {
        margin-bottom: 8px;
        display: block;
    }

    .type-brands .text-holder {
        padding-top: 20px;
    }
}

@media all and (max-width: 767px) {
    .one-col,
    .vs-rooms.products .product.one-col,
    .products.quickship-products .product.one-col,
    .products .product.one-col {
        flex-basis: var(--ark-container-width);
        margin: 0px auto 40px auto;
        padding: 0px;
    }

    .vs-rooms.products .product.one-col:last-of-type {
        margin-bottom: 0px;
    }

    .brand.one-col {
        flex-basis: 100%;
    }

    .brand.one-col:last-of-type {
        margin-bottom: 0px;
    }

    .wpcf7-form div.row div {
        flex-basis: 100%;
        margin-right: 0%;
    }

    .brand-navigation,
    .text-holder,
    .type-brands .text-holder {
        width: 95%;
        box-sizing: border-box;
    }

    .desktop-only {
        display: none;
    }

    .ark-featured-img,
    body.term-quickship .ark-featured-img {
        /*width: var(--ark-container-width);*/
        margin: 0px auto 40px auto;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    gap: 72px 1.35%;
    grid-template-areas: ". . . . . . . . . . . .";
    position: fixed;
    height: 100%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;

    width: 95%;
}

.grid-container.visible {
    opacity: 0;
}

.grid-container div {
    background-color: #cccccc8a;
}
