@charset "UTF-8";

@keyframes qode-rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes qode-fade-in {
    0% {
        opacity: 0;
        visibility: hidden
    }

    100% {
        opacity: 1;
        visibility: visible
    }
}

@keyframes qode-fade-out {
    0% {
        opacity: 1;
        visibility: visible
    }

    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes qode-ball-fall {
    0% {
        opacity: 0;
        transform: translateY(-145%)
    }

    10% {
        opacity: .5
    }

    20% {
        opacity: 1;
        transform: translateY(0)
    }

    80% {
        opacity: 1;
        transform: translateY(0)
    }

    90% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: translateY(145%)
    }
}

@keyframes qode-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes qode-double-pulse {

    0%,
    100% {
        transform: scale(0)
    }

    50% {
        transform: scale(1)
    }
}

@keyframes qode-cube {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

@keyframes qode-rotating-cubes {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(.5)
    }

    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg)
    }

    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg)
    }

    75% {
        transform: translateX(0) translateY(42px) rotate(-270deg) scale(.5)
    }

    100% {
        transform: rotate(-360deg)
    }
}

@keyframes qode-stretch-delay {

    0%,
    100%,
    40% {
        transform: scaleY(.4)
    }

    20% {
        transform: scaleY(1)
    }
}

@keyframes qode-bounce-delay {

    0%,
    100%,
    80% {
        transform: scale(0)
    }

    40% {
        transform: scale(1)
    }
}

@keyframes qode-rotate-circles {
    to {
        transform: rotate(360deg)
    }
}

@keyframes qode-atom-position {
    50% {
        top: 80px;
        left: 80px
    }
}

@keyframes qode-atom-size {
    50% {
        transform: scale(.5)
    }
}

@keyframes qode-atom-zindex {
    100% {
        z-index: 10
    }
}

@keyframes qode-atom-shrink {
    50% {
        transform: scale(.8)
    }
}

@keyframes qode-clock {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes qode-clock-1 {
    0% {
        transform: rotate(-135deg)
    }

    30% {
        transform: rotate(-450deg)
    }

    100% {
        transform: rotate(-450deg)
    }
}

@keyframes qode-clock-2 {
    5% {
        transform: rotate(-90deg)
    }

    35% {
        transform: rotate(-405deg)
    }

    100% {
        transform: rotate(-405deg)
    }
}

@keyframes qode-clock-3 {
    10% {
        transform: rotate(-45deg)
    }

    40% {
        transform: rotate(-360deg)
    }

    100% {
        transform: rotate(-360deg)
    }
}

@keyframes qode-clock-4 {
    15% {
        transform: rotate(0)
    }

    45% {
        transform: rotate(-315deg)
    }

    100% {
        transform: rotate(-315deg)
    }
}

@keyframes qode-mitosis-invert {
    100% {
        transform: rotate(180deg)
    }
}

@keyframes qode-mitosis-ball-1 {
    12% {
        transform: none
    }

    26% {
        transform: translateX(25%) scale(1, .8)
    }

    40% {
        transform: translateX(50%) scale(.8, .8)
    }

    60% {
        transform: translateX(50%) scale(.8, .8)
    }

    74% {
        transform: translate(50%, 25%) scale(.6, .8)
    }

    88% {
        transform: translate(50%, 50%) scale(.6, .6)
    }

    100% {
        transform: translate(50%, 50%) scale(.6, .6)
    }
}

@keyframes qode-mitosis-ball-2 {
    12% {
        transform: none
    }

    26% {
        transform: translateX(25%) scale(1, .8)
    }

    40% {
        transform: translateX(50%) scale(.8, .8)
    }

    60% {
        transform: translateX(50%) scale(.8, .8)
    }

    74% {
        transform: translate(50%, -25%) scale(.6, .8)
    }

    88% {
        transform: translate(50%, -50%) scale(.6, .6)
    }

    100% {
        transform: translate(50%, -50%) scale(.6, .6)
    }
}

@keyframes qode-mitosis-ball-3 {
    12% {
        transform: none
    }

    26% {
        transform: translateX(-25%) scale(1, .8)
    }

    40% {
        transform: translateX(-50%) scale(.8, .8)
    }

    60% {
        transform: translateX(-50%) scale(.8, .8)
    }

    74% {
        transform: translate(-50%, 25%) scale(.6, .8)
    }

    88% {
        transform: translate(-50%, 50%) scale(.6, .6)
    }

    100% {
        transform: translate(-50%, 50%) scale(.6, .6)
    }
}

@keyframes qode-mitosis-ball-4 {
    12% {
        transform: none
    }

    26% {
        transform: translateX(-25%) scale(1, .8)
    }

    40% {
        transform: translateX(-50%) scale(.8, .8)
    }

    60% {
        transform: translateX(-50%) scale(.8, .8)
    }

    74% {
        transform: translate(-50%, -25%) scale(.6, .8)
    }

    88% {
        transform: translate(-50%, -50%) scale(.6, .6)
    }

    100% {
        transform: translate(-50%, -50%) scale(.6, .6)
    }
}

@keyframes qode-lines-spin {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes qode-fussion-ball-1 {
    50% {
        top: -100%;
        left: 200%
    }

    100% {
        top: 50%;
        left: 100%;
        z-index: 2
    }
}

@keyframes qode-fussion-ball-2 {
    50% {
        top: 200%;
        left: 200%
    }

    100% {
        top: 100%;
        left: 50%;
        z-index: 1
    }
}

@keyframes qode-fussion-ball-3 {
    50% {
        top: 200%;
        left: -100%
    }

    100% {
        top: 50%;
        left: 0;
        z-index: 2
    }
}

@keyframes qode-fussion-ball-4 {
    50% {
        top: -100%;
        left: -100%
    }

    100% {
        top: 0;
        left: 50%;
        z-index: 1
    }
}

@keyframes qode-wave-jump-1 {
    12% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }

    100%,
    24% {
        transform: translate(40px, 0)
    }
}

@keyframes qode-wave-jump-2 {
    12% {
        transform: translate(0, 0)
    }

    24% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }

    100%,
    36% {
        transform: translate(40px, 0)
    }
}

@keyframes qode-wave-jump-3 {
    24% {
        transform: translate(0, 0)
    }

    36% {
        transform: translate(20px, -40px);
        animation-timing-function: ease-in
    }

    100%,
    48% {
        transform: translate(40px, 0)
    }
}

@keyframes qode-wave-wipe {

    100%,
    48% {
        transform: translateX(-120px)
    }
}

@keyframes qode-pulse-circles-pulse {
    0% {
        transform: scale(.1);
        opacity: 1;
        border-width: 50px
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
        border-width: 0
    }
}

@keyframes qode-bounce {

    20%,
    53%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes qode-pulse {
    from {
        transform: scale3d(1, 1, 1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

@keyframes qode-dot-bounce {
    0% {
        opacity: 0;
        transform: translateY(-12px) scaleX(.8) scaleY(2)
    }

    1% {
        opacity: 1
    }

    25% {
        opacity: 1;
        transform: translateY(-6px) scaleX(1) scaleY(1)
    }

    50% {
        opacity: 1;
        transform: translateY(0) scaleX(2) scaleY(.8)
    }

    60% {
        opacity: 1;
        transform: translateY(0) scaleX(1) scaleY(1)
    }

    75% {
        opacity: 1;
        transform: translateY(-3px) scaleX(1) scaleY(1)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1) scaleY(1)
    }
}

@keyframes qode-dot-bounce-large {
    0% {
        opacity: 0;
        transform: translateY(-25px) scaleX(.8) scaleY(2)
    }

    1% {
        opacity: 1
    }

    25% {
        opacity: 1;
        transform: translateY(-12px) scaleX(1) scaleY(1)
    }

    50% {
        opacity: 1;
        transform: translateY(0) scaleX(2) scaleY(.8)
    }

    60% {
        opacity: 1;
        transform: translateY(0) scaleX(1) scaleY(1)
    }

    75% {
        opacity: 1;
        transform: translateY(-5px) scaleX(1) scaleY(1)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1) scaleY(1)
    }
}

@keyframes qodef-dot-drop {
    0% {
        opacity: 1;
        transform: translateY(0) scaleX(1) scaleY(1)
    }

    100% {
        opacity: 0;
        transform: translateY(5px) scaleX(1) scaleY(1)
    }
}

a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var {
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    background: 0 0;
    border: 0;
    outline: 0
}

* {
    box-sizing: border-box
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block
}

del {
    text-decoration: line-through
}

pre {
    max-width: 100%;
    margin: 15px 0;
    padding: 15px;
    background-color: #fafafa;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
    font-size: 1em;
    color: #000
}

code {
    background-color: #fafafa;
    padding: 0;
    font-family: monospace, monospace;
    font-size: 1em;
    color: #000
}

sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    width: 100%;
    vertical-align: middle;
    border: medium none;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: inherit;
    color: inherit;
    line-height: inherit
}

table tr {
    border: 1px solid #e1e1e1
}

table th {
    padding: 5px 7px;
    text-align: left;
    border-right: 1px solid #e1e1e1
}

table td {
    padding: 5px 10px;
    text-align: left;
    border: 0;
    border-right: 1px solid #e1e1e1
}

table td br {
    display: none
}

hr {
    background-color: #bbb;
    border: 0;
    height: 1px;
    margin-top: 1.5em;
    margin-bottom: 1.5em
}

hr:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px
}

body:not([class*=borgholm-core]) hr {
    clear: both
}

ol,
ul {
    list-style-position: inside;
    margin-bottom: 1.5em;
    padding: 0
}

ol.wp-block,
ul.wp-block {
    margin-bottom: 1.5em
}

ol:not(.wp-block),
ul:not(.wp-block) {
    margin: 0 0 1.5em
}

li>ol:not(.wp-block),
li>ul:not(.wp-block) {
    margin-bottom: 0;
    margin-left: 1.5em
}

dt {
    font-weight: 700
}

dd {
    margin: 0 1.5em 1.5em
}

a img {
    border: none
}

.wp-caption,
img {
    height: auto;
    max-width: 100%
}

img {
    vertical-align: middle;
    border-style: none
}

figure {
    margin: 0
}

figure.alignleft {
    margin-right: 1.5em
}

figure.alignright {
    margin-left: 1.5em
}

embed,
iframe,
object {
    display: block;
    max-width: 100%
}

video {
    display: block
}

embed,
object {
    height: auto
}

label {
    display: block;
    margin-bottom: .5em
}

fieldset {
    margin-bottom: 1em;
    padding: .35em .75em .625em
}

input[type=submit] {
    -webkit-appearance: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
    background-color: #fafafa
}

small {
    font-size: 80%
}

progress {
    vertical-align: baseline
}

summary {
    display: list-item
}

template {
    display: none
}

.gallery-caption,
.wp-caption,
figcaption {
    display: block;
    max-width: 100%;
    margin: 7px auto 0;
    font-size: 13px !important;
    line-height: 1em !important;
    color: #000;
    text-align: center;
    opacity: 1
}

.gallery-caption a,
.wp-caption a,
figcaption a {
    color: inherit
}

.wp-caption .wp-caption-text {
    opacity: 1
}

blockquote.instagram-media,
iframe.instagram-media {
    margin: auto !important
}

.bypostauthor,
.sticky {
    opacity: 1
}

::selection {
    color: #fff;
    background: #c8d644
}

::-moz-selection {
    color: #fff;
    background: #c8d644
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 0;
    line-height: 1;
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    overflow: hidden
}

.screen-reader-text:focus {
    top: 5px;
    left: 5px;
    display: block;
    width: auto;
    height: auto;
    padding: 15px 23px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    color: #21759b;
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto !important;
    z-index: 100000
}

.alignleft {
    float: left;
    text-align: left;
    margin: 1rem 2rem 1rem 0 !important;
    clear: left
}

.aligncenter {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.alignright {
    float: right;
    text-align: right;
    margin: 1rem 0 1rem 2rem !important;
    clear: right
}

body:not([class*=borgholm-core]) .alignright {
    clear: right
}

.qodef-content-alignment-left {
    text-align: left
}

.qodef-content-alignment-center {
    text-align: center
}

.qodef-content-alignment-right {
    text-align: right
}

.clear:after,
.clear:before,
.comment-author:after,
.comment-author:before,
.comment-content:after,
.comment-content:before,
.comment-meta:after,
.comment-meta:before,
.nav-links:after,
.nav-links:before,
.pagination:after,
.pagination:before,
.widget-area:after,
.widget-area:before,
.widget:after,
.widget:before {
    content: "";
    display: table;
    table-layout: fixed
}

.clear:after,
.comment-author:after,
.comment-content:after,
.comment-meta:after,
.nav-links:after,
.pagination:after,
.widget-area:after,
.widget:after {
    clear: both
}

body {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 1.733em;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

.qodef-h1,
h1 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 55px;
    line-height: 1em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.qodef-h1 a,
h1 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}

.qodef-h1 a:hover,
h1 a:hover {
    color: #c8d644
}

.qodef-h2,
h2 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 40px;
    line-height: 1.125em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.qodef-h2 a,
h2 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}

.qodef-h2 a:hover,
h2 a:hover {
    color: #c8d644
}

.qodef-h3,
h3 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.qodef-h3 a,
h3 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}

.qodef-h3 a:hover,
h3 a:hover {
    color: #c8d644
}

.qodef-h4,
h4 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.167em;
    font-weight: 500;
    font-style: italic;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.qodef-h4 a,
h4 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}

.qodef-h4 a:hover,
h4 a:hover {
    color: #c8d644
}

.qodef-h5,
h5 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.qodef-h5 a,
h5 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}

.qodef-h5 a:hover,
h5 a:hover {
    color: #c8d644
}

.qodef-h6,
h6 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.333em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.qodef-h6 a,
h6 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}

.qodef-h6 a:hover,
h6 a:hover {
    color: #c8d644
}

a,
p a {
    color: #000;
    text-decoration: none;
    transition: color .2s ease-out;
    cursor: pointer
}

a:hover,
p a:hover {
    color: #c8d644
}

p {
    margin: 10px 0;
    line-height: 1.733em
}

blockquote {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 10px 0;
    padding: 0;
    position: relative;
    padding: 15px 4% 23px 153px;
    border: none;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.167em;
    font-weight: 500;
    font-style: italic;
    quotes: none
}

blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large {
    margin: 0;
    padding: 15px 10% 20px 0
}

blockquote.wp-block-pullquote {
    padding: 25px !important;
    text-align: center
}

blockquote.wp-block-pullquote.alignleft {
    max-width: 290px
}

blockquote.wp-block-pullquote.alignright {
    max-width: 290px
}

blockquote.has-text-align-right:before {
    left: auto;
    right: 0
}

blockquote:before {
    content: "";
    position: absolute;
    background-image: url(https://borgholm.qodeinteractive.com/wp-content/themes/borgholm/assets/img/quote-dots.svg);
    top: 50%;
    left: 16px;
    height: 100px;
    width: 116px;
    transform: translateY(-50%);
    z-index: -1
}

blockquote>* {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
    margin: 0
}

blockquote:after {
    content: ""
}

blockquote cite {
    font-style: normal;
    font-weight: 400
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 35px;
    padding: 5px 0;
    font-family: Cormorant, serif;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    background-color: transparent;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
textarea:focus {
    color: #000;
    background-color: transparent
}

input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: inherit;
    opacity: 1
}

input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
    color: inherit;
    opacity: 1
}

.qodef-footer-skin--light #qodef-page-footer input[type=email],
.qodef-footer-skin--light #qodef-page-footer input[type=number],
.qodef-footer-skin--light #qodef-page-footer input[type=password],
.qodef-footer-skin--light #qodef-page-footer input[type=search],
.qodef-footer-skin--light #qodef-page-footer input[type=tel],
.qodef-footer-skin--light #qodef-page-footer input[type=text],
.qodef-footer-skin--light #qodef-page-footer input[type=url],
.qodef-footer-skin--light #qodef-page-footer textarea {
    color: #fff;
    background-color: transparent
}

.qodef-footer-skin--light #qodef-page-footer input[type=email]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=number]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=password]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=search]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=tel]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=text]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=url]:focus,
.qodef-footer-skin--light #qodef-page-footer textarea:focus {
    color: #fff;
    background-color: transparent
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url] {
    border: none;
    border-bottom: 1px solid #000
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus {
    border-color: #000
}

.qodef-footer-skin--light #qodef-page-footer input[type=email],
.qodef-footer-skin--light #qodef-page-footer input[type=number],
.qodef-footer-skin--light #qodef-page-footer input[type=password],
.qodef-footer-skin--light #qodef-page-footer input[type=search],
.qodef-footer-skin--light #qodef-page-footer input[type=tel],
.qodef-footer-skin--light #qodef-page-footer input[type=text],
.qodef-footer-skin--light #qodef-page-footer input[type=url] {
    border: none;
    border-bottom: 1px solid #fff
}

.qodef-footer-skin--light #qodef-page-footer input[type=email]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=number]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=password]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=search]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=tel]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=text]:focus,
.qodef-footer-skin--light #qodef-page-footer input[type=url]:focus {
    border-color: #ccc
}

textarea {
    padding: 10px;
    border: 1px solid #000
}

textarea:focus {
    border-color: #000
}

.qodef-footer-skin--light #qodef-page-footer textarea {
    border: 1px solid #fff
}

.qodef-footer-skin--light #qodef-page-footer textarea:focus {
    border-color: #ccc
}

.post-password-form input[type=password] {
    margin-top: .5em
}

@media only screen and (min-width:769px) {
    .post-password-form input[type=password] {
        display: block;
        max-width: 50%
    }
}

.qodef-theme-button,
button[type=submit],
input[type=submit] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 15px 36px;
    color: #fff;
    background-color: #c8d644;
    border: 1px solid transparent;
    cursor: pointer
}

.qodef-theme-button:hover,
button[type=submit]:hover,
input[type=submit]:hover {
    color: #fff;
    background-color: #c8d644
}

.qodef-theme-button span,
button[type=submit] span {
    display: block;
    line-height: inherit
}

.qodef-theme-button span:before,
button[type=submit] span:before {
    display: block;
    line-height: inherit
}

select {
    position: relative;
    display: block;
    height: 30px;
    padding: 5px 0;
    margin: 0;
    font-family: Cormorant, serif;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

body .select2-container--default {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    margin: 0 0 35px
}

body .select2-container--default .select2-selection--single {
    display: block;
    height: 30px;
    padding: 5px 0;
    margin: 0;
    font-family: Cormorant, serif;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    background-color: transparent;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0;
    line-height: inherit;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

body .select2-container--default .select2-selection--single .select2-selection__clear {
    position: relative;
    float: right;
    margin: 0;
    font-weight: inherit;
    cursor: pointer
}

body .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: inherit
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #464646
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none
}

body .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    display: block;
    position: relative;
    top: 2px;
    line-height: inherit;
    content: "\f3d0";
    font-family: Ionicons;
    font-style: normal
}

body .select2-container--default .select2-selection--multiple {
    display: block;
    height: 30px;
    padding: 5px 0;
    margin: 0;
    font-family: Cormorant, serif;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    background-color: transparent;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    display: block;
    padding: 0;
    line-height: inherit;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin: 0;
    padding: 0
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__placeholder {
    float: left;
    margin: 0;
    color: inherit
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__clear {
    position: relative;
    float: right;
    margin: 0;
    font-weight: inherit;
    cursor: pointer
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    margin: 0 5px 5px 0;
    padding: 0 5px;
    float: left;
    color: #000;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    cursor: default
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove {
    display: inline-block;
    margin: 0 3px 0 0;
    font-weight: 700;
    color: inherit;
    transition: opacity .2s ease-out;
    cursor: pointer
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove:hover {
    color: inherit;
    opacity: .8
}

body .select2-container--default .select2-search--inline {
    float: left
}

body .select2-container--default .select2-search--inline .select2-search__field {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    font-family: Cormorant, serif;
    font-size: inherit;
    font-weight: 500;
    font-style: italic;
    color: inherit;
    border: none !important;
    outline: 0;
    -webkit-appearance: none
}

body .select2-container--default .select2-search--inline .select2-search__field:focus {
    border-color: #000
}

body .select2-container--default .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

body .select2-container--default .select2-dropdown {
    position: absolute;
    top: 0;
    left: -100000px;
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: -3px -4px 9.5px .5px rgba(0, 0, 0, .05);
    z-index: 99999
}

body .select2-container--default .select2-search--dropdown {
    display: block;
    padding: 14px 15px 2px
}

body .select2-container--default .select2-search--dropdown.select2-search--hide {
    display: none
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
    width: 100%;
    padding: 4px 8px;
    margin: 0;
    font-family: Cormorant, serif;
    font-size: inherit;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    outline: 0;
    -webkit-appearance: none
}

body .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    color: #000;
    background-color: #fff;
    border-color: #000
}

body .select2-container--default .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

body .select2-container--default .select2-results {
    display: block
}

body .select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

body .select2-container--default .select2-results__options {
    position: relative;
    margin: 5px 0;
    padding: 2px 10px;
    list-style: none
}

body .select2-container--default .select2-results__option {
    padding: 3px 0;
    font-family: Cormorant, serif;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .2s ease-out
}

body .select2-container--default .select2-results__option[aria-selected] {
    cursor: pointer
}

body .select2-container--default .select2-results__option[role=group] {
    padding: 0
}

body .select2-container--default .select2-results__option[aria-disabled=true] {
    color: #000
}

body .select2-container--default .select2-results__option[aria-selected=true],
body .select2-container--default .select2-results__option[data-selected=true] {
    color: #000;
    background: 0 0
}

body .select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #000;
    background: 0 0
}

body .select2-container--default .select2-results__group {
    display: block;
    padding: 7px 0;
    cursor: default
}

body .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

body .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding: 0
}

body .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 0;
    right: auto
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,
body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
    float: right
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__rendered {
    padding: 0
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin: 7px auto 0 5px
}

body .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin: 0 auto 0 3px
}

body .select2-container--default.select2-container--disabled .select2-selection--multiple,
body .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #fafafa;
    cursor: default
}

body .select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__clear,
body .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

body .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

body .select2-container--default.select2-container--open .select2-selection--multiple,
body .select2-container--default.select2-container--open .select2-selection--single {
    color: #000
}

body .select2-container--default.select2-container--open .select2-dropdown {
    left: 0
}

body .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above {
    border-bottom-color: transparent
}

body .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below {
    border-top-color: transparent
}

body:not([class*=borgholm-core]) .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: "▾"
}

.select2-close-mask {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 0;
    opacity: 0;
    z-index: 99
}

.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
    height: 0 !important;
    padding: 0 !important;
    line-height: 1;
    border: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important
}

.qodef-content-grid {
    width: 1100px;
    margin: 0 auto
}

.qodef-content-grid.qodef-extended-grid:not(.qodef-extended-grid-reset--1024) {
    width: 100% !important;
    margin: 0
}

.qodef-content-grid.qodef-extended-grid:not(.qodef-extended-grid-reset--1024).qodef-extended-grid--right {
    padding-left: calc((100% - 1100px)/ 2)
}

.qodef-content-grid.qodef-extended-grid:not(.qodef-extended-grid-reset--1024).qodef-extended-grid--left {
    padding-right: calc((100% - 1100px)/ 2)
}

@media only screen and (min-width:1025px) {
    .qodef-content-grid.qodef-extended-grid.qodef-extended-grid-reset--1024 {
        width: 100% !important;
        margin: 0
    }

    .qodef-content-grid.qodef-extended-grid.qodef-extended-grid-reset--1024.qodef-extended-grid--right {
        padding-left: calc((100% - 1100px)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid.qodef-extended-grid-reset--1024.qodef-extended-grid--left {
        padding-right: calc((100% - 1100px)/ 2)
    }
}

.qodef--boxed .qodef-content-grid {
    width: 1160px
}

@media only screen and (min-width:1441px) {
    .qodef-content-grid-1400 .qodef-content-grid {
        width: 1400px
    }

    .qodef-content-grid-1400 .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 1400px)/ 2)
    }

    .qodef-content-grid-1400 .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: calc((100% - 1400px)/ 2)
    }

    .qodef-content-grid-1400 .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 1400px)/ 2)
    }

    .qodef-content-grid-1400 .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: calc((100% - 1400px)/ 2)
    }

    .qodef--boxed.qodef-content-grid-1400 .qodef-content-grid {
        width: 1460px
    }
}

@media only screen and (min-width:1441px) {
    .qodef-content-grid-1300 .qodef-content-grid {
        width: 1300px
    }

    .qodef-content-grid-1300 .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 1300px)/ 2)
    }

    .qodef-content-grid-1300 .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: calc((100% - 1300px)/ 2)
    }

    .qodef-content-grid-1300 .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 1300px)/ 2)
    }

    .qodef-content-grid-1300 .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: calc((100% - 1300px)/ 2)
    }

    .qodef--boxed.qodef-content-grid-1300 .qodef-content-grid {
        width: 1360px
    }
}

@media only screen and (min-width:1441px) {
    .qodef-content-grid-1200 .qodef-content-grid {
        width: 1200px
    }

    .qodef-content-grid-1200 .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 1200px)/ 2)
    }

    .qodef-content-grid-1200 .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: calc((100% - 1200px)/ 2)
    }

    .qodef-content-grid-1200 .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 1200px)/ 2)
    }

    .qodef-content-grid-1200 .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: calc((100% - 1200px)/ 2)
    }

    .qodef--boxed.qodef-content-grid-1200 .qodef-content-grid {
        width: 1260px
    }
}

@media only screen and (min-width:1025px) {
    .qodef-content-grid-1000 .qodef-content-grid {
        width: 1000px
    }

    .qodef-content-grid-1000 .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 1000px)/ 2)
    }

    .qodef-content-grid-1000 .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: calc((100% - 1000px)/ 2)
    }

    .qodef-content-grid-1000 .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 1000px)/ 2)
    }

    .qodef-content-grid-1000 .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: calc((100% - 1000px)/ 2)
    }

    .qodef--boxed.qodef-content-grid-1000 .qodef-content-grid {
        width: 1060px
    }
}

@media only screen and (min-width:769px) {
    .qodef-content-grid-800 .qodef-content-grid {
        width: 800px
    }

    .qodef-content-grid-800 .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 800px)/ 2)
    }

    .qodef-content-grid-800 .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: 0
    }

    .qodef-content-grid-800 .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 800px)/ 2)
    }

    .qodef-content-grid-800 .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: 0
    }

    .qodef--boxed.qodef-content-grid-800 .qodef-content-grid {
        width: 860px
    }
}

.qodef-grid {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-grid>.qodef-grid-inner {
    margin: 0 -15px
}

.qodef-grid>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 15px
}

.qodef-grid .qodef-grid-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    min-height: 1px;
    float: left
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--12 {
        width: 100%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--12 {
        left: 100%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--12 {
        right: 100%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--11 {
        width: 9.0909090909%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--11 {
        left: 9.0909090909%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--11 {
        right: 9.0909090909%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--10 {
        width: 83.3333333333%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--10 {
        left: 83.3333333333%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--10 {
        right: 83.3333333333%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--9 {
        width: 75%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--9 {
        left: 75%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--9 {
        right: 75%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--8 {
        width: 66.6666666667%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--8 {
        left: 66.6666666667%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--8 {
        right: 66.6666666667%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--7 {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--7 {
        left: 14.2857142857%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--7 {
        right: 14.2857142857%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--6 {
        width: 50%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--6 {
        left: 50%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--6 {
        right: 50%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--5 {
        width: 20%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--5 {
        left: 20%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--5 {
        right: 20%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--4 {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--4 {
        left: 33.3333333333%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--4 {
        right: 33.3333333333%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--3 {
        width: 25%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--3 {
        left: 25%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--3 {
        right: 25%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--2 {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--2 {
        left: 16.6666666667%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--2 {
        right: 16.6666666667%
    }
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col--1 {
        width: 8.3333333333%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-push--1 {
        left: 8.3333333333%
    }

    .qodef-grid.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef-col-pull--1 {
        right: 8.3333333333%
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--1>.qodef-grid-inner>.qodef-grid-item {
    width: 100%
}

.qodef-grid.qodef-layout--columns.qodef-col-num--2>.qodef-grid-inner>.qodef-grid-item {
    width: 50%
}

@media only screen and (min-width:681px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--2.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--2.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--3>.qodef-grid-inner>.qodef-grid-item {
    width: 33.3333333333%
}

@media only screen and (min-width:769px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--3.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--3.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--4>.qodef-grid-inner>.qodef-grid-item {
    width: 25%
}

@media only screen and (min-width:1025px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--4.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--4.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--5>.qodef-grid-inner>.qodef-grid-item {
    width: 20%
}

@media only screen and (min-width:1367px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--5.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--5.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--6>.qodef-grid-inner>.qodef-grid-item {
    width: 16.6666666667%
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--6.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--6.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--7>.qodef-grid-inner>.qodef-grid-item {
    width: 14.2857142857%
}

@media only screen and (min-width:1367px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--7.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--7.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--columns.qodef-col-num--8>.qodef-grid-inner>.qodef-grid-item {
    width: 12.5%
}

@media only screen and (min-width:1367px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--8.qodef-responsive--predefined>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (min-width:1441px) {
    .qodef-grid.qodef-layout--columns.qodef-col-num--8.qodef-responsive--custom>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

.qodef-grid.qodef-layout--masonry.qodef-items--fixed .qodef-grid-item .qodef-e-inner {
    height: 100%;
    overflow: hidden
}

.qodef-grid.qodef-layout--masonry.qodef-items--fixed .qodef-grid-item img {
    height: 100%;
    width: 100%
}

.qodef-grid.qodef-layout--masonry .qodef-grid-inner {
    visibility: hidden
}

.qodef-grid.qodef-layout--masonry .qodef-grid-inner.qodef--masonry-init {
    visibility: visible
}

.qodef-grid.qodef-layout--masonry .qodef-grid-masonry-sizer {
    width: 100%;
    padding: 0;
    margin: 0
}

.qodef-grid.qodef-layout--masonry .qodef-grid-masonry-gutter {
    width: 0;
    padding: 0;
    margin: 0
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--1 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--1>.qodef-grid-inner>.qodef-grid-item {
    width: 100%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--2 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--2>.qodef-grid-inner>.qodef-grid-item {
    width: 50%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--2>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--2>.qodef-grid-inner>.qodef-item--landscape {
    width: 100%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--3 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--3>.qodef-grid-inner>.qodef-grid-item {
    width: 33.3333333333%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--3>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--3>.qodef-grid-inner>.qodef-item--landscape {
    width: 66.6666666667%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--4 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--4>.qodef-grid-inner>.qodef-grid-item {
    width: 25%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--4>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--4>.qodef-grid-inner>.qodef-item--landscape {
    width: 50%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--5 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--5>.qodef-grid-inner>.qodef-grid-item {
    width: 20%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--5>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--5>.qodef-grid-inner>.qodef-item--landscape {
    width: 40%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--6 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--6>.qodef-grid-inner>.qodef-grid-item {
    width: 16.6666666667%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--6>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--6>.qodef-grid-inner>.qodef-item--landscape {
    width: 33.3333333333%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--7 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--7>.qodef-grid-inner>.qodef-grid-item {
    width: 14.2857142857%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--7>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--7>.qodef-grid-inner>.qodef-item--landscape {
    width: 28.5714285714%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--8 .qodef-grid-masonry-sizer,
.qodef-grid.qodef-layout--masonry.qodef-col-num--8>.qodef-grid-inner>.qodef-grid-item {
    width: 12.5%
}

.qodef-grid.qodef-layout--masonry.qodef-col-num--8>.qodef-grid-inner>.qodef-item--huge-square,
.qodef-grid.qodef-layout--masonry.qodef-col-num--8>.qodef-grid-inner>.qodef-item--landscape {
    width: 25%
}

.qodef-grid.qodef-gutter--no.qodef--no-bottom-space {
    margin-bottom: 0
}

.qodef-grid.qodef-gutter--no>.qodef-grid-inner {
    margin: 0
}

.qodef-grid.qodef-gutter--no>.qodef-grid-inner>.qodef-grid-item {
    padding: 0;
    margin: 0
}

.qodef-grid.qodef-gutter--tiny.qodef--no-bottom-space {
    margin-bottom: -10px
}

.qodef-grid.qodef-gutter--tiny>.qodef-grid-inner {
    margin: 0 -5px
}

.qodef-grid.qodef-gutter--tiny>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 5px;
    margin: 0 0 10px
}

.qodef-grid.qodef-gutter--small.qodef--no-bottom-space {
    margin-bottom: -20px
}

.qodef-grid.qodef-gutter--small>.qodef-grid-inner {
    margin: 0 -10px
}

.qodef-grid.qodef-gutter--small>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 10px;
    margin: 0 0 20px
}

.qodef-grid.qodef-gutter--normal.qodef--no-bottom-space {
    margin-bottom: -30px
}

.qodef-grid.qodef-gutter--normal>.qodef-grid-inner {
    margin: 0 -15px
}

.qodef-grid.qodef-gutter--normal>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 15px;
    margin: 0 0 30px
}

.qodef-grid.qodef-gutter--medium.qodef--no-bottom-space {
    margin-bottom: -40px
}

.qodef-grid.qodef-gutter--medium>.qodef-grid-inner {
    margin: 0 -20px
}

.qodef-grid.qodef-gutter--medium>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 20px;
    margin: 0 0 40px
}

.qodef-grid.qodef-gutter--large.qodef--no-bottom-space {
    margin-bottom: -50px
}

.qodef-grid.qodef-gutter--large>.qodef-grid-inner {
    margin: 0 -25px
}

.qodef-grid.qodef-gutter--large>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 25px;
    margin: 0 0 50px
}

.qodef-grid.qodef-gutter--huge.qodef--no-bottom-space {
    margin-bottom: -80px
}

.qodef-grid.qodef-gutter--huge>.qodef-grid-inner {
    margin: 0 -40px
}

.qodef-grid.qodef-gutter--huge>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 40px;
    margin: 0 0 80px
}

.qodef-grid.qodef-gutter--gigantic.qodef--no-bottom-space {
    margin-bottom: -140px
}

.qodef-grid.qodef-gutter--gigantic>.qodef-grid-inner {
    margin: 0 -70px
}

.qodef-grid.qodef-gutter--gigantic>.qodef-grid-inner>.qodef-grid-item {
    padding: 0 70px;
    margin: 0 0 140px
}

#qodef-page-wrapper {
    position: relative;
    overflow: hidden
}

#qodef-page-outer {
    position: relative
}

#qodef-page-inner {
    position: relative;
    padding: 130px 0 100px
}

#qodef-page-content.qodef-layout--template .qodef-page-content-section.qodef-col--12 {
    margin-bottom: 0
}

.qodef--boxed {
    background-color: #fafafa
}

.qodef--boxed #qodef-page-wrapper {
    display: block;
    background-color: #fff
}

.qodef--boxed #qodef-page-inner {
    padding-left: 30px;
    padding-right: 30px
}

.qodef--passepartout #qodef-page-wrapper {
    background-color: #fff
}

body.qodef-default-scrollbar--disabled {
    -ms-overflow-style: none;
    scrollbar-width: none
}

body.qodef-default-scrollbar--disabled::-webkit-scrollbar {
    display: none
}

body::-webkit-scrollbar {
    width: 7px
}

body::-webkit-scrollbar-track {
    background-color: #e1e1e1
}

body::-webkit-scrollbar-thumb {
    background-color: #c8d644;
    outline: 1px solid #c8d644
}

html {
    scrollbar-color: #c8d644 #0f0b12;
    scrollbar-width: thin
}

.qodef-content-lines-holder {
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: -1
}

.single-product .qodef-content-lines-holder {
    display: none
}

.qodef-content-lines-holder .qodef-content-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #e1e1e1
}

.qodef-content-lines-holder .qodef-content-line.qodef--left {
    left: 0
}

.qodef-content-lines-holder .qodef-content-line.qodef--center {
    left: 50%;
    transform: translateX(-50%)
}

.qodef-content-lines-holder .qodef-content-line.qodef--right {
    right: 0
}

.qodef-content-lines-holder.qodef-content-grid .qodef-content-line.qodef--left {
    left: 0
}

.qodef-content-lines-holder.qodef-content-grid .qodef-content-line.qodef--right {
    right: 0
}

.qodef-content-lines-holder.qodef-content-grid.qodef-content-grid-type--wide .qodef-content-line.qodef--left {
    left: -30px
}

.qodef-content-lines-holder.qodef-content-grid.qodef-content-grid-type--wide .qodef-content-line.qodef--right {
    right: -30px
}

.qodef-content-lines-holder.qodef-content-grid.qodef-content-grid-type--inside .qodef-content-line.qodef--left {
    left: 249px
}

.qodef-content-lines-holder.qodef-content-grid.qodef-content-grid-type--inside .qodef-content-line.qodef--right {
    right: 249px
}

.qodef-content-lines-holder:not(.qodef-content-grid) {
    width: calc(100% - 200px);
    left: 100px
}

@media only screen and (max-width:1024px) {
    .qodef-content-lines-holder:not(.qodef-content-grid) {
        width: calc(100% - 100px);
        left: 50px
    }
}

.qodef-content-lines-holder.qodef-content-grid {
    left: 50%;
    transform: translateX(-50%)
}

.qodef-content-lines-holder.qodef-skin--dark .qodef-content-line {
    background-color: #f5f5f5
}

.qodef-content-lines-holder.qodef-skin--light .qodef-content-line {
    background-color: #fff
}

@media only screen and (max-width:1024px) {
    .qodef-column-no-border-1024>.elementor-element-populated {
        border: none !important
    }
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    position: relative
}

button.mfp-arrow {
    opacity: 1
}

button.mfp-arrow:after,
button.mfp-arrow:before {
    border: 0;
    transition: all .2s ease-out
}

button.mfp-arrow:before {
    opacity: 1;
    visibility: visible
}

button.mfp-arrow:after {
    opacity: 0;
    visibility: hidden
}

button.mfp-arrow-left:after,
button.mfp-arrow-left:before,
button.mfp-arrow-right:after,
button.mfp-arrow-right:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    text-indent: -9999px;
    width: 33px;
    height: 6px
}

button.mfp-arrow-left:before,
button.mfp-arrow-right:before {
    left: 0;
    background: url(https://borgholm.qodeinteractive.com/wp-content/themes/borgholm/assets/img/left-arrow.svg)
}

button.mfp-arrow-left:after,
button.mfp-arrow-right:after {
    left: -6px;
    background: url(https://borgholm.qodeinteractive.com/wp-content/themes/borgholm/assets/img/left-arrow-hover.svg)
}

button.mfp-arrow-left:hover:before,
button.mfp-arrow-right:hover:before {
    opacity: 0;
    visibility: hidden
}

button.mfp-arrow-left:hover:after,
button.mfp-arrow-right:hover:after {
    opacity: 1;
    visibility: visible
}

button.mfp-arrow-right:after,
button.mfp-arrow-right:before {
    transform: scaleX(-1)
}

button.mfp-arrow-right:after {
    left: -4px
}

button.mfp-close {
    overflow: hidden;
    font-size: 0;
    text-align: left !important;
    color: #fff !important;
    opacity: 1;
    transition: opacity .2s ease-out
}

button.mfp-close:hover {
    opacity: 1
}

button.mfp-close:after {
    content: "M";
    position: absolute;
    top: 0;
    right: 0;
    font-family: ElegantIcons;
    font-size: 25px;
    color: currentColor
}

.mfp-bottom-bar .mfp-counter,
.mfp-bottom-bar .mfp-title {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 1.733em;
    font-weight: 400;
    color: #000;
    color: #fff
}

.mfp-bottom-bar .mfp-title {
    text-transform: capitalize
}

.qodef-swiper-container {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    z-index: 1;
    visibility: hidden;
    overflow: hidden
}

.qodef-swiper-container .swiper-slide a {
    display: block
}

.qodef-swiper-container .swiper-slide img {
    width: 100%
}

.qodef-swiper-container.qodef-swiper--initialized {
    visibility: visible
}

.swiper-pagination-bullets {
    text-align: center
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    opacity: 1;
    transition: border-color .2s ease-out
}

.swiper-pagination-bullets .swiper-pagination-bullet:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 100%;
    transition: background-color .2s ease-out;
    transform: translateX(-50%) translateY(-50%)
}

.swiper-pagination-bullets .swiper-pagination-bullet .qodef-svg-circle {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    fill: none;
    color: currentColor;
    stroke: none;
    overflow: visible
}

.swiper-pagination-bullets .swiper-pagination-bullet .qodef-svg-circle circle {
    stroke-dasharray: 110;
    stroke-dashoffset: 110;
    stroke: currentColor;
    stroke-width: 1;
    transition: all .6s cubic-bezier(.43, .41, .36, .9);
    transform: rotate(-145deg);
    transform-origin: center
}

.qodef-browser--ms-explorer .swiper-pagination-bullets .swiper-pagination-bullet .qodef-svg-circle circle {
    opacity: 0
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active .qodef-svg-circle circle,
.swiper-pagination-bullets .swiper-pagination-bullet:hover .qodef-svg-circle circle {
    stroke-dashoffset: 0;
    transform: rotate(55deg)
}

.qodef-browser--ms-explorer .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active .qodef-svg-circle circle,
.qodef-browser--ms-explorer .swiper-pagination-bullets .swiper-pagination-bullet:hover .qodef-svg-circle circle {
    opacity: 1
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-horizontal>.swiper-pagination-bullets {
    bottom: 0 !important
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px !important
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 16px 0 !important
}

.swiper-button-next,
.swiper-button-prev {
    background-image: none !important;
    width: 40px !important;
    height: 10px !important;
    margin: 0 !important;
    padding: 17px 0;
    color: #000;
    transform: translateY(-50%);
    transition: color .2s ease-out
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none
}

.swiper-button-next svg,
.swiper-button-prev svg {
    fill: currentColor;
    stroke: currentColor;
    overflow: visible
}

.swiper-button-next svg polygon,
.swiper-button-next svg rect,
.swiper-button-prev svg polygon,
.swiper-button-prev svg rect {
    transition: transform .2s ease-in-out
}

.swiper-button-next svg rect,
.swiper-button-prev svg rect {
    transform: scaleX(1);
    transform-origin: left
}

.swiper-button-next svg polygon,
.swiper-button-prev svg polygon {
    transform: translateX(0);
    stroke: none
}

.swiper-button-next:hover svg rect,
.swiper-button-prev:hover svg rect {
    transform: scaleX(1.3)
}

.swiper-button-next:hover svg polygon,
.swiper-button-prev:hover svg polygon {
    transform: translateX(10px)
}

.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-container-horizontal .swiper-button-next,
.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-container-horizontal .swiper-button-prev,
.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-horizontal .swiper-button-next,
.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-horizontal .swiper-button-prev {
    top: calc(50% - 32px)
}

.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-container-horizontal .swiper-pagination-bullets,
.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-horizontal .swiper-pagination-bullets {
    position: relative;
    margin-top: 20px;
    text-align: left
}

.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet:first-child,
.qodef-swiper-container.qodef-swiper-pagination-type--outside.swiper-horizontal .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
    margin-left: 0 !important
}

.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal,
.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal {
    padding-top: 63px
}

@media only screen and (max-width:680px) {

    .qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal,
    .qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal {
        padding-top: 43px
    }
}

.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal .swiper-button-next,
.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal .swiper-button-prev,
.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal .swiper-button-next,
.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal .swiper-button-prev {
    top: 3px
}

.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal .swiper-button-prev,
.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal .swiper-button-prev {
    left: auto !important;
    right: 195px
}

@media only screen and (max-width:680px) {

    .qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal .swiper-button-prev,
    .qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal .swiper-button-prev {
        right: 83px
    }
}

.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal .swiper-button-next,
.qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal .swiper-button-next {
    right: 122px !important
}

@media only screen and (max-width:680px) {

    .qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-container-horizontal .swiper-button-next,
    .qodef-swiper-container.qodef-swiper-navigation-type--outside.swiper-horizontal .swiper-button-next {
        right: 10px !important
    }
}

.qodef-swiper-container.qodef-skin--light .swiper-pagination-bullets .swiper-pagination-bullet:after {
    background-color: #fff
}

.qodef-swiper-container.qodef-skin--light .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.qodef-swiper-container.qodef-skin--light .swiper-pagination-bullets .swiper-pagination-bullet:hover {
    border-color: #000
}

.qodef-swiper-container.qodef-skin--light .swiper-button-next,
.qodef-swiper-container.qodef-skin--light .swiper-button-prev {
    color: #fff
}

.widget_icl_lang_sel_widget {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: left
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click:hover .wpml-ls-sub-menu,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-flag,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-flag {
    position: relative;
    top: -1px
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-legacy-dropdown,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-legacy-dropdown {
    padding: 0;
    margin: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    position: relative;
    display: flex;
    align-items: center
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
    content: "3";
    font-family: ElegantIcons;
    font-size: 15px;
    line-height: 1;
    border: 0;
    position: initial;
    margin-left: auto
}

body:not([class*=borgholm-core]) .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,
body:not([class*=borgholm-core]) .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
    content: "▾"
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    border-top: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear .25s, opacity .25s ease-in-out
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    display: flex;
    align-items: center;
    border: 0;
    background-color: transparent;
    padding: 7px 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal {
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0 !important
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    padding: 0;
    display: block
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    display: block;
    margin: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    padding: 0;
    display: block
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 200px
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 11px 20px;
    height: 46px;
    line-height: 24px;
    color: #000;
    background-color: #fff;
    border: 1px solid transparent;
    font-size: 14px
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #c8d644
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 0 20px;
    background-color: #fff
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #000;
    font-size: 14px
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #c8d644
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #000
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #c8d644
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #000
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #c8d644
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 175px
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 11px 20px;
    height: 46px;
    line-height: 24px;
    color: #000;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 14px
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #c8d644
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 0 20px;
    background-color: transparent
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #000;
    font-size: 14px
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #c8d644
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #000
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #c8d644
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #000
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #c8d644
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 175px
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 8px 20px;
    height: 40px;
    line-height: 24px;
    color: #fff;
    background-color: #000;
    border: 1px solid transparent;
    font-size: 14px
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #fff
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 0 20px;
    background-color: #000
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #fff;
    font-size: 14px
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #fff
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #fff
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #fff
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #fff
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #fff
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 100%
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 11px 20px;
    height: 46px;
    line-height: 24px;
    color: #000;
    background-color: #fafafa;
    border: 1px solid transparent;
    font-size: 14px
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #c8d644
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 0 20px;
    background-color: #fafafa
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #000;
    font-size: 14px
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #c8d644
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #000
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #c8d644
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #000
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 100%
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 11px 20px;
    height: 46px;
    line-height: 24px;
    color: #000;
    background-color: #fafafa;
    border: 1px solid transparent;
    font-size: 14px
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 0 20px;
    background-color: #fafafa
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #000;
    font-size: 14px
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #fff
}

.error404 #qodef-page-inner {
    padding: 0
}

.error404 #qodef-page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh
}

.error404.admin-bar #qodef-page-content {
    top: 32px;
    height: calc(100vh - 32px)
}

#qodef-404-page {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    top: -55px;
    padding: 0 24%;
    text-align: center
}

@media only screen and (max-width:1440px) {
    #qodef-404-page {
        padding: 0 15%
    }
}

@media only screen and (max-width:1280px) {
    #qodef-404-page {
        padding: 0 13%
    }
}

@media only screen and (max-width:1024px) {
    #qodef-404-page {
        top: -39px;
        padding: 0 18%
    }
}

@media only screen and (max-width:680px) {
    #qodef-404-page {
        top: 0
    }
}

#qodef-404-page .qodef-404-mark {
    font-size: 300px;
    color: #f6f6f6;
    margin: 0 0 -108px 0
}

@media only screen and (max-width:680px) {
    #qodef-404-page .qodef-404-mark {
        font-size: 130px;
        margin: 0
    }
}

#qodef-404-page .qodef-404-title {
    margin: 0;
    font-size: 60px;
    letter-spacing: -.025em
}

@media only screen and (max-width:680px) {
    #qodef-404-page .qodef-404-title {
        font-size: 40px
    }
}

@media only screen and (max-width:320px) {
    #qodef-404-page .qodef-404-title {
        font-size: 28px
    }
}

#qodef-404-page .qodef-404-text {
    display: block;
    margin: 24px auto 0;
    font-size: 24px;
    letter-spacing: -.025em
}

@media only screen and (min-width:1025px) {
    #qodef-404-page .qodef-404-text {
        max-width: 50%
    }
}

#qodef-404-page .qodef-404-button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 28px
}

.qodef-blog {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-blog .qodef-blog-item {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 60px
}

.qodef-blog .qodef-blog-item .qodef-e-content,
.qodef-blog .qodef-blog-item .qodef-e-inner,
.qodef-blog .qodef-blog-item .qodef-e-media {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-blog .qodef-blog-item .qodef-e-media-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%
}

.qodef-blog .qodef-blog-item .qodef-e-media-image a,
.qodef-blog .qodef-blog-item .qodef-e-media-image img {
    display: block;
    width: 100%
}

.qodef-blog .qodef-blog-item .qodef-e-media-image.qodef--background {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.qodef-blog .qodef-blog-item .qodef-e-media-image.qodef--background img {
    visibility: hidden
}

.qodef-blog .qodef-blog-item .qodef-e-media {
    margin-bottom: 33px
}

.qodef-blog .qodef-blog-item .qodef-e-media iframe {
    display: block;
    height: 100%
}

.qodef-blog .qodef-blog-item .qodef-e-title {
    margin: 0
}

.qodef-blog .qodef-blog-item .qodef-e-excerpt {
    margin: 17px 0 0;
    width: 88%
}

@media only screen and (max-width:768px) {
    .qodef-blog .qodef-blog-item .qodef-e-excerpt {
        width: auto
    }
}

.qodef-blog .qodef-blog-item .qodef-e-read-more {
    margin: 15px 0 0
}

.qodef-blog .qodef-blog-item .qodef-e-info {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%
}

@media only screen and (min-width:681px) {

    .qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-left,
    .qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-right {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%
    }

    .qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-right {
        justify-content: flex-end
    }
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 8px 0 0;
    font-size: 11px;
    color: #9e9e9e
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item:after {
    content: "/";
    margin-left: 2px;
    color: #9e9e9e
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item a {
    color: #9e9e9e;
    font-size: 11px;
    letter-spacing: .15em;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item a:hover {
    color: #c8d644
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item:last-child {
    padding-right: 0
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item:last-child:after {
    content: ""
}

.qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--top {
    flex-wrap: wrap;
    margin-bottom: 0
}

.qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--bottom {
    display: inline-flex;
    margin-top: 23px
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-social-share .qodef-shortcode-list a {
    color: #000
}

.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-social-share .qodef-shortcode-list a:hover {
    color: #c8d644
}

.qodef-blog .qodef-blog-item .qodef-e-info-tags a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 11px
}

.qodef-blog .qodef-blog-item .qodef-e-info-tags a:last-child {
    margin-right: 0
}

.qodef-blog .qodef-blog-item .qodef-e-post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.qodef-blog .qodef-blog-item.sticky .qodef-e-title a {
    position: relative;
    text-decoration: underline
}

.qodef-blog .qodef-blog-item.sticky .qodef-e-title a:after {
    content: "*";
    position: absolute;
    top: 0;
    right: -.5em;
    font-size: 1.5em
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-image {
    width: 100%
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-image img {
    width: 100%
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-audio {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-audio .mejs-controls .mejs-time-rail .mejs-time-current {
    background-color: #c8d644
}

.qodef-blog .qodef-blog-item.format-gallery .qodef-e-media .swiper-button-next {
    color: #858385;
    right: 35px !important
}

.qodef-blog .qodef-blog-item.format-gallery .qodef-e-media .swiper-button-prev {
    color: #858385;
    left: 35px !important
}

.qodef-blog .qodef-blog-item.format-gallery .qodef-e-media .swiper-button-next svg,
.qodef-blog .qodef-blog-item.format-gallery .qodef-e-media .swiper-button-prev svg {
    fill: #000;
    stroke: #000
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 103px 164px 108px 108px;
    background-color: #f7e4d6
}

@media only screen and (max-width:1366px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
        padding: 103px 13% 108px
    }
}

@media only screen and (max-width:768px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
        padding: 92px 6% 86px
    }
}

@media only screen and (max-width:680px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
        padding: 103px 6% 108px
    }
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link-mark {
    position: absolute;
    top: 41px;
    right: 48px
}

@media only screen and (max-width:480px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link-mark {
        display: none
    }
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link-text {
    position: relative;
    margin: 0;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    font-weight: 500
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link-url {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 71px 139px 70px 83px;
    background-color: #fafafa
}

@media only screen and (max-width:1366px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
        padding: 71px 13% 70px
    }
}

@media only screen and (max-width:768px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
        padding: 71px 6% 70px
    }
}

@media only screen and (max-width:680px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
        padding: 71px 6% 70px
    }
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-mark {
    position: absolute;
    top: 38px;
    right: 64px
}

@media only screen and (max-width:480px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-mark {
        display: none
    }
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-text {
    position: relative;
    margin: 0;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    font-weight: 500
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-author {
    position: relative;
    display: block;
    font-family: Cormorant, serif;
    margin: 21px 0 0;
    font-size: 20px;
    color: #0e0e0e;
    font-weight: 700
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-author-title {
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    color: #000110;
    letter-spacing: .2em;
    font-weight: 500;
    text-transform: uppercase
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-url {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.qodef-blog #qodef-page-comments .qodef-comment-form .form-submit {
    margin-bottom: 34px
}

.qodef-blog.qodef-items--fixed article .qodef-e-media,
.qodef-blog.qodef-items--fixed article .qodef-e-media-image {
    height: 100%
}

.qodef-blog.qodef--list article .qodef-e-read-more {
    margin-top: 0
}

body.author .qodef-blog.qodef--list article,
body.category .qodef-blog.qodef--list article,
body.date .qodef-blog.qodef--list article,
body.home.blog .qodef-blog.qodef--list article,
body.tag .qodef-blog.qodef--list article {
    margin-bottom: 97px
}

body.author .qodef-blog.qodef--list article:last-of-type,
body.category .qodef-blog.qodef--list article:last-of-type,
body.date .qodef-blog.qodef--list article:last-of-type,
body.home.blog .qodef-blog.qodef--list article:last-of-type,
body.tag .qodef-blog.qodef--list article:last-of-type {
    margin-bottom: 30px
}

body.author .qodef-blog.qodef--list article.format-link,
body.author .qodef-blog.qodef--list article.format-quote,
body.category .qodef-blog.qodef--list article.format-link,
body.category .qodef-blog.qodef--list article.format-quote,
body.date .qodef-blog.qodef--list article.format-link,
body.date .qodef-blog.qodef--list article.format-quote,
body.home.blog .qodef-blog.qodef--list article.format-link,
body.home.blog .qodef-blog.qodef--list article.format-quote,
body.tag .qodef-blog.qodef--list article.format-link,
body.tag .qodef-blog.qodef--list article.format-quote {
    margin-bottom: 80px
}

body.author .qodef-blog.qodef--list article.format-link:last-of-type,
body.author .qodef-blog.qodef--list article.format-quote:last-of-type,
body.category .qodef-blog.qodef--list article.format-link:last-of-type,
body.category .qodef-blog.qodef--list article.format-quote:last-of-type,
body.date .qodef-blog.qodef--list article.format-link:last-of-type,
body.date .qodef-blog.qodef--list article.format-quote:last-of-type,
body.home.blog .qodef-blog.qodef--list article.format-link:last-of-type,
body.home.blog .qodef-blog.qodef--list article.format-quote:last-of-type,
body.tag .qodef-blog.qodef--list article.format-link:last-of-type,
body.tag .qodef-blog.qodef--list article.format-quote:last-of-type {
    margin-bottom: 30px
}

.qodef-blog.qodef--single .qodef-blog-item {
    margin: 0 0 21px
}

.qodef-blog.qodef--single .qodef-blog-item.format-link .qodef-e-link {
    margin-bottom: 45px
}

.qodef-blog.qodef--single .qodef-blog-item.format-quote .qodef-e-quote {
    margin-bottom: 45px
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--top {
    margin: 2px 0 3px
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--top .qodef-e-info-item a {
    line-height: 26px
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom {
    margin-top: 26px
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tag-icon {
    padding: 7px 12px 0 0;
    display: inline-block
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a {
    margin-right: 0;
    padding-left: 7px;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    color: #000;
    text-transform: lowercase;
    letter-spacing: 0
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a:after {
    content: ",";
    position: absolute;
    top: 0;
    right: -3px
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a:first-child {
    padding-left: 0
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a:last-child:after {
    content: ""
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a:hover {
    color: #c8d644
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a:hover:before {
    background-color: #c8d644
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    height: 1px;
    width: 100%;
    background-color: #000
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-text .qodef-e-title {
    padding-bottom: 7px
}

@media only screen and (max-width:768px) {
    .qodef-blog.qodef--single .qodef-blog-item .qodef-e-text .qodef-e-title {
        padding-bottom: 15px
    }

    .qodef-blog.qodef--single .qodef-blog-item .qodef-e-text blockquote {
        padding: 0
    }

    .qodef-blog.qodef--single .qodef-blog-item .qodef-e-text blockquote:before {
        display: none
    }
}

#qodef-page-comments {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 96px
}

#qodef-page-comments .qodef-page-comments-not-found {
    margin: 0
}

#qodef-page-comments-list {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 81px
}

#qodef-page-comments-list .qodef-m-title {
    margin: 0 0 38px
}

#qodef-page-comments-list .qodef-m-comments {
    list-style: none;
    margin: 0;
    padding: 0
}

#qodef-page-comments-list .qodef-m-comments>.qodef-comment-item:first-child {
    margin-top: 0
}

#qodef-page-comments-list .qodef-comment-item {
    margin: 25px 0 0;
    padding: 0
}

#qodef-page-comments-list .qodef-comment-item .children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 109px
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-inner {
    display: flex;
    align-items: flex-start
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-image {
    flex-shrink: 0;
    margin-right: 26px
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-image img {
    display: block;
    margin: 6px 0 0;
    border-radius: 100%
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-title {
    margin: 0
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-date {
    margin-top: 3px
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-date a {
    color: #000;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #9e9e9e
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-date a:hover {
    color: #000
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-text {
    margin: 5px 0 0;
    color: #000;
    width: 88%
}

@media only screen and (max-width:768px) {
    #qodef-page-comments-list .qodef-comment-item .qodef-e-text {
        width: auto
    }
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links {
    margin-top: 14px
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links>* {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #000
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links>:last-child {
    margin-right: 0
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links svg {
    margin-left: 9px
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links svg rect {
    stroke: #000
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .comment-reply-title {
    margin-bottom: 12px
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .comment-reply-title small {
    float: right
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .comment-reply-title small a {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #c8d644;
    text-transform: uppercase;
    padding-left: 32px;
    letter-spacing: .2em
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .comment-reply-title small a:after {
    content: "M";
    font-family: ElegantIcons;
    padding-left: 16px;
    font-size: 15px;
    top: 3px;
    position: relative
}

@media only screen and (max-width:768px) {
    #qodef-page-comments-list .qodef-comment-item .comment-respond .comment-reply-title small {
        display: block;
        width: 100%
    }

    #qodef-page-comments-list .qodef-comment-item .comment-respond .comment-reply-title small a {
        padding-left: 0
    }
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button.qodef-size--full:after,
#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button.qodef-size--full:before {
    display: none
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:hover:before {
    color: #000;
    right: -36px
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:after {
    background: linear-gradient(90deg, #fff 50%, #000 50%)
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:hover:after {
    background: linear-gradient(90deg, #fff 40%, #000 50%)
}

#qodef-page-comments-list .qodef-comment-item .comment-respond .qodef-comment-form .form-submit .qodef-button:after {
    margin-left: 78px
}

#qodef-page-comments-list .qodef-m-pagination {
    margin-top: 50px
}

#qodef-page-comments-form {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-comments-form .comment-reply-title {
    margin: 0
}

#qodef-page-comments-form .comment-form {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-comments-form .comment-form .comment-notes {
    margin: 5px 0 0
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button.qodef-size--full:after,
#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button.qodef-size--full:before {
    display: none
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:hover:before {
    color: #000;
    right: -36px
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:after {
    background: linear-gradient(90deg, #fff 50%, #000 50%)
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:hover:after {
    background: linear-gradient(90deg, #fff 40%, #000 50%)
}

#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button:after {
    margin-left: 78px
}

.qodef-comment-form .comment-form-comment {
    margin: 23px 0 0
}

.qodef-comment-form .qodef-comment-fields-main .qodef-grid-item p {
    margin: 0
}

.qodef-comment-form .qodef-comment-fields-main .qodef-grid-item:last-child input {
    margin: 0 0 15px
}

.comment-form-cookies-consent {
    position: relative;
    top: 1px;
    display: flex;
    align-items: center;
    margin: 0 0 33px 0 !important
}

.comment-form-cookies-consent input[type=checkbox] {
    flex-shrink: 0;
    margin: 0 5px 0 0
}

.comment-form-cookies-consent label {
    margin: 0;
    font-family: Cormorant, serif;
    font-size: 17px;
    font-weight: 500;
    font-style: italic
}

@media only screen and (max-width:480px) {
    .comment-form-cookies-consent label {
        line-height: 1.6em
    }
}

.qodef-filter--on .qodef-hidden-filter-items {
    position: absolute !important;
    display: none !important;
    height: 0 !important;
    line-height: 1 !important
}

.qodef-filter--on .qodef-grid-inner {
    opacity: 1;
    transition: opacity .5s ease
}

.qodef-filter--on.qodef--filter-loading .qodef-grid-inner {
    opacity: 0;
    transition: opacity .2s ease
}

.qodef-filter--on.qodef--filter-loading .qodef-loading-spinner {
    bottom: calc(50% - 16px) !important
}

.qodef-m-filter {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 22px
}

.qodef-m-filter .qodef-m-filter-items,
.qodef-m-filter .qodef-m-filter-opener-target {
    position: relative;
    display: flex;
    align-items: flex-start
}

.qodef-m-filter .qodef-m-filter-opener-target {
    flex-wrap: wrap;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .3s ease
}

.qodef-m-filter .qodef-m-filter-opener-target.qodef-appear {
    height: auto;
    opacity: 1;
    visibility: visible
}

.qodef-m-filter .qodef-m-filter-item,
.qodef-m-filter .qodef-m-filter-opener {
    position: relative;
    display: block;
    margin: 0 21px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    transition: color .3s ease;
    cursor: pointer
}

.qodef-m-filter .qodef-m-filter-item.qodef--active,
.qodef-m-filter .qodef-m-filter-item:hover,
.qodef-m-filter .qodef-m-filter-opener.qodef--active,
.qodef-m-filter .qodef-m-filter-opener:hover {
    color: #c8d644
}

.qodef-m-filter .qodef-m-filter-opener {
    flex-shrink: 0;
    margin-left: -2px
}

.qodef-m-filter .qodef-m-filter-opener .qodef-m-icon {
    position: relative;
    top: 3px;
    margin-right: 3px
}

#qodef-page-footer {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-footer>* {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-footer-top-area {
    padding: 60px 0;
    background-color: #fafafa;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 0 solid #e1e1e1
}

#qodef-page-footer-top-area .qodef-content-full-width {
    padding: 0 70px
}

.qodef--boxed #qodef-page-footer-top-area {
    padding-left: 30px;
    padding-right: 30px
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-top-area {
    padding: 158px 0 30px
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-top-area #qodef-page-footer-top-area-inner {
    display: flex
}

@media only screen and (max-width:1024px) {
    .qodef-footer-custom-layout--enabled #qodef-page-footer-top-area #qodef-page-footer-top-area-inner {
        flex-direction: column
    }
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-top-area #qodef-page-footer-top-area-inner .qodef-footer-logo {
    width: 32%;
    margin-top: -5px;
    padding-right: 30px
}

@media only screen and (max-width:1024px) {
    .qodef-footer-custom-layout--enabled #qodef-page-footer-top-area #qodef-page-footer-top-area-inner .qodef-footer-logo {
        width: 100%;
        padding: 0 0 30px
    }
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-top-area #qodef-page-footer-top-area-inner>.qodef-grid {
    display: flex
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-top-area #qodef-page-footer-top-area-inner>.qodef-grid .qodef-grid-inner {
    width: 100%
}

#qodef-page-footer-bottom-area {
    padding: 60px 0;
    background-color: #fafafa;
    border-top: 0 solid #e1e1e1
}

#qodef-page-footer-bottom-area .qodef-content-full-width {
    padding: 0 70px
}

.qodef--boxed #qodef-page-footer-bottom-area {
    padding-left: 30px;
    padding-right: 30px
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area {
    padding: 0 0 154px
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner {
    display: flex
}

@media only screen and (max-width:1024px) {
    .qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner {
        flex-direction: column
    }
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner .qodef-footer-logo {
    width: 32%;
    padding-right: 30px
}

@media only screen and (max-width:1024px) {
    .qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner .qodef-footer-logo {
        width: 100%;
        padding: 0
    }
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner .qodef-footer-logo img {
    display: none
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner>.qodef-grid {
    display: flex;
    padding-top: 70px
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner>.qodef-grid:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #c8d644
}

.qodef-footer-custom-layout--enabled #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner>.qodef-grid .qodef-grid-inner {
    width: 100%
}

.qodef-footer-custom-layout--enabled.qodef-footer-skin--light #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner>.qodef-grid:before {
    background-color: #323232
}

.wp-block-button {
    float: none;
    margin: 1em 0
}

.wp-block-button .wp-block-button__link {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 15px 36px;
    color: #fff;
    background-color: #c8d644;
    border: 1px solid transparent;
    border-radius: 28px;
    cursor: pointer
}

.wp-block-button .wp-block-button__link:hover {
    color: #fff;
    background-color: #c8d644
}

.wp-block-button.is-style-outline {
    border: none
}

.wp-block-button.is-style-outline .wp-block-button__link {
    color: #000;
    background-color: #f4f4f4;
    border: 1px solid transparent;
    border-width: 1px
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: #000;
    background-color: #f4f4f4
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0
}

.wp-block-button.alignleft {
    text-align: left;
    margin-top: 0;
    margin-right: 2rem
}

.wp-block-button.alignright {
    text-align: right;
    margin-top: 0;
    margin-left: 2rem
}

.wp-block-image .alignleft {
    margin: 1rem 2rem 1rem 0 !important
}

.wp-block-image .alignright {
    margin: 1rem 0 1rem 2rem !important
}

.wp-block-image .aligncenter {
    clear: both
}

.wp-block-image figcaption {
    margin: 7px 0 0
}

.wp-block-cover-image {
    float: none !important;
    max-width: 100% !important;
    margin: 0 !important
}

.wp-block-cover-image h1,
.wp-block-cover-image h2,
.wp-block-cover-image h3,
.wp-block-cover-image h4,
.wp-block-cover-image h5,
.wp-block-cover-image h6,
.wp-block-cover-image p {
    z-index: 1 !important;
    margin: 0 auto !important;
    max-width: 580px !important;
    padding: 14px !important;
    text-align: center;
    line-height: 1em !important
}

.wp-block-cover-image h1 a,
.wp-block-cover-image h2 a,
.wp-block-cover-image h3 a,
.wp-block-cover-image h4 a,
.wp-block-cover-image h5 a,
.wp-block-cover-image h6 a,
.wp-block-cover-image p a {
    color: #fff !important
}

.wp-block-cover-image h1 a:hover,
.wp-block-cover-image h2 a:hover,
.wp-block-cover-image h3 a:hover,
.wp-block-cover-image h4 a:hover,
.wp-block-cover-image h5 a:hover,
.wp-block-cover-image h6 a:hover,
.wp-block-cover-image p a:hover {
    color: #c8d644 !important
}

.wp-block-cover-image :not(.has-text-color):not(.has-inline-color):not(a) {
    color: #fff !important;
    font-size: 30px !important
}

.wp-block-cover {
    margin-bottom: 1rem
}

.wp-block-cover.alignleft {
    margin-right: 2em
}

.wp-block-cover.alignright {
    margin-left: 2em
}

.wp-block-cover .wp-block-cover__inner-container {
    width: 100% !important
}

.wp-block-cover h1,
.wp-block-cover h2,
.wp-block-cover h3,
.wp-block-cover h4,
.wp-block-cover h5,
.wp-block-cover h6,
.wp-block-cover p {
    z-index: 1 !important;
    margin: 0 auto !important;
    max-width: 580px !important;
    padding: 14px !important;
    text-align: center;
    line-height: 1em !important
}

.wp-block-cover h1 a,
.wp-block-cover h2 a,
.wp-block-cover h3 a,
.wp-block-cover h4 a,
.wp-block-cover h5 a,
.wp-block-cover h6 a,
.wp-block-cover p a {
    color: #fff !important
}

.wp-block-cover h1 a:hover,
.wp-block-cover h2 a:hover,
.wp-block-cover h3 a:hover,
.wp-block-cover h4 a:hover,
.wp-block-cover h5 a:hover,
.wp-block-cover h6 a:hover,
.wp-block-cover p a:hover {
    color: #c8d644 !important
}

.wp-block-cover :not(.has-text-color):not(.has-inline-color):not(a) {
    color: #fff !important;
    font-size: 30px !important
}

.wp-block-gallery {
    margin-bottom: 2rem
}

.wp-block-gallery ul.blocks-gallery-grid {
    margin: 0
}

.wp-block-gallery ul.blocks-gallery-grid figcaption {
    margin: 0;
    overflow-x: hidden
}

.wp-block-gallery ul.blocks-gallery-grid+figcaption {
    margin-top: 0
}

.wp-block-pullquote {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: center !important;
    width: 100% !important;
    position: relative;
    z-index: -2
}

.wp-block-pullquote blockquote {
    padding: 25px !important
}

.has-drop-cap:after {
    content: "";
    display: table;
    table-layout: fixed;
    clear: both
}

.wp-block-file {
    display: flex;
    align-items: center;
    margin: 0;
    color: #000;
    text-decoration: none;
    transition: color .2s ease-out;
    cursor: pointer
}

.wp-block-file:hover {
    color: #c8d644
}

.wp-block-group.has-background {
    padding: 20px 30px
}

.gallery-item img {
    border: 0 !important
}

.wp-block-separator,
hr {
    border: 0;
    margin-bottom: 2rem;
    margin-top: 2rem;
    max-width: 100px;
    text-align: left
}

.wp-block-separator.is-style-wide,
hr.is-style-wide {
    max-width: 100%
}

.wp-block-separator.is-style-dots,
hr.is-style-dots {
    max-width: 100%;
    background-color: inherit;
    border: inherit;
    height: inherit;
    text-align: center
}

.wp-block-separator.is-style-dots:before,
hr.is-style-dots:before {
    color: #767676;
    font-size: 1.6875em;
    letter-spacing: .88889em;
    padding-left: .88889em
}

.wp-block-separator+h1:before,
.wp-block-separator+h2:before,
hr+h1:before,
hr+h2:before {
    display: none
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-content .qodef-e-text img {
    display: block
}

#qodef-page-header {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 114px;
    background-color: #fff;
    z-index: 100
}

#qodef-page-header .qodef-header-logo-link {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 114px;
    max-height: 100%
}

#qodef-page-header .qodef-header-logo-link img {
    display: block;
    margin: auto 0;
    width: auto;
    max-height: 100%;
    transition: opacity .3s ease
}

#qodef-page-header .qodef-header-logo-link.qodef-height--not-set img {
    max-height: 50%
}

#qodef-page-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px
}

.qodef-layout--justified-gallery {
    height: auto !important;
    visibility: hidden
}

.qodef-layout--justified-gallery.qodef--justified-gallery-init {
    visibility: visible
}

.qodef-layout--justified-gallery .qodef-grid-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 !important;
    overflow: hidden
}

.qodef-layout--justified-gallery .qodef-grid-item {
    position: absolute;
    width: auto;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden
}

.qodef-layout--justified-gallery .qodef-grid-item img {
    height: auto !important;
    width: auto !important;
    margin: 0 !important
}

.qodef-layout--justified-gallery>.jg-filtered {
    display: none
}

#qodef-page-mobile-header {
    position: relative;
    display: none;
    height: 70px;
    z-index: 100
}

#qodef-page-mobile-header .qodef-mobile-header-logo-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
    max-height: 100%
}

#qodef-page-mobile-header .qodef-mobile-header-logo-link img {
    display: block;
    margin: auto;
    width: auto;
    max-height: 100%;
    transition: opacity .3s ease
}

#qodef-page-mobile-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px
}

.qodef-mobile-header-opener {
    font-size: 20px;
    margin-left: 20px;
    color: #000
}

.qodef-mobile-header-opener:hover {
    color: #000
}

.qodef-mobile-header-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 70px);
    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
    padding: 0;
    margin: 0;
    z-index: 10
}

.qodef-mobile-header-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.qodef-mobile-header-navigation ul li {
    position: relative;
    margin: 0;
    padding: 5px 0
}

.qodef-mobile-header-navigation ul li ul {
    display: none
}

.qodef-mobile-header-navigation ul li.menu-item-has-children>a:after {
    font-family: ElegantIcons;
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    transform: translateY(-50%);
    transform-origin: 76% 37%;
    transition: transform .2s ease-out
}

body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul li.menu-item-has-children>a:after {
    content: "";
    width: 22px;
    height: 20px;
    background-image: url(../img/mobile-arrow-icon.png)
}

.qodef-mobile-header-navigation ul li.menu-item-has-children.qodef--opened>a:after {
    transform: rotate(90deg)
}

.qodef-mobile-header-navigation>ul {
    margin: 0 auto;
    padding: 34px 0
}

.qodef-mobile-header-navigation>ul>li>a {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 1.733em;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    color: #1d1d1d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    transition: all .2s ease-out
}

.qodef-mobile-header-navigation>ul>li>a:hover {
    color: #1d1d1d
}

.qodef-mobile-header-navigation>ul>li.current-menu-ancestor>a,
.qodef-mobile-header-navigation>ul>li.current-menu-item>a {
    padding-left: 12px;
    padding-right: 0
}

.qodef-mobile-header-navigation>ul>li.current-menu-ancestor>a:before,
.qodef-mobile-header-navigation>ul>li.current-menu-item>a:before {
    left: 0
}

.qodef-mobile-header-navigation>ul>li.current-menu-ancestor>a:before,
.qodef-mobile-header-navigation>ul>li.current-menu-item>a:before {
    content: "";
    position: absolute;
    top: 15px;
    height: 6px;
    width: 6px;
    opacity: 1;
    left: 0;
    background: #c8d644;
    border-radius: 100%;
    transition: all .2s ease-out
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul {
    margin: 14px 0 5px 10px
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li {
    padding: 3px 0 4px
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li>a,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li>a {
    position: relative;
    display: flex;
    white-space: normal;
    margin: 0 0;
    overflow: hidden;
    transition: padding .2s ease-out;
    padding-right: 12px;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 1.733em;
    font-weight: 400;
    color: #000;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em;
    line-height: 25px;
    font-weight: 500;
    font-style: italic;
    font-size: 20px
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li>a .qodef-menu-item-icon,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li>a .qodef-menu-item-icon {
    flex-shrink: 0
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li>a:before,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li>a:before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    height: 6px;
    width: 6px;
    background: #c8d644;
    border-radius: 100%;
    transition: left .2s ease-out, right .2s ease-out;
    left: -12px
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li>a:hover,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li>a:hover {
    padding-left: 12px;
    padding-right: 0
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li>a:hover:before,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li>a:hover:before {
    left: 0
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li.current-menu-ancestor>a,
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li.current-menu-item>a,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li.current-menu-ancestor>a,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li.current-menu-item>a {
    padding-left: 12px;
    padding-right: 0
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li.current-menu-ancestor>a:before,
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li.current-menu-item>a:before,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li.current-menu-ancestor>a:before,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li.current-menu-item>a:before {
    left: 0
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li.menu-item-has-children>a:after,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul li.menu-item-has-children>a:after {
    top: 12px
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul ul,
body:not([class*=borgholm-core]) .qodef-mobile-header-navigation ul ul ul {
    margin: 4px 0 -4px 15px
}

.qodef-mobile-header-navigation .qodef-drop-down-second-inner.qodef-content-grid {
    width: 100%
}

.qodef-header-navigation {
    height: 100%
}

.qodef-header-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.qodef-header-navigation ul li {
    position: relative;
    margin: 0;
    padding: 0
}

.qodef-header-navigation ul li.qodef--hide-link>a {
    cursor: default
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    margin: 0;
    padding: 26px 0 30px;
    background-color: #fff;
    border-top: 3px solid #c8d644;
    opacity: 0;
    visibility: hidden
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul li {
    padding: 0 31px 0 34px
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul li.menu-item-has-children>a:after {
    font-family: ElegantIcons;
    content: "5";
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 1;
    transform: translateY(-50%)
}

body:not([class*=borgholm-core]) .qodef-header-navigation ul li.qodef-menu-item--narrow ul li.menu-item-has-children>a:after {
    content: "▸";
    font-family: initial;
    font-size: 20px
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul li.menu-item-has-children:hover>ul {
    opacity: 1;
    visibility: visible
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul ul {
    top: calc(-26px - 3px);
    left: 100%
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right {
    left: auto;
    right: 0;
    text-align: right
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right li {
    padding: 0 35px 0 25px
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right li.menu-item-has-children>a:after {
    content: "4";
    left: 0;
    right: auto
}

body:not([class*=borgholm-core]) .qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right li.menu-item-has-children>a:after {
    content: "◂"
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right ul {
    left: -100%
}

.qodef-header-navigation ul li.qodef-menu-item--narrow:hover>ul {
    opacity: 1;
    visibility: visible;
    transition: opacity .2s ease-out
}

.qodef-header-navigation>ul {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap
}

.qodef-header-navigation>ul>li {
    height: 100%;
    margin: 0 29px
}

.qodef-header-navigation>ul>li:first-child {
    margin-left: 0
}

.qodef-header-navigation>ul>li:last-child {
    margin-right: 0
}

.qodef-header-navigation>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 1.733em;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    color: #1d1d1d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    transition: all .2s ease-out
}

.qodef-header-navigation>ul>li>a:before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    left: -12px;
    opacity: 0;
    background: #c8d644;
    border-radius: 100%;
    will-change: transform;
    transform-origin: center;
    animation: qodef-dot-drop .3s forwards ease
}

.qodef-header-navigation>ul>li>a:hover {
    color: #1d1d1d
}

.qodef-header-navigation>ul>li>a:hover:before {
    animation: qode-dot-bounce .3s forwards linear
}

.qodef-header-navigation>ul>li.current-menu-ancestor>a,
.qodef-header-navigation>ul>li.current-menu-item>a {
    color: #1d1d1d
}

.qodef-header-navigation>ul>li.current-menu-ancestor>a:before,
.qodef-header-navigation>ul>li.current-menu-item>a:before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    opacity: 1;
    left: -12px;
    background: #c8d644;
    border-radius: 100%;
    transition: all .2s ease-out;
    animation: none
}

.qodef-header-navigation>ul>li.current-menu-ancestor>a:hover:before,
.qodef-header-navigation>ul>li.current-menu-item>a:hover:before {
    animation: none
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul li>a {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em;
    line-height: 32px;
    font-weight: 500;
    font-style: italic;
    font-size: 15px
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li>a {
    position: relative;
    display: flex;
    white-space: normal;
    margin: 0 0;
    overflow: hidden;
    transition: padding .2s ease-out;
    padding-right: 12px
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li>a .qodef-menu-item-icon {
    flex-shrink: 0
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li>a:before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    height: 6px;
    width: 6px;
    background: #c8d644;
    border-radius: 100%;
    transition: left .2s ease-out, right .2s ease-out;
    left: -12px
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li.current-menu-ancestor>a,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li.current-menu-item>a,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li:hover>a {
    padding-left: 12px;
    padding-right: 0
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li.current-menu-ancestor>a:before,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li.current-menu-item>a:before,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li:hover>a:before {
    left: 0
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li>a {
    position: relative;
    display: flex;
    white-space: normal;
    margin: 0 0;
    overflow: hidden;
    transition: padding .2s ease-out;
    justify-content: flex-end;
    padding-left: 12px;
    padding-right: 0
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li>a .qodef-menu-item-icon {
    flex-shrink: 0
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li>a:before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    height: 6px;
    width: 6px;
    background: #c8d644;
    border-radius: 100%;
    transition: left .2s ease-out, right .2s ease-out;
    left: auto;
    right: -12px
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li.current-menu-ancestor>a,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li.current-menu-item>a,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li:hover>a {
    padding-left: 0;
    padding-right: 12px
}

.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li.current-menu-ancestor>a:before,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li.current-menu-item>a:before,
.qodef-header-navigation>ul>li.qodef-menu-item--narrow ul.qodef-drop-down--right li:hover>a:before {
    left: auto;
    right: 0
}

.qodef-m-pagination {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px
}

@media only screen and (max-width:1024px) {
    .qodef-sidebar--enabled .qodef-pagination-responsive--custom .qodef-m-pagination {
        margin-bottom: 19px
    }
}

.qodef-m-pagination.qodef--wp .nav-links {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 110px
}

@media only screen and (max-width:680px) {
    .qodef-m-pagination.qodef--wp .nav-links {
        padding: 0 50px
    }
}

.qodef-m-pagination.qodef--wp .page-numbers {
    position: relative;
    font-family: Cormorant, serif;
    font-weight: 700;
    color: #000;
    font-size: 20px;
    margin: 0 15px;
    letter-spacing: 0
}

.qodef-m-pagination.qodef--wp .page-numbers:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: #c8d644;
    bottom: -2px;
    left: 50%;
    width: 19px;
    height: 1px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: all .2s ease-in-out
}

.qodef-m-pagination.qodef--wp .page-numbers.dots:after {
    display: none
}

.qodef-m-pagination.qodef--wp .page-numbers * {
    display: block;
    line-height: inherit
}

.qodef-m-pagination.qodef--wp .page-numbers:first-child {
    margin-left: 0
}

.qodef-m-pagination.qodef--wp .page-numbers:last-child {
    margin-right: 0
}

.qodef-m-pagination.qodef--wp .page-numbers.next,
.qodef-m-pagination.qodef--wp .page-numbers.prev {
    position: absolute;
    display: flex;
    align-items: center;
    top: calc(50% + 1px);
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .2em;
    transform: translateY(-50%)
}

.qodef-m-pagination.qodef--wp .page-numbers.next .qodef-m-pagination-label,
.qodef-m-pagination.qodef--wp .page-numbers.prev .qodef-m-pagination-label {
    padding: 0 11px
}

@media only screen and (max-width:680px) {

    .qodef-m-pagination.qodef--wp .page-numbers.next .qodef-m-pagination-label,
    .qodef-m-pagination.qodef--wp .page-numbers.prev .qodef-m-pagination-label {
        display: none
    }
}

.qodef-m-pagination.qodef--wp .page-numbers.next svg,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg {
    position: relative;
    overflow: visible
}

.qodef-m-pagination.qodef--wp .page-numbers.next svg polygon,
.qodef-m-pagination.qodef--wp .page-numbers.next svg rect,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg polygon,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg rect {
    will-change: transform;
    transition: transform .2s ease-in-out
}

.qodef-m-pagination.qodef--wp .page-numbers.next svg rect,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg rect {
    transform-origin: left
}

.qodef-m-pagination.qodef--wp .page-numbers.next svg polygon,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg polygon {
    transform: translateX(0);
    stroke: none
}

.qodef-m-pagination.qodef--wp .page-numbers.next svg *,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg * {
    fill: currentColor;
    stroke: currentColor
}

.qodef-m-pagination.qodef--wp .page-numbers.next:after,
.qodef-m-pagination.qodef--wp .page-numbers.prev:after {
    display: none
}

.qodef-m-pagination.qodef--wp .page-numbers.next a,
.qodef-m-pagination.qodef--wp .page-numbers.prev a {
    position: relative;
    display: flex;
    align-items: center
}

.qodef-m-pagination.qodef--wp .page-numbers.next a span,
.qodef-m-pagination.qodef--wp .page-numbers.prev a span {
    display: inline-block;
    vertical-align: middle
}

.qodef-m-pagination.qodef--wp .page-numbers.next:hover,
.qodef-m-pagination.qodef--wp .page-numbers.prev:hover {
    color: #000
}

.qodef-m-pagination.qodef--wp .page-numbers.next:hover svg rect,
.qodef-m-pagination.qodef--wp .page-numbers.prev:hover svg rect {
    transform: scaleX(1.3)
}

.qodef-m-pagination.qodef--wp .page-numbers.next:hover svg polygon,
.qodef-m-pagination.qodef--wp .page-numbers.prev:hover svg polygon {
    transform: translateX(10px)
}

body:not([class*=borgholm-core]) .qodef-m-pagination.qodef--wp .page-numbers.next,
body:not([class*=borgholm-core]) .qodef-m-pagination.qodef--wp .page-numbers.prev {
    font-size: 17px
}

.qodef-m-pagination.qodef--wp .page-numbers.prev {
    left: 0
}

.qodef-m-pagination.qodef--wp .page-numbers.next {
    right: 0
}

.qodef-m-pagination.qodef--wp .page-numbers.current,
.qodef-m-pagination.qodef--wp .page-numbers:hover {
    color: #c8d644
}

.qodef-m-pagination.qodef--wp .page-numbers.current:after,
.qodef-m-pagination.qodef--wp .page-numbers:hover:after {
    transform: translateX(-50%) scaleX(1)
}

@media only screen and (max-width:1024px) {
    .qodef-sidebar--enabled .qodef-m-pagination.qodef--wp {
        margin-bottom: 19px
    }
}

.qodef-m-pagination.qodef--wp nav.comments-pagination,
.qodef-m-pagination.qodef--wp nav.pagination {
    width: 100%
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-items {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 110px
}

@media only screen and (max-width:680px) {
    .qodef-m-pagination.qodef--standard .qodef-m-pagination-items {
        padding: 0 50px
    }
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item {
    position: relative;
    font-family: Cormorant, serif;
    font-weight: 700;
    color: #000;
    font-size: 20px;
    margin: 0 15px;
    letter-spacing: 0
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: #c8d644;
    bottom: -2px;
    left: 50%;
    width: 19px;
    height: 1px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: all .2s ease-in-out
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.dots:after {
    display: none
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item * {
    display: block;
    line-height: inherit
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:first-child {
    margin-left: 0
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:last-child {
    margin-right: 0
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev {
    position: absolute;
    display: flex;
    align-items: center;
    top: calc(50% + 1px);
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .2em;
    transform: translateY(-50%)
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next .qodef-m-pagination-label,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev .qodef-m-pagination-label {
    padding: 0 11px
}

@media only screen and (max-width:680px) {

    .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next .qodef-m-pagination-label,
    .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev .qodef-m-pagination-label {
        display: none
    }
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg {
    position: relative;
    overflow: visible
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg polygon,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg rect,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg polygon,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg rect {
    will-change: transform;
    transition: transform .2s ease-in-out
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg rect,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg rect {
    transform-origin: left
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg polygon,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg polygon {
    transform: translateX(0);
    stroke: none
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg *,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg * {
    fill: currentColor;
    stroke: currentColor
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next:after,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev:after {
    display: none
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next a,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev a {
    position: relative;
    display: flex;
    align-items: center
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next a span,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev a span {
    display: inline-block;
    vertical-align: middle
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next:hover,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev:hover {
    color: #000
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next:hover svg rect,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev:hover svg rect {
    transform: scaleX(1.3)
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next:hover svg polygon,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev:hover svg polygon {
    transform: translateX(10px)
}

body:not([class*=borgholm-core]) .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next,
body:not([class*=borgholm-core]) .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev {
    font-size: 17px
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev {
    left: 0
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next {
    right: 0
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--active,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:hover {
    color: #c8d644
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--active:after,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:hover:after {
    transform: translateX(-50%) scaleX(1)
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-inner {
    width: 100%
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef-prev--hidden {
    margin-left: 0
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next a:hover,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev a:hover {
    color: #000
}

.qodef-m-pagination.qodef--load-more {
    text-align: center
}

.qodef-m-pagination.qodef--load-more .qodef-m-pagination-inner {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.qodef-m-pagination.qodef--load-more .qodef-load-more-button {
    opacity: 1
}

.qodef-m-pagination.qodef--infinite-scroll {
    text-align: center
}

.qodef-m-pagination.qodef--infinite-scroll .qodef-infinite-scroll-spinner {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 32px;
    line-height: 1;
    color: #c8d644;
    opacity: 0;
    z-index: -1;
    transition: opacity .2s ease-out
}

.qodef-m-pagination.qodef--infinite-scroll .qodef-infinite-scroll-spinner:before {
    display: block;
    line-height: inherit
}

.qodef-pagination--on.qodef-pagination-type--standard .qodef-grid-inner {
    opacity: 1;
    transition: opacity .2s ease-out
}

.qodef-pagination--on.qodef-pagination-type--standard.qodef--loading .qodef-grid-inner {
    opacity: 0
}

.qodef-pagination--on.qodef-pagination-type--load-more .qodef-loading-spinner {
    position: absolute;
    bottom: 0;
    left: calc(50% - 8px);
    font-size: 32px;
    line-height: 1;
    color: #c8d644;
    opacity: 0;
    z-index: -1;
    transition: opacity .2s ease-out
}

.qodef-pagination--on.qodef-pagination-type--load-more .qodef-loading-spinner:before {
    display: block;
    line-height: inherit
}

.qodef-pagination--on.qodef-pagination-type--load-more.qodef--loading .qodef-loading-spinner {
    opacity: 1;
    z-index: 1
}

.qodef-pagination--on.qodef-pagination-type--load-more.qodef--loading .qodef-load-more-button {
    opacity: 0
}

.qodef-pagination--on.qodef-pagination-type--infinite-scroll.qodef--loading .qodef-infinite-scroll-spinner {
    opacity: 1;
    z-index: 1
}

.qodef-single-links {
    position: relative;
    display: flex;
    align-items: baseline;
    width: 100%;
    margin: 15px 0
}

.qodef-single-links .qodef-m-single-links-title {
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    line-height: 1.818em;
    text-transform: uppercase;
    color: #9e9e9e;
    margin-right: 10px
}

.qodef-single-links a,
.qodef-single-links>span:not(.qodef-m-single-links-title) {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
    padding: 0 3px;
    color: #000
}

.qodef-single-links a:last-child,
.qodef-single-links>span:not(.qodef-m-single-links-title):last-child {
    margin-right: 0
}

.qodef-single-links>span:not(.qodef-m-single-links-title) {
    color: #c8d644
}

.qodef-search {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 50px
}

.qodef-search .qodef-e-search-heading {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 60px
}

.qodef-search .qodef-e-search-heading-title {
    margin: 0 0 20px
}

.qodef-search .qodef-e-search-heading-label {
    margin: 8px 0 0
}

.qodef-search .qodef-search-form .qodef-search-form-field {
    padding-right: 50px;
    margin: 0
}

.qodef-search .qodef-search-form .qodef-search-form-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #000;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

.qodef-search .qodef-search-form .qodef-search-form-button:hover {
    color: #c8d644
}

.qodef-search .qodef-search-form .qodef-search-form-button:after,
.qodef-search .qodef-search-form .qodef-search-form-button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

.qodef-search .qodef-search-form .qodef-search-form-button:before {
    content: "E";
    font-family: ElegantIcons;
    right: -8px;
    font-size: 11px;
    color: #000;
    line-height: 1;
    transition: all .2s ease-in-out
}

.qodef-search .qodef-search-form .qodef-search-form-button:after {
    content: "";
    position: absolute;
    right: 1px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

.qodef-search .qodef-search-form .qodef-search-form-button:hover:before {
    right: -19px
}

.qodef-search .qodef-search-form .qodef-search-form-button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.qodef-search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-search article {
    margin-bottom: 30px
}

.qodef-search article:last-child {
    margin-bottom: 0
}

.qodef-search article .qodef-e-inner {
    position: relative;
    display: flex;
    align-items: flex-start
}

.qodef-search article .qodef-e-inner>* {
    width: 100%
}

.qodef-search article .qodef-e-inner .qodef-e-image {
    flex-basis: 180px;
    padding-right: 30px
}

.qodef-search article .qodef-e-inner .qodef-e-title {
    margin: 0
}

.qodef-search article .qodef-e-inner .qodef-e-excerpt {
    margin: 15px 0 0
}

#qodef-page-sidebar {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 60px
}

.qodef-page-title {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 200px;
    background-color: #c8d644
}

.qodef-page-title .qodef-m-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 100%
}

.qodef-page-title .qodef-m-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.qodef-page-title .qodef-m-title {
    margin: 0;
    color: #fff
}

.widget {
    margin: 0 0 35px
}

.widget:last-child {
    margin-bottom: 0 !important
}

.widget .qodef-widget-title {
    margin: 0 0 13px
}

.widget .qodef-widget-title a {
    color: inherit
}

.widget .qodef-widget-title a:hover {
    color: #c8d644
}

.widget a {
    color: #000
}

.widget a:hover {
    color: #c8d644
}

.widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

.widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

.widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

.widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

.widget.widget_archive ul li,
.widget.widget_categories ul li,
.widget.widget_meta ul li,
.widget.widget_nav_menu ul li,
.widget.widget_pages ul li,
.widget.widget_recent_comments ul li,
.widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

.widget.widget_archive ul li a,
.widget.widget_categories ul li a,
.widget.widget_meta ul li a,
.widget.widget_nav_menu ul li a,
.widget.widget_pages ul li a,
.widget.widget_recent_comments ul li a,
.widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

.widget.widget_archive ul li a:before,
.widget.widget_categories ul li a:before,
.widget.widget_meta ul li a:before,
.widget.widget_nav_menu ul li a:before,
.widget.widget_pages ul li a:before,
.widget.widget_recent_comments ul li a:before,
.widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

.widget.widget_archive ul li a:hover,
.widget.widget_categories ul li a:hover,
.widget.widget_meta ul li a:hover,
.widget.widget_nav_menu ul li a:hover,
.widget.widget_pages ul li a:hover,
.widget.widget_recent_comments ul li a:hover,
.widget.widget_recent_entries ul li a:hover {
    color: #c8d644
}

.widget.widget_archive ul li a:hover:before,
.widget.widget_categories ul li a:hover:before,
.widget.widget_meta ul li a:hover:before,
.widget.widget_nav_menu ul li a:hover:before,
.widget.widget_pages ul li a:hover:before,
.widget.widget_recent_comments ul li a:hover:before,
.widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

.widget.widget_archive select,
.widget.widget_categories select,
.widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

.widget.widget_archive .select2.select2,
.widget.widget_categories .select2.select2,
.widget.widget_text .select2.select2 {
    margin-bottom: 0
}

.widget.widget_archive .select2.select2-container--default .select2-selection--single,
.widget.widget_categories .select2.select2-container--default .select2-selection--single,
.widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

.widget.widget_archive .wp-caption,
.widget.widget_categories .wp-caption,
.widget.widget_text .wp-caption {
    color: inherit
}

.widget.widget_calendar {
    width: 100%
}

.widget.widget_calendar table {
    table-layout: fixed
}

.widget.widget_calendar caption {
    margin-bottom: 5px
}

.widget.widget_calendar #today {
    color: #fff;
    background-color: #c8d644
}

.widget.widget_calendar #today a {
    color: inherit
}

.widget.widget_calendar tfoot td,
.widget.widget_calendar tfoot tr {
    border: 0
}

.widget.widget_calendar tfoot a {
    color: #000
}

.widget.widget_calendar tfoot a:hover {
    color: #c8d644
}

.widget.widget_text img {
    display: block
}

.widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

.widget.widget_rss ul li {
    margin-bottom: 35px
}

.widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

.widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

.widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

.widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

.widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

.widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

.widget.widget_search button:hover {
    color: #000
}

.widget.widget_search button:after,
.widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

.widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

.widget.widget_search button:hover:before {
    right: -16px
}

.widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #000
}

.widget.widget_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

.widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

.widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.widget.widget_media_image {
    margin-bottom: 0
}

.widget.widget_media_image .qodef-widget-title {
    margin-bottom: 21.5px
}

.widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

.widget.widget_media_image img {
    display: block
}

#qodef-top-area .widget {
    margin: 0 0 0;
    color: #a8a8a8
}

#qodef-top-area .widget:last-child {
    margin-bottom: 0 !important
}

#qodef-top-area .widget .qodef-widget-title {
    margin: 0 0 13px;
    color: #a8a8a8
}

#qodef-top-area .widget .qodef-widget-title a {
    color: inherit
}

#qodef-top-area .widget .qodef-widget-title a:hover {
    color: #fff
}

#qodef-top-area .widget a {
    color: #a8a8a8
}

#qodef-top-area .widget a:hover {
    color: #fff
}

#qodef-top-area .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

#qodef-top-area .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

#qodef-top-area .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

#qodef-top-area .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

#qodef-top-area .widget.widget_archive ul li,
#qodef-top-area .widget.widget_categories ul li,
#qodef-top-area .widget.widget_meta ul li,
#qodef-top-area .widget.widget_nav_menu ul li,
#qodef-top-area .widget.widget_pages ul li,
#qodef-top-area .widget.widget_recent_comments ul li,
#qodef-top-area .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

#qodef-top-area .widget.widget_archive ul li a,
#qodef-top-area .widget.widget_categories ul li a,
#qodef-top-area .widget.widget_meta ul li a,
#qodef-top-area .widget.widget_nav_menu ul li a,
#qodef-top-area .widget.widget_pages ul li a,
#qodef-top-area .widget.widget_recent_comments ul li a,
#qodef-top-area .widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

#qodef-top-area .widget.widget_archive ul li a:before,
#qodef-top-area .widget.widget_categories ul li a:before,
#qodef-top-area .widget.widget_meta ul li a:before,
#qodef-top-area .widget.widget_nav_menu ul li a:before,
#qodef-top-area .widget.widget_pages ul li a:before,
#qodef-top-area .widget.widget_recent_comments ul li a:before,
#qodef-top-area .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #fff;
    transition: all .2s ease-in-out
}

#qodef-top-area .widget.widget_archive ul li a:hover,
#qodef-top-area .widget.widget_categories ul li a:hover,
#qodef-top-area .widget.widget_meta ul li a:hover,
#qodef-top-area .widget.widget_nav_menu ul li a:hover,
#qodef-top-area .widget.widget_pages ul li a:hover,
#qodef-top-area .widget.widget_recent_comments ul li a:hover,
#qodef-top-area .widget.widget_recent_entries ul li a:hover {
    color: #fff
}

#qodef-top-area .widget.widget_archive ul li a:hover:before,
#qodef-top-area .widget.widget_categories ul li a:hover:before,
#qodef-top-area .widget.widget_meta ul li a:hover:before,
#qodef-top-area .widget.widget_nav_menu ul li a:hover:before,
#qodef-top-area .widget.widget_pages ul li a:hover:before,
#qodef-top-area .widget.widget_recent_comments ul li a:hover:before,
#qodef-top-area .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

#qodef-top-area .widget.widget_archive select,
#qodef-top-area .widget.widget_categories select,
#qodef-top-area .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

#qodef-top-area .widget.widget_archive .select2.select2,
#qodef-top-area .widget.widget_categories .select2.select2,
#qodef-top-area .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

#qodef-top-area .widget.widget_archive .select2.select2-container--default .select2-selection--single,
#qodef-top-area .widget.widget_categories .select2.select2-container--default .select2-selection--single,
#qodef-top-area .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

#qodef-top-area .widget.widget_archive .wp-caption,
#qodef-top-area .widget.widget_categories .wp-caption,
#qodef-top-area .widget.widget_text .wp-caption {
    color: inherit
}

#qodef-top-area .widget.widget_calendar {
    width: 100%
}

#qodef-top-area .widget.widget_calendar table {
    table-layout: fixed
}

#qodef-top-area .widget.widget_calendar caption {
    margin-bottom: 5px
}

#qodef-top-area .widget.widget_calendar #today {
    color: #fff;
    background-color: #fff
}

#qodef-top-area .widget.widget_calendar #today a {
    color: inherit
}

#qodef-top-area .widget.widget_calendar tfoot td,
#qodef-top-area .widget.widget_calendar tfoot tr {
    border: 0
}

#qodef-top-area .widget.widget_calendar tfoot a {
    color: #a8a8a8
}

#qodef-top-area .widget.widget_calendar tfoot a:hover {
    color: #fff
}

#qodef-top-area .widget.widget_text img {
    display: block
}

#qodef-top-area .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

#qodef-top-area .widget.widget_rss ul li {
    margin-bottom: 35px
}

#qodef-top-area .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

#qodef-top-area .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

#qodef-top-area .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

#qodef-top-area .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

#qodef-top-area .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-top-area .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

#qodef-top-area .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

#qodef-top-area .widget.widget_search button:hover {
    color: #000
}

#qodef-top-area .widget.widget_search button:after,
#qodef-top-area .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

#qodef-top-area .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-top-area .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

#qodef-top-area .widget.widget_search button:hover:before {
    right: -16px
}

#qodef-top-area .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-top-area .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #a8a8a8
}

#qodef-top-area .widget.widget_tag_cloud .tagcloud a:hover {
    color: #fff
}

#qodef-top-area .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

#qodef-top-area .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

#qodef-top-area .widget.widget_media_image {
    margin-bottom: 0
}

#qodef-top-area .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 21.5px
}

#qodef-top-area .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

#qodef-top-area .widget.widget_media_image img {
    display: block
}

#qodef-side-area .widget {
    margin: 0 0 0
}

#qodef-side-area .widget:last-child {
    margin-bottom: 0 !important
}

#qodef-side-area .widget .qodef-widget-title {
    margin: 0 0 13px
}

#qodef-side-area .widget .qodef-widget-title a {
    color: inherit
}

#qodef-side-area .widget .qodef-widget-title a:hover {
    color: #c8d644
}

#qodef-side-area .widget a {
    color: #000
}

#qodef-side-area .widget a:hover {
    color: #c8d644
}

#qodef-side-area .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

#qodef-side-area .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

#qodef-side-area .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

#qodef-side-area .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

#qodef-side-area .widget.widget_archive ul li,
#qodef-side-area .widget.widget_categories ul li,
#qodef-side-area .widget.widget_meta ul li,
#qodef-side-area .widget.widget_nav_menu ul li,
#qodef-side-area .widget.widget_pages ul li,
#qodef-side-area .widget.widget_recent_comments ul li,
#qodef-side-area .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

#qodef-side-area .widget.widget_archive ul li a,
#qodef-side-area .widget.widget_categories ul li a,
#qodef-side-area .widget.widget_meta ul li a,
#qodef-side-area .widget.widget_nav_menu ul li a,
#qodef-side-area .widget.widget_pages ul li a,
#qodef-side-area .widget.widget_recent_comments ul li a,
#qodef-side-area .widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

#qodef-side-area .widget.widget_archive ul li a:before,
#qodef-side-area .widget.widget_categories ul li a:before,
#qodef-side-area .widget.widget_meta ul li a:before,
#qodef-side-area .widget.widget_nav_menu ul li a:before,
#qodef-side-area .widget.widget_pages ul li a:before,
#qodef-side-area .widget.widget_recent_comments ul li a:before,
#qodef-side-area .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

#qodef-side-area .widget.widget_archive ul li a:hover,
#qodef-side-area .widget.widget_categories ul li a:hover,
#qodef-side-area .widget.widget_meta ul li a:hover,
#qodef-side-area .widget.widget_nav_menu ul li a:hover,
#qodef-side-area .widget.widget_pages ul li a:hover,
#qodef-side-area .widget.widget_recent_comments ul li a:hover,
#qodef-side-area .widget.widget_recent_entries ul li a:hover {
    color: #c8d644
}

#qodef-side-area .widget.widget_archive ul li a:hover:before,
#qodef-side-area .widget.widget_categories ul li a:hover:before,
#qodef-side-area .widget.widget_meta ul li a:hover:before,
#qodef-side-area .widget.widget_nav_menu ul li a:hover:before,
#qodef-side-area .widget.widget_pages ul li a:hover:before,
#qodef-side-area .widget.widget_recent_comments ul li a:hover:before,
#qodef-side-area .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

#qodef-side-area .widget.widget_archive select,
#qodef-side-area .widget.widget_categories select,
#qodef-side-area .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

#qodef-side-area .widget.widget_archive .select2.select2,
#qodef-side-area .widget.widget_categories .select2.select2,
#qodef-side-area .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

#qodef-side-area .widget.widget_archive .select2.select2-container--default .select2-selection--single,
#qodef-side-area .widget.widget_categories .select2.select2-container--default .select2-selection--single,
#qodef-side-area .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

#qodef-side-area .widget.widget_archive .wp-caption,
#qodef-side-area .widget.widget_categories .wp-caption,
#qodef-side-area .widget.widget_text .wp-caption {
    color: inherit
}

#qodef-side-area .widget.widget_calendar {
    width: 100%
}

#qodef-side-area .widget.widget_calendar table {
    table-layout: fixed
}

#qodef-side-area .widget.widget_calendar caption {
    margin-bottom: 5px
}

#qodef-side-area .widget.widget_calendar #today {
    color: #fff;
    background-color: #c8d644
}

#qodef-side-area .widget.widget_calendar #today a {
    color: inherit
}

#qodef-side-area .widget.widget_calendar tfoot td,
#qodef-side-area .widget.widget_calendar tfoot tr {
    border: 0
}

#qodef-side-area .widget.widget_calendar tfoot a {
    color: #000
}

#qodef-side-area .widget.widget_calendar tfoot a:hover {
    color: #c8d644
}

#qodef-side-area .widget.widget_text img {
    display: block
}

#qodef-side-area .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

#qodef-side-area .widget.widget_rss ul li {
    margin-bottom: 35px
}

#qodef-side-area .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

#qodef-side-area .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

#qodef-side-area .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

#qodef-side-area .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

#qodef-side-area .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-side-area .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

#qodef-side-area .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

#qodef-side-area .widget.widget_search button:hover {
    color: #000
}

#qodef-side-area .widget.widget_search button:after,
#qodef-side-area .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

#qodef-side-area .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-side-area .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

#qodef-side-area .widget.widget_search button:hover:before {
    right: -16px
}

#qodef-side-area .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-side-area .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #000
}

#qodef-side-area .widget.widget_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

#qodef-side-area .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

#qodef-side-area .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

#qodef-side-area .widget.widget_media_image {
    margin-bottom: 0
}

#qodef-side-area .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 21.5px
}

#qodef-side-area .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

#qodef-side-area .widget.widget_media_image img {
    display: block
}

#qodef-page-footer-top-area .widget {
    margin: 0 0 35px
}

#qodef-page-footer-top-area .widget:last-child {
    margin-bottom: 0 !important
}

#qodef-page-footer-top-area .widget .qodef-widget-title {
    margin: 0 0 16px
}

#qodef-page-footer-top-area .widget .qodef-widget-title a {
    color: inherit
}

#qodef-page-footer-top-area .widget .qodef-widget-title a:hover {
    color: #c8d644
}

#qodef-page-footer-top-area .widget a {
    color: #000
}

#qodef-page-footer-top-area .widget a:hover {
    color: #c8d644
}

#qodef-page-footer-top-area .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

#qodef-page-footer-top-area .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

#qodef-page-footer-top-area .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

#qodef-page-footer-top-area .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

#qodef-page-footer-top-area .widget.widget_archive ul li,
#qodef-page-footer-top-area .widget.widget_categories ul li,
#qodef-page-footer-top-area .widget.widget_meta ul li,
#qodef-page-footer-top-area .widget.widget_nav_menu ul li,
#qodef-page-footer-top-area .widget.widget_pages ul li,
#qodef-page-footer-top-area .widget.widget_recent_comments ul li,
#qodef-page-footer-top-area .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

#qodef-page-footer-top-area .widget.widget_archive ul li a,
#qodef-page-footer-top-area .widget.widget_categories ul li a,
#qodef-page-footer-top-area .widget.widget_meta ul li a,
#qodef-page-footer-top-area .widget.widget_nav_menu ul li a,
#qodef-page-footer-top-area .widget.widget_pages ul li a,
#qodef-page-footer-top-area .widget.widget_recent_comments ul li a,
#qodef-page-footer-top-area .widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

#qodef-page-footer-top-area .widget.widget_archive ul li a:before,
#qodef-page-footer-top-area .widget.widget_categories ul li a:before,
#qodef-page-footer-top-area .widget.widget_meta ul li a:before,
#qodef-page-footer-top-area .widget.widget_nav_menu ul li a:before,
#qodef-page-footer-top-area .widget.widget_pages ul li a:before,
#qodef-page-footer-top-area .widget.widget_recent_comments ul li a:before,
#qodef-page-footer-top-area .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

#qodef-page-footer-top-area .widget.widget_archive ul li a:hover,
#qodef-page-footer-top-area .widget.widget_categories ul li a:hover,
#qodef-page-footer-top-area .widget.widget_meta ul li a:hover,
#qodef-page-footer-top-area .widget.widget_nav_menu ul li a:hover,
#qodef-page-footer-top-area .widget.widget_pages ul li a:hover,
#qodef-page-footer-top-area .widget.widget_recent_comments ul li a:hover,
#qodef-page-footer-top-area .widget.widget_recent_entries ul li a:hover {
    color: #c8d644
}

#qodef-page-footer-top-area .widget.widget_archive ul li a:hover:before,
#qodef-page-footer-top-area .widget.widget_categories ul li a:hover:before,
#qodef-page-footer-top-area .widget.widget_meta ul li a:hover:before,
#qodef-page-footer-top-area .widget.widget_nav_menu ul li a:hover:before,
#qodef-page-footer-top-area .widget.widget_pages ul li a:hover:before,
#qodef-page-footer-top-area .widget.widget_recent_comments ul li a:hover:before,
#qodef-page-footer-top-area .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

#qodef-page-footer-top-area .widget.widget_archive select,
#qodef-page-footer-top-area .widget.widget_categories select,
#qodef-page-footer-top-area .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

#qodef-page-footer-top-area .widget.widget_archive .select2.select2,
#qodef-page-footer-top-area .widget.widget_categories .select2.select2,
#qodef-page-footer-top-area .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

#qodef-page-footer-top-area .widget.widget_archive .select2.select2-container--default .select2-selection--single,
#qodef-page-footer-top-area .widget.widget_categories .select2.select2-container--default .select2-selection--single,
#qodef-page-footer-top-area .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

#qodef-page-footer-top-area .widget.widget_archive .wp-caption,
#qodef-page-footer-top-area .widget.widget_categories .wp-caption,
#qodef-page-footer-top-area .widget.widget_text .wp-caption {
    color: inherit
}

#qodef-page-footer-top-area .widget.widget_calendar {
    width: 100%
}

#qodef-page-footer-top-area .widget.widget_calendar table {
    table-layout: fixed
}

#qodef-page-footer-top-area .widget.widget_calendar caption {
    margin-bottom: 5px
}

#qodef-page-footer-top-area .widget.widget_calendar #today {
    color: #fff;
    background-color: #c8d644
}

#qodef-page-footer-top-area .widget.widget_calendar #today a {
    color: inherit
}

#qodef-page-footer-top-area .widget.widget_calendar tfoot td,
#qodef-page-footer-top-area .widget.widget_calendar tfoot tr {
    border: 0
}

#qodef-page-footer-top-area .widget.widget_calendar tfoot a {
    color: #000
}

#qodef-page-footer-top-area .widget.widget_calendar tfoot a:hover {
    color: #c8d644
}

#qodef-page-footer-top-area .widget.widget_text img {
    display: block
}

#qodef-page-footer-top-area .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

#qodef-page-footer-top-area .widget.widget_rss ul li {
    margin-bottom: 35px
}

#qodef-page-footer-top-area .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

#qodef-page-footer-top-area .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

#qodef-page-footer-top-area .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

#qodef-page-footer-top-area .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

#qodef-page-footer-top-area .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-footer-top-area .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

#qodef-page-footer-top-area .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

#qodef-page-footer-top-area .widget.widget_search button:hover {
    color: #000
}

#qodef-page-footer-top-area .widget.widget_search button:after,
#qodef-page-footer-top-area .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

#qodef-page-footer-top-area .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-page-footer-top-area .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

#qodef-page-footer-top-area .widget.widget_search button:hover:before {
    right: -16px
}

#qodef-page-footer-top-area .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-page-footer-top-area .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #000
}

#qodef-page-footer-top-area .widget.widget_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

#qodef-page-footer-top-area .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

#qodef-page-footer-top-area .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

#qodef-page-footer-top-area .widget.widget_media_image {
    margin-bottom: 0
}

#qodef-page-footer-top-area .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 24.5px
}

#qodef-page-footer-top-area .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

#qodef-page-footer-top-area .widget.widget_media_image img {
    display: block
}

#qodef-page-footer-bottom-area .widget {
    margin: 0 0 35px
}

#qodef-page-footer-bottom-area .widget:last-child {
    margin-bottom: 0 !important
}

#qodef-page-footer-bottom-area .widget .qodef-widget-title {
    margin: 0 0 14px
}

#qodef-page-footer-bottom-area .widget .qodef-widget-title a {
    color: inherit
}

#qodef-page-footer-bottom-area .widget .qodef-widget-title a:hover {
    color: #c8d644
}

#qodef-page-footer-bottom-area .widget a {
    color: #000
}

#qodef-page-footer-bottom-area .widget a:hover {
    color: #c8d644
}

#qodef-page-footer-bottom-area .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

#qodef-page-footer-bottom-area .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

#qodef-page-footer-bottom-area .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

#qodef-page-footer-bottom-area .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

#qodef-page-footer-bottom-area .widget.widget_archive ul li,
#qodef-page-footer-bottom-area .widget.widget_categories ul li,
#qodef-page-footer-bottom-area .widget.widget_meta ul li,
#qodef-page-footer-bottom-area .widget.widget_nav_menu ul li,
#qodef-page-footer-bottom-area .widget.widget_pages ul li,
#qodef-page-footer-bottom-area .widget.widget_recent_comments ul li,
#qodef-page-footer-bottom-area .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

#qodef-page-footer-bottom-area .widget.widget_archive ul li a,
#qodef-page-footer-bottom-area .widget.widget_categories ul li a,
#qodef-page-footer-bottom-area .widget.widget_meta ul li a,
#qodef-page-footer-bottom-area .widget.widget_nav_menu ul li a,
#qodef-page-footer-bottom-area .widget.widget_pages ul li a,
#qodef-page-footer-bottom-area .widget.widget_recent_comments ul li a,
#qodef-page-footer-bottom-area .widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

#qodef-page-footer-bottom-area .widget.widget_archive ul li a:before,
#qodef-page-footer-bottom-area .widget.widget_categories ul li a:before,
#qodef-page-footer-bottom-area .widget.widget_meta ul li a:before,
#qodef-page-footer-bottom-area .widget.widget_nav_menu ul li a:before,
#qodef-page-footer-bottom-area .widget.widget_pages ul li a:before,
#qodef-page-footer-bottom-area .widget.widget_recent_comments ul li a:before,
#qodef-page-footer-bottom-area .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

#qodef-page-footer-bottom-area .widget.widget_archive ul li a:hover,
#qodef-page-footer-bottom-area .widget.widget_categories ul li a:hover,
#qodef-page-footer-bottom-area .widget.widget_meta ul li a:hover,
#qodef-page-footer-bottom-area .widget.widget_nav_menu ul li a:hover,
#qodef-page-footer-bottom-area .widget.widget_pages ul li a:hover,
#qodef-page-footer-bottom-area .widget.widget_recent_comments ul li a:hover,
#qodef-page-footer-bottom-area .widget.widget_recent_entries ul li a:hover {
    color: #c8d644
}

#qodef-page-footer-bottom-area .widget.widget_archive ul li a:hover:before,
#qodef-page-footer-bottom-area .widget.widget_categories ul li a:hover:before,
#qodef-page-footer-bottom-area .widget.widget_meta ul li a:hover:before,
#qodef-page-footer-bottom-area .widget.widget_nav_menu ul li a:hover:before,
#qodef-page-footer-bottom-area .widget.widget_pages ul li a:hover:before,
#qodef-page-footer-bottom-area .widget.widget_recent_comments ul li a:hover:before,
#qodef-page-footer-bottom-area .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

#qodef-page-footer-bottom-area .widget.widget_archive select,
#qodef-page-footer-bottom-area .widget.widget_categories select,
#qodef-page-footer-bottom-area .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

#qodef-page-footer-bottom-area .widget.widget_archive .select2.select2,
#qodef-page-footer-bottom-area .widget.widget_categories .select2.select2,
#qodef-page-footer-bottom-area .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

#qodef-page-footer-bottom-area .widget.widget_archive .select2.select2-container--default .select2-selection--single,
#qodef-page-footer-bottom-area .widget.widget_categories .select2.select2-container--default .select2-selection--single,
#qodef-page-footer-bottom-area .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

#qodef-page-footer-bottom-area .widget.widget_archive .wp-caption,
#qodef-page-footer-bottom-area .widget.widget_categories .wp-caption,
#qodef-page-footer-bottom-area .widget.widget_text .wp-caption {
    color: inherit
}

#qodef-page-footer-bottom-area .widget.widget_calendar {
    width: 100%
}

#qodef-page-footer-bottom-area .widget.widget_calendar table {
    table-layout: fixed
}

#qodef-page-footer-bottom-area .widget.widget_calendar caption {
    margin-bottom: 5px
}

#qodef-page-footer-bottom-area .widget.widget_calendar #today {
    color: #fff;
    background-color: #c8d644
}

#qodef-page-footer-bottom-area .widget.widget_calendar #today a {
    color: inherit
}

#qodef-page-footer-bottom-area .widget.widget_calendar tfoot td,
#qodef-page-footer-bottom-area .widget.widget_calendar tfoot tr {
    border: 0
}

#qodef-page-footer-bottom-area .widget.widget_calendar tfoot a {
    color: #000
}

#qodef-page-footer-bottom-area .widget.widget_calendar tfoot a:hover {
    color: #c8d644
}

#qodef-page-footer-bottom-area .widget.widget_text img {
    display: block
}

#qodef-page-footer-bottom-area .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

#qodef-page-footer-bottom-area .widget.widget_rss ul li {
    margin-bottom: 35px
}

#qodef-page-footer-bottom-area .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

#qodef-page-footer-bottom-area .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

#qodef-page-footer-bottom-area .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

#qodef-page-footer-bottom-area .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

#qodef-page-footer-bottom-area .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-footer-bottom-area .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

#qodef-page-footer-bottom-area .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

#qodef-page-footer-bottom-area .widget.widget_search button:hover {
    color: #000
}

#qodef-page-footer-bottom-area .widget.widget_search button:after,
#qodef-page-footer-bottom-area .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

#qodef-page-footer-bottom-area .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-page-footer-bottom-area .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

#qodef-page-footer-bottom-area .widget.widget_search button:hover:before {
    right: -16px
}

#qodef-page-footer-bottom-area .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-page-footer-bottom-area .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #000
}

#qodef-page-footer-bottom-area .widget.widget_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

#qodef-page-footer-bottom-area .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

#qodef-page-footer-bottom-area .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

#qodef-page-footer-bottom-area .widget.widget_media_image {
    margin-bottom: 0
}

#qodef-page-footer-bottom-area .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 22.5px
}

#qodef-page-footer-bottom-area .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

#qodef-page-footer-bottom-area .widget.widget_media_image img {
    display: block
}

#qodef-page-footer .widget {
    margin: 0 0 35px;
    color: #9e9e9e
}

#qodef-page-footer .widget:last-child {
    margin-bottom: 0 !important
}

#qodef-page-footer .widget .qodef-widget-title {
    margin: 0 0 13px
}

#qodef-page-footer .widget .qodef-widget-title a {
    color: inherit
}

#qodef-page-footer .widget .qodef-widget-title a:hover {
    color: #c8d644
}

#qodef-page-footer .widget a {
    color: #000
}

#qodef-page-footer .widget a:hover {
    color: #c8d644
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

#qodef-page-footer .widget.widget_archive ul li,
#qodef-page-footer .widget.widget_categories ul li,
#qodef-page-footer .widget.widget_meta ul li,
#qodef-page-footer .widget.widget_nav_menu ul li,
#qodef-page-footer .widget.widget_pages ul li,
#qodef-page-footer .widget.widget_recent_comments ul li,
#qodef-page-footer .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

#qodef-page-footer .widget.widget_archive ul li a,
#qodef-page-footer .widget.widget_categories ul li a,
#qodef-page-footer .widget.widget_meta ul li a,
#qodef-page-footer .widget.widget_nav_menu ul li a,
#qodef-page-footer .widget.widget_pages ul li a,
#qodef-page-footer .widget.widget_recent_comments ul li a,
#qodef-page-footer .widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

#qodef-page-footer .widget.widget_archive ul li a:before,
#qodef-page-footer .widget.widget_categories ul li a:before,
#qodef-page-footer .widget.widget_meta ul li a:before,
#qodef-page-footer .widget.widget_nav_menu ul li a:before,
#qodef-page-footer .widget.widget_pages ul li a:before,
#qodef-page-footer .widget.widget_recent_comments ul li a:before,
#qodef-page-footer .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

#qodef-page-footer .widget.widget_archive ul li a:hover,
#qodef-page-footer .widget.widget_categories ul li a:hover,
#qodef-page-footer .widget.widget_meta ul li a:hover,
#qodef-page-footer .widget.widget_nav_menu ul li a:hover,
#qodef-page-footer .widget.widget_pages ul li a:hover,
#qodef-page-footer .widget.widget_recent_comments ul li a:hover,
#qodef-page-footer .widget.widget_recent_entries ul li a:hover {
    color: #c8d644
}

#qodef-page-footer .widget.widget_archive ul li a:hover:before,
#qodef-page-footer .widget.widget_categories ul li a:hover:before,
#qodef-page-footer .widget.widget_meta ul li a:hover:before,
#qodef-page-footer .widget.widget_nav_menu ul li a:hover:before,
#qodef-page-footer .widget.widget_pages ul li a:hover:before,
#qodef-page-footer .widget.widget_recent_comments ul li a:hover:before,
#qodef-page-footer .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

#qodef-page-footer .widget.widget_archive select,
#qodef-page-footer .widget.widget_categories select,
#qodef-page-footer .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

#qodef-page-footer .widget.widget_archive .select2.select2,
#qodef-page-footer .widget.widget_categories .select2.select2,
#qodef-page-footer .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

#qodef-page-footer .widget.widget_archive .select2.select2-container--default .select2-selection--single,
#qodef-page-footer .widget.widget_categories .select2.select2-container--default .select2-selection--single,
#qodef-page-footer .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

#qodef-page-footer .widget.widget_archive .wp-caption,
#qodef-page-footer .widget.widget_categories .wp-caption,
#qodef-page-footer .widget.widget_text .wp-caption {
    color: inherit
}

#qodef-page-footer .widget.widget_calendar {
    width: 100%
}

#qodef-page-footer .widget.widget_calendar table {
    table-layout: fixed
}

#qodef-page-footer .widget.widget_calendar caption {
    margin-bottom: 5px
}

#qodef-page-footer .widget.widget_calendar #today {
    color: #fff;
    background-color: #c8d644
}

#qodef-page-footer .widget.widget_calendar #today a {
    color: inherit
}

#qodef-page-footer .widget.widget_calendar tfoot td,
#qodef-page-footer .widget.widget_calendar tfoot tr {
    border: 0
}

#qodef-page-footer .widget.widget_calendar tfoot a {
    color: #000
}

#qodef-page-footer .widget.widget_calendar tfoot a:hover {
    color: #c8d644
}

#qodef-page-footer .widget.widget_text img {
    display: block
}

#qodef-page-footer .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

#qodef-page-footer .widget.widget_rss ul li {
    margin-bottom: 35px
}

#qodef-page-footer .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

#qodef-page-footer .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

#qodef-page-footer .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

#qodef-page-footer .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

#qodef-page-footer .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-page-footer .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

#qodef-page-footer .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

#qodef-page-footer .widget.widget_search button:hover {
    color: #000
}

#qodef-page-footer .widget.widget_search button:after,
#qodef-page-footer .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

#qodef-page-footer .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-page-footer .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

#qodef-page-footer .widget.widget_search button:hover:before {
    right: -16px
}

#qodef-page-footer .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-page-footer .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #000
}

#qodef-page-footer .widget.widget_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

#qodef-page-footer .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

#qodef-page-footer .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

#qodef-page-footer .widget.widget_media_image {
    margin-bottom: 0
}

#qodef-page-footer .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 21.5px
}

#qodef-page-footer .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

#qodef-page-footer .widget.widget_media_image img {
    display: block
}

.qodef-footer-skin--light #qodef-page-footer .widget {
    margin: 0 0 35px;
    color: #a8a8a8
}

.qodef-footer-skin--light #qodef-page-footer .widget:last-child {
    margin-bottom: 0 !important
}

.qodef-footer-skin--light #qodef-page-footer .widget .qodef-widget-title {
    margin: 0 0 13px;
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget .qodef-widget-title a {
    color: inherit
}

.qodef-footer-skin--light #qodef-page-footer .widget .qodef-widget-title a:hover {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget a {
    color: #a8a8a8
}

.qodef-footer-skin--light #qodef-page-footer .widget a:hover {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

.qodef-footer-skin--light #qodef-page-footer .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

.qodef-footer-skin--light #qodef-page-footer .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_meta ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_nav_menu ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_pages ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_comments ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_meta ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_nav_menu ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_pages ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_comments ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_entries ul li a {
    position: relative;
    color: #a8a8a8
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_meta ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_nav_menu ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_pages ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_comments ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #fff;
    transition: all .2s ease-in-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_meta ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_nav_menu ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_pages ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_comments ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_entries ul li a:hover {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_meta ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_nav_menu ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_pages ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_comments ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive select,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories select,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive .select2.select2,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories .select2.select2,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive .select2.select2-container--default .select2-selection--single,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories .select2.select2-container--default .select2-selection--single,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_archive .wp-caption,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_categories .wp-caption,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_text .wp-caption {
    color: inherit
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar {
    width: 100%
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar table {
    table-layout: fixed
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar caption {
    margin-bottom: 5px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar #today {
    color: #fff;
    background-color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar #today a {
    color: inherit
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar tfoot td,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar tfoot tr {
    border: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar tfoot a {
    color: #a8a8a8
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar tfoot a:hover {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_text img {
    display: block
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_rss ul li {
    margin-bottom: 35px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:hover {
    color: #a8a8a8
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:after,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:hover:before {
    right: -16px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #a8a8a8
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_tag_cloud .tagcloud a:hover {
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_media_image {
    margin-bottom: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 21.5px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_media_image img {
    display: block
}

.qodef-mega-menu-widget-holder .widget {
    margin: 0 0 35px;
    color: #fff
}

.qodef-mega-menu-widget-holder .widget:last-child {
    margin-bottom: 0 !important
}

.qodef-mega-menu-widget-holder .widget .qodef-widget-title {
    margin: 0 0 13px;
    color: #fff
}

.qodef-mega-menu-widget-holder .widget .qodef-widget-title a {
    color: inherit
}

.qodef-mega-menu-widget-holder .widget .qodef-widget-title a:hover {
    color: #c8d644
}

.qodef-mega-menu-widget-holder .widget a {
    color: #fff
}

.qodef-mega-menu-widget-holder .widget a:hover {
    color: #c8d644
}

.qodef-mega-menu-widget-holder .widget ul:not(.qodef-shortcode-list) {
    padding: 0;
    margin: 0;
    list-style: none
}

.qodef-mega-menu-widget-holder .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px
}

.qodef-mega-menu-widget-holder .widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0
}

.qodef-mega-menu-widget-holder .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
    margin-left: 1em
}

.qodef-mega-menu-widget-holder .widget.widget_archive ul li,
.qodef-mega-menu-widget-holder .widget.widget_categories ul li,
.qodef-mega-menu-widget-holder .widget.widget_meta ul li,
.qodef-mega-menu-widget-holder .widget.widget_nav_menu ul li,
.qodef-mega-menu-widget-holder .widget.widget_pages ul li,
.qodef-mega-menu-widget-holder .widget.widget_recent_comments ul li,
.qodef-mega-menu-widget-holder .widget.widget_recent_entries ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700;
    color: #464646
}

.qodef-mega-menu-widget-holder .widget.widget_archive ul li a,
.qodef-mega-menu-widget-holder .widget.widget_categories ul li a,
.qodef-mega-menu-widget-holder .widget.widget_meta ul li a,
.qodef-mega-menu-widget-holder .widget.widget_nav_menu ul li a,
.qodef-mega-menu-widget-holder .widget.widget_pages ul li a,
.qodef-mega-menu-widget-holder .widget.widget_recent_comments ul li a,
.qodef-mega-menu-widget-holder .widget.widget_recent_entries ul li a {
    position: relative;
    color: #464646
}

.qodef-mega-menu-widget-holder .widget.widget_archive ul li a:before,
.qodef-mega-menu-widget-holder .widget.widget_categories ul li a:before,
.qodef-mega-menu-widget-holder .widget.widget_meta ul li a:before,
.qodef-mega-menu-widget-holder .widget.widget_nav_menu ul li a:before,
.qodef-mega-menu-widget-holder .widget.widget_pages ul li a:before,
.qodef-mega-menu-widget-holder .widget.widget_recent_comments ul li a:before,
.qodef-mega-menu-widget-holder .widget.widget_recent_entries ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

.qodef-mega-menu-widget-holder .widget.widget_archive ul li a:hover,
.qodef-mega-menu-widget-holder .widget.widget_categories ul li a:hover,
.qodef-mega-menu-widget-holder .widget.widget_meta ul li a:hover,
.qodef-mega-menu-widget-holder .widget.widget_nav_menu ul li a:hover,
.qodef-mega-menu-widget-holder .widget.widget_pages ul li a:hover,
.qodef-mega-menu-widget-holder .widget.widget_recent_comments ul li a:hover,
.qodef-mega-menu-widget-holder .widget.widget_recent_entries ul li a:hover {
    color: #c8d644
}

.qodef-mega-menu-widget-holder .widget.widget_archive ul li a:hover:before,
.qodef-mega-menu-widget-holder .widget.widget_categories ul li a:hover:before,
.qodef-mega-menu-widget-holder .widget.widget_meta ul li a:hover:before,
.qodef-mega-menu-widget-holder .widget.widget_nav_menu ul li a:hover:before,
.qodef-mega-menu-widget-holder .widget.widget_pages ul li a:hover:before,
.qodef-mega-menu-widget-holder .widget.widget_recent_comments ul li a:hover:before,
.qodef-mega-menu-widget-holder .widget.widget_recent_entries ul li a:hover:before {
    width: 100%
}

.qodef-mega-menu-widget-holder .widget.widget_archive select,
.qodef-mega-menu-widget-holder .widget.widget_categories select,
.qodef-mega-menu-widget-holder .widget.widget_text select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

.qodef-mega-menu-widget-holder .widget.widget_archive .select2.select2,
.qodef-mega-menu-widget-holder .widget.widget_categories .select2.select2,
.qodef-mega-menu-widget-holder .widget.widget_text .select2.select2 {
    margin-bottom: 0
}

.qodef-mega-menu-widget-holder .widget.widget_archive .select2.select2-container--default .select2-selection--single,
.qodef-mega-menu-widget-holder .widget.widget_categories .select2.select2-container--default .select2-selection--single,
.qodef-mega-menu-widget-holder .widget.widget_text .select2.select2-container--default .select2-selection--single {
    color: inherit !important
}

.qodef-mega-menu-widget-holder .widget.widget_archive .wp-caption,
.qodef-mega-menu-widget-holder .widget.widget_categories .wp-caption,
.qodef-mega-menu-widget-holder .widget.widget_text .wp-caption {
    color: inherit
}

.qodef-mega-menu-widget-holder .widget.widget_calendar {
    width: 100%
}

.qodef-mega-menu-widget-holder .widget.widget_calendar table {
    table-layout: fixed
}

.qodef-mega-menu-widget-holder .widget.widget_calendar caption {
    margin-bottom: 5px
}

.qodef-mega-menu-widget-holder .widget.widget_calendar #today {
    color: #fff;
    background-color: #c8d644
}

.qodef-mega-menu-widget-holder .widget.widget_calendar #today a {
    color: inherit
}

.qodef-mega-menu-widget-holder .widget.widget_calendar tfoot td,
.qodef-mega-menu-widget-holder .widget.widget_calendar tfoot tr {
    border: 0
}

.qodef-mega-menu-widget-holder .widget.widget_calendar tfoot a {
    color: #fff
}

.qodef-mega-menu-widget-holder .widget.widget_calendar tfoot a:hover {
    color: #c8d644
}

.qodef-mega-menu-widget-holder .widget.widget_text img {
    display: block
}

.qodef-mega-menu-widget-holder .widget.widget_rss .rsswidget img {
    vertical-align: baseline
}

.qodef-mega-menu-widget-holder .widget.widget_rss ul li {
    margin-bottom: 35px
}

.qodef-mega-menu-widget-holder .widget.widget_rss ul li:last-child {
    margin-bottom: 0
}

.qodef-mega-menu-widget-holder .widget.widget_rss ul .rsswidget {
    display: block;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.333em
}

.qodef-mega-menu-widget-holder .widget.widget_rss ul .rssSummary {
    margin-top: 15px
}

.qodef-mega-menu-widget-holder .widget.widget_rss ul cite {
    display: block;
    margin-top: 8px
}

.qodef-mega-menu-widget-holder .widget.widget_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-mega-menu-widget-holder .widget.widget_search input {
    padding-right: 50px;
    margin: 0
}

.qodef-mega-menu-widget-holder .widget.widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #464646;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

.qodef-mega-menu-widget-holder .widget.widget_search button:hover {
    color: #000
}

.qodef-mega-menu-widget-holder .widget.widget_search button:after,
.qodef-mega-menu-widget-holder .widget.widget_search button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block
}

.qodef-mega-menu-widget-holder .widget.widget_search button:before {
    content: "E";
    font-family: ElegantIcons;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    will-change: transform;
    right: -6px;
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.qodef-mega-menu-widget-holder .widget.widget_search button:after {
    content: "";
    position: absolute;
    right: 2px;
    width: 34px;
    height: 2px;
    background: #000;
    transition: all .2s ease-in-out;
    transform-origin: left
}

.qodef-mega-menu-widget-holder .widget.widget_search button:hover:before {
    right: -16px
}

.qodef-mega-menu-widget-holder .widget.widget_search button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.qodef-mega-menu-widget-holder .widget.widget_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #fff
}

.qodef-mega-menu-widget-holder .widget.widget_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

.qodef-mega-menu-widget-holder .widget.widget_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

.qodef-mega-menu-widget-holder .widget.widget_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.qodef-mega-menu-widget-holder .widget.widget_media_image {
    margin-bottom: 0
}

.qodef-mega-menu-widget-holder .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 21.5px
}

.qodef-mega-menu-widget-holder .widget.widget_media_image a {
    display: inline-block;
    vertical-align: top
}

.qodef-mega-menu-widget-holder .widget.widget_media_image img {
    display: block
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_calendar #today {
    color: #000
}

.qodef-footer-skin--light #qodef-page-footer .widget .select2-container--default .select2-selection--single {
    border-bottom: 2px solid #fff !important;
    color: #fff
}

.qodef-footer-skin--light #qodef-page-footer .widget .select2-container--default .select2-selection__arrow {
    color: #fff
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

input[type=search]::-ms-clear {
    display: none
}

input[type=text]::-ms-clear {
    display: none
}

#qodef-woo-page .qodef-woo-product-mark,
.qodef-woo-shortcode .qodef-woo-product-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 12px 14px 10px 15px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    background-color: #c8d644;
    z-index: 5
}

#qodef-woo-page .qodef-woo-product-mark.qodef-woo-onsale,
.qodef-woo-shortcode .qodef-woo-product-mark.qodef-woo-onsale {
    background-color: #f0b918
}

#qodef-woo-page .qodef-woo-product-mark.qodef-out-of-stock,
.qodef-woo-shortcode .qodef-woo-product-mark.qodef-out-of-stock {
    background-color: #000
}

#qodef-woo-page .qodef-woo-product-title,
.qodef-woo-shortcode .qodef-woo-product-title {
    margin: 0
}

#qodef-woo-page .qodef-woo-ratings,
.qodef-woo-shortcode .qodef-woo-ratings {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    line-height: 1
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-inner,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-inner {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star {
    font-size: 14px;
    color: #c8d644
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star>span,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star>span {
    margin: 0 4px
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star.qodef--active,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star.qodef--active {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap
}

#qodef-woo-page .price,
.qodef-woo-shortcode .price {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-family: Cormorant, serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8d644
}

#qodef-woo-page .price del,
.qodef-woo-shortcode .price del {
    position: relative;
    margin-right: 8px;
    text-decoration: none;
    color: silver
}

#qodef-woo-page .price del:after,
.qodef-woo-shortcode .price del:after {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor
}

#qodef-woo-page .price ins,
.qodef-woo-shortcode .price ins {
    text-decoration: none
}

#qodef-woo-page .added_to_cart,
#qodef-woo-page .button,
.qodef-woo-shortcode .added_to_cart,
.qodef-woo-shortcode .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 14px 28px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #c8d644;
    border: 1px solid transparent;
    padding: 15px 36px
}

#qodef-woo-page .added_to_cart:hover,
#qodef-woo-page .button:hover,
.qodef-woo-shortcode .added_to_cart:hover,
.qodef-woo-shortcode .button:hover {
    color: #fff;
    background-color: #c8d644
}

#qodef-woo-page .added_to_cart:before,
#qodef-woo-page .button:before,
.qodef-woo-shortcode .added_to_cart:before,
.qodef-woo-shortcode .button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-woo-page .added_to_cart:after,
#qodef-woo-page .button:after,
.qodef-woo-shortcode .added_to_cart:after,
.qodef-woo-shortcode .button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

#qodef-woo-page .added_to_cart.qodef-size--full:after,
#qodef-woo-page .added_to_cart.qodef-size--full:before,
#qodef-woo-page .button.qodef-size--full:after,
#qodef-woo-page .button.qodef-size--full:before,
.qodef-woo-shortcode .added_to_cart.qodef-size--full:after,
.qodef-woo-shortcode .added_to_cart.qodef-size--full:before,
.qodef-woo-shortcode .button.qodef-size--full:after,
.qodef-woo-shortcode .button.qodef-size--full:before {
    display: none
}

#qodef-woo-page .added_to_cart:hover:before,
#qodef-woo-page .button:hover:before,
.qodef-woo-shortcode .added_to_cart:hover:before,
.qodef-woo-shortcode .button:hover:before {
    color: #000;
    right: -36px
}

#qodef-woo-page .added_to_cart:hover:after,
#qodef-woo-page .button:hover:after,
.qodef-woo-shortcode .added_to_cart:hover:after,
.qodef-woo-shortcode .button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-woo-page .added_to_cart:after,
#qodef-woo-page .button:after,
.qodef-woo-shortcode .added_to_cart:after,
.qodef-woo-shortcode .button:after {
    background: linear-gradient(90deg, #fff 50%, #000 50%)
}

#qodef-woo-page .added_to_cart:hover:after,
#qodef-woo-page .button:hover:after,
.qodef-woo-shortcode .added_to_cart:hover:after,
.qodef-woo-shortcode .button:hover:after {
    background: linear-gradient(90deg, #fff 40%, #000 50%)
}

#qodef-woo-page .added_to_cart.added,
#qodef-woo-page .button.added,
.qodef-woo-shortcode .added_to_cart.added,
.qodef-woo-shortcode .button.added {
    display: none
}

#qodef-woo-page .quantity {
    white-space: nowrap
}

#qodef-woo-page .quantity input[type=number] {
    width: 60px;
    margin: 0;
    padding: 12px 10px;
    text-align: center;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

.woocommerce-page #qodef-woo-page .woocommerce-error,
.woocommerce-page #qodef-woo-page .woocommerce-info,
.woocommerce-page #qodef-woo-page .woocommerce-message,
.woocommerce-page div.woocommerce .woocommerce-error,
.woocommerce-page div.woocommerce .woocommerce-info,
.woocommerce-page div.woocommerce .woocommerce-message {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 20px 30px;
    margin-bottom: 30px;
    border: 1px solid #e1e1e1
}

@media only screen and (max-width:680px) {

    .woocommerce-page #qodef-woo-page .woocommerce-error,
    .woocommerce-page #qodef-woo-page .woocommerce-info,
    .woocommerce-page #qodef-woo-page .woocommerce-message,
    .woocommerce-page div.woocommerce .woocommerce-error,
    .woocommerce-page div.woocommerce .woocommerce-info,
    .woocommerce-page div.woocommerce .woocommerce-message {
        padding: 20px 20px
    }
}

.woocommerce-page #qodef-woo-page .woocommerce-error a,
.woocommerce-page #qodef-woo-page .woocommerce-info a,
.woocommerce-page #qodef-woo-page .woocommerce-message a,
.woocommerce-page div.woocommerce .woocommerce-error a,
.woocommerce-page div.woocommerce .woocommerce-info a,
.woocommerce-page div.woocommerce .woocommerce-message a {
    margin-top: 12px
}

.woocommerce-page div.woocommerce .shop_table tr {
    border-left: none;
    border-right: none;
    border-top: none
}

.woocommerce-page div.woocommerce .shop_table td,
.woocommerce-page div.woocommerce .shop_table th {
    padding: 25px 0;
    vertical-align: middle;
    text-align: left;
    border: 0
}

.woocommerce-page div.woocommerce .shop_table td:first-child,
.woocommerce-page div.woocommerce .shop_table th:first-child {
    padding-left: 0
}

.woocommerce-page div.woocommerce .shop_table th {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

.woocommerce-page div.woocommerce .shop_table td ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.woocommerce-page div.woocommerce .shop_table td ul li {
    margin: 0 0 10px;
    padding: 0
}

.woocommerce-page div.woocommerce .shop_table td ul li:last-child {
    margin-bottom: 0
}

.woocommerce-page div.woocommerce .shop_table td ul li label {
    margin-bottom: 0
}

.woocommerce-page div.woocommerce .shop_table p {
    margin: 0
}

.woocommerce-page div.woocommerce .col2-set {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin: 0 -15px
}

.woocommerce-page div.woocommerce .col2-set>* {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px
}

.woocommerce-page div.woocommerce address {
    font-style: normal
}

.woocommerce-page div.woocommerce address p {
    margin: 0
}

.woocommerce-page div.woocommerce form p {
    margin: 0
}

.woocommerce-page .pswp__button--arrow--left:before,
.woocommerce-page .pswp__button--arrow--right:before,
.woocommerce-page .pswp__button.pswp__button--close,
.woocommerce-page .pswp__button.pswp__button--fs,
.woocommerce-page .pswp__button.pswp__button--zoom {
    background: 0 0 !important
}

.woocommerce-page .pswp__button--arrow--left:before,
.woocommerce-page .pswp__button--arrow--right:before,
.woocommerce-page .pswp__button.pswp__button--close:before,
.woocommerce-page .pswp__button.pswp__button--fs:before,
.woocommerce-page .pswp__button.pswp__button--zoom:before {
    border: 0;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background: 0 0
}

.woocommerce-page .pswp__button--arrow--left:before {
    font-size: 45px;
    content: "\f104"
}

.woocommerce-page .pswp__button--arrow--right:before {
    font-size: 45px;
    content: "\f105"
}

.woocommerce-page .pswp__button.pswp__button--close:before {
    font-size: 17px;
    content: "\f00d"
}

.woocommerce-page .pswp__button.pswp__button--zoom:before {
    font-size: 17px;
    content: "\f00e"
}

.woocommerce-page .pswp--zoomed-in .pswp__button.pswp__button--zoom:before {
    font-size: 17px;
    content: "\f010"
}

.woocommerce-page .pswp__button.pswp__button--fs:before {
    font-size: 17px;
    content: "\f0b2"
}

.woocommerce-page .pswp__caption__center,
.woocommerce-page .pswp__counter {
    font-family: inherit;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff
}

#qodef-woo-page.qodef--cart .shop_table td.product-remove {
    width: 30px
}

#qodef-woo-page.qodef--cart .shop_table td.product-remove a {
    font-size: 20px
}

#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail {
    width: 72px;
    padding-left: 0;
    padding-right: 10px
}

#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail a,
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail img {
    display: block;
    max-width: 100%;
    width: 100%
}

#qodef-woo-page.qodef--cart .shop_table td.product-name {
    text-align: left
}

#qodef-woo-page.qodef--cart .shop_table td.product-name a {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--cart .shop_table td.product-price .amount,
#qodef-woo-page.qodef--cart .shop_table td.product-subtotal .amount {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-family: Cormorant, serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8d644
}

#qodef-woo-page.qodef--cart .shop_table td.product-price .amount del,
#qodef-woo-page.qodef--cart .shop_table td.product-subtotal .amount del {
    position: relative;
    margin-right: 8px;
    text-decoration: none;
    color: silver
}

#qodef-woo-page.qodef--cart .shop_table td.product-price .amount del:after,
#qodef-woo-page.qodef--cart .shop_table td.product-subtotal .amount del:after {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor
}

#qodef-woo-page.qodef--cart .shop_table td.product-price .amount ins,
#qodef-woo-page.qodef--cart .shop_table td.product-subtotal .amount ins {
    text-decoration: none
}

#qodef-woo-page.qodef--cart .shop_table td.product-quantity input[type=number] {
    margin: 0
}

#qodef-woo-page.qodef--cart .shop_table td.actions {
    padding: 30px 0 0;
    text-align: initial
}

#qodef-woo-page.qodef--cart .shop_table td.actions .coupon {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 70%;
    float: left
}

#qodef-woo-page.qodef--cart .shop_table td.actions .coupon>* {
    margin-bottom: 0
}

#qodef-woo-page.qodef--cart .shop_table td.actions label {
    display: none
}

#qodef-woo-page.qodef--cart .shop_table td.actions input[type=text] {
    width: auto;
    margin-right: 20px;
    padding: 16px 0
}

#qodef-woo-page.qodef--cart .shop_table td.actions>.button {
    float: right
}

#qodef-woo-page.qodef--cart .shop_table.cart tbody>tr:last-child {
    border-bottom: 0
}

#qodef-woo-page.qodef--cart .cart-collaterals .shop_table th {
    width: 20%
}

#qodef-woo-page.qodef--cart .cart_totals,
#qodef-woo-page.qodef--cart .cross-sells {
    margin-top: 76px
}

#qodef-woo-page.qodef--cart .cart_totals>h2,
#qodef-woo-page.qodef--cart .cross-sells>h2 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    margin: 0 0 27px
}

#qodef-woo-page.qodef--cart .cart_totals .cart-subtotal,
#qodef-woo-page.qodef--cart .cart_totals .order-total,
#qodef-woo-page.qodef--cart .cross-sells .cart-subtotal,
#qodef-woo-page.qodef--cart .cross-sells .order-total {
    font-family: Cormorant, serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8d644
}

#qodef-woo-page.qodef--cart #shipping_method li {
    align-items: center;
    display: flex;
    gap: 20px
}

#qodef-woo-page.qodef--cart #shipping_method li input {
    margin: 0
}

#qodef-woo-page.qodef--cart .shipping-calculator-form {
    margin-top: 20px
}

#qodef-woo-page.qodef--cart .shipping-calculator-form select {
    width: auto;
    min-width: 100%;
    margin: 0
}

#qodef-woo-page.qodef--cart .wc-proceed-to-checkout {
    margin-top: 30px
}

.woocommerce-page div.woocommerce .cart-empty {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    margin: 0;
    align-items: center;
    text-align: center;
    border: none
}

.woocommerce-page div.woocommerce .return-to-shop {
    margin: 20px 0 0;
    text-align: center
}

.woocommerce-page div.woocommerce .return-to-shop a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 15px 36px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #c8d644;
    border: 1px solid transparent
}

.woocommerce-page div.woocommerce .return-to-shop a:hover {
    color: #fff;
    background-color: #c8d644
}

.woocommerce-page div.woocommerce .return-to-shop a:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.woocommerce-page div.woocommerce .return-to-shop a:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

.woocommerce-page div.woocommerce .return-to-shop a.qodef-size--full:after,
.woocommerce-page div.woocommerce .return-to-shop a.qodef-size--full:before {
    display: none
}

.woocommerce-page div.woocommerce .return-to-shop a:hover:before {
    color: #000;
    right: -36px
}

.woocommerce-page div.woocommerce .return-to-shop a:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.woocommerce-page div.woocommerce .return-to-shop a:after {
    background: linear-gradient(90deg, #fff 50%, #000 50%)
}

.woocommerce-page div.woocommerce .return-to-shop a:hover:after {
    background: linear-gradient(90deg, #fff 40%, #000 50%)
}

#qodef-woo-page.qodef--checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    flex-direction: initial;
    justify-content: space-between;
    align-items: center
}

#qodef-woo-page.qodef--checkout .woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon {
    margin: 10px 0
}

#qodef-woo-page.qodef--checkout .woocommerce-form-coupon>p {
    margin-bottom: 10px
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout {
    margin-top: 40px
}

#qodef-woo-page.qodef--checkout #customer_details h3 {
    margin: 0 0 20px;
    font-size: 40px
}

#qodef-woo-page.qodef--checkout #customer_details .woocommerce-billing-fields__field-wrapper p.form-row .required {
    text-decoration: none
}

#qodef-woo-page.qodef--checkout #order_review_heading {
    margin: 0 0 20px;
    font-size: 40px
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout-payment {
    margin-top: 30px
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout-payment .place-order {
    margin-top: 30px
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 15px
}

#qodef-woo-page.qodef--checkout .wc_payment_methods {
    margin: 0;
    padding: 0;
    list-style: none
}

#qodef-woo-page.qodef--checkout .wc_payment_methods li {
    position: relative;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1
}

#qodef-woo-page.qodef--checkout .wc_payment_methods li p {
    margin: 0
}

#qodef-woo-page.qodef--checkout .wc_payment_methods li {
    padding-left: 25px;
    padding-right: 25px
}

#qodef-woo-page.qodef--checkout .wc_payment_methods .input-radio {
    position: absolute;
    top: 15px;
    left: 0;
    margin: 0
}

#qodef-woo-page.qodef--checkout .wc_payment_methods label {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em;
    cursor: pointer
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 30%;
    float: left;
    padding-right: 50px
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    position: relative;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li p {
    margin: 0
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 22px;
    line-height: 1.182em
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #c8d644
}

.woocommerce-account .woocommerce-MyAccount-content {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 70%;
    float: left
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info .woocommerce-Button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error .woocommerce-Button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message .woocommerce-Button {
    margin: 0
}

@media only screen and (max-width:680px) {

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 20px
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info .woocommerce-Button,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-error .woocommerce-Button,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message .woocommerce-Button {
        margin-top: 10px
    }
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm label[for=account_display_name]+input[type=text] {
    margin: 0 0 5px
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm label[for=account_display_name]+input[type=text]+span {
    display: inline-block;
    margin: 0 0 27px
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm label[for=account_display_name]+input[type=text]+span em {
    font-style: normal
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button {
    margin-top: 30px
}

.woocommerce-account .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 15px 36px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #c8d644;
    border: 1px solid transparent
}

.woocommerce-account .button:hover {
    color: #fff;
    background-color: #c8d644
}

.woocommerce-account .button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.woocommerce-account .button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

.woocommerce-account .button.qodef-size--full:after,
.woocommerce-account .button.qodef-size--full:before {
    display: none
}

.woocommerce-account .button:hover:before {
    color: #000;
    right: -36px
}

.woocommerce-account .button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.woocommerce-account .button:after {
    background: linear-gradient(90deg, #fff 50%, #000 50%)
}

.woocommerce-account .button:hover:after {
    background: linear-gradient(90deg, #fff 40%, #000 50%)
}

.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: block;
    margin: 0 0 15px
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword {
    margin-top: 15px
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
    padding: 0;
    margin: 0
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
    display: none
}

.woocommerce-order-received .woocommerce-order .woocommerce-thankyou-order-received {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    margin: 0 0 20px
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-overview {
    margin: 0;
    padding: 0;
    list-style: none
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-overview li {
    position: relative;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-overview li p {
    margin: 0
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-details {
    margin-top: 40px
}

.woocommerce-order-received .woocommerce-order h2 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    margin: 0 0 20px
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details {
    margin-top: 50px
}

#qodef-woo-page .woocommerce-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 110px;
    margin-top: 36px
}

@media only screen and (max-width:680px) {
    #qodef-woo-page .woocommerce-pagination {
        padding: 0 50px
    }
}

#qodef-woo-page .woocommerce-pagination .page-numbers {
    position: relative;
    font-family: Cormorant, serif;
    font-weight: 700;
    color: #000;
    font-size: 20px;
    margin: 0 15px;
    letter-spacing: 0
}

#qodef-woo-page .woocommerce-pagination .page-numbers:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: #c8d644;
    bottom: -2px;
    left: 50%;
    width: 19px;
    height: 1px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: all .2s ease-in-out
}

#qodef-woo-page .woocommerce-pagination .page-numbers.dots:after {
    display: none
}

#qodef-woo-page .woocommerce-pagination .page-numbers * {
    display: block;
    line-height: inherit
}

#qodef-woo-page .woocommerce-pagination .page-numbers:first-child {
    margin-left: 0
}

#qodef-woo-page .woocommerce-pagination .page-numbers:last-child {
    margin-right: 0
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev {
    position: absolute;
    display: flex;
    align-items: center;
    top: calc(50% + 1px);
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .2em;
    transform: translateY(-50%)
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next .qodef-m-pagination-label,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev .qodef-m-pagination-label {
    padding: 0 11px
}

@media only screen and (max-width:680px) {

    #qodef-woo-page .woocommerce-pagination .page-numbers.next .qodef-m-pagination-label,
    #qodef-woo-page .woocommerce-pagination .page-numbers.prev .qodef-m-pagination-label {
        display: none
    }
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next svg,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg {
    position: relative;
    overflow: visible
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next svg polygon,
#qodef-woo-page .woocommerce-pagination .page-numbers.next svg rect,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg polygon,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg rect {
    will-change: transform;
    transition: transform .2s ease-in-out
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next svg rect,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg rect {
    transform-origin: left
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next svg polygon,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg polygon {
    transform: translateX(0);
    stroke: none
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next svg *,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg * {
    fill: currentColor;
    stroke: currentColor
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next:after,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev:after {
    display: none
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next a,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev a {
    position: relative;
    display: flex;
    align-items: center
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next a span,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev a span {
    display: inline-block;
    vertical-align: middle
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next:hover,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev:hover {
    color: #000
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next:hover svg rect,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev:hover svg rect {
    transform: scaleX(1.3)
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next:hover svg polygon,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev:hover svg polygon {
    transform: translateX(10px)
}

body:not([class*=borgholm-core]) #qodef-woo-page .woocommerce-pagination .page-numbers.next,
body:not([class*=borgholm-core]) #qodef-woo-page .woocommerce-pagination .page-numbers.prev {
    font-size: 17px
}

#qodef-woo-page .woocommerce-pagination .page-numbers.prev {
    left: 0
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next {
    right: 0
}

#qodef-woo-page .woocommerce-pagination .page-numbers.current,
#qodef-woo-page .woocommerce-pagination .page-numbers:hover {
    color: #c8d644
}

#qodef-woo-page .woocommerce-pagination .page-numbers.current:after,
#qodef-woo-page .woocommerce-pagination .page-numbers:hover:after {
    transform: translateX(-50%) scaleX(1)
}

@media only screen and (max-width:1024px) {
    .qodef-sidebar--enabled #qodef-woo-page .woocommerce-pagination {
        margin-bottom: 23px
    }
}

.qodef-woo-product-list {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-woo-product-list ul.products {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -15px;
    list-style: none;
    clear: both
}

.qodef-woo-product-list ul.products>.product {
    padding: 0 15px;
    margin: 0 0 30px
}

.qodef-woo-product-list ul.products.columns-1>.product {
    width: 100%
}

.qodef-woo-product-list ul.products.columns-2>.product {
    width: 50%
}

.qodef-woo-product-list ul.products.columns-3>.product {
    width: 33.3333333333%
}

.qodef-woo-product-list ul.products.columns-4>.product {
    width: 25%
}

.qodef-woo-product-list ul.products.columns-5>.product {
    width: 20%
}

.qodef-woo-product-list ul.products.columns-6>.product {
    width: 16.6666666667%
}

.qodef-woo-product-list ul.products.columns-7>.product {
    width: 14.2857142857%
}

.qodef-woo-product-list ul.products.columns-8>.product {
    width: 12.5%
}

.qodef-woo-product-list.qodef-gutter--no ul.products {
    margin: 0 0
}

.qodef-woo-product-list.qodef-gutter--no ul.products>.product {
    padding: 0 0;
    margin: 0 0 0
}

.qodef-woo-product-list.qodef-gutter--tiny ul.products {
    margin: 0 -5px
}

.qodef-woo-product-list.qodef-gutter--tiny ul.products>.product {
    padding: 0 5px;
    margin: 0 0 10px
}

.qodef-woo-product-list.qodef-gutter--small ul.products {
    margin: 0 -10px
}

.qodef-woo-product-list.qodef-gutter--small ul.products>.product {
    padding: 0 10px;
    margin: 0 0 20px
}

.qodef-woo-product-list.qodef-gutter--normal ul.products {
    margin: 0 -15px
}

.qodef-woo-product-list.qodef-gutter--normal ul.products>.product {
    padding: 0 15px;
    margin: 0 0 30px
}

.qodef-woo-product-list.qodef-gutter--medium ul.products {
    margin: 0 -20px
}

.qodef-woo-product-list.qodef-gutter--medium ul.products>.product {
    padding: 0 20px;
    margin: 0 0 40px
}

.qodef-woo-product-list.qodef-gutter--large ul.products {
    margin: 0 -25px
}

.qodef-woo-product-list.qodef-gutter--large ul.products>.product {
    padding: 0 25px;
    margin: 0 0 50px
}

.qodef-woo-product-list.qodef-gutter--huge ul.products {
    margin: 0 -40px
}

.qodef-woo-product-list.qodef-gutter--huge ul.products>.product {
    padding: 0 40px;
    margin: 0 0 80px
}

.qodef-woo-product-list.qodef-gutter--gigantic ul.products {
    margin: 0 -70px
}

.qodef-woo-product-list.qodef-gutter--gigantic ul.products>.product {
    padding: 0 70px;
    margin: 0 0 140px
}

.qodef-woo-product-list .qodef-woo-product-inner {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%
}

.touchevents .qodef-woo-product-list .qodef-woo-product-inner {
    cursor: pointer
}

.qodef-woo-product-list .qodef-woo-product-inner:hover .qodef-woo-product-image-inner {
    opacity: 1
}

.qodef-woo-product-list .qodef-woo-product-inner:hover .qodef-woo-product-title {
    color: #c8d644
}

.qodef-woo-product-list .qodef-woo-product-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%
}

.qodef-woo-product-list .qodef-woo-product-image img {
    display: block;
    width: 100%
}

.qodef-woo-product-list .qodef-woo-product-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity .2s ease-out
}

.qodef-woo-product-list .qodef-woo-product-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 22px 0 21px
}

.qodef-woo-product-list .qodef-woo-product-title {
    transition: color .2s ease-out
}

.qodef-woo-product-list .qodef-woo-product-categories {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-woo-product-list .qodef-woo-product-categories a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #9e9e9e;
    z-index: 3
}

.qodef-woo-product-list .qodef-woo-product-categories a:hover {
    color: #c8d644
}

.qodef-woo-product-list .qodef-woo-product-categories .qodef-category-separator {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 7px;
    font-size: 12px
}

.qodef-woo-product-list .qodef-woo-product-categories .qodef-category-separator:after {
    content: "/";
    color: #9e9e9e
}

.qodef-woo-product-list .qodef-woo-product-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.qodef-woo-product-list .qodef-woo-ratings {
    margin-top: 11px
}

.qodef-woo-product-list .woocommerce-LoopProduct-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.qodef-woo-product-list.qodef-item-layout-style--custom .qodef-woo-product-content {
    text-align: center
}

.qodef-woo-product-list.qodef-item-layout-style--custom .qodef-woo-product-content-inner {
    margin-top: -2px;
    justify-content: center;
    flex-direction: column
}

.qodef-woo-product-list.qodef-item-layout-style--custom .qodef-woo-product-price {
    margin-top: 10px;
    font-size: 52px
}

.qodef-woo-product-list.qodef-item-layout-style--custom .qodef-woo-ratings {
    margin-top: 25px
}

.qodef-woo-product-list.qodef-item-layout-style--custom.qodef-skin--light .qodef-woo-product-price {
    color: #3f3f3f
}

.qodef-woo-product-list.qodef-item-layout-style--custom.qodef-skin--light .qodef-woo-product-price del {
    color: #222
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper {
    transition-timing-function: cubic-bezier(.74, .15, .09, .85)
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper .qodef-woo-product-inner .qodef-woo-product-image-inner {
    pointer-events: none
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper .qodef-woo-product-inner:hover .qodef-woo-product-image-inner {
    opacity: 0
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper .qodef-woo-product-image {
    transform: scale(1);
    transition: .5s cubic-bezier(0, .85, .25, 1);
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    filter: grayscale(1);
    will-change: transform
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper .qodef-woo-product-image .qodef-e-media-image {
    transform: perspective(0) rotateX(0) rotateY(0) scale3d(1, 1, 1) !important
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper .qodef-woo-product-content {
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-in-out
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-wrapper .woocommerce-LoopProduct-link {
    transform: scaleX(1)
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-active,
.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-duplicate-active {
    z-index: 2
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-active .qodef-woo-product-image,
.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-duplicate-active .qodef-woo-product-image {
    transform: scale(1.1);
    transition: 1s .2s cubic-bezier(.5, .11, 0, .93);
    z-index: 2;
    filter: none
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-active .qodef-woo-product-content,
.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-duplicate-active .qodef-woo-product-content {
    visibility: visible;
    opacity: 1
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-active .woocommerce-LoopProduct-link,
.qodef-woo-product-list.qodef-slider-layout--center-item-overlap .swiper-slide-duplicate-active .woocommerce-LoopProduct-link {
    transform: scaleX(1);
    z-index: 2
}

.qodef-woo-product-list.qodef-slider-layout--center-item-overlap.qodef-swiper-container {
    padding: 3.5% 0
}

.qodef-woo-product-list.qodef-slider-layout--info-on-hover .swiper-wrapper .qodef-woo-product-inner .qodef-woo-product-content {
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease-out
}

.qodef-woo-product-list.qodef-slider-layout--info-on-hover .swiper-wrapper .qodef-woo-product-inner:hover .qodef-woo-product-content {
    visibility: visible;
    opacity: 1
}

.qodef-woo-product-list.qodef-slider-layout--info-on-hover.qodef-swiper-container {
    padding: 3.5% 0
}

.qodef-woo-product-list.qodef-skin--light .qodef-woo-product-categories a:hover,
.qodef-woo-product-list.qodef-skin--light .qodef-woo-product-title a,
.qodef-woo-product-list.qodef-skin--light .qodef-woo-ratings .qodef-m-star {
    color: #fff !important
}

.qodef-woo-product-list.qodef-skin--light .qodef-woo-product-price {
    color: #fff
}

.qodef-woo-product-list.qodef-skin--light .qodef-woo-product-price del {
    color: #9e9e9e
}

#qodef-woo-page .qodef-quantity-buttons {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #ccc
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input {
    position: relative;
    width: 55px;
    height: 55px;
    padding: 0;
    margin: 0 27px 0 0;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 48px;
    font-style: normal;
    outline: 0;
    color: #464646
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 28px;
    height: 28px;
    font-size: 11px;
    border-left: 0;
    cursor: pointer;
    transition: color .15s ease-in-out;
    color: #000
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus:before,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus:before {
    position: relative;
    left: 1px
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus {
    top: 0;
    border-bottom: 0
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus {
    bottom: 0
}

.qodef-woo-results {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 39px
}

.qodef-woo-results .woocommerce-result-count {
    color: #464646
}

.qodef-woo-results .woocommerce-ordering {
    position: relative;
    top: -1px;
    margin-left: auto
}

.qodef-woo-results .woocommerce-ordering select {
    width: auto;
    min-width: 176px;
    margin: 0
}

.qodef-woo-results .woocommerce-ordering .select2-container--default {
    margin: 0
}

.qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection--single {
    font-size: 17px
}

#qodef-woo-page.qodef--single .woocommerce-error,
#qodef-woo-page.qodef--single .woocommerce-info,
#qodef-woo-page.qodef--single .woocommerce-message {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 20px 30px;
    margin-bottom: 30px;
    border: 1px solid #e1e1e1;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center
}

@media only screen and (max-width:680px) {

    #qodef-woo-page.qodef--single .woocommerce-error,
    #qodef-woo-page.qodef--single .woocommerce-info,
    #qodef-woo-page.qodef--single .woocommerce-message {
        padding: 20px 20px
    }
}

#qodef-woo-page.qodef--single .woocommerce-error a,
#qodef-woo-page.qodef--single .woocommerce-info a,
#qodef-woo-page.qodef--single .woocommerce-message a {
    margin-top: 12px
}

#qodef-woo-page.qodef--single .woocommerce-error a,
#qodef-woo-page.qodef--single .woocommerce-info a,
#qodef-woo-page.qodef--single .woocommerce-message a {
    margin-top: 0
}

@media only screen and (max-width:680px) {

    #qodef-woo-page.qodef--single .woocommerce-error,
    #qodef-woo-page.qodef--single .woocommerce-info,
    #qodef-woo-page.qodef--single .woocommerce-message {
        flex-direction: column-reverse;
        align-items: flex-start
    }

    #qodef-woo-page.qodef--single .woocommerce-error a,
    #qodef-woo-page.qodef--single .woocommerce-info a,
    #qodef-woo-page.qodef--single .woocommerce-message a {
        margin-top: 12px
    }
}

#qodef-woo-page.qodef--single>.product {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-woo-page.qodef--single .qodef-woo-single-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin: 0 -28px
}

#qodef-woo-page.qodef--single .qodef-woo-single-inner>* {
    padding: 0 28px
}

#qodef-woo-page.qodef--single .qodef-woo-single-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

@media only screen and (min-width:1025px) {
    #qodef-woo-page.qodef--single .qodef-woo-single-image {
        width: 53%
    }
}

#qodef-woo-page.qodef--single .qodef-woo-single-image .qodef-woo-product-mark {
    transform: translateX(-28px)
}

#qodef-woo-page.qodef--single .qodef-woo-single-image .zoomImg {
    cursor: crosshair
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure {
    position: relative;
    margin: 0 -5px
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure a,
#qodef-woo-page.qodef--single .woocommerce-product-gallery figure img {
    display: block;
    width: 100%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure>.woocommerce-product-gallery__image {
    position: relative;
    width: calc(100% - 10px) !important;
    margin: 0 5px;
    overflow: hidden
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
    position: relative;
    padding: 0 5px;
    margin-top: 10px
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    z-index: 5
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 .woocommerce-product-gallery__image {
    width: 100%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .woocommerce-product-gallery__image {
    width: 50%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .woocommerce-product-gallery__image {
    width: 33.3333333333%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .woocommerce-product-gallery__image {
    width: 25%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .woocommerce-product-gallery__image {
    width: 20%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 .woocommerce-product-gallery__image {
    width: 16.6666666667%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 .woocommerce-product-gallery__image {
    width: 14.2857142857%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 .woocommerce-product-gallery__image {
    width: 12.5%
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger {
    left: calc(21% + 10px)
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure {
    display: flex;
    flex-direction: row-reverse
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure a,
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure img {
    height: 100%;
    object-fit: cover
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.woocommerce-product-gallery__image {
    width: calc(100% - 21%) !important
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper {
    width: 21%
}

@media screen and (min-width:681px) {
    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100%
    }
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child {
    margin-top: 0
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--below figure>.qodef-woo-thumbnails-wrapper {
    display: flex;
    flex-wrap: wrap
}

#qodef-woo-page.qodef--single .entry-summary {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

@media only screen and (min-width:1025px) {
    #qodef-woo-page.qodef--single .entry-summary {
        width: 47%
    }
}

#qodef-woo-page.qodef--single .entry-summary .price {
    margin: 3px 0 10px;
    font-size: 30px;
    line-height: 1
}

#qodef-woo-page.qodef--single .woocommerce-product-rating {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 12px
}

#qodef-woo-page.qodef--single .woocommerce-product-rating .qodef-woo-ratings {
    flex-shrink: 0;
    width: auto;
    margin-right: 17px
}

#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link {
    color: #000
}

#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link:hover {
    color: #000
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description {
    margin-top: 32px
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description p {
    margin-top: 0
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0
}

#qodef-woo-page.qodef--single form.cart {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 31px
}

#qodef-woo-page.qodef--single form.cart .single_add_to_cart_button {
    padding: 16px 36px 15px
}

#qodef-woo-page.qodef--single form.cart .variations_button,
#qodef-woo-page.qodef--single form.cart:not(.variations_form) {
    display: flex;
    align-items: flex-start
}

#qodef-woo-page.qodef--single form.cart .variations_button .quantity,
#qodef-woo-page.qodef--single form.cart:not(.variations_form) .quantity {
    margin-right: 6px
}

#qodef-woo-page.qodef--single form.cart.grouped_form {
    flex-wrap: wrap
}

#qodef-woo-page.qodef--single form.cart.grouped_form .group_table td,
#qodef-woo-page.qodef--single form.cart.grouped_form .group_table th {
    padding: 20px 0;
    vertical-align: middle;
    text-align: left
}

#qodef-woo-page.qodef--single form.cart.grouped_form .group_table label {
    margin-bottom: 0;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--single form.cart.grouped_form>.button {
    margin-top: 30px
}

#qodef-woo-page.qodef--single form.cart .group_table tr {
    border-left: none;
    border-right: none;
    border-top: none
}

#qodef-woo-page.qodef--single form.cart .group_table td,
#qodef-woo-page.qodef--single form.cart .group_table th {
    padding: 25px 0;
    vertical-align: middle;
    text-align: left;
    border: 0
}

#qodef-woo-page.qodef--single form.cart .group_table td:first-child,
#qodef-woo-page.qodef--single form.cart .group_table th:first-child {
    padding-left: 0
}

#qodef-woo-page.qodef--single form.cart .group_table th {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--single form.cart .group_table td ul {
    list-style: none;
    margin: 0;
    padding: 0
}

#qodef-woo-page.qodef--single form.cart .group_table td ul li {
    margin: 0 0 10px;
    padding: 0
}

#qodef-woo-page.qodef--single form.cart .group_table td ul li:last-child {
    margin-bottom: 0
}

#qodef-woo-page.qodef--single form.cart .group_table td ul li label {
    margin-bottom: 0
}

#qodef-woo-page.qodef--single form.cart .group_table p {
    margin: 0
}

#qodef-woo-page.qodef--single form.cart .variations {
    margin-bottom: 30px
}

#qodef-woo-page.qodef--single form.cart .variations tr {
    border: 0
}

#qodef-woo-page.qodef--single form.cart .variations td,
#qodef-woo-page.qodef--single form.cart .variations th {
    padding: 0;
    text-align: initial;
    vertical-align: middle;
    border: 0
}

#qodef-woo-page.qodef--single form.cart .variations label {
    margin-bottom: 0;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--single form.cart .variations select {
    width: auto;
    min-width: 220px;
    margin: 0
}

#qodef-woo-page.qodef--single form.cart .variations .select2-container--default {
    margin: 10px 0
}

#qodef-woo-page.qodef--single form.cart .variations .reset_variations {
    display: inline-block;
    vertical-align: top;
    margin: 13px 0 0 15px
}

#qodef-woo-page.qodef--single form.cart .single_variation {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

#qodef-woo-page.qodef--single form.cart .single_variation .price {
    margin: 0
}

#qodef-woo-page.qodef--single .out-of-stock {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em;
    margin: 28px 0 0
}

#qodef-woo-page.qodef--single .product_meta {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 34px;
    font-size: 17px
}

#qodef-woo-page.qodef--single .product_meta>* {
    position: relative;
    display: flex;
    margin-bottom: 6px
}

#qodef-woo-page.qodef--single .product_meta>:last-child {
    margin-bottom: 0
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label {
    flex-shrink: 0;
    margin-right: 2px
}

#qodef-woo-page.qodef--single .qodef-social-share {
    margin-top: 8px
}

#qodef-woo-page.qodef--single .woocommerce-tabs {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 103px
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #e1e1e1
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li {
    margin: 0 30px 0 0;
    padding: 0
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a {
    position: relative;
    display: inline-block;
    margin-bottom: -1px;
    padding: 0 33px 15px 0;
    transition: color .2s ease-out;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c8d644;
    transition: width .2s ease-out
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child {
    margin-right: 0
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a:hover:after,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.active a:after,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-active a:after,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-hover a:after {
    width: calc(100% - 8px)
}

@media only screen and (max-width:680px) {
    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs {
        flex-direction: column;
        align-items: flex-start;
        border: none
    }

    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li {
        width: 100%;
        margin: 0 0 26px 0;
        padding: 0;
        border-bottom: 1px solid #e1e1e1
    }

    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child {
        margin-bottom: 0
    }
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 32px
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--description {
    margin-bottom: 15px
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--additional_information {
    margin-top: 29px;
    margin-bottom: 13px
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--reviews {
    margin-top: 30px;
    margin-bottom: 9px
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab>h2 {
    display: none
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab p {
    margin: 0
}

#qodef-woo-page.qodef--single .shop_attributes td,
#qodef-woo-page.qodef--single .shop_attributes th,
#qodef-woo-page.qodef--single .shop_attributes tr {
    border: 0
}

#qodef-woo-page.qodef--single .shop_attributes td,
#qodef-woo-page.qodef--single .shop_attributes th {
    padding: 3px 0;
    vertical-align: baseline;
    font-size: 17px;
    font-weight: 400;
    text-align: left
}

@media only screen and (min-width:1025px) {
    #qodef-woo-page.qodef--single .shop_attributes th {
        width: 17%
    }
}

@media only screen and (min-width:681px) and (max-width:1024px) {
    #qodef-woo-page.qodef--single .shop_attributes th {
        width: 30%
    }
}

#qodef-woo-page.qodef--single .shop_attributes p {
    margin: 0
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-Reviews-title {
    font-size: 22px;
    line-height: 1.182em;
    margin: 0
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 22px 0 0;
    padding: 0;
    list-style: none
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist>* {
    margin: 0 0 30px;
    padding: 0
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist>:last-child {
    margin-bottom: 0
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container {
    position: relative;
    display: flex;
    align-items: flex-start
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container>img {
    flex-shrink: 0;
    width: 80px;
    margin: 0 20px 0 0
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment-text {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment-text .description p {
    width: 80%
}

@media only screen and (max-width:768px) {
    #qodef-woo-page.qodef--single .woocommerce-Reviews .comment-text .description p {
        width: auto
    }
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .meta {
    padding-top: 2px;
    padding-bottom: 7px
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__author {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--single #review_form {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 32px
}

#qodef-woo-page.qodef--single #review_form .comment-reply-title {
    display: block;
    margin: 19px 0 14px;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.182em
}

#qodef-woo-page.qodef--single #review_form .qodef-comment-form {
    margin: 0 0 14px
}

#qodef-woo-page.qodef--single #review_form .qodef-comment-form .comment-notes {
    margin: 0 0 14px
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating label {
    margin-bottom: 5px
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars {
    line-height: 1
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars>span {
    display: flex;
    overflow: hidden
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars * {
    line-height: inherit
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    font-size: 0;
    color: transparent
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating a:before {
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    z-index: -1;
    content: "\e031";
    font-size: 14px;
    color: #000;
    font-family: ElegantIcons;
    line-height: 1;
    letter-spacing: .6em;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body:not([class*=borgholm-core]) #qodef-woo-page.qodef--single #review_form .comment-form-rating a:before {
    content: "☆"
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating a.active:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    content: "\e033\e033\e033\e033\e033";
    font-size: 14px;
    color: #000;
    font-family: ElegantIcons;
    line-height: 1;
    letter-spacing: .6em;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body:not([class*=borgholm-core]) #qodef-woo-page.qodef--single #review_form .comment-form-rating a.active:after {
    content: "★★★★★"
}

#qodef-woo-page.qodef--single #review_form .comment-form-comment {
    margin-top: 17px
}

#qodef-woo-page.qodef--single #review_form .qodef-button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

#qodef-woo-page.qodef--single #review_form .qodef-button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

#qodef-woo-page.qodef--single #review_form .qodef-button.qodef-size--full:after,
#qodef-woo-page.qodef--single #review_form .qodef-button.qodef-size--full:before {
    display: none
}

#qodef-woo-page.qodef--single #review_form .qodef-button:hover:before {
    color: #000;
    right: -36px
}

#qodef-woo-page.qodef--single #review_form .qodef-button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

#qodef-woo-page.qodef--single #review_form .qodef-button:after {
    background: linear-gradient(90deg, #fff 50%, #000 50%)
}

#qodef-woo-page.qodef--single #review_form .qodef-button:hover:after {
    background: linear-gradient(90deg, #fff 40%, #000 50%)
}

#qodef-woo-page.qodef--single #review_form .qodef-button:after {
    margin-left: 48px
}

#qodef-woo-page.qodef--single .related {
    margin-top: 71px
}

#qodef-woo-page.qodef--single .related>h2 {
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.067em;
    margin: 0 0 46px
}

.widget.woocommerce .qodef-woo-product-title {
    margin: 0
}

.widget.woocommerce .qodef-woo-ratings {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    line-height: 1
}

.widget.woocommerce .qodef-woo-ratings .qodef-m-inner {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px
}

.widget.woocommerce .qodef-woo-ratings .qodef-m-star {
    font-size: 14px;
    color: #c8d644
}

.widget.woocommerce .qodef-woo-ratings .qodef-m-star>span {
    margin: 0 4px
}

.widget.woocommerce .qodef-woo-ratings .qodef-m-star.qodef--active {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap
}

.widget.woocommerce .price {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-family: Cormorant, serif;
    font-size: 22px;
    font-weight: 700;
    color: #c8d644
}

.widget.woocommerce .price del {
    position: relative;
    margin-right: 8px;
    text-decoration: none;
    color: silver
}

.widget.woocommerce .price del:after {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor
}

.widget.woocommerce .price ins {
    text-decoration: none
}

.widget.woocommerce .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 14px 28px;
    cursor: pointer;
    z-index: 3;
    color: #000;
    background-color: #f4f4f4;
    border: 1px solid transparent
}

.widget.woocommerce .button:hover {
    color: #000;
    background-color: #f4f4f4
}

.widget.widget_shopping_cart .qodef-widget-title {
    margin: 0 0 23px
}

.widget.widget_shopping_cart .widget_shopping_cart_content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.widget.widget_shopping_cart .widget_shopping_cart_content ul li {
    position: relative
}

.widget.widget_shopping_cart .widget_shopping_cart_content ul li a:not(.remove) {
    position: relative;
    display: flex;
    align-items: center;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 22px;
    line-height: 1.182em
}

.widget.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px
}

.widget.widget_shopping_cart .widget_shopping_cart_content ul li .remove {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
    line-height: 1;
    z-index: 2
}

.widget.widget_shopping_cart .widget_shopping_cart_content ul li .remove:after {
    position: relative;
    display: block;
    padding: 0 3px;
    font-family: ElegantIcons;
    content: "M";
    font-size: 15px;
    line-height: 25px
}

body:not([class*=borgholm-core]) .widget.widget_shopping_cart .widget_shopping_cart_content ul li .remove:after {
    content: "x"
}

.widget.widget_shopping_cart .widget_shopping_cart_content .variation {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.widget.widget_shopping_cart .widget_shopping_cart_content .variation>* {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.widget.widget_shopping_cart .widget_shopping_cart_content .variation>* p {
    margin: 0
}

.widget.widget_shopping_cart .widget_shopping_cart_content .quantity {
    display: block;
    margin-top: 10px
}

.widget.widget_shopping_cart .widget_shopping_cart_content .total {
    margin: 13px 0 0
}

.widget.widget_shopping_cart .widget_shopping_cart_content .buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 21px 0 0
}

.widget.widget_layered_nav ul li,
.widget.widget_layered_nav_filters ul li,
.widget.widget_product_categories ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700
}

.widget.widget_layered_nav ul li a,
.widget.widget_layered_nav_filters ul li a,
.widget.widget_product_categories ul li a {
    position: relative;
    color: #464646
}

.widget.widget_layered_nav ul li a:before,
.widget.widget_layered_nav_filters ul li a:before,
.widget.widget_product_categories ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

.widget.widget_layered_nav ul li a:hover,
.widget.widget_layered_nav_filters ul li a:hover,
.widget.widget_product_categories ul li a:hover {
    color: #c8d644
}

.widget.widget_layered_nav ul li a:hover:before,
.widget.widget_layered_nav_filters ul li a:hover:before,
.widget.widget_product_categories ul li a:hover:before {
    width: 100%
}

.widget.widget_layered_nav ul li span,
.widget.widget_layered_nav_filters ul li span,
.widget.widget_product_categories ul li span {
    color: #464646
}

.widget.widget_layered_nav ul li.chosen a,
.widget.widget_layered_nav_filters ul li.chosen a,
.widget.widget_product_categories ul li.chosen a {
    color: #c8d644
}

.widget.widget_layered_nav ul li.chosen a:before,
.widget.widget_layered_nav_filters ul li.chosen a:before,
.widget.widget_product_categories ul li.chosen a:before {
    width: 100%
}

.widget.widget_price_filter .qodef-widget-title {
    margin: 0 0 23px
}

.widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
    position: relative;
    height: 2px;
    background-color: #bfbfbf;
    border-radius: 0;
    cursor: pointer
}

.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
    position: absolute;
    top: -3px;
    height: 8px;
    width: 8px;
    background-color: #000;
    border-radius: 100%;
    outline: 0;
    z-index: 2
}

.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-of-type {
    transform: translateX(-8px)
}

.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
    position: absolute;
    display: block;
    height: 100%;
    background-color: #000;
    border-radius: 0;
    z-index: 1
}

.widget.widget_price_filter .price_slider_amount {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 15px 0 0
}

.widget.widget_price_filter .price_slider_amount .price_label {
    color: #c8d644
}

.widget.widget_price_filter .price_slider_amount .price_label .qodef-price-label {
    color: #464646
}

.widget.widget_price_filter .price_slider_amount .price_label .from,
.widget.widget_price_filter .price_slider_amount .price_label .to {
    font-family: Cormorant, serif;
    font-size: 22px;
    font-weight: 700
}

.widget.widget_price_filter .price_slider_amount .button {
    margin-right: 44px;
    padding: 0 !important;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    background-color: transparent;
    border: 0
}

.widget.widget_price_filter .price_slider_amount .button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.widget.widget_price_filter .price_slider_amount .button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

.widget.widget_price_filter .price_slider_amount .button.qodef-size--full:after,
.widget.widget_price_filter .price_slider_amount .button.qodef-size--full:before {
    display: none
}

.widget.widget_price_filter .price_slider_amount .button:hover:before {
    color: #000;
    right: -36px
}

.widget.widget_price_filter .price_slider_amount .button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.widget.widget_price_filter .price_slider_amount .button:before {
    color: #000;
    right: -49px
}

.widget.widget_price_filter .price_slider_amount .button:after {
    width: 30px;
    right: -41px;
    background-color: #000
}

.widget.widget_price_filter .price_slider_amount .button:hover:before {
    color: #000;
    right: -58px
}

.widget.widget_price_filter .price_slider_amount .button:hover:after {
    background-color: #000;
    transform: translateY(-50%) scaleX(1.3)
}

.widget.widget_price_filter .price_slider_amount .clear {
    display: none
}

.widget .wp-block-woocommerce-filter-wrapper h1,
.widget .wp-block-woocommerce-filter-wrapper h2,
.widget .wp-block-woocommerce-filter-wrapper h3,
.widget .wp-block-woocommerce-filter-wrapper h4,
.widget .wp-block-woocommerce-filter-wrapper h5,
.widget .wp-block-woocommerce-filter-wrapper h6,
.widget .wp-block-woocommerce-price-filter h1,
.widget .wp-block-woocommerce-price-filter h2,
.widget .wp-block-woocommerce-price-filter h3,
.widget .wp-block-woocommerce-price-filter h4,
.widget .wp-block-woocommerce-price-filter h5,
.widget .wp-block-woocommerce-price-filter h6 {
    margin-bottom: 29.5pxpx
}

.widget .wc-block-components-price-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input-wrapper {
    box-shadow: none;
    height: 1px;
    margin: calc(8px / 2) 0;
    width: 100%
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input-progress {
    height: 1px
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-webkit-slider-thumb {
    background-image: none;
    border: none;
    border-radius: 100%;
    height: 8px;
    margin: 0;
    outline: 0;
    position: relative;
    top: -3.5px;
    width: 8px
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1)
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-moz-range-thumb {
    background-image: none;
    border: none;
    border-radius: 100%;
    height: 8px;
    margin: 0;
    outline: 0;
    position: relative;
    top: -3.5px;
    width: 8px
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-moz-range-thumb:hover {
    transform: scale(1.1)
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-ms-thumb {
    background-image: none;
    border: none;
    border-radius: 100%;
    height: 8px;
    margin: 0;
    outline: 0;
    position: relative;
    top: -3.5px;
    width: 8px
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-ms-thumb:hover {
    transform: scale(1.1)
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-webkit-slider-thumb {
    transform: scale(1.1)
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-moz-range-thumb {
    transform: scale(1.1)
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-ms-thumb {
    transform: scale(1.1)
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__controls,
.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-text {
    margin: 20px 0 0 auto;
    order: 100
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__controls input,
.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-text input {
    margin: 0
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__controls span:first-child:after,
.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-text span:first-child:after {
    content: "—";
    margin: 0 4px
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__actions {
    margin: 20px 0 0 0
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__actions button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 14px 28px;
    cursor: pointer;
    z-index: 3;
    color: #000;
    background-color: #f4f4f4;
    border: 1px solid transparent
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__actions button:hover {
    color: #000;
    background-color: #f4f4f4
}

.widget.widget_product_categories select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

.widget.widget_product_categories .select2 {
    margin-bottom: 0
}

.widget.widget_product_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.widget.widget_product_search input {
    padding-right: 50px;
    margin: 0
}

.widget.widget_product_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #000;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

.widget.widget_product_search button:hover {
    color: #000
}

.widget.widget_product_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #000
}

.widget.widget_product_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

.widget.widget_product_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

.widget.widget_product_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.widget.widget_products .qodef-widget-title,
.widget.widget_recent_reviews .qodef-widget-title,
.widget.widget_recently_viewed_products .qodef-widget-title,
.widget.widget_top_rated_products .qodef-widget-title {
    margin: 0 0 23px
}

.widget.widget_products ul li,
.widget.widget_recent_reviews ul li,
.widget.widget_recently_viewed_products ul li,
.widget.widget_top_rated_products ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.widget.widget_products ul li:last-child,
.widget.widget_recent_reviews ul li:last-child,
.widget.widget_recently_viewed_products ul li:last-child,
.widget.widget_top_rated_products ul li:last-child {
    margin-bottom: 0
}

.widget.widget_products .qodef-woo-product-image,
.widget.widget_recent_reviews .qodef-woo-product-image,
.widget.widget_recently_viewed_products .qodef-woo-product-image,
.widget.widget_top_rated_products .qodef-woo-product-image {
    flex-shrink: 0;
    margin-right: 17px
}

.widget.widget_products .qodef-woo-product-image a,
.widget.widget_products .qodef-woo-product-image img,
.widget.widget_recent_reviews .qodef-woo-product-image a,
.widget.widget_recent_reviews .qodef-woo-product-image img,
.widget.widget_recently_viewed_products .qodef-woo-product-image a,
.widget.widget_recently_viewed_products .qodef-woo-product-image img,
.widget.widget_top_rated_products .qodef-woo-product-image a,
.widget.widget_top_rated_products .qodef-woo-product-image img {
    position: relative;
    display: block
}

.widget.widget_products .qodef-woo-product-image img,
.widget.widget_recent_reviews .qodef-woo-product-image img,
.widget.widget_recently_viewed_products .qodef-woo-product-image img,
.widget.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px
}

.widget.widget_products .qodef-woo-product-title a,
.widget.widget_recent_reviews .qodef-woo-product-title a,
.widget.widget_recently_viewed_products .qodef-woo-product-title a,
.widget.widget_top_rated_products .qodef-woo-product-title a {
    color: inherit
}

.widget.widget_products .qodef-woo-product-title a:hover,
.widget.widget_recent_reviews .qodef-woo-product-title a:hover,
.widget.widget_recently_viewed_products .qodef-woo-product-title a:hover,
.widget.widget_top_rated_products .qodef-woo-product-title a:hover {
    color: #c8d644
}

.widget.widget_products .qodef-woo-product-price,
.widget.widget_recent_reviews .qodef-woo-product-price,
.widget.widget_recently_viewed_products .qodef-woo-product-price,
.widget.widget_top_rated_products .qodef-woo-product-price {
    margin-top: -4px
}

.widget.widget_products .qodef-woo-ratings,
.widget.widget_recent_reviews .qodef-woo-ratings,
.widget.widget_recently_viewed_products .qodef-woo-ratings,
.widget.widget_top_rated_products .qodef-woo-ratings {
    margin-top: 7px
}

.widget.widget_products .qodef-woo-product-reviewer,
.widget.widget_recent_reviews .qodef-woo-product-reviewer,
.widget.widget_recently_viewed_products .qodef-woo-product-reviewer,
.widget.widget_top_rated_products .qodef-woo-product-reviewer {
    margin-top: 3px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .qodef-widget-title {
    margin: 0 0 23px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content ul li {
    position: relative
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content ul li a:not(.remove) {
    position: relative;
    display: flex;
    align-items: center;
    font-family: Cormorant, serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 22px;
    line-height: 1.182em
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content ul li .remove {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
    line-height: 1;
    z-index: 2
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content ul li .remove:after {
    position: relative;
    display: block;
    padding: 0 3px;
    font-family: ElegantIcons;
    content: "M";
    font-size: 15px;
    line-height: 25px
}

body:not([class*=borgholm-core]) .qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content ul li .remove:after {
    content: "x"
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content .variation {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content .variation>* {
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content .variation>* p {
    margin: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content .quantity {
    display: block;
    margin-top: 10px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content .total {
    margin: 13px 0 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_shopping_cart .widget_shopping_cart_content .buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 21px 0 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li {
    margin: 0 0 8px;
    font-family: Cormorant, serif;
    font-size: 15px;
    font-weight: 700
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li a {
    position: relative;
    color: #ccc
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    bottom: 0;
    width: 0;
    background-color: #c8d644;
    transition: all .2s ease-in-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li a:hover {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li a:hover:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li a:hover:before {
    width: 100%
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li span,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li span,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li span {
    color: #ccc
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li.chosen a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li.chosen a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li.chosen a {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav ul li.chosen a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_layered_nav_filters ul li.chosen a:before,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories ul li.chosen a:before {
    width: 100%
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .qodef-widget-title {
    margin: 0 0 23px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
    position: relative;
    height: 2px;
    background-color: #bfbfbf;
    border-radius: 0;
    cursor: pointer
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
    position: absolute;
    top: -3px;
    height: 8px;
    width: 8px;
    background-color: #000;
    border-radius: 100%;
    outline: 0;
    z-index: 2
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-of-type {
    transform: translateX(-8px)
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
    position: absolute;
    display: block;
    height: 100%;
    background-color: #000;
    border-radius: 0;
    z-index: 1
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 15px 0 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .price_label {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .price_label .qodef-price-label {
    color: #464646
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .price_label .from,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .price_label .to {
    font-family: Cormorant, serif;
    font-size: 22px;
    font-weight: 700
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button {
    margin-right: 44px;
    padding: 0 !important;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    background-color: transparent;
    border: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:before {
    content: "E";
    font-family: ElegantIcons;
    position: absolute;
    display: inline-block;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    color: #000;
    transition: all .2s ease-in-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 34px;
    height: 2px;
    transform-origin: left;
    will-change: transform;
    transition: all .2s ease-in-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button.qodef-size--full:after,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button.qodef-size--full:before {
    display: none
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:hover:before {
    color: #000;
    right: -36px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:hover:after {
    transform: translateY(-50%) scaleX(1.3)
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:before {
    color: #000;
    right: -49px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:after {
    width: 30px;
    right: -41px;
    background-color: #000
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:hover:before {
    color: #000;
    right: -58px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .button:hover:after {
    background-color: #000;
    transform: translateY(-50%) scaleX(1.3)
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_price_filter .price_slider_amount .clear {
    display: none
}

.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-filter-wrapper h1,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-filter-wrapper h2,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-filter-wrapper h3,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-filter-wrapper h4,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-filter-wrapper h5,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-filter-wrapper h6,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-price-filter h1,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-price-filter h2,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-price-filter h3,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-price-filter h4,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-price-filter h5,
.qodef-footer-skin--light #qodef-page-footer .widget .wp-block-woocommerce-price-filter h6 {
    margin-bottom: 29.5pxpx
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input-wrapper {
    box-shadow: none;
    height: 1px;
    margin: calc(8px / 2) 0;
    width: 100%
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input-progress {
    height: 1px
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-webkit-slider-thumb {
    background-image: none;
    border: none;
    border-radius: 100%;
    height: 8px;
    margin: 0;
    outline: 0;
    position: relative;
    top: -3.5px;
    width: 8px
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1)
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-moz-range-thumb {
    background-image: none;
    border: none;
    border-radius: 100%;
    height: 8px;
    margin: 0;
    outline: 0;
    position: relative;
    top: -3.5px;
    width: 8px
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-moz-range-thumb:hover {
    transform: scale(1.1)
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-ms-thumb {
    background-image: none;
    border: none;
    border-radius: 100%;
    height: 8px;
    margin: 0;
    outline: 0;
    position: relative;
    top: -3.5px;
    width: 8px
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-ms-thumb:hover {
    transform: scale(1.1)
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-webkit-slider-thumb {
    transform: scale(1.1)
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-moz-range-thumb {
    transform: scale(1.1)
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-ms-thumb {
    transform: scale(1.1)
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__controls,
.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-text {
    margin: 20px 0 0 auto;
    order: 100
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__controls input,
.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-text input {
    margin: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__controls span:first-child:after,
.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__range-text span:first-child:after {
    content: "—";
    margin: 0 4px
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__actions {
    margin: 20px 0 0 0
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__actions button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    outline: 0;
    transition: all, background-color .2s ease-out, border-color .2s ease-out;
    padding: 14px 28px;
    cursor: pointer;
    z-index: 3;
    color: #000;
    background-color: #f4f4f4;
    border: 1px solid transparent
}

.qodef-footer-skin--light #qodef-page-footer .widget .wc-block-components-price-slider .wc-block-components-price-slider__actions button:hover {
    color: #000;
    background-color: #f4f4f4
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories select {
    width: 100%;
    max-width: 100%;
    margin: 8.5px 0 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_categories .select2 {
    margin-bottom: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_search input {
    padding-right: 50px;
    margin: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: #000;
    background-color: transparent;
    border: 0;
    transition: color .2s ease-out
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_search button:hover {
    color: #000
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_tag_cloud .tagcloud a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 2px 0;
    font-family: inherit;
    font-size: 15px !important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: lowercase;
    color: #ccc
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_tag_cloud .tagcloud a:hover {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_tag_cloud .tagcloud a:after {
    content: ",";
    position: absolute;
    display: inline-block
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_product_tag_cloud .tagcloud a:last-child:after {
    display: none
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-widget-title,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-widget-title,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-widget-title,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-widget-title {
    margin: 0 0 23px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products ul li,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products ul li:last-child,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews ul li:last-child,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products ul li:last-child,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products ul li:last-child {
    margin-bottom: 0
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-image,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-image,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-image,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-image {
    flex-shrink: 0;
    margin-right: 17px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-image a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-image img,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-image a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-image img,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-image a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-image img,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-image a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-image img {
    position: relative;
    display: block
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-image img,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-image img,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-image img,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-title a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-title a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-title a,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-title a {
    color: inherit
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-title a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-title a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-title a:hover,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-title a:hover {
    color: #c8d644
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-price,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-price,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-price,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-price {
    margin-top: -4px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-ratings,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-ratings,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-ratings,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-ratings {
    margin-top: 7px
}

.qodef-footer-skin--light #qodef-page-footer .widget.widget_products .qodef-woo-product-reviewer,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recent_reviews .qodef-woo-product-reviewer,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_recently_viewed_products .qodef-woo-product-reviewer,
.qodef-footer-skin--light #qodef-page-footer .widget.widget_top_rated_products .qodef-woo-product-reviewer {
    margin-top: 3px
}

@media only screen and (max-width:1200px) {
    .qodef-content-grid {
        width: 960px
    }

    .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 960px)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: calc((100% - 960px)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 960px)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: calc((100% - 960px)/ 2)
    }

    .qodef--boxed .qodef-content-grid {
        width: calc(960px + 60px)
    }
}

@media only screen and (max-width:1024px) {
    .qodef-content-grid {
        width: 768px
    }

    .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 768px)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: 0
    }

    .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 768px)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: 0
    }

    .qodef--boxed .qodef-content-grid {
        width: calc(768px + 60px)
    }
}

@media only screen and (max-width:800px) {
    .qodef-content-grid {
        width: 86%
    }

    .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 86%)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: 0
    }

    .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 86%)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: 0
    }

    .qodef--boxed .qodef-content-grid {
        width: calc(86% + 60px)
    }
}

@media only screen and (max-width:480px) {
    .qodef-content-grid {
        width: 82%
    }

    .qodef-content-grid.qodef-extended-grid--right:not(.qodef-extended-grid-reset--1024) {
        padding-left: calc((100% - 82%)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--right.qodef-extended-grid-reset--1024 {
        padding-left: 0
    }

    .qodef-content-grid.qodef-extended-grid--left:not(.qodef-extended-grid-reset--1024) {
        padding-right: calc((100% - 82%)/ 2)
    }

    .qodef-content-grid.qodef-extended-grid--left.qodef-extended-grid-reset--1024 {
        padding-right: 0
    }

    .qodef--boxed .qodef-content-grid {
        width: calc(82% + 60px)
    }
}

@media only screen and (max-width:1440px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:1366px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:1024px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:768px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:680px) {
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1440-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1440px) and (min-width:1367px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:1440px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1440--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1366-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1366px) and (min-width:1025px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:1366px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1366--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--1024-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:1024px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--1024--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--768-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:768px) and (min-width:681px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:768px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--768--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(3n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(4n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(5n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(6n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(7n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--680-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:680px) and (min-width:481px) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item:nth-child(8n+1) {
        clear: both
    }
}

@media only screen and (max-width:680px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--680--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 100%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--2.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--2.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 50%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--2.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--3.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--3.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 33.3333333333%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--3.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--4.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--4.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 25%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--4.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--5.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--5.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 20%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--5.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 40%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--6.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--6.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 16.6666666667%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--6.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--7.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--7.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 14.2857142857%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--7.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 28.5714285714%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-12 {
        width: 100%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-11 {
        width: 91.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-10 {
        width: 83.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-9 {
        width: 75%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-8 {
        width: 66.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-7 {
        width: 58.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-6 {
        width: 50%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-5 {
        width: 41.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-4 {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-3 {
        width: 25%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-2 {
        width: 16.6666666667%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-layout--template>.qodef-grid-inner>.qodef-grid-item.qodef--480-col-1 {
        width: 8.3333333333%
    }
}

@media only screen and (max-width:480px) and (min-width:0) {
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--8.qodef-layout--columns>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }
}

@media only screen and (max-width:480px) {

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--8.qodef-layout--masonry .qodef-grid-masonry-sizer,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-grid-item {
        width: 12.5%
    }

    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--huge-square,
    .qodef-grid.qodef-responsive--custom.qodef-col-num--480--8.qodef-layout--masonry>.qodef-grid-inner>.qodef-item--landscape {
        width: 25%
    }
}

@media only screen and (max-width:1440px) {
    .qodef-grid.qodef-gutter--huge.qodef--no-bottom-space {
        margin-bottom: -50px
    }

    .qodef-grid.qodef-gutter--huge>.qodef-grid-inner {
        margin: 0 -25px
    }

    .qodef-grid.qodef-gutter--huge>.qodef-grid-inner>.qodef-grid-item {
        padding: 0 25px;
        margin: 0 0 50px
    }

    .qodef-grid.qodef-gutter--gigantic.qodef--no-bottom-space {
        margin-bottom: -80px
    }

    .qodef-grid.qodef-gutter--gigantic>.qodef-grid-inner {
        margin: 0 -40px
    }

    .qodef-grid.qodef-gutter--gigantic>.qodef-grid-inner>.qodef-grid-item {
        padding: 0 40px;
        margin: 0 0 80px
    }
}

@media only screen and (max-width:680px) {
    .qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-right {
        margin-top: 15px
    }

    .qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--bottom {
        display: inline-block
    }

    .qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-left .qodef-e-read-more {
        margin-bottom: 29px
    }
}

@media only screen and (max-width:1024px) {
    #qodef-page-comments {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:1024px) {
    #qodef-page-comments-list .qodef-comment-item .children {
        padding-left: 40px
    }
}

@media only screen and (max-width:768px) {
    #qodef-page-comments-list .qodef-comment-item .children {
        padding-left: 20px
    }
}

@media only screen and (max-width:680px) {
    #qodef-page-comments-list .qodef-comment-item .children {
        padding-left: 0
    }
}

@media only screen and (max-width:480px) {
    #qodef-page-comments-list .qodef-comment-item .qodef-e-inner {
        flex-wrap: wrap
    }

    #qodef-page-comments-list .qodef-comment-item .qodef-e-content {
        margin-top: 23px
    }
}

@media only screen and (max-width:680px) {
    .qodef-m-filter .qodef-m-filter-items {
        flex-direction: column
    }

    .qodef-m-filter .qodef-m-filter-opener-target {
        flex-direction: column
    }

    .qodef-m-filter .qodef-m-filter-item,
    .qodef-m-filter .qodef-m-filter-opener {
        margin: 5px 0
    }
}

@media only screen and (max-width:1024px) {
    #qodef-page-footer-top-area .qodef-content-full-width {
        padding: 0 40px
    }
}

@media only screen and (max-width:1024px) {
    #qodef-page-footer-bottom-area .qodef-content-full-width {
        padding: 0 40px
    }
}

@media only screen and (max-width:1024px) {
    #qodef-page-header {
        display: none
    }
}

@media only screen and (max-width:1024px) {
    #qodef-page-mobile-header {
        display: block
    }
}

@media only screen and (max-width:768px) {
    .woocommerce-page div.woocommerce .col2-set {
        flex-wrap: wrap
    }
}

@media only screen and (max-width:680px) {
    #qodef-woo-page.qodef--cart .shop_table th {
        font-size: 20px
    }

    #qodef-woo-page.qodef--cart .shop_table th.product-thumbnail {
        display: none
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-thumbnail {
        display: none
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-name a {
        font-size: 20px
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-quantity .qodef-quantity-minus,
    #qodef-woo-page.qodef--cart .shop_table td.product-quantity .qodef-quantity-plus {
        display: none
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-quantity .qodef-quantity-input {
        margin: 0
    }

    #qodef-woo-page.qodef--cart .shop_table td.actions .coupon {
        width: 100%;
        float: none
    }

    #qodef-woo-page.qodef--cart .shop_table td.actions .coupon>* {
        margin-bottom: 20px
    }

    #qodef-woo-page.qodef--cart .shop_table td.actions input[type=text] {
        width: 100%;
        margin-right: 0;
        text-align: center
    }

    #qodef-woo-page.qodef--cart .shop_table td.actions .button {
        float: none;
        width: 100%
    }

    #qodef-woo-page.qodef--cart .cart-collaterals .shop_table th {
        width: auto
    }

    #qodef-woo-page.qodef--cart .cart-collaterals .wc-proceed-to-checkout a.button {
        width: 100%;
        text-align: center
    }
}

@media only screen and (max-width:480px) {
    #qodef-woo-page.qodef--cart .shop_table th {
        font-size: 16px
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-remove {
        width: 20px
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-name {
        width: 28%
    }

    #qodef-woo-page.qodef--cart .shop_table td.product-name a {
        font-size: 16px
    }
}

@media only screen and (max-width:768px) {

    .woocommerce-account .woocommerce-MyAccount-content,
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        float: none
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        padding-right: 0
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        margin-top: 50px
    }
}

@media only screen and (max-width:1440px) {
    .qodef-woo-product-list ul.products.columns-6>.product {
        width: 20%
    }
}

@media only screen and (max-width:1366px) {
    .qodef-woo-product-list ul.products.columns-5>.product {
        width: 25%
    }

    .qodef-woo-product-list ul.products.columns-6>.product {
        width: 25%
    }

    .qodef-woo-product-list ul.products.columns-7>.product {
        width: 25%
    }

    .qodef-woo-product-list ul.products.columns-8>.product {
        width: 25%
    }
}

@media only screen and (max-width:1024px) {
    .qodef-woo-product-list ul.products.columns-4>.product {
        width: 33.3333333333%
    }

    .qodef-woo-product-list ul.products.columns-5>.product {
        width: 33.3333333333%
    }

    .qodef-woo-product-list ul.products.columns-6>.product {
        width: 33.3333333333%
    }

    .qodef-woo-product-list ul.products.columns-7>.product {
        width: 33.3333333333%
    }

    .qodef-woo-product-list ul.products.columns-8>.product {
        width: 33.3333333333%
    }
}

@media only screen and (max-width:768px) {
    .qodef-woo-product-list ul.products.columns-3>.product {
        width: 50%
    }

    .qodef-woo-product-list ul.products.columns-4>.product {
        width: 50%
    }

    .qodef-woo-product-list ul.products.columns-5>.product {
        width: 50%
    }

    .qodef-woo-product-list ul.products.columns-6>.product {
        width: 50%
    }

    .qodef-woo-product-list ul.products.columns-7>.product {
        width: 50%
    }

    .qodef-woo-product-list ul.products.columns-8>.product {
        width: 50%
    }
}

@media only screen and (max-width:680px) {
    .qodef-woo-product-list ul.products.columns-2>.product {
        width: 100%
    }

    .qodef-woo-product-list ul.products.columns-3>.product {
        width: 100%
    }

    .qodef-woo-product-list ul.products.columns-4>.product {
        width: 100%
    }

    .qodef-woo-product-list ul.products.columns-5>.product {
        width: 100%
    }

    .qodef-woo-product-list ul.products.columns-6>.product {
        width: 100%
    }

    .qodef-woo-product-list ul.products.columns-7>.product {
        width: 100%
    }

    .qodef-woo-product-list ul.products.columns-8>.product {
        width: 100%
    }
}

@media only screen and (max-width:1440px) {
    .qodef-woo-product-list.qodef-gutter--huge ul.products {
        margin: 0 -25px
    }

    .qodef-woo-product-list.qodef-gutter--huge ul.products>.product {
        padding: 0 25px;
        margin: 0 0 50px
    }

    .qodef-woo-product-list.qodef-gutter--gigantic ul.products {
        margin: 0 -40px
    }

    .qodef-woo-product-list.qodef-gutter--gigantic ul.products>.product {
        padding: 0 40px;
        margin: 0 0 80px
    }
}

@media only screen and (max-width:680px) {
    .qodef-woo-results {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: start;
        flex-direction: column
    }
}

.qodef-woo-results .woocommerce-ordering {
    margin-left: 0
}

@media only screen and (max-width:1024px) {
    #qodef-woo-page.qodef--single .qodef-woo-single-inner {
        flex-wrap: wrap
    }

    #qodef-woo-page.qodef--single .entry-summary {
        margin-top: 60px
    }
}

@media only screen and (max-width:680px) {
    #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 50% !important
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 50% !important
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 50% !important
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 50% !important
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 50% !important
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger {
        left: 10px
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure {
        flex-wrap: wrap
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.woocommerce-product-gallery__image {
        width: 100% !important
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap
    }

    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child {
        margin-top: 10px !important
    }
}