:root {
    --font-family-primary: 'Montserrat', sans-serif;
    --font-family-secondary: 'Montserrat', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-family-headings: 'din-condensed', sans-serif;
    --font-family-subtitle: 'Montserrat', sans-serif;
    --font-family-body: 'Montserrat', sans-serif;
    --font-family-button: 'Montserrat', sans-serif;
    --font-family-nav-link: 'Montserrat', sans-serif;
    --font-size-body: 16px;
    --font-size-display: 48px;
    --font-size-h1: 40px;
    --font-size-h2: 36px;
    --font-size-h3: 30px;
    --font-size-h4: 26px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-small: 14px;
    --line-height-body: 1.55;
    --line-height-heading: 1.15;
    --color-primary: #008cec;
    --color-secondary: #294572;
    --color-accent: #006eb8;
    --color-background: #ffffff;
    --color-text: #212529;
    --color-text-primary: var(--color-text);
    --color-text-secondary: var(--color-secondary);
    --color-background-primary: var(--color-background);
    --color-background-secondary: #f8f9fa;
    --color-border: #dee2e6;
    --spacing-unit: 15px;
    --border-radius: 4px;
    --border-width: 1px;
    --transition-duration: 0.3s;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --container-max-width-narrow: 800px;
    --container-max-width-standard: 1200px;
    --container-max-width-wide: 1400px;
    --container-padding: var(--spacing-unit);
    --grid-columns: 12;
    --grid-gutter: calc(2 * var(--spacing-unit))
}

@media (min-width:768px) {
    :root {
        --font-size-body: 16px;
        --font-size-display: 54px;
        --font-size-h1: 48px;
        --font-size-h2: 40px;
        --font-size-h3: 32px;
        --font-size-h4: 28px;
        --font-size-h5: 20px;
        --font-size-h6: 18px;
        --font-size-small: 14px;
        --container-padding: calc(2 * var(--spacing-unit))
    }
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 10px;
    -webkit-text-size-adjust: 100%
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: rgba(0, 0, 0, .7)
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word
}

#_next,
#root {
    isolation: isolate
}

footer ul,
header ul {
    list-style: none
}

main ul {
    padding-left: 20px
}

a {
    color: inherit;
    text-decoration: none
}

main#MainContent p>a:not(.button):hover {
    color: var(--color-primary);
    text-decoration: underline
}

@media (prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }
}

html {
    height: 100%
}

body {
    font-size: var(--font-size-body);
    font-family: var(--font-family-body);
    font-weight: var(--font-weight-normal);
    background-color: var(--color-background-primary);
    line-height: var(--line-height-body);
    transition: all var(--transition-duration) ease;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column
}

main {
    flex: 1;
    overflow: hidden
}

.h1,
h1 {
    font-size: var(--font-size-h1)
}

.h2,
h2 {
    font-size: var(--font-size-h2)
}

.h3,
h3 {
    font-size: var(--font-size-h3);
    letter-spacing: 1px
}

.h4,
h4 {
    font-size: var(--font-size-h4)
}

.h5,
h5 {
    font-size: var(--font-size-h5)
}

.h6,
h6 {
    font-size: var(--font-size-h6)
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    line-height: var(--line-height-heading);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: var(--spacing-unit);
    font-style: normal
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    text-transform: uppercase
}

ol,
p,
ul {
    margin-bottom: var(--spacing-unit);
    font-weight: 400
}

.small {
    font-size: var(--font-size-small)
}

label {
    display: block;
    font-weight: var(--font-weight-body)
}

.color-primary {
    color: var(--color-primary)
}

.color-secondary {
    color: var(--color-secondary)
}

.color-accent {
    color: var(--color-accent)
}

.background-primary {
    background-color: var(--color-primary)
}

.background-secondary {
    background-color: var(--color-secondary)
}

.background-accent {
    background-color: var(--color-accent)
}

.grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gutter)
}

.grid--no-gap {
    gap: 0
}

.grid__col {
    grid-column: span 12
}

.grid__col--1 {
    grid-column: span 1
}

.grid__col--2 {
    grid-column: span 2
}

.grid__col--3 {
    grid-column: span 3
}

.grid__col--4 {
    grid-column: span 4
}

.grid__col--5 {
    grid-column: span 5
}

.grid__col--6 {
    grid-column: span 6
}

.grid__col--7 {
    grid-column: span 7
}

.grid__col--8 {
    grid-column: span 8
}

.grid__col--9 {
    grid-column: span 9
}

.grid__col--10 {
    grid-column: span 10
}

.grid__col--11 {
    grid-column: span 11
}

.grid__col--12 {
    grid-column: span 12
}

@media (min-width:768px) {
    .grid__col--md-1 {
        grid-column: span 1
    }

    .grid__col--md-2 {
        grid-column: span 2
    }

    .grid__col--md-3 {
        grid-column: span 3
    }

    .grid__col--md-4 {
        grid-column: span 4
    }

    .grid__col--md-5 {
        grid-column: span 5
    }

    .grid__col--md-6 {
        grid-column: span 6
    }

    .grid__col--md-7 {
        grid-column: span 7
    }

    .grid__col--md-8 {
        grid-column: span 8
    }

    .grid__col--md-9 {
        grid-column: span 9
    }

    .grid__col--md-10 {
        grid-column: span 10
    }

    .grid__col--md-11 {
        grid-column: span 11
    }

    .grid__col--md-12 {
        grid-column: span 12
    }
}

.container--narrow {
    max-width: var(--container-max-width-narrow)
}

.container--standard {
    max-width: var(--container-max-width-standard)
}

.container--wide {
    max-width: var(--container-max-width-wide)
}

.container--full {
    max-width: 100%
}

@media(min-width:768px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

@media (max-width:767px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

.section--padding-sm {
    padding-top: var(--spacing-unit);
    padding-bottom: var(--spacing-unit)
}

.section--padding-md {
    padding-top: calc(2 * var(--spacing-unit));
    padding-bottom: calc(2 * var(--spacing-unit))
}

.section--padding-lg {
    padding-top: calc(4 * var(--spacing-unit));
    padding-bottom: calc(4 * var(--spacing-unit))
}

.section--padding-xl {
    padding-top: calc(6 * var(--spacing-unit));
    padding-bottom: calc(6 * var(--spacing-unit))
}

.section--padding-xxl {
    padding-top: calc(8 * var(--spacing-unit));
    padding-bottom: calc(8 * var(--spacing-unit))
}

.section--padding-none {
    padding-top: 0;
    padding-bottom: 0
}

a {
    color: #005f9d
}

.button {
    display: inline-block;
    padding: 7px 40px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.42857143;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    width: auto !important;
    min-width: unset !important;
    font-weight: 700 !important;
    font-family: var(--font-family-button);
    transition: all .3s ease
}

.button--primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-background)
}

.button--primary .icon {
    color: var(--color-background);
    fill: var(--color-background)
}

.button--secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-background)
}

.button--primary:hover,
.button--secondary:hover {
    background-color: #005f9e;
    border-color: #005f9e
}

.button--white {
    background-color: var(--color-background);
    border-color: var(--color-border);
    color: var(--color-primary)
}

.button--no-border {
    border: none
}

.button--white .icon {
    color: var(--color-primary);
    fill: var(--color-primary)
}

.button--light {
    background-color: var(--color-background-secondary);
    color: var(--color-text-secondary)
}

.button--light .icon {
    color: var(--color-text-secondary);
    fill: var(--color-text-secondary)
}

.button--border-white {
    border: 1px solid #fff;
    color: #fff
}

.button--border {
    background: 0 0
}

.button:hover {
    transform: scale(1.05)
}

.button>i {
    margin-right: 6px
}

.button--full {
    width: 100%;
    padding-left: 0;
    padding-right: 0
}

.button__icon--left {
    margin-right: var(--spacing-unit)
}

.button__icon--right {
    margin-left: var(--spacing-unit)
}

main#MainContent p>a:not(.button) {
    text-decoration: underline
}

.icon {
    display: inline-block
}

.icon--small {
    height: 16px;
    width: 16px
}

.icon--medium {
    height: 24px;
    width: 24px
}

.icon--large {
    height: 48px;
    width: 48px
}

.image {
    width: 100%;
    height: auto
}

.image-container {
    position: relative;
    width: 100%
}

.image-container::before {
    /* content: '';
    display: block;
    padding-bottom: 100% */
}

.image-container--16-9::before {
    padding-bottom: 56.25%
}

.image-container--4-3::before {
    padding-bottom: 75%
}

.image-container--3-2::before {
    padding-bottom: 66.67%
}

.image-container__image,
.image__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    color: inherit;
    font-family: inherit;
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    margin: 0 0 var(--spacing-unit) 0;
    padding: var(--spacing-unit);
    width: 100%;
    box-sizing: border-box
}

.input--checkbox,
.input--radio {
    width: auto;
    height: auto
}

.input--select {
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px
}

.header__content>div {
    flex: 1
}

.header__content>nav {
    flex: 3
}

.header {
    /* padding: var(--spacing-unit) 0 */
}

.header--main {
    background-color: transparent;
    background-image: url('https://cdn.shopify.com/s/files/1/0005/5318/9491/files/new-nav-grad.png?v=1768263153');
    background-repeat: repeat-x;
    background-size: 100% 105%;
    height: 110px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%
}

.header__content {
    display: flex;
    align-items: stretch;
    justify-content: space-between
}

.header__logo {
    flex-shrink: 0
}

.header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000
}

.header__nav-menu {
    display: flex;
    list-style: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-content: center
}

.header__nav-item {
    position: relative;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: var(--border-width) solid var(--color-border);
    width: 100%
}

.nav-menu__submenu-item {
    border: 0
}

.header__nav-link {
    display: inline-flex;
    padding: var(--spacing-unit) var(--spacing-unit);
    text-decoration: none;
    width: 100%;
    flex: 1
}

.header__icons {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.header__icon-btn {
    margin-left: var(--spacing-unit)
}

.header__cart-count {
    font-size: small;
    transform: translate(-15px, -15px);
    width: 0;
    color: var(--color-background)
}

.header__nav-submenu {
    display: none;
    background-color: var(--color-background-secondary);
    z-index: 1000;
    border-top: var(--border-width) solid var(--color-border);
    margin: 0
}

.header__nav-submenu--open {
    display: block;
    display: flex;
    width: 100%
}

.nav-menu__icon {
    border: 0;
    border-left: var(--border-width) solid var(--color-border);
    border-radius: 0
}

ul.nav-menu.header__nav-menu a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    padding-top: 31px;
    padding-bottom: 31px;
    font-weight: 700;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px
}

ul.nav.navbar-nav>li>a:hover {
    color: #008cec
}

ul.nav-menu__submenu.header__nav-submenu {
    border-top: 5px solid #008cec
}

ul.nav-menu__submenu.header__nav-submenu a {
    color: #333;
    padding: 5px;
    text-transform: none !important;
    font-weight: 400
}

@media (min-width:1025px) {
    .header__nav {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        border: 0;
        box-shadow: 0
    }

    .navbar-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column
    }

    .header__menu-toggle,
    .nav-menu__icon {
        display: none
    }

    .header__nav-menu {
        flex-direction: row
    }

    .header__nav-item {
        border: 0;
        width: auto
    }

    .header__nav-submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        z-index: 1000;
        padding: 0;
        border: var(--border-width) solid var(--color-border);
        box-shadow: var(--box-shadow)
    }

    .header__nav-item:hover>.header__nav-link {
        color: var(--color-primary)
    }

    .header__nav-item:hover .header__nav-submenu {
        display: block
    }

    .header__nav-submenu .header__nav-link {
        white-space: nowrap
    }
}

.header__icon-btn {
    position: relative;
    text-decoration: none;
    text-align: center;
    height: auto;
    width: 65px;
    height: 65px;
    color: #fff;
    cursor: pointer;
    margin: -15px 0 0 0
}

.header__icon-btn svg {
    fill: #fff
}

.header__icon-btn img,
.header__icon-btn svg {
    max-width: 25px;
    margin: auto
}

#hitch-lookup-link img {
    max-width: 30px
}

#cart-link svg {
    max-width: 35px
}

span.header__icon-text {
    display: none;
    font-size: 14px;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    bottom: -12px;
    font-weight: 700;
    width: 120px;
    transform: translateX(-50%);
    color: #fff
}

a:hover>span.header__icon-text {
    display: block
}

.header__cart-count {
    top: 0;
    right: 12px;
    transform: none
}

@media (min-width:992px) {
    .navbar-default .navbar-nav li a {
        padding-top: 34px;
        padding-bottom: 34px
    }
}

@media (min-width:768px) {
    .navbar-default .navbar-nav li a {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px
    }
}

.navbar-default .navbar-nav li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    padding-top: 31px;
    padding-bottom: 31px;
    font-weight: 700;
    text-align: left;
    padding-left: 30px;
    padding-right: 30px
}

@media (min-width:1200px) {
    .dropdown-megamenu>.dropdown-menu {
        margin-right: auto;
        margin-left: auto
    }
}

@media (min-width:768px) {
    .dropdown-megamenu>.dropdown-container {
        margin-right: 20px;
        margin-left: 20px
    }
}

.dropdown-megamenu>.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    border-top: 5px solid #008cec;
    background-color: #fff;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    z-index: -1;
    transition: height .4s cubic-bezier(.4, 0, .2, 1);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    font-size: 14px
}

@media (min-width:1025px) {
    .dropdown-megamenu>.dropdown-menu {
        max-width: calc(100% - 30px);
        width: 1170px
    }
}

.dropdown-megamenu.open>.dropdown-menu {
    visibility: visible;
    z-index: 2
}

.dropdown-container {
    padding: 45px 50px
}

.menu-column-title {
    color: #999;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 21px;
    text-transform: uppercase;
    font-weight: 500
}

.list-links {
    list-style: none;
    padding: 0;
    margin-bottom: 35px !important
}

.list-links li {
    border-bottom: none;
    margin-bottom: 20px
}

.list-links a {
    color: #333;
    text-transform: unset;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    transition: color .7s;
    letter-spacing: 0
}

nav.col.header__nav {
    position: static;
    flex: 2;
    justify-content: center
}

ul.nav.navbar-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 0
}

span.promo-badge {
    position: absolute;
    top: 16px;
    left: -10px;
    background-color: #008cec;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase
}

.promo-header {
    font-size: 18px;
    line-height: 20px;
    color: #333;
    transition: color .7s;
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
    text-transform: capitalize;
    margin: 30px 0 10px
}

.promo-subheader {
    color: #999;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 21px;
    font-weight: 500
}

.promo-video-element {
    width: 100%;
    height: auto
}

@media (min-width:1025px) {
    .dropdown-megamenu.open>a::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #008eec transparent;
        display: inline-block;
        position: absolute;
        bottom: 0;
        margin: 0 auto;
        left: 0;
        right: 0
    }
}

ul.nav.navbar-nav>li>a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 700;
    text-decoration: none !important
}

@media (min-width:1025px) {
    ul.nav.navbar-nav>li>a {
        padding: 31px 15px;
        text-align: center;
        white-space: nowrap;
        position: relative
    }

    .header__menu-toggle-col,
    ul.nav.navbar-nav>li>a .menu-toggle-icon {
        display: none !important
    }
}

@media (max-width:1024px) {
    .header__nav--open {
        display: flex
    }

    .col.header__logo {
        flex: 1
    }

    .header__content>div {
        flex: 0.5
    }

    a.header__logo-link {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .header__menu-toggle {
        display: block
    }

    .header--main {
        background-color: #171717;
        height: auto;
        height: 80px;
        padding: 0;
        position: sticky
    }

    ul.nav.navbar-nav>li>a {
        color: #fff;
        text-transform: uppercase;
        font-size: 15px;
        letter-spacing: 1px;
        padding: 31px 30px;
        font-weight: 700;
        text-align: left;
        display: flex;
        justify-content: space-between
    }

    ul.nav.navbar-nav>li>a .menu-toggle-icon {
        font-size: 20px
    }

    ul.nav.navbar-nav>li {
        float: none;
        display: block;
        border-bottom: 1px solid #404040
    }

    nav.col.header__nav {
        position: absolute !important;
        width: 100%;
        left: 0;
        right: 0;
        padding: 0;
        border: none;
        background-color: #262626;
        max-height: calc(100vh - 85px);
        overflow: scroll
    }

    .navbar-wrapper {
        width: 100%
    }

    ul.nav.navbar-nav {
        flex-direction: column;
        width: 100%
    }

    .dropdown-megamenu>.dropdown-menu {
        position: relative !important
    }

    .header__icon-btn {
        width: 50px;
        height: 55px;
        margin: 0
    }

    span.header__icon-text {
        font-size: 10px
    }

    .header__icon-btn img,
    .header__icon-btn svg {
        max-width: 22px;
        margin: auto
    }

    #hitch-lookup-link img {
        max-width: 27px
    }

    a#cart-link {
        position: fixed;
        right: 0;
        top: 52%;
        background-color: #008cec;
        border-radius: 2px 0 0 2px;
        text-indent: -5px;
        width: 50px
    }

    #cart-link span.header__icon-text {
        position: relative;
        margin-top: -11px;
        text-indent: 1px;
        display: block;
        bottom: auto
    }

    #cart-link svg {
        max-width: 29px
    }
}

@media(max-width:600px) {
    .header__icon-btn {
        width: 38px
    }

    .header__icon-btn img,
    .header__icon-btn svg {
        max-width: 19px
    }

    #hitch-lookup-link img {
        max-width: 23px
    }

    a.header__logo-link img {
        max-width: 80%;
        height: auto
    }
}

.sr-only {
    display: none
}

.header__menu-toggle .icon-bar {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    width: 26px;
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), top .3s cubic-bezier(.4, 0, .2, 1)
}

.header__menu-toggle {
    position: relative;
    width: 34px !important;
    height: 34px !important;
    padding: 0;
    z-index: 21;
    background: 0 0;
    border: none;
    background: 0 0
}

.header__menu-toggle:hover {
    background-color: #353535
}

.header__menu-toggle .top-bar {
    top: 5.5px;
    height: 4px
}

.header__menu-toggle .middle-bar {
    top: 14.5px;
    height: 4px
}

.header__menu-toggle .bottom-bar {
    top: 23.5px;
    height: 4px
}

.header__menu-toggle.active .top-bar {
    transform: translateY(9px) rotate(45deg)
}

.header__menu-toggle.active .middle-bar {
    opacity: 0
}

.header__menu-toggle.active .bottom-bar {
    transform: translateY(-9px) rotate(-45deg)
}

#footer-support-block {
    background: rgba(0, 0, 0, .93)
}

#footer-center-block {
    background: rgba(0, 0, 0, .83)
}

#footer-newsletter-block {
    background: rgba(0, 0, 0, .73)
}

.footer-col {
    padding: 60px 30px
}

.footer-col__content {
    max-width: 315px;
    margin: 0 auto
}

div#footer-newsletter-block form {
    max-width: 315px;
    margin: 0 auto
}

input#NewsletterEmail {
    font-weight: 200;
    color: rgba(0, 0, 0, .9);
    height: 45px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    background-color: #f5f5f5;
    display: block;
    width: 100%;
    background-image: none;
    border: 0 solid #ccc;
    border-radius: 4px;
    text-align: center
}

input#NewsletterEmail::placeholder {
    text-transform: capitalize
}

div#footer-newsletter-block form button {
    display: inline-block;
    padding: 7px 40px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.42857143;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #294572 !important;
    border: none;
    width: auto !important;
    min-width: unset !important
}

.footer__col-title {
    line-height: 38px;
    margin-top: 0;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 28px;
    text-align: left;
}

h4.footer__menu-title {
    font-family: Montserrat;
    font-weight: 400;
    color: rgba(255, 255, 255, .3);
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 10px
}

ul.nav-menu.footer__menu a {
    color: #fff;
    font-size: 13px;
    line-height: 23px;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 0
}

.footer__buttons {
    margin-top: 60px
}

.footer__button a,
.footer__button button {
    margin-bottom: 13px;
    max-width: 202px;
    width: 100% !important;
    padding-left: 24px;
    padding-right: 24px
}

.footer__social-links {
    margin-top: 35px;
    gap: 25px;
    display: flex;
    justify-content: center
}

.footer__social-links i {
    font-size: 36px;
    color: rgba(0, 0, 0, .5)
}

.footer__social-links a:hover i {
    color: #008cec
}

a.footer__policy-link {
    font-size: 11px;
    text-decoration: underline;
    line-height: 14px;
    color: #121212;
    margin-bottom: 0
}

#bw-chat-button {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    z-index: 2;
    top: auto;
    right: 50px;
    background-image: url('https://cdn.shopify.com/s/files/1/0005/5318/9491/files/chat-bubble-07.png?v=1768243470');
    background-repeat: no-repeat;
    background-size: 100% 200%;
    width: 95px;
    height: 90px;
    font-size: 20px;
    line-height: 21px;
    color: #fff;
    padding: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block
}

#bw-chat-button.sticky-chat-button {
    position: absolute;
    top: -45px;
    bottom: auto
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.flex {
    display: flex
}

.flex--column {
    flex-direction: column
}

.flex--justify-between {
    justify-content: space-between
}

.flex--align-center {
    align-items: center
}

.card {
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    height: 100%
}

.card__link {
    text-decoration: none;
    height: 100%
}

.card__body {
    padding: var(--spacing-unit)
}

.card__footer {
    margin-top: auto;
    padding: var(--spacing-unit)
}

.card--product {
    height: 100%
}

.card--collection {
    padding: 0
}

.card--form {
    padding: calc(2 * var(--spacing-unit))
}

.card__title--no-excerpt {
    margin-bottom: 0
}

.section--page-title {
    padding: var(--spacing-unit) 0
}

.section--page-title--main {
    border-bottom: var(--border-width) solid var(--color-border);
    padding: calc(2 * var(--spacing-unit)) 0
}

.page-title {
    margin-bottom: 0
}

footer,
main#MainContent {
    max-width: 2600px;
    margin: auto;
    width: 100%
}

.globo-heading {
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    color: gray !important;
    font-family: Montserrat, sans-serif
}

label.globo-label,
label.globo-label span {
    margin-bottom: 5px !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    color: #8c8c8c !important;
    line-height: 1.15 !important
}

.globo-form-app button,
form.g-container button {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-family: var(--font-family-button);
    letter-spacing: 1px;
    letter-spacing: 1px;
    width: auto !important;
    padding: 7px 40px !important
}

.block-container {
    margin: 0 -5px
}

/* main select {
    font-weight: 200;
    color: rgba(0, 0, 0, .9);
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    background-color: #f5f5f5;
    display: block;
    width: 100%;
    background-image: none;
    border: 0 solid #ccc;
    border-radius: 4px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    min-height: 45px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center
} */

form input[type=date],
form input[type=datetime-local],
form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=url] {
    font-weight: 200;
    color: rgba(0, 0, 0, .9);
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    background-color: #f5f5f5;
    display: block;
    width: 100%;
    background-image: none;
    border: 0 solid #ccc;
    border-radius: 4px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

form input.cart-item__quantity-input {
    box-shadow: none;
    width: auto !important;
    font-size: 14px !important;
    display: initial !important;
    max-width: 60px;
    background: 0 0
}

ul.doc-group__list {
    list-style: none !important;
    padding: 0
}

.shopify-challenge__container {
    min-height: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column
}

@media (min-width:1025px) {
    .shopify-challenge__container {
        margin-top: 80px
    }
}