:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: rgba(255, 255, 255, 0.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width: 100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-right {
        top: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-right {
        bottom: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: initial
    }
}

.Toastify__toast {
    position: relative;
    min-height: var(--toastify-toast-min-height);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    overflow: hidden;
    font-family: var(--toastify-font-family);
    cursor: default;
    direction: ltr;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 6px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center
}

.Toastify__toast-body>div:last-child {
    word-break: break-word;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    width: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex
}

.Toastify--animate {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .7s;
    animation-duration: .7s
}

.Toastify--animate-icon {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .3s;
    animation-duration: .3s
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom: 0;
        border-radius: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--default {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    color: #fff;
    background: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
    opacity: 1
}

@-webkit-keyframes Toastify__trackProgress {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}

@keyframes Toastify__trackProgress {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: var(--toastify-z-index);
    opacity: .7;
    -webkit-transform-origin: left;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    -webkit-animation: Toastify__trackProgress linear 1 forwards;
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    -webkit-transform-origin: right;
    transform-origin: right
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid;
    border-radius: 100%;
    border-color: var(--toastify-spinner-color-empty-area);
    border-right-color: var(--toastify-spinner-color);
    -webkit-animation: Toastify__spin .65s linear infinite;
    animation: Toastify__spin .65s linear infinite
}

@-webkit-keyframes Toastify__bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes Toastify__bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes Toastify__bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes Toastify__bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes Toastify__bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes Toastify__bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes Toastify__bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes Toastify__bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes Toastify__bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes Toastify__bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
    -webkit-animation-name: Toastify__bounceInLeft;
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
    -webkit-animation-name: Toastify__bounceInRight;
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    -webkit-animation-name: Toastify__bounceInDown;
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    -webkit-animation-name: Toastify__bounceInUp;
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
    -webkit-animation-name: Toastify__bounceOutLeft;
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
    -webkit-animation-name: Toastify__bounceOutRight;
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    -webkit-animation-name: Toastify__bounceOutUp;
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    -webkit-animation-name: Toastify__bounceOutDown;
    animation-name: Toastify__bounceOutDown
}

@-webkit-keyframes Toastify__zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

@-webkit-keyframes Toastify__zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    to {
        opacity: 0
    }
}

@keyframes Toastify__zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    -webkit-animation-name: Toastify__zoomIn;
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    -webkit-animation-name: Toastify__zoomOut;
    animation-name: Toastify__zoomOut
}

@-webkit-keyframes Toastify__flipIn {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipIn {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes Toastify__flipOut {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes Toastify__flipOut {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    -webkit-animation-name: Toastify__flipIn;
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    -webkit-animation-name: Toastify__flipOut;
    animation-name: Toastify__flipOut
}

@-webkit-keyframes Toastify__slideInRight {
    from {
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes Toastify__slideInRight {
    from {
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes Toastify__slideInLeft {
    from {
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes Toastify__slideInLeft {
    from {
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes Toastify__slideInUp {
    from {
        -webkit-transform: translate3d(0, 110%, 0);
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes Toastify__slideInUp {
    from {
        -webkit-transform: translate3d(0, 110%, 0);
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes Toastify__slideInDown {
    from {
        -webkit-transform: translate3d(0, -110%, 0);
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes Toastify__slideInDown {
    from {
        -webkit-transform: translate3d(0, -110%, 0);
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes Toastify__slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0)
    }
}

@keyframes Toastify__slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0)
    }
}

@-webkit-keyframes Toastify__slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0)
    }
}

@keyframes Toastify__slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0)
    }
}

@-webkit-keyframes Toastify__slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 500px, 0);
        transform: translate3d(0, 500px, 0)
    }
}

@keyframes Toastify__slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 500px, 0);
        transform: translate3d(0, 500px, 0)
    }
}

@-webkit-keyframes Toastify__slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -500px, 0);
        transform: translate3d(0, -500px, 0)
    }
}

@keyframes Toastify__slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -500px, 0);
        transform: translate3d(0, -500px, 0)
    }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
    -webkit-animation-name: Toastify__slideInLeft;
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
    -webkit-animation-name: Toastify__slideInRight;
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    -webkit-animation-name: Toastify__slideInDown;
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    -webkit-animation-name: Toastify__slideInUp;
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
    -webkit-animation-name: Toastify__slideOutLeft;
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
    -webkit-animation-name: Toastify__slideOutRight;
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    -webkit-animation-name: Toastify__slideOutUp;
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    -webkit-animation-name: Toastify__slideOutDown;
    animation-name: Toastify__slideOutDown
}

@-webkit-keyframes Toastify__spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes Toastify__spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@font-face {
    font-family: "sdevicons";
    src: url(./image-768c0e147651b8a28092.eot?aa8bxf);
    src: url(./image-768c0e147651b8a28092.eot?aa8bxf#iefix) format("embedded-opentype"), url(./image-aba5e016f46e954d1d1a.ttf?aa8bxf) format("truetype"), url(./image-4753ef1a05bb36a62fab.woff?aa8bxf) format("woff"), url(./image-d85ea3b4faa8e2b3e9bd.svg?aa8bxf#icomoon) format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

@-webkit-keyframes panelFadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes panelFadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@media(min-width: 1601px) {

    a[data-armada-animation=button-primary],
    button[data-armada-animation=button-primary] {
        padding-top: 26px;
        padding-bottom: 26px;
        padding-left: 68px;
        padding-right: 68px
    }
}

@media(min-width: 1601px) {

    a[data-armada-animation=button-primary] span:first-of-type,
    button[data-armada-animation=button-primary] span:first-of-type {
        font-size: 18px;
        line-height: 28px
    }
}

@media(min-width: 1601px) {

    a[data-armada-animation=button-secondary],
    button[data-armada-animation=button-secondary] {
        padding-top: 26px;
        padding-bottom: 26px;
        padding-left: 69px;
        padding-right: 69px
    }
}

@media(min-width: 1601px) {

    a[data-armada-animation=button-secondary] span:first-of-type,
    button[data-armada-animation=button-secondary] span:first-of-type {
        font-size: 18px;
        line-height: 28px
    }
}

a[data-armada-animation=button-secondary] span.border-body,
button[data-armada-animation=button-secondary] span.border-body {
    border-color: #fab813 !important
}

a[data-armada-animation=button-secondary]:after,
a[data-armada-animation=button-secondary]:before,
button[data-armada-animation=button-secondary]:after,
button[data-armada-animation=button-secondary]:before {
    background-color: #fab813 !important
}

.cta-read-more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cta-read-more span.text {
    text-transform: uppercase;
    font: 800 18px/41px "Open Sans", sans-serif
}

@media(max-width: 768px) {
    .cta-read-more span.text {
        font-size: 16px;
        line-height: 30px
    }
}

.cta-read-more svg {
    display: inline-block;
    color: #fab813;
    margin-left: 8px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.cta-read-more:hover svg {
    margin-left: 12px
}

@media(prefers-reduced-motion: no-preference) {

    [data-armada-animation^=button][data-armada-animation$=button-secondary]:not(:disabled):hover:before,
    [data-armada-animation^=button][data-armada-animation$=button-secondary]:not(:disabled):hover:after,
    [data-armada-animation^=button][data-armada-animation$=button-secondary]:focus:before,
    [data-armada-animation^=button][data-armada-animation$=button-secondary]:focus:after {
        -webkit-transform: scaleX(1.1);
        transform: scaleX(1.1)
    }
}

button[data-armada-animation^=button],
a[data-armada-animation^=button] {
    position: relative
}

.get-in-touch-btn,
.get-in-touch-btn-alt {
    position: relative;
    min-width: 303px;
    background: rgba(0, 0, 0, 0);
    padding: 17px 10px 16px;
    border: 1px solid #fab813;
    display: inline-block
}

.get-in-touch-btn span.btn-text,
.get-in-touch-btn-alt span.btn-text {
    color: #fff;
    font: 800 21px/21px "Open Sans", sans-serif;
    z-index: 1;
    position: relative
}

.get-in-touch-btn:before,
.get-in-touch-btn-alt:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.get-in-touch-btn:after,
.get-in-touch-btn-alt:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.get-in-touch-btn:hover:before,
.get-in-touch-btn-alt:hover:before,
.get-in-touch-btn:hover:after,
.get-in-touch-btn-alt:hover:after {
    width: 51%
}

.get-in-touch-btn-alt {
    border: none;
    background-color: #000
}

@media(min-width: 1441px) {

    .theme-section-padding,
    .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 136px;
        padding-right: 136px;
        padding-top: 60px;
        padding-bottom: 60px
    }
}

@media(max-width: 1440px)and (min-width: 1024px) {

    .theme-section-padding,
    .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 82px;
        padding-right: 82px;
        padding-top: 60px;
        padding-bottom: 60px
    }
}

@media(min-width: 1441px) {
    .theme-section-margin {
        margin: 60px 136px
    }
}

@media(max-width: 1440px)and (min-width: 1024px) {
    .theme-section-margin {
        margin: 60px 82px
    }
}

.no-top-margin {
    margin-top: 0 !important
}

@media(max-width: 1023px) {
    .no-top-margin {
        margin-top: 0 !important
    }
}

.no-bottom-margin {
    margin-bottom: 0 !important
}

@media(max-width: 1023px) {
    .no-bottom-margin {
        margin-bottom: 0 !important
    }
}

.no-top-padding {
    padding-top: 0 !important
}

@media(max-width: 1023px) {
    .no-top-padding {
        padding-top: 0 !important
    }
}

.no-bottom-padding {
    padding-bottom: 0 !important
}

@media(max-width: 1023px) {
    .no-bottom-padding {
        padding-bottom: 0 !important
    }
}

.heading-no-margin h1,
.heading-no-margin h2,
.heading-no-margin h3,
.heading-no-margin h4,
.heading-no-margin h5,
.heading-no-margin h6 {
    margin: 0 !important
}

.max-w-content {
    max-width: 1920px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase !important
}

.leading-heading {
    line-height: 120%
}

main.main-content {
    background: #fff !important
}

.non--visual-wrapper {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.select-container {
    position: relative;
    width: 100%
}

.select-container:after {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    background: url(./image-21faf8fc3d1604d47862.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    pointer-events: none
}

.select-container select {
    width: 100%;
    padding-right: 32px;
    background: #fff;
    background-image: none;
    color: #999
}

.select-container select.has-value {
    color: #000
}

.select-container select option {
    color: #000 !important
}

.select-container select option:disabled {
    color: #999 !important
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .1)
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .5)
}

svg .cls-1 {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px
}

div[data-armada-selector=cart-count] {
    background: #fab813;
    color: #000
}

[data-armada-animation^=button][data-armada-animation$=button-primary]:not(:disabled):hover,
[data-armada-animation^=button][data-armada-animation$=button-primary]:focus,
.shopify-payment-button__button--unbranded:not(:disabled):hover,
.shopify-payment-button__button--unbranded:focus {
    background-color: #fab813 !important
}

@media(max-width: 1023px) {
    .collection-template-wrapper {
        display: block !important
    }
}

.select2-results__option {
    background: #e7e7e7;
    color: #000
}

.select2-results__option[aria-selected=true],
.select2-results__option--highlighted {
    background: #000 !important;
    color: #fff !important
}

.collage-products {
    width: 100%
}

.collage-products .top-text-container {
    width: 100%;
    text-align: left
}

.collage-products .collage-container {
    width: 100%
}

.collage-products .collage-container .collage-row {
    padding-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

@media(max-width: 768px) {
    .collage-products .collage-container .collage-row {
        padding-bottom: 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .collage-products .collage-container .collage-row:last-child .collage-col .col-inner {
        padding-bottom: 0 !important
    }
}

@media(max-width: 480px) {
    .collage-products .collage-container .collage-row {
        padding-bottom: 30px
    }
}

.collage-products .collage-container .collage-row:last-child {
    padding-bottom: 0 !important
}

.collage-products .collage-container .collage-row.collage-one-col-row .collage-col {
    width: 100%
}

.collage-products .collage-container .collage-row.collage-one-col-row .collage-col .col-inner {
    aspect-ratio: 1756/737
}

@media(max-width: 768px) {
    .collage-products .collage-container .collage-row.collage-one-col-row .collage-col .col-inner {
        aspect-ratio: 863/737
    }
}

.collage-products .collage-container .collage-row.collage-two-col-row {
    margin: 0 -15px
}

@media(max-width: 768px) {
    .collage-products .collage-container .collage-row.collage-two-col-row {
        margin: 0
    }
}

.collage-products .collage-container .collage-row.collage-two-col-row .collage-col {
    width: 50%;
    padding: 0 15px
}

.collage-products .collage-container .collage-row.collage-two-col-row .collage-col .col-inner {
    aspect-ratio: 863/737
}

@media(max-width: 768px) {
    .collage-products .collage-container .collage-row.collage-two-col-row .collage-col {
        width: 100%;
        padding: 0 0 40px
    }
}

@media(max-width: 480px) {
    .collage-products .collage-container .collage-row.collage-two-col-row .collage-col {
        padding: 0 0 30px
    }
}

.collage-products .collage-container .collage-row.collage-three-col-row {
    margin: 0 -20px
}

@media(max-width: 768px) {
    .collage-products .collage-container .collage-row.collage-three-col-row {
        margin: 0
    }
}

.collage-products .collage-container .collage-row.collage-three-col-row .collage-col {
    width: 33.333%;
    padding: 0 20px
}

.collage-products .collage-container .collage-row.collage-three-col-row .collage-col .col-inner {
    aspect-ratio: 559/506
}

@media(max-width: 768px) {
    .collage-products .collage-container .collage-row.collage-three-col-row .collage-col {
        width: 100%;
        padding: 0 0 40px
    }

    .collage-products .collage-container .collage-row.collage-three-col-row .collage-col .col-inner {
        aspect-ratio: 863/737
    }
}

@media(max-width: 480px) {
    .collage-products .collage-container .collage-row.collage-three-col-row .collage-col {
        padding: 0 0 30px
    }
}

.collage-products .collage-container .collage-col .col-inner {
    width: 100%;
    position: relative
}

.collage-products .collage-container .collage-col .col-inner .image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    padding: 36px 86px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media(max-width: 1280px) {
    .collage-products .collage-container .collage-col .col-inner .image-container {
        padding: 36px 56px
    }
}

@media(max-width: 480px) {
    .collage-products .collage-container .collage-col .col-inner .image-container {
        padding: 24px
    }
}

.collage-products .collage-container .collage-col .col-inner .image-container img,
.collage-products .collage-container .collage-col .col-inner .image-container svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block
}

@media(max-width: 768px) {

    .collage-products .collage-container .collage-col .col-inner .image-container img,
    .collage-products .collage-container .collage-col .col-inner .image-container svg {
        width: 75% !important
    }
}

.collage-products .collage-container .collage-col .col-inner .overlay-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 1;
    padding: 36px
}

@media(max-width: 480px) {
    .collage-products .collage-container .collage-col .col-inner .overlay-container {
        padding: 24px
    }
}

.collage-products .collage-container .collage-col .col-inner h4 {
    font: 600 25px/36px "Open Sans", sans-serif;
    color: #000;
    display: block;
    width: 100%;
    text-transform: none !important
}

@media(max-width: 489px) {
    .collage-products .collage-container .collage-col .col-inner h4 {
        font-size: 24px;
        line-height: 36px
    }
}

.collage-products .collage-container .collage-col .col-inner a[data-armada-animation=button-secondary],
.collage-products .collage-container .collage-col .col-inner button[data-armada-animation=button-secondary] {
    padding: 10px 27px !important;
    min-width: 148px;
    margin-top: 16px;
    background: #fff
}

.collage-products .collage-container .collage-col .col-inner a[data-armada-animation=button-secondary] span:first-child,
.collage-products .collage-container .collage-col .col-inner button[data-armada-animation=button-secondary] span:first-child {
    color: #000
}

.collage-products .collage-container .collage-col .col-inner a[data-armada-animation=button-secondary] span.border,
.collage-products .collage-container .collage-col .col-inner button[data-armada-animation=button-secondary] span.border {
    border-color: #000 !important
}

.collage-products .collage-container .collage-col .col-inner a[data-armada-animation=button-secondary]:before,
.collage-products .collage-container .collage-col .col-inner a[data-armada-animation=button-secondary]:after,
.collage-products .collage-container .collage-col .col-inner button[data-armada-animation=button-secondary]:before,
.collage-products .collage-container .collage-col .col-inner button[data-armada-animation=button-secondary]:after {
    background: #000 !important
}

.collage-products .collage-container .collage-col .col-inner a[data-armada-animation=button-secondary]:hover span:first-child,
.collage-products .collage-container .collage-col .col-inner button[data-armada-animation=button-secondary]:hover span:first-child {
    color: #fff
}

.find-your-attachment.reduce-spacings .content-container {
    min-height: 541px;
    padding-top: 54px;
    padding-bottom: 137px
}

.find-your-attachment.reduce-spacings .fya-filter-container {
    margin-top: 99px
}

.find-your-attachment .theme-section-padding,
.find-your-attachment .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {

    .find-your-attachment .theme-section-padding,
    .find-your-attachment .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {

    .find-your-attachment .theme-section-padding,
    .find-your-attachment .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

.find-your-attachment .content-container {
    position: relative;
    min-height: 761px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 40px !important;
    padding-bottom: 40px !important
}

.find-your-attachment .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.find-your-attachment .image-container img,
.find-your-attachment .image-container svg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.find-your-attachment span.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.find-your-attachment .inner-content {
    position: relative;
    z-index: 2;
    margin: 0 auto !important;
    max-width: 1288px
}

@media(max-width: 1440px) {
    .find-your-attachment .inner-content {
        max-width: 1388px
    }
}

.find-your-attachment .inner-content.text-reverse-dark h2,
.find-your-attachment .inner-content.text-reverse-dark p {
    color: #fff !important
}

.find-your-attachment .inner-content.text-reverse-white h2,
.find-your-attachment .inner-content.text-reverse-white p {
    color: #000 !important
}

.find-your-attachment .inner-content h2 {
    padding-bottom: 22px
}

@media(min-width: 769px) {
    .find-your-attachment .inner-content h2 {
        font-size: 42px;
        line-height: 56px
    }
}

@media(min-width: 769px) {
    .find-your-attachment .inner-content p {
        font-size: 21px;
        line-height: 35px
    }
}

.find-your-attachment .inner-content .fya-filter-container {
    margin-top: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 40px
}

@media(max-width: 1220px) {
    .find-your-attachment .inner-content .fya-filter-container {
        margin: 60px 0 0;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media(max-width: 640px) {
    .find-your-attachment .inner-content .fya-filter-container {
        margin: 40px 0 0 !important
    }
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container {
    width: 20%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media(max-width: 1280px) {
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container {
        width: 388px
    }
}

@media(max-width: 1220px) {
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }

    .find-your-attachment .inner-content .fya-filter-container .filter-select-container:first-child,
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(2),
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(3),
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(4) {
        width: calc(50% - 10px);
        max-width: initial !important;
        margin-right: 0 !important
    }

    .find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(5) {
        width: 100% !important;
        max-width: initial !important
    }
}

@media(max-width: 640px) {
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container {
        width: 100% !important
    }
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container:first-child,
.find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(2),
.find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(3) {
    max-width: 388px
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container:nth-child(4) {
    max-width: 282px
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container label {
    color: #fff;
    font: 800 18px/26px "Open Sans", sans-serif;
    margin-bottom: 15px;
    display: block
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter {
    z-index: 10;
    width: 100%;
    position: relative
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter svg {
    color: #000;
    position: absolute;
    right: 6px;
    top: calc(50% - 12px);
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter.toggled svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter select[name=machine_model]:not(.active),
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter select[name=machine_make]:not(.active) {
    display: none
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=all],
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=excavator],
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=skid-steer] {
    display: none
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=all].active,
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=excavator].active,
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=skid-steer].active {
    display: block
}

@media(max-width: 1220px) {
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-container {
        width: 100% !important
    }
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection {
    height: auto;
    border-radius: 0
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection[aria-expanded=true] .select2-selection__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select-container:after {
    display: none
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container select,
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection__rendered {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 14px 42px 14px 25px;
    border: none;
    outline: none;
    font: 400 18px/26px "Open Sans", sans-serif;
    border-radius: 0
}

@media(max-width: 768px) {

    .find-your-attachment .inner-content .fya-filter-container .filter-select-container select,
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection__rendered {
        padding: 14px 42px 14px 12px;
        font-size: 16px
    }
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container select option,
.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection__rendered option {
    background: #fff;
    font: 400 18px/26px "Open Sans", sans-serif;
    padding: 12px 25px;
    color: #000
}

@media(max-width: 768px) {

    .find-your-attachment .inner-content .fya-filter-container .filter-select-container select option,
    .find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection__rendered option {
        font-size: 16px
    }
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection__arrow {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    background: url(./image-21faf8fc3d1604d47862.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    pointer-events: none
}

.find-your-attachment .inner-content .fya-filter-container .filter-select-container .select2-selection__arrow b {
    display: none
}

.find-your-attachment .inner-content .fya-filter-container button {
    border: none;
    outline: none;
    background: #000;
    border: 1px solid #fab813;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 14px 10px 14px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 258px;
    flex: 0 0 258px
}

.find-your-attachment .inner-content .fya-filter-container button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.find-your-attachment .inner-content .fya-filter-container button:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.find-your-attachment .inner-content .fya-filter-container button:hover:before,
.find-your-attachment .inner-content .fya-filter-container button:hover:after {
    width: 51%
}

@media(max-width: 1220px) {
    .find-your-attachment .inner-content .fya-filter-container button {
        width: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 40px;
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }
}

@media(max-width: 480px) {
    .find-your-attachment .inner-content .fya-filter-container button {
        width: 100%;
        -webkit-transform: none;
        transform: none;
        left: initial
    }
}

.find-your-attachment .inner-content .fya-filter-container button span.btn-text,
.find-your-attachment .inner-content .fya-filter-container button span.btn-text-mob {
    display: none;
    position: relative;
    z-index: 1;
    color: #fff
}

.find-your-attachment .inner-content .fya-filter-container button span.btn-text {
    display: inline-block;
    font: 800 18px/26px "Open Sans", sans-serif
}

@media(max-width: 480px) {
    .find-your-attachment .inner-content .fya-filter-container button span.btn-text {
        display: none
    }
}

.find-your-attachment .inner-content .fya-filter-container button span.btn-text-mob {
    font: 800 18px/24px "Open Sans", sans-serif
}

@media(max-width: 480px) {
    .find-your-attachment .inner-content .fya-filter-container button span.btn-text-mob {
        display: inline-block
    }
}

.logos-carousel {
    padding-top: 92px;
    padding-bottom: 92px;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0
}

.logos-carousel.reduce-spacing {
    margin: 0 !important;
    padding-top: 66px !important;
    padding-bottom: 88px !important
}

@media(max-width: 768px) {
    .logos-carousel.reduce-spacing {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

.logos-carousel h2 {
    text-align: center;
    width: 100%;
    padding-bottom: 12px
}

@media(min-width: 769px) {
    .logos-carousel h2 {
        font-size: 42px;
        line-height: 56px
    }
}

@media(max-width: 1440px) {
    .logos-carousel {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .logos-carousel {
        padding-left: 24px;
        padding-right: 24px
    }
}

.logos-carousel .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .logos-carousel .max-w-content {
        max-width: 1388px
    }
}

@media(min-width: 1024px) {
    .logos-carousel {
        margin-bottom: 60px
    }
}

.logos-carousel .inner-wrapper {
    width: 100%;
    padding: 0 74px;
    position: relative
}

@media(max-width: 768px) {
    .logos-carousel .inner-wrapper {
        padding: 0 40px
    }
}

@media(max-width: 480px) {
    .logos-carousel .inner-wrapper {
        padding: 0 10px
    }
}

.logos-carousel .inner-wrapper button.carousel-prev,
.logos-carousel .inner-wrapper button.carousel-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: none;
    outline: none;
    border: none;
    padding: 0;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.logos-carousel .inner-wrapper button.carousel-prev:hover,
.logos-carousel .inner-wrapper button.carousel-prev:focus,
.logos-carousel .inner-wrapper button.carousel-next:hover,
.logos-carousel .inner-wrapper button.carousel-next:focus {
    opacity: .6
}

.logos-carousel .inner-wrapper button.carousel-prev {
    left: 0
}

@media(max-width: 768px) {
    .logos-carousel .inner-wrapper button.carousel-prev {
        left: -11px
    }
}

.logos-carousel .inner-wrapper button.carousel-next {
    right: 0
}

@media(max-width: 768px) {
    .logos-carousel .inner-wrapper button.carousel-next {
        right: -11px
    }
}

.logos-carousel .inner-wrapper .logos-carousel-container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.logos-carousel .inner-wrapper .logos-carousel-container .logo-item {
    height: inherit
}

.logos-carousel .inner-wrapper .logos-carousel-container .logo-item .li-inner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 24px
}

@media(max-width: 480px) {
    .logos-carousel .inner-wrapper .logos-carousel-container .logo-item .li-inner {
        padding: 0 12px
    }
}

.logos-carousel .inner-wrapper .logos-carousel-container .logo-item .li-inner img,
.logos-carousel .inner-wrapper .logos-carousel-container .logo-item .li-inner svg {
    max-width: 100%;
    display: inline-block
}

section.why-us {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    section.why-us {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    section.why-us {
        padding-left: 24px;
        padding-right: 24px
    }
}

section.why-us .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section.why-us .max-w-content {
        max-width: 1388px
    }
}

section.why-us .top-section {
    text-align: center;
    max-width: 1540px;
    margin: 0 auto 97px
}

@media(max-width: 480px) {
    section.why-us .top-section {
        margin-bottom: 56px
    }
}

section.why-us .top-section h2 {
    padding-bottom: 12px
}

@media(min-width: 769px) {
    section.why-us .top-section h2 {
        font-size: 42px;
        line-height: 56px
    }
}

section.why-us .top-section .rte {
    text-align: center
}

section.why-us .top-section .rte p {
    font-weight: 600
}

@media(min-width: 769px) {
    section.why-us .top-section .rte p {
        font-size: 18px;
        line-height: 26px
    }
}

section.why-us .logos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 74px
}

section.why-us .logos-container .logo-item {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%
}

@media(max-width: 800px) {
    section.why-us .logos-container .logo-item {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
}

@media(max-width: 480px) {
    section.why-us .logos-container .logo-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

section.why-us .logos-container .logo-item .li-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: center
}

section.why-us .logos-container .logo-item .li-inner .image-container {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

section.why-us .logos-container .logo-item .li-inner .image-container img {
    max-width: 100%
}

section.why-us .logos-container .logo-item .li-inner h3,
section.why-us .logos-container .logo-item .li-inner h4 {
    font: 800 18px/25px "Open Sans", sans-serif;
    margin: 0;
    padding: 0 !important
}

.full-text-two-images {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .full-text-two-images {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    .full-text-two-images {
        padding-left: 24px;
        padding-right: 24px
    }
}

.full-text-two-images .inner-wrapper .text-container {
    margin-bottom: 32px;
    max-width: 1650px
}

.full-text-two-images .inner-wrapper .text-container h2 {
    padding-bottom: 12px
}

@media(min-width: 769px) {
    .full-text-two-images .inner-wrapper .text-container h2 {
        font-size: 42px;
        line-height: 56px;
        padding-bottom: 40px
    }
}

@media(min-width: 769px) {
    .full-text-two-images .inner-wrapper .text-container p {
        font-size: 18px;
        line-height: 26px
    }
}

.full-text-two-images .inner-wrapper .images-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    justify-items: flex-start;
    margin: 0 -16px
}

@media(max-width: 768px) {
    .full-text-two-images .inner-wrapper .images-container {
        margin: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.full-text-two-images .inner-wrapper .images-container .image-column {
    width: 50%;
    padding: 0 16px
}

@media(max-width: 768px) {
    .full-text-two-images .inner-wrapper .images-container .image-column {
        width: 100%;
        padding: 0;
        margin-bottom: 30px
    }

    .full-text-two-images .inner-wrapper .images-container .image-column:last-child {
        margin-bottom: 0
    }
}

.full-text-two-images .inner-wrapper .images-container .image-column img,
.full-text-two-images .inner-wrapper .images-container .image-column svg {
    width: 100%;
    height: auto;
    aspect-ratio: 862/620;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: inline-block
}

section.full-width-carousel {
    padding-top: 40px;
    padding-bottom: 40px
}

@media(min-width: 1024px) {
    section.full-width-carousel {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

section.full-width-carousel .inner-container {
    width: 100%;
    position: relative
}

section.full-width-carousel .outer-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%
}

@media(max-width: 768px) {
    section.full-width-carousel .outer-image-container {
        position: relative;
        height: 400px;
        min-height: 400px;
        width: 100%;
        aspect-ratio: 4/2
    }
}

section.full-width-carousel .outer-image-container .image-slides-container {
    width: 100%;
    height: 100%
}

section.full-width-carousel .outer-image-container .image-slides-container .slick-list,
section.full-width-carousel .outer-image-container .image-slides-container .slick-track {
    height: 100%
}

section.full-width-carousel .outer-image-container .image-slides-container .slide-image {
    width: 100%;
    height: 100%
}

section.full-width-carousel .outer-image-container .image-slides-container .slide-image img,
section.full-width-carousel .outer-image-container .image-slides-container .slide-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

section.full-width-carousel .outer-image-container .image-slides-container .slide-image img.slide-mob-img,
section.full-width-carousel .outer-image-container .image-slides-container .slide-image svg.slide-mob-img {
    display: none
}

@media(max-width: 768px) {
    section.full-width-carousel .outer-image-container .image-slides-container .slide-image.has-mob-img .slide-desk-img {
        display: none !important
    }

    section.full-width-carousel .outer-image-container .image-slides-container .slide-image.has-mob-img .slide-mob-img {
        display: block !important
    }
}

section.full-width-carousel .outer-image-container span.overlay-gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), color-stop(40%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1
}

section.full-width-carousel .text-container {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: 1095px;
    margin-right: auto;
    padding: 56px 136px 56px calc((100vw - 1288px)/2)
}

@media(min-width: 1921px) {
    section.full-width-carousel .text-container {
        max-width: initial !important
    }
}

@media(max-width: 1600px) {
    section.full-width-carousel .text-container {
        padding: 80px 82px 80px calc((100vw - 1288px)/2)
    }
}

@media(max-width: 1440px) {
    section.full-width-carousel .text-container {
        padding: 80px 82px 80px 40px
    }
}

@media(max-width: 1023px) {
    section.full-width-carousel .text-container {
        padding: 80px 40px 80px 40px
    }
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container {
        width: 100%;
        max-width: initial;
        margin-left: 0;
        padding: 40px 24px 60px;
        background: #000;
        min-height: 300px
    }
}

section.full-width-carousel .text-container .dots-container {
    position: relative;
    margin-bottom: 36px
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .dots-container {
        margin-bottom: 32px
    }
}

section.full-width-carousel .text-container .dots-container .slick-dots {
    position: relative;
    bottom: initial !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: initial;
    margin-left: -18px
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .dots-container .slick-dots {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 0
    }
}

section.full-width-carousel .text-container .dots-container .slick-dots li {
    width: 42px;
    height: 42px;
    position: relative;
    margin: 0 15px
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .dots-container .slick-dots li {
        width: 21px;
        height: 21px;
        margin: 0 10px
    }

    section.full-width-carousel .text-container .dots-container .slick-dots li:first-child {
        margin-left: 0
    }
}

section.full-width-carousel .text-container .dots-container .slick-dots li button {
    width: 42px;
    height: 42px;
    color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    -webkit-transition: border-color .4s ease-out;
    transition: border-color .4s ease-out;
    position: relative;
    border-radius: 50%
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .dots-container .slick-dots li button {
        width: 21px;
        height: 21px
    }
}

section.full-width-carousel .text-container .dots-container .slick-dots li button:before {
    content: "";
    opacity: 1;
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
    background: #fff;
    -webkit-transition: background-color .4s ease-out;
    transition: background-color .4s ease-out;
    border-radius: 50%
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .dots-container .slick-dots li button:before {
        width: 9px;
        height: 9px;
        top: calc(50% - 4.5px);
        left: calc(50% - 4.5px)
    }
}

section.full-width-carousel .text-container .dots-container .slick-dots li.slick-active button {
    border-color: #fff
}

section.full-width-carousel .text-container .dots-container .slick-dots li.slick-active button:before {
    background: #fab813
}

section.full-width-carousel .text-container .arrows-container {
    position: relative;
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .arrows-container {
        margin-top: 32px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

section.full-width-carousel .text-container .arrows-container .slick-arrow {
    position: relative;
    left: initial !important;
    right: initial !important;
    top: initial !important;
    -webkit-transform: none !important;
    transform: none !important;
    width: 68px;
    height: 68px;
    border-radius: 0;
    border: 1px solid #fff
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .arrows-container .slick-arrow {
        width: 42px;
        height: 42px
    }
}

section.full-width-carousel .text-container .arrows-container .slick-arrow:before {
    font-family: "sdevicons" !important;
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    opacity: 1;
    -webkit-transition: color .4s ease-out;
    transition: color .4s ease-out
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .arrows-container .slick-arrow:before {
        font-size: 16px;
        top: calc(50% - 8px)
    }
}

section.full-width-carousel .text-container .arrows-container .slick-arrow:hover:before {
    color: #fab813
}

section.full-width-carousel .text-container .arrows-container .slick-arrow.slick-prev {
    margin-right: 28px
}

section.full-width-carousel .text-container .arrows-container .slick-arrow.slick-prev::before {
    left: calc(50% - 8px)
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .arrows-container .slick-arrow.slick-prev::before {
        left: calc(50% - 6px)
    }
}

section.full-width-carousel .text-container .arrows-container .slick-arrow.slick-next:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: calc(50% - 6px)
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .arrows-container .slick-arrow.slick-next:before {
        left: calc(50% - 4px)
    }
}

section.full-width-carousel .text-container .text-slides-container {
    width: 100%
}

section.full-width-carousel .text-container .text-slides-container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

section.full-width-carousel .text-container .text-slides-container .text-slide {
    width: 100%;
    height: inherit;
    text-align: left
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .text-slides-container .text-slide {
        text-align: left
    }
}

section.full-width-carousel .text-container .text-slides-container .text-slide h2 {
    color: #fff;
    padding-bottom: 26px
}

@media(min-width: 769px) {
    section.full-width-carousel .text-container .text-slides-container .text-slide h2 {
        font-size: 42px;
        line-height: 42px
    }
}

section.full-width-carousel .text-container .text-slides-container .text-slide .rte {
    color: #fff;
    text-align: left
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .text-slides-container .text-slide .rte {
        text-align: left
    }
}

section.full-width-carousel .text-container .text-slides-container .text-slide .rte ul {
    list-style: disc;
    padding-left: 30px;
    margin: 0
}

section.full-width-carousel .text-container .text-slides-container .text-slide .rte ul li {
    font: 400 18px/26px "Open Sans", sans-serif;
    color: #fff;
    margin: 0 0 5px
}

@media(max-width: 1200px) {
    section.full-width-carousel .text-container .text-slides-container .text-slide .rte ul li {
        font-size: 16px;
        line-height: 24px;
        text-align: left
    }
}

section.full-width-carousel .text-container .text-slides-container .text-slide .rte ul li::marker {
    color: #fff
}

section.full-width-carousel .text-container .text-slides-container .text-slide .rte p {
    text-align: left;
    font: 400 18px/26px "Open Sans", sans-serif
}

@media(max-width: 768px) {
    section.full-width-carousel .text-container .text-slides-container .text-slide .rte p {
        font-size: 16px;
        line-height: 24px;
        text-align: left
    }
}

section.image-banner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0
}

@media(min-width: 1024px) {
    section.image-banner {
        padding-top: 60px;
        padding-bottom: 60px
    }

    section.image-banner.no-top-padding {
        padding-top: 0 !important
    }

    section.image-banner.no-bottom-padding {
        padding-bottom: 0 !important
    }
}

@media(max-width: 1440px) {
    section.image-banner {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    section.image-banner {
        padding-left: 24px;
        padding-right: 24px
    }
}

section.image-banner .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section.image-banner .max-w-content {
        max-width: 1388px
    }
}

section.image-banner.no-top-padding {
    padding-top: 0 !important
}

section.image-banner.no-bottom-padding {
    padding-bottom: 0 !important
}

section.image-banner .inner-wrapper {
    width: 100%
}

section.image-banner .inner-wrapper .mob-img {
    display: none
}

@media(max-width: 768px) {
    section.image-banner .inner-wrapper.has-mob-img .desk-img {
        display: none !important
    }

    section.image-banner .inner-wrapper.has-mob-img .mob-img {
        display: block !important
    }
}

section.image-banner .inner-wrapper img,
section.image-banner .inner-wrapper svg {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media(max-width: 768px) {

    section.image-banner .inner-wrapper img,
    section.image-banner .inner-wrapper svg {
        aspect-ratio: 4/2;
        min-height: 300px
    }
}

section.personnel-cards {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 56px
}

@media(max-width: 1440px) {
    section.personnel-cards {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    section.personnel-cards {
        padding-left: 24px;
        padding-right: 24px
    }
}

section.personnel-cards .top-text-container {
    margin-bottom: 36px
}

@media(max-width: 480px) {
    section.personnel-cards .top-text-container {
        margin-bottom: 32px
    }
}

section.personnel-cards .top-text-container h2 {
    padding: 0
}

@media(min-width: 769px) {
    section.personnel-cards .top-text-container h2 {
        font-size: 36px;
        line-height: 42px
    }
}

@media(max-width: 768px) {
    section.personnel-cards .top-text-container h2 {
        font-size: 24px;
        line-height: 28px
    }
}

section.personnel-cards .top-text-container .rte {
    padding-top: 40px
}

@media(min-width: 769px) {
    section.personnel-cards .top-text-container .rte p {
        font-size: 18px;
        line-height: 26px
    }
}

section.personnel-cards .personnel-cards-list-container {
    width: 100%;
    max-width: 1288px;
    margin: 0 auto
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px;
    row-gap: 85px
}

@media(max-width: 1024px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list {
        margin: 0 -20px
    }
}

@media(max-width: 480px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list {
        margin: 0;
        row-gap: 40px
    }
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card {
    padding: 0 20px;
    width: 33.333%
}

@media(max-width: 1024px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card {
        padding: 0 20px
    }
}

@media(max-width: 768px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card {
        width: 50%
    }
}

@media(max-width: 480px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card {
        width: 100%;
        padding: 0;
        margin-bottom: 40px
    }
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container {
    width: 100%;
    height: auto;
    position: relative;
    aspect-ratio: 1/1;
    margin-bottom: 48px;
    border: 1px solid #707070
}

@media(max-width: 480px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container {
        margin-bottom: 20px
    }
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container img.main-image,
section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container img.second-image,
section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container svg.main-image,
section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container svg.second-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity .4s ease-out;
    transition: opacity .4s ease-out;
    -o-object-position: top !important;
    object-position: top !important;
    -o-object-fit: cover;
    object-fit: cover
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container img.main-image.main-image,
section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container img.second-image.main-image,
section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container svg.main-image.main-image,
section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container svg.second-image.main-image {
    z-index: 1;
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container.has-hover-image:hover img.main-image {
    opacity: 0
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container.has-hover-image:hover .linkedin-cta:before {
    width: 36px;
    height: 36px
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .image-container.has-hover-image:hover .linkedin-cta svg {
    color: #fff;
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .linkedin-cta {
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .linkedin-cta:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #0073b1;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .linkedin-cta svg {
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    z-index: 1;
    position: relative
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .linkedin-cta:hover:before {
    width: 36px;
    height: 36px
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .linkedin-cta:hover svg {
    color: #fff;
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container {
    width: 100%
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .toggle-row {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 12px 60px 12px 18px;
    position: relative;
    cursor: pointer
}

@media(max-width: 768px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .toggle-row {
        padding: 12px 60px 12px 12px
    }
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .toggle-row .pinfo span.name {
    display: block;
    font: 700 16px/24px "Open Sans", sans-serif;
    text-transform: uppercase
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .toggle-row .pinfo span.job-title {
    display: block;
    font: 600 16px/24px "Open Sans", sans-serif;
    text-transform: uppercase
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .toggle-row svg.toggle-down {
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    color: #fab813;
    -webkit-transform-origin: center;
    transform-origin: center
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .toggle-row.active .toggle-down svg {
    -webkit-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
    color: #000
}

section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .personnel-details {
    display: none;
    padding: 12px 42px 0 18px
}

@media(max-width: 768px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .personnel-details {
        padding: 12px 32px 0 12px
    }
}

@media(min-width: 769px) {
    section.personnel-cards .personnel-cards-list-container .personnel-cards-list .personnel-card .personnel-info-container .personnel-details p {
        font: 400 16px/25px "Open Sans", sans-serif
    }
}

section.contact-information {
    background: #f2f2f2;
    margin: 90px 0 0;
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    section.contact-information {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    section.contact-information {
        padding-left: 24px;
        padding-right: 24px
    }
}

section.contact-information .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section.contact-information .max-w-content {
        max-width: 1388px
    }
}

section.contact-information .inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

section.contact-information .inner-wrapper .cinfo-col {
    margin-right: 20px
}

@media(max-width: 1024px) {
    section.contact-information .inner-wrapper .cinfo-col {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px
    }

    section.contact-information .inner-wrapper .cinfo-col:last-child {
        margin-bottom: 0
    }
}

section.contact-information .inner-wrapper .cinfo-col:last-child {
    margin-right: 0
}

section.contact-information .inner-wrapper .cinfo-col.contact-num {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

section.contact-information .inner-wrapper .cinfo-col.contact-num svg {
    width: 28px;
    height: 28px;
    margin-right: 16px
}

section.contact-information .inner-wrapper .cinfo-col.contact-num .phone-number {
    font: 800 36px/42px "Open Sans", sans-serif
}

section.contact-information .inner-wrapper .cinfo-col .col-label {
    font: 400 16px/24px "Open Sans", sans-serif;
    display: block
}

section.contact-information .inner-wrapper .cinfo-col p {
    font: 400 16px/24px "Open Sans", sans-serif
}

.anchor-navigation {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .anchor-navigation {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    .anchor-navigation {
        padding-left: 24px;
        padding-right: 24px
    }
}

.anchor-navigation .inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    align-items: flex-start;
}

.anchor-navigation .inner-wrapper .nav-wrapper {
    display: inline-block;
}

.anchor-navigation .anchor-navigation-label {
    font-size: 12px;
}

.anchor-navigation .inner-wrapper .nav-wrapper .nav-anchor {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.anchor-navigation .inner-wrapper .nav-wrapper .nav-anchor svg {
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.anchor-navigation .inner-wrapper .nav-wrapper .nav-anchor span.anchor-text {
    font: 800 20px/1 "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #000;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.anchor-navigation .inner-wrapper .nav-wrapper:hover .nav-anchor svg,
.anchor-navigation .inner-wrapper .nav-wrapper.active .nav-anchor svg {
    stroke: var(--color-accent);
    color: var(--color-accent);
}

.anchor-navigation .inner-wrapper .nav-wrapper:hover .nav-anchor span.anchor-text,
.anchor-navigation .inner-wrapper .nav-wrapper.active .nav-anchor span.anchor-text {
    color: var(--color-accent);
    -webkit-transition-delay: 0 !important;
    transition-delay: 0 !important
}

.flow-section {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .flow-section {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    .flow-section {
        padding-left: 24px;
        padding-right: 24px
    }
}

.flow-section .top-text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px
}

.flow-section .top-text-container h2 {
    color: #000;
    margin-right: 24px
}

@media(min-width: 769px) {
    .flow-section .top-text-container h2 {
        font: 800 42px/56px "Open Sans", sans-serif
    }
}

.flow-section .top-text-container .text-content-col {
    width: 30%;
    max-width: 561px
}

.flow-section .top-text-container .text-content-col:last-child {
    margin-left: 24px
}

.flow-section .top-text-container .text-content-col p {
    font-size: 21px;
    line-height: 35px
}

@media(max-width: 768px) {
    .flow-section .top-text-container .text-content-col p {
        font-size: 18px;
        line-height: 26px
    }
}

@media(max-width: 480px) {
    .flow-section .top-text-container .text-content-col p {
        font-size: 16px;
        line-height: 24px
    }
}

@media(max-width: 1200px) {
    .flow-section .top-text-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 16px
    }

    .flow-section .top-text-container h2 {
        width: 100%;
        margin-right: 0;
        padding-bottom: 24px
    }

    .flow-section .top-text-container .text-content-col {
        width: 46%;
        max-width: initial;
        margin-bottom: 24px
    }

    .flow-section .top-text-container .text-content-col:last-child {
        margin-left: 0;
        margin-bottom: 0
    }
}

@media(max-width: 768px) {
    .flow-section .top-text-container .text-content-col {
        width: 100%
    }
}

.flow-section .flow-container {
    margin: 0 -18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 73px
}

@media(max-width: 768px) {
    .flow-section .flow-container {
        margin: 0 -10px
    }
}

.flow-section .flow-container .flow--cell {
    position: relative;
    width: 16.666%;
    padding: 0 18px;
    overflow: initial
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell {
        width: 33.333%
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell {
        width: 50%;
        padding: 0 10px
    }
}

.flow-section .flow-container .flow--cell:after {
    content: "";
    position: absolute;
    background: #000
}

.flow-section .flow-container .flow--cell.fc--first {
    width: 100%
}

.flow-section .flow-container .flow--cell.fc--first .fc--inner {
    width: calc(16.666% - 30px)
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell.fc--first .fc--inner {
        width: calc(33.333% - 30px)
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell.fc--first .fc--inner {
        width: calc(50% - 10px)
    }
}

.flow-section .flow-container .flow--cell .fc--inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 131px
}

.flow-section .flow-container .flow--cell .fc--inner p {
    margin: 0;
    padding: 0
}

.flow-section .flow-container .flow--cell .fc--inner p b,
.flow-section .flow-container .flow--cell .fc--inner p strong {
    font-weight: 400 !important;
    color: #fab813 !important
}

.flow-section .flow-container .flow--cell.fc--first .fc--inner,
.flow-section .flow-container .flow--cell.fc--last .fc--inner {
    background: #fab813;
    color: #000
}

.flow-section .flow-container .flow--cell.fc--first .fc--inner b,
.flow-section .flow-container .flow--cell.fc--first .fc--inner strong,
.flow-section .flow-container .flow--cell.fc--last .fc--inner b,
.flow-section .flow-container .flow--cell.fc--last .fc--inner strong {
    font-weight: 800 !important;
    color: #000 !important
}

.flow-section .flow-container .flow--cell.fc--last.next-row-arrow:before {
    content: "";
    width: 23px;
    height: 23px;
    background: url(./image-cc70cc5688aff6bf047e.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: calc(50% - 11.5px)
}

.flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before {
    content: "";
    width: 23px;
    height: 23px;
    background: url(./image-94088b0e22a4026ebc5f.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    left: -20px;
    top: calc(50% - 11.5px);
    -webkit-transform-origin: center;
    transform-origin: center
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(5) {
        top: -20px;
        left: calc(50% - 11.5px);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(6),
    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(7) {
        right: -20px;
        left: initial;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(4) {
        top: -20px;
        left: calc(50% - 11.5px);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(5) {
        top: calc(50% - 11.5px);
        right: -20px;
        left: initial;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(6) {
        top: -20px;
        left: calc(50% - 11.5px);
        right: initial;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .flow-section .flow-container .flow--cell.fc--last.current-row-arrow:before:nth-child(7) {
        left: -20px;
        right: initial;
        top: calc(50% - 11.5px);
        -webkit-transform: none;
        transform: none
    }
}

.flow-section .flow-container .flow--cell:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.flow-section .flow-container .flow--cell:nth-child(1):after {
    width: 3px;
    height: 73px;
    left: calc(8.333% - 1.5px);
    bottom: -73px
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(1):after {
        left: calc(16.666% - 1.5px)
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell:nth-child(1):after {
        left: calc(25% - 1.5px)
    }
}

.flow-section .flow-container .flow--cell:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.flow-section .flow-container .flow--cell:nth-child(2):after {
    width: 40px;
    height: 3px;
    top: calc(50% - 1.5px);
    right: -20px
}

.flow-section .flow-container .flow--cell:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.flow-section .flow-container .flow--cell:nth-child(3):after {
    width: 40px;
    height: 3px;
    top: calc(50% - 1.5px);
    right: -20px
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell:nth-child(3):after {
        width: 3px;
        height: 73px;
        left: calc(50% - 1.5px);
        bottom: -73px;
        right: initial;
        top: initial
    }
}

.flow-section .flow-container .flow--cell:nth-child(4) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.flow-section .flow-container .flow--cell:nth-child(4):after {
    width: 40px;
    height: 3px;
    top: calc(50% - 1.5px);
    right: -20px
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(4):after {
        width: 3px;
        height: 73px;
        left: calc(50% - 1.5px);
        bottom: -73px;
        right: initial;
        top: initial
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell:nth-child(4):after {
        width: 40px;
        height: 3px;
        top: calc(50% - 1.5px);
        bottom: initial;
        right: initial;
        left: -20px
    }
}

.flow-section .flow-container .flow--cell:nth-child(5) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.flow-section .flow-container .flow--cell:nth-child(5):after {
    width: 40px;
    height: 3px;
    top: calc(50% - 1.5px);
    right: -20px
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(5):after {
        right: initial;
        left: -20px
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell:nth-child(5):after {
        width: 3px;
        height: 73px;
        left: calc(50% - 1.5px);
        bottom: -73px;
        right: initial;
        top: initial
    }
}

.flow-section .flow-container .flow--cell:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.flow-section .flow-container .flow--cell:nth-child(6):after {
    width: 40px;
    height: 3px;
    top: calc(50% - 1.5px);
    right: -20px
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(6):after {
        right: initial;
        left: -20px
    }
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(6):after {
        left: initial;
        right: -20px
    }
}

.flow-section .flow-container .flow--cell:nth-child(7) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.flow-section .flow-container .flow--cell:nth-child(7):after {
    width: 3px;
    height: 73px;
    left: calc(50% - 1.5px);
    bottom: -73px
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(7):after {
        width: 40px;
        height: 3px;
        top: calc(50% - 1.5px);
        right: -20px;
        left: initial;
        bottom: initial
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell:nth-child(7):after {
        display: none
    }
}

.flow-section .flow-container .flow--cell:nth-child(8) {
    -webkit-box-ordinal-group: 15;
    -ms-flex-order: 14;
    order: 14
}

.flow-section .flow-container .flow--cell:nth-child(8):after {
    display: none
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(8):after {
        display: inline-block;
        width: 3px;
        height: 73px;
        left: calc(50% - 1.5px);
        top: -73px
    }
}

.flow-section .flow-container .flow--cell:nth-child(9) {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13
}

.flow-section .flow-container .flow--cell:nth-child(9):after {
    display: none
}

.flow-section .flow-container .flow--cell:nth-child(10) {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12
}

.flow-section .flow-container .flow--cell:nth-child(10):after {
    display: none
}

.flow-section .flow-container .flow--cell:nth-child(11) {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11
}

.flow-section .flow-container .flow--cell:nth-child(11):after {
    display: none
}

.flow-section .flow-container .flow--cell:nth-child(12) {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
}

.flow-section .flow-container .flow--cell:nth-child(12):after {
    display: none
}

.flow-section .flow-container .flow--cell:nth-child(13) {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
}

.flow-section .flow-container .flow--cell:nth-child(13):after {
    display: none
}

.flow-section .flow-container .flow--cell:nth-child(14) {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.flow-section .flow-container .flow--cell:nth-child(14):after {
    display: none
}

@media(max-width: 1366px) {
    .flow-section .flow-container .flow--cell:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .flow-section .flow-container .flow--cell:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .flow-section .flow-container .flow--cell:nth-child(3) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .flow-section .flow-container .flow--cell:nth-child(4) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .flow-section .flow-container .flow--cell:nth-child(5) {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .flow-section .flow-container .flow--cell:nth-child(6) {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .flow-section .flow-container .flow--cell:nth-child(7) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .flow-section .flow-container .flow--cell:nth-child(8) {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .flow-section .flow-container .flow--cell:nth-child(9) {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .flow-section .flow-container .flow--cell:nth-child(10) {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .flow-section .flow-container .flow--cell:nth-child(11) {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .flow-section .flow-container .flow--cell:nth-child(12) {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .flow-section .flow-container .flow--cell:nth-child(13) {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .flow-section .flow-container .flow--cell:nth-child(14) {
        -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
        order: 14
    }
}

@media(max-width: 768px) {
    .flow-section .flow-container .flow--cell:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .flow-section .flow-container .flow--cell:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .flow-section .flow-container .flow--cell:nth-child(3) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .flow-section .flow-container .flow--cell:nth-child(4) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .flow-section .flow-container .flow--cell:nth-child(5) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .flow-section .flow-container .flow--cell:nth-child(6) {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .flow-section .flow-container .flow--cell:nth-child(7) {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .flow-section .flow-container .flow--cell:nth-child(8) {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .flow-section .flow-container .flow--cell:nth-child(9) {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .flow-section .flow-container .flow--cell:nth-child(10) {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .flow-section .flow-container .flow--cell:nth-child(11) {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .flow-section .flow-container .flow--cell:nth-child(12) {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .flow-section .flow-container .flow--cell:nth-child(13) {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .flow-section .flow-container .flow--cell:nth-child(14) {
        -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
        order: 14
    }
}

.full-text-three-cards {
    background-color: #f2f2f2;
    padding-top: 76px;
    padding-bottom: 61px;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    .full-text-three-cards {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .full-text-three-cards {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media(min-width: 1024px) {
    .full-text-three-cards {
        margin-bottom: 60px
    }
}

@media(max-width: 1025px)and (min-width: 769px) {
    .full-text-three-cards {
        margin-bottom: 40px
    }
}

@media(max-width: 480px) {
    .full-text-three-cards {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.full-text-three-cards .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .full-text-three-cards .max-w-content {
        max-width: 1388px
    }
}

.full-text-three-cards .top-text-container {
    text-align: center;
    color: #000;
    margin-bottom: 80px
}

@media(max-width: 480px) {
    .full-text-three-cards .top-text-container {
        margin-bottom: 40px
    }
}

.full-text-three-cards .top-text-container h2 {
    padding-bottom: 24px
}

@media(min-width: 769px) {
    .full-text-three-cards .top-text-container h2 {
        font-size: 42px;
        line-height: 56px
    }
}

.full-text-three-cards .top-text-container div[data-aid=rich-text] {
    text-align: center
}

.full-text-three-cards .top-text-container p {
    max-width: 1000px;
    margin: 0 auto;
    text-wrap: balance;
}

.full-text-three-cards .top-text-container p:last-child {
    margin-bottom: 0
}

@media(max-width: 480px) {
    .full-text-three-cards .top-text-container p {
        font-size: 16px;
        line-height: 24px
    }
}

.full-text-three-cards .card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    justify-self: flex-start;
    margin: 0 -22.5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 1366px) {
    .full-text-three-cards .card-container {
        margin: 0 -15px
    }
}

@media(max-width: 800px) {
    .full-text-three-cards .card-container {
        margin: 0
    }
}

.full-text-three-cards .card-container .card--col {
    width: 33.333%;
    padding: 0 22.5px
}

@media(max-width: 1366px) {
    .full-text-three-cards .card-container .card--col {
        padding: 0 15px
    }
}

@media(max-width: 800px) {
    .full-text-three-cards .card-container .card--col {
        width: 100%;
        padding: 0;
        margin-bottom: 30px
    }

    .full-text-three-cards .card-container .card--col:last-child {
        margin-bottom: 0
    }
}

.full-text-three-cards .card-container .card--col .cc--inner {
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--color-light) 90%, black);
    background: #fff;
    color: #000;
    padding: 65px 41px
}

@media(max-width: 1366px) {
    .full-text-three-cards .card-container .card--col .cc--inner {
        padding: 40px 20px
    }
}

.full-text-three-cards .card-container .card--col .cc--inner .image-container {
    width: 100%;
    margin-bottom: 2rem;
}

@media(max-width: 1366px) {
    .full-text-three-cards .card-container .card--col .cc--inner .image-container {
        margin-bottom: 40px
    }
}

.full-text-three-cards .card-container .card--col .cc--inner .image-container img {
    width: auto;
    height: auto;
    max-width: 100px;
    display: block;
    margin: 0 auto
}

.full-text-three-cards .card-container .card--col .cc--inner .details-container h3 {
    text-align: center;
    padding-bottom: 28px;
    font-size: 22px !important;
    line-height: 34px !important
}

@media(max-width: 768px) {
    .full-text-three-cards .card-container .card--col .cc--inner .details-container h3 {
        font-size: 21px !important;
        line-height: 32px !important
    }
}

.full-text-three-cards .card-container .card--col .cc--inner .details-container p {
    text-align: left
}

@media(max-width: 768px) {
    .full-text-three-cards .card-container .card--col .cc--inner .details-container p {
        font-size: 14px;
        line-height: 21px
    }
}

.shop-now-product-list {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto;
    min-height: 90vh
}

@media(max-width: 1440px) {
    .shop-now-product-list {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    .shop-now-product-list {
        padding-left: 24px;
        padding-right: 24px
    }
}

.shop-now-product-list .collection-nav-wrapper {
    margin-bottom: 40px
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper {
    display: inline-block;
    margin-right: 20px
}

@media(max-width: 768px) {
    .shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper {
        margin-right: 0;
        margin-bottom: 26px;
        width: 100%
    }
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger {
    display: inline-block;
    position: relative;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    text-align: left;
    padding: 6px 18px;
    border: solid 1px #000;
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger svg {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger span.ct--text {
    font: 800 28px/42px "Open Sans", sans-serif;
    color: #000;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    text-transform: uppercase
}

@media(max-width: 768px) {
    .shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger span.ct--text {
        font-size: 24px;
        line-height: 32px
    }
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger:hover,
.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger:focus,
.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger.active {
    padding-right: 50px;
    -webkit-transition-delay: 0 !important;
    transition-delay: 0 !important;
    background: #fab813;
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger:hover svg,
.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger:focus svg,
.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger.active svg {
    opacity: 1;
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger:hover span.ct--text,
.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger:focus span.ct--text,
.shop-now-product-list .collection-nav-wrapper .cnav--trigger-wrapper .cnav--trigger.active span.ct--text {
    color: #000;
    -webkit-transition-delay: 0 !important;
    transition-delay: 0 !important
}

.shop-now-product-list .pl--collection-wrapper {
    display: none;
    -webkit-animation: fadeDown .4s ease-in-out forwards;
    animation: fadeDown .4s ease-in-out forwards
}

.shop-now-product-list .pl--collection-wrapper.active {
    display: block
}

.shop-now-product-list .product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -11px;
    row-gap: 70px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 480px) {
    .shop-now-product-list .product-list {
        row-gap: 0;
        margin: 0
    }
}

.shop-now-product-list .product-list.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.shop-now-product-list .product-list.justify-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.shop-now-product-list .product-list .product-tile {
    padding: 0 11px;
    width: 25%
}

@media(max-width: 1024px) {
    .shop-now-product-list .product-list .product-tile {
        width: 33.333%
    }
}

@media(max-width: 768px) {
    .shop-now-product-list .product-list .product-tile {
        width: 50%
    }
}

@media(max-width: 480px) {
    .shop-now-product-list .product-list .product-tile {
        width: 100%;
        padding: 0;
        margin-bottom: 40px
    }
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    min-height: 240px;
    position: relative;
    border: 1px solid #707070
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container img,
.shop-now-product-list .product-list .product-tile .pt--inner .image-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container:hover .hover-overlay {
    opacity: 1;
    pointer-events: all
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 184, 19, .8)
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay .learn-more-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 12px 27px 10px !important;
    min-width: 178px;
    margin-top: 16px;
    background: rgba(0, 0, 0, 0)
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay .learn-more-btn span:first-child {
    color: #000
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay .learn-more-btn span.border {
    border-color: #000 !important
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay .learn-more-btn:before,
.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay .learn-more-btn:after {
    background: #000 !important
}

.shop-now-product-list .product-list .product-tile .pt--inner .image-container .hover-overlay .learn-more-btn:hover span:first-child {
    color: #fff
}

.shop-now-product-list .product-list .product-tile .pt--inner h3,
.shop-now-product-list .product-list .product-tile .pt--inner h4 {
    text-align: center;
    font-weight: 800;
    margin-top: 16px;
    font-size: 18px;
    line-height: 26px
}

.collection-header {
    width: 100%
}

.collection-header .content-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .collection-header .content-container {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    .collection-header .content-container {
        padding-left: 24px;
        padding-right: 24px
    }
}

.collection-header .inner-wrapper {
    width: 100%;
    min-height: 588px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 768px) {
    .collection-header .inner-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.collection-header .inner-wrapper .collection-title {
    width: 60%;
    padding-right: 64px
}

@media(max-width: 768px) {
    .collection-header .inner-wrapper .collection-title {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px
    }
}

.collection-header .inner-wrapper .collection-title h1 {
    width: 100%;
    font: 800 56px/64px "Open Sans", sans-serif;
    padding-bottom: 0;
    margin-bottom: 0
}

@media(max-width: 768px) {
    .collection-header .inner-wrapper .collection-title h1 {
        font-size: 28px;
        line-height: 33.6px;
        text-align: center
    }
}

.collection-header .inner-wrapper .collection-image {
    width: 40%;
    max-width: 732px
}

@media(max-width: 768px) {
    .collection-header .inner-wrapper .collection-image {
        width: 100%
    }
}

.collection-header .inner-wrapper .collection-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    display: block
}

.template-collection .icon-cards-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important
}

.template-collection section[data-aid=image-with-text-section] {
    padding-top: 24px !important;
    padding-bottom: 24px !important
}

.template-collection .video-sec {
    max-width: 1024px !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important
}

.icon-cards-section {
    width: 100%;
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.icon-cards-section .content-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0;
    padding-right: 0;
    max-width: 998px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .icon-cards-section .content-container {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .icon-cards-section .content-container {
        padding-left: 24px;
        padding-right: 24px
    }
}

.icon-cards-section .inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -6px
}

@media(max-width: 1280px) {
    .icon-cards-section .inner-wrapper {
        margin: 0 -12px
    }
}

@media(max-width: 640px) {
    .icon-cards-section .inner-wrapper {
        margin: 0
    }
}

.icon-cards-section .inner-wrapper .icon-card {
    width: 33.333%;
    padding: 0 6px
}

@media(max-width: 1024px) {
    .icon-cards-section .inner-wrapper .icon-card {
        width: 50%
    }
}

@media(max-width: 640px) {
    .icon-cards-section .inner-wrapper .icon-card {
        width: 100%;
        padding: 0
    }
}

.icon-cards-section .inner-wrapper .icon-card .icon-card-inner {
    width: 100%;
    padding: 24px 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media(max-width: 640px) {
    .icon-cards-section .inner-wrapper .icon-card .icon-card-inner {
        padding: 20px 0
    }
}

.icon-cards-section .inner-wrapper .icon-card .icon-container {
    width: 36px;
    height: auto
}

@media(max-width: 640px) {
    .icon-cards-section .inner-wrapper .icon-card .icon-container {
        width: 26px
    }
}

.icon-cards-section .inner-wrapper .icon-card .icon-container img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    display: block
}

.icon-cards-section .inner-wrapper .icon-card .description-container {
    width: calc(100% - 36px);
    padding-left: 20px
}

@media(max-width: 640px) {
    .icon-cards-section .inner-wrapper .icon-card .description-container {
        padding-left: 12px
    }
}

.icon-cards-section .inner-wrapper .icon-card .description-container p {
    font: 700 16px/24px "Open Sans", sans-serif;
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0
}

.fya-filters-row {
    width: 100%;
    position: relative
}

.fya-filters-row .theme-section-padding,
.fya-filters-row .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    .fya-filters-row .theme-section-padding,
    .fya-filters-row .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {

    .fya-filters-row .theme-section-padding,
    .fya-filters-row .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

.fya-filters-row .inner-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 40px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px
}

@media(max-width: 1220px) {
    .fya-filters-row .inner-wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

.fya-filters-row .inner-wrapper .filter-group {
    width: 20%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media(max-width: 1220px) {
    .fya-filters-row .inner-wrapper .filter-group {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }

    .fya-filters-row .inner-wrapper .filter-group:first-child,
    .fya-filters-row .inner-wrapper .filter-group:nth-child(2),
    .fya-filters-row .inner-wrapper .filter-group:nth-child(3),
    .fya-filters-row .inner-wrapper .filter-group:nth-child(4) {
        width: calc(50% - 10px);
        max-width: initial !important;
        margin-right: 0 !important
    }

    .fya-filters-row .inner-wrapper .filter-group:nth-child(5) {
        width: 100% !important;
        max-width: initial !important
    }
}

@media(max-width: 640px) {
    .fya-filters-row .inner-wrapper .filter-group {
        width: 100% !important
    }
}

.fya-filters-row .inner-wrapper .filter-group:first-child,
.fya-filters-row .inner-wrapper .filter-group:nth-child(2),
.fya-filters-row .inner-wrapper .filter-group:nth-child(3) {
    max-width: 388px
}

.fya-filters-row .inner-wrapper .filter-group:nth-child(4) {
    max-width: 282px
}

.fya-filters-row .inner-wrapper .filter-group label {
    display: block;
    margin-bottom: 12px;
    font: 800 18px/26px "Open Sans", sans-serif;
    color: #000;
    text-transform: uppercase
}

.fya-filters-row .inner-wrapper .filter-group .sfilter {
    width: 100%;
    position: relative
}

.fya-filters-row .inner-wrapper .filter-group .sfilter svg {
    color: #000;
    position: absolute;
    right: 16px;
    top: calc(50% - 12px);
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    width: 24px;
    height: 24px
}

.fya-filters-row .inner-wrapper .filter-group .sfilter.toggled svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fya-filters-row .inner-wrapper .filter-group .sfilter input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important
}

.fya-filters-row .inner-wrapper .filter-group .sfilter input:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important
}

@media(max-width: 1220px) {
    .fya-filters-row .inner-wrapper .filter-group .select2-container {
        width: 100% !important
    }
}

.fya-filters-row .inner-wrapper .filter-group .select2-selection {
    height: auto;
    border-radius: 0
}

.fya-filters-row .inner-wrapper .filter-group .select2-selection[aria-expanded=true] .select2-selection__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fya-filters-row .inner-wrapper .filter-group .select-container:after {
    display: none
}

.fya-filters-row .inner-wrapper .filter-group select,
.fya-filters-row .inner-wrapper .filter-group .select2-selection__rendered {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 14px 42px 14px 25px;
    border: none;
    outline: none;
    font: 400 18px/26px "Open Sans", sans-serif;
    border-radius: 0
}

@media(max-width: 768px) {

    .fya-filters-row .inner-wrapper .filter-group select,
    .fya-filters-row .inner-wrapper .filter-group .select2-selection__rendered {
        padding: 14px 42px 14px 12px;
        font-size: 16px
    }
}

.fya-filters-row .inner-wrapper .filter-group select option,
.fya-filters-row .inner-wrapper .filter-group .select2-selection__rendered option {
    background: #fff;
    font: 400 18px/26px "Open Sans", sans-serif;
    padding: 12px 25px;
    color: #000
}

@media(max-width: 768px) {

    .fya-filters-row .inner-wrapper .filter-group select option,
    .fya-filters-row .inner-wrapper .filter-group .select2-selection__rendered option {
        font-size: 16px
    }
}

.fya-filters-row .inner-wrapper .filter-group .select2-selection__arrow {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    background: url(./image-21faf8fc3d1604d47862.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    pointer-events: none
}

.fya-filters-row .inner-wrapper .filter-group .select2-selection__arrow b {
    display: none
}

.fya-filters-row .inner-wrapper button {
    position: relative;
    width: 25%;
    background: #000;
    padding: 14px 10px 14px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px
}

@media(max-width: 1220px) {
    .fya-filters-row .inner-wrapper button {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 100%;
        max-width: initial
    }
}

.fya-filters-row .inner-wrapper button span.btn-text {
    color: #fff;
    font: 800 18px/21px "Open Sans", sans-serif;
    z-index: 1;
    position: relative
}

.fya-filters-row .inner-wrapper button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-filters-row .inner-wrapper button:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-filters-row .inner-wrapper button:hover:before,
.fya-filters-row .inner-wrapper button:hover:after {
    width: 51%
}

.fyaFilterToggleBtn {
    text-align: left;
    border: 1px solid #000;
    position: relative;
    padding-right: 42px
}

.fyaFilterToggleBtn span.dropdown__text {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block
}

.fyaFilterToggleBtn:hover {
    background: rgba(0, 0, 0, 0) !important;
    color: #000 !important
}

.fyaFilterToggleBtn::before,
.fyaFilterToggleBtn::after {
    display: none !important
}

.fyaFilterToggleBtn.toggled .dropdown__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fyaFilterToggleBtn .dropdown__arrow {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    background: url(./image-21faf8fc3d1604d47862.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    pointer-events: none
}

.fyaFilterToggleBtn .dropdown__arrow b {
    display: none
}

.fya-products-listing {
    width: 100%;
    position: relative
}

.fya-products-listing .theme-section-padding,
.fya-products-listing .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    .fya-products-listing .theme-section-padding,
    .fya-products-listing .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {

    .fya-products-listing .theme-section-padding,
    .fya-products-listing .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

.fya-products-listing .inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    row-gap: 70px;
    margin: 0 -14.5px
}

@media(max-width: 880px) {
    .fya-products-listing .inner-wrapper {
        margin: 0
    }
}

.fya-product-card {
    width: 25%;
    padding: 0 14.5px
}

@media(max-width: 1900px) {
    .fya-product-card {
        width: 33.333%
    }
}

@media(max-width: 1280px) {
    .fya-product-card {
        width: 50%
    }
}

@media(max-width: 880px) {
    .fya-product-card {
        width: 100%;
        padding: 0
    }
}

.fya-product-card .card-outer {
    width: 100%;
    position: relative
}

.fya-product-card .card-outer h3 {
    padding: 12px 0;
    text-align: center;
    font: 800 18px/30px "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000
}

.fya-product-card .card-outer .card-inner {
    width: 100%;
    position: relative;
    aspect-ratio: 1/1;
    border: 1px solid #707070;
    margin-bottom: 37px
}

.fya-product-card .card-outer .card-inner .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fya-product-card .card-outer .card-inner .image-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    display: block
}

.fya-product-card .card-outer .card-inner .unavailable-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 5
}

.fya-product-card .card-outer .card-inner .unavailable-product .overlay-text {
    width: 100%;
    text-align: center;
    display: block;
    color: #fff;
    font: 800 21px/35px "Open Sans", sans-serif;
    padding: 10px;
    background: #000
}

.fya-product-card .card-outer .card-inner .user-interactions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.fya-product-card .card-outer .card-inner .user-interactions .btn-action-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn,
.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn {
    width: 48%;
    min-width: 149.09
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart-quantity-row {
    width: 54px;
    position: absolute;
    top: 0;
    right: 0
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border: 1px solid #707070
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector .loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, .15)
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector .loader-overlay img {
    width: 42px;
    height: 42px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    display: block
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-decrease {
    width: 54px;
    height: 54px;
    background: #fff;
    color: #000;
    border-right: 1px solid #707070;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    font: 700 32px/35px "Open Sans", sans-serif
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-decrease:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-decrease:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-decrease:hover:before,
.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-decrease:hover:after {
    width: 51%
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-increase {
    width: 54px;
    height: 54px;
    background: #fff;
    color: #000;
    border-left: 1px solid #707070;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    font: 700 32px/35px "Open Sans", sans-serif
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-increase:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-increase:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-increase:hover:before,
.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-increase:hover:after {
    width: 51%
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector button.q-increase:disabled {
    padding: 0 !important;
    pointer-events: none;
    opacity: .45
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector input[type=number] {
    -moz-appearance: textfield;
    height: 54px;
    width: calc(100% - 108px);
    text-align: center;
    font: 800 21px/35px "Open Sans", sans-serif;
    color: #000;
    border: none
}

.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector input[type=number]::-webkit-outer-spin-button,
.fya-product-card .card-outer .card-inner .user-interactions .quantity-selector input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn {
    background: #fff;
    border: 1px solid #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear;
    cursor: pointer;
    height: 42px;
    padding: 0 12px;
    position: relative
}

.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn span.btn-text {
    color: #000;
    font: 600 13px/18px "Open Sans", sans-serif;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    text-align: center
}

@media(max-width: 480px) {
    .fya-product-card .card-outer .card-inner .user-interactions .view-product-btn span.btn-text {
        font-size: 14px;
        line-height: 25px
    }
}

.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn:hover:before,
.fya-product-card .card-outer .card-inner .user-interactions .view-product-btn:hover:after {
    width: 51%
}

.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn {
    background: #000;
    border: 1px solid #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font: 600 16px/20px "Open Sans", sans-serif;
    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear;
    text-transform: uppercase;
    cursor: pointer;
    height: 42px;
    padding: 0 12px;
    position: relative
}

.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn span.btn-text {
    color: #fff;
    font: 600 13px/18px "Open Sans", sans-serif;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    text-align: center
}

@media(max-width: 480px) {
    .fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn span.btn-text {
        font-size: 14px;
        line-height: 25px
    }
}

.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn:hover:before,
.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn:hover:after {
    width: 51%
}

.fya-product-card .card-outer .card-inner .user-interactions .reveal-price-btn:hover span.btn-text {
    color: #fff
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart {
    width: 54px;
    height: 54px;
    background: #fab813;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 9px 12px 9px 9px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart img,
.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart svg {
    width: 33px;
    height: 33px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    display: block
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart svg path,
.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart svg circle,
.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart svg line {
    -webkit-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart:disabled {
    pointer-events: none;
    cursor: default;
    opacity: 1
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart:hover {
    background-color: #000
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart:hover svg path,
.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart:hover svg circle,
.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart:hover svg line {
    stroke: #fff !important
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart:hover span.btn-text {
    color: #fff
}

.fya-product-card .card-outer .card-inner .user-interactions .add-to-cart span.btn-text {
    margin-left: 8px;
    color: #000;
    font: 600 16px/20px "Open Sans", sans-serif;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    text-align: center
}

@media(max-width: 480px) {
    .fya-product-card .card-outer .card-inner .user-interactions .add-to-cart span.btn-text {
        font-size: 14px;
        line-height: 25px
    }
}

.no-attachments {
    width: 100%;
    position: relative
}

.no-attachments .inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.no-attachments .inner-wrapper h2 {
    font: 600 32px/42px "Open Sans", sans-serif;
    color: #000;
    margin-bottom: 36px;
    padding: 0
}

@media(max-width: 480px) {
    .no-attachments .inner-wrapper h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px
    }
}

.no-attachments .inner-wrapper p {
    font: 700 21px/35px "Open Sans", sans-serif;
    color: #000;
    margin-bottom: 16px
}

.no-attachments .inner-wrapper p:last-of-type {
    margin-bottom: 0
}

@media(max-width: 480px) {
    .no-attachments .inner-wrapper p {
        font-size: 14px;
        line-height: 25px
    }
}

.no-attachments .inner-wrapper p a {
    text-decoration: underline !important;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out
}

.no-attachments .inner-wrapper p a:hover {
    opacity: .65
}

.no-attachments .inner-wrapper .get-in-touch-btn-alt {
    margin-top: 56px
}

@media(max-width: 480px) {
    .no-attachments .inner-wrapper .get-in-touch-btn-alt {
        margin-top: 32px
    }
}

.sold-out-badge {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    color: #fff;
    background-color: #000;
    height: 54px;
    width: 120px;
    font-size: 16px;
    line-height: 22px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600
}

.fya-cta-banner {
    width: 100%;
    background: #000;
    margin-top: 132px;
    margin-bottom: 78px
}

@media(max-width: 480px) {
    .fya-cta-banner {
        margin-top: 40px;
        margin-bottom: 40px
    }
}

.fya-cta-banner .theme-section-padding,
.fya-cta-banner .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-top: 60px;
    padding-bottom: 60px
}

.fya-cta-banner .inner-wrapper {
    min-height: 264px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.fya-cta-banner .inner-wrapper .content {
    text-align: center
}

.fya-cta-banner .inner-wrapper .content h2 {
    font: 600 36px/48px "Open Sans", sans-serif;
    color: #fff;
    margin: 0;
    padding: 0
}

@media(max-width: 480px) {
    .fya-cta-banner .inner-wrapper .content h2 {
        font-size: 32px;
        line-height: 42px
    }
}

.fya-cta-banner .inner-wrapper .content .get-in-touch-btn,
.fya-cta-banner .inner-wrapper .content .get-in-touch-btn-alt {
    margin-top: 56px
}

@media(max-width: 480px) {

    .fya-cta-banner .inner-wrapper .content .get-in-touch-btn,
    .fya-cta-banner .inner-wrapper .content .get-in-touch-btn-alt {
        margin-top: 32px
    }
}

.parts-widget {
    background: #000;
    margin-top: 83px;
    margin-bottom: 54px
}

.parts-widget .content-container {
    padding-top: 80px;
    padding-bottom: 80px
}

.parts-widget .content-container .inner-wrapper {
    max-width: 1288px;
    margin: 0 auto
}

.parts-widget .content-container .inner-wrapper>h3 {
    color: #fab813;
    font: 800 30px/41px "Open Sans", sans-serif;
    margin-bottom: 68px;
    padding: 0;
    text-transform: uppercase
}

@media(max-width: 768px) {
    .parts-widget .content-container .inner-wrapper>h3 {
        font-size: 28px;
        line-height: 33.6px
    }
}

.parts-widget .content-container .inner-wrapper .parts-row {
    width: 100%
}

.parts-widget .content-container .inner-wrapper .parts-row .slick-arrow {
    width: 32px;
    height: 56px;
    z-index: 10;
    color: rgba(0, 0, 0, 0)
}

@media(max-width: 768px) {
    .parts-widget .content-container .inner-wrapper .parts-row .slick-arrow {
        width: 24px;
        height: 42px
    }
}

.parts-widget .content-container .inner-wrapper .parts-row .slick-arrow::before {
    display: none
}

.parts-widget .content-container .inner-wrapper .parts-row .slick-arrow.slick-prev {
    background: url(./image-7964904038af84f6912f.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -47px
}

@media(max-width: 1023px) {
    .parts-widget .content-container .inner-wrapper .parts-row .slick-arrow.slick-prev {
        left: -30px
    }
}

@media(max-width: 768px) {
    .parts-widget .content-container .inner-wrapper .parts-row .slick-arrow.slick-prev {
        left: -17px
    }
}

.parts-widget .content-container .inner-wrapper .parts-row .slick-arrow.slick-next {
    background: url(./image-79b39fa9ce271697fe4c.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: -47px
}

@media(max-width: 1023px) {
    .parts-widget .content-container .inner-wrapper .parts-row .slick-arrow.slick-next {
        right: -30px
    }
}

@media(max-width: 768px) {
    .parts-widget .content-container .inner-wrapper .parts-row .slick-arrow.slick-next {
        right: -17px
    }
}

@media(max-width: 880px) {
    .parts-widget .content-container .inner-wrapper .parts-row {
        margin: 0
    }
}

.parts-widget .content-container .inner-wrapper .parts-row .slick-slide>div {
    width: 100%
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card {
    width: 100% !important
}

@media(max-width: 1900px) {
    .parts-widget .content-container .inner-wrapper .parts-row .fya-product-card {
        width: 100% !important
    }
}

@media(max-width: 1280px) {
    .parts-widget .content-container .inner-wrapper .parts-row .fya-product-card {
        width: 100% !important
    }
}

@media(max-width: 880px) {
    .parts-widget .content-container .inner-wrapper .parts-row .fya-product-card {
        width: 100% !important;
        padding: 0 24px
    }
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card h3 {
    color: #fff;
    border-color: #fff
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .view-product-btn {
    display: none
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .reveal-price-btn {
    background: #000;
    border-color: #000;
    width: 150px
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .reveal-price-btn:after,
.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .reveal-price-btn:before {
    background: #fab813
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .reveal-price-btn:hover span.btn-text {
    color: #fff
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .reveal-price-btn span.btn-text {
    color: #fff
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .user-interactions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.parts-widget .content-container .inner-wrapper .parts-row .fya-product-card .user-interactions .btn-action-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto !important;
    margin-right: 12px !important
}

#find-your-attachment-app {
    width: 100%
}

#find-your-attachment-app>.content-container.theme-section-padding,
#find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section] {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    #find-your-attachment-app>.content-container.theme-section-padding,
    #find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {

    #find-your-attachment-app>.content-container.theme-section-padding,
    #find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media(max-width: 480px) {

    #find-your-attachment-app>.content-container.theme-section-padding,
    #find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section] {
        padding-top: 60px;
        padding-bottom: 0
    }
}

#find-your-attachment-app>.content-container.theme-section-padding>.inner-wrapper h2,
#find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section]>.inner-wrapper h2 {
    font: 800 30px/41px "Open Sans", sans-serif;
    color: #000;
    margin: 0;
    padding: 0
}

@media(max-width: 768px) {

    #find-your-attachment-app>.content-container.theme-section-padding>.inner-wrapper h2,
    #find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section]>.inner-wrapper h2 {
        font-size: 28px;
        line-height: 33.6px
    }
}

#find-your-attachment-app>.content-container.theme-section-padding>.inner-wrapper .text-content,
#find-your-attachment-app>.faq-accordion-sec+section.content-container[data-aid=accordion-section]>.inner-wrapper .text-content {
    margin: 20px 0 0
}

.attachment-upsell {
    width: 100%;
    background: #000;
    margin-top: 120px
}

.attachment-upsell .theme-section-padding,
.attachment-upsell .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    .attachment-upsell .theme-section-padding,
    .attachment-upsell .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {

    .attachment-upsell .theme-section-padding,
    .attachment-upsell .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media(min-width: 1024px) {

    .attachment-upsell .theme-section-padding,
    .attachment-upsell .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-top: 89px;
        padding-bottom: 89px
    }
}

.attachment-upsell .inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.attachment-upsell .inner-wrapper .left-col-text {
    width: 438px
}

@media(max-width: 1280px) {
    .attachment-upsell .inner-wrapper .left-col-text {
        width: 100%;
        max-width: initial
    }
}

.attachment-upsell .inner-wrapper .left-col-text h3 {
    font: 800 40px/50px "Open Sans", sans-serif;
    color: #fab813;
    margin-bottom: 36px
}

@media(max-width: 768px) {
    .attachment-upsell .inner-wrapper .left-col-text h3 {
        font-size: 28px;
        line-height: 36px
    }
}

.attachment-upsell .inner-wrapper .left-col-text strong,
.attachment-upsell .inner-wrapper .left-col-text b {
    font-weight: 800
}

.attachment-upsell .inner-wrapper .left-col-text p,
.attachment-upsell .inner-wrapper .left-col-text li {
    font: 400 21px/35px "Open Sans", sans-serif;
    color: #fff
}

.attachment-upsell .inner-wrapper .left-col-text ul {
    list-style: disc;
    color: #fff;
    padding-left: 24px
}

.attachment-upsell .inner-wrapper .right-col-attachments {
    width: calc(100% - 438px);
    padding-left: 24px
}

@media(max-width: 1280px) {
    .attachment-upsell .inner-wrapper .right-col-attachments {
        width: 100%;
        padding-left: 0;
        margin-top: 40px
    }
}

.attachment-upsell .inner-wrapper .right-col-attachments .card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -13.5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px
}

@media(max-width: 480px) {
    .attachment-upsell .inner-wrapper .right-col-attachments .card-container {
        margin: 0
    }
}

.attachment-upsell .inner-wrapper .right-col-attachments .attachment-card {
    padding: 0 13.5px;
    width: 33.333%
}

@media(max-width: 480px) {
    .attachment-upsell .inner-wrapper .right-col-attachments .attachment-card {
        width: 100%;
        min-width: initial;
        padding: 0
    }
}

.attachment-upsell .inner-wrapper .right-col-attachments .attachment-card a {
    width: 100%;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.attachment-upsell .inner-wrapper .right-col-attachments .attachment-card a:hover {
    opacity: .75
}

.attachment-upsell .inner-wrapper .right-col-attachments .attachment-card a .image-container {
    aspect-ratio: 1/1;
    width: 100%;
    background: #efefef;
    position: relative
}

.attachment-upsell .inner-wrapper .right-col-attachments .attachment-card a .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.homepage-collection {
    width: 100%;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 60px;
    padding-bottom: 60px
}

@media(max-width: 1440px) {
    .homepage-collection {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .homepage-collection {
        padding-left: 24px;
        padding-right: 24px
    }
}

.homepage-collection .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .homepage-collection .max-w-content {
        max-width: 1388px
    }
}

.homepage-collection .inner-wrapper>h2 {
    font-weight: 800;
    font-size: 28px;
    line-height: 34px;
    font-weight: 800;
    padding: 0
}

@media(min-width: 769px) {
    .homepage-collection .inner-wrapper>h2 {
        font-size: 42px;
        line-height: 56px
    }
}

.homepage-collection .collection-slider {
    position: relative
}

@media only screen and (max-width: 1440px) {
    .homepage-collection .collection-slider {
        padding-left: 44px;
        padding-right: 44px
    }
}

.homepage-collection .collection-list {
    margin: 28px -14px 0
}

.homepage-collection .collection-list .collection-column {
    margin: 0 14px
}

.homepage-collection .collection-list .collection-column .image-container {
    width: 100%;
    position: relative;
    margin-bottom: 24px
}

.homepage-collection .collection-list .collection-column .image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 417/482;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    display: block
}

.homepage-collection .collection-list .collection-column .image-container .is-sale-tag {
    position: absolute;
    top: 42px;
    left: 42px;
    width: 111px;
    height: 36px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    color: #000;
    background: #fab813;
    font-weight: 800;
    font-size: 18px;
    line-height: 18px
}

.homepage-collection .collection-list .collection-column .collection-details {
    width: 100%
}

.homepage-collection .collection-list .collection-column .collection-details h4 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    padding: 12px 0 14px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: block;
    width: 100%;
    text-transform: uppercase
}

.homepage-collection .collection-list .collection-column .collection-details .excerpt {
    padding: 12px 0;
    border-bottom: 1px solid #000
}

.homepage-collection .collection-list .collection-column .collection-details .excerpt p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 25px
}

.homepage-collection .collection-list .collection-column .collection-details .excerpt p:last-child {
    margin: 0
}

.homepage-collection .collection-list .collection-column .collection-details .btns-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 12px
}

.homepage-collection .collection-list .collection-column .collection-details .btns-container a.view-specsheet {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    margin: 0 0 12px
}

.homepage-collection .collection-list .collection-column .collection-details .btns-container a.view-specsheet span.btn-text {
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-right: 12px
}

.homepage-collection .collection-list .collection-column .collection-details .btns-container a[data-armada-animation=button-primary] {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    height: 40px;
    width: 124px;
    min-height: initial;
    margin: 0 0 12px
}

.homepage-collection .collection-list .collection-column .collection-details .btns-container a[data-armada-animation=button-primary] span[data-armada-button-text] {
    font-size: 14px;
    line-height: 14px
}

@media only screen and (min-width: 1601px) {
    .homepage-collection .collection-list .collection-column .collection-details .btns-container a[data-armada-animation=button-primary] span[data-armada-button-text] {
        font-size: 14px;
        line-height: 14px
    }
}

.homepage-collection .slider-nav {
    width: calc(100% + 80px);
    position: absolute;
    pointer-events: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: calc(50% - 33px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media only screen and (max-width: 1440px) {
    .homepage-collection .slider-nav {
        width: 100%
    }
}

.homepage-collection .slider-nav button {
    width: 34px;
    height: 34px;
    position: relative;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: all
}

.homepage-collection .slider-nav button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media(min-width: 1024px) {
    header-basic {
        padding-left: 82px !important;
        padding-right: 53px !important
    }
}

header-basic input[data-aid=expanded-search-bar-header]::-webkit-input-placeholder {
    opacity: .3
}

header-basic input[data-aid=expanded-search-bar-header]::-moz-placeholder {
    opacity: .3
}

header-basic input[data-aid=expanded-search-bar-header]:-ms-input-placeholder {
    opacity: .3
}

header-basic input[data-aid=expanded-search-bar-header]::-ms-input-placeholder {
    opacity: .3
}

header-basic input[data-aid=expanded-search-bar-header]::placeholder {
    opacity: .3
}

header-basic>header {
    max-width: 1920px;
    margin: 0 auto
}

@media(min-width: 1024px) {
    armada-navigation ul[data-aid=navigation-items] {
        padding-left: 82px
    }
}

armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item] {
    margin-right: 76px
}

@media(max-width: 1280px)and (min-width: 1024px) {
    armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item] {
        margin-right: 40px
    }
}

@media(max-width: 1023px) {
    armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item] {
        margin-right: 0
    }
}

@media(min-width: 1024px) {
    armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item] summary>div>span {
        padding-top: 22px;
        padding-bottom: 22px
    }
}

armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item] svg[data-aid=icon-chevron-right] {
    color: #fff
}

armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item].active-link armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item]:hover summary h5,
armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item].active-link armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item]:hover summary svg,
armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item]:focus summary h5,
armada-navigation ul[data-aid=navigation-items] li[data-aid=navigation-list-item]:focus summary svg {
    color: #fab813 !important
}

armada-navigation div[data-armada-selector=navigation-item-dropdown] {
    padding-left: 82px;
    padding-right: 53px
}

armada-navigation a.active-link {
    color: #fab813
}

armada-navigation a.active-link h5,
armada-navigation a.active-link svg {
    color: #fab813 !important
}

div#main-navigation {
    overflow-x: clip;
    overflow-y: initial
}

div#main-navigation>ul[data-aid=navigation-items] {
    max-width: 2056px
}

li.top-level-menu {
    position: relative
}

li.top-level-menu.hovered .tlm--inner>a>h5 {
    color: #fab813
}

li.top-level-menu.hovered .tlm--dropdown {
    display: block
}

li.top-level-menu .tlm--inner>a {
    display: inline-block;
    padding-top: 22px;
    padding-bottom: 22px
}

li.top-level-menu .tlm--inner>a h5 {
    font-size: 18px
}

li.top-level-menu .tlm--inner>a:hover h5 {
    color: #fab813;
    -webkit-transition: all .25s linear;
    transition: all .25s linear
}

li.top-level-menu .tlm--dropdown {
    display: none;
    position: absolute;
    left: -64px;
    background: #000;
    z-index: 1;
    -webkit-animation: navSlideDown .4s ease-in-out forwards;
    animation: navSlideDown .4s ease-in-out forwards
}

li.top-level-menu .tlm--dropdown[data-third-level=false] {
    min-width: 275px;
    height: auto
}

li.top-level-menu .tlm--dropdown[data-third-level=false] ul.second-level-dropdown {
    width: 100%;
    list-style: none;
    padding: 12px 24px 48px 64px;
    margin: 0
}

li.top-level-menu .tlm--dropdown[data-third-level=false] ul.second-level-dropdown>li>a {
    font-weight: 700 !important
}

li.top-level-menu .tlm--dropdown[data-third-level=false] ul.second-level-dropdown li.sld--link {
    display: block;
    margin-bottom: 21px
}

li.top-level-menu .tlm--dropdown[data-third-level=false] ul.second-level-dropdown li.sld--link:last-of-type {
    margin-bottom: 0
}

li.top-level-menu .tlm--dropdown[data-third-level=false] ul.second-level-dropdown li.sld--link a {
    display: inline-block;
    font: inherit;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

li.top-level-menu .tlm--dropdown[data-third-level=false] ul.second-level-dropdown li.sld--link a:hover {
    color: #fab813
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-width: 507px
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav {
    width: 200px;
    padding: 12px 0 30px 24px
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container {
    height: 100%;
    width: 100%;
    overflow-y: auto
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li {
    width: 100%;
    margin-bottom: 34px
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li:last-of-type {
    margin-bottom: 0
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li.hovered>a h5 {
    color: #fab813
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li.hovered>a svg {
    opacity: 1
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a {
    width: 100%;
    display: inline-block;
    position: relative;
    font: inherit;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    padding: 0 40px
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a:hover h5,
li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a:focus h5,
li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a.active h5 {
    color: #fab813
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a:hover svg,
li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a:focus svg,
li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a.active svg {
    opacity: 1
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a svg {
    color: #fab813;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a:hover {
    color: #fab813
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .left-column-nav ul.links-left-container li a h5 {
    text-transform: none !important;
    font-size: 16px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav {
    width: calc(100% - 200px);
    padding: 12px 42px 30px
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container {
    display: none;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    -webkit-animation: rightNavFade .4s ease-in-out forwards;
    animation: rightNavFade .4s ease-in-out forwards
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container.active-third-navigation {
    display: block
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container li {
    width: 100%;
    margin-bottom: 21px
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container li:last-of-type {
    margin-bottom: 0
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container li a {
    display: inline-block;
    font: inherit;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container li a:hover,
li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container li a:focus,
li.top-level-menu .tlm--dropdown[data-third-level=true] .navigation-wrapper .right-column-nav ul.links-right-container li a.active {
    color: #fab813
}

@media(max-width: 1024px) {
    .show-desktop {
        display: none
    }
}

.show-mobile {
    display: block
}

@media(min-width: 1025px) {
    .show-mobile {
        display: none
    }
}

@-webkit-keyframes navSlideDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes navSlideDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes rightNavFade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes rightNavFade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

footer a {
    text-decoration: none !important
}

footer .footer_logo_container img {
    max-width: 176px !important
}

footer>.footer_content_container>div:first-child {
    max-width: 2178px;
    margin: 0 auto
}

@media(min-width: 1280px) {
    footer>.footer_content_container>div:first-child {
        padding-left: 129px;
        padding-right: 129px
    }
}

@media(max-width: 1279px)and (min-width: 769px) {
    footer>.footer_content_container>div:first-child {
        padding-left: 82px;
        padding-right: 82px
    }
}

@media(min-width: 769px) {
    footer>.footer_content_container>div:first-child {
        padding-top: 82px;
        padding-bottom: 90px
    }
}

footer>.footer_content_container>div:last-child {
    max-width: 2084px;
    margin: 0 auto
}

@media(min-width: 769px) {
    footer>.footer_content_container>div:last-child {
        padding-left: 82px;
        padding-right: 82px
    }
}

@media(min-width: 1600px) {
    footer>.footer_content_container>div:first-child {
        -webkit-column-gap: 0 !important;
        -moz-column-gap: 0 !important;
        column-gap: 0 !important;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    footer>.footer_content_container>div:first-child>div:first-child {
        margin-right: 137px
    }

    footer>.footer_content_container>div:first-child>div:nth-child(3),
    footer>.footer_content_container>div:first-child>div:nth-child(4) {
        margin-right: 101px
    }
}

footer h5 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #fab813;
    margin-bottom: 16px
}

@media(min-width: 1220px) {
    footer div[role=navigation] {
        min-width: 244px
    }
}

@media(min-width: 769px) {
    footer div[role=navigation] ul>li {
        padding-top: 22px
    }
}

footer .footer_text a {
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out
}

footer .footer_text a:hover {
    opacity: .5
}

@media(min-width: 769px) {
    footer div.footer-text-container {
        max-width: 433px
    }
}

@media(min-width: 1220px) {
    footer div.footer_social_media_icons {
        min-width: 229px
    }
}

footer .bottom-footer-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 768px) {
    footer .bottom-footer-container .policies-container {
        margin-bottom: 42px
    }
}

footer .bottom-footer-container .policies-container ul {
    list-style: none
}

footer .bottom-footer-container .policies-container ul li {
    font-weight: 300 !important;
    font-size: 14px;
    line-height: 21px;
    opacity: .65;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out
}

footer .bottom-footer-container .policies-container ul li:after {
    content: " | ";
    margin-right: 4px
}

footer .bottom-footer-container .policies-container ul li:last-child:after {
    display: none
}

footer .bottom-footer-container .policies-container ul li:hover,
footer .bottom-footer-container .policies-container ul li:focus {
    opacity: 1
}

footer .bottom-footer-container .powered-by-text-container {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300 !important
}

footer .bottom-footer-container .payment-methods-container ul {
    padding: 20px 16px;
    background: none;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

footer ul[data-aid=footer-social-media-icons] li>a>div {
    width: 32px
}

footer ul[data-aid=footer-social-media-icons] li[data-aid=social-media-linkedin] svg {
    width: 24px
}

section[data-aid=image-with-text-overlay] .theme-section-padding,
section[data-aid=image-with-text-overlay] .faq-accordion-sec+section[data-aid=accordion-section] {
    max-width: 1288px !important;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {

    section[data-aid=image-with-text-overlay] .theme-section-padding,
    section[data-aid=image-with-text-overlay] .faq-accordion-sec+section[data-aid=accordion-section] {
        max-width: 1388px;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 1220px) {

    section[data-aid=image-with-text-overlay] .theme-section-padding,
    section[data-aid=image-with-text-overlay] .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

@media(max-width: 1024px) {

    section[data-aid=image-with-text-overlay] .theme-section-padding,
    section[data-aid=image-with-text-overlay] .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {

    section[data-aid=image-with-text-overlay] .theme-section-padding,
    section[data-aid=image-with-text-overlay] .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media(min-width: 769px) {
    section[data-aid=image-with-text-overlay].md\:h-\[400px\] {
        height: 506px
    }
}

@media(min-width: 769px) {
    section[data-aid=image-with-text-overlay].md\:h-\[689px\] {
        height: 689px
    }
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] {
        height: auto !important
    }
}

section[data-aid=image-with-text-overlay].max-w-fullwidth div[data-aid=caption-container] {
    max-width: 1288px !important;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

section[data-aid=image-with-text-overlay] div.ito-text-container .blog-navigation-link {
    position: absolute;
    top: 30px;
    left: 40px;
    font: 700 18px/18px "Open Sans", sans-serif;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out
}

section[data-aid=image-with-text-overlay] div.ito-text-container .blog-navigation-link:hover,
section[data-aid=image-with-text-overlay] div.ito-text-container .blog-navigation-link:focus {
    opacity: .75
}

section[data-aid=image-with-text-overlay] div.ito-text-container[data-color-scheme=accent-3] h3 {
    color: #fab813 !important
}

section[data-aid=image-with-text-overlay] div.ito-text-container[data-color-scheme=accent-3] h1,
section[data-aid=image-with-text-overlay] div.ito-text-container[data-color-scheme=accent-3] h2 {
    color: #fff !important
}

section[data-aid=image-with-text-overlay] div.ito-text-container[data-color-scheme=accent-3] p {
    color: #fff !important
}

@media(min-width: 769px) {
    section[data-aid=image-with-text-overlay] div.ito-text-container.subheading-sizing-smaller h3 {
        font-size: 25px !important;
        line-height: 35px !important
    }
}

@media(min-width: 1601px) {
    section[data-aid=image-with-text-overlay] div.ito-text-container.text-sizing-smaller:not(.subheading-sizing-smaller) h3 {
        font-size: 35px !important;
        line-height: 40px !important
    }
}

@media(max-width: 1600px)and (min-width: 769px) {
    section[data-aid=image-with-text-overlay] div.ito-text-container.text-sizing-smaller:not(.subheading-sizing-smaller) h3 {
        font-size: 30px;
        line-height: 36px
    }
}

@media(min-width: 769px) {

    section[data-aid=image-with-text-overlay] div.ito-text-container.text-sizing-smaller h1,
    section[data-aid=image-with-text-overlay] div.ito-text-container.text-sizing-smaller h2 {
        font-size: 56px;
        line-height: 65px
    }
}

section[data-aid=image-with-text-overlay] div h3[data-aid=img-w-text-overlay-subheading] {
    padding-top: 9px;
    font-weight: 400 !important;
    line-height: 35px
}

section[data-aid=image-with-text-overlay] h1,
section[data-aid=image-with-text-overlay] h2 {
    padding-bottom: 0 !important;
    color: #fab813 !important
}

@media(min-width: 1601px) {
    section[data-aid=image-with-text-overlay] h2 {
        font-size: 97px;
        line-height: 97px
    }
}

@media(max-width: 1600px)and (min-width: 1367px) {
    section[data-aid=image-with-text-overlay] h2 {
        font-size: 72px;
        line-height: 72px
    }
}

section[data-aid=image-with-text-overlay] .rte {
    padding-top: 18px
}

section[data-aid=image-with-text-overlay] .rte p {
    font-weight: 300 !important
}

@media(min-width: 1367px) {
    section[data-aid=image-with-text-overlay] .rte p {
        font-size: 20px;
        line-height: 26px
    }
}

@media(max-width: 768px) {
    section[data-aid=image-with-text-overlay] .rte {
        max-width: 100% !important
    }
}

section[data-aid=image-with-text-overlay] p.button-heading {
    font: 400 20px/26px "Open Sans", sans-serif;
    color: #fff;
    margin: 56px 0 20px
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .button_container {
        width: 100%
    }
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .button_container a[data-armada-animation=button-primary] {
        width: 100%
    }
}

section[data-aid=image-with-text-overlay] .button_container a[data-armada-animation=button-primary] span[data-armada-button-text] {
    font: 800 18px/26px "Open Sans", sans-serif !important
}

section[data-aid=image-with-text-overlay] .button_container a[data-armada-animation=button-secondary] {
    background-color: #000 !important;
    padding: 14px 10px 14px !important;
    min-width: 258px
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .button_container a[data-armada-animation=button-secondary] {
        width: 100%
    }
}

section[data-aid=image-with-text-overlay] .button_container a[data-armada-animation=button-secondary] span[data-armada-button-text] {
    font: 800 18px/26px "Open Sans", sans-serif !important
}

section[data-aid=image-with-text-overlay] .fya-filter-container {
    width: 100%;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 40px
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container {
        margin: 60px 0 0;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media(max-width: 640px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container {
        margin: 40px 0 0 !important
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media(max-width: 1280px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container {
        width: 388px
    }
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }

    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:first-child,
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(2),
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(3),
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(4) {
        width: calc(50% - 10px);
        max-width: initial !important;
        margin-right: 0 !important
    }

    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(5) {
        width: 100% !important;
        max-width: initial !important
    }
}

@media(max-width: 640px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container {
        width: 100% !important
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:first-child,
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(2),
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(3) {
    max-width: 388px
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container:nth-child(4) {
    max-width: 282px
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container label {
    color: #fff;
    font: 800 18px/26px "Open Sans", sans-serif;
    margin-bottom: 15px;
    display: block
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter {
    width: 100%;
    z-index: 10;
    position: relative
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter svg {
    color: #000;
    position: absolute;
    right: 6px;
    top: calc(50% - 12px);
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter.toggled svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter select[name=machine_model]:not(.active),
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter select[name=machine_make]:not(.active) {
    display: none
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=all],
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=excavator],
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=skid-steer] {
    display: none
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=all].active,
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=excavator].active,
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .sfilter .select2-container[data-mtype=skid-steer].active {
    display: block
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-container {
        width: 100% !important
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection {
    height: auto;
    border-radius: 0
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection[aria-expanded=true] .select2-selection__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select-container:after {
    display: none
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container select,
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection__rendered {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 14px 42px 14px 25px;
    border: none;
    outline: none;
    font: 400 18px/26px "Open Sans", sans-serif;
    border-radius: 0
}

@media(max-width: 768px) {

    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container select,
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection__rendered {
        padding: 14px 42px 14px 12px;
        font-size: 16px
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container select option,
section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection__rendered option {
    background: #fff;
    font: 400 18px/26px "Open Sans", sans-serif;
    padding: 12px 25px;
    color: #000
}

@media(max-width: 768px) {

    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container select option,
    section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection__rendered option {
        font-size: 16px
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection__arrow {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    background: url(./image-21faf8fc3d1604d47862.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    pointer-events: none
}

section[data-aid=image-with-text-overlay] .fya-filter-container .filter-select-container .select2-selection__arrow b {
    display: none
}

section[data-aid=image-with-text-overlay] .fya-filter-container button {
    border: none;
    outline: none;
    background: #000;
    border: 1px solid #fab813;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 14px 10px 14px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 258px;
    flex: 0 0 258px
}

section[data-aid=image-with-text-overlay] .fya-filter-container button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

section[data-aid=image-with-text-overlay] .fya-filter-container button:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fab813;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

section[data-aid=image-with-text-overlay] .fya-filter-container button:hover:before,
section[data-aid=image-with-text-overlay] .fya-filter-container button:hover:after {
    width: 51%
}

@media(max-width: 1220px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container button {
        width: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        margin-top: 0
    }
}

@media(max-width: 480px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container button {
        width: 100%;
        -webkit-transform: none;
        transform: none;
        left: initial
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container button span.btn-text,
section[data-aid=image-with-text-overlay] .fya-filter-container button span.btn-text-mob {
    display: none;
    position: relative;
    z-index: 1;
    color: #fff
}

section[data-aid=image-with-text-overlay] .fya-filter-container button span.btn-text {
    display: inline-block;
    font: 800 18px/26px "Open Sans", sans-serif
}

@media(max-width: 480px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container button span.btn-text {
        display: none
    }
}

section[data-aid=image-with-text-overlay] .fya-filter-container button span.btn-text-mob {
    font: 800 18px/24px "Open Sans", sans-serif
}

@media(max-width: 480px) {
    section[data-aid=image-with-text-overlay] .fya-filter-container button span.btn-text-mob {
        display: inline-block
    }
}

.image-text-with-content>.max-w-content {
    max-width: 1288px !important
}

@media(min-width: 769px) {
    .image-text-with-content .main-columns-container {
        -moz-column-gap: 30px;
        -webkit-column-gap: 30px;
        column-gap: 30px
    }
}

.image-text-with-content .main-image img {
    min-height: 100%
}

.image-text-with-content .block-wrapper div:last-child {
    padding-bottom: 0 !important
}

@media(min-width: 769px) {
    .image-text-with-content h2 {
        font-size: 42px;
        line-height: 56px;
        padding-bottom: 38px
    }
}

@media(min-width: 769px) {
    .image-text-with-content .rte p {
        font-size: 18px;
        line-height: 26px
    }
}

.image-text-with-content .iwc-two-column-images .two-col-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 -15px
}

@media(max-width: 480px) {
    .image-text-with-content .iwc-two-column-images .two-col-container {
        margin: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.image-text-with-content .iwc-two-column-images .two-col-container .col {
    width: 50%;
    padding: 0 15px
}

@media(max-width: 480px) {
    .image-text-with-content .iwc-two-column-images .two-col-container .col {
        width: 100%;
        padding: 0 0 24px
    }

    .image-text-with-content .iwc-two-column-images .two-col-container .col:last-child {
        padding-bottom: 0
    }
}

.image-text-with-content .iwc-two-column-images .two-col-container .col img {
    aspect-ratio: 416/471
}

.image-text-with-content .read-more-block {
    padding-bottom: 30px
}

@media(min-width: 769px) {
    .image-text-with-content .read-more-block {
        padding-bottom: 91px
    }
}

.section-blog-posts {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    .section-blog-posts {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .section-blog-posts {
        padding-left: 24px;
        padding-right: 24px
    }
}

.section-blog-posts .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .section-blog-posts .max-w-content {
        max-width: 1388px
    }
}

@media(min-width: 1400px) {
    .section-blog-posts div.grid {
        gap: 40px
    }
}

.section-blog-posts .blog-posts-item[data-color-scheme=accent-3] {
    background-color: #e7e7e7 !important
}

.section-blog-posts .blog-posts-item[data-color-scheme=accent-3] article {
    background-color: #e7e7e7 !important
}

.section-blog-posts .blog-posts-item article .text-body {
    padding-left: 36px;
    padding-right: 28px;
    padding-top: 25px;
    padding-bottom: 89px;
    position: relative
}

.section-blog-posts .blog-posts-item h3 {
    padding-bottom: 16px
}

@media(min-width: 769px) {
    .section-blog-posts .blog-posts-item h3 {
        font-size: 25px;
        line-height: 35px
    }
}

@media(min-width: 769px) {
    .section-blog-posts .blog-posts-item h3+div {
        font-size: 18px;
        line-height: 25px
    }
}

.section-blog-posts .blog-posts-item span.blog-post-tag {
    font: 400 18px/24px "Open sans", sans-serif;
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase
}

.section-blog-posts .blog-posts-item h3+div+div {
    position: absolute;
    bottom: 25px;
    left: 36px
}

.section-blog-posts .blog-posts-item .armament-button {
    padding-left: 23px !important;
    padding-right: 40px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    position: relative;
    background: #fab813
}

.section-blog-posts .blog-posts-item .armament-button>span {
    font-size: 16px;
    line-height: 16px
}

.section-blog-posts .blog-posts-item .armament-button svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
    color: #fab813;
    -webkit-transition: color .5s ease-out;
    transition: color .5s ease-out
}

.section-blog-posts .blog-posts-item .armament-button:hover svg {
    color: #000
}

h3[data-aid=social-share-heading] {
    text-decoration: underline
}

.article-meta {
    margin-top: 62px
}

@media(max-width: 480px) {
    .article-meta {
        margin-top: 40px
    }
}

.section-newsletter {
    padding-top: 98px;
    padding-bottom: 84px;
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    .section-newsletter {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .section-newsletter {
        padding-left: 24px;
        padding-right: 24px
    }
}

.section-newsletter .max-w-content,
.section-newsletter .max-w-fullwidth {
    max-width: 1288px !important;
    margin: 0 auto
}

@media(max-width: 1440px) {

    .section-newsletter .max-w-content,
    .section-newsletter .max-w-fullwidth {
        max-width: 1388px !important
    }
}

.section-newsletter[data-color-scheme=accent-3] {
    background: #343434 !important
}

.section-newsletter:not([data-color-scheme=accent-2],[data-color-scheme=accent-3]) h2 {
    color: #fff !important
}

.section-newsletter:not([data-color-scheme=accent-2],[data-color-scheme=accent-3]) input {
    color: #000
}

.section-newsletter div.flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

@media(max-width: 1280px) {
    .section-newsletter div.flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.section-newsletter div.flex h2 {
    width: 40%;
    padding-bottom: 0;
    text-transform: none !important;
    font-size: 30px;
    line-height: 36px
}

@media(max-width: 1280px) {
    .section-newsletter div.flex h2 {
        width: 100%;
        padding-bottom: 36px;
        padding-right: 0;
        text-align: center
    }
}

@media(max-width: 480px) {
    .section-newsletter div.flex h2 {
        font-size: 26px
    }
}

.section-newsletter div.flex form {
    width: 60%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 540px
}

@media(max-width: 1366px) {
    .section-newsletter div.flex form {
        width: 510px
    }
}

@media(max-width: 1280px) {
    .section-newsletter div.flex form {
        width: 100%;
        max-width: 480px
    }
}

.section-newsletter div.flex form validate-email {
    width: 100%;
    max-width: 480px
}

@media(max-width: 1280px) {
    .section-newsletter div.flex form validate-email {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.section-newsletter div.flex form validate-email input[type=email] {
    width: 100%;
    min-width: initial
}

@media(max-width: 1024px) {
    .section-newsletter div.flex form validate-email {
        width: calc(100% - 121px)
    }
}

.section-newsletter div.flex form label {
    font-weight: 400 !important;
    color: #000;
    opacity: 1 !important
}

.section-newsletter[data-color-scheme=accent-2] div.flex form label {
    color: var(--color-light) !important
}

.section-newsletter div.flex form input {
    font-size: 20px;
    line-height: 24px
}

@media(min-width: 769px) {
    .section-newsletter div.flex form input {
        font-size: 20px;
        line-height: 24px
    }
}

.section-newsletter div.flex form button {
    padding: 14px 10px 14px !important;
    background-color: #fab813;
    min-width: 150px
}

@media(max-width: 1366px) {
    .section-newsletter div.flex form button {
        min-width: 120px
    }
}

.section-newsletter div.flex form button:hover {
    background-color: #fab813
}

@media(min-width: 769px) {
    .section-newsletter div.flex form button {
        padding-left: 65px;
        padding-right: 65px
    }
}

.section-newsletter div.flex form button>span:first-child {
    color: #fff
}

.section-newsletter div.flex form button:after {
    background: #000
}

.section-newsletter div.flex form button span.border {
    border-color: #fab813
}

section[data-aid=testimonial-section] {
    margin-bottom: 60px;
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1023px) {
    section[data-aid=testimonial-section] {
        margin-bottom: 24px;
        margin-top: 24px
    }
}

@media(max-width: 1440px) {
    section[data-aid=testimonial-section] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    section[data-aid=testimonial-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

section[data-aid=testimonial-section] .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section[data-aid=testimonial-section] .max-w-content {
        max-width: 1388px
    }
}

section[data-aid=testimonial-section] h2 {
    padding-bottom: 54px
}

@media(min-width: 769px) {
    section[data-aid=testimonial-section] h2 {
        font-size: 42px;
        line-height: 56px
    }
}

@media(min-width: 769px) {
    section[data-aid=testimonial-section] div[data-name=fade-slide] div[data-aid=star-rating] {
        padding-bottom: 64px
    }
}

section[data-aid=testimonial-section] div[data-name=fade-slide] hr {
    width: 250px;
    max-width: 100%;
    height: 1px;
    border-color: #fab813;
    margin: 0 auto 40px
}

section[data-aid=testimonial-section] div[data-name=fade-slide] h3,
section[data-aid=testimonial-section] div[data-name=fade-slide] h4 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 16px;
    max-width: 1100px
}

section[data-aid=testimonial-section] div[data-name=fade-slide] h3.font-heading+p,
section[data-aid=testimonial-section] div[data-name=fade-slide] h4.font-heading+p {
    max-width: 1100px
}

section[data-aid=testimonial-section] div[data-name=fade-slide] .rating-star {
    font-size: 24px;
    letter-spacing: 0px
}

section[data-aid=testimonial-section] div[data-name=fade-slide] .rating-star:before {
    background: -webkit-gradient(linear, left top, right top, from(rgb(250, 184, 19)), to(rgba(250, 184, 19, 0.65)));
    background: linear-gradient(90deg, rgb(250, 184, 19) var(--percent), rgba(250, 184, 19, 0.65) var(--percent));
    background-clip: text;
    -webkit-background-clip: text
}

section[data-aid=testimonial-section] div[data-name=fade-slide] p.author {
    font-weight: 600;
    max-width: 1100px
}

section[data-aid=testimonial-section] div[data-name=fade-slide] p.author span.auth-position {
    font-weight: 400 !important
}

section[data-aid=testimonial-section] div[data-name=prev_next_container] {
    pointer-events: none;
    z-index: 1
}

@media(min-width: 801px) {
    section[data-aid=testimonial-section] div[data-name=prev_next_container] {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

section[data-aid=testimonial-section] div[data-name=prev_next_container] button[data-icon-type=prev],
section[data-aid=testimonial-section] div[data-name=prev_next_container] button[data-icon-type=next] {
    cursor: pointer;
    pointer-events: all
}

section[data-aid=testimonial-section] div[data-armada-animation=arrow] {
    background: #fff
}

section[data-aid=testimonial-section] div[data-armada-animation=arrow] svg {
    color: #000
}

section[data-aid=testimonial-section] fade-slider {
    position: relative
}

.section-multi-collections {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

.section-multi-collections product-badges {
    display: none
}

@media(max-width: 1440px) {
    .section-multi-collections {
        max-width: 1388px;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .section-multi-collections {
        padding-left: 24px;
        padding-right: 24px
    }
}

.section-multi-collections h2[data-aid=multi-collection-heading] {
    font-size: 42px
}

@media(max-width: 768px) {
    .section-multi-collections h2[data-aid=multi-collection-heading] {
        font-size: 36px
    }
}

.section-multi-collections a[data-armada-animation=button-primary] {
    background-color: #fab813;
    padding: 14px 10px 14px !important;
    min-width: 150px
}

.section-multi-collections a[data-armada-animation=button-primary]:hover {
    background-color: #fab813
}

.section-multi-collections div[data-name=image] {
    padding-bottom: 20px
}

.section-multi-collections div[data-name=image] simple-product-card-image img {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.section-multi-collections .aspect-tall {
    padding-bottom: 114.5% !important
}

.section-multi-collections [data-armada-animation=on-page-navigation][data-active-nav-item=true]:after {
    display: none !important
}

.section-multi-collections div [data-armada-selector=multi-collection-navigation] {
    margin-bottom: 76px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media(max-width: 768px) {
    .section-multi-collections div [data-armada-selector=multi-collection-navigation] {
        margin-bottom: 30px
    }
}

@media(max-width: 480px) {
    .section-multi-collections div [data-armada-selector=multi-collection-navigation] {
        margin-bottom: 0
    }
}

.section-multi-collections .nav-button-wrapper {
    display: inline-block;
    margin-right: 114px
}

.section-multi-collections button[data-aid=multi-collection-nav-item] {
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    padding-bottom: 0;
    display: inline-block;
    position: relative;
    opacity: .3
}

.section-multi-collections button[data-aid=multi-collection-nav-item].active-collection,
.section-multi-collections button[data-aid=multi-collection-nav-item]:hover {
    padding-left: 36px;
    opacity: 1
}

.section-multi-collections button[data-aid=multi-collection-nav-item].active-collection svg,
.section-multi-collections button[data-aid=multi-collection-nav-item]:hover svg {
    opacity: 1;
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.section-multi-collections button[data-aid=multi-collection-nav-item] svg {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .4s ease-out;
    transition: opacity .4s ease-out;
    color: #000
}

.section-multi-collections button[data-aid=multi-collection-nav-item] h5 {
    font-size: 30px
}

@media(max-width: 768px) {
    .section-multi-collections button[data-aid=multi-collection-nav-item] h5 {
        font-size: 24px
    }
}

@media(min-width: 769px) {
    .section-multi-collections div[data-name=prev_next_container] {
        position: absolute;
        top: 35%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media(min-width: 769px) {
    .section-multi-collections div[data-name=prev_next_container] button[data-name=icon-prev] {
        position: relative;
        left: -42px
    }
}

.section-multi-collections div[data-name=prev_next_container] button[data-name=icon-prev]>div[data-armada-animation=arrow] {
    border-color: #000
}

@media(min-width: 769px) {
    .section-multi-collections div[data-name=prev_next_container] button[data-name=icon-next] {
        position: relative;
        right: -42px
    }
}

.section-multi-collections div[data-name=prev_next_container] button[data-name=icon-next]>div[data-armada-animation=arrow] {
    border-color: #000
}

.section-multi-collections div[data-name=title] {
    padding-left: 0;
    padding-right: 0;
    padding-top: 4px;
    padding-bottom: 12px;
    text-transform: uppercase
}

.section-multi-collections div[data-name=title] span {
    font-size: 18px;
    font-weight: 600
}

.section-multi-collections .short-description-container {
    padding: 4px 0 12px 0
}

.section-multi-collections .short-description-container p {
    font-size: 16px;
    line-height: 25px
}

.section-multi-collections .view-specsheet-product-url {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

@media(max-width: 1190px) {
    .section-multi-collections .view-specsheet-product-url {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.section-multi-collections .view-specsheet-product-url .view-spec-sheet {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 0 16px
}

.section-multi-collections .view-specsheet-product-url .view-spec-sheet span.text {
    font: 800 16px/16px "Open Sans", sans-serif;
    font-weight: 800;
    color: #000;
    text-transform: uppercase
}

.section-multi-collections .view-specsheet-product-url .view-spec-sheet svg {
    margin-left: 0;
    color: #fab813;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.section-multi-collections .view-specsheet-product-url .view-spec-sheet:hover svg {
    -webkit-transform: translateX(6px);
    transform: translateX(6px)
}

.section-multi-collections .view-specsheet-product-url a[data-aid=view-spec-sheet-product-btn] {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    height: 40px;
    width: 124px;
    min-width: initial !important;
    margin: 0 0 16px
}

.section-multi-collections .view-specsheet-product-url a[data-aid=view-spec-sheet-product-btn] span[data-armada-button-text] {
    font-size: 14px;
    line-height: 14px
}

@media only screen and (min-width: 1601px) {
    .section-multi-collections .view-specsheet-product-url a[data-aid=view-spec-sheet-product-btn] span[data-armada-button-text] {
        font-size: 14px;
        line-height: 14px
    }
}

section[data-aid=rich-text-ship] {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    section[data-aid=rich-text-ship] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    section[data-aid=rich-text-ship] {
        padding-left: 24px;
        padding-right: 24px
    }
}

section[data-aid=rich-text-ship] .max-w-content {
    max-width: 1288px
}

@media(max-width: 1440px) {
    section[data-aid=rich-text-ship] .max-w-content {
        max-width: 1388px
    }
}

section[data-aid=rich-text-ship] .text-container {
    width: 100%;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section[data-aid=rich-text-ship] .text-container {
        max-width: 1388px
    }
}

@media(min-width: 769px) {
    section[data-aid=rich-text-ship] .text-container h2 {
        font-size: 42px;
        line-height: 56px;
        margin-bottom: 40px
    }
}

section[data-aid=rich-text-ship] .text-container.bigger-text p {
    font-size: 16px;
    line-height: 24px
}

@media(min-width: 769px) {
    section[data-aid=rich-text-ship] .text-container.bigger-text p {
        font-size: 18px;
        line-height: 26px
    }
}

@media(min-width: 769px) {

    section[data-aid=rich-text-ship] .text-container.bigger-text p b,
    section[data-aid=rich-text-ship] .text-container.bigger-text p strong {
        font-size: 25px
    }
}

@media(min-width: 769px) {
    section[data-aid=rich-text-ship] .text-container.smaller-text h2 {
        font-size: 36px !important;
        line-height: 42px !important
    }
}

section[data-aid=rich-text-ship] .text-container.smaller-text p {
    font-size: 16px;
    line-height: 24px
}

@media(min-width: 769px) {
    section[data-aid=rich-text-ship] .text-container.smaller-text p {
        font-size: 18px;
        line-height: 26px
    }
}

section[data-aid=rich-text-ship] a[data-armada-animation=button-primary],
section[data-aid=rich-text-ship] a[data-armada-animation=button-secondary] {
    padding: 14px 10px 14px !important;
    min-width: 258px
}

section.blog-grid-section {
    background: #fff !important;
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto;
    min-height: 90vh
}

@media(max-width: 1440px) {
    section.blog-grid-section {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    section.blog-grid-section {
        padding-left: 24px;
        padding-right: 24px
    }
}

section.blog-grid-section .grid {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 48px
}

@media(max-width: 1280px)and (min-width: 769px) {
    section.blog-grid-section .grid {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 40px;
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

section.blog-grid-section .grid div[data-armada-animation=grid-item] {
    border: 1px solid #707070
}

section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body {
    position: relative;
    background: #fff;
    padding-left: 36px;
    padding-right: 28px;
    padding-top: 25px;
    padding-bottom: 89px
}

@media(max-width: 480px) {
    section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body {
        padding: 24px 24px 89px
    }
}

section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body h3 {
    padding-bottom: 16px;
    line-height: 1.35
}

@media(min-width: 769px) {
    section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body h3 {
        font-size: 21px;
        line-height: 31px
    }
}

section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body h3+div {
    margin-bottom: 12px
}

@media(min-width: 769px) {
    section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body h3+div {
        font-size: 18px;
        line-height: 26px
    }
}

section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body h3+div+div {
    position: absolute;
    bottom: 25px;
    left: 36px
}

section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body .text-h6 {
    font-size: 18px
}

@media(max-width: 768px) {
    section.blog-grid-section .grid div[data-armada-animation=grid-item]>article>.text-body .text-h6 {
        font-size: 16px
    }
}

section.blog-grid-section .grid div[data-armada-animation=grid-item]>article .aspect-wide {
    padding-bottom: 0;
    aspect-ratio: 698/474
}

.article-header-basic .theme-section-padding,
.article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-top: 110px;
    width: 100%;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {

    .article-header-basic .theme-section-padding,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {

    .article-header-basic .theme-section-padding,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media(max-width: 640px) {

    .article-header-basic .theme-section-padding,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-top: 46px
    }
}

.article-header-basic .theme-section-padding .max-w-content,
.article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    .article-header-basic .theme-section-padding .max-w-content,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] .max-w-content {
        max-width: 1388px
    }
}

.article-header-basic .theme-section-padding h4,
.article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] h4 {
    padding-bottom: 17px;
    font-size: 65px;
    line-height: 55px
}

@media(max-width: 768px) {

    .article-header-basic .theme-section-padding h4,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] h4 {
        font-size: 56px;
        line-height: 60px
    }
}

@media(max-width: 640px) {

    .article-header-basic .theme-section-padding h4,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] h4 {
        font-size: 48px;
        line-height: 56px
    }
}

.article-header-basic .theme-section-padding h3,
.article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] h3 {
    font-weight: 800 !important;
    text-transform: none !important;
    font-size: 35px;
    line-height: 45px
}

@media(max-width: 640px) {

    .article-header-basic .theme-section-padding h3,
    .article-header-basic .faq-accordion-sec+section[data-aid=accordion-section] h3 {
        font-size: 28px;
        line-height: 36px
    }
}

.article-header-basic .aspect-wide {
    padding-bottom: 0
}

@media(min-width: 769px) {
    .article-header-basic .aspect-wide {
        height: 689px
    }
}

@media(max-width: 768px) {
    .article-header-basic .aspect-wide {
        aspect-ratio: 4/3;
        min-height: 320px
    }
}

.article-header-basic .article-previous-article {
    margin-right: 16px
}

.article-header-basic .article-previous-article a:hover svg {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.article-header-basic .article-previous-article a>div {
    width: 33px;
    height: 33px;
    border: 1px solid #000;
    border-radius: 50%
}

.article-header-basic .article-previous-article a>div>div {
    width: 100%;
    height: 100%;
    display: block
}

.article-header-basic .article-previous-article a>div>div>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-65%, -50%);
    transform: translate(-65%, -50%);
    margin-left: 0
}

.article-header-basic .article-next-article {
    margin-left: 16px
}

.article-header-basic .article-next-article a:hover svg {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.article-header-basic .article-next-article a>div {
    width: 33px;
    height: 33px;
    border: 1px solid #000;
    border-radius: 50%
}

.article-header-basic .article-next-article a>div>div {
    width: 100%;
    height: 100%;
    display: block;
    position: relative
}

.article-header-basic .article-next-article a>div>div>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-65%, -50%);
    transform: translate(-65%, -50%);
    margin-left: 0
}

.article-main-content {
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    .article-main-content {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .article-main-content {
        padding-left: 24px;
        padding-right: 24px
    }
}

.article-main-content .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .article-main-content .max-w-content {
        max-width: 1388px
    }
}

.article-main-content h1,
.article-main-content h2,
.article-main-content h3,
.article-main-content h4,
.article-main-content h5,
.article-main-content h6 {
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 25px
}

.article-main-content h4 {
    font-size: 18px;
    line-height: 25px
}

.article-main-content p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 25px
}

@media(max-width: 1280px) {
    .article-main-content p {
        font-size: 16px;
        line-height: 24px
    }
}

.article-main-content table {
    width: auto;
    max-width: 100%
}

.article-main-content table td {
    padding: 15px
}

@media(max-width: 640px) {
    .article-main-content table td {
        padding: 8px
    }
}

.article-main-content .article-meta span {
    font-size: 18px;
    line-height: 25px
}

@media(max-width: 768px) {
    .article-main-content .article-meta span {
        font-size: 16px;
        line-height: 24px
    }
}

.article-main-content #sharing h3[data-aid=social-share-heading] {
    font-weight: 400 !important;
    text-transform: none !important;
    padding-bottom: 0;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 25px
}

@media(max-width: 768px) {
    .article-main-content #sharing h3[data-aid=social-share-heading] {
        font-size: 16px;
        line-height: 24px
    }
}

.article-main-content #sharing .flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.article-main-content #sharing .flex a {
    padding: 4px
}

.article-main-content #sharing svg[data-aid=icon-facebook] {
    width: 40px;
    height: 40px
}

.article-comments-section {
    padding-top: 236px;
    padding-bottom: 182px;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 640px) {
    .article-comments-section {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

@media(max-width: 1440px) {
    .article-comments-section {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .article-comments-section {
        padding-left: 24px;
        padding-right: 24px
    }
}

.article-comments-section .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .article-comments-section .max-w-content {
        max-width: 1388px
    }
}

.article-comments-section h3 {
    font-weight: 600 !important;
    text-transform: none !important;
    padding-bottom: 0;
    margin-bottom: 16px
}

.article-comments-section label[animate-label] {
    font-weight: 600 !important
}

.article-comments-section input[type=text],
.article-comments-section input[type=email] {
    padding-top: 17px;
    padding-bottom: 17px
}

.article-comments-section textarea {
    height: 343px
}

@media(max-width: 640px) {
    .article-comments-section textarea {
        height: 320px
    }
}

.article-comments-section button[aria-label="Submit comment"] {
    padding: 14px 21px 15px 21px
}

main.main-content {
    min-height: 560px
}

.shopify-challenge__container {
    min-height: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.shopify-challenge__container p.shopify-challenge__message {
    margin-bottom: 16px;
    font: 400 18px/24px "Open Sans", sans-serif
}

.shopify-challenge__container input[type=submit] {
    display: inline-block;
    padding: 11px 24px;
    width: auto;
    font: 400 18px/24px "Open Sans", sans-serif;
    border: 1px solid #000;
    text-transform: uppercase;
    margin-top: 20px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer
}

section[data-aid=image-with-text-section] {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section[data-aid=image-with-text-section] {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    section[data-aid=image-with-text-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

section[data-aid=image-with-text-section] .flex {
    gap: 0 !important
}

@media(min-width: 769px) {
    section[data-aid=image-with-text-section] .flex.bigger-image div[data-aid=image-with-text--text-wrapper] {
        width: 42%
    }
}

@media(min-width: 769px) {
    section[data-aid=image-with-text-section] .flex.bigger-image div[data-aid=image-with-text--image-wrapper] {
        width: 58%
    }
}

@media(min-width: 769px) {
    section[data-aid=image-with-text-section] div[data-aid=image-with-text--text-wrapper] {
        min-height: 666px
    }
}

@media(max-width: 480px) {
    section[data-aid=image-with-text-section] div[data-aid=image-with-text--text-wrapper] {
        padding-bottom: 40px !important
    }
}

section[data-aid=image-with-text-section] div[data-aid=image-with-text--image-wrapper] {
    position: relative
}

section[data-aid=image-with-text-section] div[data-aid=image-with-text--image-wrapper] .image-note-container {
    padding-top: 16px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

@media(max-width: 768px) {
    section[data-aid=image-with-text-section] div[data-aid=image-with-text--image-wrapper] .image-note-container {
        padding-top: 10px;
        position: relative;
        left: initial;
        bottom: initial
    }
}

section[data-aid=image-with-text-section] div[data-aid=image-with-text--image-wrapper] .image-note-container p {
    font-size: 14px;
    line-height: 20px;
    text-align: center
}

@media(min-width: 1367px) {
    section[data-aid=image-with-text-section] h3 {
        font-size: 42px;
        line-height: 56px;
        padding-bottom: 40px
    }
}

@media(min-width: 769px) {

    section[data-aid=image-with-text-section] p,
    section[data-aid=image-with-text-section] div.break-words {
        font-size: 18px;
        line-height: 26px
    }
}

section[data-aid=image-with-text-section] a[data-armada-animation=button-primary],
section[data-aid=image-with-text-section] a[data-armada-animation=button-secondary] {
    margin-top: 60px;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: #fab813 !important;
    padding: 14px 10px 14px !important;
    min-width: 258px
}

@media(max-width: 1366px) {

    section[data-aid=image-with-text-section] a[data-armada-animation=button-primary],
    section[data-aid=image-with-text-section] a[data-armada-animation=button-secondary] {
        margin-top: 60px
    }
}

@media(max-width: 768px) {

    section[data-aid=image-with-text-section] a[data-armada-animation=button-primary],
    section[data-aid=image-with-text-section] a[data-armada-animation=button-secondary] {
        margin-top: 48px
    }
}

section[data-aid=image-with-text-section] a[data-armada-animation=button-primary] span:first-child,
section[data-aid=image-with-text-section] a[data-armada-animation=button-secondary] span:first-child {
    font-weight: 800 !important;
    color: #fff !important
}

section[data-aid=image-with-text-section] a[data-armada-animation=button-primary]:after,
section[data-aid=image-with-text-section] a[data-armada-animation=button-secondary]:after {
    background: #000 !important
}

section[data-aid=image-with-text-section] a[data-armada-animation=button-primary] .border-body,
section[data-aid=image-with-text-section] a[data-armada-animation=button-secondary] .border-body {
    border-color: #fab813 !important
}

@media(max-width: 768px) {
    #shopify-section-template--20896496877854__35f5368b-88da-4b79-aa74-5ab913cef6f2 li[data-aid=image-with-text--text-slide] {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

@media(max-width: 768px)and (max-width: 768px) {

    #shopify-section-template--20896496877854__35f5368b-88da-4b79-aa74-5ab913cef6f2 li[data-aid=image-with-text--text-slide] p,
    #shopify-section-template--20896496877854__35f5368b-88da-4b79-aa74-5ab913cef6f2 li[data-aid=image-with-text--text-slide] .break-words {
        font-size: 16px !important;
        line-height: 24px !important
    }
}

#shopify-section-template--19941890130206__page-contact-form {
    min-height: 75vh
}

section.contact-form-section {
    padding-left: 0;
    padding-right: 0
}

section.contact-form-section .one-sixth {
    width: calc(16.666% - 24px)
}

@media(max-width: 768px) {
    section.contact-form-section .one-sixth {
        width: 100%
    }
}

@media(max-width: 1440px) {
    section.contact-form-section {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    section.contact-form-section {
        padding-left: 24px;
        padding-right: 24px
    }
}

section.contact-form-section .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section.contact-form-section .max-w-content {
        max-width: 1388px
    }
}

section.contact-form-section form .has-errors {
    position: relative
}

section.contact-form-section form .error-message {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 14px;
    line-height: 32px;
    color: red;
    font-family: "Open Sans", sans-serif
}

section.contact-form-section .two-sixth {
    width: calc(33.333% - 12px)
}

@media(max-width: 768px) {
    section.contact-form-section .two-sixth {
        width: 100%
    }
}

section.contact-form-section label[animate-label] {
    font-weight: 600 !important
}

section.contact-form-section select {
    padding-top: 13px;
    padding-bottom: 13px;
    color: #999
}

section.contact-form-section h3[data-aid=contact-form-heading] {
    font-weight: 600;
    text-transform: none !important;
    margin-bottom: 16px;
    font-size: 16px
}

section.contact-form-section form#ContactForm {
    row-gap: 32px
}

section.contact-form-section button[data-armada-animation=button-primary] {
    padding: 10px 27px !important;
    font: 800 18px/18px "Open Sans", sans-serif;
    min-width: 148px;
    text-align: center;
    background: #fab813
}

@media(min-width: 769px) {
    section.contact-form-section button[data-armada-animation=button-primary] {
        margin-top: 18px
    }
}

section.contact-form-section button[data-armada-animation=button-primary]:hover span:first-of-type,
section.contact-form-section button[data-armada-animation=button-primary]:focus span:first-of-type {
    color: #fff !important
}

section.contact-form-section button[data-armada-animation=button-primary]:hover span.border,
section.contact-form-section button[data-armada-animation=button-primary]:focus span.border {
    border-color: #fab813 !important
}

section.contact-form-section button[data-armada-animation=button-primary] span:first-of-type {
    font: 800 18px/26px "Open Sans", sans-serif !important;
    color: #fff !important
}

section.contact-form-section button[data-armada-animation=button-primary] span.border {
    border-color: #000 !important
}

section.contact-form-section button[data-armada-animation=button-primary]:after {
    background-color: #000 !important
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d h3 {
    color: #fff;
    font-weight: 200
}

@media(min-width: 769px) {
    #shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d h3 {
        font-size: 40px
    }
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary] {
    margin-top: 40px;
    background: #fab813
}

a[data-armada-animation=button-primary] span:first-of-type {
    transition: color .25s ease
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary] span:first-of-type {
    color: #fff
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary]:hover span:first-of-type {
    color: #000
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary]:after {
    background: #000
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary]:hover,
#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary]:focus {
    background-color: #fab813 !important;
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d a[data-armada-animation=button-primary] span.border {
    border-color: #fab813
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d .text-container {
    padding-top: 70px;
    padding-bottom: 70px
}

#shopify-section-template--19941967888670__f87372c5-ae06-4a46-b538-1becd652922d [data-armada-animation$=button-primary]:after {
    background: #000
}

.collection-description {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    .collection-description {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .collection-description {
        padding-left: 24px;
        padding-right: 24px
    }
}

.collection-description .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .collection-description .max-w-content {
        max-width: 1388px
    }
}

.collection-description h1,
.collection-description h2,
.collection-description h3,
.collection-description h4,
.collection-description h5,
.collection-description h6 {
    font-size: 21px;
    line-height: 30px;
    font-weight: 800;
    margin-bottom: 20px
}

.collection-description p,
.collection-description li {
    font-size: 18px;
    line-height: 26px
}

@media(max-width: 480px) {

    .collection-description p,
    .collection-description li {
        font-size: 16px;
        line-height: 24px
    }
}

.product-template-wrapper .image-note-container {
    padding-top: 16px;
    background-color: #fff
}

@media(max-width: 768px) {
    .product-template-wrapper .image-note-container {
        padding-top: 10px
    }
}

.product-template-wrapper .image-note-container p {
    font-size: 14px;
    line-height: 20px;
    text-align: center
}

@media(max-width: 768px) {
    .product-template-wrapper {
        padding-left: 0;
        padding-right: 0
    }
}

.product-template-wrapper .product-main-gallery {
    max-width: 967px
}

@media(min-width: 1441px) {
    .product-template-wrapper .product-main-gallery {
        padding-left: calc((100vw - 1288px)/2)
    }
}

@media(max-width: 1440px)and (min-width: 1024px) {
    .product-template-wrapper .product-main-gallery {
        padding-left: 40px
    }
}

@media(max-width: 1023px) {
    .product-template-wrapper .product-main-gallery {
        width: 100%;
        max-width: initial
    }
}

.product-template-wrapper .product-main-gallery>div>.bg-page {
    padding-top: 53px
}

@media(max-width: 1023px) {
    .product-template-wrapper .product-main-gallery>div>.bg-page {
        padding: 40px 24px 0
    }
}

.product-template-wrapper .product-main-gallery img {
    aspect-ratio: 831/736;
    width: 100%
}

.product-template-wrapper .product-main-gallery slider-engine div[data-name=prev_next_container] {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none
}

.product-template-wrapper .product-main-gallery slider-engine div[data-name=prev_next_container] button {
    pointer-events: all;
    width: 60px
}

.product-template-wrapper .product-main-gallery slider-engine div[data-name=prev_next_container] button>.rounded-full {
    background: #000
}

.product-template-wrapper .product-main-gallery slider-engine div[data-name=prev_next_container] button svg {
    color: #fff
}

.product-template-wrapper .product-main-form {
    max-width: 976px
}

@media(min-width: 1441px) {
    .product-template-wrapper .product-main-form {
        padding-right: 136px
    }
}

@media(max-width: 1440px)and (min-width: 1024px) {
    .product-template-wrapper .product-main-form {
        padding-right: 82px
    }
}

@media(max-width: 1023px) {
    .product-template-wrapper .product-main-form {
        width: 100%;
        max-width: initial
    }
}

@media(min-width: 1367px) {
    .product-template-wrapper .product-main-form>div>.text-body {
        padding-top: 53px;
        padding-left: 84px;
        padding-right: 0
    }
}

@media(max-width: 1366px)and (min-width: 1024px) {
    .product-template-wrapper .product-main-form>div>.text-body {
        padding-left: 50px;
        padding-top: 97px;
        padding-right: 0
    }
}

.product-template-wrapper .product-main-form .quantity-payment-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product-template-wrapper .product-main-form .quantity-payment-wrapper div[data-name=quantity] {
    width: calc(50% - 18px)
}

.product-template-wrapper .product-main-form .quantity-payment-wrapper div[data-name=payment-buttons] {
    width: calc(50% - 18px)
}

.product-template-wrapper .product-main-form product-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product-template-wrapper .product-main-form product-form div[data-name=title],
.product-template-wrapper .product-main-form product-form div[data-name=description],
.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] {
    width: 100%
}

.product-template-wrapper .product-main-form product-form div[data-name=title] h3 {
    font-size: 35px;
    padding-bottom: 0
}

.product-template-wrapper .product-main-form product-form div[data-name=description] {
    margin-bottom: 40px
}

@media(min-width: 1367px) {
    .product-template-wrapper .product-main-form product-form div[data-name=description] span[data-mce-fragment] {
        font-size: 18px;
        line-height: 26px
    }
}

.product-template-wrapper .product-main-form product-form div[data-name=description] .learn-more-cta {
    margin-top: 29px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.product-template-wrapper .product-main-form product-form div[data-name=description] .learn-more-cta:focus svg,
.product-template-wrapper .product-main-form product-form div[data-name=description] .learn-more-cta:hover svg {
    -webkit-transform: translateX(8px);
    transform: translateX(8px)
}

.product-template-wrapper .product-main-form product-form div[data-name=description] .learn-more-cta .cta-text {
    display: inline-block;
    font: 800 18px/41px "Open Sans", sans-serif;
    color: #000;
    text-transform: uppercase
}

.product-template-wrapper .product-main-form product-form div[data-name=description] .learn-more-cta svg {
    color: #fab813;
    margin-left: 7px;
    width: 25px;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out
}

.product-template-wrapper .product-main-form product-form div[data-name=quantity] {
    width: calc(50% - 18px)
}

@media(max-width: 1440px) {
    .product-template-wrapper .product-main-form product-form div[data-name=quantity] {
        width: 100%;
        margin-bottom: 24px
    }
}

.product-template-wrapper .product-main-form product-form div[data-name=quantity] quantity-selector {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-color: #000
}

.product-template-wrapper .product-main-form product-form div[data-name=quantity] button {
    width: 80px;
    height: 78px;
    font: 800 32px/35px "Open Sans", sans-serif
}

.product-template-wrapper .product-main-form product-form div[data-name=quantity] button[data-aid=quantity-minus] {
    border-right: 1px solid #000
}

.product-template-wrapper .product-main-form product-form div[data-name=quantity] button[data-aid=quantity-plus] {
    border-left: 1px solid #000
}

.product-template-wrapper .product-main-form product-form div[data-name=quantity] input[type=number] {
    width: calc(100% - 160px);
    height: 78px;
    font-size: 21px;
    line-height: 20px;
    font-weight: 800
}

.product-template-wrapper .product-main-form product-form #dynamic-buttons-form {
    margin-bottom: 0
}

.product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] {
    width: calc(50% - 18px)
}

@media(max-width: 1440px) {
    .product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] {
        width: 100%
    }
}

.product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] button[data-aid=product-form-submit-button] {
    background: #000;
    color: #fff;
    padding-top: 25px;
    padding-bottom: 25px
}

.product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] button[data-aid=product-form-submit-button] span.border {
    border-color: #000 !important
}

.product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] button[data-aid=product-form-submit-button] span[data-armada-button-text] {
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 800 !important
}

.product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] button[data-aid=product-form-submit-button]:hover span[data-armada-button-text] {
    color: #000 !important
}

.product-template-wrapper .product-main-form product-form div[data-name=payment-buttons] button.shopify-payment-button__button {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 800;
    background: #fab813;
    display: none !important
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] {
    margin-top: 86px
}

@media(max-width: 1023px) {
    .product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] {
        margin-top: 40px
    }
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] div[data-name=other-pages] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 89px
}

@media(max-width: 1023px) {
    .product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] div[data-name=other-pages] {
        margin-bottom: 40px
    }
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] div[data-name=other-pages] a {
    display: inline-block;
    color: #bababa;
    -webkit-transition: color .25s ease-out;
    transition: color .25s ease-out;
    margin-bottom: 12px;
    font: 400 18px/40px "Open Sans", sans-serif
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] div[data-name=other-pages] a:last-of-type {
    margin-bottom: 0
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] div[data-name=other-pages] a:hover {
    color: #000
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab {
    width: 100%;
    display: block;
    border-top: 1px solid #000
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab:last-of-type {
    border-bottom: 1px solid #000
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-toggle {
    width: 100%;
    position: relative;
    padding: 30px 24px 30px 12px;
    cursor: pointer
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-toggle .toggle-text {
    text-transform: uppercase;
    font: 400 21px/30px "Open Sans", sans-serif;
    display: block
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-toggle .toggle-icon {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-toggle .toggle-icon i {
    position: absolute;
    background-color: #000
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-toggle .toggle-icon i:first-child {
    width: 2px;
    height: 100%;
    left: calc(50% - 1px);
    top: 0;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-toggle .toggle-icon i:last-child {
    height: 2px;
    width: 100%;
    left: 0;
    top: calc(50% - 1px)
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-content {
    display: none;
    padding: 0 24px 32px 12px
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab .acc-content p {
    color: #000;
    font: 400 18px/28px "Open Sans", sans-serif
}

.product-template-wrapper .product-main-form product-form div[data-name=spec-features-accordion] .accordion-tab.toggled .toggle-icon i:first-child {
    opacity: 0
}

div[data-armada-selector=regular-price-container] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

div[data-armada-selector=regular-price-container] .excl-gst {
    margin-left: 10px;
    margin-top: 8px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    text-transform: none !important
}

@media(max-width: 1440px) {
    .faq-accordion-sec {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    .faq-accordion-sec {
        padding-left: 24px;
        padding-right: 24px
    }
}

.faq-accordion-sec .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .faq-accordion-sec .max-w-content {
        max-width: 1388px
    }
}

.faq-accordion-sec[data-color-scheme=accent-3] {
    background: #e7e7e7
}

.faq-accordion-sec .text-left h2 {
    text-transform: uppercase;
    font-size: 65px;
    line-height: 70px;
    padding-bottom: 48px
}

@media(max-width: 768px) {
    .faq-accordion-sec .text-left h2 {
        font-size: 40px;
        line-height: 56px
    }
}

section[data-aid=accordion-section] .max-w-content {
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    section[data-aid=accordion-section] .max-w-content {
        max-width: 1388px
    }
}

section[data-aid=flotilla-gallery] .theme-section-padding,
section[data-aid=flotilla-gallery] .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    section[data-aid=flotilla-gallery] .theme-section-padding,
    section[data-aid=flotilla-gallery] .faq-accordion-sec+section[data-aid=accordion-section] {
        max-width: 1388px;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {

    section[data-aid=flotilla-gallery] .theme-section-padding,
    section[data-aid=flotilla-gallery] .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] h4 {
    font: 800 30px/41px "Open Sans", sans-serif
}

@media(max-width: 768px) {
    section[data-aid=flotilla-gallery] li[data-aid=gallery-card] h4 {
        font-size: 28px;
        line-height: 32px
    }
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] a[data-armada-animation=button-primary] {
    background-color: #fab813;
    margin-top: 23px;
    display: inline-block;
    padding: 14px 30px
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] a[data-armada-animation=button-primary]:hover {
    background-color: #fab813
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] a[data-armada-animation=button-primary]:hover span[data-armada-button-text] {
    color: #000
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] a[data-armada-animation=button-primary] span[data-armada-button-text] {
    font-size: 16px;
    line-height: 21px;
    color: #fff
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] a[data-armada-animation=button-primary] span.border {
    border-color: #fab813
}

section[data-aid=flotilla-gallery] li[data-aid=gallery-card] a[data-armada-animation=button-primary]:after {
    background-color: #000
}

.article-header-image {
    position: relative
}

@media(min-width: 769px) {
    .article-header-image {
        height: 506px !important
    }
}

.article-header-image .overlay-pagination {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 8;
    padding: 0 24px
}

.article-header-image .overlay-pagination .bg-page {
    background: rgba(0, 0, 0, 0) !important
}

.article-header-image .overlay-pagination .article-heading {
    max-width: 1302px;
    padding: 0 112px
}

@media(max-width: 1024px) {
    .article-header-image .overlay-pagination .article-heading {
        padding: 0 40px
    }
}

@media(max-width: 480px) {
    .article-header-image .overlay-pagination .article-heading {
        padding: 0 16px
    }
}

.article-header-image .overlay-pagination h3 {
    color: #fff;
    font: 600 35px/52px "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    text-transform: none !important
}

@media(max-width: 480px) {
    .article-header-image .overlay-pagination h3 {
        font-size: 28px;
        line-height: 36px
    }
}

.article-header-image .overlay-pagination a[data-armada-animation=arrow]>div {
    border: none;
    background: #fff
}

.default-article-pagination-title {
    display: none !important
}

video-element svg[data-aid=icon-play] {
    color: #fff
}

.video-sec {
    padding-left: 0;
    padding-right: 0;
    max-width: 1288px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .video-sec {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1388px
    }
}

@media(max-width: 768px) {
    .video-sec {
        padding-left: 24px;
        padding-right: 24px
    }
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] div[data-armada-selector=checkout-button] {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking {
    width: 100%;
    margin: 0 0 32px;
    position: relative
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking .checkbox-group {
    position: relative;
    width: 100%;
    margin: 0 0 12px
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking .checkbox-group input[type=checkbox] {
    border-color: red !important
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking .checkbox-group input[type=checkbox]:checked {
    border-color: initial !important
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking .checkbox-group label {
    padding-left: 32px;
    width: 100%;
    display: block
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking .checkbox-group label p {
    margin: 0;
    font-size: 14px;
    line-height: 20px
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-checking .checkbox-group label a {
    text-decoration: underline;
    color: inherit;
    font: inherit
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model {
    margin: 32px 0 24px
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 20px
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .input-group input {
    width: 49%
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .checkbox-group {
    position: relative;
    width: 100%;
    margin: 0 0 12px
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .checkbox-group input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-color: red !important
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .checkbox-group input[type=checkbox]:checked {
    border-color: initial !important
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .checkbox-group label {
    padding-left: 32px;
    width: 100%;
    display: block
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .checkbox-group label p {
    margin: 0;
    font-size: 14px;
    line-height: 20px
}

div[data-armada-selector=cart-main-inner] div[data-aid=cart-summary-info] .confirm-make-model .checkbox-group label a {
    text-decoration: underline;
    color: inherit;
    font: inherit
}

div[data-armada-selector=cart-main-inner] #checkout {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out
}

div[data-armada-selector=cart-main-inner] #checkout:disabled {
    opacity: .65;
    pointer-events: none
}

div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .theme-section-padding,
div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .faq-accordion-sec+section[data-aid=accordion-section] {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {

    div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .theme-section-padding,
    div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {

    div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .theme-section-padding,
    div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .faq-accordion-sec+section[data-aid=accordion-section] {
        padding-left: 24px;
        padding-right: 24px
    }
}

div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .theme-section-padding .max-w-content,
div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .faq-accordion-sec+section[data-aid=accordion-section] .max-w-content {
    max-width: 768px;
    margin: 0 auto
}

@media(max-width: 1440px) {

    div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .theme-section-padding .max-w-content,
    div[data-armada-selector=cart-main-inner] section[data-armada-selector=cart-empty-section] .faq-accordion-sec+section[data-aid=accordion-section] .max-w-content {
        max-width: 768px
    }
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] {
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 1440px) {
    div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width: 768px) {
    div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] {
        padding-left: 24px;
        padding-right: 24px
    }
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] .max-w-content {
    max-width: 768px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] .max-w-content {
        max-width: 768px
    }
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] div[data-armada-selector=cart-note-container] {
    max-width: 420px
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] div[data-armada-selector=cart-note-container]>cart-note {
    margin-right: 0;
    padding-bottom: 32px
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] div[data-armada-selector=cart-note-container]>cart-note label[for=cart-note] {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] div[data-armada-selector=cart-note-container]>cart-note textarea {
    resize: none
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] div[data-armada-selector=cart-summary-info-container] {
    margin-left: 0;
    max-width: 420px
}

div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] [data-armada-animation^=button][data-armada-animation$=button-primary],
div[data-armada-selector=cart-main-inner] div[data-cart-summary-wrapper] div[data-armada-selector=cart-summary-static-bottom] .shopify-payment-button__button--unbranded {
    background: #fab813
}

.custom-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px
}

.custom-checkbox input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px
}

.custom-checkbox input[type=checkbox]:focus {
    outline-color: #000 !important
}

.custom-checkbox input[type=checkbox]:checked+.tick-mark {
    display: block
}

.custom-checkbox .tick-mark {
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: #000 url(./image-acff747f1711785d4d98.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

:root {
    --toastify-color-info: #fab813 !important;
    --toastify-color-success: #fab813 !important;
    --toastify-color-warning: #fab813 !important
}