/*!
 * UPDATE TO NEW VERSION https://github.com/daneden/animate.css
 * button-animate.css -http://daneden.me/animate
 * Version - 3.6.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

.zpa-animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.zpa-animated.zpa-infinite {
    animation-iteration-count: infinite
}

@keyframes zpa-bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.zpa-bounce {
    animation-name: zpa-bounce;
    transform-origin: center bottom
}

@keyframes zpa-flash {
    0%,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.zpa-flash {
    animation-name: zpa-flash
}

@keyframes zpa-pulse {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}

.zpa-pulse {
    animation-name: zpa-pulse
}

@keyframes zpa-rubberBand {
    0% {
        transform: scaleX(1)
    }
    30% {
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scaleX(1)
    }
}

.zpa-rubberBand {
    animation-name: zpa-rubberBand
}

@keyframes zpa-shake {
    0%,
    to {
        transform: translateZ(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.zpa-shake {
    animation-name: zpa-shake
}

@keyframes zpa-headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.zpa-headShake {
    animation-timing-function: ease-in-out;
    animation-name: zpa-headShake
}

@keyframes zpa-swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0deg)
    }
}

.zpa-swing {
    transform-origin: top center;
    animation-name: zpa-swing
}

@keyframes zpa-tada {
    0% {
        transform: scaleX(1)
    }
    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        transform: scaleX(1)
    }
}

.zpa-tada {
    animation-name: zpa-tada
}

@keyframes zpa-wobble {
    0% {
        transform: translateZ(0)
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        transform: translateZ(0)
    }
}

.zpa-wobble {
    animation-name: zpa-wobble
}

@keyframes zpa-jello {
    0%,
    11.1%,
    to {
        transform: translateZ(0)
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.39062deg) skewY(.39062deg)
    }
    88.8% {
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

.zpa-jello {
    animation-name: zpa-jello;
    transform-origin: center
}

@keyframes zpa-pulse-xl {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.2, 1.2, 1.2)
    }
    to {
        transform: scaleX(1)
    }
}

.zpa-pulse-xl {
    animation-name: zpa-pulse-xl
}

@keyframes zpa-fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.zpa-fadeOut {
    animation-name: zpa-fadeOut
}

@keyframes zpa-flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.zpa-animated.zpa-flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: zpa-flip
}

@keyframes zpa-flipOutX {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.zpa-flipOutX {
    animation-duration: .75s;
    animation-name: zpa-flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@keyframes zpa-flipOutY {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.zpa-flipOutY {
    animation-duration: .75s;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: zpa-flipOutY
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: auto
}

.embed-responsive:before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-16by9:before {
    padding-top: 56.25%
}

.embed-responsive-1by1:before {
    padding-top: 100%;
    background-color: #000
}

.embed-responsive-1by1 iframe[src$="F&show_text=0&width=560"] {
    padding-top: 22%
}

.embed-responsive-1by1 .wistia_responsive_padding {
    margin-top: -78%;
    padding-top: 78%!important
}

.embed-responsive-16by9 iframe[src$="F&show_text=0&width=476"] {
    padding-left: 22%;
    padding-right: 22%;
    background-color: #000
}

.embed-responsive-16by9 .wistia_responsive_padding {
    margin-top: -56.25%
}

.zpa-published-page-holder .embed-responsive .mediaWrapper,
.zpa-published-page-holder .embed-responsive .video-wrapper {
    position: static!important;
    padding: inherit!important;
    width: auto!important;
    height: auto!important
}

.zpa-shopify-data-group {
    margin: 0 0 0 50px
}

@media (max-width:991px) {
    .zpa-shopify-data-group {
        margin: 0
    }
}

.zpa-link-group {
    margin-left: 20px;
    margin-right: 20px
}

.zpa-visible-xs-inline {
    display: none
}

@media (max-width:767px) {
    .zpa-visible-xs-inline {
        display: inline-block
    }
}

.header-search-form {
    display: flex;
    margin: 0 auto;
    max-width: 360px
}

@media (max-width:991px) {
    .zpa-navigation-main-box {
        float: none
    }
}

@media (max-width:767px) {
    .zpa-navigation-main-box {
        text-align: left
    }
}

.zpa-medium-shopify-cart-items {
    display: block;
    position: absolute;
    background-color: #3aaa35;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    top: -7px;
    left: 20px;
    height: 25px;
    width: 25px;
    line-height: 1.7;
    font-size: 14px;
    margin-top: -3px
}

@media (max-width:767px) {
    .zpa-medium-shopify-cart-items {
        top: -3px;
        left: 10px;
        height: 20px;
        width: 20px;
        line-height: 1.4
    }
}

.zpa-badge-cart-items {
    display: block;
    position: absolute;
    background-color: #3aaa35;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    top: 0;
    left: 26px;
    height: 25px;
    width: 25px;
    line-height: 1.7;
    font-size: 14px
}

@media (max-width:767px) {
    .zpa-badge-cart-items {
        height: 20px;
        width: 20px;
        line-height: 1.7;
        font-size: 12px;
        top: 4px
    }
}

.zpa-header-cart-right {
    float: right;
    margin-left: -10px;
    margin-right: 10px;
    margin-top: 7px
}

@media (max-width:991px) {
    .zpa-header-cart-right {
        float: none;
        margin-top: 0
    }
}

.zpa-header-cart-right .zpa-cart-icon.zpa-cart-icon {
    margin-top: -9px;
    width: 25px;
    height: 25px
}

.zpa-header-cart-right .zpa-medium-shopify-cart-items {
    height: 20px;
    width: 20px;
    line-height: 1.7;
    font-size: 12px;
    left: 26px;
    top: -4px
}

.zpa-cart-icon.zpa-icon-grey,
.zpa-cart-icon.zpa-icon-white {
    fill: #888
}

@media (max-width:767px) {
    .zpa-cart-icon.zpa-icon-grey,
    .zpa-cart-icon.zpa-icon-white {
        height: 25px;
        width: 25px
    }
}

.zpa-small-shopify-cart-link {
    position: relative
}

.zpa-header-medium-offset {
    vertical-align: middle
}

.zpa-header-medium-offset .zpa-small-shopify-cart-link.zpa-small-shopify-cart-link {
    display: inline-flex;
    align-items: center
}

@media (min-width:768px) {
    .zpa-header-medium-offset .zpa-small-shopify-cart-link.zpa-small-shopify-cart-link {
        padding-top: 4px
    }
}

.zpa-header-medium-offset .zpa-small-shopify-cart.zpa-offset-right-sm {
    margin-right: 30px
}

.zpa-header-medium-offset .zpa-shopify-cart-items {
    left: 11px;
    height: 20px;
    width: 20px;
    font-size: 12px
}

@media (max-width:768px) {
    .zpa-header-medium-offset .zpa-shopify-cart-items {
        margin-top: 7px
    }
}

@media (max-width:768px) {
    .zpa-header-medium-offset {
        display: inline-flex!important;
        padding-bottom: 3px
    }
}

.zpa-header-medium-offset .zpa-medium-shopify-cart-items {
    height: 20px;
    width: 20px;
    line-height: 1.7;
    font-size: 12px;
    margin-top: 8px;
    left: 26px;
    top: -3px
}

.zpa-navigation-menu-icon-box {
    cursor: pointer;
    display: none;
    margin-bottom: 0;
    overflow: hidden;
    padding-top: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.zpa-navigation-menu-icon-box:hover {
    opacity: .8
}

@media (max-width:767px) {
    .zpa-navigation-menu-icon-box {
        display: inline-block;
        z-index: 999;
        padding-left: 20px
    }
}

@media (max-width:767px) {
    .zpa-navigation-main-box-lg .zpa-navigation-list-wrap {
        display: block
    }
    .zpa-navigation-main-box-lg .zpa-navigation-toggle:checked+.zpa-navigation-list {
        height: auto
    }
    .zpa-navigation-main-box-lg .zpa-navigation-menu-title {
        margin-left: 10px;
        line-height: 3;
        font-size: 18px;
        font-weight: 900;
        color: currentColor;
        font-style: normal;
        font-weight: 700
    }
}

.zpa-contact-phone-img {
    margin-right: 8px
}

.zpa-shopify-cart-link {
    position: relative;
    display: block;
    padding: 0 12px;
    margin: 15px;
    cursor: pointer
}

.zpa-constructor-holder .zpa-shopify-cart-link {
    cursor: default
}

.zpa-visible-sm {
    display: none
}

.zpa-navbar-menu-title {
    margin-left: 10px
}

.zpa-pull-right .zpa-small-shopify-cart-link {
    display: inline-flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px
}

.zpa-mobile-cart-right {
    vertical-align: middle;
    right: 20px;
    top: 18px
}

.zpa-navigation-list-wrap {
    display: inline-block
}

@media (max-width:767px) {
    .zpa-navigation-list-wrap {
        display: none
    }
}

@media (max-width:767px) {
    .zpa-navigation-toggle:checked+.zpa-navigation-list-wrap {
        display: block;
        max-width: 100%;
        width: 100%;
        margin-right: 0
    }
    .zpa-navigation-toggle:checked+.zpa-navigation-list-wrap .zpa-navigation-list {
        height: auto;
        transition: all .2s ease
    }
}

.zpa-small-shopify-cart-items {
    position: absolute;
    top: 4px;
    right: 25px;
    display: inline-block;
    background-color: #d8d8d8;
    color: #3b3b3b;
    text-align: center;
    border-radius: 100%;
    height: 18px;
    width: 18px;
    line-height: 18px;
    font-weight: 700;
    font-size: 11px
}

.zpa-account:after {
    content: "/";
    padding-left: 5px
}

.zpa-account-is_enabled.zpa-pull-right {
    margin-right: 10px
}

.zpa-navbar-cart-link {
    position: relative;
    line-height: 30px;
    display: block
}

.zpa-navbar-cart-link:hover {
    text-decoration: none
}

.zpa-header-link {
    padding: 0 12px
}

.zpa-header-link:focus,
.zpa-header-link:hover {
    text-decoration: underline!important
}

@media (max-width:992px) {
    .zpa-header-link {
        font-size: 16px!important
    }
}

@media (max-width:1200px) {
    .zpa-header-link {
        font-size: 16px!important
    }
}

.zpa-plain-link:focus,
.zpa-plain-link:hover {
    text-decoration: underline!important
}

.zpa-link-hover--opacity:hover {
    opacity: var(--hover-opacity)
}

.zpa-link-hover--color:hover {
    color: var(--hover-color)!important
}

.zpa-product {
    display: inline-block;
    width: 100%
}

.zpa-brand-block {
    width: 100%;
    display: table
}

.zpa-brand-list {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    padding-right: 15px
}

@media (max-width:991px) {
    .zpa-brand-list {
        padding-left: 10px;
        padding-right: 10px
    }
}

@media (max-width:767px) {
    .zpa-brand-list {
        padding-left: 5px;
        padding-right: 5px
    }
}

.zpa-list-width-third li {
    width: 33.33333%
}

.zpa-list-width-quarter li {
    width: 25%
}

.zpa-list-width-fifth li {
    width: 20%
}

.zpa-list-width-sixth li {
    width: 16.66667%
}

.zpa-product-best-price-title-wrap {
    min-height: 50px;
    overflow: hidden;
    padding-top: 5px
}

@media (max-width:767px) {
    .js-best-value-not-select .zpa-product-best-price-title-wrap {
        display: none
    }
}

.zpa-product-best-price-title {
    color: #fcad14;
    font-size: 32px;
    line-height: 1;
    margin: 0;
    text-align: center
}

[data-hidden-label] {
    display: none!important
}

.zpa-hr-simple {
    border-top: 1px solid #ccc
}

.zpa-hr-shadow {
    width: 100%;
    height: 8px;
    margin-bottom: -15px;
    background: radial-gradient(ellipse farthest-corner at center top, #c2c2c2 10%, #c2c2c2 0, transparent 64%)
}

.zpa-hr-dashed {
    border: 1px dashed #333
}

[data-is-full-width="1"] .zpa-row {
    margin-left: 0;
    margin-right: 0
}

[data-is-full-width="1"] .zpa-row .zpa-col-xs-12 {
    padding-left: 0;
    padding-right: 0
}

[data-is-full-width="1"] .zpa-row .ctrl-edit {
    right: 0
}

.zpa-product-plain-float {
    float: right
}

@media only screen and (max-width:767px) {
    .zpa-product-plain-float {
        float: none
    }
}

.zpa-shopify-contact-data>* {
    display: block
}

.zpa-shopify-contact-data a:focus,
.zpa-shopify-contact-data a:hover {
    text-decoration: underline!important
}

@media (max-width:767px) {
    .zpa-shopify-contact-data>* {
        display: inline-block
    }
}

.zpa-default-socials .zpa-socials-list {
    padding: 0;
    text-align: center;
    line-height: 10px;
    margin: 10px 0
}

.zpa-default-socials .zpa-socials-list li {
    display: inline-block;
    margin: 10px;
    padding: 0;
    font-size: 24px
}

.zpa-default-socials .zpa-socials-list li a {
    display: block
}

.zpa-search-icon {
    height: 16px;
    width: 16px
}

.zpa-default-footer .zpa-icon {
    width: 50px;
    height: 50px
}

.quoted {
    padding: 15px 70px
}

.quoted~.zpa-quote-mark {
    display: block;
    position: absolute;
    width: 50px;
    height: 48px
}

@media (max-width:767px) {
    .quoted~.zpa-quote-mark {
        width: 30px;
        height: 30px
    }
}

.quoted~.zpa-quote-mark.zpa-quote-mark-left {
    top: 0;
    left: 0
}

.quoted~.zpa-quote-mark.zpa-quote-mark-right {
    bottom: 0;
    right: 0
}

.quoted~.zpa-quote-mark .zpa-icon-testimonial-light {
    width: 50px;
    height: 50px
}

@media (max-width:767px) {
    .quoted~.zpa-quote-mark .zpa-icon-testimonial-light {
        width: 30px;
        height: 30px
    }
}

@media (max-width:767px) {
    .quoted {
        padding: 6px 40px
    }
}

.zpa-zindex-top {
    z-index: 150
}

.zpa-image-float-sm {
    margin-right: 40px;
    margin-bottom: 10px;
    float: left
}

@media (max-width:767px) {
    .zpa-image-float-sm {
        float: none;
        margin-bottom: 20px;
        margin-right: 0
    }
}

.zpa-image-md-size {
    max-width: 250px;
    height: auto
}

@media (max-width:767px) {
    .zpa-image-md-size {
        max-width: 100%
    }
}

@media only screen and (max-width:767px) {
    .order-1 {
        order: 1
    }
    .order-2 {
        order: 2
    }
    .order-3 {
        order: 3
    }
    .order-4 {
        order: 4
    }
    .order-5 {
        order: 5
    }
    .order-6 {
        order: 6
    }
}

@media (max-width:767px) {
    .zpa-best-value-container.zpa-best-value-container,
    .zpa-bv2-container.zpa-bv2-container {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width:767px) {
    .zpa-best-value-block:not(: last-of-type) {
        margin-bottom: 20px
    }
}

.zpa-countdown-bottom-offset {
    margin-bottom: 20px
}

.zpa-options-filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000
}

@media (max-width:767px) {
    .zpa-text-center-sm {
        text-align: center!important
    }
}

.right-offset-xs:not(:empty) {
    margin-right: 5px
}

.zpa-text-line-height {
    line-height: 1.6
}

.zpa-text-line-height-sm {
    line-height: 1.2
}

.zpa-text-line-height-xs {
    line-height: 1
}

.zpa-img-circle {
    border-radius: 50%
}

@media (max-width:991px) {
    .zpa-button-xlarge {
        padding: 20px 46px;
        font-size: 22px
    }
}

@media (max-width:767px) {
    .zpa-button-xlarge {
        padding: 14px 32px;
        font-size: 20px
    }
}

.zpa-footer-link-block {
    padding-left: 0
}

.zpa-footer-list {
    display: inline-block;
    list-style: none;
    margin-left: -4px
}

.zpa-footer-link {
    line-height: 1.5;
    padding: 0 30px
}

.zpa-footer-link:focus,
.zpa-footer-link:hover {
    text-decoration: underline!important
}

.zpa-footer-list:nth-child(2) {
    border-left: 1px solid #222;
    border-right: 1px solid #222
}

@media (max-width:768px) {
    .zpa-footer-list {
        display: block
    }
    .zpa-footer-list:nth-child(2) {
        border: none
    }
}

.zpa-footer-menu-link {
    display: block
}

.zpa-footer-menu-link:focus,
.zpa-footer-menu-link:hover {
    text-decoration: underline!important
}

.zpa-footer-menu-list {
    margin: 0
}

.zpa-footer-menu-list li {
    padding: 10px 0
}

.zpa-icons-sm {
    margin: 0 -10px
}

.zpa-icons-sm li {
    margin: 10px
}

.zpa-icons-sm li .icon-droplet-first {
    height: 40px;
    width: 40px
}

@media (max-width:767px) {
    .zpa-text-center-sm {
        width: 100%;
        text-align: center!important
    }
    .zpa-footer-menu-title {
        display: inline-block
    }
}

.zpa-footer-info {
    max-width: 400px
}

.zpa-footer-block__list {
    line-height: 1.5;
    padding-left: 30px;
    padding-right: 30px
}

.zpa-footer-block__list:not(:first-child) {
    border-left: 1px solid #3b3b3b
}

@media (max-width:768px) {
    .zpa-footer-block__list:not(: first-child) {
        border-left: none
    }
}

.cluster-padding-none {
    padding-top: 0;
    padding-bottom: 0
}

.zpa-btn-custom-lg {
    padding: 20px 60px
}

.zpa-btn-custom-md {
    padding: 10px 35px
}

.zpa-btn-custom-sm {
    padding: 10px 22px
}

@media (max-width:414px) {
    .zpa-mobile-container--hoffset-none.zpa-mobile-container--hoffset-none {
        padding-left: 0;
        padding-right: 0
    }
}

@media (max-width:414px) {
    .zpa-mobile-block--hoffset-xs.zpa-mobile-block--hoffset-xs {
        padding-left: 15px;
        padding-right: 15px
    }
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

.zpa-published-page-holder article,
.zpa-published-page-holder aside,
.zpa-published-page-holder details,
.zpa-published-page-holder figcaption,
.zpa-published-page-holder figure,
.zpa-published-page-holder footer,
.zpa-published-page-holder header,
.zpa-published-page-holder hgroup,
.zpa-published-page-holder main,
.zpa-published-page-holder menu,
.zpa-published-page-holder nav,
.zpa-published-page-holder section,
.zpa-published-page-holder summary {
    display: block
}

.zpa-published-page-holder audio:not([controls]) {
    display: none;
    height: 0
}

.zpa-published-page-holder [hidden],
.zpa-published-page-holder template {
    display: none
}

.zpa-published-page-holder a:active,
.zpa-published-page-holder a:hover {
    outline: 0
}

.zpa-published-page-holder abbr[title] {
    border-bottom: 1px dotted
}

.zpa-published-page-holder b,
.zpa-published-page-holder strong {
    font-weight: 700
}

.zpa-published-page-holder dfn {
    font-style: italic
}

.zpa-published-page-holder mark {
    background: #ff0;
    color: #000
}

.zpa-published-page-holder small {
    font-size: 80%
}

.zpa-published-page-holder sub,
.zpa-published-page-holder sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

.zpa-published-page-holder sup {
    top: -.5em
}

.zpa-published-page-holder sub {
    bottom: -.25em
}

.zpa-published-page-holder svg:not(:root) {
    overflow: hidden
}

.zpa-published-page-holder pre {
    overflow: auto
}

.zpa-published-page-holder code,
.zpa-published-page-holder kbd,
.zpa-published-page-holder pre,
.zpa-published-page-holder samp {
    font-family: monospace, monospace;
    font-size: 1em
}

.zpa-published-page-holder select {
    text-transform: none
}

.zpa-published-page-holder button,
.zpa-published-page-holder input[type=reset],
.zpa-published-page-holder input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

.zpa-published-page-holder button[disabled] {
    cursor: default
}

.zpa-published-page-holder button::-moz-focus-inner,
.zpa-published-page-holder input::-moz-focus-inner {
    border: 0;
    padding: 0
}

.zpa-published-page-holder input {
    line-height: normal
}

.zpa-published-page-holder input[type=number]::-webkit-inner-spin-button,
.zpa-published-page-holder input[type=number]::-webkit-outer-spin-button {
    height: auto
}

.zpa-published-page-holder input[type=search]::-webkit-search-cancel-button,
.zpa-published-page-holder input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

.zpa-published-page-holder textarea {
    overflow: auto
}

*,
:after,
:before {
    box-sizing: border-box
}

html {
    height: 100%;
    -webkit-tap-highlight-color: transparent
}

.zpa-published-page-holder {
    font-size: 14px;
    line-height: 1.43;
    color: #333
}

.zpa-published-page-holder a {
    color: currentColor;
    text-decoration: none
}

.zpa-published-page-holder .disable-internal-link a {
    color: #0022dc
}

.zpa-published-page-holder .disable-internal-link a:focus,
.zpa-published-page-holder .disable-internal-link a:hover {
    color: #0022dc;
    text-decoration: underline
}

.zpa-published-page-holder figure {
    margin: 0
}

.zpa-published-page-holder img {
    vertical-align: middle
}

.zpa-published-page-holder .img-responsive {
    display: block;
    max-width: 100%;
    height: auto
}

.zpa-published-page-holder .img-rounded {
    border-radius: 6px
}

.zpa-published-page-holder .img-circle {
    border-radius: 50%
}

.zpa-published-page-holder .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.zpa-published-page-holder .sr-only-focusable:active,
.zpa-published-page-holder .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.zpa-published-page-holder [role=button] {
    cursor: pointer
}

.zpa-published-page-holder p {
    margin: 0
}

.zpa-published-page-holder form {
    margin-top: 0;
    margin-bottom: 0
}

.zpa-published-page-holder ol,
.zpa-published-page-holder ul {
    margin-top: 0
}

.zpa-published-page-holder ol ol,
.zpa-published-page-holder ol ul,
.zpa-published-page-holder ul ol,
.zpa-published-page-holder ul ul {
    margin-bottom: 0
}

.zpa-published-page-holder blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

.zpa-published-page-holder blockquote ol:last-child,
.zpa-published-page-holder blockquote p:last-child,
.zpa-published-page-holder blockquote ul:last-child {
    margin-bottom: 0
}

.zpa-published-page-holder blockquote .small,
.zpa-published-page-holder blockquote footer,
.zpa-published-page-holder blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777
}

.zpa-published-page-holder blockquote .small:before,
.zpa-published-page-holder blockquote footer:before,
.zpa-published-page-holder blockquote small:before {
    content: "\2014 \00A0"
}

.zpa-published-page-holder .blockquote-reverse,
.zpa-published-page-holder blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.zpa-published-page-holder .blockquote-reverse .small:before,
.zpa-published-page-holder .blockquote-reverse footer:before,
.zpa-published-page-holder .blockquote-reverse small:before,
.zpa-published-page-holder blockquote.pull-right .small:before,
.zpa-published-page-holder blockquote.pull-right footer:before,
.zpa-published-page-holder blockquote.pull-right small:before {
    content: ""
}

.zpa-published-page-holder .blockquote-reverse .small:after,
.zpa-published-page-holder .blockquote-reverse footer:after,
.zpa-published-page-holder .blockquote-reverse small:after,
.zpa-published-page-holder blockquote.pull-right .small:after,
.zpa-published-page-holder blockquote.pull-right footer:after,
.zpa-published-page-holder blockquote.pull-right small:after {
    content: "\00A0 \2014"
}

.zpa-published-page-holder address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857
}

.custom-template .js-cluster,
.zpa-container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width:576px) {
    .custom-template .js-cluster,
    .zpa-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .custom-template .js-cluster,
    .zpa-container {
        max-width: 740px
    }
}

@media (min-width:992px) {
    .custom-template .js-cluster,
    .zpa-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .custom-template .js-cluster,
    .zpa-container {
        max-width: 1140px
    }
}

@media (max-width:767.98px) {
    .js-cluster-wrapper:not(.zpa-container),
    .zpa-container>[data-cluster-paddings] {
        padding-left: 15px!important;
        padding-right: 15px!important
    }
}

.zpa-post-container {
    margin-right: auto;
    margin-left: auto
}

@media (min-width:768px) {
    .zpa-post-container {
        max-width: 750px!important
    }
}

@media (min-width:992px) {
    .zpa-post-container {
        max-width: 930px!important
    }
}

@media (min-width:1200px) {
    .zpa-post-container {
        max-width: 930px!important
    }
}

.zpa-row {
    margin-left: -15px;
    margin-right: -15px
}

.zpa-row:after,
.zpa-row:before {
    content: " ";
    display: table
}

.zpa-row:after {
    clear: both
}

.zpa-col-md-1,
.zpa-col-md-2,
.zpa-col-md-3,
.zpa-col-md-4,
.zpa-col-md-5,
.zpa-col-md-6,
.zpa-col-md-7,
.zpa-col-md-8,
.zpa-col-md-9,
.zpa-col-md-10,
.zpa-col-md-11,
.zpa-col-md-12,
.zpa-col-sm-1,
.zpa-col-sm-2,
.zpa-col-sm-3,
.zpa-col-sm-4,
.zpa-col-sm-5,
.zpa-col-sm-6,
.zpa-col-sm-7,
.zpa-col-sm-8,
.zpa-col-sm-9,
.zpa-col-sm-10,
.zpa-col-sm-11,
.zpa-col-sm-12,
.zpa-col-xs-1,
.zpa-col-xs-2,
.zpa-col-xs-3,
.zpa-col-xs-4,
.zpa-col-xs-5,
.zpa-col-xs-6,
.zpa-col-xs-7,
.zpa-col-xs-8,
.zpa-col-xs-9,
.zpa-col-xs-10,
.zpa-col-xs-11,
.zpa-col-xs-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.zpa-col-xs-1,
.zpa-col-xs-2,
.zpa-col-xs-3,
.zpa-col-xs-4,
.zpa-col-xs-5,
.zpa-col-xs-6,
.zpa-col-xs-7,
.zpa-col-xs-8,
.zpa-col-xs-9,
.zpa-col-xs-10,
.zpa-col-xs-11,
.zpa-col-xs-12 {
    float: left
}

.zpa-col-xs-1 {
    width: 8.33333%
}

.zpa-col-xs-2 {
    width: 16.66667%
}

.zpa-col-xs-3 {
    width: 25%
}

.zpa-col-xs-4 {
    width: 33.33333%
}

.zpa-col-xs-5 {
    width: 41.66667%
}

.zpa-col-xs-6 {
    width: 50%
}

.zpa-col-xs-7 {
    width: 58.33333%
}

.zpa-col-xs-8 {
    width: 66.66667%
}

.zpa-col-xs-9 {
    width: 75%
}

.zpa-col-xs-10 {
    width: 83.33333%
}

.zpa-col-xs-11 {
    width: 91.66667%
}

.zpa-col-xs-12 {
    width: 100%
}

.zpa-col-xs-pull-0 {
    right: auto
}

.zpa-col-xs-pull-1 {
    right: 8.33333%
}

.zpa-col-xs-pull-2 {
    right: 16.66667%
}

.zpa-col-xs-pull-3 {
    right: 25%
}

.zpa-col-xs-pull-4 {
    right: 33.33333%
}

.zpa-col-xs-pull-5 {
    right: 41.66667%
}

.zpa-col-xs-pull-6 {
    right: 50%
}

.zpa-col-xs-pull-7 {
    right: 58.33333%
}

.zpa-col-xs-pull-8 {
    right: 66.66667%
}

.zpa-col-xs-pull-9 {
    right: 75%
}

.zpa-col-xs-pull-10 {
    right: 83.33333%
}

.zpa-col-xs-pull-11 {
    right: 91.66667%
}

.zpa-col-xs-pull-12 {
    right: 100%
}

.zpa-col-xs-push-0 {
    left: auto
}

.zpa-col-xs-push-1 {
    left: 8.33333%
}

.zpa-col-xs-push-2 {
    left: 16.66667%
}

.zpa-col-xs-push-3 {
    left: 25%
}

.zpa-col-xs-push-4 {
    left: 33.33333%
}

.zpa-col-xs-push-5 {
    left: 41.66667%
}

.zpa-col-xs-push-6 {
    left: 50%
}

.zpa-col-xs-push-7 {
    left: 58.33333%
}

.zpa-col-xs-push-8 {
    left: 66.66667%
}

.zpa-col-xs-push-9 {
    left: 75%
}

.zpa-col-xs-push-10 {
    left: 83.33333%
}

.zpa-col-xs-push-11 {
    left: 91.66667%
}

.zpa-col-xs-push-12 {
    left: 100%
}

.zpa-col-xs-offset-0 {
    margin-left: 0
}

.zpa-col-xs-offset-1 {
    margin-left: 8.33333%
}

.zpa-col-xs-offset-2 {
    margin-left: 16.66667%
}

.zpa-col-xs-offset-3 {
    margin-left: 25%
}

.zpa-col-xs-offset-4 {
    margin-left: 33.33333%
}

.zpa-col-xs-offset-5 {
    margin-left: 41.66667%
}

.zpa-col-xs-offset-6 {
    margin-left: 50%
}

.zpa-col-xs-offset-7 {
    margin-left: 58.33333%
}

.zpa-col-xs-offset-8 {
    margin-left: 66.66667%
}

.zpa-col-xs-offset-9 {
    margin-left: 75%
}

.zpa-col-xs-offset-10 {
    margin-left: 83.33333%
}

.zpa-col-xs-offset-11 {
    margin-left: 91.66667%
}

.zpa-col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width:768px) {
    .zpa-col-sm-1,
    .zpa-col-sm-2,
    .zpa-col-sm-3,
    .zpa-col-sm-4,
    .zpa-col-sm-5,
    .zpa-col-sm-6,
    .zpa-col-sm-7,
    .zpa-col-sm-8,
    .zpa-col-sm-9,
    .zpa-col-sm-10,
    .zpa-col-sm-11,
    .zpa-col-sm-12 {
        float: left
    }
    .zpa-col-sm-1 {
        width: 8.33333%
    }
    .zpa-col-sm-2 {
        width: 16.66667%
    }
    .zpa-col-sm-3 {
        width: 25%
    }
    .zpa-col-sm-4 {
        width: 33.33333%
    }
    .zpa-col-sm-5 {
        width: 41.66667%
    }
    .zpa-col-sm-6 {
        width: 50%
    }
    .zpa-col-sm-7 {
        width: 58.33333%
    }
    .zpa-col-sm-8 {
        width: 66.66667%
    }
    .zpa-col-sm-9 {
        width: 75%
    }
    .zpa-col-sm-10 {
        width: 83.33333%
    }
    .zpa-col-sm-11 {
        width: 91.66667%
    }
    .zpa-col-sm-12 {
        width: 100%
    }
    .zpa-col-sm-pull-0 {
        right: auto
    }
    .zpa-col-sm-pull-1 {
        right: 8.33333%
    }
    .zpa-col-sm-pull-2 {
        right: 16.66667%
    }
    .zpa-col-sm-pull-3 {
        right: 25%
    }
    .zpa-col-sm-pull-4 {
        right: 33.33333%
    }
    .zpa-col-sm-pull-5 {
        right: 41.66667%
    }
    .zpa-col-sm-pull-6 {
        right: 50%
    }
    .zpa-col-sm-pull-7 {
        right: 58.33333%
    }
    .zpa-col-sm-pull-8 {
        right: 66.66667%
    }
    .zpa-col-sm-pull-9 {
        right: 75%
    }
    .zpa-col-sm-pull-10 {
        right: 83.33333%
    }
    .zpa-col-sm-pull-11 {
        right: 91.66667%
    }
    .zpa-col-sm-pull-12 {
        right: 100%
    }
    .zpa-col-sm-push-0 {
        left: auto
    }
    .zpa-col-sm-push-1 {
        left: 8.33333%
    }
    .zpa-col-sm-push-2 {
        left: 16.66667%
    }
    .zpa-col-sm-push-3 {
        left: 25%
    }
    .zpa-col-sm-push-4 {
        left: 33.33333%
    }
    .zpa-col-sm-push-5 {
        left: 41.66667%
    }
    .zpa-col-sm-push-6 {
        left: 50%
    }
    .zpa-col-sm-push-7 {
        left: 58.33333%
    }
    .zpa-col-sm-push-8 {
        left: 66.66667%
    }
    .zpa-col-sm-push-9 {
        left: 75%
    }
    .zpa-col-sm-push-10 {
        left: 83.33333%
    }
    .zpa-col-sm-push-11 {
        left: 91.66667%
    }
    .zpa-col-sm-push-12 {
        left: 100%
    }
    .zpa-col-sm-offset-0 {
        margin-left: 0
    }
    .zpa-col-sm-offset-1 {
        margin-left: 8.33333%
    }
    .zpa-col-sm-offset-2 {
        margin-left: 16.66667%
    }
    .zpa-col-sm-offset-3 {
        margin-left: 25%
    }
    .zpa-col-sm-offset-4 {
        margin-left: 33.33333%
    }
    .zpa-col-sm-offset-5 {
        margin-left: 41.66667%
    }
    .zpa-col-sm-offset-6 {
        margin-left: 50%
    }
    .zpa-col-sm-offset-7 {
        margin-left: 58.33333%
    }
    .zpa-col-sm-offset-8 {
        margin-left: 66.66667%
    }
    .zpa-col-sm-offset-9 {
        margin-left: 75%
    }
    .zpa-col-sm-offset-10 {
        margin-left: 83.33333%
    }
    .zpa-col-sm-offset-11 {
        margin-left: 91.66667%
    }
    .zpa-col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:992px) {
    .zpa-col-md-1,
    .zpa-col-md-2,
    .zpa-col-md-3,
    .zpa-col-md-4,
    .zpa-col-md-5,
    .zpa-col-md-6,
    .zpa-col-md-7,
    .zpa-col-md-8,
    .zpa-col-md-9,
    .zpa-col-md-10,
    .zpa-col-md-11,
    .zpa-col-md-12 {
        float: left
    }
    .zpa-col-md-1 {
        width: 8.33333%
    }
    .zpa-col-md-2 {
        width: 16.66667%
    }
    .zpa-col-md-3 {
        width: 25%
    }
    .zpa-col-md-4 {
        width: 33.33333%
    }
    .zpa-col-md-5 {
        width: 41.66667%
    }
    .zpa-col-md-6 {
        width: 50%
    }
    .zpa-col-md-7 {
        width: 58.33333%
    }
    .zpa-col-md-8 {
        width: 66.66667%
    }
    .zpa-col-md-9 {
        width: 75%
    }
    .zpa-col-md-10 {
        width: 83.33333%
    }
    .zpa-col-md-11 {
        width: 91.66667%
    }
    .zpa-col-md-12 {
        width: 100%
    }
    .zpa-col-md-pull-0 {
        right: auto
    }
    .zpa-col-md-pull-1 {
        right: 8.33333%
    }
    .zpa-col-md-pull-2 {
        right: 16.66667%
    }
    .zpa-col-md-pull-3 {
        right: 25%
    }
    .zpa-col-md-pull-4 {
        right: 33.33333%
    }
    .zpa-col-md-pull-5 {
        right: 41.66667%
    }
    .zpa-col-md-pull-6 {
        right: 50%
    }
    .zpa-col-md-pull-7 {
        right: 58.33333%
    }
    .zpa-col-md-pull-8 {
        right: 66.66667%
    }
    .zpa-col-md-pull-9 {
        right: 75%
    }
    .zpa-col-md-pull-10 {
        right: 83.33333%
    }
    .zpa-col-md-pull-11 {
        right: 91.66667%
    }
    .zpa-col-md-pull-12 {
        right: 100%
    }
    .zpa-col-md-push-0 {
        left: auto
    }
    .zpa-col-md-push-1 {
        left: 8.33333%
    }
    .zpa-col-md-push-2 {
        left: 16.66667%
    }
    .zpa-col-md-push-3 {
        left: 25%
    }
    .zpa-col-md-push-4 {
        left: 33.33333%
    }
    .zpa-col-md-push-5 {
        left: 41.66667%
    }
    .zpa-col-md-push-6 {
        left: 50%
    }
    .zpa-col-md-push-7 {
        left: 58.33333%
    }
    .zpa-col-md-push-8 {
        left: 66.66667%
    }
    .zpa-col-md-push-9 {
        left: 75%
    }
    .zpa-col-md-push-10 {
        left: 83.33333%
    }
    .zpa-col-md-push-11 {
        left: 91.66667%
    }
    .zpa-col-md-push-12 {
        left: 100%
    }
    .zpa-col-md-offset-0 {
        margin-left: 0
    }
    .zpa-col-md-offset-1 {
        margin-left: 8.33333%
    }
    .zpa-col-md-offset-2 {
        margin-left: 16.66667%
    }
    .zpa-col-md-offset-3 {
        margin-left: 25%
    }
    .zpa-col-md-offset-4 {
        margin-left: 33.33333%
    }
    .zpa-col-md-offset-5 {
        margin-left: 41.66667%
    }
    .zpa-col-md-offset-6 {
        margin-left: 50%
    }
    .zpa-col-md-offset-7 {
        margin-left: 58.33333%
    }
    .zpa-col-md-offset-8 {
        margin-left: 66.66667%
    }
    .zpa-col-md-offset-9 {
        margin-left: 75%
    }
    .zpa-col-md-offset-10 {
        margin-left: 83.33333%
    }
    .zpa-col-md-offset-11 {
        margin-left: 91.66667%
    }
    .zpa-col-md-offset-12 {
        margin-left: 100%
    }
}

.zpa-published-page-holder .zpa-pull-right {
    float: right!important
}

.zpa-published-page-holder .zpa-pull-left {
    float: left!important
}

.zpa-published-page-holder .hide {
    display: none!important
}

.zpa-published-page-holder .show {
    display: block!important
}

.zpa-published-page-holder .hidden {
    display: none!important
}

@-ms-viewport {
    width: device-width
}

@media (max-width:767px) {
    .zpa-hidden-xs {
        display: none!important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .zpa-hidden-sm {
        display: none!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .zpa-hidden-md {
        display: none!important
    }
}

@media (min-width:1200px) {
    .zpa-hidden-lg {
        display: none!important
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio:1) {
    .zpa-hidden-sm {
        display: none!important
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio:2) {
    .zpa-hidden-sm {
        display: none!important
    }
}

@media (max-device-width:736px) and (orientation:portrait) {
    .zpa-hidden-xs {
        display: none!important
    }
}

@media (max-device-width:736px) and (orientation:landscape) {
    .zpa-hidden-xs {
        display: none!important
    }
}

#zp-entity-content-wrapper h1,
#zp-entity-content-wrapper h2,
#zp-entity-content-wrapper h3,
#zp-entity-content-wrapper h4 {
    margin: 0 0 8px;
    font-style: inherit;
    text-decoration: inherit;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: inherit
}

#zp-entity-content-wrapper h1 {
    font-size: 40px
}

#zp-entity-content-wrapper h2 {
    font-size: 32px
}

#zp-entity-content-wrapper h3 {
    font-size: 28px
}

#zp-entity-content-wrapper h4 {
    font-size: 24px
}

@media (max-width:767.98px) {
    #zp-entity-content-wrapper h1,
    #zp-entity-content-wrapper h1>span {
        font-size: 28px!important
    }
    #zp-entity-content-wrapper h2,
    #zp-entity-content-wrapper h2>span {
        font-size: 24px!important
    }
    #zp-entity-content-wrapper h3,
    #zp-entity-content-wrapper h3>span {
        font-size: 20px!important
    }
    #zp-entity-content-wrapper h4,
    #zp-entity-content-wrapper h4>span {
        font-size: 16px!important
    }
}

.zpa-offset-none.zpa-offset-none {
    margin: 0
}

.zpa-no-padding.zpa-no-padding {
    padding: 0
}

.zpa-offset-bottom-xxs {
    margin-bottom: 5px!important
}

.zpa-offset-bottom-xs {
    margin-bottom: 10px!important
}

.zpa-offset-bottom-sm {
    margin-bottom: 20px!important
}

.zpa-offset-bottom-md {
    margin-bottom: 30px!important
}

.zpa-offset-bottom-lg {
    margin-bottom: 40px!important
}

.zpa-offset-bottom-xlg {
    margin-bottom: 50px!important
}

.zpa-offset-bottom-none {
    margin-bottom: 0!important
}

.zpa-offset-top-none {
    margin-top: 0!important
}

.zpa-offset-right-xxs {
    margin-right: 5px!important
}

.zpa-offset-right-xs {
    margin-right: 10px!important
}

.zpa-offset-right-sm {
    margin-right: 20px!important
}

.zpa-offset-right-md {
    margin-right: 30px!important
}

.zpa-offset-right-lg {
    margin-right: 40px!important
}

.zpa-offset-right-none {
    margin-right: 0!important
}

.zpa-offset-left-xs {
    margin-left: 10px!important
}

.zpa-offset-left-sm {
    margin-left: 20px!important
}

.zpa-offset-left-md {
    margin-left: 30px!important
}

.zpa-offset-left-lg {
    margin-left: 40px!important
}

.zpa-offset-left-none {
    margin-left: 0!important
}

@media only screen and (max-width:991px) {
    .zpa-tablet-offset-bottom-xs {
        margin-bottom: 10px!important
    }
    .zpa-tablet-offset-bottom-sm {
        margin-bottom: 20px!important
    }
    .zpa-tablet-offset-bottom-md {
        margin-bottom: 30px!important
    }
    .zpa-tablet-offset-bottom-none {
        margin-bottom: 0!important
    }
    .zpa-tablet-offset-top-xs {
        margin-top: 10px!important
    }
    .zpa-tablet-offset-top-sm {
        margin-top: 20px!important
    }
    .zpa-tablet-offset-top-md {
        margin-top: 30px!important
    }
    .zpa-tablet-offset-top-none {
        margin-top: 0!important
    }
    .zpa-tablet-offset-right-xs {
        margin-right: 10px!important
    }
    .zpa-tablet-offset-right-sm {
        margin-right: 20px!important
    }
    .zpa-tablet-offset-right-md {
        margin-right: 30px!important
    }
    .zpa-tablet-offset-right-lg {
        margin-right: 40px!important
    }
    .zpa-tablet-offset-right-none {
        margin-right: 0!important
    }
    .zpa-tablet-offset-left-xs {
        margin-left: 10px!important
    }
    .zpa-tablet-offset-left-sm {
        margin-left: 20px!important
    }
    .zpa-tablet-offset-left-md {
        margin-left: 30px!important
    }
    .zpa-tablet-offset-left-none {
        margin-left: 0!important
    }
}

@media only screen and (max-width:767px) {
    .zpa-mobile-offset-bottom-xs {
        margin-bottom: 10px!important
    }
    .zpa-mobile-offset-bottom-sm {
        margin-bottom: 20px!important
    }
    .zpa-mobile-offset-bottom-md {
        margin-bottom: 30px!important
    }
    .zpa-mobile-offset-bottom-none {
        margin-bottom: 0!important
    }
    .zpa-mobile-offset-top-xs {
        margin-top: 10px!important
    }
    .zpa-mobile-offset-top-sm {
        margin-top: 20px!important
    }
    .zpa-mobile-offset-top-md {
        margin-top: 30px!important
    }
    .zpa-mobile-offset-top-none {
        margin-top: 0!important
    }
    .zpa-mobile-offset-right-xs {
        margin-right: 10px!important
    }
    .zpa-mobile-offset-right-sm {
        margin-right: 20px!important
    }
    .zpa-mobile-offset-right-md {
        margin-right: 30px!important
    }
    .zpa-mobile-offset-right-none {
        margin-right: 0!important
    }
    .zpa-mobile-offset-left-xs {
        margin-left: 10px!important
    }
    .zpa-mobile-offset-left-sm {
        margin-left: 20px!important
    }
    .zpa-mobile-offset-left-md {
        margin-left: 30px!important
    }
    .zpa-mobile-offset-left-none {
        margin-left: 0!important
    }
}

.zpa-published-page-holder ol,
.zpa-published-page-holder p,
.zpa-published-page-holder ul {
    margin-bottom: 0
}

.zpa-published-page-holder select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000
}

.zpa-published-page-holder .grayscale img {
    filter: grayscale(100%)
}

.zpa-btn-custom {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    border-radius: 0;
    text-align: center;
    overflow: visible;
    text-transform: none;
    vertical-align: middle;
    touch-action: manipulation;
    background-image: none;
    border: 0;
    white-space: normal;
    word-break: break-word;
    word-wrap: break-word;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .2s ease;
    width: auto;
    height: auto;
    will-change: transform
}

.zpa-btn-custom:hover {
    z-index: 2;
    text-decoration: none
}

.zpa-btn-hover--color:hover {
    background-color: var(--hover-background)!important;
    color: var(--hover-color)!important;
    opacity: 1
}

.zpa-btn-hover--opacity:hover {
    opacity: var(--hover-opacity)
}

.zpa-btn-hover--animate:hover {
    animation: var(--hover-animate) 1s
}

.zpa-btn-hover--underline:hover {
    text-decoration: underline!important
}

.zpa-btn-green.zpa-btn-green.zpa-btn-green {
    background-color: #3aaa35;
    color: #fff;
    border-color: rgba(0, 0, 0, .3)
}

.zpa-btn-green.zpa-btn-green.zpa-btn-green:active,
.zpa-btn-green.zpa-btn-green.zpa-btn-green:focus,
.zpa-btn-green.zpa-btn-green.zpa-btn-green:hover {
    background-color: #3aaa35;
    color: #fff
}

.zpa-btn-white {
    border-color: #ccc
}

.zpa-btn-white,
.zpa-btn-white:active,
.zpa-btn-white:focus,
.zpa-btn-white:hover {
    background-color: #fff;
    color: #444
}

.zpa-btn-white.active {
    border-color: rgba(0, 0, 0, .3)
}

.zpa-btn-white.active,
.zpa-btn-white.active:hover {
    background-color: #3aaa35;
    color: #fff
}

.zpa-btn-grey,
.zpa-btn-grey:active,
.zpa-btn-grey:focus,
.zpa-btn-grey:hover {
    color: #fff;
    background-color: #777
}

.zpa-btn-grey-light,
.zpa-btn-grey-light:active,
.zpa-btn-grey-light:focus,
.zpa-btn-grey-light:hover {
    background-color: #f6f6f6;
    color: #b6b6b6
}

.zpa-btn-return-black {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15px;
    left: 22px;
    border: none;
    background-color: transparent;
    font-size: 25px;
    line-height: 20px;
    opacity: .8;
    outline: none
}

.zpa-btn-return-black:hover {
    opacity: 1
}

.zpa-crm-btn-close {
    border-radius: 0;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    padding: 5px
}

.zpa-icon-white {
    fill: #fff
}

.zpa-icon-close-black {
    fill: #000
}

.zpa-icon-dark-gray {
    fill: #222
}

.zpa-icon-lite-gray {
    fill: #999
}

.zpa-icon-green {
    fill: #3aaa35
}

.zpa-icon-currentcolor {
    fill: currentColor
}

.zpa-icon-xs {
    width: 20px;
    height: 20px
}

.zpa-icon-sm {
    width: 30px;
    height: 30px
}

.zpa-icon-md {
    width: 60px;
    height: 60px
}

.zpa-simple-link {
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400
}

.zpa-simple-link:active,
.zpa-simple-link:focus,
.zpa-simple-link:hover {
    color: #5d5d5d;
    text-decoration: none;
    opacity: .8;
    outline: none
}

.zpa-word-wrap {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal
}

.zpa-word-overflow {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.zpa-inline-block {
    display: inline-block
}

.zpa-inline-flex {
    display: inline-flex
}

.zpa-block.zpa-block.zpa-block {
    display: block
}

.zpa-text-left {
    text-align: left
}

.zpa-text-right {
    text-align: right
}

.zpa-text-center {
    text-align: center
}

.zpa-text-justify {
    text-align: justify
}

.zpa-text-nowrap {
    white-space: nowrap
}

.zpa-text-lowercase {
    text-transform: lowercase
}

.zpa-text-uppercase {
    text-transform: uppercase
}

.zpa-text-capitalize {
    text-transform: capitalize
}

.zpa-center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.zpa-color-description {
    color: #6d6d6d
}

.zpa-font-b {
    font-weight: 700!important
}

.zpa-font-n {
    font-weight: 400!important
}

.zpa-fsize-0 {
    font-size: 0
}

.zpa-fsize-xxs {
    font-size: 12px!important
}

.zpa-fsize-xs {
    font-size: 14px!important
}

.zpa-fsize-sm {
    font-size: 16px
}

.zpa-fsize-md {
    font-size: 18px
}

.zpa-fsize-lmd {
    font-size: 20px
}

.zpa-fsize-lg {
    font-size: 30px
}

.zpa-custom-select-title {
    display: block;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0
}

.zpa-custom-select,
.zpa-single-option-selector {
    height: 34px;
    padding: 5px 15px;
    text-align: left;
    border-radius: 2px;
    border: 1px solid #ccc;
    background-color: #fff;
    line-height: 1.5;
    color: #222;
    font-size: 16px;
    transition: border-color .15s ease-in-out
}

.zpa-add-to-cart-btn[disabled],
.zpa-single-option-selector[disabled] {
    background-color: #f6f6f6!important;
    color: #b6b6b6!important
}

.zpa-img-fluid {
    max-width: 100%;
    height: auto
}

.zpa-logo-height-md {
    max-height: 300px
}

.zpa-logo-height-sm {
    max-height: 100px
}

.zpa-list-none {
    list-style: none;
    padding-left: 0;
    font-size: 0
}

.zpa-img-cover {
    width: 100%
}

@media only screen and (max-width:991px) {
    .zpa-tablet-btn-respons {
        padding: 5px 10px
    }
    .zpa-tablet-text-center {
        text-align: center
    }
    .zpa-tablet-text-right {
        text-align: right
    }
    .zpa-tablet-text-left {
        text-align: left
    }
}

@media only screen and (max-width:767px) {
    .zpa-mobile-text-center {
        text-align: center!important
    }
    .zpa-mobile-text-right {
        text-align: right!important
    }
    .zpa-mobile-text-left {
        text-align: left!important
    }
    .zpa-mobile-center-block {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        float: none
    }
    .zpa-mobile-block {
        display: block
    }
    .zpa-mobile-logo-height-lg {
        max-height: 130px
    }
    .zpa-mobile-logo-height-md {
        max-height: 105px
    }
    .zpa-mobile-logo-height-sm {
        max-height: 80px
    }
    .zpa-mobile-logo-height-xs {
        max-height: 50px
    }
}

.unpublished a[data-link][href="#"],
.zpa-btn-disabled,
.zpa-disabled-when-link-empty[href="#"] {
    pointer-events: none;
    cursor: default
}

.zpa-btn-disabled {
    background-color: #d9d9d9!important
}

.popup-opened {
    position: fixed;
    left: 0;
    right: 0
}

.zpa-image--inactive {
    pointer-events: none
}

.zpa-responsive-embed {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: auto
}

.zpa-responsive-embed:before {
    display: block;
    content: ""
}

.zpa-responsive-embed .zpa-responsive-embed-item,
.zpa-responsive-embed embed,
.zpa-responsive-embed iframe,
.zpa-responsive-embed object,
.zpa-responsive-embed video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.zpa-responsive-embed-16by9:before {
    padding-top: 56.25%
}

.zpa-responsive-embed-1by1:before {
    padding-top: 100%;
    background-color: #000
}

.zpa-responsive-embed-1by1 iframe[src$="F&show_text=0&width=560"] {
    padding-top: 22%
}

.zpa-responsive-embed-1by1 .wistia_responsive_padding {
    margin-top: -78%;
    padding-top: 78%!important
}

.zpa-responsive-embed-16by9 iframe[src$="F&show_text=0&width=476"] {
    padding-left: 22%;
    padding-right: 22%;
    background-color: #000
}

.zpa-responsive-embed-16by9 .wistia_responsive_padding {
    margin-top: -56.25%
}

.zpa-published-page-holder .zpa-responsive-embed .mediaWrapper,
.zpa-published-page-holder .zpa-responsive-embed .video-wrapper {
    position: static!important;
    padding: inherit!important;
    width: auto!important;
    height: auto!important
}

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

.zpa-control--top {
    display: flex;
    align-items: flex-start
}

.zpa-control__indicator {
    display: inline-block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #c4c4c4;
    cursor: pointer;
    transition: border .3s ease-out
}

.zpa-control__indicator:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    transform: scale(0);
    transition: transform .2s ease-out
}

.zpa-control__field {
    position: absolute;
    opacity: 0;
    z-index: -1
}

.zpa-control__field:checked+.zpa-control__indicator {
    border-color: #3aaa35
}

.zpa-control__field:checked+.zpa-control__indicator:after {
    transform: scale(.6)
}

.zpa-control__field:focus+.zpa-control__indicator,
.zpa-control__field:hover+.zpa-control__indicator {
    border-color: #2d8329
}

.zpa-control__field[disabled]+.zpa-control__indicator {
    border-color: #f5f5f5;
    background-color: #f5f5f5!important;
    cursor: default
}

.zpa-control-checkbox .zpa-control__field:checked+.zpa-control__indicator {
    background-color: #3aaa35
}

.zpa-control-checkbox .zpa-control__indicator:after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNiAyNiIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPgogIDxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0uMyAxNGMtLjItLjItLjMtLjUtLjMtLjdzLjEtLjUuMy0uN2wxLjQtMS40Yy40LS40IDEtLjQgMS40IDBsLjEuMSA1LjUgNS45Yy4yLjIuNS4yLjcgMEwyMi44IDMuM2guMWMuNC0uNCAxLS40IDEuNCAwbDEuNCAxLjRjLjQuNC40IDEgMCAxLjRsLTE2IDE2LjZjLS4yLjItLjQuMy0uNy4zLS4zIDAtLjUtLjEtLjctLjNMLjUgMTQuMy4zIDE0eiIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 50%
}

.default-styles-wrapper li {
    list-style: inherit
}

.zpa-text__list--deciaml {
    list-style-type: decimal
}

.zpa-text__list--disc {
    list-style-type: disc
}

.zpa-text__list--circle {
    list-style-type: circle
}

.zpa-text__list--square {
    list-style-type: square
}

.zpa-text__list--latin {
    list-style-type: upper-roman
}

.zpa-text__list--roman {
    list-style-type: upper-latin
}

#infiniteoptions-container .spb-productdescfont.spb-productdesctextcolor {
    display: block;
    cursor: default;
    color: #999;
    text-transform: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    text-align: left
}

#infiniteoptions-container .spb-productdescfont.spb-productoptiontextcolor.spb-productoptionbackground {
    height: 34px;
    padding: 5px 15px;
    border-radius: 2px;
    border: 1px solid #ccc;
    background-color: #fff;
    line-height: 1.5;
    color: #222;
    font-size: 14px;
    transition: border-color .15s ease-in-out
}

#infiniteoptions-container select.spb-productdescfont.spb-productoptiontextcolor.spb-productoptionbackground {
    font-family: inherit;
    margin-bottom: 10px;
    width: 100%!important;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3IDMiPiAgPHRpdGxlPiAgICBUcmlhbmdsZSBzZWxlY3QgIDwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjQ0NDIiBkPSJNNyAwTDMuNSAzIDAgMHoiLz48L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    text-indent: .01px;
    cursor: default;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

#infiniteoptions-container input.spb-productdescfont.spb-productoptiontextcolor.spb-productoptionbackground {
    width: 260px;
    margin-bottom: 10px;
    font-family: inherit
}

#infiniteoptions-container textarea.spb-productdescfont.spb-productoptiontextcolor.spb-productoptionbackground {
    width: 260px;
    height: 72px;
    resize: vertical;
    font-family: inherit
}

#infiniteoptions-container select[multiple].spb-productdescfont.spb-productoptiontextcolor.spb-productoptionbackground {
    padding: 5px 10px;
    height: 80px;
    background-image: none
}

#infiniteoptions-container label {
    display: block;
    margin-bottom: 6px
}

#infiniteoptions-container fieldset {
    border: none;
    padding: 0
}

.bold_options .bold_option_title {
    display: block;
    cursor: default;
    color: #999;
    text-transform: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    text-align: left
}

.bold_options .bold_option_radio .bold_option_value_title {
    vertical-align: middle
}

.bold_options .bold_option_value {
    display: block;
    margin: 0;
    line-height: 1.4
}

.bold_options .bold_option {
    margin-bottom: 10px
}

.bold_options .bold_option_checkbox .bold_option_title {
    display: inline
}

.bold_options .bold_option_element input[type=checkbox],
.bold_options .bold_option_element input[type=radio] {
    vertical-align: middle;
    margin: 0
}

.bold_options .bold_option_element select[name] {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3IDMiPiAgPHRpdGxlPiAgICBUcmlhbmdsZSBzZWxlY3QgIDwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjQ0NDIiBkPSJNNyAwTDMuNSAzIDAgMHoiLz48L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    height: 34px;
    padding: 5px 15px;
    background-color: #fff
}

.bold_options .bold_option_element select[multiple=""],
.bold_options .bold_option_element select[name] {
    font-family: inherit;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.bold_options .bold_option_element select[multiple=""] option {
    padding: 0 15px
}

.bold_options .bold_option_element input[type=date],
.bold_options .bold_option_element input[type=email],
.bold_options .bold_option_element input[type=number],
.bold_options .bold_option_element input[type=tel],
.bold_options .bold_option_element input[type=text] {
    width: 100%;
    height: 34px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 5px 15px
}

.bold_options .bold_option_element textarea {
    width: 100%;
    height: 72px;
    resize: vertical;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 2px
}

.bold_options .bold_option_textboxmulti .bold_option_value_title {
    display: block;
    cursor: default;
    color: #999;
    text-transform: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    text-align: left
}

.bold_options .bold_option_dropdown .bold_option_element {
    margin-left: 0
}

.shappify-qty-msg {
    display: flex;
    width: 260px;
    margin-bottom: 20px
}

@media only screen and (max-width:767px) {
    .shappify-qty-msg {
        width: 100%;
        justify-content: center
    }
}

.shappify-qty-msg table {
    width: 260px;
    border-collapse: collapse;
    border-spacing: 0
}

.shappify-qty-msg td,
.shappify-qty-msg th {
    text-align: left;
    padding: 6px;
    border: 1px solid #ddd
}

.shappify-qty-msg th {
    font-weight: 700
}

.zpa-cart-container {
    background-color: #f6f6f6;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    padding-left: 15px;
    padding-right: 15px
}

.custom-template .zpa-cart-container,
.zpa-container .zpa-cart-container {
    margin-left: -15px;
    margin-right: -15px
}

.zpa-shopify-cart-items {
    display: inline-block;
    background-color: #d8d8d8;
    color: #3b3b3b;
    text-align: center;
    border-radius: 100%;
    height: 22px;
    width: 22px;
    line-height: 22px;
    font-size: 11px;
    font-weight: 700;
    margin-left: -3px
}

.zpa-small-shopify-cart {
    display: inline-block;
    height: 20px;
    width: 20px;
    fill: #888
}

.zpa-header-search__form {
    display: flex;
    margin: 0 auto;
    max-width: 360px
}

.zpa-header-search-input {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    color: #444;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ececec;
    border-radius: 0;
    font-size: 16px;
    box-shadow: none;
    height: 38px;
    margin: 0!important;
    -webkit-appearance: none
}

.zpa-header-search-input:focus {
    outline: none;
    box-shadow: none;
    border-color: #ccc
}

.zpa-header-search-input::-webkit-input-placeholder {
    color: #999
}

.zpa-header-search-input:-ms-input-placeholder,
.zpa-header-search-input::-ms-input-placeholder {
    color: #999
}

.zpa-header-search-input::placeholder {
    color: #999
}

.zpa-header-search-button {
    background-color: #ececec;
    min-width: 56px;
    outline: 0;
    margin: 0;
    padding: 3px 0 0;
    opacity: 1
}

.zpa-header-search-button:focus,
.zpa-header-search-button:hover {
    opacity: 1;
    border: 0;
    background-color: #ddd
}

.zpa-header-search__label {
    position: absolute!important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.zpa-account-item-link.zpa-account-item-link {
    display: inline-block;
    color: #888
}

.zpa-account-item-link.zpa-account-item-link:not(:last-of-type) {
    margin-right: 5px
}

.zpa-account-item-link.zpa-account-item-link:focus,
.zpa-account-item-link.zpa-account-item-link:hover {
    text-decoration: underline!important
}

.zpa-link-slash {
    margin-right: 5px;
    color: #888
}

.zpa-account-is_enabled {
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px
}

.zpa-login-block,
.zpa-logout-block {
    display: none
}

.zpa-customer-accounts-enabled .zpa-logout-block {
    display: flex;
    align-items: center
}

.zpa-account-login .zpa-logout-block {
    display: none
}

.constructor-container .zpa-logout-block,
.zpa-account-login .zpa-login-block {
    display: flex;
    align-items: center
}

.constructor-container .zpa-login-block {
    display: none
}

.zpa-icon-grey {
    fill: #888
}

.zpa-navbar-label {
    display: none;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.zpa-navbar-label:hover {
    opacity: .8
}

@media (max-width:767px) {
    .zpa-navbar-label {
        display: flex;
        align-items: center;
        z-index: 999;
        padding-left: 15px;
        padding-right: 15px;
        background: none!important;
        height: 60px
    }
}

.zpa-navbar-menu-title {
    display: none;
    font-size: 16px;
    font-weight: 700;
    color: currentColor
}

.zpa-navigation-list__wrap {
    display: inline-block;
    z-index: 2
}

@media (max-width:767px) {
    .zpa-navigation-list__wrap {
        background-color: #fff;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-left: -15px;
        display: none
    }
}

.zpa-constructor-page-holder .zpa-navigation-list__wrap {
    margin-left: -15px;
    margin-right: -15px
}

.zpa-navigation-list {
    margin-bottom: 0;
    font-size: 0
}

@media (max-width:767px) {
    .zpa-navigation-list {
        height: 0;
        overflow: hidden;
        transition: all .2s ease
    }
    .zpa-navigation-list.btn-editable {
        height: 62px;
        overflow: hidden
    }
}

.zpa-navigation-list-item {
    display: inline-block
}

@media (max-width:767px) {
    .zpa-navigation-list-item {
        display: block;
        border-bottom: 1px solid hsla(0, 0%, 80%, .2);
        width: 100%;
        margin-left: 0
    }
    .zpa-navigation-list-item:first-child {
        border-top: 1px solid hsla(0, 0%, 80%, .2)
    }
    .zpa-navigation-list-item:last-child {
        margin-bottom: 0
    }
}

.zpa-navigation-list-link {
    position: relative;
    display: inline-block;
    line-height: 2.2;
    padding-left: 20px;
    padding-right: 20px;
    transition: all .2s ease
}

@media (max-width:767px) {
    .zpa-navigation-list-link {
        font-size: 14px!important;
        padding: 7px 35px;
        display: block;
        text-align: left;
        line-height: 2;
        background-color: hsla(0, 0%, 100%, .2)
    }
}

.zpa-navigation-list-border .zpa-navigation-list-link {
    border-right-width: 2px;
    border-right-style: solid;
    border-color: currentColor
}

@media (max-width:767px) {
    .zpa-navigation-list-border .zpa-navigation-list-link {
        border-right: none
    }
}

.zpa-navigation-list-border:first-child .zpa-navigation-list-link {
    border-left-width: 2px;
    border-left-style: solid
}

@media (max-width:767px) {
    .zpa-navigation-list-border:first-child .zpa-navigation-list-link {
        border-left: none
    }
}

@media (max-width:991px) {
    .zpa-navigation-main-box {
        width: 100%;
        text-align: center
    }
}

@media (max-width:767px) {
    .zpa-navigation-main-box {
        min-height: 60px;
        padding-top: 0;
        padding-bottom: 0
    }
}

@media (max-width:767px) {
    .zpa-navgation-icon {
        margin-top: 1px;
        display: inline;
        width: 24px;
        height: 24px;
        transition: .2s
    }
}

@media (max-width:767px) {
    .zpa-navigation-toggle:checked+.zpa-navigation-list__wrap {
        display: block;
        position: absolute
    }
    .zpa-navigation-toggle:checked+.zpa-navigation-list__wrap .zpa-navigation-list {
        height: auto;
        transition: all .2s ease
    }
}

.zpa-header-link-border {
    border-right-width: 2px;
    border-right-style: solid;
    border-color: currentColor
}

@media (max-width:991px) {
    .zpa-header-link-border {
        border: none
    }
}

@media (max-width:767px) {
    .zpa-header-link-border {
        padding-left: 17px;
        border-right-width: 2px;
        border-right-style: solid;
        border-color: currentColor
    }
}

@media (max-width:500px) {
    .zpa-header-link-border {
        border-right: none
    }
}

.zpa-cart-icon {
    height: 25px;
    width: 25px
}

.zpa-cart-icon--dark {
    fill: #666
}

.zpa-cart-icon--light {
    fill: #888
}

.zpa-header-cart {
    display: flex;
    align-items: center
}

@media (max-width:992px) {
    .zpa-header-cart {
        justify-content: center
    }
}

.zpa-header-cart--wrap {
    flex-wrap: wrap
}

.zpa-header-cart--space-between {
    justify-content: space-between
}

@media (max-width:992px) {
    .zpa-header-cart--space-between {
        justify-content: center
    }
}

.zpa-header-cart--center {
    justify-content: center
}

.zpa-header-cart--right {
    justify-content: flex-end;
    text-align: right
}

@media (max-width:992px) {
    .zpa-header-cart--right {
        justify-content: center;
        text-align: center
    }
}

@media (max-width:767px) {
    .zpa-header-cart--right .zpa-mobile-btn-center {
        left: calc(50% - 42px)
    }
}

@media (max-width:767px) {
    .zpa-mobile--inline-block {
        display: inline-block
    }
}

.zpa-header--phone-colon {
    font-size: 20px;
    color: #898e91;
    display: none
}

@media (max-width:767px) {
    .zpa-header--phone-colon {
        display: inline-block
    }
}

.zpa-navbar-cart {
    position: relative;
    display: inline-flex;
    align-items: center
}

.zpa-navbar-cart:hover {
    text-decoration: none
}

.zpa-header--colon--mobile {
    position: relative
}

@media (max-width:767px) {
    .zpa-header--colon--mobile:after {
        position: absolute;
        content: ":";
        font-size: 20px;
        color: #898e91;
        top: 0;
        right: -5px
    }
}

@media (max-width:767px) {
    .zpa-navbar-logo--mobile {
        display: none
    }
}

@media (max-width:767px) {
    .zpa-mobile-headline--offset-xs {
        padding-top: 10px
    }
}

.zpa-navbar-order {
    order: 0
}

@media (max-width:767px) {
    .zpa-navbar-order {
        order: 1
    }
}

@media (max-width:767px) {
    .zpa-mobile-navigation-wrapper {
        position: relative
    }
    .zpa-mobile-row-offset-none.zpa-mobile-row-offset-none {
        padding-left: 0;
        padding-right: 0
    }
    .zpa-mobile-absolute-position {
        position: absolute
    }
    .zpa-mobile-btn-center {
        position: relative;
        top: 0;
        left: calc(50% - 32px);
        transform: translateX(-50%)
    }
    .zpa-mobile-logo-center {
        top: 0;
        left: 50%;
        transform: translateX(-50%)
    }
    .zpa-mobile-wrap-btn-cart {
        top: 0;
        left: 70px;
        right: 0;
        height: 60px;
        display: flex;
        align-items: center
    }
    .zpa-mobile-cart--right {
        margin-left: auto
    }
    .zpa-navbar-logo-wrapper {
        background-color: hsla(0, 0%, 100%, .2)
    }
    .zpa-navbar-order {
        order: 1
    }
}

.zpa-icon {
    width: 60px;
    height: 60px
}

@media (max-width:767.98px) {
    .zpa-icon {
        width: 40px;
        height: 40px
    }
}

.zpa-icon-small {
    width: 32px;
    height: 32px
}

path.circle {
    fill: inherit
}

.inner-figure {
    fill: #fff
}

path.inner-figure {
    fill: currentColor
}

.icon-droplet-first {
    display: block;
    fill: #c4c4c4;
    color: #fff
}

.icon-droplet-first:hover {
    color: #fff
}

.zpa-link-icon {
    height: 15px;
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: inherit;
    margin: -3px 7px 0 0
}

@media (max-width:991px) {
    .zpa-link-icon {
        margin-right: 10px
    }
}

.active .icon-droplet-first-facebook,
.icon-droplet-first-facebook:hover {
    fill: #537abb
}

.active .icon-droplet-first-amazon,
.icon-droplet-first-amazon:hover {
    fill: #fbc233
}

.active .icon-droplet-first-blogger,
.icon-droplet-first-blogger:hover {
    fill: #f9c666
}

.active .icon-droplet-first-pinterest,
.icon-droplet-first-pinterest:hover {
    fill: #e95554
}

.active .icon-droplet-first-googleplus,
.icon-droplet-first-googleplus:hover {
    fill: #f14033
}

.active .icon-droplet-first-youtube,
.active .icon-droplet-first-youtube2,
.icon-droplet-first-youtube2:hover,
.icon-droplet-first-youtube:hover {
    fill: #e96349
}

.active .icon-droplet-first-tumblr,
.icon-droplet-first-tumblr:hover {
    fill: #5f8ca8
}

.active .icon-droplet-first-vimeo,
.icon-droplet-first-vimeo:hover {
    fill: #8bcfdd
}

.active .icon-droplet-first-linkedin,
.icon-droplet-first-linkedin:hover {
    fill: #1384c6
}

.active .icon-droplet-first-twitter,
.icon-droplet-first-twitter:hover {
    fill: #78caee
}

.active .icon-droplet-first-apple,
.icon-droplet-first-apple:hover {
    fill: #7f807e
}

.active .icon-droplet-first-behance,
.icon-droplet-first-behance:hover {
    fill: #40bfef
}

.active .icon-droplet-first-flickr,
.icon-droplet-first-flickr:hover {
    fill: #fff
}

.active .icon-droplet-first-rss,
.icon-droplet-first-rss:hover {
    fill: #e29244
}

.active .icon-droplet-first-dribbble,
.icon-droplet-first-dribbble:hover {
    fill: #d07ea2
}

.active .icon-droplet-first-skype,
.icon-droplet-first-skype:hover {
    fill: #498fbf
}

.active .icon-droplet-first-yahoo,
.icon-droplet-first-yahoo:hover {
    fill: #885999
}

.active .icon-droplet-first-windows,
.icon-droplet-first-windows:hover {
    fill: #a9c876
}

.active .icon-droplet-first-appstore,
.icon-droplet-first-appstore:hover {
    fill: #44aed9
}

.active .icon-droplet-first-android,
.icon-droplet-first-android:hover {
    fill: #d0d982
}

.active .icon-droplet-first-instagram,
.icon-droplet-first-instagram:hover {
    fill: #696969
}

.active .icon-droplet-first-forrst,
.icon-droplet-first-forrst:hover {
    fill: #839262
}

.active .icon-droplet-first-cursor,
.icon-droplet-first-cursor:hover {
    fill: #4f73ae
}

.active .icon-droplet-first-dropbox,
.icon-droplet-first-dropbox:hover {
    fill: #90cbe6
}

.active .icon-droplet-first-lastfm,
.icon-droplet-first-lastfm:hover {
    fill: #d55470
}

.active .icon-droplet-first-soundcloud,
.icon-droplet-first-soundcloud:hover {
    fill: #ebc761
}

.active .icon-droplet-first-wordpress,
.icon-droplet-first-wordpress:hover {
    fill: #5ba5d1
}

.active .icon-droplet-first-digg,
.icon-droplet-first-digg:hover {
    fill: #252525
}

.active .icon-droplet-first-stumbleupon,
.icon-droplet-first-stumbleupon:hover {
    fill: #9bc590
}

.active .icon-droplet-first-ebay,
.icon-droplet-first-ebay:hover {
    fill: #d34d48
}

.active .icon-droplet-first-pandora,
.icon-droplet-first-pandora:hover {
    fill: #5267a6
}

.active .icon-droplet-first-deviantart,
.icon-droplet-first-deviantart:hover {
    fill: #698453
}

.active .icon-droplet-first-googledrive,
.icon-droplet-first-googledrive:hover {
    fill: #bbb
}

.active .icon-droplet-first-del_icio_us,
.icon-droplet-first-del_icio_use:hover {
    fill: #4b5588
}

.zpa-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -10px
}

.zpa-social-list__item {
    padding: 10px
}

.zpa-social-list__link:hover {
    text-decoration: none
}

.zpa-social-list__link:focus {
    outline-color: #3aaa35
}

.zpa-social-list__label {
    font-size: 0;
    height: 1px;
    overflow: hidden;
    display: block
}

.zpa-social-list--left {
    justify-content: flex-start
}

@media (max-width:767px) {
    .zpa-social-list--left {
        justify-content: center
    }
}

.zpa-social-list--right {
    justify-content: flex-end
}

@media (max-width:767px) {
    .zpa-social-list--right {
        justify-content: center
    }
}

.zpa-social-list--center {
    justify-content: center
}

.zpa-social-list--sm .zpa-social-list__item {
    padding: 10px
}

.zpa-social-list--sm .zpa-icon {
    height: 40px;
    width: 40px
}

@media (max-width:767px) {
    .zpa-social-list--sm {
        justify-content: center
    }
}

.zpa-grid__row--full.zpa-grid__row--full {
    margin-left: 0;
    margin-right: 0
}

.zpa-grid__row--full.zpa-grid__row--full .ctrl-edit {
    right: 0
}

.zpa-grid__column--full.zpa-grid__column--full {
    padding-left: 0;
    padding-right: 0
}

.divider-style-solid-and-shadow {
    border-top-style: solid;
    height: 10px
}

.zpa-timer-button-wrap {
    justify-content: center
}

@media (max-width:1200px) and (min-width:992px) {
    .zpa-timer-button-wrap {
        font-size: 75px!important
    }
}

@media (max-width:992px) and (min-width:768px) {
    .zpa-timer-button-wrap {
        font-size: 57px!important
    }
}

.zpa-timer-title-button-wrap {
    justify-content: center
}

@media (max-width:1200px) and (min-width:992px) {
    .zpa-timer-title-button-wrap {
        font-size: 24px!important
    }
}

@media (max-width:992px) and (min-width:768px) {
    .zpa-timer-title-button-wrap {
        font-size: 37px!important
    }
}

.zpa-title-timer-button-wrap {
    justify-content: center
}

@media (max-width:1200px) and (min-width:992px) {
    .zpa-title-timer-button-wrap {
        font-size: 48px!important
    }
}

@media (max-width:992px) and (min-width:768px) {
    .zpa-title-timer-button-wrap {
        font-size: 37px!important
    }
}

.zpa-countdown-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    font-size: inherit
}

@media (max-width:767px) and (min-width:375px) {
    .zpa-countdown-wrapper {
        font-size: calc(50px + 9.41475827vw - 34px)!important
    }
}

@media (max-width:374px) {
    .zpa-countdown-wrapper {
        font-size: 44px!important
    }
}

.zpa-countdown-data {
    display: block;
    padding: .2em .2em 0;
    position: relative;
    font-size: inherit
}

.zpa-countdown-data:not(:last-child) span:after {
    content: ":";
    font-size: .55em;
    text-transform: uppercase;
    position: absolute;
    top: calc(50% - .5em);
    right: calc(50% - 1.5em)
}

.countdown-controls-wrap {
    padding-bottom: 20px;
    padding-top: 30px
}

@media (max-width:767px) {
    .countdown-controls-wrap {
        padding-top: 10px
    }
}

.zpa-countdown-info {
    display: block;
    font-weight: 700;
    line-height: .8;
    position: relative;
    letter-spacing: -2px;
    font-size: 1em;
    padding-bottom: .1em
}

.zpa-countdown-data-info {
    font-size: .2em;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    justify-content: center
}

@media (max-width:460px) {
    .zpa-countdown-title {
        font-size: 32px!important
    }
}

.zpa-headline-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap
}

@media (max-width:767px) {
    .zpa-headline-divider-container {
        white-space: normal
    }
}

.zpa-headline-divider-container h1,
.zpa-headline-divider-container h2,
.zpa-headline-divider-container h3,
.zpa-headline-divider-container h4 {
    margin: 0!important;
    padding: 0!important
}

.zpa-headline-divider-container .divider-style-solid-and-shadow {
    margin-top: 5px
}

.zpa-headline-divider-block {
    margin: 0 15px;
    flex-shrink: 0;
    max-width: 60%
}

.zpa-countdown-special-offer-wrap {
    display: inline-block;
    padding-bottom: .3em;
    position: relative;
    overflow: hidden;
    font-size: 20px
}

@media (max-width:374px) {
    .zpa-countdown-special-offer-wrap {
        font-size: 48px!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .zpa-countdown-special-offer-wrap {
        font-size: 48px!important
    }
}

.zpa-countdown-special-offer-wrap .zpa-countdown-wrapper {
    border-right: 2px solid #666;
    border-left: 2px solid #666;
    position: relative;
    height: 1.27em;
    margin-top: -.25em
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data {
    text-align: center
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data:not(:last-child) span:after {
    content: ":";
    font-size: .55em;
    text-transform: uppercase;
    position: absolute;
    top: calc(50% - .5em);
    right: calc(50% - 1.5em)
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data:not(:first-child) {
    margin-left: 0
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data-info {
    font-size: .4em;
    font-weight: 700;
    color: #666;
    margin-left: -1em;
    margin-right: -1em;
    padding-left: .2em
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data-info:after,
.zpa-countdown-special-offer-wrap .zpa-countdown-data-info:before {
    border-bottom: 2px solid #666;
    content: "";
    display: block;
    position: relative;
    top: -.55em;
    width: 42%
}

@media (max-width:767px) and (min-width:656px) {
    .zpa-countdown-special-offer-wrap .zpa-countdown-data-info:after,
    .zpa-countdown-special-offer-wrap .zpa-countdown-data-info:before {
        top: -.8em
    }
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data-info:before {
    right: 5%
}

.zpa-countdown-special-offer-wrap .zpa-countdown-data-info:after {
    left: 5%
}

.zpa-countdown-special-offer-wrap .zpa-timer-header-title {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: .4em;
    margin-top: 0;
    display: flex;
    font-weight: 700;
    justify-content: center;
    white-space: nowrap;
    color: #666
}

.zpa-countdown-special-offer-wrap .zpa-timer-header-title:after,
.zpa-countdown-special-offer-wrap .zpa-timer-header-title:before {
    border-bottom: 2px solid #666;
    content: "";
    display: block;
    position: relative;
    top: -.6em;
    width: 42%
}

.zpa-countdown-special-offer-wrap .zpa-timer-header-title:before {
    right: 2%
}

.zpa-countdown-special-offer-wrap .zpa-timer-header-title:after {
    left: 2%
}

.zpa-block-image--float {
    float: left;
    z-index: 150
}

@media (max-width:767px) {
    .zpa-block-image--float {
        float: none
    }
}

@media (min-width:768px) {
    .zpa-block-image {
        max-width: 250px
    }
}

.zpa-testimonial-wrap {
    position: relative
}

.zpa-quote-mark {
    display: none
}

.zpa-icon-testimonial-light {
    fill: #dedede
}

.zpa-quoted {
    padding: 15px 70px
}

.zpa-quoted~.zpa-quote-mark {
    display: block;
    position: absolute;
    width: 50px;
    height: 48px
}

@media (max-width:767px) {
    .zpa-quoted~.zpa-quote-mark {
        width: 30px;
        height: 30px
    }
}

.zpa-quoted~.zpa-quote-mark.zpa-quote-mark-left {
    top: 0;
    left: 0
}

.zpa-quoted~.zpa-quote-mark.zpa-quote-mark-right {
    bottom: 0;
    right: 0
}

.zpa-quoted~.zpa-quote-mark .zpa-icon-testimonial-light {
    width: 50px;
    height: 50px
}

@media (max-width:767px) {
    .zpa-quoted~.zpa-quote-mark .zpa-icon-testimonial-light {
        width: 30px;
        height: 30px
    }
}

@media (max-width:767px) {
    .zpa-quoted {
        padding: 6px 40px
    }
}

.zpa-reviews-wrap .spr-badge,
.zpa-reviews-wrap .spr-header-title,
.zpa-reviews-wrap .spr-loading {
    *zoom: 1
}

.zpa-reviews-wrap .spr-loading {
    display: block;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 24px;
    text-align: center
}

.zpa-reviews-wrap .spr-loading:after,
.zpa-reviews-wrap .spr-loading:before {
    content: " ";
    display: table
}

.zpa-reviews-wrap .spr-loading:after {
    clear: both
}

.zpa-reviews-wrap .spr-header-title {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 700
}

.zpa-reviews-wrap .spr-badge {
    min-height: auto;
    min-width: auto;
    display: block
}

.zpa-reviews-wrap .spr-review-content-body {
    margin: 0;
    word-wrap: break-word
}

.zpa-reviews-wrap .spr-badge-starrating {
    margin: 0 3px 0 0
}

.zpa-reviews-wrap .spr-badge-starrating .spr-icon {
    font-size: 100%
}

.zpa-reviews-wrap .spr-summary-actions-newreview {
    float: right;
    color: #1a1a1a;
    font-size: 15px
}

.zpa-reviews-wrap .spr-summary-actions-newreview:focus,
.zpa-reviews-wrap .spr-summary-actions-newreview:hover {
    opacity: .7;
    color: #1a1a1a
}

@media only screen and (max-width:480px) {
    .zpa-reviews-wrap .spr-summary-actions-newreview {
        float: none;
        *zoom: 1
    }
}

.zpa-reviews-wrap .spr-form-title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    font-weight: 700;
    color: #1a1a1a
}

.zpa-reviews-wrap .spr-summary-actions-togglereviews {
    font-size: 15px;
    color: #666;
    line-height: 1.6
}

.zpa-reviews-wrap .spr-form-input-email,
.zpa-reviews-wrap .spr-form-input-text,
.zpa-reviews-wrap .spr-form-input-textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    background-color: #f4f4f4;
    color: #666;
    border: 0;
    padding: 13px 15px
}

.zpa-reviews-wrap .spr-form-input-email:focus,
.zpa-reviews-wrap .spr-form-input-text:focus,
.zpa-reviews-wrap .spr-form-input-textarea:focus {
    outline-color: #3b99fc
}

.zpa-reviews-wrap .spr-form-input-email::-webkit-input-placeholder,
.zpa-reviews-wrap .spr-form-input-text::-webkit-input-placeholder,
.zpa-reviews-wrap .spr-form-input-textarea::-webkit-input-placeholder {
    color: #c8c8c8
}

.zpa-reviews-wrap .spr-form-input-email:-ms-input-placeholder,
.zpa-reviews-wrap .spr-form-input-email::-ms-input-placeholder,
.zpa-reviews-wrap .spr-form-input-text:-ms-input-placeholder,
.zpa-reviews-wrap .spr-form-input-text::-ms-input-placeholder,
.zpa-reviews-wrap .spr-form-input-textarea:-ms-input-placeholder,
.zpa-reviews-wrap .spr-form-input-textarea::-ms-input-placeholder {
    color: #c8c8c8
}

.zpa-reviews-wrap .spr-form-input-email::placeholder,
.zpa-reviews-wrap .spr-form-input-text::placeholder,
.zpa-reviews-wrap .spr-form-input-textarea::placeholder {
    color: #c8c8c8
}

.zpa-reviews-wrap .spr-form-label {
    color: #666;
    line-height: 1.6;
    font-weight: 400
}

.zpa-reviews-wrap .spr-form-input-error,
.zpa-reviews-wrap input[type=email].spr-form-input-error,
.zpa-reviews-wrap input[type=text].spr-form-input-error {
    border: 1px solid #c0363a
}

.zpa-reviews-wrap .spr-pagination a {
    font-size: 16px
}

.zpa-reviews-wrap .spr-pagination a,
.zpa-reviews-wrap .spr-review-reportreview {
    color: #1a1a1a;
    opacity: .8
}

.zpa-reviews-wrap .spr-pagination a:focus,
.zpa-reviews-wrap .spr-pagination a:hover,
.zpa-reviews-wrap .spr-review-reportreview:focus,
.zpa-reviews-wrap .spr-review-reportreview:hover {
    opacity: 1
}

.zpa-reviews-wrap .spr-starrating.spr-form-input-error a {
    color: #c0363a
}

.zpa-reviews-wrap .spr-form-message-error {
    background: #c0363a;
    color: #fff
}

.zpa-reviews-wrap .spr-button,
.zpa-reviews-wrap .spr-button-primary {
    width: auto;
    margin: 0;
    min-height: 1em;
    padding: 15px 45px;
    font-weight: 700;
    color: #fff;
    background-color: #444745;
    letter-spacing: .05em;
    font-size: 16px;
    opacity: 1;
    text-transform: capitalize
}

.zpa-reviews-wrap .spr-button-primary:focus,
.zpa-reviews-wrap .spr-button-primary:hover,
.zpa-reviews-wrap .spr-button:focus,
.zpa-reviews-wrap .spr-button:hover {
    background-color: #000;
    color: #fff;
    opacity: 1
}

.zpa-reviews-wrap .spr-review-header-title {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 0;
    border: none;
    font-weight: 700
}

.zpa-reviews-wrap .spr-review-reply-body {
    margin: 0 0 12px
}

.zpa-brands {
    display: flex;
    justify-content: space-around;
    align-items: center
}

@media (max-width:767px) {
    .zpa-brands {
        flex-wrap: wrap
    }
}

.zpa-brands__list {
    padding: 10px
}

@media (max-width:767px) {
    .zpa-brands__list {
        padding: 5px;
        flex-basis: 25%;
        flex-grow: 1;
        flex-shrink: 0
    }
}

.zpa-best-value {
    border: 5px solid #3aaa35;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px
}

.zpa-product-label-box {
    overflow: hidden;
    position: absolute;
    width: 130px;
    height: 130px;
    top: 0;
    right: 0
}

.zpa-best-value-corner {
    position: absolute;
    top: -6px;
    right: -80px;
    left: auto;
    width: 200px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;
    transform: rotate(45deg);
    word-break: break-word;
    word-wrap: break-word;
    padding-top: 20px;
    z-index: 1
}

.zpa-best-value-corner-text {
    display: inline-block;
    padding-left: 55px;
    padding-right: 69px;
    line-height: 18px;
    vertical-align: middle;
    text-decoration: inherit
}

.zpa-best-value--offset {
    padding-left: 15px;
    padding-right: 15px
}

.zpa-timer-wrap {
    padding-left: 0;
    margin: 0;
    display: flex
}

@media (max-width:767px) and (min-width:375px) {
    .zpa-timer-wrap {
        font-size: calc(2px + 6.7vw)!important
    }
}

@media (max-width:374px) {
    .zpa-timer-wrap {
        font-size: 23px!important
    }
}

.zpa-timer-item {
    display: inline-flex;
    align-items: baseline;
    padding: .1em .12em
}

.zpa-timer-item-counter {
    display: block;
    font-weight: 700;
    line-height: 1;
    padding-right: .12em
}

.zpa-timer-item-date {
    font-size: .7em;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 300
}

@media (max-width:992px) {
    .zpa-tablet-image-holiday {
        max-height: 56px
    }
}

.js-best-value-not-select .zpa-best-value,
.js-best-value-not-select .zpa-bv2-border.zpa-bv2-border {
    border: 2px solid #ccc!important
}

.js-best-value-not-select .zpa-product-label-box {
    display: none
}

@media (max-width:767px) {
    .zpa-product__container--mobile--offset:not(: last-of-type) {
        margin-bottom: 20px
    }
}

.zpa-bv2-margin-h-none.zpa-bv2-margin-h-none {
    margin-left: 0;
    margin-right: 0
}

.zpa-bv2 .zpa-bv2-label {
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 0
}

@media (min-width:768px) {
    .zpa-bv2 .zpa-bv2-label {
        margin-top: -20px;
        margin-bottom: -20px
    }
}

@media (max-width:767px) {
    .zpa-bv2 .zpa-bv2-label {
        margin-top: -20px
    }
}

.zpa-bv2:not(:last-of-type) {
    margin-bottom: 20px
}

.zpa-bv2-label-text-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

@media (min-width:768px) {
    .zpa-bv2-label-text {
        transform: rotate(-180deg);
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        white-space: nowrap;
        max-width: 100%;
        line-height: 2;
        line-height: -moz-block-height
    }
}

@media (max-width:767px) {
    .zpa-bv2-label-text {
        line-height: 2
    }
}

.zpa-bv2-label-wrap {
    display: inline-flex;
    justify-content: center
}

.zpa-bv2-content-block {
    height: 100%
}

.zpa-bv2-label-grow.zpa-bv2-label-grow {
    flex-grow: 1
}

.zpa-bv2-image {
    align-self: center
}

.zpa-bv2-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center
}

.zpa-bv2-border {
    padding-top: 20px;
    padding-bottom: 20px
}

.zpa-bv2-label-text-wrap {
    background-color: #3aaa35
}

.zpa-bv2-border {
    border: 5px solid #3aaa35
}

.zpa-bv2-variants-form {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 260px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.zpa-overflow {
    overflow: hidden
}

.zpa-offer-box {
    background-color: #fff
}

.zpa-voffset-top--xs {
    padding-top: 10px
}

.zpa-offer-price {
    padding-top: 20px;
    padding-bottom: 10px
}

.zpa-offer-price--ls {
    letter-spacing: 1.4px
}

.zpa-offer-price__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1
}

.zpa-bv3-container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px
}

.js-bv3-not-select {
    padding-top: 20px;
    padding-bottom: 20px
}

.zpa-offer-price__item--center {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.zpa-tabs__container {
    display: inline-flex
}

.zpa-tabs__button {
    padding: 13px 37px;
    font-size: 14px;
    border-style: solid
}

.zpa-tabs__button:focus {
    outline: none
}

@media (max-width:768px) {
    .zpa-tabs__button {
        padding: 10px 15px
    }
}

.zpa-tabs__item:first-child .zpa-tabs__button {
    border-right: none
}

.zpa-tabs__item:last-child .zpa-tabs__button {
    border-left: none
}

.zpa-product__label {
    padding: 5px 15px 10px;
    margin: -30px -30px 30px
}

.zpa-rch-subscription--content {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border: 3px solid #ccc
}

.zpa-rch-subscription.js-best-value-not-select {
    margin-top: 40px
}

@media (max-width:768px) {
    .zpa-rch-subscription.js-best-value-not-select {
        margin-top: 0
    }
}

.zpa-page-form {
    width: 90%;
    max-width: 360px
}

.zpa-page-form__fieldset {
    border: none;
    padding: 0;
    margin: 0 0 15px
}

.zpa-page-form__list {
    list-style: none;
    margin-top: 0;
    padding-left: 0
}

.zpa-page-form__field {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 13px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.42857;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 2px solid #e6e6e6;
    border-radius: 3px;
    box-shadow: none;
    transition: border .2s;
    will-change: border;
    -webkit-appearance: none
}

.zpa-page-form__field:focus,
.zpa-page-form__field:hover {
    border: 2px solid #c4c4c4
}

.zpa-page-form__field::-webkit-input-placeholder {
    color: #666
}

.zpa-page-form__field:-ms-input-placeholder,
.zpa-page-form__field::-ms-input-placeholder {
    color: #666
}

.zpa-page-form__field::placeholder {
    color: #666
}

.zpa-page-form__description {
    font-size: 14px;
    font-weight: 400;
    color: #999
}

.zpa-footer-block.zpa-footer-block {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:767px) {
    .zpa-footer-block.zpa-footer-block {
        flex-direction: column
    }
}

.zpa-footer-link__border:not(:first-child) {
    border-left: 1px solid #3b3b3b
}

@media (max-width:767px) {
    .zpa-footer-link__border:not(: first-child) {
        border-left: none
    }
}

.zpa-socials-list {
    display: block;
    line-height: 0;
    padding: 0;
    vertical-align: middle;
    margin-left: -10px;
    margin-right: -10px
}

@media (max-width:767px) {
    .zpa-socials-list {
        text-align: center
    }
}

.zpa-socials-list li {
    display: inline-block;
    margin: 15px 10px;
    padding: 0
}

.zpa-small-brand-img {
    max-width: 100%;
    max-height: 27px
}

.cluster-padding-xsmall {
    padding: 0 1.28%
}

.cluster-padding-small {
    padding: 10px 1.28%
}

.cluster-padding-medium {
    padding: 20px 1.28%
}

.cluster-padding-large {
    padding: 30px 1.28%
}

@media (max-width:767px) {
    .cluster-padding-large,
    .cluster-padding-medium,
    .cluster-padding-small {
        padding-top: 10px;
        padding-bottom: 10px
    }
}

.zpa-cluster-img-auto {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto
}

.zpa-wrapper-video-xlarge {
    max-width: 1140px;
    width: 100%;
    height: auto
}

.zpa-wrapper-video-large {
    max-width: 960px;
    width: 100%;
    height: auto
}

.zpa-wrapper-video-medium {
    max-width: 600px;
    width: 100%;
    height: auto
}

.zpa-wrapper-video-small {
    max-width: 300px;
    width: 100%;
    height: auto
}

.zpa-wrapper-image-xlarge {
    max-width: 1140px;
    width: 100%;
    height: auto
}

.zpa-wrapper-image-large {
    max-width: 960px;
    width: 100%;
    height: auto
}

.zpa-wrapper-image-medium {
    max-width: 600px;
    width: 100%;
    height: auto
}

.zpa-wrapper-image-small {
    max-width: 300px;
    width: 100%;
    height: auto
}

.zpa-countdown-hidden {
    display: none
}

.zpa-countdown-info-opacity {
    opacity: .5
}

.zpa-list-unstyled {
    padding-left: 0;
    list-style: none
}

.divider-thickness-small {
    border-top-width: 1px
}

.divider-thickness-medium {
    border-top-width: 2px
}

.divider-thickness-large {
    border-top-width: 3px
}

.divider-thickness-xlarge {
    border-top-width: 20px
}

.divider-style-dashed {
    border-top-style: dashed
}

.divider-style-dotted {
    border-top-style: dotted
}

.divider-style-solid {
    border-top-style: solid
}

.divider-width-full-width {
    width: 100%
}

.divider-width-xlarge {
    max-width: 1140px;
    width: 100%
}

.divider-width-large {
    max-width: 960px;
    width: 100%
}

.divider-width-medium {
    max-width: 600px;
    width: 100%
}

.divider-width-small {
    max-width: 300px;
    width: 100%
}

.zpa-border-thickness-small {
    border-width: 2px
}

.zpa-border-thickness-medium {
    border-width: 4px
}

.zpa-border-thickness-large {
    border-width: 6px
}

.zpa-border-style-dashed {
    border-style: dashed
}

.zpa-border-style-dotted {
    border-style: dotted
}

.zpa-border-style-solid {
    border-style: solid
}

.zpa-border-style-none {
    border: none
}

.zpa-product-variants-form-center {
    margin-left: auto;
    margin-right: auto
}

.zpa-product-variants-form-center,
.zpa-product-variants-form-left {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    max-width: 260px
}

@media (max-width:767px) {
    .zpa-product-variants-form-left {
        margin-left: auto;
        margin-right: auto
    }
}

.zpa-selector-wrapper label {
    display: block;
    cursor: default;
    color: #999;
    text-transform: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    text-align: left
}

.zpa-quantity {
    max-width: 129px;
    width: 100%
}

.zpa-quantity-block {
    display: flex;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    height: 34px
}

.zpa-quantity-block[disabled] {
    opacity: .7;
    background-color: #f6f6f6;
    border-color: #b6b6b6
}

.zpa-quantity-block--inactive {
    pointer-events: none
}

.zpa-quantity-block .zpa-quantity-field {
    font-family: inherit;
    display: block;
    margin: 0;
    border: 0;
    padding: 0;
    height: auto;
    width: 100%;
    min-height: 0;
    text-align: center;
    font-size: 16px;
    color: #3b3b3b!important;
    background-color: #fff;
    flex-grow: 1;
    flex-basis: 0
}

.zpa-quantity-block .zpa-quantity-field:focus {
    outline: none
}

.zpa-quantity-block .zpa-quantity-field::-webkit-input-placeholder {
    color: #b3b3b3
}

.zpa-quantity-block .zpa-quantity-field:-ms-input-placeholder,
.zpa-quantity-block .zpa-quantity-field::-ms-input-placeholder {
    color: #b3b3b3
}

.zpa-quantity-block .zpa-quantity-field::placeholder {
    color: #b3b3b3
}

.zpa-quantity-btn {
    background-color: transparent;
    padding: 0 11px;
    transition: background-color .2s;
    z-index: 1;
    min-height: 0
}

.zpa-quantity-btn:not([disabled]):focus,
.zpa-quantity-btn:not([disabled]):hover,
.zpa-quantity-btn[disable]:hover {
    background-color: rgba(59, 59, 59, .15);
    opacity: 1
}

.zpa-quantity-icon {
    width: 12px;
    height: 12px;
    fill: #3b3b3b
}

.zpa-single-option-selector {
    font-family: inherit;
    margin-bottom: 10px;
    width: 100%!important;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3IDMiPiAgPHRpdGxlPiAgICBUcmlhbmdsZSBzZWxlY3QgIDwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjQ0NDIiBkPSJNNyAwTDMuNSAzIDAgMHoiLz48L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    text-indent: .01px;
    cursor: default;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.zpa-offset-right:not(:empty) {
    margin-right: 5px
}

.zpa-price-center {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto
}

.zpa-price-left {
    max-width: 260px;
    text-align: left
}

@media (max-width:767px) {
    .zpa-price-left {
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }
}

.zpa-regular-price {
    font-size: 30px
}

.zpa-compare-price,
.zpa-regular-price {
    font-family: inherit;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap
}

.zpa-compare-price {
    font-size: 20px;
    color: #999
}

.zpa-compare-price,
.zpa-text--through {
    text-decoration: line-through
}

[data-description]:empty {
    margin-bottom: 0
}

.zpa-block__image--xs {
    max-width: 100%;
    max-height: 27px
}

.zpa-flex__wrap {
    display: flex;
    flex-wrap: wrap
}

.zpa-flex--between {
    justify-content: space-between
}

.zpa-flex--center {
    align-items: center;
    justify-content: center
}

@media (max-width:767px) {
    .zpa-cluster-padding-none {
        padding-top: 0;
        padding-bottom: 0
    }
}

.zpa-voffset--xs {
    padding-top: 5px;
    padding-bottom: 5px
}

.flex-grow-1 {
    flex-grow: 1
}

.zpa-button-none {
    font-size: 14px
}

.zpa-button-padding-xsmall {
    padding: 6px 18px
}

@media (max-width:991.98px) {
    .zpa-button-padding-xsmall {
        padding: 5px 16px
    }
}

@media (max-width:767.98px) {
    .zpa-button-padding-xsmall {
        padding: 4px 12px
    }
}

.zpa-button-padding-none {
    padding: 0
}

.zpa-button-padding-small {
    padding: 12px 36px
}

@media (max-width:991.98px) {
    .zpa-button-padding-small {
        padding: 10px 22px
    }
}

@media (max-width:767.98px) {
    .zpa-button-padding-small {
        padding: 9px 20px
    }
}

.zpa-button-padding-medium {
    padding: 16px 48px
}

@media (max-width:991.98px) {
    .zpa-button-padding-medium {
        padding: 14px 32px
    }
}

@media (max-width:767.98px) {
    .zpa-button-padding-medium {
        padding: 12px 24px
    }
}

.zpa-button-padding-large {
    padding: 20px 60px
}

@media (max-width:991.98px) {
    .zpa-button-padding-large {
        padding: 16px 40px
    }
}

@media (max-width:767.98px) {
    .zpa-button-padding-large {
        padding: 14px 28px
    }
}

.zpa-button-size-small {
    width: 30%
}

.zpa-button-size-medium {
    width: 50%
}

.zpa-button-size-full-width {
    width: 100%
}

.zpa-button-alignment-center {
    text-align: center
}

.zpa-button-alignment-left {
    text-align: left
}

.zpa-button-alignment-right {
    text-align: right
}

.zpa-button-xsmall {
    padding: 6px 18px;
    font-size: 14px
}

@media (max-width:991.98px) {
    .zpa-button-xsmall {
        padding: 5px 16px;
        font-size: 13px
    }
}

@media (max-width:767.98px) {
    .zpa-button-xsmall {
        padding: 4px 12px;
        font-size: 12px
    }
}

.zpa-button-small {
    padding: 12px 36px;
    font-size: 14px
}

@media (max-width:991.98px) {
    .zpa-button-small {
        padding: 10px 22px;
        font-size: 13px
    }
}

@media (max-width:767.98px) {
    .zpa-button-small {
        padding: 9px 20px;
        font-size: 12px
    }
}

.zpa-button-medium {
    padding: 16px 48px;
    font-size: 18px
}

@media (max-width:991.98px) {
    .zpa-button-medium {
        padding: 14px 32px;
        font-size: 16px
    }
}

@media (max-width:767.98px) {
    .zpa-button-medium {
        padding: 12px 24px;
        font-size: 14px
    }
}

.zpa-button-large {
    padding: 20px 60px;
    font-size: 20px
}

@media (max-width:991.98px) {
    .zpa-button-large {
        padding: 16px 40px;
        font-size: 18px
    }
}

@media (max-width:767.98px) {
    .zpa-button-large {
        padding: 14px 28px;
        font-size: 16px
    }
}

.zpa-button-xlarge {
    padding: 24px 72px;
    font-size: 24px
}

@media (max-width:991.98px) {
    .zpa-button-xlarge {
        padding: 20px 46px;
        font-size: 22px
    }
}

@media (max-width:767.98px) {
    .zpa-button-xlarge {
        padding: 14px 32px;
        font-size: 20px
    }
}

.zpa-button-full-width {
    padding: 24px 48px;
    font-size: 24px;
    width: 100%
}

@media (max-width:991.98px) {
    .zpa-button-full-width {
        padding: 20px 46px;
        font-size: 22px
    }
}

@media (max-width:767.98px) {
    .zpa-button-full-width {
        padding: 14px 32px;
        font-size: 20px
    }
}

@media (max-width:767.98px) {
    .zpa-mobile-btn-size {
        font-size: 16px!important
    }
    .zpa-mobile-btn-size:not(.zpa-button-size-full-width) {
        width: 84%!important
    }
}

.zpa-product-message-wrap {
    position: relative
}

.zpa-product-message-wrap .zpa-product-message {
    position: absolute;
    left: 3%;
    top: 0;
    padding: 10px 14px;
    margin-top: 10px;
    color: #fff;
    border-radius: 2px;
    z-index: 10;
    max-width: 250px;
    width: 100%;
    word-break: break-word;
    word-wrap: break-word
}

@media only screen and (max-width:767px) {
    .zpa-product-message-wrap .zpa-product-message {
        left: 50%;
        transform: translateX(-50%)
    }
    .zpa-product-message-wrap .zpa-product-message:before {
        right: 30%;
        left: auto
    }
}

.zpa-product-message-wrap .zpa-product-message:before {
    content: "";
    width: 0;
    height: 0;
    border: 8px solid transparent;
    position: absolute;
    top: -16px;
    left: 20%
}

.zpa-product-message-wrap .product-error {
    background-color: rgba(234, 58, 58, .8)
}

@media only screen and (max-width:767px) {
    .zpa-product-message-wrap .product-error {
        left: 30%;
        transform: translateX(-30%)
    }
}

.zpa-product-message-wrap .product-error:before {
    border-bottom-color: rgba(234, 58, 58, .8)
}

@media only screen and (max-width:767px) {
    .zpa-product-message-wrap .product-error:before {
        right: 30%;
        left: auto
    }
}

.zpa-product-message-wrap .product-success {
    background-color: rgba(58, 170, 53, .8)
}

.zpa-product-message-wrap .product-success:before {
    border-bottom-color: rgba(58, 170, 53, .8)
}

.zpa-product-message-wrap-center .zpa-product-message {
    left: 30%;
    transform: translateX(-30%)
}

.zpa-product-message-wrap-center .zpa-product-message:before {
    left: auto;
    right: 20%
}

.zpa-product-message-wrap-center .product-error:before {
    left: 20%
}

.overlay-hidden {
    width: 100%;
    height: 100%;
    overflow: hidden!important;
    position: fixed!important
}

.zpa-crm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: auto;
    overflow-y: scroll;
    background: rgba(25, 25, 25, .8)
}

.zpa-crm-popup-wrap {
    width: 90%;
    overflow: visible;
    max-width: 632px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    max-height: 516px;
    -webkit-overflow-scrolling: touch
}

.zpa-crm-popup-wrap .hidden {
    display: none!important
}

.zpa-crm-popup-wrap .zpa-crm-popup-form {
    font-family: Lato, Roboto, Fira Sans, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    background: #fff
}

.zpa-crm-popup-wrap .zpa-crm-popup-header {
    text-align: right;
    padding: 6px 5px 4px
}

.zpa-crm-popup-wrap .zpa-crm-popup-btn-close {
    width: 34px;
    height: 34px;
    padding: 5px;
    cursor: pointer;
    touch-action: manipulation;
    background-image: none;
    background: transparent;
    border: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity .2s, background-color .2s;
    will-change: background-color
}

.zpa-crm-popup-wrap .zpa-crm-popup-btn-close:focus,
.zpa-crm-popup-wrap .zpa-crm-popup-btn-close:hover {
    outline: none;
    opacity: .8;
    background-color: #f5f5f5
}

.zpa-crm-popup-wrap .zpa-crm-popup-btn-close-icon {
    fill: #999;
    width: 100%;
    height: 100%
}

.zpa-crm-popup-wrap .zpa-crm-popup-body {
    padding: 0 56px 16px
}

@media (max-width:767px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-body {
        padding-left: 20px;
        padding-right: 20px
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-progressbar-wrap {
    margin-bottom: 26px
}

.zpa-crm-popup-wrap .zpa-crm-popup-title {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.2;
    text-align: center;
    max-width: 350px;
    margin: 0 auto 32px
}

@media (max-width:767px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-title {
        max-width: 80%;
        font-size: 16px!important;
        margin-bottom: 20px
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-form-container {
    display: flex;
    margin-bottom: 24px;
    margin-left: -12px;
    margin-right: -12px
}

@media (max-width:628px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-form-container {
        flex-direction: column
    }
}

@media (max-width:767px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-form-container {
        margin-bottom: 12px
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-field-wrap {
    display: flex
}

@media (max-width:488px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-field-wrap {
        flex-direction: column
    }
}

.zpa-crm-popup-wrap input[type=email] {
    margin-bottom: 0
}

.zpa-crm-popup-wrap .zpa-crm-popup-field {
    display: block;
    min-width: 0;
    width: 100%;
    height: 40px;
    padding: 6px 13px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.42857;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 2px solid #e6e6e6;
    border-radius: 3px;
    box-shadow: none;
    transition: border .2s;
    will-change: border;
    -webkit-appearance: none
}

.zpa-crm-popup-wrap .zpa-crm-popup-field:focus,
.zpa-crm-popup-wrap .zpa-crm-popup-field:hover {
    border: 2px solid #c4c4c4
}

.zpa-crm-popup-wrap .zpa-crm-popup-field::-webkit-input-placeholder {
    color: #666
}

.zpa-crm-popup-wrap .zpa-crm-popup-field:-ms-input-placeholder,
.zpa-crm-popup-wrap .zpa-crm-popup-field::-ms-input-placeholder {
    color: #666
}

.zpa-crm-popup-wrap .zpa-crm-popup-field::placeholder {
    color: #666
}

.zpa-crm-popup-wrap .zpa-crm-popup-field-last-name {
    margin-left: 10px
}

@media (max-width:488px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-field-last-name {
        margin-left: 0
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-field-first-name.hidden+.zpa-crm-popup-field-last-name {
    margin-left: 0
}

.zpa-crm-popup-wrap .zpa-crm-popup-field-phone {
    margin-top: 10px;
    margin-bottom: 0
}

.zpa-crm-popup-wrap .zpa-crm-popup-gdpr-checkbox {
    margin-top: 10px
}

.zpa-crm-popup-wrap .zpa-crm-button-checkout {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 15px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    border-radius: 3px;
    background-color: #3aaa35;
    color: #fff;
    margin-bottom: 8px;
    cursor: pointer
}

.zpa-crm-popup-wrap .zpa-crm-button-checkout:focus,
.zpa-crm-popup-wrap .zpa-crm-button-checkout:hover {
    color: #fff;
    opacity: 1;
    box-shadow: 0 3px 10px .1px rgba(0, 0, 0, .25)
}

@media (max-width:767px) {
    .zpa-crm-popup-wrap .zpa-crm-button-checkout {
        font-size: 18px;
        padding-top: 17px;
        padding-bottom: 15px
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-description {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px
}

@media (max-width:767px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-description {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 10px
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-img-progress {
    max-height: 64px;
    border-radius: 3px
}

.zpa-crm-popup-wrap .zpa-crm-popup-img-asside {
    max-height: 126px
}

.zpa-crm-popup-wrap .zpa-crm-popup-img-footer {
    max-height: 64px
}

.zpa-crm-popup-wrap .zpa-crm-popup-image-box {
    padding-right: 12px;
    padding-left: 12px;
    max-width: 126px;
    align-self: center;
    flex-shrink: 0;
    box-sizing: content-box;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:628px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-image-box {
        margin-bottom: 20px
    }
}

.zpa-crm-popup-wrap .zpa-crm-popup-form-box {
    padding-right: 12px;
    padding-left: 12px;
    flex-grow: 1;
    align-self: center;
    width: 100%
}

@media (max-width:628px) {
    .zpa-crm-popup-wrap .zpa-crm-popup-form-box {
        width: 100%
    }
}

.flex-container,
.flex-container-fluid {
    margin-right: auto;
    margin-left: auto
}

.flex-container-fluid {
    padding-right: 15px;
    padding-left: 15px
}

.flex-row {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.flex-row.reverse {
    flex-direction: row-reverse
}

.flex-center-items {
    justify-content: center
}

.flex-column {
    flex-direction: column
}

.flex-column.reverse {
    flex-direction: column-reverse
}

.xs,
.xs-1,
.xs-2,
.xs-3,
.xs-4,
.xs-5,
.xs-6,
.xs-7,
.xs-8,
.xs-9,
.xs-10,
.xs-11,
.xs-12,
.xs-offset-1,
.xs-offset-2,
.xs-offset-3,
.xs-offset-4,
.xs-offset-5,
.xs-offset-6,
.xs-offset-7,
.xs-offset-8,
.xs-offset-9,
.xs-offset-10,
.xs-offset-11,
.xs-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px
}

.xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%
}

.xs-1 {
    flex-basis: 8.333%;
    max-width: 8.333%
}

.xs-2 {
    flex-basis: 16.667%;
    max-width: 16.667%
}

.xs-3 {
    flex-basis: 25%;
    max-width: 25%
}

.xs-4 {
    flex-basis: 33.333%;
    max-width: 33.333%
}

.xs-5 {
    flex-basis: 41.667%;
    max-width: 41.667%
}

.xs-6 {
    flex-basis: 50%;
    max-width: 50%
}

.xs-7 {
    flex-basis: 58.333%;
    max-width: 58.333%
}

.xs-8 {
    flex-basis: 66.667%;
    max-width: 66.667%
}

.xs-9 {
    flex-basis: 75%;
    max-width: 75%
}

.xs-10 {
    flex-basis: 83.333%;
    max-width: 83.333%
}

.xs-11 {
    flex-basis: 91.667%;
    max-width: 91.667%
}

.xs-12 {
    flex-basis: 100%;
    max-width: 100%
}

.xs-offset-0 {
    margin-left: 0
}

.xs-offset-1 {
    margin-left: 8.333%
}

.xs-offset-2 {
    margin-left: 16.667%
}

.xs-offset-3 {
    margin-left: 25%
}

.xs-offset-4 {
    margin-left: 33.333%
}

.xs-offset-5 {
    margin-left: 41.667%
}

.xs-offset-6 {
    margin-left: 50%
}

.xs-offset-7 {
    margin-left: 58.333%
}

.xs-offset-8 {
    margin-left: 66.667%
}

.xs-offset-9 {
    margin-left: 75%
}

.xs-offset-10 {
    margin-left: 83.333%
}

.xs-offset-11 {
    margin-left: 91.667%
}

.start-xs {
    justify-content: flex-start;
    text-align: start
}

.center-xs {
    justify-content: center;
    text-align: center
}

.end-xs {
    justify-content: flex-end;
    text-align: end
}

.top-xs {
    align-items: flex-start
}

.middle-xs {
    align-items: center
}

.bottom-xs {
    align-items: flex-end
}

.around-xs {
    justify-content: space-around
}

.between-xs {
    justify-content: space-between
}

.first-xs {
    order: -1
}

.last-xs {
    order: 1
}

@media (min-width:768px) {
    .sm,
    .sm-1,
    .sm-2,
    .sm-3,
    .sm-4,
    .sm-5,
    .sm-6,
    .sm-7,
    .sm-8,
    .sm-9,
    .sm-10,
    .sm-11,
    .sm-12,
    .sm-offset-1,
    .sm-offset-2,
    .sm-offset-3,
    .sm-offset-4,
    .sm-offset-5,
    .sm-offset-6,
    .sm-offset-7,
    .sm-offset-8,
    .sm-offset-9,
    .sm-offset-10,
    .sm-offset-11,
    .sm-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: 15px;
        padding-left: 15px;
        width: 100%
    }
    .sm {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%
    }
    .sm-1 {
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .sm-2 {
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .sm-3 {
        flex-basis: 25%;
        max-width: 25%
    }
    .sm-4 {
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .sm-5 {
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .sm-6 {
        flex-basis: 50%;
        max-width: 50%
    }
    .sm-7 {
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .sm-8 {
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .sm-9 {
        flex-basis: 75%;
        max-width: 75%
    }
    .sm-10 {
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .sm-11 {
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .sm-12 {
        flex-basis: 100%;
        max-width: 100%
    }
    .sm-offset-0 {
        margin-left: 0
    }
    .sm-offset-1 {
        margin-left: 8.333%
    }
    .sm-offset-2 {
        margin-left: 16.667%
    }
    .sm-offset-3 {
        margin-left: 25%
    }
    .sm-offset-4 {
        margin-left: 33.333%
    }
    .sm-offset-5 {
        margin-left: 41.667%
    }
    .sm-offset-6 {
        margin-left: 50%
    }
    .sm-offset-7 {
        margin-left: 58.333%
    }
    .sm-offset-8 {
        margin-left: 66.667%
    }
    .sm-offset-9 {
        margin-left: 75%
    }
    .sm-offset-10 {
        margin-left: 83.333%
    }
    .sm-offset-11 {
        margin-left: 91.667%
    }
    .start-sm {
        justify-content: flex-start;
        text-align: start
    }
    .center-sm {
        justify-content: center;
        text-align: center
    }
    .end-sm {
        justify-content: flex-end;
        text-align: end
    }
    .top-sm {
        align-items: flex-start
    }
    .middle-sm {
        align-items: center
    }
    .bottom-sm {
        align-items: flex-end
    }
    .around-sm {
        justify-content: space-around
    }
    .between-sm {
        justify-content: space-between
    }
    .first-sm {
        order: -1
    }
    .last-sm {
        order: 1
    }
}

@media (min-width:992px) {
    .md,
    .md-1,
    .md-2,
    .md-3,
    .md-4,
    .md-5,
    .md-6,
    .md-7,
    .md-8,
    .md-9,
    .md-10,
    .md-11,
    .md-12,
    .md-offset-1,
    .md-offset-2,
    .md-offset-3,
    .md-offset-4,
    .md-offset-5,
    .md-offset-6,
    .md-offset-7,
    .md-offset-8,
    .md-offset-9,
    .md-offset-10,
    .md-offset-11,
    .md-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: 15px;
        padding-left: 15px
    }
    .md {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%
    }
    .md-1 {
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .md-2 {
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .md-3 {
        flex-basis: 25%;
        max-width: 25%
    }
    .md-4 {
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .md-5 {
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .md-6 {
        flex-basis: 50%;
        max-width: 50%
    }
    .md-7 {
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .md-8 {
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .md-9 {
        flex-basis: 75%;
        max-width: 75%
    }
    .md-10 {
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .md-11 {
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .md-12 {
        flex-basis: 100%;
        max-width: 100%
    }
    .md-offset-0 {
        margin-left: 0
    }
    .md-offset-1 {
        margin-left: 8.333%
    }
    .md-offset-2 {
        margin-left: 16.667%
    }
    .md-offset-3 {
        margin-left: 25%
    }
    .md-offset-4 {
        margin-left: 33.333%
    }
    .md-offset-5 {
        margin-left: 41.667%
    }
    .md-offset-6 {
        margin-left: 50%
    }
    .md-offset-7 {
        margin-left: 58.333%
    }
    .md-offset-8 {
        margin-left: 66.667%
    }
    .md-offset-9 {
        margin-left: 75%
    }
    .md-offset-10 {
        margin-left: 83.333%
    }
    .md-offset-11 {
        margin-left: 91.667%
    }
    .start-md {
        justify-content: flex-start;
        text-align: start
    }
    .center-md {
        justify-content: center;
        text-align: center
    }
    .end-md {
        justify-content: flex-end;
        text-align: end
    }
    .top-md {
        align-items: flex-start
    }
    .middle-md {
        align-items: center
    }
    .bottom-md {
        align-items: flex-end
    }
    .around-md {
        justify-content: space-around
    }
    .between-md {
        justify-content: space-between
    }
    .first-md {
        order: -1
    }
    .last-md {
        order: 1
    }
}

@media (min-width:1200px) {
    .lg,
    .lg-1,
    .lg-2,
    .lg-3,
    .lg-4,
    .lg-5,
    .lg-6,
    .lg-7,
    .lg-8,
    .lg-9,
    .lg-10,
    .lg-11,
    .lg-12,
    .lg-offset-1,
    .lg-offset-2,
    .lg-offset-3,
    .lg-offset-4,
    .lg-offset-5,
    .lg-offset-6,
    .lg-offset-7,
    .lg-offset-8,
    .lg-offset-9,
    .lg-offset-10,
    .lg-offset-11,
    .lg-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: 15px;
        padding-left: 15px
    }
    .lg {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%
    }
    .lg-1 {
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .lg-2 {
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .lg-3 {
        flex-basis: 25%;
        max-width: 25%
    }
    .lg-4 {
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .lg-5 {
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .lg-6 {
        flex-basis: 50%;
        max-width: 50%
    }
    .lg-7 {
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .lg-8 {
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .lg-9 {
        flex-basis: 75%;
        max-width: 75%
    }
    .lg-10 {
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .lg-11 {
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .lg-12 {
        flex-basis: 100%;
        max-width: 100%
    }
    .lg-offset-0 {
        margin-left: 0
    }
    .lg-offset-1 {
        margin-left: 8.333%
    }
    .lg-offset-2 {
        margin-left: 16.667%
    }
    .lg-offset-3 {
        margin-left: 25%
    }
    .lg-offset-4 {
        margin-left: 33.333%
    }
    .lg-offset-5 {
        margin-left: 41.667%
    }
    .lg-offset-6 {
        margin-left: 50%
    }
    .lg-offset-7 {
        margin-left: 58.333%
    }
    .lg-offset-8 {
        margin-left: 66.667%
    }
    .lg-offset-9 {
        margin-left: 75%
    }
    .lg-offset-10 {
        margin-left: 83.333%
    }
    .lg-offset-11 {
        margin-left: 91.667%
    }
    .start-lg {
        justify-content: flex-start;
        text-align: start
    }
    .center-lg {
        justify-content: center;
        text-align: center
    }
    .end-lg {
        justify-content: flex-end;
        text-align: end
    }
    .top-lg {
        align-items: flex-start
    }
    .middle-lg {
        align-items: center
    }
    .bottom-lg {
        align-items: flex-end
    }
    .around-lg {
        justify-content: space-around
    }
    .between-lg {
        justify-content: space-between
    }
    .first-lg {
        order: -1
    }
    .last-lg {
        order: 1
    }
}

.zpa-published-page-holder {
    font-family: Lato, Roboto, Fira Sans, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-weight: 400;
    clear: both
}

:root body {
    opacity: 1!important
}

.zpa-fsize-xlg {
    font-size: 30px
}

.zpa-image-wrapper {
    margin-top: 0
}

.zpa-word-wrap.zpa-word-wrap.zpa-word-wrap ol,
.zpa-word-wrap.zpa-word-wrap.zpa-word-wrap ul {
    margin: 0;
    padding-left: 40px
}

.zpa-word-wrap.zpa-word-wrap.zpa-word-wrap ol li,
.zpa-word-wrap.zpa-word-wrap.zpa-word-wrap ul li {
    margin: 0
}

.zpa-post__item {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: transparent;
    margin: 0 0 20px;
    transition: box-shadow .2s ease-out, background-color .2s ease-out
}

.zpa-post__item:hover {
    background-color: #fff;
    box-shadow: 0 9px 35px 0 rgba(0, 0, 0, .1)
}

.zpa-thumbnail {
    flex-shrink: 0;
    display: block;
    height: 270px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
    text-align: center;
    background-position: center center;
}

.zpa-default-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: #e9e9e9
}

.zpa-post__content {
    padding-top: 10px
}

.zpa-post-title {
    text-decoration: none
}

.zpa-post-title:focus,
.zpa-post-title:hover {
    opacity: 1;
    color: #222;
    text-decoration: none
}

#zp-entity-content-wrapper .zpa-post-title-text,
.zpa-post-title-text.zpa-post-title-text {
    display: block;
    display: -webkit-box;
    max-height: 50px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin: 0;
    font-size: 18px;
    color: #222;
    line-height: 1.4;
    font-weight: 400;
    font-style: inherit;
    text-align: left;
    text-transform: none;
    letter-spacing: 0
}

.zpa-post-info:not(:empty) {
    text-align: left;
    margin-top: 5px;
    display: block;
    font-size: 13px;
    color: #a1a1a1
}

.zpa-blog-pagination {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.zpa-blog-pagination__item {
    display: inline;
    text-transform: uppercase;
    font-family: Lato, Roboto, Fira Sans, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-weight: 700;
    font-size: 13px
}

.zpa-blog-pagination__item:not(:first-child):before {
    color: #999;
    padding: 0 6px;
    content: "|"
}

.zpa-blog-pagination__item .zpa-blog-pagination__link {
    text-decoration: none;
    color: #999;
    display: inline;
    padding: 6px 12px;
    transition: color .2s;
    will-change: color
}

.zpa-blog-pagination__item .zpa-blog-pagination__link:hover {
    color: #000
}

.zpa-pagination--disabled {
    color: #999
}

.zpa-arrow-right {
    margin-left: 3px
}

.zpa-arrow-left {
    margin-right: 3px
}

.zpa-empty-article {
    display: flex;
    flex-direction: column;
    text-align: center
}

.zpa-empty-article__content {
    margin: 40px 0
}

.zpa-empty-article__icon {
    box-shadow: 0 16px 40px 0 rgba(59, 59, 59, .1)
}

.zpa-empty-article__title {
    font-family: Lato, Roboto, Fira Sans, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 30px;
    line-height: 1.67;
    margin: 0;
    margin-bottom: 40px;
    text-transform: none
}

.zpa-article__author {
    font-weight: 600;
    font-size: 18px;
    color: #1d1d1b
}

.zpa-article__author,
.zpa-article__publish {
    margin-top: 0;
    font-family: Lato, Roboto, Fira Sans, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif
}

.zpa-article__publish {
    font-size: 16px;
    color: #666
}

.zpa-article-footer {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 2px;
    border-top: 1px solid #e6e6e6
}

.zpa-sticky-block {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2
}

.zpa-sticky-block:after,
.zpa-sticky-block:before {
    content: "";
    display: table
}