@charset "UTF-8";
@-webkit-keyframes qode-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes qode-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes qode-fade-in {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes qode-fade-in {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@-webkit-keyframes qode-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes qode-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
@-webkit-keyframes qode-ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
        transform: translateY(-145%);
    }
    10% {
        opacity: 0.5;
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
        transform: translateY(145%);
    }
}
@keyframes qode-ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
        transform: translateY(-145%);
    }
    10% {
        opacity: 0.5;
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
        transform: translateY(145%);
    }
}
@-webkit-keyframes qode-scaleout {
    0% {
        -webkit-transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}
@keyframes qode-scaleout {
    0% {
        -webkit-transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}
@-webkit-keyframes qode-double-pulse {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes qode-double-pulse {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes qode-cube {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@keyframes qode-cube {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@-webkit-keyframes qode-rotating-cubes {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
        transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
        transform: translateX(42px) translateY(42px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
        transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(42px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@keyframes qode-rotating-cubes {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
        transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
        transform: translateX(42px) translateY(42px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
        transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(42px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes qode-stretch-delay {
    0%,
    100%,
    40% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes qode-stretch-delay {
    0%,
    100%,
    40% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes qode-bounce-delay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes qode-bounce-delay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes qode-rotate-circles {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes qode-rotate-circles {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes qode-atom-position {
    50% {
        top: 80px;
        left: 80px;
    }
}
@keyframes qode-atom-position {
    50% {
        top: 80px;
        left: 80px;
    }
}
@-webkit-keyframes qode-atom-size {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
@keyframes qode-atom-size {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
@-webkit-keyframes qode-atom-zindex {
    100% {
        z-index: 10;
    }
}
@keyframes qode-atom-zindex {
    100% {
        z-index: 10;
    }
}
@-webkit-keyframes qode-atom-shrink {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}
@keyframes qode-atom-shrink {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}
@-webkit-keyframes qode-clock {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes qode-clock {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes qode-clock-1 {
    0% {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    30% {
        -webkit-transform: rotate(-450deg);
        transform: rotate(-450deg);
    }
    100% {
        -webkit-transform: rotate(-450deg);
        transform: rotate(-450deg);
    }
}
@keyframes qode-clock-1 {
    0% {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    30% {
        -webkit-transform: rotate(-450deg);
        transform: rotate(-450deg);
    }
    100% {
        -webkit-transform: rotate(-450deg);
        transform: rotate(-450deg);
    }
}
@-webkit-keyframes qode-clock-2 {
    5% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    35% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
    100% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}
@keyframes qode-clock-2 {
    5% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    35% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
    100% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}
@-webkit-keyframes qode-clock-3 {
    10% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    40% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@keyframes qode-clock-3 {
    10% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    40% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes qode-clock-4 {
    15% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    45% {
        -webkit-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    100% {
        -webkit-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
}
@keyframes qode-clock-4 {
    15% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    45% {
        -webkit-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    100% {
        -webkit-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
}
@-webkit-keyframes qode-mitosis-invert {
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@keyframes qode-mitosis-invert {
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@-webkit-keyframes qode-mitosis-ball-1 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, 25%) scale(0.6, 0.8);
        transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@keyframes qode-mitosis-ball-1 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, 25%) scale(0.6, 0.8);
        transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes qode-mitosis-ball-2 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, -25%) scale(0.6, 0.8);
        transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@keyframes qode-mitosis-ball-2 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, -25%) scale(0.6, 0.8);
        transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes qode-mitosis-ball-3 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, 25%) scale(0.6, 0.8);
        transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@keyframes qode-mitosis-ball-3 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, 25%) scale(0.6, 0.8);
        transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes qode-mitosis-ball-4 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, -25%) scale(0.6, 0.8);
        transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@keyframes qode-mitosis-ball-4 {
    12% {
        -webkit-transform: none;
        transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, -25%) scale(0.6, 0.8);
        transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes qode-lines-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes qode-lines-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes qode-fussion-ball-1 {
    50% {
        top: -100%;
        left: 200%;
    }
    100% {
        top: 50%;
        left: 100%;
        z-index: 2;
    }
}
@keyframes qode-fussion-ball-1 {
    50% {
        top: -100%;
        left: 200%;
    }
    100% {
        top: 50%;
        left: 100%;
        z-index: 2;
    }
}
@-webkit-keyframes qode-fussion-ball-2 {
    50% {
        top: 200%;
        left: 200%;
    }
    100% {
        top: 100%;
        left: 50%;
        z-index: 1;
    }
}
@keyframes qode-fussion-ball-2 {
    50% {
        top: 200%;
        left: 200%;
    }
    100% {
        top: 100%;
        left: 50%;
        z-index: 1;
    }
}
@-webkit-keyframes qode-fussion-ball-3 {
    50% {
        top: 200%;
        left: -100%;
    }
    100% {
        top: 50%;
        left: 0;
        z-index: 2;
    }
}
@keyframes qode-fussion-ball-3 {
    50% {
        top: 200%;
        left: -100%;
    }
    100% {
        top: 50%;
        left: 0;
        z-index: 2;
    }
}
@-webkit-keyframes qode-fussion-ball-4 {
    50% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 0;
        left: 50%;
        z-index: 1;
    }
}
@keyframes qode-fussion-ball-4 {
    50% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 0;
        left: 50%;
        z-index: 1;
    }
}
@-webkit-keyframes qode-wave-jump-1 {
    12% {
        -webkit-transform: translate(20px, -40px);
        transform: translate(20px, -40px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100%,
    24% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
}
@keyframes qode-wave-jump-1 {
    12% {
        -webkit-transform: translate(20px, -40px);
        transform: translate(20px, -40px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100%,
    24% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
}
@-webkit-keyframes qode-wave-jump-2 {
    12% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    24% {
        -webkit-transform: translate(20px, -40px);
        transform: translate(20px, -40px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100%,
    36% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
}
@keyframes qode-wave-jump-2 {
    12% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    24% {
        -webkit-transform: translate(20px, -40px);
        transform: translate(20px, -40px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100%,
    36% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
}
@-webkit-keyframes qode-wave-jump-3 {
    24% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    36% {
        -webkit-transform: translate(20px, -40px);
        transform: translate(20px, -40px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100%,
    48% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
}
@keyframes qode-wave-jump-3 {
    24% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    36% {
        -webkit-transform: translate(20px, -40px);
        transform: translate(20px, -40px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100%,
    48% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
}
@-webkit-keyframes qode-wave-wipe {
    100%,
    48% {
        -webkit-transform: translateX(-120px);
        transform: translateX(-120px);
    }
}
@keyframes qode-wave-wipe {
    100%,
    48% {
        -webkit-transform: translateX(-120px);
        transform: translateX(-120px);
    }
}
@-webkit-keyframes qode-pulse-circles-pulse {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 1;
        border-width: 50px;
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
        border-width: 0;
    }
}
@keyframes qode-pulse-circles-pulse {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 1;
        border-width: 50px;
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
        border-width: 0;
    }
}
@-webkit-keyframes qode-bounce {
    20%,
    53%,
    80%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes qode-bounce {
    20%,
    53%,
    80%,
    from,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@-webkit-keyframes qode-pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes qode-pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@-webkit-keyframes qodef-image-appear {
    0% {
        opacity: 0;
        -webkit-transform: scaleY(1.3);
        transform: scaleY(1.3);
    }
    100% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes qodef-image-appear {
    0% {
        opacity: 0;
        -webkit-transform: scaleY(1.3);
        transform: scaleY(1.3);
    }
    100% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes qode-swiper-image-in {
    0%,
    5% {
        -webkit-clip-path: inset(0 0 100% 0);
        clip-path: inset(0 0 100% 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
    100% {
        -webkit-clip-path: inset(0 -1px 0 0);
        clip-path: inset(0 -1px 0 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
}
@keyframes qode-swiper-image-in {
    0%,
    5% {
        -webkit-clip-path: inset(0 0 100% 0);
        clip-path: inset(0 0 100% 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
    100% {
        -webkit-clip-path: inset(0 -1px 0 0);
        clip-path: inset(0 -1px 0 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
}
@-webkit-keyframes qode-swiper-image-in-right {
    0%,
    5% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
    100% {
        -webkit-clip-path: inset(0 -1px 0 0);
        clip-path: inset(0 -1px 0 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
}
@keyframes qode-swiper-image-in-right {
    0%,
    5% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
    100% {
        -webkit-clip-path: inset(0 -1px 0 0);
        clip-path: inset(0 -1px 0 0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }
}
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;
}
* {
    -webkit-box-sizing: border-box;
    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: #6a6a6a;
}
code {
    background-color: #fafafa;
    padding: 0;
    font-family: monospace, monospace;
    font-size: 1em;
    color: #6a6a6a;
}
sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
table {
    width: 100%;
    vertical-align: middle;
    border: medium none;
    border-collapse: collapse;
    border-spacing: 0;
}
table tr {
    border: 1px solid #7a7a7a;
}
table th {
    padding: 5px 7px;
    text-align: left;
    border-right: 1px solid #7a7a7a;
}
table td {
    padding: 5px 10px;
    text-align: left;
    border: 0;
    border-right: 1px solid #7a7a7a;
}
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*="trousseau-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;
}
ol ul,
ul ul {
    list-style-type: circle;
}
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;
}
embed,
iframe,
object {
    display: block;
    max-width: 100%;
}
video {
    display: block;
}
embed,
object {
    height: auto;
}
label {
    display: block;
    margin-bottom: 0.5em;
}
fieldset {
    margin-bottom: 1em;
    padding: 0.35em 0.75em 0.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: #6a6a6a;
    text-align: center;
    opacity: 1;
}
.gallery-caption a,
.wp-caption a,
figcaption a {
    color: #000;
    margin: 0 3px;
}
.wp-caption .wp-caption-text {
    opacity: 1;
}
blockquote.instagram-media,
iframe.instagram-media {
    margin: auto !important;
}
.bypostauthor,
.sticky {
    opacity: 1;
}
::-moz-selection {
    color: #fff;
    background: #000;
}
::selection {
    color: #fff;
    background: #000;
}
::-moz-selection {
    color: #fff;
    background: #000;
}
.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;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 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;
}
.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: Muli, sans-serif;
    font-size: 16px;
    line-height: 1.611em;
    font-weight: 400;
    color: #6a6a6a;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.qodef-h1,
h1 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 68px;
    line-height: 1.221em;
    letter-spacing: 0.15em;
    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: #000;
}
.qodef-h2,
h2 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 42px;
    line-height: 1em;
    letter-spacing: 0.2em;
    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: #000;
}
.qodef-h3,
h3 {
    font-family: Muli, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 18px;
    line-height: 1.267em;
    letter-spacing: 0.15em;
    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: #000;
}
.qodef-h4,
h4 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    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: #000;
}
.qodef-h5,
h5 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 19px;
    line-height: 1.526em;
    letter-spacing: 0.2em;
    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: #000;
}
.qodef-h6,
h6 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    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: #000;
}
a,
p a {
    color: #000;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    cursor: pointer;
}
a:hover,
p a:hover {
    color: #000;
}
p {
    margin: 10px 0;
    line-height: 1.611em;
}
p.has-background {
    padding: 20px 30px;
}
.wp-block-quote,
blockquote {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0;
    padding: 0;
    position: relative;
    padding: 5px 10% 14px 37px;
    border: none;
    font-family: Cormorant, serif;
    font-style: italic;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 40px;
    color: #c99898;
    border-left: 3px solid #c99898;
    quotes: none;
    z-index: 1;
}
.wp-block-quote.wp-block-quote.is-large,
.wp-block-quote.wp-block-quote.is-style-large,
blockquote.wp-block-quote.is-large,
blockquote.wp-block-quote.is-style-large {
    margin: 0;
    padding: 18px 10% 20px 0;
}
.wp-block-quote.wp-block-quote.is-large p,
.wp-block-quote.wp-block-quote.is-style-large p,
blockquote.wp-block-quote.is-large p,
blockquote.wp-block-quote.is-style-large p {
    font-size: 1.5em !important;
    font-style: italic !important;
    line-height: 1.6 !important;
}
.wp-block-quote.wp-block-pullquote,
blockquote.wp-block-pullquote {
    padding: 25px !important;
    text-align: center;
}
.wp-block-quote.wp-block-pullquote.alignleft,
blockquote.wp-block-pullquote.alignleft {
    max-width: 290px;
}
.wp-block-quote.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.alignright {
    max-width: 290px;
}
.wp-block-quote.has-text-align-right:before,
blockquote.has-text-align-right:before {
    left: auto;
    right: 0;
}
.wp-block-quote > *,
blockquote > * {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    font-style: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    color: inherit !important;
    margin: 0;
}
.wp-block-quote p,
blockquote p {
    margin: 0 !important;
}
.wp-block-quote:after,
blockquote:after {
    content: "";
}
.wp-block-quote .wp-block-pullquote__citation,
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
blockquote .wp-block-pullquote__citation,
blockquote .wp-block-quote__citation,
blockquote cite {
    display: block;
    margin: 10px 0 0;
    font-style: normal;
    font-weight: 400 !important;
    text-align: inherit !important;
    text-transform: uppercase !important;
}
input[type="date"],
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 20px;
    padding: 16.5px 0;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #6a6a6a;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #585858;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    letter-spacing: 0;
}
input[type="date"]:focus,
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;
    border-color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
}
input[type="date"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000;
    background-color: transparent;
    border-color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
}
input[type="date"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #000;
    background-color: transparent;
    border-color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
}
input[type="date"]:-ms-input-placeholder,
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: #000;
    background-color: transparent;
    border-color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
}
input[type="date"]::-ms-input-placeholder,
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: #000;
    background-color: transparent;
    border-color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
}
input[type="date"]::placeholder,
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: #000;
    background-color: transparent;
    border-color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
}
input[type="date"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
input[type="date"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
}
input[type="date"]:-ms-input-placeholder,
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="date"]::-ms-input-placeholder,
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="date"]::placeholder,
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-page-footer input[type="date"],
#qodef-page-footer input[type="email"],
#qodef-page-footer input[type="number"],
#qodef-page-footer input[type="password"],
#qodef-page-footer input[type="search"],
#qodef-page-footer input[type="tel"],
#qodef-page-footer input[type="text"],
#qodef-page-footer input[type="url"],
#qodef-page-footer textarea {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}
#qodef-page-footer input[type="date"]:focus,
#qodef-page-footer input[type="email"]:focus,
#qodef-page-footer input[type="number"]:focus,
#qodef-page-footer input[type="password"]:focus,
#qodef-page-footer input[type="search"]:focus,
#qodef-page-footer input[type="tel"]:focus,
#qodef-page-footer input[type="text"]:focus,
#qodef-page-footer input[type="url"]:focus,
#qodef-page-footer textarea:focus {
    color: #fff;
    background-color: transparent;
    border-color: #ccc;
}
input[type="date"] {
    position: relative;
    line-height: 27px;
}
input::-webkit-calendar-picker-indicator {
    opacity: 0;
    background: 0 0;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
input::-webkit-datetime-edit-day-field:focus,
input::-webkit-datetime-edit-month-field:focus,
input::-webkit-datetime-edit-year-field:focus {
    background-color: transparent;
    color: #000;
    outline: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #fff inset;
}
input:-webkit-autofill {
    -webkit-background-clip: text;
}
.post-password-form input[type="password"] {
    margin-top: 0.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: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 22px 32px 22px 32px;
    color: #fff;
    background-color: #000;
    cursor: pointer;
}
.qodef-theme-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    color: #fff;
    background-color: #2e2e2e;
}
.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;
}
.qodef-theme-button.qodef-size--small {
    padding: 16px 28px 15px;
}
select {
    position: relative;
    display: block;
    height: 43px;
    padding: 7px 20px;
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: #6a6a6a;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
select:disabled {
    color: inherit;
    border-color: inherit;
    background-color: #fafafa;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
}
body .select2-container--default {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    margin: 0 0 20px;
}
body .select2-container--default .select2-selection--single {
    display: block;
    height: 43px;
    padding: 7px 20px;
    margin: 0;
    font-family: inherit;
    font-size: 15px;
    line-height: 29px;
    font-weight: 400;
    color: #6a6a6a;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-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;
    -o-text-overflow: ellipsis;
    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: 50px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    color: #2e2e2e;
}
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;
    line-height: inherit;
    font-style: normal;
    content: "\e874";
    font-family: Linearicons-Free;
}
body .select2-container--default .select2-selection--multiple {
    display: block;
    height: 43px;
    padding: 7px 20px;
    margin: 0;
    font-family: inherit;
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    color: #6a6a6a;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-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;
    -o-text-overflow: ellipsis;
    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: 5px 5px 0 0;
    padding: 0 10px;
    float: left;
    color: #fff;
    background-color: #000;
    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;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    cursor: pointer;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove:hover {
    color: inherit;
    opacity: 0.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: inherit;
    font-size: inherit;
    font-weight: inherit;
    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: #fafafa;
    border: 1px solid transparent;
    border-radius: 0;
    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: inherit;
    font-size: inherit;
    line-height: 20px;
    font-weight: inherit;
    color: #6a6a6a;
    background-color: #fff;
    border: 1px solid #7a7a7a;
    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 15px;
    list-style: none;
}
body .select2-container--default .select2-results__option {
    padding: 3px 0;
    color: #585858;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.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*="trousseau-core"]) .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/lnr-chevron-down.html) center center no-repeat;
    background-size: contain;
}
.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;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
}
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,
input[type="text"]::-ms-clear {
    display: none;
}
@-webkit-keyframes qodefAutofillFix {
    0%,
    100% {
        background-color: transparent;
        color: #000;
    }
}
input:-webkit-autofill {
    -webkit-animation-delay: 1s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: qodefAutofillFix;
}
.qodef-content-grid {
    width: 1100px;
    margin: 0 auto;
}
.qodef-content-grid.qodef-extended-grid {
    width: 100% !important;
    margin: 0;
}
.qodef-content-grid.qodef-extended-grid--right {
    padding-left: calc((100% - 1100px) / 2);
}
.qodef-content-grid.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 {
        padding-left: calc((100% - 1400px) / 2);
    }
    .qodef-content-grid-1400 .qodef-content-grid.qodef-extended-grid--left {
        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 {
        padding-left: calc((100% - 1300px) / 2);
    }
    .qodef-content-grid-1300 .qodef-content-grid.qodef-extended-grid--left {
        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 {
        padding-left: calc((100% - 1200px) / 2);
    }
    .qodef-content-grid-1200 .qodef-content-grid.qodef-extended-grid--left {
        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 {
        padding-left: calc((100% - 1000px) / 2);
    }
    .qodef-content-grid-1000 .qodef-content-grid.qodef-extended-grid--left {
        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 {
        padding-left: calc((100% - 800px) / 2);
    }
    .qodef-content-grid-800 .qodef-content-grid.qodef-extended-grid--left {
        padding-right: calc((100% - 800px) / 2);
    }
    .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.09091%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--11 {
        left: 9.09091%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--11 {
        right: 9.09091%;
    }
}
@media only screen and (min-width: 1025px) {
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col--10 {
        width: 83.33333%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--10 {
        left: 83.33333%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--10 {
        right: 83.33333%;
    }
}
@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.66667%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--8 {
        left: 66.66667%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--8 {
        right: 66.66667%;
    }
}
@media only screen and (min-width: 1025px) {
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col--7 {
        width: 14.28571%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--7 {
        left: 14.28571%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--7 {
        right: 14.28571%;
    }
}
@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.33333%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--4 {
        left: 33.33333%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--4 {
        right: 33.33333%;
    }
}
@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.66667%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--2 {
        left: 16.66667%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--2 {
        right: 16.66667%;
    }
}
@media only screen and (min-width: 1025px) {
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col--1 {
        width: 8.33333%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-push--1 {
        left: 8.33333%;
    }
    .qodef-grid.qodef-layout--template > .qodef-grid-inner > .qodef-grid-item.qodef-col-pull--1 {
        right: 8.33333%;
    }
}
.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.33333%;
}
@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.66667%;
}
@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.28571%;
}
@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.33333%;
}
.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.66667%;
}
.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.66667%;
}
.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.33333%;
}
.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.28571%;
}
.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.57143%;
}
.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--decent.qodef--no-bottom-space {
    margin-bottom: -32px;
}
.qodef-grid.qodef-gutter--decent > .qodef-grid-inner {
    margin: 0 -16px;
}
.qodef-grid.qodef-gutter--decent > .qodef-grid-inner > .qodef-grid-item {
    padding: 0 16px;
    margin: 0 0 32px;
}
.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--extra-large.qodef--no-bottom-space {
    margin-bottom: -60px;
}
.qodef-grid.qodef-gutter--extra-large > .qodef-grid-inner {
    margin: 0 -30px;
}
.qodef-grid.qodef-gutter--extra-large > .qodef-grid-inner > .qodef-grid-item {
    padding: 0 30px;
    margin: 0 0 60px;
}
.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: -124px;
}
.qodef-grid.qodef-gutter--gigantic > .qodef-grid-inner {
    margin: 0 -62px;
}
.qodef-grid.qodef-gutter--gigantic > .qodef-grid-inner > .qodef-grid-item {
    padding: 0 62px;
    margin: 0 0 124px;
}
#qodef-page-wrapper {
    position: relative;
    overflow: hidden;
}
#qodef-page-outer {
    position: relative;
}
#qodef-page-inner {
    position: relative;
    padding: 10px 0 10px;
}
#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;
}
.page.page-template-default #qodef-page-comments {
    margin-top: 54px;
}
.page.page-template-default #qodef-page-comments #qodef-page-comments-list .qodef-m-title {
    margin: 10px 0 38px;
}
button.mfp-arrow {
    top: calc(50% - 25px) !important;
    width: 26px !important;
    height: 51px !important;
    margin: 0 !important;
    color: #fff;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    opacity: 1 !important;
}
button.mfp-arrow svg {
    display: block;
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-miterlimit: 10;
    pointer-events: none;
}
button.mfp-arrow:after,
button.mfp-arrow:before {
    display: none !important;
}
button.mfp-arrow:hover {
    color: rgba(255, 255, 255, 0.4);
}
button.mfp-arrow.mfp-arrow-left {
    left: 30px;
}
button.mfp-arrow.mfp-arrow-right {
    right: 30px;
}
button.mfp-arrow.mfp-arrow-right svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
button.mfp-close {
    top: 6px !important;
    right: -32px !important;
    width: 32px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    opacity: 1 !important;
}
button.mfp-close:hover {
    color: rgba(255, 255, 255, 0.4);
}
button.mfp-close:after,
button.mfp-close:before {
    display: none !important;
}
button.mfp-close svg {
    display: block;
    width: 100%;
    height: auto;
    fill: currentColor;
    stroke: none;
    stroke-miterlimit: 10;
    pointer-events: none;
}
.mfp-bottom-bar .mfp-counter,
.mfp-bottom-bar .mfp-title {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 19px;
    line-height: 1.526em;
    letter-spacing: 0.2em;
    color: #fff;
}
.mfp-iframe-holder .mfp-close {
    top: -40px !important;
}
.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-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}
.swiper-pagination-bullets {
    bottom: 32px !important;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border-radius: 0;
    opacity: 1;
    position: relative;
    border: none;
    color: #000;
}
.swiper-pagination-bullets .swiper-pagination-bullet:after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: opacity 0.3s ease 0.4s;
    -o-transition: opacity 0.3s ease 0.4s;
    transition: opacity 0.3s ease 0.4s;
    opacity: 0;
}
.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: currentColor;
}
.swiper-pagination-bullets .swiper-pagination-bullet .qodef-svg-circle circle {
    stroke-dasharray: 50;
    stroke-dashoffset: 100;
    stroke-width: 1;
    -webkit-transition: all 1s cubic-bezier(0.43, 0.41, 0.36, 0.9);
    -o-transition: all 1s cubic-bezier(0.43, 0.41, 0.36, 0.9);
    transition: all 1s cubic-bezier(0.43, 0.41, 0.36, 0.9);
    -webkit-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    transform: rotate(-1deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    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: 10;
    -webkit-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    transform: rotate(1deg);
    -webkit-transition: all 1s cubic-bezier(0.43, 0.41, 0.36, 0.9);
    -o-transition: all 1s cubic-bezier(0.43, 0.41, 0.36, 0.9);
    transition: all 1s cubic-bezier(0.43, 0.41, 0.36, 0.9);
}
.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-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.swiper-pagination-bullets .swiper-pagination-bullet:hover:after {
    opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    color: #000;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
}
.swiper-button-next svg,
.swiper-button-prev svg {
    display: block;
    width: 26px;
    fill: currentColor;
    stroke: currentColor;
    stroke-miterlimit: 10;
    position: absolute;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: rgba(0, 0, 0, 0.4);
}
.swiper-button-prev {
    left: 30px !important;
}
.swiper-button-prev svg {
    left: 0;
    top: inherit;
}
.swiper-button-next {
    right: 30px !important;
}
.swiper-button-next svg {
    right: 0;
    top: inherit;
}
.swiper-button-prev.swiper-button-outside,
.swiper-container-rtl .swiper-button-next.swiper-button-outside {
    -webkit-transform: translateX(-300%);
    -ms-transform: translateX(-300%);
    transform: translateX(-300%);
}
.swiper-button-next.swiper-button-outside,
.swiper-container-rtl .swiper-button-prev.swiper-button-outside {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}
.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;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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: "\e874";
    font-family: Linearicons-Free;
    line-height: 1;
    border: 0;
    position: relative;
    top: 1px;
    margin-left: 4px;
}
body:not([class*="trousseau-core"]) .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,
body:not([class*="trousseau-core"]) .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/lnr-chevron-down.html) center center no-repeat;
    background-size: contain;
}
.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: -5px 0 0;
    border-top: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
    -o-transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
    transition: visibility 0s linear 0.25s, opacity 0.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 !important;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    background-color: transparent;
    padding: 6px 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown > ul > li.wpml-ls-item-legacy-dropdown {
    margin-bottom: 0 !important;
}
.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: 16.5px 0 16.5px 20px;
    height: 46px;
    line-height: 13px;
    color: #6a6a6a;
    background-color: #fff;
    border: 1px solid transparent;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    float: right;
}
#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: #000;
}
#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: 9px 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: #6a6a6a;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: Muli, sans-serif;
    line-height: 13px;
    display: block;
    text-align: right;
}
#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: #000;
}
#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: #6a6a6a;
}
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #000;
}
#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: #6a6a6a;
}
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #000;
}
#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: 16.5px 0 16.5px 20px;
    height: 46px;
    line-height: 13px;
    color: #6a6a6a;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    float: right;
}
#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: #000;
}
#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: 9px 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: #6a6a6a;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: Muli, sans-serif;
    line-height: 13px;
    display: block;
    text-align: right;
}
#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: #000;
}
#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: #6a6a6a;
}
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #000;
}
#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: #6a6a6a;
}
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #000;
}
#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: 110px;
}
#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: 18.5px 0 18.5px 20px;
    height: 50px;
    line-height: 13px;
    color: #2e2e2e;
    background-color: #faf5f2;
    border: 1px solid transparent;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    float: right;
}
#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: #2e2e2e;
}
#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: 9px 20px;
    background-color: #faf5f2;
}
#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: #2e2e2e;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: Muli, sans-serif;
    line-height: 13px;
    display: block;
    text-align: right;
}
#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: #2e2e2e;
}
#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: 16.5px 0 16.5px 20px;
    height: 46px;
    line-height: 13px;
    color: #6a6a6a;
    background-color: #fafafa;
    border: 1px solid transparent;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    float: right;
}
#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: #000;
}
#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: 9px 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: #6a6a6a;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: Muli, sans-serif;
    line-height: 13px;
    display: block;
    text-align: right;
}
#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: #000;
}
#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: #6a6a6a;
}
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #000;
}
#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: #6a6a6a;
}
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #000;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 100%;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 16.5px 0 16.5px 20px;
    height: 46px;
    line-height: 13px;
    color: #6a6a6a;
    background-color: #fafafa;
    border: 1px solid transparent;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    float: right;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #000;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 9px 20px;
    background-color: #fafafa;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #6a6a6a;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: Muli, sans-serif;
    line-height: 13px;
    display: block;
    text-align: right;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #000;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #fff;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #fff;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #fff;
}
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #fff;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
    width: 100%;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding: 16.5px 0 16.5px 20px;
    height: 46px;
    line-height: 13px;
    color: #6a6a6a;
    background-color: #fafafa;
    border: 1px solid transparent;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    float: right;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
    color: #000;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    margin: 0;
    padding: 9px 20px;
    background-color: #fafafa;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
    color: #6a6a6a;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-family: Muli, sans-serif;
    line-height: 13px;
    display: block;
    text-align: right;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
    color: #000;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
    margin-right: 10px !important;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
    color: #fff;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
    color: #fff;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
    margin-right: 0;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
    margin-bottom: 10px;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
    color: #fff;
}
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
    color: #fff;
}
.error404 #qodef-page-inner {
    padding: 0;
}
#qodef-404-page {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 160px 10% 250px;
    text-align: center;
}
#qodef-404-page .qodef-404-title {
    margin: 0;
}
#qodef-404-page .qodef-404-text {
    display: block;
    margin: 14px auto 0;
}
@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: 52px;
}
.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;
}
body:not([class*="trousseau-core"]) .qodef-blog .qodef-blog-item {
    margin: 0 0 48px;
}
body:not([class*="trousseau-core"]) .qodef-blog .qodef-blog-item.has-post-thumbnail:not(.format-link):not(.format-quote):not(.format-audio) {
    margin-top: 12px;
}
body:not([class*="trousseau-core"]) .qodef-blog .qodef-blog-item:not(.has-post-thumbnail) .qodef-e-media {
    margin-bottom: 0;
}
body:not([class*="trousseau-core"]) .qodef-blog .qodef-blog-item.format-link + .format-quote {
    margin-top: 12px;
}
.qodef-blog .qodef-blog-item .post-password-form input[type="submit"] {
    padding: 16px 28px 15px;
}
.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 .qodef-e-media-gallery .swiper-button-next svg,
.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-media-gallery .swiper-button-prev svg {
    color: #fff;
}
.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 a {
    position: relative;
}
.qodef-blog .qodef-blog-item .qodef-e-media-image a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #2e2e2e;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.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-inner:hover .qodef-e-media-image a:after {
    opacity: 0.06;
}
.qodef-blog .qodef-blog-item .qodef-e-media {
    display: block;
}
.qodef-blog .qodef-blog-item .qodef-e-media iframe {
    display: block;
    height: 100%;
}
.qodef-blog .qodef-blog-item.has-post-thumbnail:not(.format-link):not(.format-quote):not(.format-audio) .qodef-e-media {
    margin-bottom: 25px;
}
.qodef-blog .qodef-blog-item .qodef-e-title {
    margin: 0;
}
.qodef-blog .qodef-blog-item .qodef-e-excerpt {
    padding-bottom: 13px;
    margin: 17px 0 0;
    letter-spacing: 0;
}
.qodef-blog .qodef-blog-item .qodef-e-read-more {
    margin: 15px 0 0;
}
.qodef-blog .qodef-blog-item .qodef-e-read-more .qodef-button.qodef-size--small {
    padding: 16px 28px 15px;
}
.qodef-blog .qodef-blog-item .qodef-e-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
    .qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 26px 0 0;
    color: currentColor;
}
.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item .qodef-e-info-author-label {
    color: #868686;
    font-size: 15px;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
    font-weight: 400;
}
.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #868686;
    display: inline-block;
}
.qodef-blog .qodef-blog-item .qodef-e-info .qodef-e-info-item a {
    color: #868686;
    font-size: 15px;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
    font-weight: 400;
}
.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 {
    display: none;
}
.qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--top {
    margin-bottom: 14px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--bottom {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 19px;
}
.qodef-blog .qodef-blog-item .qodef-e-info-tags a {
    position: relative;
    display: inline-block;
    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-info-tags a:hover {
    color: #000;
}
.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: -0.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-link .qodef-e-link {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 5.1% 8% 3.1%;
    background-color: #faf5f2;
}
@media only screen and (max-width: 1024px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
        padding: 5.1% 8% 2.6%;
    }
}
@media only screen and (max-width: 768px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
        padding: 5.1% 8% 2.4%;
    }
}
@media only screen and (max-width: 680px) {
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
        padding: 9.7% 8% 5.8%;
    }
}
.qodef-blog .qodef-blog-item.format-link p.qodef-e-link-text {
    padding: 5px 0 10px;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 40px;
    text-align: center;
    color: #c99898;
    font-family: Cormorant, serif;
}
.qodef-blog .qodef-blog-item.format-link .qodef-e-link-text {
    position: relative;
    margin: 0;
    color: #fff;
}
.qodef-blog .qodef-blog-item.format-link .qodef-e-link-icon {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 170px;
    height: auto;
    stroke: #484848;
    fill: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.qodef-blog .qodef-blog-item.format-link .qodef-link-icon {
    position: relative;
    font-size: 30px;
    color: #c99898;
    line-height: 29px;
    top: -5px;
    left: 50%;
    font-weight: 400;
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.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: 6.7% 7.5% 3.5%;
    background-color: #faf5f2;
}
@media only screen and (max-width: 1024px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
        padding: 6.7% 7.5% 1.9%;
    }
}
@media only screen and (max-width: 768px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
        padding: 6.7% 7.5% 0.9%;
    }
}
@media only screen and (max-width: 680px) {
    .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
        padding: 18.2% 7.5% 9%;
    }
}
.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote:before {
    content: "“";
    position: relative;
    left: 50%;
    letter-spacing: 18px;
    font-weight: 400;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 90px;
    font-family: Cormorant, serif;
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #c99898;
}
.qodef-blog .qodef-blog-item.format-quote p.qodef-e-quote-text {
    padding: 3px 0 15px;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 40px;
    text-align: center;
    color: #c99898;
    font-family: Cormorant, serif;
    margin-top: -30px;
}
.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-text {
    position: relative;
    margin: 0;
    color: #fff;
}
.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-author {
    position: relative;
    display: block;
    margin: 20px 0 0;
    color: #fff;
}
.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-items--fixed article .qodef-e-media,
.qodef-blog.qodef-items--fixed article .qodef-e-media-image {
    height: 100%;
}
.qodef-blog.qodef--list .qodef-blog-item .qodef-e-read-more {
    margin-top: 0;
}
.qodef-blog.qodef--single .qodef-blog-item {
    margin: 0;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-media {
    margin-bottom: 26px;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-media .qodef-e-media-gallery .swiper-button-next svg,
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-media .qodef-e-media-gallery .swiper-button-prev svg {
    color: #fff;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-content .qodef-e-text p {
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    color: #6a6a6a;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-title {
    margin: 0 0 28px;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-tags-label {
    display: block;
    font-family: Muli, sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    line-height: 13px;
    text-transform: uppercase;
    color: #000;
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--top {
    margin-bottom: 11px;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom {
    margin-top: 16px;
    display: block;
    clear: right;
}
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-tags {
    display: block;
    text-align: center;
}
.qodef-blog.qodef--single .format-link.qodef-blog-item .qodef-e-info.qodef-info--top,
.qodef-blog.qodef--single .format-quote.qodef-blog-item .qodef-e-info.qodef-info--top {
    margin-top: 26px;
}
#qodef-page-comments {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 82px;
}
body:not([class*="trousseau-core"]) #qodef-page-comments {
    margin-top: 0;
}
body:not([class*="trousseau-core"]) #qodef-page-comments .comment-reply-title {
    margin-top: 11px;
}
#qodef-page-comments .qodef-page-comments-not-found {
    margin: 0;
}
#qodef-page-comments-list {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
body:not([class*="trousseau-core"]) #qodef-page-comments-list {
    margin-bottom: 79px;
}
#qodef-page-comments-list .qodef-m-title {
    margin: 53px 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-m-comments > .qodef-comment-item .comment-respond {
    margin-top: 41px;
    margin-bottom: 97px;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond .comment-reply-title {
    margin: 0;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond .comment-reply-title small {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    font-family: Muli, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 13px;
    text-transform: uppercase;
    color: #000;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond p {
    margin: 5px 0 0;
    position: relative;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond p.comment-notes,
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond p.logged-in-as {
    font-size: 15px;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond .comment-form-cookies-consent {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 9px;
    margin-bottom: 39px;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond .comment-form-cookies-consent > * {
    margin: 0;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond .comment-form-cookies-consent input[type="checkbox"] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 1px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item .comment-respond .comment-form-cookies-consent label {
    font-family: Muli, sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
}
#qodef-page-comments-list .qodef-m-comments p.qodef-e-title {
    font-family: Muli, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 20px;
    text-transform: uppercase;
    color: #000;
    display: inline-block;
}
#qodef-page-comments-list .qodef-m-comments p.qodef-e-date {
    display: inline-block;
}
#qodef-page-comments-list .qodef-comment-item {
    margin: 40px 0 0;
    padding: 0;
}
#qodef-page-comments-list .qodef-comment-item .children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 89px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 40px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-image img {
    display: block;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-content {
    border: 1px solid #ededed;
    position: relative;
    padding: 16px 33px 12px;
    width: 100%;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-content:before {
    content: "";
    display: inline-block;
    background: url(../img/arrow.html) center center no-repeat;
    width: 26px;
    height: 30px;
    position: absolute;
    top: 21px;
    left: -26px;
}
#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;
    margin-left: 1px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-date a,
#qodef-page-comments-list .qodef-comment-item .qodef-e-date span {
    color: #868686;
    font-family: Muli, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-date a:hover,
#qodef-page-comments-list .qodef-comment-item .qodef-e-date span:hover {
    color: #000;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-text {
    margin: 17px 0 1px;
    padding-bottom: 4px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-text p {
    margin: 0;
    letter-spacing: 0;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-text img {
    margin-top: 5px;
    margin-bottom: 5px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-links {
    margin: 17px 0 1px;
}
#qodef-page-comments-list .qodef-comment-item .qodef-e-links > * {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    font-family: Muli, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 13px;
    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-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: 90px 0 0;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-comment:after {
    content: "\e802";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2e2e2e;
    position: absolute;
    right: 19px;
    bottom: 37px;
}
body:not([class*="trousseau-core"]) #qodef-page-comments-form .qodef-comment-form .comment-form-comment:after {
    content: "";
    display: inline-block;
    background: url(../img/lnr-pencil-gray.html) center center no-repeat;
    width: 20px;
    height: 28px;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-author:after {
    content: "\e82a";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2e2e2e;
    position: absolute;
    right: 17px;
    bottom: 37px;
}
body:not([class*="trousseau-core"]) #qodef-page-comments-form .qodef-comment-form .comment-form-author:after {
    content: "";
    display: inline-block;
    background: url(../img/lnr-user-gray.html) center center no-repeat;
    width: 20px;
    height: 28px;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-email:after {
    content: "\e818";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2e2e2e;
    position: absolute;
    right: 19px;
    bottom: 36px;
}
body:not([class*="trousseau-core"]) #qodef-page-comments-form .qodef-comment-form .comment-form-email:after {
    content: "";
    display: inline-block;
    background: url(../img/lnr-envelope-gray.html) center center no-repeat;
    width: 20px;
    height: 28px;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-url:after {
    content: "\e86b";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2e2e2e;
    position: absolute;
    right: 20px;
    bottom: 37px;
}
body:not([class*="trousseau-core"]) #qodef-page-comments-form .qodef-comment-form .comment-form-url:after {
    content: "";
    display: inline-block;
    background: url(../img/lnr-link-gray.html) center center no-repeat;
    width: 20px;
    height: 28px;
}
#qodef-page-comments-form .qodef-comment-form p {
    margin: 5px 0 0;
    position: relative;
}
#qodef-page-comments-form .qodef-comment-form p.comment-notes,
#qodef-page-comments-form .qodef-comment-form p.logged-in-as {
    font-size: 15px;
}
#qodef-page-comments-form .qodef-comment-form .form-submit .qodef-button {
    padding: 23px 36px 22px 38px;
    font-weight: 700;
}
#qodef-page-comments-form .qodef-comment-form .comment-notes {
    margin: 11px 0 43px;
    color: #868686;
    font-size: 15px;
    font-weight: 400;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 9px;
    margin-bottom: 39px;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent > * {
    margin: 0;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 1px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    visibility: hidden;
    width: 19px;
    height: 19px;
    cursor: pointer;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"]:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    position: absolute;
    left: 0;
    bottom: 0;
    visibility: visible;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"]:before {
    content: "";
    display: block;
    background: url(../img/check.html) center center no-repeat;
    background-size: 20px;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"] + label {
    margin: 0;
    padding-left: 8px;
    line-height: 1;
    cursor: pointer;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"]:checked:before {
    visibility: visible;
    opacity: 1;
}
#qodef-page-comments-form .qodef-comment-form .comment-form-cookies-consent label {
    font-family: Muli, sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
}
@media only screen and (max-width: 1024px) {
    #qodef-page-comments-form .qodef-grid.qodef-layout--columns.qodef-col-num--2 > .qodef-grid-inner > .qodef-grid-item {
        width: 100%;
    }
}
.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;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.qodef-filter--on.qodef--filter-loading .qodef-grid-inner {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}
.qodef-filter--on.qodef--filter-loading .qodef-m-pagination-spinner {
    bottom: calc(50% - 16px) !important;
}
.qodef-m-filter {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 40px;
}
.qodef-m-filter .qodef-m-filter-items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.qodef-m-filter .qodef-m-filter-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 27px;
    padding: 0 2px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 19px;
    line-height: 1.526em;
    letter-spacing: 0.2em;
}
.qodef-m-filter .qodef-m-filter-item.qodef--active,
.qodef-m-filter .qodef-m-filter-item:hover {
    background-color: #000;
    color: #fff;
}
#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.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item {
    width: 58%;
}
#qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:nth-child(2) {
    padding-left: 11.5%;
    padding-right: 13.5%;
}
#qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:first-child {
    width: 26%;
}
#qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:last-child {
    width: 16%;
}
@media only screen and (max-width: 1440px) {
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item {
        width: 50%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:nth-child(2) {
        padding-left: 4.5%;
        padding-right: 6.5%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:first-child {
        width: 30%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:last-child {
        width: 20%;
    }
}
@media only screen and (max-width: 1440px) and (max-width: 1194px) {
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:last-child {
        padding-right: 5px;
    }
}
@media only screen and (max-width: 1024px) {
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item {
        width: 100%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:nth-child(2) {
        padding: 48px 45% 43px 15px;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:first-child {
        width: 44%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:last-child {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item {
        width: 100%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:nth-child(2) {
        padding-right: 37%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:first-child {
        width: 50%;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:last-child {
        width: 100%;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:nth-child(2) {
        padding-right: 15px;
    }
    #qodef-page-footer.qodef--wide-column #qodef-page-footer-top-area .qodef-grid.qodef-col-num--3 .qodef-grid-item:first-child {
        width: 94%;
    }
}
#qodef-page-footer.qodef-skin--light .qodef-grid-item:first-child .widget_media_image a img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
#qodef-page-footer.qodef-skin--light p {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .widget.widget_nav_menu ul li a {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .widget.widget_nav_menu ul li a:hover {
    color: #fff !important;
}
#qodef-page-footer.qodef-skin--light #qodef-page-footer-top-area {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(237, 237, 237, 0.15);
}
#qodef-page-footer.qodef-skin--light #qodef-page-footer-top-area .qodef-custom-footer-text {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light #qodef-page-footer-bottom-area {
    background-color: #0a0a0a;
}
#qodef-page-footer.qodef-skin--light #qodef-page-footer-bottom-area .qodef-custom-footer-link-color {
    color: #fff !important;
}
#qodef-page-footer.qodef-skin--light #qodef-page-footer-bottom-area .qodef-custom-footer-link-color:hover {
    color: #cdcdcd !important;
}
#qodef-page-footer.qodef-skin--light #qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner {
    border-top: 1px solid rgba(237, 237, 237, 0.15);
}
#qodef-page-footer.qodef-skin--light .qodef-footer-list .qodef-footer-list-item a {
    color: #fff !important;
}
#qodef-page-footer.qodef-skin--light .widget .qodef-widget-title {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .widget.widget_trousseau_core_social_icons_group .qodef-icon-holder a {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .widget.widget_trousseau_core_social_icons_group .qodef-icon-holder a > span {
    color: #fff !important;
}
#qodef-page-footer.qodef-skin--light .widget.widget_trousseau_core_social_icons_group .qodef-icon-holder a:hover {
    color: #cdcdcd !important;
}
#qodef-page-footer.qodef-skin--light .widget.widget_trousseau_core_social_icons_group .qodef-icon-holder a:hover > span {
    color: #cdcdcd !important;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer input[type="email"] {
    border: 0;
    border-bottom: 1px solid #585858;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer input[type="email"]::-webkit-input-placeholder {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer input[type="email"]::-moz-placeholder {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer input[type="email"]:-ms-input-placeholder {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer input[type="email"]::-ms-input-placeholder {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer input[type="email"]::placeholder {
    color: #fff;
}
#qodef-page-footer.qodef-skin--light .qodef-cf-newsletter-footer .wpcf7-submit .qodef-m-text {
    color: #fff;
}
#qodef-page-footer .widget_search input[type="search"] {
    display: block;
    height: 43px;
    padding: 7px 20px;
    margin: 0;
    font-family: inherit;
    font-size: 15px;
    line-height: 29px;
    font-weight: 400;
    color: #6a6a6a;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
}
#qodef-page-footer .widget_search input[type="search"]::-webkit-input-placeholder {
    font-size: 15px;
    color: #6a6a6a;
}
#qodef-page-footer .widget_search input[type="search"]::-moz-placeholder {
    font-size: 15px;
    color: #6a6a6a;
}
#qodef-page-footer .widget_search input[type="search"]:-ms-input-placeholder {
    font-size: 15px;
    color: #6a6a6a;
}
#qodef-page-footer .widget_search input[type="search"]::-ms-input-placeholder {
    font-size: 15px;
    color: #6a6a6a;
}
#qodef-page-footer .widget_search input[type="search"]::placeholder {
    font-size: 15px;
    color: #6a6a6a;
}
#qodef-page-footer .widget_search button {
    right: 17px !important;
    color: #6a6a6a !important;
}
#qodef-page-footer .widget_search button svg {
    fill: currentColor !important;
    stroke: none !important;
}
#qodef-page-footer .qodef-custom-footer-link-color {
    color: #000 !important;
    line-height: 16px;
}
#qodef-page-footer .qodef-custom-footer-link-color:hover {
    color: #585858 !important;
}
#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_entries ul li {
    overflow: hidden;
}
#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_entries ul li a {
    display: inline;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 11px;
    font-weight: 600;
}
#qodef-page-footer .widget.widget_archive ul li a:after,
#qodef-page-footer .widget.widget_categories ul li a:after,
#qodef-page-footer .widget.widget_meta ul li a:after,
#qodef-page-footer .widget.widget_nav_menu ul li a:after,
#qodef-page-footer .widget.widget_pages ul li a:after,
#qodef-page-footer .widget.widget_recent_entries ul li a:after {
    content: "\e87a";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-size: inherit;
    left: -19px;
    line-height: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
}
body:not([class*="trousseau-core"]) #qodef-page-footer .widget.widget_archive ul li a:after,
body:not([class*="trousseau-core"]) #qodef-page-footer .widget.widget_categories ul li a:after,
body:not([class*="trousseau-core"]) #qodef-page-footer .widget.widget_meta ul li a:after,
body:not([class*="trousseau-core"]) #qodef-page-footer .widget.widget_nav_menu ul li a:after,
body:not([class*="trousseau-core"]) #qodef-page-footer .widget.widget_pages ul li a:after,
body:not([class*="trousseau-core"]) #qodef-page-footer .widget.widget_recent_entries ul li a:after {
    content: "";
    display: inline-block;
    background: url(../img/lnr-arrow-right-gray.html) center center no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
}
#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_entries ul li a:hover {
    color: #868686;
    padding-left: 22px;
}
#qodef-page-footer .widget.widget_archive ul li a:hover:after,
#qodef-page-footer .widget.widget_categories ul li a:hover:after,
#qodef-page-footer .widget.widget_meta ul li a:hover:after,
#qodef-page-footer .widget.widget_nav_menu ul li a:hover:after,
#qodef-page-footer .widget.widget_pages ul li a:hover:after,
#qodef-page-footer .widget.widget_recent_entries ul li a:hover:after {
    left: 0;
    -webkit-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
}
#qodef-page-footer .widget.widget_categories ul li {
    overflow: hidden;
}
#qodef-page-footer .widget.widget_categories ul li a {
    font-size: inherit;
}
#qodef-page-footer .widget.widget_categories ul li ul.children {
    margin-top: -1px;
    margin-bottom: 1px;
}
#qodef-page-footer .widget.widget_pages ul li ul.children {
    margin-top: -1px;
    margin-bottom: 1px;
}
body:not([class*="trousseau-core"]) #qodef-page-footer .widget {
    margin: 0 0 47px;
}
body:not([class*="trousseau-core"]) #qodef-page-footer .widget:last-child {
    margin-bottom: 0;
}
#qodef-page-footer-top-area {
    padding: 50px 0 30px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid #ededed;
}
#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-page-footer-bottom-area {
    padding: 0;
    background-color: #fff;
    border-top: 0 solid #7a7a7a;
    border-bottom: 1px solid #ededed;
}
#qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner {
    border-top: 1px solid #ededed;
    padding: 6px 0 8px;
}
#qodef-page-footer-bottom-area #qodef-page-footer-bottom-area-inner > .qodef-grid {
    vertical-align: middle;
}
#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-page-footer-bottom-area p {
    font-family: Muli, sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    line-height: 13px;
}
.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: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 22px 32px 22px 32px;
    color: #fff;
    background-color: #000;
    border-radius: 28px;
    cursor: pointer;
}
.wp-block-button .wp-block-button__link:hover {
    color: #fff;
    background-color: #2e2e2e;
}
.wp-block-button.is-style-outline {
    border: none;
}
.wp-block-button.is-style-outline .wp-block-button__link {
    color: #000;
    background-color: transparent;
    border: 2px solid #000;
    border-width: 1px;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.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: #fff !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: #fff !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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    color: #000;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    cursor: pointer;
}
.wp-block-file:hover {
    color: #000;
}
.wp-block-group.has-background {
    padding: 20px 30px;
}
.gallery-item img {
    border: 0 !important;
}
#qodef-page-header {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 100px;
    background-color: #fff;
    z-index: 100;
}
#qodef-page-header .qodef-header-logo-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100px;
    max-height: 100%;
}
#qodef-page-header .qodef-header-logo-link img {
    display: block;
    margin: auto 0;
    width: auto;
    max-height: 100%;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#qodef-page-header .qodef-header-logo-link.qodef-height--not-set img {
    max-height: 36.735%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#qodef-page-header-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 0 42px;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    max-height: 100%;
}
body:not([class*="trousseau-core"]) #qodef-page-mobile-header .qodef-mobile-header-logo-link {
    height: 20px;
}
#qodef-page-mobile-header .qodef-mobile-header-logo-link img {
    display: block;
    margin: auto;
    width: auto;
    max-height: 100%;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#qodef-page-mobile-header-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 0 42px;
}
@media only screen and (max-width: 480px) {
    #qodef-page-mobile-header-inner {
        padding: 0 30px;
    }
}
#qodef-page-mobile-header .qodef-mobile-header-opener.qodef-opener-icon .qodef-m-icon.qodef--close {
    top: 0;
    left: 0;
    visibility: hidden;
    position: absolute;
}
.qodef-mobile-header-opener {
    font-size: 20px;
    margin-left: 20px;
}
.qodef-mobile-header-opener svg.qodef--initial {
    display: block;
    width: 36px;
    height: auto;
    fill: currentColor;
    stroke: none;
}
.qodef-mobile-header-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 70px);
    background-color: #fff;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    z-index: 10;
}
.qodef-mobile-header-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.qodef-mobile-header-navigation ul li {
    position: relative;
    margin: 6px 0;
    padding: 0;
}
.qodef-mobile-header-navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 23px;
}
.qodef-mobile-header-navigation ul li a .qodef-menu-item-arrow {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 22px;
    height: auto;
    fill: currentColor;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.qodef-mobile-header-navigation ul li a .qodef-menu-item-arrow svg {
    fill: #fff;
}
.qodef-mobile-header-navigation ul li ul {
    display: none;
}
.qodef-mobile-header-navigation ul li ul.sub-menu {
    padding-top: 10px;
    margin-left: 18px;
    margin-bottom: -6px;
}
.qodef-mobile-header-navigation ul li ul.sub-menu li {
    margin: 0;
    padding: 3px 0;
}
.qodef-mobile-header-navigation ul li ul.sub-menu .sub-menu {
    padding-top: 4px;
    margin-bottom: -2px;
}
.qodef-mobile-header-navigation ul li.qodef--opened > a .qodef-menu-item-arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.qodef-mobile-header-navigation > ul {
    margin: 0 auto;
    padding: 15px 0;
}
body:not([class*="trousseau-core"]) .qodef-mobile-header-navigation > ul {
    padding: 15px 0 52px 0;
}
.qodef-mobile-header-navigation > ul > li > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-size: 11px;
    font-weight: 700;
    font-family: Muli, sans-serif;
    letter-spacing: 0.2em;
    line-height: 13px;
    text-transform: uppercase;
    margin: 20px 0 0;
}
.qodef-mobile-header-navigation .qodef-drop-down-second-inner > ul {
    padding: 10px 0 5px;
}
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: normal;
    margin: 5px 0;
    overflow: hidden;
    -webkit-transition: padding 0.3s ease !important;
    -o-transition: padding 0.3s ease !important;
    transition: padding 0.3s ease !important;
    padding-right: 20px;
    font-family: Muli, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0;
    color: #868686;
}
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li > a .qodef-menu-item-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li > a:before {
    content: "\e87a";
    font-family: Linearicons-Free;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    left: -20px;
}
body:not([class*="trousseau-core"]) .qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li > a:before {
    content: "";
    display: inline-block;
    background: url(../img/lnr-arrow-right-white.html) center center no-repeat;
    background-size: contain;
    width: 15px;
    height: 23px;
}
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li > a:hover {
    padding-left: 20px;
    padding-right: 0;
}
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li > a:hover:before {
    left: 0;
}
.qodef-header-navigation {
    height: 100%;
}
.qodef-header-navigation ul {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}
.qodef-header-navigation ul li {
    position: relative;
    margin: 0;
    padding: 0;
}
.qodef-header-navigation ul li a .qodef-menu-item-arrow {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 22px;
    height: auto;
    fill: currentColor;
}
.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: 250px;
    margin: 0;
    padding: 22px 0 23px 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
}
body:not([class*="trousseau-core"]) .qodef-header-navigation ul li.qodef-menu-item--narrow ul {
    width: 270px;
    left: -33px;
}
.qodef-header-navigation ul li.qodef-menu-item--narrow ul li {
    padding: 0 33px;
}
.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: -25px;
    left: 100%;
}
.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right {
    left: auto;
    right: -33px;
    text-align: right;
}
body:not([class*="trousseau-core"]) .qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right {
    left: auto;
    right: -33px;
}
.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right li a .qodef-menu-item-arrow {
    left: 0;
    right: auto;
    padding-bottom: 1px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.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;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
.qodef-header-navigation > ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}
.qodef-header-navigation > ul > li {
    height: 100%;
    margin: 0 19px;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-size: 13px;
    font-weight: 700;
    font-family: Muli, sans-serif;
    letter-spacing: 0.1em;
    line-height: 13px;
    text-transform: uppercase;
    color: #000;
}
.qodef-header-navigation > ul > li > a .qodef-menu-item-arrow {
    display: none;
}
.qodef-header-navigation > ul > li > a:hover {
    color: #585858;
}
.qodef-header-navigation > ul > li.current-menu-ancestor > a,
.qodef-header-navigation > ul > li.current-menu-item > a {
    color: #000000;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul li > a {
    font-family: Muli, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0;
    color: #b2b2b2;
    -webkit-transition: color 0.4s ease-out !important;
    -o-transition: color 0.4s ease-out !important;
    transition: color 0.4s ease-out !important;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul li > a:hover {
    color: #fff;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: normal;
    margin: 5px 0;
    overflow: hidden;
    -webkit-transition: padding 0.3s ease !important;
    -o-transition: padding 0.3s ease !important;
    transition: padding 0.3s ease !important;
    padding-right: 20px;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a .qodef-menu-item-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a:before {
    content: "\e87a";
    font-family: Linearicons-Free;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    left: -20px;
}
body:not([class*="trousseau-core"]) .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a:before {
    content: "";
    display: inline-block;
    background: url(../img/lnr-arrow-right-white.html) center center no-repeat;
    background-size: contain;
    width: 15px;
    height: 23px;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a:first-child {
    margin-top: 3px;
}
.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: 20px;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: normal;
    margin: 5px 0;
    overflow: hidden;
    -webkit-transition: padding 0.3s ease !important;
    -o-transition: padding 0.3s ease !important;
    transition: padding 0.3s ease !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 20px;
    padding-right: 0;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a .qodef-menu-item-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a:before {
    content: "\e87a";
    font-family: Linearicons-Free;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: left 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81), right 0.25s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    content: "\e879";
    left: auto;
    right: -20px;
}
body:not([class*="trousseau-core"]) .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a:before {
    content: "";
    display: inline-block;
    background: url(../img/lnr-arrow-right-white.html) center center no-repeat;
    background-size: contain;
    width: 15px;
    height: 23px;
}
body:not([class*="trousseau-core"]) .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a:before {
    content: "";
    display: inline-block;
    background: url(../img/lnr-arrow-left-white.html) center center no-repeat;
    background-size: contain;
    width: 15px;
    height: 23px;
}
.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a:first-child {
    margin-top: 3px;
}
.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: 20px;
}
.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;
    margin: 0;
}
.qodef-m-pagination .qodef-m-pagination-item.qodef--next .qodef-icon-linear-icons,
.qodef-m-pagination .qodef-m-pagination-item.qodef--prev .qodef-icon-linear-icons {
    font-size: 13px;
}
.qodef-m-pagination.qodef--wp .nav-links {
    position: relative;
    display: block;
    text-align: center;
}
.qodef-m-pagination.qodef--wp .page-numbers {
    position: relative;
    margin: 0 1px;
    padding: 0 3px;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
}
.qodef-m-pagination.qodef--wp .page-numbers * {
    display: block;
    line-height: inherit;
    color: currentColor;
}
.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 {
    padding: 0;
}
.qodef-m-pagination.qodef--wp .page-numbers.next svg,
.qodef-m-pagination.qodef--wp .page-numbers.prev svg {
    position: relative;
    display: block;
    width: 13.6px;
    height: auto;
    fill: currentColor;
    stroke: none;
}
.qodef-m-pagination.qodef--wp .page-numbers.prev {
    margin-right: 0;
}
.qodef-m-pagination.qodef--wp .page-numbers.next {
    margin-left: 0;
}
.qodef-m-pagination.qodef--wp .page-numbers.current,
.qodef-m-pagination.qodef--wp .page-numbers:hover {
    color: #000;
}
.qodef-m-pagination.qodef--wp .page-numbers.next .qodef-icon-linear-icons,
.qodef-m-pagination.qodef--wp .page-numbers.prev .qodef-icon-linear-icons {
    font-size: 13px;
}
.qodef-m-pagination.qodef--wp .page-numbers.next:hover .qodef-icon-linear-icons,
.qodef-m-pagination.qodef--wp .page-numbers.prev:hover .qodef-icon-linear-icons {
    color: #000;
}
.qodef-m-pagination.qodef--wp .page-numbers.current,
.qodef-m-pagination.qodef--wp .page-numbers:hover {
    color: #000;
}
.qodef-m-pagination.qodef--standard {
    margin: 49px 0 0;
}
@media only screen and (max-width: 1024px) {
    .qodef-m-pagination.qodef--standard {
        margin: 49px 0 55px;
    }
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-items {
    position: relative;
    display: block;
    text-align: center;
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item {
    position: relative;
    margin: 0 1px;
    padding: 0 3px;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item * {
    display: block;
    line-height: inherit;
    color: currentColor;
}
.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 {
    padding: 0;
}
.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;
    display: block;
    width: 13.6px;
    height: auto;
    fill: currentColor;
    stroke: none;
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev {
    margin-right: 0;
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next {
    margin-left: 0;
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--active,
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:hover {
    color: #000;
}
.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef-prev--hidden {
    margin-left: 0;
}
.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-pagination--on .qodef-m-pagination-spinner {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 32px;
    height: auto;
    fill: #000;
    stroke: none;
    visibility: hidden;
    z-index: -1;
    -webkit-animation: qode-rotate 2s infinite linear;
    animation: qode-rotate 2s infinite linear;
}
.qodef-pagination--on.qodef-pagination-type--standard .qodef-grid-inner {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.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-m-pagination-spinner {
    position: absolute;
    bottom: 10px;
    left: calc(50% - 16px);
}
.qodef-pagination--on.qodef-pagination-type--load-more.qodef--loading .qodef-m-pagination-spinner {
    visibility: visible;
    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-m-pagination-spinner {
    visibility: visible;
    z-index: 1;
}
.qodef-single-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    width: 100%;
    margin: 15px 0 0 0;
    clear: both;
}
.qodef-single-links .qodef-m-single-links-title {
    display: none;
    margin-right: 6px;
    margin-top: 7px;
}
.qodef-single-links a,
.qodef-single-links > span:not(.qodef-m-single-links-title) {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 7px 0 7px;
    color: #868686;
    font-size: 15px;
    line-height: 23px;
    margin-top: 7px;
    left: -7px;
}
.qodef-single-links a:last-child,
.qodef-single-links > span:not(.qodef-m-single-links-title):last-child {
    margin-right: 0;
}
.qodef-single-links a:hover {
    color: #000;
}
.qodef-single-links > span:not(.qodef-m-single-links-title) {
    color: #000;
}
.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;
    font-size: 15px;
}
.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;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #000;
    background-color: transparent;
    border: 0;
    width: auto;
}
.qodef-search .qodef-search-form .qodef-search-form-button:hover {
    color: #000;
}
.qodef-search .qodef-search-form .qodef-search-form-button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
.qodef-search .qodef-search-form .qodef-search-form-button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
.qodef-search .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.qodef-search .qodef-search-form-inner .qodef-search-form-button .qodef-icon-linear-icons {
    top: -1px;
}
.qodef-search article {
    margin-bottom: 30px;
}
.qodef-search article:last-child {
    margin-bottom: 0;
}
.qodef-search article .qodef-e-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.qodef-search article .qodef-e-inner > * {
    width: 100%;
}
.qodef-search article .qodef-e-inner .qodef-e-image {
    -ms-flex-preferred-size: 180px;
    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;
}
@media only screen and (max-width: 1024px) {
    #qodef-page-sidebar {
        margin-bottom: 30px;
    }
}
.qodef-page-title {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 70px;
    background-color: #faf5f2;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.qodef-page-title .qodef-m-title {
    margin: 0;
}
.widget:last-child {
    margin-bottom: 0 !important;
}
.widget .qodef-widget-title a {
    color: inherit;
}
.widget ul:not(.qodef-shortcode-list) {
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget ul:not(.qodef-shortcode-list) li:last-child {
    margin-bottom: 0;
}
.widget ul:not(.qodef-shortcode-list) li ul {
    margin-left: 1em;
}
.widget select {
    max-width: 100%;
    width: 100%;
}
.widget .select2 {
    margin-bottom: 0;
}
.widget[class*="_search"] .qodef-search-form-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.widget[class*="_search"] input {
    margin: 0;
    padding-right: 28px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
    padding-bottom: 0;
    padding-top: 0;
    border-bottom: 1px solid #b7b7b7;
}
.widgetx[class*="_search"] input {
    margin: 0;
    padding-right: 28px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
    padding-bottom: 0;
    padding-top: 0;
    border-bottom: 0px solid #b7b7b7;
}
.widget[class*="_search"] input::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
}
.widget[class*="_search"] input::-moz-placeholder {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
}
.widget[class*="_search"] input:-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
}
.widget[class*="_search"] input::-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
}
.widget[class*="_search"] input::placeholder {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
}
.widget .tagcloud a {
    display: inline-block;
    font-family: inherit;
    font-size: 15px !important;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin: 0 8px 11px 0;
    position: relative;
    text-transform: capitalize;
    vertical-align: top;
}
.widget.widget_trousseau_core_social_share .qodef-social-share ul li a {
    font-size: 22px;
    color: #000;
}
.widget.widget_trousseau_core_blog_list {
    margin: 0 0 72px;
}
.widget.widget_trousseau_core_blog_list .qodef-widget-title {
    margin: 0 0 22px;
}
.widget.widget_trousseau_core_blog_list .qodef-e-info-category {
    margin-bottom: 7px;
}
.widget.widget_trousseau_core_blog_list .qodef-e-info-category a {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0;
    color: #868686;
}
.widget.widget_trousseau_core_blog_list p.qodef-e-title {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 20px;
    padding-bottom: 4px;
}
.widget.widget_trousseau_core_blog_list p.qodef-e-title a {
    color: #000 !important;
}
.widget.widget_trousseau_core_blog_list p.qodef-e-title a:hover {
    color: #6a6a6a !important;
}
.widget.widget_archive,
.widget.widget_categories,
.widget.widget_meta,
.widget.widget_pages,
.widget.widget_recent_entries {
    margin: 0 0 52px;
}
.widget.widget_archive ul li,
.widget.widget_categories ul li,
.widget.widget_meta ul li,
.widget.widget_pages ul li,
.widget.widget_recent_entries ul li {
    margin: 0 0 -1px !important;
}
.widget.widget_archive ul li a,
.widget.widget_categories ul li a,
.widget.widget_meta ul li a,
.widget.widget_pages ul li a,
.widget.widget_recent_entries ul li a {
    letter-spacing: 0;
    color: #868686;
    line-height: 35px;
}
.widget.widget_recent_comments {
    line-height: 1.45;
}
.widget.widget_recent_comments ul li {
    margin: 0 0 8px !important;
}
.widget.widget_recent_comments ul li:last-child {
    margin-bottom: 0 !important;
}
.widget.widget_recent_comments .comment-author-link {
    display: block;
    font-style: italic;
}
.widget.widget_recent_comments .comment-author-link a {
    color: #585858 !important;
}
.widget.widget_recent_comments li.recentcomments > a {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.widget.widget_archive .select2-container--default {
    margin: 15px 0 10px 0;
}
.widget.widget_nav_menu ul li {
    margin: 0 0 6px !important;
}
.widget.widget_nav_menu ul li a:hover {
    color: #868686 !important;
}
.widget.widget_nav_menu ul .qodef-menu-item-arrow {
    display: none;
}
.widget.widget_categories ul li a {
    font-size: 15px;
}
.widget.widget_categories .select2-container--default {
    margin: 15px 0 10px 0;
}
.widget.widget_media_image {
    margin-bottom: 0;
}
.widget.widget_media_image a {
    display: inline-block;
    vertical-align: top;
}
.widget.widget_media_image img {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.widget.widget_text img {
    display: block;
}
.widget.widget_calendar {
    width: 100%;
}
.widget.widget_calendar table {
    table-layout: fixed;
}
.widget.widget_calendar table td {
    padding: 5px 5px;
    text-align: center;
}
.widget.widget_calendar table td a {
    font-weight: 700;
}
.widget.widget_calendar caption {
    margin-bottom: 5px;
    margin-top: 4px;
}
.widget.widget_calendar nav {
    margin-top: 2px;
}
.widget.widget_calendar #today a {
    color: inherit;
}
.widget.widget_calendar #today a:hover {
    color: currentColor;
}
.widget.widget_calendar tfoot td,
.widget.widget_calendar tfoot tr {
    border: 0;
}
.widget.widget_rss .qodef-widget-title a {
    color: #000 !important;
}
.widget.widget_rss ul li {
    margin: 0 0 25px 0 !important;
}
.widget.widget_rss ul li:last-child {
    margin: 0 !important;
}
.widget.widget_rss ul .rsswidget {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    display: block;
}
.widget.widget_rss ul .rssSummary {
    margin-top: 8px;
}
.widget.widget_rss ul cite {
    display: block;
    margin-top: 8px;
}
.widget {
    margin: 0 0 17px;
}
.widget .qodef-widget-title {
    margin: 0 0 20px;
}
.widget .qodef-widget-title a:hover {
    color: #000;
}
.widget a {
    color: #6a6a6a;
}
.widget a:hover {
    color: #000;
}
.widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px;
}
.widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
}
.widget select {
    margin: 8.5px 0 0 0;
}
.widget[class*="_search"] .qodef-widget-title {
    margin-bottom: 28.5px;
}
.widget[class*="_search"] button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #000;
    background-color: transparent;
    border: 0;
}
.widget[class*="_search"] button:hover {
    color: #6a6a6a;
}
.widget[class*="_search"] button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
.widget[class*="_search"] button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
.widget .tagcloud a {
    color: #6a6a6a;
}
.widget .tagcloud a:hover {
    color: #000;
}
.widget.widget_media_image .qodef-widget-title {
    margin-bottom: 28.5px;
}
.widget.widget_calendar #today {
    background-color: #000;
}
.widget.widget_calendar tfoot a {
    color: #6a6a6a;
}
.widget.widget_calendar tfoot a:hover {
    color: #000;
}
#qodef-top-area .widget {
    margin: 0 0 0;
    color: #fff;
}
#qodef-top-area .widget .qodef-widget-title {
    margin: 0 0 20px;
    color: #fff;
}
#qodef-top-area .widget .qodef-widget-title a:hover {
    color: #000;
}
#qodef-top-area .widget a {
    color: #fff;
}
#qodef-top-area .widget a:hover {
    color: #000;
}
#qodef-top-area .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px;
}
#qodef-top-area .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
}
#qodef-top-area .widget select {
    margin: 8.5px 0 0 0;
}
#qodef-top-area .widget[class*="_search"] .qodef-widget-title {
    margin-bottom: 28.5px;
}
#qodef-top-area .widget[class*="_search"] button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #000;
    background-color: transparent;
    border: 0;
}
#qodef-top-area .widget[class*="_search"] button:hover {
    color: #6a6a6a;
}
#qodef-top-area .widget[class*="_search"] button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
#qodef-top-area .widget[class*="_search"] button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
#qodef-top-area .widget .tagcloud a {
    color: #fff;
}
#qodef-top-area .widget .tagcloud a:hover {
    color: #000;
}
#qodef-top-area .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 28.5px;
}
#qodef-top-area .widget.widget_calendar #today {
    background-color: #000;
}
#qodef-top-area .widget.widget_calendar tfoot a {
    color: #fff;
}
#qodef-top-area .widget.widget_calendar tfoot a:hover {
    color: #000;
}
#qodef-page-footer .widget {
    margin: 0 0 10px;
    color: #868686;
}
#qodef-page-footer .widget .qodef-widget-title {
    margin: 0 0 27px;
    color: #000;
}
#qodef-page-footer .widget .qodef-widget-title a:hover {
    color: #868686;
}
#qodef-page-footer .widget a {
    color: #868686;
}
#qodef-page-footer .widget a:hover {
    color: #868686;
}
#qodef-page-footer .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px;
}
#qodef-page-footer .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
}
#qodef-page-footer .widget select {
    margin: 8.5px 0 0 0;
}
#qodef-page-footer .widget[class*="_search"] .qodef-widget-title {
    margin-bottom: 35.5px;
}
#qodef-page-footer .widget[class*="_search"] button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #868686;
    background-color: transparent;
    border: 0;
}
#qodef-page-footer .widget[class*="_search"] button:hover {
    color: #868686;
}
#qodef-page-footer .widget[class*="_search"] button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
#qodef-page-footer .widget[class*="_search"] button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
#qodef-page-footer .widget .tagcloud a {
    color: #868686;
}
#qodef-page-footer .widget .tagcloud a:hover {
    color: #868686;
}
#qodef-page-footer .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 35.5px;
}
#qodef-page-footer .widget.widget_calendar #today {
    color: #fff;
    background-color: #868686;
}
#qodef-page-footer .widget.widget_calendar tfoot a {
    color: #868686;
}
#qodef-page-footer .widget.widget_calendar tfoot a:hover {
    color: #868686;
}
#qodef-side-area .widget {
    margin: 0 0 17px;
    color: #fff;
}
#qodef-side-area .widget .qodef-widget-title {
    margin: 0 0 20px;
    color: #fff;
}
#qodef-side-area .widget .qodef-widget-title a:hover {
    color: #000;
}
#qodef-side-area .widget a {
    color: #fff;
}
#qodef-side-area .widget a:hover {
    color: #000;
}
#qodef-side-area .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 10px;
}
#qodef-side-area .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 10px;
}
#qodef-side-area .widget select {
    margin: 8.5px 0 0 0;
}
#qodef-side-area .widget[class*="_search"] .qodef-widget-title {
    margin-bottom: 28.5px;
}
#qodef-side-area .widget[class*="_search"] button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #000;
    background-color: transparent;
    border: 0;
}
#qodef-side-area .widget[class*="_search"] button:hover {
    color: #6a6a6a;
}
#qodef-side-area .widget[class*="_search"] button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
#qodef-side-area .widget[class*="_search"] button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
#qodef-side-area .widget .tagcloud a {
    color: #fff;
}
#qodef-side-area .widget .tagcloud a:hover {
    color: #000;
}
#qodef-side-area .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 28.5px;
}
#qodef-side-area .widget.widget_calendar #today {
    background-color: #000;
}
#qodef-side-area .widget.widget_calendar tfoot a {
    color: #fff;
}
#qodef-side-area .widget.widget_calendar tfoot a:hover {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget {
    margin: 0 0 17px;
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget .qodef-widget-title {
    margin: 0 0 20px;
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget .qodef-widget-title a:hover {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget a {
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget a:hover {
    color: #000;
}
.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 ul {
    margin-top: 10px;
}
.qodef-mega-menu-widget-holder .widget select {
    margin: 8.5px 0 0 0;
}
.qodef-mega-menu-widget-holder .widget[class*="_search"] .qodef-widget-title {
    margin-bottom: 28.5px;
}
.qodef-mega-menu-widget-holder .widget[class*="_search"] button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #000;
    background-color: transparent;
    border: 0;
}
.qodef-mega-menu-widget-holder .widget[class*="_search"] button:hover {
    color: #6a6a6a;
}
.qodef-mega-menu-widget-holder .widget[class*="_search"] button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
.qodef-mega-menu-widget-holder .widget[class*="_search"] button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
.qodef-mega-menu-widget-holder .widget .tagcloud a {
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget .tagcloud a:hover {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 28.5px;
}
.qodef-mega-menu-widget-holder .widget.widget_calendar #today {
    background-color: #000;
}
.qodef-mega-menu-widget-holder .widget.widget_calendar tfoot a {
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget.widget_calendar tfoot a:hover {
    color: #000;
}
#qodef-page-sidebar .widget {
    margin: 0 0 17px;
}
#qodef-page-sidebar .widget .qodef-widget-title {
    margin: 0 0 22px;
}
#qodef-page-sidebar .widget .qodef-widget-title a:hover {
    color: #000;
}
#qodef-page-sidebar .widget a {
    color: #6a6a6a;
}
#qodef-page-sidebar .widget a:hover {
    color: #000;
}
#qodef-page-sidebar .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 6px;
}
#qodef-page-sidebar .widget ul:not(.qodef-shortcode-list) li ul {
    margin-top: 6px;
}
#qodef-page-sidebar .widget select {
    margin: 8.5px 0 0 0;
}
#qodef-page-sidebar .widget[class*="_search"] .qodef-widget-title {
    margin-bottom: 30.5px;
}
#qodef-page-sidebar .widget[class*="_search"] button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #000;
    background-color: transparent;
    border: 0;
}
#qodef-page-sidebar .widget[class*="_search"] button:hover {
    color: #6a6a6a;
}
#qodef-page-sidebar .widget[class*="_search"] button svg {
    display: block;
    width: 15px;
    height: auto;
    fill: none;
    stroke: currentColor;
}
#qodef-page-sidebar .widget[class*="_search"] button > .qodef-icon-linear-icons {
    font-size: 15px;
    top: -6px;
    position: relative;
}
#qodef-page-sidebar .widget .tagcloud a {
    color: #6a6a6a;
}
#qodef-page-sidebar .widget .tagcloud a:hover {
    color: #000;
}
#qodef-page-sidebar .widget.widget_media_image .qodef-widget-title {
    margin-bottom: 30.5px;
}
#qodef-page-sidebar .widget.widget_calendar #today {
    background-color: #000;
}
#qodef-page-sidebar .widget.widget_calendar tfoot a {
    color: #6a6a6a;
}
#qodef-page-sidebar .widget.widget_calendar tfoot a:hover {
    color: #000;
}
.qodef-woo-product-list .qodef-woo-product-image .qodef-woo-product-mark {
    right: initial;
    left: 0;
}
#qodef-woo-page .qodef-woo-product-mark,
.qodef-woo-shortcode .qodef-woo-product-mark {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 7px 5px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 13px;
    color: #000;
    background-color: #fff;
    z-index: 5;
    width: 45px;
    text-transform: uppercase;
}
#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;
}
#qodef-woo-page .qodef-woo-ratings .qodef-m-star,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star {
    color: #000;
}
#qodef-woo-page .qodef-woo-ratings .qodef-m-star svg,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star svg {
    display: inline-block;
    margin-right: 4px;
    width: 20px;
    height: auto;
    fill: none;
    stroke: none;
}
#qodef-woo-page .qodef-woo-ratings .qodef-m-star svg .qodef-empty-star-fill,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star svg .qodef-empty-star-fill {
    fill: currentColor;
}
#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 .qodef-woo-ratings .qodef-m-star.qodef--active svg,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star.qodef--active svg {
    fill: currentColor;
}
#qodef-woo-page .qodef-woo-ratings .qodef-m-star.qodef--active svg .qodef-empty-star-fill,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star.qodef--active svg .qodef-empty-star-fill {
    fill: none;
}
#qodef-woo-page .price,
.qodef-woo-shortcode .price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 1em;
    margin: 4px 0 0;
}
#qodef-woo-page .price del,
.qodef-woo-shortcode .price del {
    margin-right: 10px;
    opacity: 0.39;
}
#qodef-woo-page .price ins,
.qodef-woo-shortcode .price ins {
    text-decoration: none;
}
#qodef-woo-page .added_to_cart,
#qodef-woo-page .button:not(.add_to_wishlist),
.qodef-woo-shortcode .added_to_cart,
.qodef-woo-shortcode .button:not(.add_to_wishlist) {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 15px 21px 15px 21px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #000;
}
#qodef-woo-page .added_to_cart:hover,
#qodef-woo-page .button:not(.add_to_wishlist):hover,
.qodef-woo-shortcode .added_to_cart:hover,
.qodef-woo-shortcode .button:not(.add_to_wishlist):hover {
    color: #fff;
    background-color: #2e2e2e;
}
#qodef-woo-page .added_to_cart.added,
#qodef-woo-page .button:not(.add_to_wishlist).added,
.qodef-woo-shortcode .added_to_cart.added,
.qodef-woo-shortcode .button:not(.add_to_wishlist).added {
    display: none;
}
.qodef-woo-shortcode.qodef-woo-product-list.qodef-swiper-container {
    padding-bottom: 2px;
}
.qodef-woo-shortcode.qodef-woo-product-list.qodef-swiper-container .swiper-pagination-bullets {
    bottom: -8px !important;
}
#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: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.woocommerce-page div.woocommerce .woocommerce-error,
.woocommerce-page div.woocommerce .woocommerce-info,
.woocommerce-page div.woocommerce .woocommerce-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 21px 12px 20px;
    margin-bottom: 30px;
    border: 1px solid #7a7a7a;
}
.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: 20px 27px;
    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: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    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__caption__center,
.woocommerce-page .pswp__counter {
    color: #fff;
}
.woocommerce-page .woocommerce-ResetPassword.lost_reset_password p {
    margin: 4px 0;
}
.woocommerce-page .woocommerce-ResetPassword.lost_reset_password p:first-child {
    margin-bottom: 17px;
}
.woocommerce-page .woocommerce-ResetPassword.lost_reset_password #user_login {
    margin-top: 0;
    max-width: 400px;
}
.woocommerce .woocommerce-form-track-order p {
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    color: #6a6a6a;
}
.woocommerce .woocommerce-form-track-order p:first-child {
    margin-bottom: 19px;
}
.woocommerce .woocommerce-form-track-order p.form-row {
    position: relative;
    margin-bottom: 14px;
}
.woocommerce .woocommerce-form-track-order p.form-row .input-text {
    margin: 0;
}
.woocommerce .woocommerce-form-track-order p.form-row .qodef-icon-linear-icons {
    position: absolute;
    right: 23px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #2e2e2e;
}
.woocommerce .woocommerce-form-track-order p.form-row .button {
    margin-top: 26px;
    padding: 23px 52px 22px;
}
#qodef-woo-page.qodef--cart .shop_table td,
#qodef-woo-page.qodef--cart .shop_table th {
    text-align: center;
}
@media only screen and (max-width: 768px) {
    #qodef-woo-page.qodef--cart .shop_table td,
    #qodef-woo-page.qodef--cart .shop_table th {
        padding: 20px 12px;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table td,
    #qodef-woo-page.qodef--cart .shop_table th {
        padding: 20px 0;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table th {
        font-size: 13px;
    }
}
@media screen and (max-width: 320px) {
    #qodef-woo-page.qodef--cart .shop_table th {
        letter-spacing: 0;
    }
}
#qodef-woo-page.qodef--cart .shop_table th.product-name {
    text-align: left;
    padding-left: 0;
}
#qodef-woo-page.qodef--cart .shop_table td.product-price {
    border-left: 1px solid #7a7a7a;
    border-right: 1px solid #7a7a7a;
}
#qodef-woo-page.qodef--cart .shop_table td.product-subtotal {
    border-left: 1px solid #7a7a7a;
    border-right: 1px solid #7a7a7a;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table td.product-subtotal .woocommerce-Price-amount {
        font-size: 13px;
    }
}
#qodef-woo-page.qodef--cart .shop_table td.product-remove {
    width: 80px;
    padding-left: 27px;
    text-align: center;
    border-left: 1px solid #7a7a7a;
    border-right: 1px solid #7a7a7a;
}
@media only screen and (max-width: 768px) {
    #qodef-woo-page.qodef--cart .shop_table td.product-remove {
        padding-left: 12px;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table td.product-remove {
        padding-left: 3px;
    }
}
#qodef-woo-page.qodef--cart .shop_table td.product-remove a {
    display: inline-block;
    font-size: 0;
    width: 22px;
    height: 22px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table td.product-remove a {
        width: 18px;
        height: 18px;
    }
}
#qodef-woo-page.qodef--cart .shop_table td.product-remove a:before {
    content: "\e870";
    font-family: Linearicons-Free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 22px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table td.product-remove a:before {
        font-size: 18px;
    }
}
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail {
    width: 103px;
    padding-right: 8px;
}
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail a,
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail img {
    display: block;
    width: 100%;
}
#qodef-woo-page.qodef--cart .shop_table td.product-name {
    width: 215px;
    text-align: left;
    padding-left: 14px;
    padding-right: 25px;
    line-height: 20px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table td.product-name {
        padding-right: 3px;
    }
}
#qodef-woo-page.qodef--cart .shop_table td.product-name a {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 13px;
    line-height: 1.538em;
    letter-spacing: 0.2em;
    color: #000;
}
#qodef-woo-page.qodef--cart .shop_table td.product-quantity .qodef-quantity-buttons .qodef-quantity-input {
    line-height: 33px !important;
}
#qodef-woo-page.qodef--cart .shop_table td.product-quantity .qodef-quantity-label {
    display: 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    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: 8px 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 .shop_table .woocommerce-cart-form__cart-item .product-name .variation {
    display: inline-block;
    margin-top: 2px;
}
#qodef-woo-page.qodef--cart .shop_table .woocommerce-cart-form__cart-item .product-name .variation dd,
#qodef-woo-page.qodef--cart .shop_table .woocommerce-cart-form__cart-item .product-name .variation dt {
    font-size: 15px;
    display: inline-block;
    margin-left: 0;
    margin-bottom: 0;
}
#qodef-woo-page.qodef--cart .shop_table .woocommerce-cart-form__cart-item .product-name .variation dd p {
    display: inline-block;
}
#qodef-woo-page.qodef--cart .cart-collaterals .shop_table th {
    width: 20%;
    text-align: left;
}
#qodef-woo-page.qodef--cart .cart-collaterals .shop_table td {
    text-align: right;
    padding-right: 0;
}
#qodef-woo-page.qodef--cart .cart_totals,
#qodef-woo-page.qodef--cart .cross-sells {
    margin-top: 50px;
}
#qodef-woo-page.qodef--cart .cart_totals > h2,
#qodef-woo-page.qodef--cart .cross-sells > h2 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 3px;
}
#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: 20px;
}
#qodef-woo-page.qodef--cart .qodef-quantity-buttons .qodef-quantity-input {
    font-weight: 400;
}
.woocommerce-page div.woocommerce > .cart-empty {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: 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: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 15px 21px 15px 21px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #000;
}
.woocommerce-page div.woocommerce > .return-to-shop a:hover {
    color: #fff;
    background-color: #2e2e2e;
}
#qodef-woo-page.qodef--checkout .woocommerce-checkout-review-order-table .cart_item .product-name .variation dd,
#qodef-woo-page.qodef--checkout .woocommerce-checkout-review-order-table .cart_item .product-name .variation dt {
    font-size: 15px;
    display: inline-block;
    margin-left: 0;
    margin-bottom: 0;
}
#qodef-woo-page.qodef--checkout .woocommerce-checkout-review-order-table .cart_item .product-name .variation dd p {
    display: inline-block;
}
#qodef-woo-page.qodef--checkout form input[type="email"],
#qodef-woo-page.qodef--checkout form input[type="number"],
#qodef-woo-page.qodef--checkout form input[type="password"],
#qodef-woo-page.qodef--checkout form input[type="search"],
#qodef-woo-page.qodef--checkout form input[type="tel"],
#qodef-woo-page.qodef--checkout form input[type="text"],
#qodef-woo-page.qodef--checkout form input[type="url"],
#qodef-woo-page.qodef--checkout form textarea {
    border: 1px solid #707070;
    padding: 7.5px 20px;
    font-size: 15px;
}
#qodef-woo-page.qodef--checkout form input[type="email"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="number"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="password"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="search"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="tel"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="text"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="url"]::-webkit-input-placeholder,
#qodef-woo-page.qodef--checkout form textarea::-webkit-input-placeholder {
    font-size: 15px;
}
#qodef-woo-page.qodef--checkout form input[type="email"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form input[type="number"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form input[type="password"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form input[type="search"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form input[type="tel"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form input[type="text"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form input[type="url"]::-moz-placeholder,
#qodef-woo-page.qodef--checkout form textarea::-moz-placeholder {
    font-size: 15px;
}
#qodef-woo-page.qodef--checkout form input[type="email"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="number"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="password"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="search"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="tel"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="text"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="url"]:-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form textarea:-ms-input-placeholder {
    font-size: 15px;
}
#qodef-woo-page.qodef--checkout form input[type="email"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="number"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="password"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="search"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="tel"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="text"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form input[type="url"]::-ms-input-placeholder,
#qodef-woo-page.qodef--checkout form textarea::-ms-input-placeholder {
    font-size: 15px;
}
#qodef-woo-page.qodef--checkout form input[type="email"]::placeholder,
#qodef-woo-page.qodef--checkout form input[type="number"]::placeholder,
#qodef-woo-page.qodef--checkout form input[type="password"]::placeholder,
#qodef-woo-page.qodef--checkout form input[type="search"]::placeholder,
#qodef-woo-page.qodef--checkout form input[type="tel"]::placeholder,
#qodef-woo-page.qodef--checkout form input[type="text"]::placeholder,
#qodef-woo-page.qodef--checkout form input[type="url"]::placeholder,
#qodef-woo-page.qodef--checkout form textarea::placeholder {
    font-size: 15px;
}
#qodef-woo-page.qodef--checkout form textarea {
    height: 252px;
}
#qodef-woo-page.qodef--checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: block;
}
#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 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 20px;
}
#qodef-woo-page.qodef--checkout #order_review_heading {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 20px;
}
#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 #7a7a7a;
}
#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: 18px;
    left: 0;
    margin: 0;
}
#qodef-woo-page.qodef--checkout .wc_payment_methods label {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    margin: 0;
    cursor: pointer;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 21px 12px 20px;
    margin-bottom: 30px;
    border: 1px solid #7a7a7a;
    display: block;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-error a,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info a,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message a {
    margin-top: 12px;
}
@media only screen and (max-width: 680px) {
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-error,
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info,
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-error .button,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message .button {
    margin-top: -9px;
    float: right;
    padding: 15px 21px 15px 21px;
}
@media only screen and (max-width: 680px) {
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-error .button,
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info .button,
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message .button {
        margin-top: 12px;
    }
}
.woocommerce-account.qodef-my-account-forms--below .woocommerce {
    position: relative;
}
.woocommerce-account.qodef-my-account-forms--below .woocommerce > .qodef-woo-my-account-image-holder {
    position: absolute !important;
    right: 0 !important;
    width: 57.309% !important;
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce > .qodef-woo-my-account-image-holder {
        position: relative !important;
        width: 100% !important;
    }
}
.woocommerce-account.qodef-my-account-forms--below .woocommerce > .woocommerce-form-login {
    width: 31.7%;
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce > .woocommerce-form-login {
        width: 100%;
    }
}
.woocommerce-account.qodef-my-account-forms--below .woocommerce h2 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 30px;
    line-height: 1.267em;
    letter-spacing: 0.2em;
    padding-top: 11%;
    padding-bottom: 10px;
}
@media only screen and (max-width: 1440px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce h2 {
        padding-top: 7.5%;
    }
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce h2 {
        padding-top: 0;
    }
}
.woocommerce-account.qodef-my-account-forms--below .woocommerce .col2-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 34%;
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce .col2-set {
        width: 45%;
    }
}
@media only screen and (max-width: 768px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce .col2-set {
        width: 100%;
    }
}
.woocommerce-account.qodef-my-account-forms--below .woocommerce .qodef-woo-my-account-image-holder {
    position: absolute;
    right: 0;
    width: 57.309%;
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce .qodef-woo-my-account-image-holder {
        width: 47%;
    }
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below .woocommerce .qodef-woo-my-account-image-holder {
        position: relative;
        width: 100%;
        margin-bottom: 50px;
    }
}
.woocommerce-account.qodef-my-account-forms--below.logged-in .woocommerce .col2-set {
    width: 100%;
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account.qodef-my-account-forms--below.logged-in .woocommerce .col2-set {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .woocommerce-account.qodef-my-account-forms--below.logged-in .woocommerce .col2-set {
        width: 100%;
    }
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"],
.woocommerce-account form:not(.qodef-search-form) input[type="number"],
.woocommerce-account form:not(.qodef-search-form) input[type="password"],
.woocommerce-account form:not(.qodef-search-form) input[type="search"],
.woocommerce-account form:not(.qodef-search-form) input[type="tel"],
.woocommerce-account form:not(.qodef-search-form) input[type="text"],
.woocommerce-account form:not(.qodef-search-form) input[type="url"],
.woocommerce-account form:not(.qodef-search-form) textarea {
    border: 1px solid #707070;
    padding: 7.5px 20px;
    font-size: 15px;
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="number"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="password"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="search"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="tel"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="text"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="url"]::-webkit-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) textarea::-webkit-input-placeholder {
    font-size: 15px;
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="number"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="password"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="search"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="tel"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="text"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="url"]::-moz-placeholder,
.woocommerce-account form:not(.qodef-search-form) textarea::-moz-placeholder {
    font-size: 15px;
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="number"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="password"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="search"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="tel"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="text"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="url"]:-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) textarea:-ms-input-placeholder {
    font-size: 15px;
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="number"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="password"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="search"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="tel"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="text"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="url"]::-ms-input-placeholder,
.woocommerce-account form:not(.qodef-search-form) textarea::-ms-input-placeholder {
    font-size: 15px;
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="number"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="password"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="search"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="tel"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="text"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) input[type="url"]::placeholder,
.woocommerce-account form:not(.qodef-search-form) textarea::placeholder {
    font-size: 15px;
}
.woocommerce-account form:not(.qodef-search-form) input[type="email"],
.woocommerce-account form:not(.qodef-search-form) input[type="password"],
.woocommerce-account form:not(.qodef-search-form) input[type="text"] {
    padding-right: 45px;
}
.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 #7a7a7a;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li p {
    margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #7a7a7a;
}
.woocommerce-account .woocommerce-MyAccount-content {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 70%;
    float: left;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title h3 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title .edit {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 15px 21px 15px 21px;
    color: #fff;
    background-color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title .edit:hover {
    color: #fff;
    background-color: #2e2e2e;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details {
    margin: 30px 0 0;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details {
    margin: 48px 0 0;
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 20px;
    font-weight: 400;
}
.woocommerce-account .woocommerce-MyAccount-content .order-again {
    margin: 30px 0 0;
}
.woocommerce-account .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 22px 32px 22px 32px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #000;
}
.woocommerce-account .button:hover {
    color: #fff;
    background-color: #2e2e2e;
}
.woocommerce-account .woocommerce-form-login {
    position: relative;
}
.woocommerce-account .woocommerce-form-login #username {
    position: relative;
    background: url(../img/lnr-user.html);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: calc(100% - 16px) center;
}
.woocommerce-account .woocommerce-form-login #password {
    position: relative;
    background: url(../img/lnr-lock.html);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: calc(100% - 16px) center;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: inline-block;
    position: relative;
    margin-left: 0;
    margin-bottom: 26px;
    margin-top: 12px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox > span {
    vertical-align: top;
    cursor: pointer;
    position: relative;
    top: -2px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] {
    margin: 0 3px 0 0;
    width: 25px;
    height: 25px;
    border-radius: 0;
    position: relative;
    visibility: hidden;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"]:before {
    content: "";
    width: 23px;
    height: 23px;
    display: block;
    border: 1px solid #707070;
    visibility: visible;
    cursor: pointer;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"]:checked:before {
    background: url(../img/lnr-cross.html) center center no-repeat;
    background-size: contain;
}
.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword {
    margin: 0;
    position: absolute;
    bottom: 95px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
    .woocommerce-account .woocommerce-form-login .woocommerce-LostPassword {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }
}
.woocommerce-account .woocommerce-form-login p.form-row:not(.form-row-wide) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.woocommerce-account .woocommerce-form-register #reg_email {
    position: relative;
    background: url(../img/lnr-envelope.html);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: calc(100% - 16px) center;
}
.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text {
    margin-bottom: 31px;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset {
    padding: 0;
    margin: 0;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
    display: none;
}
.woocommerce-account.widget_search {
    margin-bottom: -4px !important;
}
.woocommerce-account.widget_search input {
    margin: 0;
    padding-right: 28px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
    font-family: Muli, sans-serif;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #b7b7b7 !important;
}
.woocommerce-account .qodef-popup-cf7 .qodef-popup-mail input {
    padding: 9px 0 10px 18px !important;
}
.woocommerce-account .qodef-cf-newsletter-footer .your-email input[type="email"] {
    padding: 16.5px 0 !important;
}
.woocommerce-order-received .woocommerce-order .woocommerce-thankyou-order-received {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    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 #7a7a7a;
}
.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: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 20px;
}
.woocommerce-order-received .woocommerce-order .woocommerce-customer-details {
    margin-top: 50px;
}
#qodef-woo-page .woocommerce-pagination {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 50px;
}
#qodef-woo-page .woocommerce-pagination .page-numbers {
    position: relative;
    margin: 0 1px;
    padding: 0 3px;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
}
#qodef-woo-page .woocommerce-pagination .page-numbers * {
    display: block;
    line-height: inherit;
    color: currentColor;
}
#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 {
    padding: 0;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.next svg,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg {
    position: relative;
    display: block;
    width: 13.6px;
    height: auto;
    fill: currentColor;
    stroke: none;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.prev {
    margin-right: 0;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.next {
    margin-left: 0;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.current,
#qodef-woo-page .woocommerce-pagination .page-numbers:hover {
    color: #000;
}
#qodef-woo-page .woocommerce-pagination .page-numbers {
    position: relative;
    margin: 0 1px;
    padding: 0 3px;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    font-family: Muli, sans-serif;
    letter-spacing: 0;
    line-height: 23px;
    color: #868686;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.next .qodef-icon-linear-icons,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev .qodef-icon-linear-icons {
    font-size: 13px;
    color: currentColor;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.next .qodef-pagination-wp,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev .qodef-pagination-wp {
    top: 1px;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.next:hover .qodef-icon-linear-icons,
#qodef-woo-page .woocommerce-pagination .page-numbers.prev:hover .qodef-icon-linear-icons {
    color: #000;
}
#qodef-woo-page .woocommerce-pagination .page-numbers.current,
#qodef-woo-page .woocommerce-pagination .page-numbers:hover {
    color: #000;
}
@media only screen and (max-width: 1024px) {
    #qodef-woo-page .woocommerce-pagination {
        margin-bottom: 51px;
    }
}
.qodef-woo-product-list {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.qodef-woo-product-list ul.products {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    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.33333%;
}
.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.66667%;
}
.qodef-woo-product-list ul.products.columns-7 > .product {
    width: 14.28571%;
}
.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--decent ul.products {
    margin: 0 -16px;
}
.qodef-woo-product-list.qodef-gutter--decent ul.products > .product {
    padding: 0 16px;
    margin: 0 0 32px;
}
.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--extra-large ul.products {
    margin: 0 -30px;
}
.qodef-woo-product-list.qodef-gutter--extra-large ul.products > .product {
    padding: 0 30px;
    margin: 0 0 60px;
}
.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 -62px;
}
.qodef-woo-product-list.qodef-gutter--gigantic ul.products > .product {
    padding: 0 62px;
    margin: 0 0 124px;
}
.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-image-inner > .button {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.qodef-woo-product-list .qodef-woo-product-inner:hover .qodef-woo-product-title {
    color: #585858;
}
.qodef-woo-product-list .qodef-woo-product-inner:hover .qodef-woo-product-title a {
    color: #585858;
}
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
.qodef-woo-product-list .qodef-woo-product-image-inner > .button {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(5%);
    -ms-transform: translateX(5%);
    transform: translateX(5%);
    z-index: 5;
}
.qodef-woo-product-list .qodef-woo-product-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 14px 0 24px;
    text-align: center;
}
.qodef-woo-product-list .qodef-woo-product-content .price {
    display: block !important;
}
.qodef-woo-product-list .qodef-woo-product-content .amount {
    font-size: 15px;
}
.qodef-woo-product-list .qodef-woo-product-title {
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}
.qodef-woo-product-list .qodef-woo-product-title a {
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}
.qodef-woo-product-list span.qodef-woo-product-title {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 13px;
    line-height: 1.538em;
    letter-spacing: 0.2em;
    color: #000;
}
.qodef-woo-product-list .qodef-woo-product-categories {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 1px;
    display: none;
}
.qodef-woo-product-list .qodef-woo-product-categories a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 11px;
    color: #6a6a6a;
    z-index: 3;
}
.qodef-woo-product-list .qodef-woo-product-categories a:hover {
    color: #000;
}
.qodef-woo-product-list .qodef-woo-product-categories .qodef-category-separator {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
    font-size: 12px;
}
.qodef-woo-product-list .qodef-woo-product-categories .qodef-category-separator:after {
    content: "/";
}
.qodef-woo-product-list .qodef-woo-ratings {
    margin-top: 9px;
}
.qodef-woo-product-list .woocommerce-LoopProduct-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.qodef-woo-product-list.qodef-grid.qodef-layout--masonry.qodef-items--fixed .qodef-grid-item img {
    height: auto;
}
.qodef-woo-product-list.qodef-swiper-container .qodef-woo-product-content {
    margin: 14px 0 41px;
}
.qodef-woo-product-list.qodef-item-layout--info-on-image .qodef-woo-product-inner:hover .qodef-woo-product-title {
    color: #fff;
}
.qodef-woo-product-list.qodef-item-layout--info-on-image .qodef-woo-product-inner:hover .qodef-woo-product-title a {
    color: #fff;
}
#qodef-woo-page .qodef-quantity-label {
    line-height: 43px;
    margin-right: 18px;
}
#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;
    font-size: 19px;
    font-family: inherit;
    font-weight: 600;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #6a6a6a;
    background-color: #fff;
    border: 1px solid #707070;
    border-left: 0;
    border-right: 0;
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input {
    position: relative;
    height: 43px;
    width: 31px;
    padding: 0;
    margin: 0 30px 0 30px;
    font-family: inherit;
    line-height: 47px;
    outline: 0;
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input[type="number"]::-webkit-inner-spin-button,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input {
        height: 33px;
        margin: 0 20px 0 20px;
        line-height: 33px;
    }
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus {
    position: absolute;
    right: 0;
    width: 30px;
    height: 43px;
    line-height: 46px;
    border-left: 0;
    cursor: pointer;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    z-index: 50;
    color: #2e2e2e;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus,
    #qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus {
        height: 33px;
        width: 20px;
        line-height: 36px;
    }
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus svg,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus svg {
    width: 15px;
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus:hover,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus:hover {
    color: #000;
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus {
    text-align: left;
    border-left: 0;
    border-right: 1px solid #707070;
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus {
    text-align: right;
    border-right: 0;
    border-left: 1px solid #707070;
    right: initial;
    left: 0;
}
.qodef-woo-results {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 13px;
}
.qodef-woo-results .woocommerce-result-count {
    font-size: 15px;
    color: #868686;
}
.qodef-woo-results .woocommerce-ordering {
    margin-left: auto;
}
.qodef-woo-results .woocommerce-ordering select {
    width: auto;
    min-width: 220px;
    margin: 0;
}
.qodef-woo-results .woocommerce-ordering .select2-container--default {
    margin: 0;
}
.qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection--single {
    color: #585858;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    padding-right: 0;
}
@media only screen and (max-width: 680px) {
    .qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection--single {
        padding-left: 0;
    }
}
.qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection__arrow {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection__arrow:before {
    font-weight: initial;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-grouped-product-list-item__label label {
        line-height: 1.1em !important;
    }
    #qodef-woo-page.qodef--single .woocommerce-grouped-product-list-item__label label a {
        font-size: 11px;
        line-height: 1em;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-grouped-product-list-item__price .woocommerce-Price-amount.amount {
        font-size: 15px;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-Tabs-panel--additional_information .shop_attributes th.woocommerce-product-attributes-item__label {
        width: 40% !important;
        display: table-cell;
    }
}
#qodef-woo-page.qodef--single .product-type-external form.cart {
    margin-top: 9px;
}
#qodef-woo-page.qodef--single .product-type-variable .woocommerce-grouped-product-list-item__quantity {
    padding-right: 30px !important;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .product-type-variable .woocommerce-grouped-product-list-item__quantity {
        padding-right: 15px !important;
    }
}
#qodef-woo-page.qodef--single .product-type-variable .woocommerce-grouped-product-list-item__quantity .button {
    line-height: 1.35em;
    padding: 12px 32px;
    margin-top: 0;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .product-type-variable .woocommerce-grouped-product-list-item__label label {
        line-height: 1.1em !important;
    }
    #qodef-woo-page.qodef--single .product-type-variable .woocommerce-grouped-product-list-item__label label a {
        font-size: 11px;
        line-height: 1em;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .product-type-variable .woocommerce-grouped-product-list-item__price .woocommerce-Price-amount.amount {
        font-size: 15px;
    }
}
#qodef-woo-page.qodef--single .qodef-woo-product-title {
    max-width: 75%;
}
#qodef-woo-page.qodef--single.qodef-hide-category--yes .product_meta .posted_in {
    display: none;
}
#qodef-woo-page.qodef--single .woocommerce-error,
#qodef-woo-page.qodef--single .woocommerce-info,
#qodef-woo-page.qodef--single .woocommerce-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 21px 12px 20px;
    margin-bottom: 30px;
    border: 1px solid #7a7a7a;
    display: block;
}
#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;
}
@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 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
#qodef-woo-page.qodef--single .woocommerce-error .button,
#qodef-woo-page.qodef--single .woocommerce-info .button,
#qodef-woo-page.qodef--single .woocommerce-message .button {
    margin-top: -9px;
    float: right;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-error .button,
    #qodef-woo-page.qodef--single .woocommerce-info .button,
    #qodef-woo-page.qodef--single .woocommerce-message .button {
        margin-top: 12px;
    }
}
#qodef-woo-page.qodef--single > .product {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .product_meta,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .product_meta,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .product_meta {
    margin-bottom: 51px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-social-share,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-social-share,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-social-share {
    display: block;
    text-align: center;
    margin-top: 50px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-accordion-tabs.qodef-behavior--accordion,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-accordion-tabs.qodef-behavior--accordion,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-accordion-tabs.qodef-behavior--accordion {
    overflow-anchor: none;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-accordion-tabs .qodef-accordion-content .qodef-accordion-content-inner > h2,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-accordion-tabs .qodef-accordion-content .qodef-accordion-content-inner > h2,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-accordion-tabs .qodef-accordion-content .qodef-accordion-content-inner > h2 {
    display: none;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-accordion-tabs .shop_attributes th,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-accordion-tabs .shop_attributes th,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-accordion-tabs .shop_attributes th {
    width: 30%;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-accordion-tabs .woocommerce-Tabs-panel--additional_information,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-accordion-tabs .woocommerce-Tabs-panel--additional_information,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-accordion-tabs .woocommerce-Tabs-panel--additional_information {
    margin-top: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-accordion-tabs .woocommerce-Tabs-panel--additional_information table tr,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-accordion-tabs .woocommerce-Tabs-panel--additional_information table tr,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-accordion-tabs .woocommerce-Tabs-panel--additional_information table tr {
    border: 0;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery > .qodef-content-grid {
        width: 100%;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-product-mark {
    -webkit-transform: translateX(-72px);
    -ms-transform: translateX(-72px);
    transform: translateX(-72px);
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure,
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure > .woocommerce-product-gallery__image,
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
    width: 100% !important;
    margin: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure > .woocommerce-product-gallery__image:first-child,
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image:first-child {
    padding: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper,
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
    width: 100%;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image,
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
    padding: 0;
    margin-top: 40px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image,
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        display: block;
        width: 100%;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child,
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child {
    margin-top: 40px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-single-inner {
    margin: 0 -72px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-single-inner > * {
    padding: 0 72px;
}
@media only screen and (max-width: 1440px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .qodef-woo-single-inner > * {
        padding: 0 60px;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .entry-summary {
    width: 85%;
}
@media only screen and (max-width: 1440px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .entry-summary {
        width: 100%;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery {
    padding: 0 42px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery > .qodef-content-grid {
        width: 100%;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure > .woocommerce-product-gallery__image,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
    width: 100% !important;
    margin: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure > .woocommerce-product-gallery__image:first-child,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image:first-child {
    padding: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
    width: 100%;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
    padding: 0;
    margin-top: 57px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child {
    margin-top: 57px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image,
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        display: block;
        width: 100%;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-single-inner {
    margin: 0 -66px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-single-inner > * {
    padding: 0 67px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .qodef-woo-single-inner .qodef-woo-single-image .qodef-woo-product-mark {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 67px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .entry-summary {
    width: 88%;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .entry-summary > :not(.yith-wcwl-add-to-wishlist) {
    max-width: 525px;
}
@media only screen and (max-width: 1280px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .entry-summary {
        width: 100%;
        padding-left: 10px;
    }
}
@media only screen and (max-width: 1024px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .entry-summary {
        padding-left: 67px;
    }
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns {
    padding: 0 25px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .woocommerce-product-gallery figure,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .woocommerce-product-gallery.qodef-position--left figure {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .woocommerce-product-gallery figure > .woocommerce-product-gallery__image,
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
    width: 100% !important;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 50%;
    flex: 0 50%;
    padding: 0 18px 40px 18px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-single-inner {
    margin: 0 -60px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-single-inner .qodef-woo-single-image .qodef-woo-product-mark {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 77px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .qodef-woo-single-inner > * {
    padding: 0 60px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .entry-summary {
    width: 85.42%;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .entry-summary > :not(.yith-wcwl-add-to-wishlist) {
    max-width: 525px;
}
#qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .upsells {
    margin-top: 89px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .related .qodef-woo-product-list ul.products > .product {
        padding: 0 4px;
    }
}
#qodef-woo-page.qodef--single .qodef-woo-single-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -45px;
}
#qodef-woo-page.qodef--single .qodef-woo-single-inner > * {
    padding: 0 45px;
}
#qodef-woo-page.qodef--single .qodef-woo-single-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
#qodef-woo-page.qodef--single .qodef-woo-single-image .qodef-woo-product-mark {
    -webkit-transform: translateX(-45px);
    -ms-transform: translateX(-45px);
    transform: translateX(-45px);
}
#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 -10px;
}
#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% - 20px) !important;
    margin: 0 10px;
    overflow: hidden;
}
#qodef-woo-page.qodef--single .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
    position: relative;
    padding: 0 10px;
    margin-top: 20px;
}
#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.33333%;
}
#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.66667%;
}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 .woocommerce-product-gallery__image {
    width: 14.28571%;
}
#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(27% + 10px);
}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    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%;
    -o-object-fit: cover;
    object-fit: cover;
}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
    width: calc(100% - 27%) !important;
}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
    width: 27%;
}
@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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#qodef-woo-page.qodef--single .entry-summary {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    width: 78%;
}
#qodef-woo-page.qodef--single .entry-summary .price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 1em;
    margin: 4px 0 0;
    margin-top: 15px;
}
#qodef-woo-page.qodef--single .entry-summary .price del {
    margin-right: 10px;
    opacity: 0.39;
}
#qodef-woo-page.qodef--single .entry-summary .price ins {
    text-decoration: none;
}
#qodef-woo-page.qodef--single .woocommerce-product-rating {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-product-rating {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
#qodef-woo-page.qodef--single .woocommerce-product-rating .qodef-woo-ratings {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: auto;
    margin-right: 1px;
}
#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link {
    color: #6a6a6a;
}
#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: 24px;
}
#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: 40px;
}
#qodef-woo-page.qodef--single form.cart .variations_button,
#qodef-woo-page.qodef--single form.cart:not(.variations_form) {
    display: block;
}
#qodef-woo-page.qodef--single form.cart .variations_button .quantity,
#qodef-woo-page.qodef--single form.cart:not(.variations_form) .quantity {
    margin-right: 20px;
}
#qodef-woo-page.qodef--single form.cart.variations_form {
    margin-top: 31px;
}
#qodef-woo-page.qodef--single form.cart .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    width: 100%;
    padding: 22px 32px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #000;
    margin-top: 30px;
}
#qodef-woo-page.qodef--single form.cart .button:hover {
    color: #fff;
    background-color: #2e2e2e;
}
#qodef-woo-page.qodef--single form.cart.grouped_form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#qodef-woo-page.qodef--single form.cart.grouped_form .group_table .qodef-quantity-label {
    display: none;
}
#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: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    font-size: 13px;
}
#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: 20px 27px;
    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: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
#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: 0;
}
#qodef-woo-page.qodef--single form.cart .variations tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: revert;
    flex-direction: revert;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#qodef-woo-page.qodef--single form.cart .variations tr {
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
}
#qodef-woo-page.qodef--single form.cart .variations tr:nth-child(2n + 1) {
    margin-right: 43px;
}
#qodef-woo-page.qodef--single form.cart .variations tr:last-child {
    margin-bottom: 32px;
}
#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 td.value {
    position: relative;
}
#qodef-woo-page.qodef--single form.cart .variations label {
    margin-bottom: 0;
}
#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: 0;
}
#qodef-woo-page.qodef--single form.cart .variations .reset_variations {
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    vertical-align: top;
    margin: 9px 0 0 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
#qodef-woo-page.qodef--single form.cart .single_variation {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#qodef-woo-page.qodef--single form.cart .single_variation .price {
    margin: 0;
}
#qodef-woo-page.qodef--single .out-of-stock {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    font-size: 13px;
    margin: 28px 0 0;
}
#qodef-woo-page.qodef--single .product_meta {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 26px;
}
#qodef-woo-page.qodef--single .product_meta > * {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 6px;
}
#qodef-woo-page.qodef--single .product_meta > .qodef-woo-single-product-details {
    margin-top: 0;
    margin-bottom: 20px;
}
#qodef-woo-page.qodef--single .product_meta > .qodef-woo-single-product-size-guide {
    margin-top: 22px;
}
#qodef-woo-page.qodef--single .product_meta > .qodef-woo-single-product-size-guide a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 4px;
    line-height: inherit !important;
}
#qodef-woo-page.qodef--single .qodef-social-share {
    margin-top: 35px;
}
#qodef-woo-page.qodef--single .woocommerce-tabs {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 61px;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .qodef-product-tabs-line {
    position: absolute !important;
    left: 0;
    bottom: 0;
    height: 0;
    border-top: 2px solid #000;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.25, 0.1, 0.11, 0.99);
    -o-transition: width 0.4s, left 0.6s cubic-bezier(0.25, 0.1, 0.11, 0.99);
    transition: width 0.4s, left 0.6s cubic-bezier(0.25, 0.1, 0.11, 0.99);
    z-index: 99;
    -webkit-transform: translateY(2%);
    -ms-transform: translateY(2%);
    transform: translateY(2%);
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-tabs .qodef-product-tabs-line {
        display: none;
    }
}
#qodef-woo-page.qodef--single .woocommerce-tabs .qodef-product-tabs-main-line {
    position: absolute;
    height: 1px;
    background: #585858;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #585858;
    position: absolute;
    left: 0;
    bottom: 0;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li {
    margin: 0;
    padding: 0 21px 0 21px;
    position: relative;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a {
    display: block;
    padding: 23px 0 23px 0;
    -webkit-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.538em;
    letter-spacing: 0.2em;
    color: #000;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:first-child {
    padding-left: 0;
}
#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.active a,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-active a,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-hover a,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:hover a {
    color: #585858;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.active:after,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-active:after,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-hover:after,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:hover:after {
    opacity: 1;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li {
        margin: 0 0 26px 0;
        padding: 0;
    }
    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a {
        padding: 0;
    }
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs:after {
    content: none;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:after {
    content: none;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 29px;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--additional_information {
    margin-top: 27px;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--additional_information table tr {
    border: 0;
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--reviews {
    margin-top: 27px;
}
#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 .woocommerce-tabs .wc-tab p.comment-notes {
    font-size: 15px;
}
#qodef-woo-page.qodef--single .shop_attributes td,
#qodef-woo-page.qodef--single .shop_attributes th {
    padding: 0;
    vertical-align: middle;
    text-align: left;
    border: 0;
    display: inline-block;
}
#qodef-woo-page.qodef--single .shop_attributes th {
    font-weight: 400;
    width: 17%;
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .shop_attributes th {
        width: 40%;
    }
}
#qodef-woo-page.qodef--single .shop_attributes p {
    margin: 0;
}
#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-Reviews-title {
    font-size: 19px;
    line-height: 1.526em;
    letter-spacing: 0.2em;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container > img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    margin-right: 20px;
}
#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 .meta {
    padding-top: 7px;
    margin-bottom: 1px !important;
    line-height: 1;
}
.mr-10{margin-right: 10px !important;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__author {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    font-size: 13px;
}
#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__published-date {
    font-size: 15px;
}
#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-bottom: 1px;
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating label {
    margin-top: 7px;
    margin-bottom: 5px;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars {
    display: none;
    line-height: 1;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings.selected svg {
    fill: currentColor;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings.selected svg .qodef-empty-star-fill {
    fill: none;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings.selected .active ~ * svg {
    fill: none;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings.selected .active ~ * svg .qodef-empty-star-fill {
    fill: currentColor;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 1.5px 0 0;
    font-size: 0;
    line-height: 1;
    color: #000;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating a svg {
    display: block;
    width: 20px;
    height: auto;
    fill: none;
}
#qodef-woo-page.qodef--single #review_form .comment-form-rating a svg .qodef-empty-star-fill {
    fill: currentColor;
}
#qodef-woo-page.qodef--single #review_form .comment-form-comment {
    margin-top: 17px;
}
#qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent > label {
    font-size: 15px;
    margin-bottom: 19px;
}
#qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent input[type="checkbox"] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    top: 4px;
    position: relative;
}
@-moz-document url-prefix() {
    #qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent input[type="checkbox"] {
        height: 15px;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single #review_form .qodef-col-num--2 > .qodef-grid-inner > .qodef-grid-item {
        width: 100%;
    }
}
#qodef-woo-page.qodef--single .upsells {
    margin-top: 129px;
}
#qodef-woo-page.qodef--single .upsells > h2 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 42px;
    text-align: center;
}
#qodef-woo-page.qodef--single .upsells + .related {
    margin-top: 73px;
}
#qodef-woo-page.qodef--single .related {
    margin-top: 129px;
}
#qodef-woo-page.qodef--single .related > h2 {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    line-height: 1.375em;
    letter-spacing: 0.2em;
    margin: 0 0 42px;
    text-align: center;
}
.qodef-content-full-width #qodef-woo-page.qodef--single .woocommerce-error,
.qodef-content-full-width #qodef-woo-page.qodef--single .woocommerce-info,
.qodef-content-full-width #qodef-woo-page.qodef--single .woocommerce-message {
    margin-left: 43px;
    margin-right: 43px;
}
.widget.woocommerce .qodef-woo-product-title {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    margin: 0;
}
.widget.woocommerce a .product-title {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.widget.woocommerce .qodef-woo-ratings {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    line-height: 1;
    margin-top: 10px;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-inner {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-star {
    color: #000;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-star svg {
    display: inline-block;
    margin-right: 4px;
    width: 20px;
    height: auto;
    fill: none;
    stroke: none;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-star svg .qodef-empty-star-fill {
    fill: currentColor;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-star.qodef--active {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-star.qodef--active svg {
    fill: currentColor;
}
.widget.woocommerce .qodef-woo-ratings .qodef-m-star.qodef--active svg .qodef-empty-star-fill {
    fill: none;
}
.widget.woocommerce .price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 1em;
    margin: 4px 0 0;
    font-size: 15px;
}
.widget.woocommerce .price del {
    margin-right: 10px;
    opacity: 0.39;
}
.widget.woocommerce .price ins {
    text-decoration: none;
}
.widget.woocommerce .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-family: Muli, sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    border-width: 0;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    -o-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81), -webkit-transform 0.6s cubic-bezier(0.3, 0.85, 0.41, 0.81);
    padding: 15px 21px 15px 21px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    background-color: #000;
}
.widget.woocommerce .button:hover {
    color: #fff;
    background-color: #2e2e2e;
}
.widget.woocommerce.widget_product_categories .product-categories li a,
.widget.woocommerce.widget_product_categories .product-categories li span {
    font-size: 15px;
}
.widget.woocommerce.widget_layered_nav .woocommerce-widget-layered-nav-list li a,
.widget.woocommerce.widget_layered_nav .woocommerce-widget-layered-nav-list li span {
    font-size: 15px;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper {
    max-width: 230px;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 0;
    cursor: pointer;
    height: 1px;
    position: relative;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
    border-radius: 100%;
    height: 9px;
    outline: 0;
    position: absolute;
    top: -4px;
    width: 9px;
    z-index: 2;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-of-type {
    -webkit-transform: translateX(-9px);
    -ms-transform: translateX(-9px);
    transform: translateX(-9px);
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
    border-radius: 0;
    display: block;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.widget.woocommerce.widget_price_filter .price_slider_amount {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin: 26px 0 0;
    position: relative;
}
.widget.woocommerce.widget_price_filter .price_slider_amount .clear {
    display: none;
}
.widget.woocommerce.widget_price_filter .price_slider_amount .price_label {
    font-size: 15px;
}
.widget.woocommerce.widget_price_filter .price_slider_amount .button {
    font-size: 11px;
    color: #585858;
    background-color: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
}
.widget.woocommerce.widget_price_filter .price_slider_amount .button:hover {
    color: #000;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li {
    position: relative;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li a:not(.remove) {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li .remove {
    font-size: 0;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li .remove:after {
    display: block;
    line-height: 25px;
    padding: 0 3px;
    position: relative;
    font-size: 18px;
    font-family: Linearicons-Free;
    content: "\e870";
}
body:not([class*="trousseau-core"]) .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li .remove:after {
    content: "x";
    font-family: initial;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .variation {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .variation > * {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .variation > * p {
    margin: 0;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .quantity {
    display: block;
    margin-top: 10px;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .total {
    margin: 13px 0 0;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 21px 0 0;
    position: relative;
}
.widget.woocommerce.widget_products ul li,
.widget.woocommerce.widget_recently_viewed_products ul li,
.widget.woocommerce.widget_top_rated_products ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.widget.woocommerce.widget_products ul li:last-child,
.widget.woocommerce.widget_recently_viewed_products ul li:last-child,
.widget.woocommerce.widget_top_rated_products ul li:last-child {
    margin-bottom: 0;
}
.widget.woocommerce.widget_products .qodef-woo-product-image,
.widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
.widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.widget.woocommerce.widget_products .qodef-woo-product-image a,
.widget.woocommerce.widget_products .qodef-woo-product-image img,
.widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image a,
.widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
.widget.woocommerce.widget_top_rated_products .qodef-woo-product-image a,
.widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    position: relative;
    display: block;
}
.widget.woocommerce.widget_recent_reviews ul li .reviewer {
    margin-top: 8px;
}
.widget.woocommerce.widget_recent_reviews ul li:last-child {
    margin-bottom: 0;
}
.widget.woocommerce.widget_recent_reviews ul li > * {
    display: block;
}
.widget.woocommerce.widget_recent_reviews a {
    font-family: Muli, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: 0.2em;
    position: relative;
}
.widget.woocommerce.widget_recent_reviews a img {
    position: absolute;
    top: 0;
    left: 0;
}
.widget.woocommerce.widget_layered_nav button {
    margin-top: 10px;
}
.widget.woocommerce .qodef-woo-product-title a {
    color: #6a6a6a;
}
.widget.woocommerce .qodef-woo-product-title a:hover {
    color: #000;
}
.widget.woocommerce a .product-title {
    color: #6a6a6a;
}
.widget.woocommerce a:hover .product-title {
    color: #000;
}
.widget.woocommerce .qodef-m-star {
    color: #000 !important;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #585858;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
    background-color: #000;
}
.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
    background-color: #000;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px;
}
.widget.woocommerce.widget_layered_nav ul li.chosen a {
    color: #000;
}
.widget.woocommerce.widget_products ul li,
.widget.woocommerce.widget_recently_viewed_products ul li,
.widget.woocommerce.widget_top_rated_products ul li {
    margin-bottom: 20px;
}
.widget.woocommerce.widget_products .qodef-woo-product-image,
.widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
.widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    margin-right: 20px;
}
.widget.woocommerce.widget_products .qodef-woo-product-image img,
.widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
.widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px;
}
.widget.woocommerce.widget_recent_reviews ul li {
    min-height: 80px;
    margin-bottom: 20px;
}
.widget.woocommerce.widget_recent_reviews ul li > * {
    padding-left: 100px;
}
.widget.woocommerce.widget_recent_reviews a:hover {
    color: #000;
}
.widget.woocommerce.widget_recent_reviews a img {
    width: 80px;
}
#qodef-top-area .widget.woocommerce .qodef-woo-product-title a {
    color: #fff;
}
#qodef-top-area .widget.woocommerce .qodef-woo-product-title a:hover {
    color: #000;
}
#qodef-top-area .widget.woocommerce a .product-title {
    color: #fff;
}
#qodef-top-area .widget.woocommerce a:hover .product-title {
    color: #000;
}
#qodef-top-area .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px;
}
#qodef-top-area .widget.woocommerce.widget_layered_nav ul li.chosen a {
    color: #000;
}
#qodef-top-area .widget.woocommerce.widget_products ul li,
#qodef-top-area .widget.woocommerce.widget_recently_viewed_products ul li,
#qodef-top-area .widget.woocommerce.widget_top_rated_products ul li {
    margin-bottom: 20px;
}
#qodef-top-area .widget.woocommerce.widget_products .qodef-woo-product-image,
#qodef-top-area .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
#qodef-top-area .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    margin-right: 20px;
}
#qodef-top-area .widget.woocommerce.widget_products .qodef-woo-product-image img,
#qodef-top-area .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
#qodef-top-area .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px;
}
#qodef-top-area .widget.woocommerce.widget_recent_reviews ul li {
    min-height: 80px;
    margin-bottom: 20px;
}
#qodef-top-area .widget.woocommerce.widget_recent_reviews ul li > * {
    padding-left: 100px;
}
#qodef-top-area .widget.woocommerce.widget_recent_reviews a:hover {
    color: #000;
}
#qodef-top-area .widget.woocommerce.widget_recent_reviews a img {
    width: 80px;
}
#qodef-page-footer .widget.woocommerce .qodef-woo-product-title a {
    color: #868686;
}
#qodef-page-footer .widget.woocommerce .qodef-woo-product-title a:hover {
    color: #868686;
}
#qodef-page-footer .widget.woocommerce a .product-title {
    color: #868686;
}
#qodef-page-footer .widget.woocommerce a:hover .product-title {
    color: #868686;
}
#qodef-page-footer .widget.woocommerce .qodef-m-star {
    color: #fff !important;
}
#qodef-page-footer .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px;
}
#qodef-page-footer .widget.woocommerce.widget_layered_nav ul li.chosen a {
    color: #868686;
}
#qodef-page-footer .widget.woocommerce.widget_products ul li,
#qodef-page-footer .widget.woocommerce.widget_recently_viewed_products ul li,
#qodef-page-footer .widget.woocommerce.widget_top_rated_products ul li {
    margin-bottom: 20px;
}
#qodef-page-footer .widget.woocommerce.widget_products .qodef-woo-product-image,
#qodef-page-footer .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
#qodef-page-footer .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    margin-right: 20px;
}
#qodef-page-footer .widget.woocommerce.widget_products .qodef-woo-product-image img,
#qodef-page-footer .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
#qodef-page-footer .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px;
}
#qodef-page-footer .widget.woocommerce.widget_recent_reviews ul li {
    min-height: 80px;
    margin-bottom: 20px;
}
#qodef-page-footer .widget.woocommerce.widget_recent_reviews ul li > * {
    padding-left: 100px;
}
#qodef-page-footer .widget.woocommerce.widget_recent_reviews a:hover {
    color: #868686;
}
#qodef-page-footer .widget.woocommerce.widget_recent_reviews a img {
    width: 80px;
}
#qodef-side-area .widget.woocommerce .qodef-woo-product-title a {
    color: #fff;
}
#qodef-side-area .widget.woocommerce .qodef-woo-product-title a:hover {
    color: #000;
}
#qodef-side-area .widget.woocommerce a .product-title {
    color: #fff;
}
#qodef-side-area .widget.woocommerce a:hover .product-title {
    color: #000;
}
#qodef-side-area .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px;
}
#qodef-side-area .widget.woocommerce.widget_layered_nav ul li.chosen a {
    color: #000;
}
#qodef-side-area .widget.woocommerce.widget_products ul li,
#qodef-side-area .widget.woocommerce.widget_recently_viewed_products ul li,
#qodef-side-area .widget.woocommerce.widget_top_rated_products ul li {
    margin-bottom: 20px;
}
#qodef-side-area .widget.woocommerce.widget_products .qodef-woo-product-image,
#qodef-side-area .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
#qodef-side-area .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    margin-right: 20px;
}
#qodef-side-area .widget.woocommerce.widget_products .qodef-woo-product-image img,
#qodef-side-area .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
#qodef-side-area .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px;
}
#qodef-side-area .widget.woocommerce.widget_recent_reviews ul li {
    min-height: 80px;
    margin-bottom: 20px;
}
#qodef-side-area .widget.woocommerce.widget_recent_reviews ul li > * {
    padding-left: 100px;
}
#qodef-side-area .widget.woocommerce.widget_recent_reviews a:hover {
    color: #000;
}
#qodef-side-area .widget.woocommerce.widget_recent_reviews a img {
    width: 80px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce .qodef-woo-product-title a {
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget.woocommerce .qodef-woo-product-title a:hover {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget.woocommerce a .product-title {
    color: #fff;
}
.qodef-mega-menu-widget-holder .widget.woocommerce a:hover .product-title {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_layered_nav ul li.chosen a {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products ul li,
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products ul li,
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products ul li {
    margin-bottom: 20px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products .qodef-woo-product-image,
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    margin-right: 20px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products .qodef-woo-product-image img,
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews ul li {
    min-height: 80px;
    margin-bottom: 20px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews ul li > * {
    padding-left: 100px;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews a:hover {
    color: #000;
}
.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews a img {
    width: 80px;
}
#qodef-page-sidebar .widget.woocommerce .qodef-woo-product-title a {
    color: #6a6a6a;
}
#qodef-page-sidebar .widget.woocommerce .qodef-woo-product-title a:hover {
    color: #000;
}
#qodef-page-sidebar .widget.woocommerce a .product-title {
    color: #6a6a6a;
}
#qodef-page-sidebar .widget.woocommerce a:hover .product-title {
    color: #000;
}
#qodef-page-sidebar .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content ul li img {
    width: 80px;
    margin-right: 20px;
}
#qodef-page-sidebar .widget.woocommerce.widget_layered_nav ul li.chosen a {
    color: #000;
}
#qodef-page-sidebar .widget.woocommerce.widget_products ul li,
#qodef-page-sidebar .widget.woocommerce.widget_recently_viewed_products ul li,
#qodef-page-sidebar .widget.woocommerce.widget_top_rated_products ul li {
    margin-bottom: 20px;
}
#qodef-page-sidebar .widget.woocommerce.widget_products .qodef-woo-product-image,
#qodef-page-sidebar .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image,
#qodef-page-sidebar .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image {
    margin-right: 20px;
}
#qodef-page-sidebar .widget.woocommerce.widget_products .qodef-woo-product-image img,
#qodef-page-sidebar .widget.woocommerce.widget_recently_viewed_products .qodef-woo-product-image img,
#qodef-page-sidebar .widget.woocommerce.widget_top_rated_products .qodef-woo-product-image img {
    width: 80px;
}
#qodef-page-sidebar .widget.woocommerce.widget_recent_reviews ul li {
    min-height: 80px;
    margin-bottom: 20px;
}
#qodef-page-sidebar .widget.woocommerce.widget_recent_reviews ul li > * {
    padding-left: 100px;
}
#qodef-page-sidebar .widget.woocommerce.widget_recent_reviews a:hover {
    color: #000;
}
#qodef-page-sidebar .widget.woocommerce.widget_recent_reviews a img {
    width: 80px;
}
@media only screen and (max-width: 1200px) {
    .qodef-content-grid {
        width: 960px;
    }
    .qodef-content-grid.qodef-extended-grid--right {
        padding-left: calc((100% - 960px) / 2);
    }
    .qodef-content-grid.qodef-extended-grid--left {
        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 {
        padding-left: calc((100% - 768px) / 2);
    }
    .qodef-content-grid.qodef-extended-grid--left {
        padding-right: calc((100% - 768px) / 2);
    }
    .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 {
        padding-left: calc((100% - 86%) / 2);
    }
    .qodef-content-grid.qodef-extended-grid--left {
        padding-right: calc((100% - 86%) / 2);
    }
    .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 {
        padding-left: calc((100% - 82%) / 2);
    }
    .qodef-content-grid.qodef-extended-grid--left {
        padding-right: calc((100% - 82%) / 2);
    }
    .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.33333%;
    }
}
@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.33333%;
    }
    .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.66667%;
    }
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--5.qodef-layout--columns > .qodef-grid-inner > .qodef-grid-item {
        width: 33.33333%;
    }
}
@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.33333%;
    }
    .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.66667%;
    }
    .qodef-grid.qodef-responsive--predefined.qodef-col-num--6.qodef-layout--columns > .qodef-grid-inner > .qodef-grid-item {
        width: 33.33333%;
    }
}
@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.33333%;
    }
    .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.66667%;
    }
    .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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@media only screen and (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.66667%;
    }
}
@media only screen and (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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.33333%;
    }
    .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.33333%;
    }
    .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.66667%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
    .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.66667%;
    }
    .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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.28571%;
    }
    .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.28571%;
    }
    .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.57143%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.33333%;
    }
}
@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.33333%;
    }
    .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.66667%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.66667%;
    }
    .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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.28571%;
    }
}
@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.28571%;
    }
    .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.57143%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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.66667%;
    }
}
@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.33333%;
    }
}
@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;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-404-page {
        padding: 110px 40px 200px;
    }
}
@media only screen and (max-width: 680px) {
    .qodef-blog .qodef-blog-item .qodef-e-content .qodef-info--top {
        display: block;
    }
    .qodef-blog .qodef-blog-item .qodef-e-content .qodef-info--top > div {
        display: block;
    }
    .qodef-blog .qodef-blog-item .qodef-e-content .qodef-info--top > div:after {
        display: none;
    }
    .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 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0;
    }
    .qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-info-right {
        margin-top: -3px;
    }
    .qodef-blog .qodef-blog-item .qodef-e-info.qodef-info--bottom .qodef-e-read-more {
        margin-top: 23px;
    }
    .qodef-blog .qodef-blog-item.format-link .qodef-e-link-icon {
        right: 12%;
        width: 120px;
    }
}
@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 .qodef-e-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #qodef-page-comments-list .qodef-comment-item .qodef-e-content {
        margin-top: 23px;
    }
    #qodef-page-comments-list .qodef-comment-item .children {
        padding-left: 3%;
    }
}
@media only screen and (max-width: 680px) {
    .qodef-m-filter .qodef-m-filter-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .qodef-m-filter .qodef-m-filter-item {
        margin: 5px 0;
    }
}
@media only screen and (max-width: 1024px) {
    #qodef-page-footer-top-area .qodef-content-full-width {
        padding: 0 42px;
    }
}
@media only screen and (max-width: 1024px) {
    #qodef-page-footer-bottom-area .qodef-content-full-width {
        padding: 0 42px;
    }
}
@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 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--cart .shop_table th.product-price,
    #qodef-woo-page.qodef--cart .shop_table th.product-thumbnail {
        display: none;
    }
    #qodef-woo-page.qodef--cart .shop_table th.product-name {
        padding-left: 3px;
    }
    #qodef-woo-page.qodef--cart .shop_table td.product-price,
    #qodef-woo-page.qodef--cart .shop_table td.product-thumbnail {
        display: none;
    }
    #qodef-woo-page.qodef--cart .shop_table td.product-name {
        width: auto;
        padding-left: 3px;
        border-right: 1px solid #7a7a7a;
    }
    #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 > .button {
        float: none;
    }
    #qodef-woo-page.qodef--cart .cart-collaterals .shop_table th {
        width: auto;
    }
}
@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.33333%;
    }
    .qodef-woo-product-list ul.products.columns-5 > .product {
        width: 33.33333%;
    }
    .qodef-woo-product-list ul.products.columns-6 > .product {
        width: 33.33333%;
    }
    .qodef-woo-product-list ul.products.columns-7 > .product {
        width: 33.33333%;
    }
    .qodef-woo-product-list ul.products.columns-8 > .product {
        width: 33.33333%;
    }
}
@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;
    }
}
@media only screen and (max-width: 680px) {
    .qodef-woo-results {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
.qodef-woo-results .woocommerce-ordering {
    margin-left: 0;
}
@media only screen and (max-width: 1024px) {
    #qodef-woo-page.qodef--single .qodef-woo-single-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #qodef-woo-page.qodef--single .entry-summary {
        margin-top: 60px;
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .entry-summary > :not(.yith-wcwl-add-to-wishlist):not(.qodef-woo-product-title) {
        max-width: 100%;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .entry-summary > .qodef-woo-product-title {
        max-width: 90%;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .entry-summary > :not(.yith-wcwl-add-to-wishlist):not(.qodef-woo-product-title) {
        max-width: 100%;
        padding: 0 18px;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery-2-columns .entry-summary > .qodef-woo-product-title {
        max-width: 90%;
        padding: 0 18px;
    }
}
@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 {
        -ms-flex-wrap: wrap;
        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: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        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: 20px !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger {
        left: 10px;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
        width: 100% !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--grid-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child {
        margin-top: 40px !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger {
        left: 10px;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
        width: 100% !important;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
        width: 100% !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #qodef-woo-page.qodef--single > .product.qodef-layout--wide-gallery .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child {
        margin-top: 57px !important;
    }
}
.qodef-e-link-arama {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 1.1% 2% 1.1%;
    background-color: #faf5f2;
    margin-bottom: 5px;
}
