/**********************
Global
**********************/

:root {
    --sale: #EF0D0D;
    --gold: #F1C740;
    --yellow: #EFC34F;
    --yellow-bright: #F5D06D;
    --yellow-light: #FBDF94;
    --green: #29CC30;
    --silver: #C3C3C3;
    --off-white: #F0F0F0;
    --grey: #3E3E3E;
    --grey-2: #333439;
    --dark-grey: #212121;
    --blue: rgb(36, 145, 196);
    --light-grey: #E5E5E5;
    --lighter-grey: #FAFAFA;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    font-size: 1.9rem;
    /*overflow-x: hidden;*/
}


dialog::backdrop {
    animation: backdrop-vanish 0.3s ease; /* Use backdrop-vanish for both open and closed states */
    background-color: rgba(0, 0, 0, 0);
}

dialog[open]::backdrop {
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes backdrop-vanish {
    from {
        background-color: rgba(0, 0, 0, 0); /* Start transparent */
    }
    to {
        background-color: rgba(0, 0, 0, 0.3); /* End dark */
    }
}


body.noScroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
    background-color: transparent;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    border: none;
}

input,
select,
textarea {
    border: 1px solid lightgray;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

select {
    padding: 8px 34px 8px 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

textarea {
    resize: none;
}

img,
picture,
video {
    display: block;
    height: auto;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0
}

/************
Headers
************/

.h1, .h2, .h3, .h4, .wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4 {
    font-family: titling-gothic-fb-compressed, sans-serif;
}

.h1,
.wysiwyg h1 {
    font-size: 155px;
    line-height: 160px;
    letter-spacing: 3.88px;
    font-weight: 500
}

@media (max-width: 767px) {

    .h1,
    .wysiwyg h1 {
        font-size: 85px;
        line-height: 90px
    }
}

.h2,
.wysiwyg h2 {
    font-weight: 500
}

@media (min-width: 1200px) {

    .h2,
    .wysiwyg h2 {
        font-size: 110px;
        line-height: 115px;
        letter-spacing: 2.75px
    }

    .h2--small {
        font-size: 100px;
        line-height: 105px;
        letter-spacing: 3px
    }
}

@media (max-width: 1199px) and (min-width: 992px) {

    .h2,
    .wysiwyg h2 {
        font-size: 100px;
        line-height: 105px;
        letter-spacing: 2.45px
    }
}

@media (max-width: 991px) and (min-width: 768px) {

    .h2,
    .wysiwyg h2 {
        font-size: 90px;
        line-height: 95px;
        letter-spacing: 2.25px
    }
}

@media (max-width: 767px) and (min-width: 400px) {

    .h2,
    .wysiwyg h2 {
        font-size: 65px;
        line-height: 70px;
        letter-spacing: 1.6px
    }
}

@media (max-width: 399px) {

    .h2,
    .wysiwyg h2 {
        font-size: 40px;
        line-height: 44px;
        letter-spacing: 1px
    }
}

.h3,
.wysiwyg h3 {
    font-size: 65px;
    line-height: 70px;
    letter-spacing: 1.63px;
    font-weight: 500
}

@media (max-width: 767px) {

    .h3,
    .wysiwyg h3 {
        font-size: 40px;
        line-height: 50px
    }
}

.h3--small {
    font-size: 40px;
    line-height: 50px
}

@media (max-width: 767px) {
    .h3--no-resize {
        font-size: 65px;
        line-height: 70px
    }
}

.h4,
.wysiwyg h4 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: .63px;
    font-weight: 500
}

@media (max-width: 767px) {

    .h4,
    .wysiwyg h4 {
        font-size: 20px;
        line-height: 24px
    }
}

.h4--small {
    font-size: 16px;
    line-height: 16px
}

.h4--card {
    font-size: 20px;
    line-height: 24px
}

@media (max-width: 767px) {
    .h4--card {
        font-size: 18px;
        line-height: 20px
    }
}

.h5 {
    font-weight: 700
}

@supports (-webkit-text-stroke:2px var(--gray)) {
    .h5 {
        -webkit-text-stroke: 2px #E9E9E9;
        -webkit-text-fill-color: #FFF
    }
}

@supports (-webkit-text-stroke:2px var(--deep-purple)) {
    .h5--purple {
        -webkit-text-stroke: 2px #3B3899;
        -webkit-text-fill-color: #FFF
    }
}

@media (min-width: 1200px) {
    .h5 {
        font-size: 125px;
        line-height: 130px
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .h5 {
        font-size: 100px;
        line-height: 105px
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .h5 {
        font-size: 85px;
        line-height: 90px
    }
}

@media (max-width: 767px) {
    .h5 {
        font-size: 76px;
        line-height: 80px
    }
}

.h6 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700
}

@media (max-width: 767px) {
    .h6 {
        font-size: 14px;
        line-height: 18px
    }
}

.h7 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 400
}

@media (max-width: 767px) {
    .h7 {
        font-size: 14px;
        line-height: 22px
    }
}

.h8 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700
}

@media (max-width: 767px) {
    .h8 {
        font-size: 16px;
        line-height: 22px
    }
}

/************
Button Loading 
************/

.buttonV2,
.shopify-challenge__button {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 0;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-align: center;
    background-color: var(--gold);
    border-radius: 6px;
    color: var(--grey);
    text-decoration: none;
    max-width: 345px;
    cursor: pointer;
    font-family: inherit;
    border: none;
    appearance: none;
    outline: none;
    transition: .4s ease;
}

.buttonV2:hover {
    transition: .4s ease;
    background-color: var(--yellow-bright);
    border-radius: 15px;
}

.buttonV2.dark {
    background-color: var(--grey);
    color: var(--yellow);
}

.buttonV2.dark:hover {
    background-color: var(--grey-2);
}

.button {
    display: block;
    width: 100%;
    height: auto;
    padding: 17px 30px 15px;
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
    text-align: center;
    background-color: var(--gold);
    border-radius: 23px;
    color: black;
    text-decoration: none;
    max-width: 345px;
    cursor: pointer;
    font-family: inherit;
    border: none;
    appearance: none;
    border: none;
    font-family: inherit;
    outline: none;
    transition: 200ms;
}

.button.silver {
    background-color: #A3A3A2;
}

.button.center {
    margin: auto;
}

.button.center {
    margin: auto;
}

.button.loading, .buttonV2.loading {
    position: relative !important;
    pointer-events: none !important;
    color: transparent !important;
}

.button.loading::after, .buttonV2.loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #FFF;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@media (max-width: 800px) {
    .button {
        max-width: none;
    }
}

dialog {
    padding: 0;
    max-width: none;
    max-height: none;
    border: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
}

dialog[open] {
    display: flex;
}

.dialogClose {
    font-size: 14px;
    text-align: right;
    line-height: 21px;
    cursor: pointer;
    margin-bottom: 10px;
}


/*******
Swiper
*******/

:root {
    --swiper-pagination-bullet-size: 20px;
    /*
    --swiper-theme-color: var(--blue);

     */
}

/****************
Mobile/Desktop
 */

@media (min-width: 801px) {
    .mobileOnly {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .desktopOnly {
        display: none !important;
    }
}

/*******************
Container
 */

.container {
    max-width: 1366px;
    padding: 0 25px;
    display: block;
    margin: auto;
    width: 100%
}

.containerV2 {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 991px) and (min-width: 768px) {
    .container {
        padding: 0 80px
    }
}

@media (max-width: 800px) {
    .containerV2 {
        width: 100%;
        padding: 0 24px

    }
}

/*****************
Page
 */

#page {
    max-width: 1100px;
    margin: auto;
    padding: 20px 20px 80px;
}

#pageDescription {
    line-height: 1.5;
}

/***********************
Tooltip
 */

.tool-tip {
    width: 18px;
    height: 18px;
    color: black;
    cursor: pointer;
}

.toolTipV2 {
    cursor: pointer;
    background-color: var(--yellow);
    color: var(--grey);
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 100px;
    line-height: 1;
    font-size: 12px;
    text-transform: lowercase;
}

/**********************
Swal
 */

.swal2-popup {
    background-color: var(--grey) !important;
    color: var(--yellow) !important;
    font-size: 16px !important;
    font-weight: 300 !important;
}

.swal2-styled.swal2-confirm {
    background-color: var(--yellow) !important;
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(241, 199, 64, 0) !important;
}

.swal2-container.light .swal2-popup {
    background-color: white !important;
    border-radius: 6px !important;
    max-width: 410px !important;
    border: 1px solid var(--yellow) !important;
    padding-bottom: 30px !important;
}


.swal2-container.light .swal2-title {
    color: var(--grey) !important;
    font-weight: 500 !important;
    font-size: 21px !important;
    padding-top: 30px !important;
}

.swal2-container.light .swal2-title strong {
    font-weight: 500 !important;
    color: var(--yellow) !important;
}

.swal2-container.light .swal2-html-container {
    color: var(--grey) !important;
    font-weight: 300 !important;
    font-size: 16px !important;
}

.swal2-container.light .swal2-actions {
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
}

.swal2-container.light .swal2-styled.swal2-confirm {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    color: var(--grey) !important;
}

/******
Quotes
 */
.quoteBy {
    font-size: 16px;
    line-height: 38px;
    display: flex;
    gap: 40px;
    font-style: italic;
    position: relative;
}

.quoteImage {
    display: block;
    width: 35px;
    height: auto;
    object-fit: contain;
    left: -20px;
    position: relative;
}

.quoteImage:first-child {
    margin-bottom: 10px;
}

.quoteBy .quoteImage:last-child {
    margin-bottom: 0;
}


/*************
Quote Grid
 */
.quoteGrid {
    padding: 60px 20px 60px;
    background-color: #F3F3F3;
}

.quoteGrid.white {
    background-color: white;
}

.quoteGrid.align-center .quoteGridInner {
    align-items: center;
}

.quoteGridInner {
    max-width: 905px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 60px;
}

.quoteGridInner > div {
    display: flex;
    flex-direction: column;
}

.quoteGridTitle {
    font-weight: bold;
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 10px;
}

.quoteGridBody {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
}

.quoteGridImage {
    display: block;
    width: 100%;
}

@media (max-width: 800px) {
    .quoteGrid {
        padding: 60px 40px;
    }

    .quoteGrid.white {
        padding: 20px 40px 40px;
    }

    .quoteGridInner {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

/*********
Okendo
 */

.oke-w-review-footer {
    display: none !important;
}

.oke-reviewCarousel-header-title {
    display: none !important;
}

/*********
GT Translae
********/

#attentive_creative {
    bottom: 65px !important;
}

#gt_float_wrapper {
    bottom: 5px !important;
}

/*********
Mobile/Desktop  Only
 */

@media (max-width: 800px) {
    .hideMobile {
        display: none;
    }
}

@media (min-width: 801px) {
    .hideDesktop {
        display: none;
    }
}

/******** Okendo Hide Write a Review in Popup **********/

#oke-modalContainer .oke-w-writeReview {
    display: none !important;
}

/**********
Shopify Challenge
 */


.shopify-challenge__container,
.shopify-policy__container {
    max-width: 800px !important;
    margin: auto;
    padding: 40px 20px;
}

.shopify-policy__title h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.shopify-challenge__container .g-recaptcha {
    margin: 20px 0;
}

#gt_float_wrapper {
    position: static !important;
    background-color: var(--grey) !important;
    padding: 20px 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide Attentive Images */
img[src*="aa.trkn.us"] {
    display: none;
}


/************************ shoe size modal ***************************/
.shoeSize {
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    transition: 0.4s;
    z-index: 2147483648;
    max-width: none;
    max-height: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
}

.shoeSize[open] {
    display: flex;
    position: fixed;
}


.shoeSizeContent {
    background-color: white;
    position: absolute;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 31px 28px 25px;
    overflow-y: scroll;
}

.shoeSizeContentClose {
    margin-left: auto;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    justify-content: flex-end;
    color: var(--grey);
    margin-bottom: 25px;
}

.shoeSizeContentClose:focus {
    outline: none;
}

.shoeSizeContentTable {
    border-collapse: collapse;
    font-size: 16px;
}

.shoeSizeContentTableHeaderRowItem {
    border: 1px solid var(--grey);
    padding: 8px;
    text-align: center;
}

.shoeSizeContentTableBodyRowItem {
    border: 1px solid var(--grey);
    padding: 8px;
    text-align: center;
}