/*!
 * @version 5f14ac1b-dev
 * 
 */
 .field-wrapper .root_error {
    margin: 5px 0;
}

.field-wrapper .field-wrapper {
    padding-top: 10px;
}

    .field-wrapper .field-wrapper .label {
        margin-top: 10px;
    }

.field-icons .root {
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-areas: "before input after";
    grid-template-columns: auto 1fr auto;
    height: 36px;
}

.field-icons .input {
    align-items: center;
    display: flex;
    grid-column: before-start/after-end;
    grid-row: input-start/input-end;
}

.field-icons .after, .field-icons .before {
    align-items: center;
    display: flex;
    justify-content: center;
    pointer-events: none;
    width: 36px;
}

    .field-icons .after:empty, .field-icons .before:empty {
        display: none;
    }

.field-icons .before {
    grid-area: before;
}

.field-icons .after {
    grid-area: after;
}

.root:empty {
    display: none;
}

.root_error {
    color: red;
}

.message-root .root:empty {
    display: none;
}

.message-root .root_error {
    color: #002739;
}

.icon-root {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    touch-action: manipulation;
}

.root-checkbox {
    align-items: center;
    color: rgb(var(--venia-text));
    display: inline-grid;
    font-size: 1rem;
    font-weight: 400;
    gap: .5rem;
    grid-auto-flow: column;
    grid-template-columns: auto;
    justify-items: center;
    margin: .5rem;
    vertical-align: top;
}

.icon-checkbox {
    align-items: center;
    z-index: 2;
}

.icon-checkbox, .input-checkbox {
    display: inline-flex;
    grid-column: 1/span 1;
    grid-row: 1/span 1;
    height: 1.25rem;
    width: 1.25rem;
}

.input-checkbox {
    background: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin: 0;
    -webkit-appearance: none;
}

    .input-checkbox:focus {
        border-color: #ccc;
        box-shadow: 0 0 0 2px #ccc,0 0 .5rem 2px #ccc;
        outline: none;
    }

.label-checkbox {
    font-size: 1rem;
    grid-column: 2/span 1;
    grid-row: 1/span 1;
}

.optionContainer {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.radioButtonOuter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: 1px solid #002739;
    margin-right: 10px;
}

.activeRadio {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #002739;
}

.wrapper-select {
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-areas: "input icon";
    grid-template-columns: auto 2.25rem;
    height: 2.25rem;
}

.input-select {
    grid-area: input-start/input-start/input-end/icon-end;
    padding-right: calc(2.25rem - 1px);
}

.account-form-steps {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    border-left: 1px solid #eaeaea;
    background-color: #fff;
    cursor: default;
    z-index: 999;
    opacity: 0;
    transform: translate3d(100%,0,0);
    transition-duration: 192ms;
    transition-property: opacity,transform,visibility;
    transition-timing-function: cubic-bezier(.4,0,1,1);
    visibility: hidden;
}

    .account-form-steps.open {
        opacity: 1;
        transform: translateZ(0);
        transition-duration: 224ms;
        transition-timing-function: cubic-bezier(0,0,.2,1);
        visibility: visible;
        text-align: center;
    }

        .account-form-steps.open:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
        }

        .account-form-steps.open .header {
            display: flex;
            justify-content: center;
            box-sizing: border-box;
            min-height: 59px;
            border-bottom: 1px solid #eaeaea;
        }

            .account-form-steps.open .header .title {
                margin: 24px 0;
                font-size: 16px;
                letter-spacing: .65px;
                line-height: 8px;
            }

        .account-form-steps.open .return-button {
            margin: 0;
            padding: 16px 16px 16px 17px;
            position: absolute;
            left: 0;
            font-size: 0;
        }

            .account-form-steps.open .return-button span {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                overflow: hidden;
                clip: rect(0,0,0,0);
                white-space: nowrap;
                border: 0;
            }

        .account-form-steps.open .close-sidebar {
            margin: 15px 20px 16px 0;
            position: absolute;
            right: 0;
            width: 30px;
            height: 30px;
        }

            .account-form-steps.open .close-sidebar span {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                overflow: hidden;
                clip: rect(0,0,0,0);
                white-space: nowrap;
                border: 0;
            }

            .account-form-steps.open .close-sidebar:after, .account-form-steps.open .close-sidebar:before {
                position: absolute;
                content: "";
                height: 30px;
                width: 1px;
                right: 13px;
                top: -1px;
                background-color: #002739;
            }

            .account-form-steps.open .close-sidebar:before {
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .account-form-steps.open .close-sidebar:after {
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

        .account-form-steps.open .account-form-wrapper {
            margin: 42px auto;
            text-align: left;
        }

        .account-form-steps.open .field-wrapper {
            margin: 0 0 14px;
            padding: 0;
        }

            .account-form-steps.open .field-wrapper .label {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                overflow: hidden;
                clip: rect(0,0,0,0);
                white-space: nowrap;
                border: 0;
            }

        .account-form-steps.open .customer {
            margin-bottom: 16px;
        }

            .account-form-steps.open .customer.exist {
                font-size: 12px;
            }

.account-form.signin {
    position: relative;
}

    .account-form.signin .account-form-dropdown {
        display: none;
        right: 0;
        position: absolute;
        z-index: 1000;
        padding: 0;
        min-width: 246px;
        background: #fff;
        border: 1px solid #eaeaea;
        text-align: center;
    }

        .account-form.signin .account-form-dropdown.active {
            display: block;
        }

        .account-form.signin .account-form-dropdown .welcome-message {
            padding: 13px 0;
            margin: 0;
            color: #002739;
            font-size: 18px;
            font-weight: 500;
            line-height: 27px;
            border-bottom: 1px solid #eaeaea;
        }

        .account-form.signin .account-form-dropdown ul.dropdown-list li {
            display: block;
            margin: 0;
            padding: 13px 0;
        }

            .account-form.signin .account-form-dropdown ul.dropdown-list li a {
                color: #002739;
                font-size: 14px;
                line-height: 18px;
            }

@media screen and (min-width:768px) {
    .account-form-steps {
        max-width: 467px;
    }

        .account-form-steps.open .alert-danger svg {
            margin-top: 0;
        }

        .account-form-steps.open .account-form-wrapper {
            width: 330px;
        }
}

@media screen and (max-width:767px) {
    .account-form-wrapper {
        width: calc(100% - 30px);
        padding: 0 18px;
    }

    .field-wrapper input {
        max-width: 100%;
    }
}

.page-header .account-login-form .forgot-password-link {
    display: block;
    color: #333;
    font-size: 12px;
    letter-spacing: .4px;
    margin: 25px 0 0;
    font-family: $header_font;
    padding: 0;
}

.page-header .account-register-form .title {
    font-size: 14px;
    letter-spacing: .4px;
    margin: 0 0 16px;
}

.page-header .account-register-form .terms-conditions-link-wrapper {
    font-size: 9px;
    letter-spacing: .36px;
    margin: 36px 0 0;
}

.page-header .account-register-form .terms-conditions-link {
    color: #333;
    font-size: 9px;
    letter-spacing: .36px;
    padding: 0;
    font-family: $header_font;
}

.page-header .account-register-form .input-password-wrapper {
    margin: 0 0 14px;
    padding: 0;
}

    .page-header .account-register-form .input-password-wrapper .field-wrapper {
        margin: 0;
        padding: 0;
    }

.page-header .account-form-forgot-password .title {
    font-size: 12px;
    letter-spacing: .4px;
    margin: 0 0 17px;
    font-weight: 600;
}

.page-header .account-form-forgot-password .signin-link-wrapper {
    margin: 30px 0 0;
    font-size: 12px;
    letter-spacing: .4px;
}

.page-header .account-form-forgot-password .signin-link {
    font-family: $header_font;
    font-weight: 600;
    color: #333;
    font-size: 13px;
    letter-spacing: .4px;
    padding: 0;
}

.ReactPasswordStrength {
    position: relative;
}

    .ReactPasswordStrength.is-strength-0 .ReactPasswordStrength-strength-desc {
        color: #d1462f;
    }

    .ReactPasswordStrength.is-strength-0 .ReactPasswordStrength-strength-bar {
        background: #d1462f;
        width: 20%;
    }

    .ReactPasswordStrength.is-strength-1 .ReactPasswordStrength-strength-desc {
        color: #d1462f;
    }

    .ReactPasswordStrength.is-strength-1 .ReactPasswordStrength-strength-bar {
        background: #d1462f;
        width: 40%;
    }

    .ReactPasswordStrength .is-strength-2 .ReactPasswordStrength-strength-desc {
        color: #57b8ff;
    }

    .ReactPasswordStrength .is-strength-2 .ReactPasswordStrength-strength-bar {
        background: #57b8ff;
        width: 60%;
    }

    .ReactPasswordStrength .is-strength-3 .ReactPasswordStrength-strength-desc {
        color: #57b8ff;
    }

    .ReactPasswordStrength .is-strength-3 .ReactPasswordStrength-strength-bar {
        background: #57b8ff;
        width: 80%;
    }

    .ReactPasswordStrength .is-strength-4 .ReactPasswordStrength-strength-desc {
        color: #2fbf71;
    }

    .ReactPasswordStrength .is-strength-4 .ReactPasswordStrength-strength-bar {
        background: #2fbf71;
        width: calc(100% + 2px);
    }

    .ReactPasswordStrength .message-root .root_error {
        font-size: 12px;
        line-height: 19px;
        color: #002739;
        width: 100%;
        text-transform: none;
        margin-top: 3px;
    }

.ReactPasswordStrength-input:not(:focus).ReactPasswordStrength-input.is-password-invalid {
    color: #d1462f;
}

.ReactPasswordStrength-input:focus {
    outline: none;
}

.ReactPasswordStrength-strength-desc {
    font-style: italic;
    padding: 16px 12px;
    font-size: 12px;
    position: absolute;
    top: 1px;
    right: 0;
    text-align: right;
    transition: color .25s ease-in-out;
    width: auto;
    white-space: nowrap;
}

.ReactPasswordStrength-strength-bar {
    box-sizing: border-box;
    height: 2px;
    position: relative;
    top: 1px;
    right: 1px;
    transition: width .3s ease-out;
    width: 0;
}

.page-header .account-reset-form .title {
    font-size: 12px;
    letter-spacing: .4px;
    margin: 0 0 17px;
    font-weight: 600;
}

.page-header .account-reset-form .sub-title {
    margin-bottom: 0 0 10px;
}

.page-header .account-reset-form .input-password-wrapper {
    margin: 0 0 14px;
    padding: 0;
}

    .page-header .account-reset-form .input-password-wrapper .field-wrapper {
        margin: 0;
        padding: 0;
    }

.checkout-agreements-modal button span {
    font-size: 2rem;
    color: #b70020;
}

.loading-container {
    text-align: center;
    margin: 2rem 0;
}

.loading-message {
    font-size: 12px;
    display: block;
    padding: 10px 0;
}

@keyframes pulse {
    0% {
        filter: grayscale(1);
        transform: scale(.75) rotate(-540deg);
    }

    to {
        filter: grayscale(0);
        transform: scale(1) rotate(0deg);
    }
}

@keyframes loader-dots {
    0% {
        animation-timing-function: cubic-bezier(0,.5,.5,1);
        top: 85.565px;
    }

    33.5% {
        animation-timing-function: cubic-bezier(.5,0,1,.5);
        top: 65.155px;
    }

    67% {
        animation-timing-function: cubic-bezier(.5,.5,.5,.5);
        top: 85.565px;
    }

    to {
        top: 85.565px;
    }
}

.loader-dots div {
    position: absolute;
    border-radius: 50%;
    width: 6.28px;
    height: 6.28px;
    animation: loader-dots 1s infinite;
}

.loading-spinner {
    width: 157px;
    height: 157px;
    display: inline-block;
    overflow: hidden;
    background: none;
}

.loader-dots {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

    .loader-dots div {
        box-sizing: content-box;
    }

.global-overlay {
    position: fixed;
    width: 100%;
    background-color: #6d6d6d;
    z-index: 1;
    float: left;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: .5;
    cursor: pointer;
    display: none;
}

.overlay-open {
    display: block;
}

.page-overlay {
    overflow: hidden;
    position: relative;
    height: 100%;
}

@media screen and (max-width:767px) {
    .nav-open {
        height: 100%;
        overflow-x: hidden;
        width: 100%;
    }

        .nav-open .page-overlay {
            height: 100%;
            overflow: hidden;
            position: relative;
            width: 100%;
        }
}

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

html {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size-adjust: 100%;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
}

abbr[data-original-title], abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none;
}

address {
    font-style: normal;
    line-height: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-position: inside;
}

dl, ol {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0;
    }

dd {
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    font-weight: 400;
    padding: 0 0 3px;
    letter-spacing: normal;
}

    a.focus, a:focus, a:hover {
        text-decoration: none;
        box-shadow: none;
    }

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none;
    }

        a:not([href]):not([tabindex]):focus {
            outline: 0;
        }

code, kbd, pre, samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    border-style: none;
    max-width: 100%;
}

img, svg {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

    button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color;
    }

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
        cursor: pointer;
    }

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        padding: 0;
        border-style: none;
    }

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

input[type=date], input[type=datetime-local], input[type=month], input[type=time] {
    -webkit-appearance: listbox;
}

.root-checkbox .label-checkbox {
    font-size: 13px;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .7rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: all .2s ease-in;
    -ms-transition: all .2s ease-in .2s ease-out;
    -moz-transition: all .2s ease-in .2s ease-out;
    -webkit-transition: all .2s ease-in ease-out .2s;
    transition: all .2s ease-in ease-out .2s;
    text-decoration: none;
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none;
    }
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.btn.disabled, .btn:disabled {
    opacity: .3;
    pointer-events: none;
    border-width: 1px;
}

    .btn.disabled, .btn.disabled.focus, .btn.disabled.hover, .btn.disabled:focus, .btn.disabled:hover, .btn:disabled, .btn:disabled.focus, .btn:disabled.hover, .btn:disabled:focus, .btn:disabled:hover {
        background-color: #fff;
        border-color: #002739;
        color: #002739;
    }

a.btn.disabled, fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-group-lg > .btn, .btn-lg {
    padding: .7rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.btn.btn-group-sm > .btn, .btn.btn-sm {
    padding: .6rem 1rem;
    font-size: 12px;
    line-height: 1.5;
}

.btn-link, .links, .links-sec {
    background: transparent;
    color: #002739;
    text-decoration: none;
    font-family: $text_font;
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 3px;
    letter-spacing: 1.05px;
    border: 0;
    border-bottom: 1px solid #002739;
}

    .btn-link.btn, .links-sec.btn, .links.btn {
        min-width: 0;
        width: auto;
    }

    .btn-link.focus, .btn-link:focus, .btn-link:hover, .links-sec.focus, .links-sec:focus, .links-sec:hover, .links.focus, .links:focus, .links:hover {
        text-decoration: none;
        box-shadow: none;
    }

    .btn-link.disabled, .btn-link:disabled, .links-sec.disabled, .links-sec:disabled, .links.disabled, .links:disabled {
        color: rgba(0,0,0,.3);
        pointer-events: none;
        background: transparent;
        border-color: rgba(0,0,0,.3);
    }

        .btn-link.disabled.focus, .btn-link.disabled:focus, .btn-link.disabled:hover, .btn-link:disabled.focus, .btn-link:disabled:focus, .btn-link:disabled:hover, .links-sec.disabled.focus, .links-sec.disabled:focus, .links-sec.disabled:hover, .links-sec:disabled.focus, .links-sec:disabled:focus, .links-sec:disabled:hover, .links.disabled.focus, .links.disabled:focus, .links.disabled:hover, .links:disabled.focus, .links:disabled:focus, .links:disabled:hover {
            text-decoration: none;
            background: transparent;
        }

    .links-sec, .links-sec:hover {
        color: #6c0015;
    }

[class^=buttons-root] .text-link button[class] {
    overflow: visible;
}

.btn-primary {
    font-family: DMSans-SemiBold;
    background: transparent;
    color: #002739;
    border-color: #0e223a;
    border-radius: 2px;
    text-transform: uppercase;
    padding-bottom: .6rem;
    font-size: 13px;
    letter-spacing: 2.08px;
    line-height: 26px;
    transition: all .2s ease-in;
    -ms-transition: all .2s ease-in .2s ease-out;
    -moz-transition: all .2s ease-in .2s ease-out;
    -webkit-transition: all .2s ease-in ease-out .2s;
    transition: all .2s ease-in ease-out .2s;
}

@media (prefers-reduced-motion:reduce) {
    .btn-primary {
        transition: none;
    }
}

.btn-primary:hover {
    text-decoration: none;
}

.btn-primary:focus, .btn-primary:hover {
    background: #002739;
    color: #fff;
    border-color: #002739;
}

.btn-primary:focus {
    box-shadow: 0 0 4px 2px rgba(0,148,223,.77);
}

.btn-primary.white-btn, .btn-primary.white-btn:hover, .white-btn .btn-primary, .white-btn .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #002739;
}

.btn-secondary, .secondary-btn .btn-primary {
    font-family: DMSans-SemiBold;
    font-size: 13px;
    background: #004f71;
    color: #fff;
    border-radius: 2px;
    border-color: #004f71;
    text-transform: uppercase;
    letter-spacing: 2.08px;
    line-height: 26px;
}

    .btn-secondary:focus, .btn-secondary:hover, .secondary-btn .btn-primary:focus, .secondary-btn .btn-primary:hover {
        background: #002739;
        color: #fff;
        border-color: #002739;
        text-decoration: none;
    }

    .btn-secondary:focus, .secondary-btn .btn-primary:focus {
        box-shadow: 0 0 4px 4px rgba(0,148,223,.77);
    }

.btn-tertiary, .tertiary-btn .btn-primary {
    font-family: DMSans-SemiBold;
    font-size: 16px;
    background: transparent;
    color: #fff;
    border-radius: 2px;
    border-color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-tertiary:focus, .btn-tertiary:hover, .tertiary-btn .btn-primary:focus, .tertiary-btn .btn-primary:hover {
        background: #fff;
        color: #002739;
        border-color: #fff;
    }

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: .5rem;
    }

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
    width: 100%;
}

.text-link .btn {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1.18px;
    font-family: $text_font;
    padding-bottom: 0;
    position: relative;
}

    .text-link .btn:after {
        content: "";
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11.06l5-4.994L1 1.06' stroke='%23000' fill='none' fill-rule='evenodd' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: 100%;
        height: 11px;
        width: 6px;
        position: absolute;
        top: 9px;
        right: -13px;
    }

.btn-link-text {
    border-bottom: 1px solid #002739;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1.05px;
    font-family: $text_font;
    padding-bottom: 3px;
    position: relative;
}

    .btn-link-text:after {
        content: "";
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11.06l5-4.994L1 1.06' stroke='%23000' fill='none' fill-rule='evenodd' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: 100%;
        height: 11px;
        width: 6px;
        position: absolute;
        top: 6px;
        right: -15px;
    }

@media screen and (max-width:767px) {
    .btn-min-width .btn-primary {
        min-width: 156px;
        max-width: 100%;
    }

    .btn-min-width .btn-secondary, .btn-min-width .secondary-btn .btn-primary {
        min-width: 171px;
        max-width: 100%;
    }
}

@media screen and (min-width:768px) {
    .btn-min-width .btn-primary {
        min-width: 176px;
        max-width: 100%;
    }

    .btn-min-width .btn-secondary, .btn-min-width .secondary-btn .btn-primary {
        min-width: 191px;
        max-width: 100%;
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

    .btn-group-vertical > .btn, .btn-group > .btn {
        position: relative;
        flex: 1 1 auto;
    }

        .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus {
            z-index: 1;
        }

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .btn-toolbar .input-group {
        width: auto;
    }

.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
    margin-left: -1px;
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem;
}

    .dropdown-toggle-split:after, .dropright .dropdown-toggle-split:after, .dropup .dropdown-toggle-split:after {
        margin-left: 0;
    }

.dropleft .dropdown-toggle-split:before {
    margin-right: 0;
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem;
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
        width: 100%;
    }

        .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
            margin-top: -1px;
        }

        .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn:not(:first-child) {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

.btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}

    .btn-group-toggle > .btn-group > .btn input[type=checkbox], .btn-group-toggle > .btn-group > .btn input[type=radio], .btn-group-toggle > .btn input[type=checkbox], .btn-group-toggle > .btn input[type=radio] {
        position: absolute;
        clip: rect(0,0,0,0);
        pointer-events: none;
    }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    font-size: 12px;
    line-height: 20px;
}

.breadcrumb-item a {
    border: 0;
    font-family: $header_font;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
    padding: 0;
}

    .breadcrumb-item a:hover {
        color: #054f70;
    }

.breadcrumb-item + .breadcrumb-item {
    padding-left: .5rem;
}

    .breadcrumb-item + .breadcrumb-item:before {
        display: inline-block;
        padding-right: .5rem;
        color: #6c757d;
        content: "/";
    }

    .breadcrumb-item + .breadcrumb-item:hover:before {
        text-decoration: underline;
        text-decoration: none;
    }

.breadcrumb-item.active {
    color: #002739;
}

.pagination {
    display: flex;
    list-style: none;
    border-radius: .25rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 0 30px;
}

.page-link {
    position: relative;
    display: block;
    padding: .469rem .2rem;
    margin-left: -1px;
    border: 1px solid transparent;
    font-size: 13px;
    font-family: DMSans-Light;
    border-radius: 0;
    min-width: 18px;
}

    .page-link, .page-link:active, .page-link:hover {
        color: #002739;
        background-color: transparent;
        text-decoration: none;
    }

        .page-link:active, .page-link:hover {
            z-index: 2;
            border-color: transparent;
        }

        .page-link:focus {
            text-decoration: none;
        }

        .page-link svg {
            stroke-width: 1;
        }

.page-item {
    margin-left: 1rem;
    text-align: center;
}

    .page-item:focus {
        outline: none;
    }

    .page-item:first-child {
        margin-left: 0;
        margin-right: 5px;
    }

        .page-item:first-child .page-link {
            margin-left: 0;
        }

    .page-item.active .page-link {
        z-index: 1;
        background-color: transparent;
        color: #002739;
        border-bottom: 1px solid #002739;
    }

    .page-item.disabled .page-link {
        color: #6c757d;
        pointer-events: none;
        cursor: auto;
        background-color: #fff;
        border-color: #dee2e6;
    }

.pagination-lg .page-link {
    padding: .469rem .2rem;
    font-size: 16px;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination-sm .page-link {
    padding: .469rem .2rem;
    font-size: 16px;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media screen and (min-width:768px) {
    .page-link {
        line-height: 21px;
    }
}

@media only screen and (max-width:767px) {
    .page-link {
        min-width: 15px;
        padding: .219rem .2rem;
        font-size: 13px;
        line-height: 27px;
    }

        .page-link:focus, .page-link:hover {
            background: transparent;
            border-color: transparent;
            color: #002739;
            text-decoration: underline;
            outline: none;
        }

    .page-item {
        margin-left: 19px;
    }
}

.collapsible-wrapper {
    background-color: #f6f3ee;
}

    .collapsible-wrapper .collapsible-title {
        font-family: inherit;
        font-size: 14px;
        color: #002739;
    }

    .collapsible-wrapper .collapsible-content p:last-child {
        margin-bottom: 0;
    }

.alert {
    position: relative;
    margin-bottom: 1rem;
    font-family: $header_font;
    font-size: 12px;
    line-height: 22px;
}

    .alert .msg-icon, .alert svg {
        position: absolute;
    }

        .alert .msg-icon:before {
            content: "";
        }

    .alert strong {
        font-family: $header_font;
    }

    .alert .alert-link, .alert a {
        color: #002739;
        padding: 0 0 0 4px;
        font-family: $header_font;
        font-size: 12px;
    }

    .alert a {
        margin: 0;
        padding: 0;
    }

.alert-heading {
    color: inherit;
}

.alert-link {
    padding-left: 4px;
}

.alert-dismissible {
    padding-right: 2.5rem;
}

    .alert-dismissible .close {
        position: absolute;
        top: 0;
        right: 0;
        padding: .5rem;
        color: inherit;
    }

.alert-primary {
    color: #004085;
    background: #cce5ff;
    border-color: #b8daff;
}

.alert-secondary {
    color: #383d41;
    background: #e2e3e5;
    border-color: #d6d8db;
}

.alert strong {
    font-weight: 400;
}

.alert-success {
    color: #054f70;
    background: transparent;
    border-color: transparent;
}

    .alert-success svg {
        stroke-width: 3;
        color: #054f70;
        stroke: #054f70;
    }

.alert-warning {
    color: #b30015;
}

    .alert-warning svg {
        stroke-width: 1;
        stroke: #b30015;
    }

    .alert-warning path, .alert-warning svg {
        color: #b30015;
        fill: currentColor;
    }

    .alert-danger, .alert-danger .alert-link, .alert-danger a, .alert-warning .alert-link {
        color: #b30015;
    }

.alert-info {
    color: #002739;
}

    .alert-info svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.alert-notification {
    color: #002739;
}

    .alert-notification .msg-icon {
        width: 13px;
        height: 9px;
        border: 1px solid #002739;
        margin-top: 4px;
    }

        .alert-notification .msg-icon:before {
            height: 6px;
            width: 6px;
            background-color: #002739;
            position: absolute;
            right: -1px;
            top: -3px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
        }

.alert-light {
    color: #818182;
    background: #fefefe;
    border-color: #fdfdfe;
}

.alert-dark {
    color: #1b1e21;
    background: #d6d8d9;
    border-color: #c6c8ca;
}

@media screen and (min-width:768px) {
    .alert {
        padding: .5rem .5rem .588rem 42px;
    }

        .alert .msg-icon, .alert svg {
            left: 10px;
            top: 12px;
        }

    .alert-danger svg {
        margin-left: 2px;
        margin-top: 2px;
    }
}

@media screen and (max-width:767px) {
    .alert {
        padding: .56rem 1rem .253rem 35px;
    }

        .alert .msg-icon, .alert svg {
            left: 7px;
            top: 10px;
        }

        .alert.alert-success svg {
            max-width: 13px;
        }

        .alert.alert-danger svg {
            left: 13px;
            top: 14px;
        }

        .alert.alert-info svg {
            left: 10px;
            top: 10px;
        }

        .alert.alert-notification .msg-icon {
            margin-top: 2px;
        }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 10px;
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.show {
        opacity: 1;
    }

    .tooltip .arrow {
        position: absolute;
        display: block;
        background: #ebebeb;
        transform: rotate(45deg);
        border-radius: 5px;
        z-index: -1;
    }

.bs-tooltip-top-end, .bs-tooltip-top-start {
    padding: 15px 0;
}

    .bs-tooltip-top-end .arrow, .bs-tooltip-top-start .arrow {
        bottom: 10px;
    }

.bs-tooltip-bottom-end, .bs-tooltip-bottom-start {
    padding: 15px 0;
}

    .bs-tooltip-bottom-end .arrow, .bs-tooltip-bottom-start .arrow {
        top: 10px;
    }

.tooltip-inner {
    color: #161616;
    font-size: 10px;
    background-color: #ebebeb;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    line-height: 14px;
    text-align: left;
}

@media screen and (max-width:767px) {
    .tooltip .arrow {
        width: 20px;
        height: 20px;
    }

    .tooltip-inner {
        padding: 20px 20px 35px;
        max-width: 255px;
    }
}

@media screen and (min-width:768px) {
    .tooltip .arrow {
        width: 30px;
        height: 30px;
    }

    .tooltip-inner {
        padding: 25px 32px 50px;
        max-width: 300px;
    }
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded-sm {
    border-radius: .2rem !important;
}

.rounded {
    border-radius: .25rem !important;
}

.rounded-top {
    border-top-left-radius: .25rem !important;
}

.rounded-right, .rounded-top {
    border-top-right-radius: .25rem !important;
}

.rounded-bottom, .rounded-right {
    border-bottom-right-radius: .25rem !important;
}

.rounded-bottom, .rounded-left {
    border-bottom-left-radius: .25rem !important;
}

.rounded-left {
    border-top-left-radius: .25rem !important;
}

.rounded-lg {
    border-radius: .3rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
}

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

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

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

.fixed-top {
    top: 0;
}

.fixed-bottom, .fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    bottom: 0;
}

@supports (position:sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.vw-100 {
    width: 100vw !important;
}

.vh-100 {
    height: 100vh !important;
}

.stretched-link:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media print {
    *, :after, :before {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    blockquote, pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    img, tr {
        page-break-inside: avoid;
    }

    h2, h3, p {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    .container, body {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #002739;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td, .table th {
            background-color: #fff !important;
        }

    .table-bordered td, .table-bordered th {
        border: 1px solid #dee2e6 !important;
    }

    .table-dark {
        color: inherit;
    }

        .table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th {
            border-color: #dee2e6;
        }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6;
    }

    .footer-RHS, .header-search-wrapper, .header-utility-items, .MegaMenu, .order-information, .status-badge {
        display: none !important;
    }

    .logo-block {
        width: 100%;
        text-align: left;
    }

    .order-print-contianer {
        display: table;
        width: 100%;
    }
}

p.root_error {
    color: #b30015;
}

input[type=datetime], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
    width: 100%;
    height: 43px;
    max-width: 450px;
    font-size: 15px;
    border: 0;
    border-bottom: 1px solid #42413d;
    border-radius: 0;
    background-color: #fff;
    padding: 0 10px 0 0;
    color: #002739;
}

    input[type=datetime]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, textarea:focus {
        outline: none;
        border-color: #002739;
    }

textarea {
    padding-top: 10px;
}

.field-wrapper, textarea {
    padding-bottom: 10px;
}

    .field-wrapper .label {
        display: inline-block;
        padding-bottom: 6px;
        font-size: 16px;
        color: #002739;
        font-family: $text_font;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0px;
        margin: 0;
    }

        .field-wrapper .label .requiredSymbol {
            display: none;
        }

    .field-wrapper .input-block {
        display: block;
    }

    .field-wrapper .message-root .root_error {
        font-size: 12px;
        font-family: DMSans-Light;
        line-height: 19px;
        color: #b30015;
        width: 100%;
        text-transform: none;
        margin-top: 3px;
        padding-left: 5px;
        position: relative;
    }

        .field-wrapper .message-root .root_error:before {
            position: absolute;
            left: 0;
            top: 0;
            content: "*";
        }

.message-error {
    font-size: 13px;
    color: #b30015;
    width: 100%;
    text-transform: none;
}

input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:hover {
    box-shadow: inset 0 0 0 1000px #fff;
    -webkit-text-fill-color: #002739;
}

.root-checkbox {
    margin: 0 10px 0 0;
}

.label-checkbox {
    font-family: $header_font;
    font-size: 13px;
    padding-left: 3px;
    padding-top: 1px;
    color: #002739;
}

input[type=checkbox]::-ms-check, input[type=radio]::-ms-check {
    opacity: 0;
}

input[type=checkbox] {
    float: left;
    top: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: 1px solid #42413d;
    border-radius: 2px;
}

    input[type=checkbox]:focus {
        outline: 0;
        box-shadow: none;
        border-color: #42413d;
    }

    input[type=checkbox]:checked {
        border-color: #004f71;
        border-width: 1px;
        background: #004f71;
    }

        input[type=checkbox]:checked + .label-checkbox {
            color: #002739;
            font-family: $header_font;
        }

    input[type=checkbox]:disabled {
        color: #cacbcd;
        border-color: #666660;
        opacity: .2;
        background: #d8d8d8;
    }

        .disabled-mode .icon-checkbox svg, input[type=checkbox]:disabled .icon-checkbox svg {
            stroke: #666660;
        }

.icon-checkbox {
    justify-content: center;
    z-index: auto;
    overflow: hidden;
    position: relative;
    outline: 0;
    border-radius: 2px;
    cursor: pointer;
}

    .icon-checkbox svg {
        stroke: #fff;
        max-width: 14px;
        stroke-width: 3px;
    }

.root-radio {
    margin-right: 10px;
    line-height: 18px;
    display: flex;
    align-items: center;
}

.label-radio {
    font-family: $header_font;
    font-size: 15px;
    color: #002739;
}

input[type=radio] {
    line-height: 13px;
    margin-right: 13px;
    top: 0;
    float: left;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid #42413d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
}

    input[type=radio]:focus {
        outline: 0;
    }

    input[type=radio]:checked {
        border-color: #004f71;
    }

        input[type=radio]:checked + .label-radio {
            color: #002739;
        }

    input[type=radio]:disabled {
        background: #d8d8d8;
        color: #cacbcd;
        border-color: #666660;
        opacity: .2;
    }

        input[type=radio]:disabled:checked:before {
            background: #666660;
        }

select, select.input-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-indent: 0;
    color: #002739;
    background: #fff;
    border: 1px solid #42413d;
    font-size: 15px;
    height: 49px;
    line-height: 25px;
    padding: 7px 33px 5px 18px;
    -webkit-padding-end: 33px;
    -webkit-padding-start: 18px;
    vertical-align: baseline;
    width: 100%;
    max-width: 450px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.select-box-wrapper {
    max-width: 450px;
}

    .select-box-wrapper .field-icons {
        display: inline-block;
        position: relative;
        width: 100%;
    }

        .select-box-wrapper .field-icons .after {
            display: block;
            pointer-events: none;
            width: 100%;
            max-width: 19px;
            color: #002739;
            position: absolute;
            top: 16px;
            right: 12px;
            line-height: 1;
        }

    .select-box-wrapper .icon-root {
        height: 20px;
        width: 20px;
    }

@media screen and (max-width:767px) {
    input[type=radio] {
        height: 24px;
        width: 24px;
    }

        input[type=radio]:checked {
            border-width: 9px;
        }

    .icon-checkbox, input[type=checkbox] {
        height: 25px;
        width: 25px;
    }
}

@media screen and (min-width:768px) {
    input[type=radio] {
        height: 16px;
        width: 16px;
    }

        input[type=radio]:checked {
            border-width: 6px;
        }

    .icon-checkbox, input[type=checkbox] {
        height: 16px;
        width: 16px;
    }
}

.slick-next, .slick-prev {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    border: none;
    text-align: center;
    z-index: 9;
}

    .slick-next, .slick-next:focus, .slick-next:hover, .slick-prev, .slick-prev:focus, .slick-prev:hover {
        background: transparent;
        color: transparent;
        outline: none;
    }

        .slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
            opacity: 1;
        }

        .slick-next.slick-disabled, .slick-prev.slick-disabled {
            opacity: 0;
            pointer-events: none;
        }

        .slick-next:before, .slick-prev:before {
            font-size: 20px;
            line-height: 1;
            color: #fff;
            opacity: .75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

.slick-prev {
    left: 36px;
}

.slick-next {
    right: 36px;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        padding: 0;
        cursor: pointer;
        margin: 0 10px;
    }

        .slick-dots li:first-child {
            margin-left: 0;
        }

        .slick-dots li:last-child {
            margin-right: 0;
        }

        .slick-dots li.slick-active button:after {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
        }

        .slick-dots li button {
            background-color: transparent;
            box-shadow: none;
            border: 0;
            display: block;
            height: 10px;
            width: 10px;
            outline: none;
            line-height: 0;
            font-size: 0;
            color: transparent;
            margin: 0;
            padding: 0;
        }

            .slick-dots li button:after {
                content: "";
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle fill='none' stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-size: 93%;
                background-position: 50%;
                width: 8px;
                height: 8px;
                display: block;
            }

            .slick-dots li button:hover {
                outline: none;
            }

                .slick-dots li button:hover:after {
                    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
                }

                .slick-dots li button:hover:before {
                    opacity: 1;
                }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

    .slick-slider .slick-list, .slick-slider .slick-track {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:after, .slick-track:before {
        content: "";
        display: table;
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.row-contained-1tt .slider-root-3uF .slick-dots li {
    position: relative;
    display: inline-block;
    padding: 0;
    cursor: pointer;
    margin: 0 11px;
    height: 7px;
    width: 7px;
}

    .row-contained-1tt .slider-root-3uF .slick-dots li:first-child {
        margin-left: 0;
    }

    .row-contained-1tt .slider-root-3uF .slick-dots li:last-child {
        margin-right: 0;
    }

    .row-contained-1tt .slider-root-3uF .slick-dots li.slick-active button:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
    }

    .row-contained-1tt .slider-root-3uF .slick-dots li button {
        background-color: transparent;
        box-shadow: none;
        border: 0;
        display: block;
        height: 10px;
        width: 10px;
        outline: none;
        line-height: 0;
        font-size: 0;
        color: transparent;
        margin: 0;
        padding: 0;
    }

        .row-contained-1tt .slider-root-3uF .slick-dots li button:after {
            content: "";
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle fill='none' stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 93%;
            background-position: 50%;
            width: 8px;
            height: 8px;
            display: block;
        }

        .row-contained-1tt .slider-root-3uF .slick-dots li button:hover {
            outline: none;
        }

            .row-contained-1tt .slider-root-3uF .slick-dots li button:hover:after {
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
            }

            .row-contained-1tt .slider-root-3uF .slick-dots li button:hover:before {
                opacity: 1;
            }

@media (hover:none) {
    .slick-dots li button:after {
        content: "";
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle fill='none' stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50%;
        width: 7px;
        height: 7px;
        display: block;
    }

    .slick-dots li:hover button:after, .slick-dots li button:hover:after {
        content: "";
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle fill='none' stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50%;
        width: 7px;
        height: 7px;
        display: block;
        margin: 0;
    }

    .slick-dots li.slick-active button:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Ccircle stroke='%23000' class='cls-1' cx='3.5' cy='3.5' r='3'/%3E%3C/svg%3E");
        background-size: contain;
        margin: 0;
    }
}

.dropdown, .dropleft, .dropright, .dropup {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    font-size: 1rem;
    color: #002739;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem;
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem;
}

.dropright .dropdown-toggle:after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem;
}

.dropleft .dropdown-toggle:before {
    vertical-align: 0;
}

.dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top] {
    right: auto;
    bottom: auto;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem 8px;
    clear: both;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #002739;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
}

    .dropdown-item.active, .dropdown-item:active {
        font-family: inherit;
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #6c757d;
        pointer-events: none;
        background-color: transparent;
    }

    .dropdown-item:hover {
        color: #002739;
        background: #f6f6f6;
    }

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #212529;
}

.page-overlay .menu-item.level-1, .page-overlay .menu-item.level-1 .levelTop {
    pointer-events: none;
}

header .dropdown .dropdown-menu {
    background: #fff;
    border: 0;
    border-radius: 0;
    margin-left: -82.5px;
    min-width: 185px;
    padding: 15px 10px 10px;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.11);
    margin-top: 21px;
    width: 100%;
}

    header .dropdown .dropdown-menu:after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border-bottom: 11px solid #fff;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
    }

header .dropdown button {
    border: 0;
    margin: 0;
    line-height: 1;
    min-width: 0;
    padding: 0;
}

header .dropdown .dropdown-item {
    font-family: DMSans-Light;
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 8px 4px;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    word-break: break-word;
    white-space: pre-wrap;
}

    header .dropdown .dropdown-item svg {
        min-width: 18px;
        margin-right: 11px;
    }

    header .dropdown .dropdown-item:hover {
        background: transparent;
    }

    header .dropdown .dropdown-item.no-flag {
        padding-left: 33px;
    }

header .store-select-close svg {
    display: block;
}

@media screen and (min-width:768px) {
    header .store-select-close {
        cursor: pointer;
        margin-left: auto;
        height: 8px;
        width: 8px;
        position: absolute;
        top: 56px;
        right: -73px;
        z-index: 9999;
    }
}

.agreement-checkbox .label-checkbox {
    color: #fff;
    padding-left: 11px;
    font-family: DMSans-Light;
}

    .agreement-checkbox .label-checkbox span {
        margin-right: 5px;
    }

.agreement-checkbox input[type=checkbox] {
    border-radius: 0;
    border-color: #fff;
    height: 21px;
    width: 21px;
}

    .agreement-checkbox input[type=checkbox]:checked {
        background: transparent;
    }

        .agreement-checkbox input[type=checkbox]:checked + .label-checkbox {
            color: #fff;
            font-family: DMSans-Light;
        }

.agreement-checkbox .icon-checkbox {
    height: 21px;
    width: 21px;
}

.footer-container .footer-subscription-wrapper .field-wrapper .label {
    color: #fff;
    left: auto;
    font-family: $text_font;
    letter-spacing: 1px;
    padding: 0;
    margin: 0;
}

.footer-accordion-heading, .footer-contact-heading {
    font-weight: 400;
}

footer.footer-container a {
    color: #002739;
}

    footer.footer-container a.privacy-link {
        color: #fff;
        padding: 0 0 2px;
        font-size: 13px;
        line-height: 20px;
        border-bottom: 1px solid #fff;
    }

footer .footer-top-heading {
    font-weight: 400;
}

footer .footer-subscription-wrapper .field-wrapper input {
    color: #fff;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-color: #fff;
    max-width: 100%;
    padding-right: 50px;
}

    footer .footer-subscription-wrapper .field-wrapper input:-webkit-autofill, footer .footer-subscription-wrapper .field-wrapper input:-webkit-autofill:focus, footer .footer-subscription-wrapper .field-wrapper input:-webkit-autofill:hover {
        box-shadow: inset 0 0 0 1000px #002739;
        -webkit-text-fill-color: #fff;
    }

footer .footer-subscription-wrapper .field-wrapper .message-root .root_error {
    color: #fff;
    margin-top: 7px;
}

footer .footer-subscription-wrapper .root_error {
    font-size: 12px;
    font-family: DMSans-Light;
    line-height: 19px;
    color: #b30015;
    width: 100%;
    text-transform: none;
    color: #fff;
    margin-top: 7px;
}

footer .footer-subscription-wrapper .alert {
    margin: 15px 0 0;
    padding-left: 32px;
    color: #ffe07a;
}

    footer .footer-subscription-wrapper .alert .apollo-error {
        color: #ffe07a;
    }

    footer .footer-subscription-wrapper .alert.alert-success svg {
        stroke: #ffe07a;
        color: #ffe07a;
    }

    footer .footer-subscription-wrapper .alert svg {
        left: 0;
    }

        footer .footer-subscription-wrapper .alert svg path {
            fill: #ffe07a;
        }

.footer-container .footer-content-wrapper {
    padding-top: 5.1%;
    margin-top: 5.1%;
}

    .footer-container .footer-content-wrapper:before {
        content: "";
        display: block;
        position: relative;
        height:60px;
        background:#002739;
    }

@media screen and (max-width:413px) {
    footer.footer-container .footer-content-wrapper:before {
        bottom: -8px;
    }
}

@media screen and (max-width:767px) {
    .home-cms-page footer {
        margin-top: -6.8%;
    }

}

@media screen and (min-width:768px) {
    .home-cms-page footer {
        margin-top: -6.8%;
    }

    .subscription-content {
        padding-bottom: 24px;
    }

   
}

.header-search-wrapper .autocomplete-root {
    background: #fff;
    box-shadow: none;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.header-search-wrapper .search-message {
    margin: 0 auto;
    max-width: 1360px;
    width: 100%;
}

.header-search-wrapper .suggestions {
    padding: 0 20px 20px;
}

.header-search-wrapper .searchbar .autocomplete {
    margin: 0 -1px;
    width: calc(100% + 2px);
}

.header-search-wrapper .search-result-link {
    background: transparent;
    color: #002739;
    text-decoration: none;
    font-family: $text_font;
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 3px;
    letter-spacing: 1.05px;
    border: 0;
    border-bottom: 1px solid #002739;
    text-transform: capitalize;
    display: table;
    margin: 0 auto;
}

.header-search-wrapper .suggestions ul li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

    .header-search-wrapper .suggestions ul li a {
        padding: 0;
        grid-template-columns: 50px 1fr 80px;
        gap: 0;
        grid-column-gap: 15px;
    }

    .header-search-wrapper .suggestions ul li .price {
        letter-spacing: .5px;
        font-size: 16px;
        line-height: 23px;
    }

    .header-search-wrapper .suggestions ul li .old-price {
        color: #898989;
    }

.header-search-wrapper .suggestions .autocomplete {
    grid-template-columns: 70px 1fr;
}

.header-search-wrapper .searchbar .search-ico-wrap {
    background: transparent;
    line-height: 1;
    height: 26px;
    margin: 0;
    padding: 0;
}

.header-search-wrapper .searchbar .container {
    max-width: 100%;
}

.header-search-wrapper .searchbar .root {
    padding: 0;
    overflow: hidden;
    height: 0;
    z-index: -1;
    position: absolute;
    right: 0;
}

.header-search-wrapper .searchbar .root-open {
    height: auto;
    z-index: 2;
    right: 0;
    margin-top: 5px;
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0,0,0,.2);
    transition: all .3s ease;
    padding: 0;
    max-width: 400px;
}

.header-search-wrapper .searchbar .autocomplete-root {
    border: 1px solid rgba(0,0,0,.2);
    border-top: 0;
}

.header-search-wrapper .searchbar .form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
    margin: 0;
}

.header-search-wrapper .searchbar .heading {
    text-align: left;
    font-weight: 400;
    border-bottom: 1px solid rgba(0,0,0,.3);
    font-family: DMSans-SemiBold;
}

.header-search-wrapper .searchbar .search {
    padding: 10px 20px 15px;
    width: 100%;
}

.header-search-wrapper .searchbar .search-field-input {
    width: 100%;
    height: 43px;
    max-width: 100%;
    font-size: 15px;
    border: 0;
    border-bottom: 1px solid #42413d;
    border-radius: 0;
    background-color: #fff;
    padding: 0 30px 0 23px;
    color: #002739;
}

    .header-search-wrapper .searchbar .search-field-input:focus {
        outline: none;
        border-color: #002739;
    }

.header-search-wrapper .searchbar .search-close {
    bottom: 30px;
    margin: 0;
    right: 20px;
    height: 16px;
    padding: 0;
    width: 16px;
}

    .header-search-wrapper .searchbar .search-close svg {
        stroke: #002739;
        display: block;
    }

.header-search-wrapper .searchbar .inner-search-icon {
    bottom: 30px;
    height: 16px;
    left: 20px;
    width: 16px;
}

    .header-search-wrapper .searchbar .inner-search-icon svg {
        display: block;
    }

.header-search-wrapper .searchbar .search-icon:after {
    display: none;
}

.header-search-wrapper .searchbar .suggests-root .image {
    background: transparent;
}

.header-search-wrapper .searchbar .suggests-root .name {
    color: #002739;
    font-family: DMSans-SemiBold;
    letter-spacing: .31px;
    text-transform: uppercase;
}

@media (max-width:767px) {
    .header-search-wrapper .suggestions {
        max-height: 300px;
        overflow-y: auto;
    }

    .header-search-wrapper .searchbar .search-close {
        right: 12px;
    }

    .searchbar .suggests-root .name {
        font-size: 15px;
        line-height: 21px;
    }
}

@media screen and (max-width:1023px) {
    .header-search-wrapper .searchbar .root-open {
        width: 100%;
    }

    .header-search-wrapper .searchbar .search-ico-wrap {
        height: 22px;
        width: 24px;
        line-height: 1;
    }

        .header-search-wrapper .searchbar .search-ico-wrap svg {
            height: 18px;
            width: 18px;
        }
}

@media (max-width:812px) and (orientation:landscape) {
    .header-search-wrapper .suggestions {
        max-height: 180px;
        overflow-y: auto;
    }
}

@media screen and (min-width:768px) {
    .searchbar .suggests-root .name {
        font-size: 16px;
        line-height: 20px;
    }
}

@media screen and (min-width:1024px) {
    .header-search-wrapper {
        padding-top: 4px;
    }

        .header-search-wrapper .searchbar .root-open {
            width: 400px;
        }

        .header-search-wrapper .searchbar .search-icon {
            display: block;
        }

            .header-search-wrapper .search bar .search-icon.open .sr-only {
                font-family: DMSans-SemiBold;
                letter-spacing: .5px;
            }

        .header-search-wrapper .searchbar .search-ico-wrap {
            width: auto;
            height: auto;
            display: flex;
            align-items: flex-start;
            line-height: 16px;
            padding: 3px 2px 6px;
        }

            .header-search-wrapper .searchbar .search-ico-wrap svg {
                width: 9px;
                height: 9px;
                margin-right: 9px;
                vertical-align: top;
            }

            .header-search-wrapper .searchbar .search-ico-wrap .sr-only {
                position: relative;
                width: auto;
                height: auto;
                overflow: initial;
                clip: inherit;
                font-family: DMSans-Light;
                font-size: 14px;
                line-height: 12px;
                letter-spacing: .06em;
                display: block;
            }
}

header.page-header .account-login-form .forgot-password-link {
    padding: 0 0 3px;
    border-bottom: 1px solid #002739;
    color: #002739;
    font-weight: 400;
    letter-spacing: normal;
    font-family: $text_font;
    font-size: 16px;
    display: initial;
}

.prices .sale-price {
    font-weight: 400;
}

.productName {
    text-transform: uppercase;
}

.productsList {
    display: grid;
    grid-row-gap: 35px;
    grid-auto-flow: dense;
}

    .productsList:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: "";
        clear: both;
        height: 0;
    }

    .productsList .btn {
        min-width: 0;
        max-width: 214px;
        width: 100%;
    }

.category-promo {
    position: relative;
}

.category-promo-lhs {
    width: 100% !important;
}

    .category-promo-lhs figure > div, .category-promo-lhs img {
        width: 100%;
    }

.category-promo-rhs {
    left: 0;
    padding: 0 10px;
    position: absolute;
    width: 100% !important;
}

.category-promo h2 {
    font-size: 25px;
    line-height: 34px;
}

.category-promo [class^=text-root] {
    display: block;
}

.productImageBlock {
    position: relative;
}

    .productImageBlock .add-to-cart {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
    }

        .productImageBlock .add-to-cart .btn-primary {
            border-color: transparent;
            width: 100%;
        }

.category-header .category-title {
    margin: 0;
}

.selected-items-clear-all {
    border-bottom: 1px solid #002739;
}

.category-page-wrapper.filter-active .tool-bar .btn-filter {
    border-color: #002739;
}

.category-page-wrapper .tool-bar {
    display: flex;
}

    .category-page-wrapper .tool-bar .plp-action-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
        border-radius: 2px;
        background: #fff;
        color: #002739;
        font-size: 13px;
        letter-spacing: normal;
        vertical-align: middle;
        min-width: 0;
        padding: 0;
    }

    .category-page-wrapper .tool-bar .active-sort-label {
        display: inline-block;
    }

    .category-page-wrapper .tool-bar .btn-filter .plp-btn-txt {
        margin: 0 3px 0 12px;
        line-height: 15px;
    }

    .category-page-wrapper .tool-bar .btn-filter .filter-exp-clps {
        display: none;
    }

    .category-page-wrapper .tool-bar .btn-sort .plp-btn-txt {
        margin: 0 5px 0 0;
    }

        .category-page-wrapper .tool-bar .btn-sort .plp-btn-txt:after {
            display: none;
        }

    .category-page-wrapper .tool-bar .btn-sort .filter-exp-clps {
        margin: 0 0 0 6px;
    }

    .category-page-wrapper .tool-bar .btn-sort .active-sort-label {
        display: none;
    }

.category-page-wrapper .dropdown-menu.show {
    background: #fff;
    border: 0;
    width: 100%;
    padding: 10px 25px;
}

.category-page-wrapper .filter-body ul li .btn {
    min-width: 0;
    border: 0;
}

.productName-link {
    color: #002739;
    font-family: DMSans-SemiBold;
    letter-spacing: .31px;
}

.subtitle {
    font-family: DMSans-Light;
    letter-spacing: .29px;
    color: #002739;
    font-size: 15px;
    margin-bottom: 6px;
}

.product-details .productPrice {
    padding: 3px 0 0;
}

    .product-details .productPrice .original-price {
        margin-right: 10px;
    }

    .product-details .productPrice .product-size {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: .24px;
        color: #002739;
        margin-left: 10px;
    }

.product-details .product-list-variants {
    width: 100%;
    display: table;
    margin-top: 3px;
}

    .product-details .product-list-variants .variant-options .variant-option {
        border: none;
        width: auto;
        height: auto;
        margin: 0 8px 5px 0;
        min-height: inherit;
        padding-left: 0;
        padding-top: 5px;
        position: relative;
    }

        .product-details .product-list-variants .variant-options .variant-option .swatch-data {
            margin: 0;
            font-size: 13px;
            line-height: 16px;
            letter-spacing: .24px;
            color: #002739;
            opacity: .5;
        }

        .product-details .product-list-variants .variant-options .variant-option.selected .swatch-data {
            color: #002739;
            opacity: 1;
        }

        .product-details .product-list-variants .variant-options .variant-option.notavailable, .product-details .product-list-variants .variant-options .variant-option.oos {
            opacity: 1;
        }

            .product-details .product-list-variants .variant-options .variant-option.notavailable .cross-line, .product-details .product-list-variants .variant-options .variant-option.oos .cross-line {
                width: 100%;
                -webkit-transform: translateY(-25px) translateX(2px) rotate(13deg);
                -moz-transform: translateY(-25px) translateX(2px) rotate(13deg);
                -o-transform: translateY(-25px) translateX(2px) rotate(13deg);
                -ms-transform: translateY(-25px) translateX(2px) rotate(13deg);
                transform: translateY(-25px) translateX(2px) rotate(13deg);
                opacity: .4;
                border-color: #002739;
            }

            .product-details .product-list-variants .variant-options .variant-option.notavailable.selected .cross-line, .product-details .product-list-variants .variant-options .variant-option.oos.selected .cross-line {
                opacity: 1;
            }

    .product-details .product-list-variants .variant-options .more-options {
        display: inline-block;
    }

.product-details .notavailable .cross-line {
    border-width: 1px;
    height: 35px;
}

.product-item-slider .product-details .product-list-variants {
    margin-bottom: 10px;
}

.product-item-slider .sale-price {
    font-weight: 400;
}

.product-item .product-details .productPrice, .productItem .product-details .productPrice {
    letter-spacing: .5px;
    clear: left;
}

.product-item .product-details .product-size, .productItem .product-details .product-size {
    padding-left: 0;
    top: 0;
}

    .product-item .product-details .product-size:after, .productItem .product-details .product-size:after {
        display: none;
    }

.load-more-button {
    text-align: center;
}

    .load-more-button .btn-link {
        padding-top: 0;
        font-family: $text_font;
        text-transform: capitalize;
    }

    .load-more-button .loading-container {
        margin: 0;
    }

.pb-products [class^=item-name] {
    clear: both;
    color: #002739;
    display: block;
    font-family: DMSans-SemiBold;
    letter-spacing: .31px;
    margin: 0;
    min-height: 0;
    text-transform: uppercase;
}

.pb-products .old-price, .pb-products .original-price, .pb-products .sale-price {
    font-family: $text_font;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: .5px;
}

.pb-products [class^=item-root] {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-bottom: 60px;
}

    .pb-products [class^=item-root] .btn {
        position: absolute;
        bottom: 0;
        left: 0;
        min-width: 0;
        max-width: 214px;
        width: 100%;
        order: 2;
    }

    .pb-products [class^=item-root] .add-to-cart {
        display: flex;
        flex-flow: wrap;
    }

        .pb-products [class^=item-root] .add-to-cart .alert {
            order: 1;
        }

    .pb-products [class^=item-root] .alert {
        padding: 0 0 5px;
        display: flex;
        margin: 0;
        line-height: normal;
    }

        .pb-products [class^=item-root] .alert p {
            margin: 0;
        }

.no-result-found-recommendations .productItem .add-to-cart-btn .btn {
    min-width: 0;
    max-width: 214px;
}

@media screen and (max-width:413px) {
    .product-details [data-bv-show^=inline_rating] {
        float: left;
    }

    .category-page-wrapper div.product-listing-page {
        padding-left: 0;
        padding-right: 0;
    }

    .category-page-wrapper ul.productsList .productsList {
        grid-column-gap: 4%;
    }

    .category-page-wrapper ul.productsList .productItem .btn, [class^=item-root] .btn {
        padding: .5rem .2rem .41rem;
        font-size: 12px;
        letter-spacing: 1.25px;
    }

    [class^=item-root] [class^=products-galleryItems] {
        grid-column-gap: 4%;
    }
}

@media screen and (max-width:767px) {
    .productItem .add-to-cart-btn button.btn {
        left: 0;
    }

    .description-listing {
        margin-top: 20px;
    }

    .productsList {
        grid-template-columns: 1fr 1fr;
    }

        .productsList .product-type {
            color: #002739;
            font-size: 11px;
            line-height: 15px;
        }

    .category-header .tool-bar {
        clear: both;
        align-items: center;
        margin-bottom: 24px;
        justify-content: space-between;
    }

    .category-page-wrapper {
        padding: 10px 0 72px;
    }

        .category-page-wrapper .tool-bar .btn-sort.plp-action-btn {
            padding: 8px 6px;
            width: 100%;
            max-width: 100%;
            min-height: 44px;
        }

            .category-page-wrapper .tool-bar .btn-sort.plp-action-btn svg:last-child {
                width: 18px;
                height: 18px;
                -ms-transition: transform .3s ease-out;
                -moz-transition: transform .3s ease-out;
                -webkit-transition: transform .3s ease-out;
                transition: transform .3s ease-out;
            }

        .category-page-wrapper .tool-bar .btn-sort .plp-btn-txt {
            margin: 0 9px 0 10px;
            font-size: 14px;
            letter-spacing: 1.27px;
            line-height: 18px;
        }

        .category-page-wrapper .tool-bar .btn-sort .active-sort-label {
            display: none;
        }

        .category-page-wrapper .tool-bar .show .btn-sort svg:last-child {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
            -ms-transition: ransform .3s ease-out;
            -moz-transition: ransform .3s ease-out;
            -webkit-transition: ransform .3s ease-out;
            transition: ransform .3s ease-out;
        }

        .category-page-wrapper .tool-bar .sort-dropdown {
            width: 48.5%;
        }

        .category-page-wrapper .tool-bar .btn-filter.plp-action-btn {
            padding: 8px 15px 8px 20px;
            max-width: 100%;
            min-height: 44px;
            width: 48.5%;
        }

        .category-page-wrapper .tool-bar .btn-filter .filter-count, .category-page-wrapper .tool-bar .btn-filter .plp-btn-txt {
            font-size: 14px;
            letter-spacing: 1.27px;
        }

        .category-page-wrapper .tool-bar .plp-action-btn {
            border: 1px solid #002739;
            border-radius: 2px;
            text-align: left;
        }

            .category-page-wrapper .tool-bar .plp-action-btn .filter-exp-clps svg {
                width: 15px;
                height: 15px;
            }

        .category-page-wrapper .plp-promo img {
            min-height: 178px;
            object-fit: cover;
        }

        .category-page-wrapper .layered-navigations .filter-apply .btn-clear-all {
            max-height: 100%;
        }

        .category-page-wrapper .layered-navigations .filter-body {
            padding-left: 30px;
            padding-right: 30px;
        }

            .category-page-wrapper .layered-navigations .filter-body .accordion .item-sub-cat .filter-item label {
                font-size: 15px;
            }

        .category-page-wrapper .layered-navigations.no-layered-navigations .filter-mob {
            padding-left: 30px;
            padding-right: 30px;
        }

        .category-page-wrapper .layered-navigations .filter-mob-title h2 {
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            font-family: DMSans-SemiBold;
            letter-spacing: 1.27px;
        }

        .category-page-wrapper .layered-navigations .filter-mob-close {
            right: 30px;
        }

            .category-page-wrapper .layered-navigations .filter-mob-close svg {
                stroke-width: 1;
                width: 18px;
                height: 18px;
            }

        .category-page-wrapper .category-title {
            text-align: center;
        }

        .category-page-wrapper .filter-body .accordion button {
            margin-bottom: 16px;
        }

            .category-page-wrapper .filter-body .accordion button.expanded {
                margin-bottom: 0;
            }

            .category-page-wrapper .filter-body .accordion button svg {
                stroke-width: 1;
                width: 20px;
            }

    .productName {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .productName-link {
        font-size: 15px;
        line-height: 21px;
    }

    .product-details .productPrice .product-size {
        font-size: 12px;
        line-height: 24.75px;
        letter-spacing: .27px;
        margin-left: 14px;
        padding-top: 3px;
    }

    .product-details .product-list-variants .variant-options .variant-option.oos .cross-line {
        -webkit-transform: translateY(-28px) translateX(2px) rotate(13deg);
        -moz-transform: translateY(-28px) translateX(2px) rotate(13deg);
        -o-transform: translateY(-28px) translateX(2px) rotate(13deg);
        -ms-transform: translateY(-28px) translateX(2px) rotate(13deg);
        transform: translateY(-28px) translateX(2px) rotate(13deg);
    }

    .layered-navigations .filter-apply .btn {
        min-width: 0;
        max-width: 214px;
    }

    .layered-navigations .filter-body .filter-apply {
        background: #fff;
    }

    .pb-products [class^=item-name] {
        font-size: 15px;
        line-height: 21px;
        margin-bottom: 5px;
    }

    .pb-products [class^=products-galleryItems] {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 7%;
        grid-row-gap: 24px;
        grid-auto-flow: dense;
        padding: 0 0 23px;
    }

    .no-result-found {
        padding: 10px 0 23px;
    }

    .no-result-found-recommendations {
        padding: 0 30px 50px;
    }

        .no-result-found-recommendations [class^=products-root] {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 7%;
            grid-row-gap: 24px;
            grid-auto-flow: dense;
            padding: 0 0 23px;
        }
}

@media screen and (max-width:767px) and (prefers-reduced-motion:reduce) {
    .category-page-wrapper .tool-bar .btn-sort.plp-action-btn svg:last-child, .category-page-wrapper .tool-bar .show .btn-sort svg:last-child {
        transition: none;
    }
}

@media screen and (min-width:768px) {
    .category-page-wrapper.container-width {
        padding-top: 34px;
    }

    .productsList {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .product-two-column .productsList {
        grid-template-columns: 1fr 1fr;
    }

    .product-three-column .productsList {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .product-four-column .productsList {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .product-five-column .productsList {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .productItem .add-to-cart-btn button.btn {
        left: 20px;
        min-width: 0;
        max-width: 214px;
        width: calc(100% - 40px);
    }

    .productsList.two-column {
        grid-template-columns: 1fr 1fr;
    }

    .productsList.three-column {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .productsList.four-column {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .productsList.five-column {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .productName {
        margin-bottom: 5px;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: normal;
    }

    .productImageBlock .add-to-cart .btn-primary {
        border-color: transparent;
        width: 100%;
    }

    .category-header {
        padding-bottom: 40px;
        padding-left: 2.3%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

        .category-header .category-title {
            font-size: 44px;
            line-height: 52px;
        }

    .category-page-wrapper {
        padding-top: 6px;
    }

        .category-page-wrapper .breadcrumb {
            margin: 0;
            padding: 10px 0 18px;
        }

        .category-page-wrapper .tool-bar .btn-filter.plp-action-btn {
            margin: 0;
            width: auto;
        }

        .category-page-wrapper .tool-bar .btn-filter .filter-count, .category-page-wrapper .tool-bar .btn-filter .plp-btn-txt {
            font-family: inherit;
            font-size: 16px;
            line-height: 24px;
        }

        .category-page-wrapper .tool-bar .btn-filter svg:first-child {
            vertical-align: -webkit-baseline-middle;
        }

        .category-page-wrapper .tool-bar .btn-sort svg:first-child {
            display: none;
        }

        .category-page-wrapper .tool-bar .btn-sort svg:last-child {
            width: 19px;
            height: 19px;
            -ms-transition: transform .3s ease-out;
            -moz-transition: transform .3s ease-out;
            -webkit-transition: transform .3s ease-out;
            transition: transform .3s ease-out;
        }

        .category-page-wrapper .tool-bar .btn-sort .plp-btn-txt:after {
            content: ":";
        }

        .category-page-wrapper .tool-bar .btn-sort .active-sort-label, .category-page-wrapper .tool-bar .btn-sort .plp-btn-txt {
            font-family: inherit;
            font-size: 16px;
            line-height: 24px;
            margin-right: 4px;
            text-transform: uppercase;
        }

        .category-page-wrapper .tool-bar .btn-sort .active-sort-label {
            color: #707379;
            vertical-align: top;
            margin-right: 12px;
        }

        .category-page-wrapper .tool-bar .show .btn-sort svg:last-child {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
            -ms-transition: transform .3s ease-out;
            -moz-transition: transform .3s ease-out;
            -webkit-transition: transform .3s ease-out;
            transition: transform .3s ease-out;
        }

    .plp-promo h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .plp-promo h4 {
        font-size: 16px;
        line-height: 18px;
    }

    .plp-promo .btn {
        margin-top: 10px;
    }

    .plp-promo .btn-min-width .btn-primary {
        min-width: 150px;
    }

    .category-header .tool-bar .sort-dropdown {
        display: inline-block;
        margin: 0 0 0 30px;
    }

        .category-header .tool-bar .sort-dropdown .dropdown-item {
            font-family: $header_font;
            padding-left: 0;
            padding-right: 0;
        }

            .category-header .tool-bar .sort-dropdown .dropdown-item:hover {
                background: none;
                text-decoration: underline;
            }

    .layered-navigations .plp-sidebar-title {
        display: block;
        border-bottom: 1px solid #c1c1c1;
        font-size: 14px;
        margin: 0 0 2px;
        padding: 0 0 7px;
        width: 100%;
        font-weight: 400;
        font-family: DMSans-SemiBold;
        letter-spacing: 1.27px;
        text-transform: uppercase;
    }

    .category-promo h2 {
        padding-top: 33px;
        padding-bottom: 2px;
    }

    .pb-products [class^=item-name], .productName-link {
        font-size: 16px;
        line-height: 20px;
    }

    .pb-products [class^=item-root] {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pb-products [class^=products-galleryItems] {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 3%;
        grid-row-gap: 25px;
        grid-auto-flow: dense;
        padding: 0 0 5px;
    }

    .no-result-found {
        padding-top: 34px;
    }

    .no-result-found-recommendations {
        flex: 1 1 0%;
        max-width: 1260px;
        padding: 0 20px 56px;
    }

        .no-result-found-recommendations [class^=products-root] {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-column-gap: 3%;
            grid-row-gap: 25px;
            grid-auto-flow: dense;
            padding: 0 0 5px;
        }

        .no-result-found-recommendations .productItem {
            padding-left: 20px;
            padding-right: 20px;
        }

            .no-result-found-recommendations .productItem .add-to-cart-btn .btn {
                max-width: 214px;
            }
}

@media screen and (min-width:768px) and (prefers-reduced-motion:reduce) {
    .category-page-wrapper .tool-bar .btn-sort svg:last-child, .category-page-wrapper .tool-bar .show .btn-sort svg:last-child {
        transition: none;
    }
}

@media screen and (min-width:1024px) {
    .category-promo-rhs h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .category-promo-rhs h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .pb-products [class^=products-galleryItems] {
        grid-column-gap: 7.5%;
        grid-row-gap: 62px;
    }

    .no-result-found-recommendations .productItem, .pb-products [class^=item-root] {
        padding-left: 25px;
        padding-right: 25px;
    }

    .no-result-found-recommendations [class^=products-root] {
        grid-column-gap: 7.5%;
        grid-row-gap: 62px;
    }
}

.add-to-wishlist-icon {
    border-bottom: 1px solid #002739;
}

.gift-card-section {
    max-width: 436px;
    width: 100%;
}

    .gift-card-section input[type=datetime], .gift-card-section input[type=email], .gift-card-section input[type=number], .gift-card-section input[type=password], .gift-card-section input[type=search], .gift-card-section input[type=tel], .gift-card-section input[type=text], .gift-card-section input[type=url], .gift-card-section textarea {
        max-width: inherit;
    }

    .gift-card-section .btn {
        width: 100%;
    }

    .gift-card-section textarea {
        height: 100px;
    }

    .gift-card-section .min-amount {
        font-family: DMSans-Light;
        font-size: 13px;
        color: #004862;
        line-height: 20px;
        display: block;
        margin-bottom: 10px;
    }

    .gift-card-section .alert, .gift-card-section .alert p {
        margin-bottom: 0;
    }

.product-info-rating .bv_numReviews_component_container {
    cursor: pointer !important;
}

    .product-info-rating .bv_numReviews_component_container:hover, .review-wrapper .bv-content-list-container .bv-content-placeholder .bv-text-link:hover {
        text-decoration: underline !important;
    }

@media screen and (max-width:767px) {
    .gift-card-section input[type=datetime], .gift-card-section input[type=email], .gift-card-section input[type=number], .gift-card-section input[type=password], .gift-card-section input[type=search], .gift-card-section input[type=tel], .gift-card-section input[type=text], .gift-card-section input[type=url], .gift-card-section textarea {
        font-size: 16px;
    }

    .gift-card-section .gift-field-column {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

        .gift-card-section .gift-field-column .field-wrapper {
            width: 46.4%;
        }
}

@media screen and (min-width:768px) {
    .gift-card-section .gift-field-column .field-wrapper {
        width: 47.4%;
    }

    .pdp-info-wrap.gift-product {
        margin-bottom: 100px;
    }
}

@media screen and (min-width:1024px) {
    .pdp-info-wrap.gift-product {
        margin-bottom: 200px;
    }
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.modal-dialog .modal-footer .btn {
    min-width: 0;
}

.minicart-wrapper .coupon-form .error-msg, .minicart-wrapper .coupon-form .error-msg .alert.alert-danger {
    margin: 0;
}

.minicart-wrapper .price-variant-wrap {
    order: 1;
    display: flex;
}

.minicart-wrapper .minicart {
    border: 0;
    height: 100%;
    max-width: 415px;
    background: #fff;
    padding: 0;
}

    .minicart-wrapper .minicart .coupon-form {
        margin: 0;
    }

    .minicart-wrapper .minicart .cart-item {
        padding: 7px 29px;
    }

        .minicart-wrapper .minicart .cart-item:last-child {
            padding-bottom: 0;
        }

            .minicart-wrapper .minicart .cart-item:last-child .cart-item-wrapper.no-samples {
                border: 0;
            }

        .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-price-wrapper {
            float: none;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-options {
            order: 2;
            padding-left: 15px;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-name a {
            font-weight: 400;
            font-size: 16px;
            letter-spacing: .31px;
            font-family: DMSans-Medium;
            color: #002739;
            line-height: 20px;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-actions {
            margin: 0;
        }

            .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-actions .cart-item-edit, .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-actions .cart-item-remove {
                display: none;
            }

        .minicart-wrapper .minicart .cart-item .cart-item-actions .cart-item-action:not(:last-child) {
            margin: 0;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-image {
            min-width: 91px;
            padding: 0;
        }

            .minicart-wrapper .minicart .cart-item .cart-item-image img {
                height: auto;
                width: 91px;
            }

        .minicart-wrapper .minicart .cart-item .cart-item-qty {
            order: 2;
        }

            .minicart-wrapper .minicart .cart-item .cart-item-qty .qty-selector-items .quantity-input {
                font-size: 14px;
                line-height: 20px;
                letter-spacing: .94px;
                font-family: $text_font;
                padding: 0;
                width: 34px;
            }

            .minicart-wrapper .minicart .cart-item .cart-item-qty .qty-selector-items .qty-btn .icon-style {
                display: block;
                font-size: 0;
                background-repeat: no-repeat;
                background-size: contain;
                background-position: 50%;
                position: static;
            }

            .minicart-wrapper .minicart .cart-item .cart-item-qty .qty-selector-items .qty-btn.decrement-btn {
                height: auto;
                width: 11px;
            }

                .minicart-wrapper .minicart .cart-item .cart-item-qty .qty-selector-items .qty-btn.decrement-btn .icon-style {
                    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 1'%3E%3Crect fill='%23161616' width='9' height='1' rx='.45'/%3E%3C/svg%3E");
                }

            .minicart-wrapper .minicart .cart-item .cart-item-qty .qty-selector-items .qty-btn.increment-btn {
                height: auto;
                width: 10px;
            }

                .minicart-wrapper .minicart .cart-item .cart-item-qty .qty-selector-items .qty-btn.increment-btn .icon-style {
                    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9.09'%3E%3Crect fill='%23161616' fill-rule='evenodd' y='4.09' width='9' height='1' rx='.45'/%3E%3Cpath d='M4.95.45v8.24a.45.45 0 01-.44.45h.01a.45.45 0 01-.47-.45V.45A.45.45 0 014.52 0a.45.45 0 01.43.45z'/%3E%3C/svg%3E");
                }

        .minicart-wrapper .minicart .cart-item .cart-item-price-wrapper {
            order: 1;
            margin: 0 0 11px;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-data .cart-item-price {
            letter-spacing: .5px;
            clear: left;
            font-family: $text_font;
            font-size: 16px;
            line-height: inherit;
        }

            .minicart-wrapper .minicart .cart-item .cart-item-data .cart-item-price b {
                font-weight: 400;
            }

        .minicart-wrapper .minicart .cart-item .cart-item-data .cart-item-data-inner.show {
            flex-direction: column;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-options .cart-item-option .label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        .minicart-wrapper .minicart .cart-item .cart-item-options .cart-item-option .values {
            font-size: 13px;
            line-height: 16px;
            letter-spacing: .24px;
            font-family: $text_font-LightItalic;
            font-weight: 400;
        }

    .minicart-wrapper .minicart .cart-item-list-wrapper {
        border: 0;
        overflow: initial;
    }

        .minicart-wrapper .minicart .cart-item-list-wrapper .cart-item-list {
            padding: 10px 0 0;
            overflow: hidden;
            margin: 0;
        }

    .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-name {
        font-weight: 400;
        font-size: 16px;
        letter-spacing: .31px;
        font-family: DMSans-Medium;
        color: #002739;
        line-height: 20px;
        padding: 0 0 8px;
        width: 100%;
    }

    .minicart-wrapper .minicart .cart-item .cart-item-details .cart-item-sku {
        display: none;
    }

    .minicart-wrapper .minicart .qty-selector-items {
        align-items: center;
    }

    .minicart-wrapper .minicart .close-minicart {
        position: relative;
        margin: 0;
        background: transparent;
        top: -2px;
        right: -3px;
    }

        .minicart-wrapper .minicart .close-minicart:after, .minicart-wrapper .minicart .close-minicart:before {
            width: 1px;
            background-color: #002739;
            height: 13px;
            top: 9px;
        }

.minicart-wrapper .minicart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 22px 20px 2px 33px;
}

    .minicart-wrapper .minicart-header .minicart-title {
        position: static;
        margin: 0;
        text-align: left;
    }

        .minicart-wrapper .minicart-header .minicart-title .text {
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            font-family: DMSans-SemiBold;
            letter-spacing: 1.27px;
        }

.coupon-form .collapsible-wrapper {
    background: #f6f3ee;
}

.page-header .minicart-loader {
    left: -2px;
    position: absolute;
    top: -2px;
    z-index: 2;
}

    .page-header .minicart-loader svg {
        display: block;
        width: 25px;
        height: 25px;
    }

.shopping-cart.loading {
    pointer-events: none;
}

    .shopping-cart.loading .cart-lbl {
        opacity: 0;
    }

    .shopping-cart.loading .minicart-loader {
        display: block;
    }

.shopping-cart .minicart-loader {
    display: none;
}

.minicart-wrapper .minicart.loading {
    overflow: hidden;
}

.minicart {
    height: 100%;
}

    .minicart.loading:after {
        background: hsla(0,0%,98.4%,.5);
        content: "";
        height: 200%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 99;
    }

    .minicart.loading .loading-container {
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        margin: 0;
    }

    .minicart .cost-block {
        border-top: 1px solid hsla(0,0%,59.2%,.5);
        padding: 17px 30px 13px;
    }

        .minicart .cost-block .cart-grand-total {
            font-weight: 400;
            font-family: DMSans-SemiBold;
            letter-spacing: 1.27px;
            font-size: 14px;
            line-height: 22px;
            text-transform: uppercase;
        }

        .minicart .cost-block .cart-link-wrapper {
            margin: 18px 0 0;
        }

    .minicart .coupon-form .discount-coupon-form .collapsible-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

        .minicart .coupon-form .discount-coupon-form .collapsible-wrapper button.collapsible-toggle {
            padding-top: 13px;
            padding-bottom: 13px;
            padding-left: 0;
            border: 0;
            margin: 0;
        }

            .minicart .coupon-form .discount-coupon-form .collapsible-wrapper button.collapsible-toggle .collapsible-arrow {
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 5.85'%3E%3Cpath fill='none' stroke-linejoin='round' stroke='%23000' d='M.35.35l5 5 5-5'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-size: 11px;
                background-position: 50%;
            }

        .minicart .coupon-form .discount-coupon-form .collapsible-wrapper .collapsible-content {
            padding-top: 0;
            padding-bottom: 0;
        }

    .minicart .coupon-form .discount-coupon-form .collapsible-header {
        padding: 4px 27px 5px 32px;
    }

    .minicart .coupon-form .discount-coupon-form .applied-coupon-wrapper {
        padding: 17px 30px 40px 25px;
    }

    .minicart .coupon-form .applied-coupon-wrapper .applied-coupon {
        color: #054f70;
        font-family: $header_font;
        font-size: 12px;
    }

        .minicart .coupon-form .applied-coupon-wrapper .applied-coupon svg {
            border: 0;
            stroke: #054f70;
            margin-right: 12px;
            padding: 0;
            width: 15px;
        }

    .minicart .review-cart-link {
        display: none;
    }

    .minicart .cart-item-wrapper {
        border-bottom: 1px solid hsla(0,0%,59.2%,.5);
        padding-bottom: 18px;
    }

    .minicart .cart-item-list-wrapper .cart-item .cart-item-wrapper .cart-item-image {
        float: none;
    }

    .minicart .cart-item-list-wrapper .cart-item .cart-item-wrapper .cart-item-details {
        padding: 11px 0 0 18px;
        -webkit-flex-grow: 1;
        flex-grow: 1;
    }

    .minicart .cart-item-list-wrapper .cart-item .cart-item-wrapper .cart-item-data {
        position: static;
    }

    .minicart .cart-item-list-wrapper .cart-item .cart-item-wrapper .cart-item-data-inner {
        display: flex;
        flex-direction: column;
    }

    .minicart .cart-item-list-wrapper .cart-item .cart-item-wrapper .cart-item-qty .qty-selector-items {
        height: auto;
        margin: 0;
    }

    .minicart .cart-edit-item {
        border-top: 1px solid #eaeaea;
        margin: 0 -20px;
        padding: 20px;
    }

    .minicart .cart-edit-item-wrapper {
        margin: 10px -20px 0;
    }

    .minicart.minicart-open .middle-container {
        overflow: auto;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    .minicart .field-wrapper .label {
        padding-bottom: 6px;
    }

    .minicart .discount-coupon-form .field-wrapper .label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }

    .minicart .coupon-form .promo-text-filed button.btn {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9'%3E%3Cpath d='M12.848 4.07L9.598.245a.727.727 0 00-.983-.095.689.689 0 00-.098.953l2.314 2.723H.696A.686.686 0 000 4.5c0 .373.312.675.696.675h10.135L8.517 7.898c-.232.274-.18.722.098.953.286.238.751.18.983-.095l3.25-3.827c.212-.288.194-.58 0-.858z' fill='%23393838' fill-rule='nonzero'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        border: 0;
        font-size: 0;
        width: 14px;
        height: 10px;
        margin-right: 30px;
        top: 18px;
    }

        .minicart .coupon-form .promo-text-filed button.btn:focus, .minicart .coupon-form .promo-text-filed button.btn:hover {
            background-color: transparent;
            border: transparent;
        }

    .minicart .coupon-form .promo-text-filed .note {
        display: block;
        margin: 7px 0 0;
    }

    .minicart .cart-edit-item-actions .btn {
        min-width: 0;
        width: 50%;
    }

.minicart-bottom {
    overflow-x: hidden;
}

.cart-edit-item-name {
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
}

.cart-edit-item .option-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cart-edit-item .option-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.cart-edit-item .option-title {
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 0;
}

    .cart-edit-item .option-title:after {
        content: ":";
    }

.cart-edit-item .option-button-fashion_color, .cart-edit-item .option-button-fashion_size {
    width: 24px;
    height: 24px;
    padding: 0;
    margin-right: 10px;
}

.cart-edit-item .option-button-active {
    outline: 2px solid #002739;
}

.cart-edit-item-quantity {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

    .cart-edit-item-quantity:not(:first-child) {
        margin: 20px 0 0;
    }

.cart-edit-item-quantity-title {
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 0;
}

.cart-edit-item-quantity .quantity-input {
    max-width: 46px;
    text-align: center;
}

.cart-edit-item-actions button {
    margin-right: 30px;
}

.cart-edit-item button:not(.btn-primary) {
    background: none;
}

.cart-edit-item .cart-edit-item-top {
    border-top: none;
    margin: 0 -20px;
}

    .cart-edit-item .cart-edit-item-top .cart-edit-item-name-wrapper {
        padding: 0 0 20px;
    }

.cart-edit-item .cart-edit-item-actions {
    justify-content: space-between;
}

    .cart-edit-item .cart-edit-item-actions .btn:last-child {
        margin-right: 0;
    }

.minicart .cost-block .collapsible-wrapper {
    background: transparent;
}

.minicart .cost-block .cart-link-wrapper .review-cart-link a {
    border-bottom: 1px solid #002739;
}

.collapse:not(.show) {
    display: none;
}

.hp-hero-banner .btn-primary:hover {
    background: #002739;
}

.hp-hero-banner p {
    font-size: 16px;
}

.hp-hero-banner .btn-secondary:hover {
    background: transparent;
}

.hp-hero-banner .btn {
    font-size: 11px;
    min-width: 214px;
}

.hp-hero-banner.with-no-margin {
    margin-top: 0;
}

.browse-categories .btn-link {
    border: 0;
    font-family: $text_font;
    letter-spacing: 0;
}

    .browse-categories .btn-link:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5.85 10.71'%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' d='M.35 10.35l5-4.99-5-5.01'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        content: "";
        display: inline-block;
        height: 13px;
        margin-left: 7px;
        position: relative;
        top: 2px;
        width: 6px;
    }

.hp-our-offers .use-code {
    font-size: 16px;
    letter-spacing: .5px;
    font-family: $text_font;
}

.hp-our-offers h3 {
    font-size: 25px;
    line-height: 34px;
}

.hp-our-offers .offer-column h2 {
    font-size: 34px;
    line-height: 39px;
}

.featured-products .item-name-1-r {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .31px;
    line-height: 20px;
    font-family: DMSans-Medium;
    color: #002739;
}

.featured-products [class^=item-price] {
    font-family: $text_font;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    margin-top: 3px;
}

.featured-products [class^=item-name] {
    display: block;
}

.featured-products .short-description {
    font-family:DMSans-Light;
    letter-spacing: .29px;
    color: #002739;
    font-size: 15px;
    margin-bottom: 4px;
}

.featured-products [class^=item-images] {
    display: block;
}

.featured-products .slick-slide [class^=item-root] {
    padding: 2px;
}

.elemis-ethos p {
    font-size: 16px;
    line-height: 26px;
}

.elemis-ethos-sub-title {
    position: relative;
}

    .elemis-ethos-sub-title:before {
        background: #002739;
        content: "";
        height: 1px;
        position: absolute;
        left: 0;
    }

.elemis-ethos .buttons-root-1MU button[class] {
    overflow: visible;
}

.elemis-ethos .sourced-from-nature-img img {
    max-width: 120px;
}

.home-best-sellers {
    margin-top: 70px;
    margin-bottom: 80px;
}

    .home-best-sellers .shop-the-collection-title {
        max-width: 1200px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-best-sellers [class^=item-name] {
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: .31px;
        line-height: 20px;
        font-family: DMSans-Medium;
        color: #002739;
        margin: 0 0 4px;
        padding: 0;
    }

    .home-best-sellers [class^=item-price] {
        font-family: $text_font;
        font-size: 16px;
        line-height: 25px;
        letter-spacing: .5px;
        margin-top: 3px;
        clear: left;
    }

    .home-best-sellers [class^=item-name] {
        display: block;
    }

    .home-best-sellers [class^=item-root] {
        padding-bottom: 60px;
        position: relative;
        padding-left: 0;
        padding-right: 0;
    }

        .home-best-sellers [class^=item-root] .add-to-cart-btn .btn {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            order: 2;
        }

        .home-best-sellers [class^=item-root] .add-to-cart-btn .add-to-cart {
            display: flex;
            flex-flow: wrap;
        }

            .home-best-sellers [class^=item-root] .add-to-cart-btn .add-to-cart .alert {
                order: 1;
            }

        .home-best-sellers [class^=item-root] .add-to-cart-btn .alert {
            padding: 0 0 5px;
            display: flex;
            margin: 0;
            line-height: normal;
        }

            .home-best-sellers [class^=item-root] .add-to-cart-btn .alert p {
                margin: 0;
            }

    .home-best-sellers [class^=item-images] {
        margin: 0 0 7px;
    }

    .home-best-sellers .subtitle {
        line-height: 19px;
    }

    .home-best-sellers .related-products {
        max-width: 1320px;
        margin: 0 auto;
        position: relative;
        width: 100%;
    }

        .home-best-sellers .related-products.product-item-slider .slick-track {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .home-best-sellers .related-products .productItem {
            padding-left: 0;
            padding-right: 0;
        }

            .home-best-sellers .related-products .productItem .add-to-cart-btn .btn {
                left: 0;
            }

        .home-best-sellers .related-products .btn {
            min-width: 0;
            max-width: 214px;
            width: 100%;
        }

        .home-best-sellers .related-products .productImg-link {
            display: block;
            padding: 0;
        }

        .home-best-sellers .related-products .slick-slide {
            float: none;
            height: auto;
            width: 100%;
        }

            .home-best-sellers .related-products .slick-slide, .home-best-sellers .related-products .slick-slide > div {
                -webkit-flex-grow: 1;
                flex-grow: 1;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-flex-direction: column;
                -ms-flex-direction: column;
                flex-direction: column;
            }

                .home-best-sellers .related-products .slick-slide .productItem, .home-best-sellers .related-products .slick-slide [class^=item-root] {
                    -webkit-flex-grow: 1;
                    flex-grow: 1;
                }

        .home-best-sellers .related-products .slick-dots {
            margin-top: 20px;
        }

.elemis-everyday-wrapper iframe {
    height: 0;
    display: block;
}

.elemis-everyday-wrapper .olapic .olapic-slider-header {
    height: 0;
}

@media screen and (max-width:413px) {
    .home-cms-page footer {
        margin-top: -11%;
    }

    .browse-categories .btn-link {
        font-size: 22px;
    }
}

.pb-accordion {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width:767px) {
    .show-desktop-only {
        display: none !important;
    }

    .mobile-order-1 {
        order: 1 !important;
    }

    .mobile-order-2 {
        order: 2 !important;
    }

    .home-cms-page .hp-last-block > div:first-child {
        padding-bottom: 10.2%;
    }

    .home-cms-page main.page, .hp-hero-banner {
        min-height: 100vh;
    }

    .hp-hero-banner {
        margin-top: -60px;
    }

        .hp-hero-banner > div:first-child {
            padding-top: 60px;
        }

        .hp-hero-banner .hero-banner-video .banner-wrapper-cAN {
            min-height: 0;
            padding-top: 0;
            display: flex;
            flex-direction: column;
        }

            .hp-hero-banner .hero-banner-video .banner-wrapper-cAN > div:first-child {
                order: 2;
                width: 100%;
            }

            .hp-hero-banner .hero-banner-video .banner-wrapper-cAN > div:last-child {
                order: 1;
                width: 100%;
            }

        .hp-hero-banner .hero-banner-video [id^=jarallax-container] {
            position: relative !important;
            padding-bottom: 57%;
        }

            .hp-hero-banner .hero-banner-video [id^=jarallax-container] [id^=VideoWorker] {
                height: 100% !important;
            }

        .hp-hero-banner .hero-banner-video [class^=banner-posterOverlay] {
            padding-top: 0;
        }

        .hp-hero-banner .hero-banner-video [class^=banner-content] {
            padding: 0;
        }

        .hp-hero-banner .banner-wrapper-cAN {
            min-height: calc(100vh - 60px);
            background-size: 100% !important;
            padding-top: 113.4%;
        }

        .hp-hero-banner .no-banner-mob .banner-wrapper-cAN {
            padding-top: 57.4%;
            min-height: 100%;
        }

        .hp-hero-banner .banner-content-1wb {
            padding-top: 6px;
            padding-left: 1px;
        }

            .hp-hero-banner .banner-content-1wb h1 {
                letter-spacing: 0;
                padding-bottom: 7px;
            }

            .hp-hero-banner .banner-content-1wb p {
                line-height: 26px;
                padding-bottom: 10px;
            }

    .browse-categories > div {
        padding: 63px 0 28px;
        min-height: 798px;
    }

    .browse-categories img {
        min-height: 135px;
    }

    .browse-categories .pagebuilder-column {
        flex-basis: 50%;
        padding-bottom: 33px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .browse-categories h2 {
        padding-bottom: 9px;
    }

    .browse-categories .btn-link {
        font-size: 26px;
        line-height: 34px;
        margin-top: 7px;
    }

    .home-cms-page .hp-top-lhs {
        display: none !important;
    }

    .home-cms-page .hp-top-banner-wrap {
        padding: 0 20px;
    }

    .home-cms-page .hp-banner-txt h1 {
        font-weight: 400;
        line-height: 1;
    }

    .home-cms-page .hp-banner-txt {
        padding: 25px 0 0;
    }

    .home-cms-page .hp-top-rhs {
        background: none;
    }

    .hp-our-offers {
        overflow: hidden;
        position: relative;
    }

        .hp-our-offers > div {
            padding: 78px 32px 66px;
        }

            .hp-our-offers > div [class^=columnGroup-root] {
                flex-wrap: nowrap;
                display: block !important;
            }

                .hp-our-offers > div [class^=columnGroup-root] .slick-slider {
                    padding: 13px 0 0 32px;
                    margin: 0 -32px;
                    position: static;
                    width: calc(100% + 64px);
                }

        .hp-our-offers .slick-arrow {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.76 11.35'%3E%3Cpath d='M17.63 5.29L13.49.21a.61.61 0 00-.84-.08.64.64 0 00-.08.85l3.36 4.1H.59a.59.59 0 00-.59.59.6.6 0 00.59.6h15.34l-3.34 4.1a.66.66 0 00.08.85.61.61 0 00.84-.08l4.12-5.08a.62.62 0 000-.77z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            position: absolute;
            top: 98px;
            right: 30px;
            left: auto;
            height: 12px;
            width: 22px;
        }

            .hp-our-offers .slick-arrow.slick-prev {
                -webkit-transform: translateY(-50%) rotate(180deg);
                -ms-transform: translateY(-50%) rotate(180deg);
                transform: translateY(-50%) rotate(180deg);
                top: 98px;
                right: 82px;
            }

        .hp-our-offers h2 {
            align-items: center;
        }

            .hp-our-offers h2.our-offers-title {
                display: flex;
                padding: 0 0 11px;
                justify-content: space-between;
            }

                .hp-our-offers h2.our-offers-title:after {
                    content: "";
                    position: relative;
                    left: 10px;
                    top: 5px;
                    width: 18px;
                    height: 12px;
                }

        .hp-our-offers .slick-track {
            display: flex;
        }

        .hp-our-offers .slick-slide {
            float: none;
            padding: 0 31px;
        }

        .hp-our-offers .slick-list {
            margin: 0 0 0 -31px;
        }

        .hp-our-offers .slick-dots {
            margin-left: -17px;
            margin-top: 5px;
        }

        .hp-our-offers [class^=column-root].device-slider {
            width: 100% !important;
        }

            .hp-our-offers [class^=column-root].device-slider figure {
                margin: 0 0 15px;
            }

        .hp-our-offers .offer-desc p {
            margin: 0 0 10px;
        }

        .hp-our-offers .offer-column {
            padding-left: 10px;
            padding-right: 10px;
            padding-top: 50px;
        }

            .hp-our-offers .offer-column img {
                margin: 0 0 29px;
            }

            .hp-our-offers .offer-column h2 {
                padding-bottom: 6px;
            }

            .hp-our-offers .offer-column h3 {
                padding: 33px 0 0;
            }

    .footer-social-links {
        display: none;
    }

    .featured-products .featured-products-details {
        padding: 70px 30px 21px;
    }

    .featured-products [class^=columnGroup-root] {
        padding-bottom: 35px;
    }

    .featured-products h2 {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 13px;
    }

    .featured-products .featured-products-img {
        margin: 0 -30px;
        flex-basis: calc(100% + 60px);
    }

    .featured-products .featured-products-col {
        display: block !important;
        width: 100% !important;
        flex-basis: auto;
        margin-bottom: 35px;
    }

        .featured-products .featured-products-col .featured-product-items {
            padding-left: calc(30px + 11.3%);
            padding-right: calc(30px + 13%);
            padding-top: 11px;
        }

    .featured-products [class^=item-images] {
        margin-bottom: 0;
    }

    .featured-products .add-to-cart {
        margin-top: 8px;
    }

        .featured-products .add-to-cart .btn {
            min-width: 0;
            margin-top: 5px;
            max-width: 214px;
            width: 100%;
        }

    .featured-products .slick-slider {
        overflow: hidden;
    }

    .featured-products .slick-dots {
        margin-top: 11px;
    }

    .featured-products [class^=item-name] {
        margin-bottom: 4px;
        margin-top: 16px;
    }

    .featured-products .slick-arrow {
        display: none !important;
    }

    .elemis-ethos h2 {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 6px;
    }

        .elemis-ethos h2 br {
            display: none;
        }

    .elemis-ethos-sub-title {
        padding-left: 41px;
        padding-bottom: 12px;
    }

        .elemis-ethos-sub-title:before {
            top: 10px;
            width: 24px;
        }

    .elemis-ethos .col-desc {
        padding: 0 30px;
    }

    .elemis-ethos .slider-wrap {
        order: 1;
    }

    .elemis-ethos .pure-result {
        order: 2;
    }

    .elemis-ethos .sourced-from-nature {
        padding: 0 30px;
    }

    .elemis-ethos [class^=column-root] {
        margin-bottom: 41px;
    }

    .elemis-ethos .sourced-from-nature {
        padding-top: 34px;
        padding-bottom: 25px;
    }

    .elemis-ethos .sourced-from-nature-img {
        padding: 0 30px 10px;
        flex-basis: 50%;
    }

    .elemis-ethos .order-1 {
        order: 1;
    }

    .elemis-ethos .order-2 {
        order: 2;
    }

    .elemis-ethos .scientific-innovation {
        padding-top: 18px;
        padding-bottom: 41px;
    }

    .elemis-ethos .order-1ever-evolving {
        padding-bottom: 38px;
        scroll-padding-top: 6px;
    }

    .home-best-sellers .related-products {
        padding: 0 30px;
    }

        .home-best-sellers .related-products .slick-arrow {
            display: none !important;
        }

        .home-best-sellers .related-products .slick-track {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .home-best-sellers .related-products .slick-slide {
            float: none;
            padding: 0 36px;
        }

        .home-best-sellers .related-products .slick-list {
            margin: 0 0 0 -31px;
        }

        .home-best-sellers .related-products .slick-slider {
            position: static;
            padding-left: 28px;
            margin: 0 -31px;
            width: calc(100% + 61px);
        }

    .elemis-everyday-wrapper {
        margin-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 19%;
    }

        .elemis-everyday-wrapper h2 {
            padding-right: 120px;
            padding-bottom: 13px;
        }

        .elemis-everyday-wrapper .elemis-everyday-info {
            padding-bottom: 21px;
        }

            .elemis-everyday-wrapper .elemis-everyday-info p {
                padding-left: 2px;
            }
}

@media screen and (min-width:768px) {
    .cms-wrap .row-contained-1tt {
        max-width: 100%;
    }

    .show-mobile-only {
        display: none !important;
    }

    .home-cms-page .hp-last-block > div:first-child {
        padding-bottom: 10.2%;
    }

    .home-cms-page .row-contained-1tt {
        max-width: 100%;
    }

    .home-cms-page main.page {
        min-height: calc(100vh + 79px);
    }

    .hp-hero-banner {
        margin-top: -79px;
        position: relative;
        min-height: 100vh;
    }

        .hp-hero-banner > div:first-child {
            padding-top: 79px;
        }

        .hp-hero-banner .banner-wrapper-cAN {
            min-height: calc(100vh - 79px);
            position: relative;
            z-index: 1;
        }

        .hp-hero-banner .banner-content-1wb {
            max-width: 1350px;
            padding: 0 20px;
            width: 100%;
            margin: 9.7% auto 0;
        }

            .hp-hero-banner .banner-content-1wb h1 {
                padding-bottom: 28px;
            }

            .hp-hero-banner .banner-content-1wb p {
                letter-spacing: .034em;
                line-height: 26px;
            }

            .hp-hero-banner .banner-content-1wb .btn {
                margin-top: 17px;
            }

        .hp-hero-banner.row-contained-1tt .banner-root-1Qc {
            margin: 0 auto;
            max-width: 1323px;
            width: 100%;
        }

    .browse-categories {
        margin-top: -12.8%;
        position: relative;
    }

        .browse-categories > div {
            padding-top: 19.3%;
            padding-bottom: 50px;
            min-height: 750px;
        }

        .browse-categories [class^=buttons-root] > div {
            min-height: 55px;
            min-width: 10%;
        }

        .browse-categories .btn-link {
            font-size: 24px;
            line-height: 30px;
            margin-top: 14px;
        }

        .browse-categories h2 {
            font-size: 44px;
            line-height: 52px;
            padding-bottom: 55px;
        }

        .browse-categories .pagebuilder-column {
            flex-basis: 33.33333%;
            padding: 0 5px 35px;
        }

        .browse-categories .columnGroup-root-2wf {
            flex-wrap: wrap;
            margin: 0 auto;
            max-width: 1330px;
            padding: 0 15px;
            width: 100%;
        }

    .home-cms-page .hp-top-lhs {
        padding-left: 5vw;
    }

        .home-cms-page .hp-top-lhs img {
            width: 34vw;
            margin-top: 6vh;
            margin-left: 0;
        }

    .home-cms-page .hp-top-rhs img {
        display: none;
    }

    .home-cms-page .hp-banner-txt {
        position: absolute;
        left: 7vw;
        top: 18vh;
        color: #fff;
        max-width: 250px;
    }

        .home-cms-page .hp-banner-txt h1 {
            font-weight: 400;
            color: #fff;
            font-size: 28px;
            line-height: 1;
        }

        .home-cms-page .hp-banner-txt p {
            color: #fff;
        }

    .hp-our-offers > div:first-child {
        padding-top: 83px;
        padding-bottom: 77px;
    }

    .hp-our-offers .offer-center {
        margin: 0 auto;
        max-width: 1280px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }

        .hp-our-offers .offer-center[class^=text-root] {
            max-width: 700px;
            padding-bottom: 50px;
            text-align: center;
        }

    .hp-our-offers h2 {
        text-align: center;
        font-size: 44px;
        line-height: 52px;
    }

        .hp-our-offers h2.our-offers-title {
            padding-bottom: 27px;
        }

    .hp-our-offers h3 {
        padding-bottom: 2px;
    }

    .hp-our-offers [class^=columnGroup-root] {
        margin: 0 auto;
        max-width: 1310px;
        padding: 0 15px;
        justify-content: space-between;
        width: 100%;
    }

    .hp-our-offers .offer-items-col {
        max-width: 337px;
        margin: 0 15px;
    }

        .hp-our-offers .offer-items-col figure {
            margin-bottom: 26px;
        }

        .hp-our-offers .offer-items-col .use-code p {
            text-align: left;
        }

    .hp-our-offers .offer-desc p {
        margin-bottom: 12px;
    }

    .hp-our-offers .offer-column {
        padding-top: 42px;
    }

        .hp-our-offers .offer-column h2 {
            padding-top: 28px;
        }

    .hp-our-offers .main-offer-block {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.38 86.6'%3E%3Cpath fill='none' stroke='%2342413d' stroke-width='.6' d='M14.38.3H.3v86h14.08'/%3E%3C/svg%3E"),url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.38 86.6'%3E%3Cpath fill='none' stroke='%2342413d' stroke-width='.6' d='M0 86.3h14.08V.3H0'/%3E%3C/svg%3E");
        background-repeat: no-repeat,no-repeat;
        background-position: left top 40px,right top 40px;
        background-size: 15px 87px,15px 87px;
        margin: 0 auto;
        min-height: 130px;
        max-width: 565px;
        padding: 0 40px;
        width: 100%;
    }

        .hp-our-offers .main-offer-block h2 {
            padding-bottom: 6px;
        }

    .featured-products [class^=columnGroup-root] {
        padding-bottom: 100px;
        padding-left: 25px;
        padding-right: 25px;
        margin: 0 auto;
        max-width: 1280px;
        width: 100%;
    }

    .featured-products .featured-products-details {
        text-align: center;
        max-width: 665px;
        padding-top: 89px;
        margin: 0 auto 43px;
    }

        .featured-products .featured-products-details h2 {
            font-size: 44px;
            line-height: 52px;
            padding-bottom: 11px;
        }

    .featured-products .featured-products-col {
        padding-top: 0;
        padding-right: 40px;
        padding-left: 40px;
    }

        .featured-products .featured-products-col .featured-product-items {
            padding: 0 7.2%;
        }

    .featured-products .slick-arrow {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.428 5.498L14.283.42a.601.601 0 00-.837-.08.628.628 0 00-.079.846l3.34 4.099H1.387a.595.595 0 00-.593.597c0 .33.265.598.592.598h15.32l-3.339 4.099a.63.63 0 00.079.845.6.6 0 00.837-.08l4.145-5.08c.185-.29.16-.508 0-.765z' fill='%23000' fill-rule='nonzero'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        height: 12px;
        z-index: 7;
    }

        .featured-products .slick-arrow svg {
            height: 0;
        }

        .featured-products .slick-arrow.slick-prev {
            left: -2.5%;
            top: 49%;
            transform: rotate(180deg);
        }

        .featured-products .slick-arrow.slick-next {
            right: -4%;
            top: 50%;
        }

    .featured-products [class^=item-images] {
        margin-bottom: 40px;
    }

    .featured-products .add-to-cart .btn {
        margin-top: 8px;
    }

    .featured-products .featured-product-items {
        position: relative;
    }

        .featured-products .featured-product-items .slick-list, .featured-products .featured-product-items .slick-slider {
            position: static;
        }

    .featured-products [class^=item-name] {
        margin-bottom: 4px;
    }

    .featured-products .slick-dots {
        position: absolute;
        left: -26%;
        transform: translateX(-50%);
        width: auto;
        bottom: -50px;
    }

    .elemis-ethos h2 {
        font-size: 44px;
        line-height: 52px;
    }

    .elemis-ethos h2, .elemis-ethos p {
        padding-bottom: 13px;
    }

    .elemis-ethos .col-desc {
        align-self: center !important;
        padding: 0 7.7% 13px 0;
    }

        .elemis-ethos .col-desc.desc-right {
            padding: 0 3.8% 3px 6.6%;
        }

    .elemis-ethos-sub-title {
        padding: 0 0 16px 48px;
    }

        .elemis-ethos-sub-title:before {
            top: 11px;
            width: 27px;
        }

    .elemis-ethos .sourced-from-nature {
        text-align: center;
        max-width: 50%;
        margin: 0 auto;
        padding-top: 37px;
    }

        .elemis-ethos .sourced-from-nature h2 {
            padding-bottom: 8px;
        }

        .elemis-ethos .sourced-from-nature p {
            padding-bottom: 5px;
        }

    .elemis-ethos .sourced-from-nature-img {
        padding: 16px 2% 26px;
    }

        .elemis-ethos .sourced-from-nature-img:first-child {
            padding-left: 4%;
            padding-right: 0;
        }

        .elemis-ethos .sourced-from-nature-img:last-child {
            padding-right: 4%;
            padding-left: 0;
        }

    .elemis-ethos [class^=columnGroup] {
        padding-bottom: 35px;
    }

    .home-best-sellers {
        margin-top: 40px;
        margin-bottom: 45px;
    }

        .home-best-sellers [class^=item-name] {
            margin-bottom: 4px;
        }

        .home-best-sellers .related-products {
            padding-left: 30px;
            padding-right: 30px;
        }

            .home-best-sellers .related-products .slick-slide {
                margin-left: 15px;
                margin-right: 15px;
            }

            .home-best-sellers .related-products .slick-dots {
                margin-top: 35px;
            }

            .home-best-sellers .related-products .productItem .add-to-cart-btn {
                left: 0;
            }

            .home-best-sellers .related-products .slick-arrow {
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.428 5.498L14.283.42a.601.601 0 00-.837-.08.628.628 0 00-.079.846l3.34 4.099H1.387a.595.595 0 00-.593.597c0 .33.265.598.592.598h15.32l-3.339 4.099a.63.63 0 00.079.845.6.6 0 00.837-.08l4.145-5.08c.185-.29.16-.508 0-.765z' fill='%23000' fill-rule='nonzero'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                height: 12px;
                z-index: 7;
            }

                .home-best-sellers .related-products .slick-arrow svg {
                    height: 0;
                }

                .home-best-sellers .related-products .slick-arrow.slick-prev {
                    left: -10px;
                    top: 30.3%;
                    transform: rotate(180deg);
                }

                .home-best-sellers .related-products .slick-arrow.slick-next {
                    right: -10px;
                    top: 30.3%;
                }

    .elemis-everyday-wrapper {
        margin-top: 85px;
        margin-bottom: 10px;
        padding-bottom: 7%;
    }

        .elemis-everyday-wrapper > div {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .elemis-everyday-wrapper h2 {
            font-size: 44px;
            line-height: 52px;
            padding-bottom: 11px;
        }

        .elemis-everyday-wrapper .elemis-everyday-info {
            text-align: center;
            margin-bottom: 30px;
        }
}

@media screen and (min-width:1024px) {
    .browse-categories > div {
        padding-top: 17.3%;
        padding-bottom: 90px;
    }

    .browse-categories .columnGroup-root-2wf {
        flex-wrap: nowrap;
    }

    .browse-categories .pagebuilder-column {
        flex-basis: 100%;
        padding-bottom: 0;
    }

    .page-header .page-header-inner {
        position: relative;
        z-index: 9;
    }

    .home-cms-page .hp-hdr-seperator {
        display: block;
        height: 1px;
        background-color: #eaeaea;
        position: relative;
        z-index: -1;
    }

    .home-cms-page .hp-top-lhs {
        padding-left: 5vw;
    }

        .home-cms-page .hp-top-lhs img {
            width: 40vw;
            margin-top: 5vh;
            margin-left: 0;
        }

    .home-cms-page .hp-top-rhs {
        position: relative;
        right: 0;
        top: -95px;
        overflow-x: hidden;
        height: calc(100vh + 95px);
    }

    .home-cms-page .hp-top-banner-wrap {
        min-height: 100vh;
        width: 100vw;
    }

    .home-cms-page .hp-banner-txt {
        left: 18vw;
        top: 10vh;
    }

        .home-cms-page .hp-banner-txt h1 {
            font-size: 30px;
        }

    .featured-products [class^=columnGroup-root] {
        padding-bottom: 140px;
    }

    .featured-products .featured-products-col {
        padding-left: 30px;
        padding-right: 30px;
    }

        .featured-products .featured-products-col .slick-dots {
            bottom: -70px;
        }

        .featured-products .featured-products-col .featured-product-items {
            padding: 0 13.2%;
        }

    .featured-products .add-to-cart .btn {
        left: 20px;
        min-width: 214px;
        width: auto;
    }

    .home-best-sellers {
        margin-top: 79px;
        margin-bottom: 90px;
    }

        .home-best-sellers .related-products .slick-dots {
            margin-top: 65px;
        }

        .home-best-sellers .related-products {
            padding-left: 20px;
            padding-right: 20px;
        }

            .home-best-sellers .related-products .slick-slide {
                margin-left: 35px;
                margin-right: 35px;
            }

            .home-best-sellers .related-products .slick-arrow.slick-prev {
                left: -3px;
            }

            .home-best-sellers .related-products .slick-arrow.slick-next {
                right: -3px;
            }
}

@media screen and (min-width:1280px) {
    .home-cms-page .hp-top-lhs {
        padding-left: 10vw;
    }

        .home-cms-page .hp-top-lhs img {
            width: 30vw;
        }

    .home-cms-page .hp-banner-txt h1 {
        font-size: 34px;
    }

    .home-cms-page .hp-banner-txt p {
        font-size: 14px;
    }

    .browse-categories .btn-link {
        font-size: 28px;
        line-height: 36px;
    }

    .featured-products .rich-slider-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

        .featured-products .rich-slider-wrapper .slick-arrow {
            right: 0;
        }

    .featured-products [class^=columnGroup-root] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .featured-products .featured-products-col {
        padding-left: 20px;
        padding-right: 20px;
    }

        .featured-products .featured-products-col .featured-product-items {
            padding: 0 24.16%;
            height: 100%;
        }

    .home-best-sellers .related-products {
        padding: 0 20px;
    }

        .home-best-sellers .related-products .slick-slide {
            margin: 0 67px;
        }

        .home-best-sellers .related-products .slick-arrow.slick-next, .home-best-sellers .related-products .slick-arrow.slick-prev {
            top: 28.3%;
        }

        .home-best-sellers .related-products .slick-arrow.slick-prev {
            left: 21px;
        }

        .home-best-sellers .related-products .slick-arrow.slick-next {
            right: 21px;
        }
}

.account-form .message-root .root_error {
    padding-bottom: 10px;
}

.account-form .alert {
    text-align: left;
}

.account-form .account-form-steps {
    background-color: #fff;
    z-index: 9999;
}

    .account-form .account-form-steps.open .field-wrapper .label {
        clip: auto;
        overflow: visible;
        width: auto;
        height: auto;
        pointer-events: none;
        position: static;
    }

    .account-form .account-form-steps.open .close-sidebar, .account-form .account-form-steps.open .return-button {
        min-width: 0;
        border: 0;
    }

.account-form .btn {
    min-width: 0;
}

.account-form .message-root .root_error {
    font-size: 12px;
    font-family: DMSans-Light;
    line-height: 19px;
    color: #b30015;
    width: 100%;
    text-transform: none;
    margin-top: 3px;
    padding-left: 5px;
    position: relative;
}

.forgot-password-link {
    border-bottom: 1px solid #0e223a;
}

header.page-header .account-form-forgot-password .signin-link-wrapper {
    margin-top: 10px;
}

header.page-header .account-form-forgot-password .signin-link {
    padding: 0 0 3px;
    border-bottom: 1px solid #002739;
    color: #002739;
    font-weight: 400;
    letter-spacing: normal;
    font-family: $text_font;
    font-size: 16px;
}

header.page-header .account-form.signin .account-form-dropdown {
    background: #fff;
}

    header.page-header .account-form.signin .account-form-dropdown ul.dropdown-list {
        padding-bottom: 15px;
    }

        header.page-header .account-form.signin .account-form-dropdown ul.dropdown-list li {
            padding: 6px 0;
        }

.myaccount-wrap .ReactPasswordStrength-strength-bar {
    margin-top: -11px;
}

.myaccount-wrap .ReactPasswordStrength {
    border: 0;
}

    .myaccount-wrap .ReactPasswordStrength .message-root .root_error {
        font-size: 12px;
        font-family: DMSans-Light;
        line-height: 19px;
        color: #b30015;
    }

.myaccount-wrap .myaccount-content .saved-cards-list td {
    padding-left: 10px;
}

    .myaccount-wrap .myaccount-content .saved-cards-list td .delete-payment {
        min-width: 80px;
    }

    .myaccount-wrap .myaccount-content .saved-cards-list td a.delete-payment {
        border: none;
        width: 50px;
        display: inline-block;
    }

.store-credit .giftcard-container .my-account__block {
    max-width: 370px;
    position: relative;
    width: 100%;
}

    .store-credit .giftcard-container .my-account__block .button-containers {
        position: absolute;
        top: 50px;
        right: 0;
    }

.store-credit .giftcard-container button.btn:not(.btn-primary):not(.nav-item) {
    background-repeat: no-repeat;
    border: 0;
    font-size: 0;
    width: 14px;
    height: 10px;
    top: 18px;
}

    .store-credit .giftcard-container button.btn:not(.btn-primary):not(.nav-item), .store-credit .giftcard-container button.btn:not(.btn-primary):not(.nav-item):focus, .store-credit .giftcard-container button.btn:not(.btn-primary):not(.nav-item):hover {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9'%3E%3Cpath d='M12.848 4.07L9.598.245a.727.727 0 00-.983-.095.689.689 0 00-.098.953l2.314 2.723H.696A.686.686 0 000 4.5c0 .373.312.675.696.675h10.135L8.517 7.898c-.232.274-.18.722.098.953.286.238.751.18.983-.095l3.25-3.827c.212-.288.194-.58 0-.858z' fill='%23393838' fill-rule='nonzero'/%3E%3C/svg%3E");
        background-color: transparent;
    }

        .store-credit .giftcard-container button.btn:not(.btn-primary):not(.nav-item):focus, .store-credit .giftcard-container button.btn:not(.btn-primary):not(.nav-item):hover {
            border: transparent;
        }

.myaccount-wrap .new-address-from .default-checkboxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.myaccount-wrap div.table-wrapper table.orders-list tbody td .btn-link {
    padding-left: 0;
    border-left: none;
    line-height: 22px;
}

.myaccount-wrap div.table-wrapper table.orders-list tbody td .primary-link:first-child {
    padding-right: 0;
    margin-right: 10px;
}

.myaccount-wrap div.table-wrapper table.orders-list tbody td .grand-total {
    font-weight: 400;
    font-family: DMSans-SemiBold;
}

.myaccount-wrap div.table-wrapper table td {
    font-size: 16px;
}

.myaccount-wrap div.table-wrapper table th {
    font-weight: 400;
    font-family: DMSans-SemiBold;
}

.myaccount-wrap div.table-wrapper table td .phone-num {
    white-space: nowrap;
}

.myaccount-wrap table thead th {
    font-size: 14px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.myaccount-wrap .order-details-contianer .status-badge {
    margin-top: 17px;
}

.myaccount-wrap .ordered-items {
    font-size: 16px;
    line-height: 1.5;
}

    .myaccount-wrap .ordered-items tfoot tr:not(.grand_total) th {
        font-weight: 400;
    }

.myaccount-wrap .order-details-contianer .order-date {
    margin-top: 0;
}

.myaccount-wrap .order-details-contianer .order-data-tab .nav-tabs a.nav-item {
    background: #f6f3ee;
    font-size: 16px;
}

    .myaccount-wrap .order-details-contianer .order-data-tab .nav-tabs a.nav-item.active, .myaccount-wrap .order-details-contianer .tab-content .tab-pane {
        background: #fff;
    }

.myaccount-wrap .order-details-contianer .ordered-items tbody tr:nth-child(2n) td {
    background: #f6f3ee;
}

.myaccount-wrap.container-width {
    padding-bottom: 50px;
}

.myaccount-wrap .myaccount-content b, .myaccount-wrap .myaccount-content strong, .myaccount-wrap .myaccount-content tbody th, .myaccount-wrap .myaccount-content thead th {
    font-weight: 400;
    font-family: DMSans-SemiBold;
}

.myaccount-wrap .myaccount-content a:not(.btn-primary):not(.nav-item), .myaccount-wrap .myaccount-content button:not(.btn-primary):not(.nav-item) {
    border: 0;
    border-bottom: 1px solid #002739;
    padding: 0 0 3px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    min-width: auto;
}

    .myaccount-wrap .myaccount-content a:not(.btn-primary):not(.nav-item):hover, .myaccount-wrap .myaccount-content button:not(.btn-primary):not(.nav-item):hover {
        background: none;
    }

.myaccount-wrap .myaccount-content a:not(.btn-primary):not(.nav-item) {
    margin-left: 0;
}

    .myaccount-wrap .myaccount-content a:not(.btn-primary):not(.nav-item):first-child {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        margin: 0 14px 0 0;
    }

        .myaccount-wrap .myaccount-content a:not(.btn-primary):not(.nav-item):first-child button {
            padding-left: 0;
            padding-right: 0;
            padding-top: 0;
            margin: 0;
        }

.myaccount-wrap .myaccount-content a button:not(.btn-primary):not(.nav-item) {
    border: 0;
    padding-bottom: 0;
}

.myaccount-wrap .myaccount-content h1, .myaccount-wrap .myaccount-content h2, .myaccount-wrap .myaccount-content h3, .myaccount-wrap .myaccount-content h4 {
    font-weight: 400;
}

.myaccount-wrap .myaccount-content h1 {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 40px;
}

.myaccount-wrap .myaccount-content h2 {
    font-size: 28px;
    line-height: 36px;
}

.myaccount-wrap .myaccount-content .my-account__block-title {
    padding-top: 0;
}

.myaccount-wrap .myaccount-content h2.my-account__block-subtitle {
    font-size: 22px;
}

.myaccount-wrap .myaccount-content h3 {
    font-size: 17px;
    border-bottom: 1px solid #ccc;
    line-height: 36px;
    padding-bottom: 10px;
    margin-bottom: 13px;
}

    .myaccount-wrap .myaccount-content h3.section-header {
        font-size: 28px;
    }

.myaccount-wrap .myaccount-content .orderd-items-container div.orderd-item-head h3 {
    line-height: 22px;
    margin-top: 10px;
}

    .myaccount-wrap .myaccount-content .orderd-items-container div.orderd-item-head h3 > a {
        font-size: 16px;
        position: relative;
        top: -6px;
    }

.myaccount-wrap .myaccount-content .pagination-toolbar .pagination a.page-link {
    position: relative;
    display: block;
    padding: .469rem .2rem;
    margin-left: -1px;
    color: #002739;
    background-color: transparent;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 13px;
    font-family: DMSans-Light;
    border-radius: 0;
    min-width: 18px;
    margin-right: 0;
}

    .myaccount-wrap .myaccount-content .pagination-toolbar .pagination a.page-link:active, .myaccount-wrap .myaccount-content .pagination-toolbar .pagination a.page-link:hover {
        z-index: 2;
        color: #002739;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
    }

    .myaccount-wrap .myaccount-content .pagination-toolbar .pagination a.page-link:focus {
        text-decoration: none;
    }

    .myaccount-wrap .myaccount-content .pagination-toolbar .pagination a.page-link svg {
        stroke-width: 1;
    }

.myaccount-wrap .myaccount-content p {
    margin-bottom: 0;
}

.myaccount-wrap .myaccount-content .dashboard-block {
    margin: 0 0 30px;
}

    .myaccount-wrap .myaccount-content .dashboard-block .default-address-container .address {
        margin-top: 10px;
    }

    .myaccount-wrap .myaccount-content .dashboard-block button {
        background: none;
        font-weight: 400;
    }

    .myaccount-wrap .myaccount-content .dashboard-block .my-account__block-title a:not(.btn-primary):not(.nav-item) {
        margin-left: 20px;
        position: relative;
        top: -6px;
    }

    .myaccount-wrap .myaccount-content .dashboard-block .name-form-links a {
        padding-right: 10px;
        margin-right: 10px;
    }

    .myaccount-wrap .myaccount-content .dashboard-block.address-list {
        margin-bottom: 0;
    }

.myaccount-wrap .myaccount-content .address p {
    font-size: 16px;
}

.myaccount-wrap .myaccount-content .address .name {
    font-size: 16px;
    color: #002739;
    font-weight: 400;
}

.modal-dialog.shipment-tracking-modal table th {
    font-weight: 400;
    font-family: DMSans-SemiBold;
}

.modal-dialog .root_error {
    font-size: 12px;
    font-family: DMSans-Light;
    line-height: 19px;
    color: #b30015;
    padding-bottom: 10px;
    margin: 0;
}

.myaccount-wrap .select-box-wrapper {
    max-width: 450px;
}

.myaccount-wrap .add-new-address .btn-primary {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.myaccount-wrap .btn-primary {
    margin-left: 0;
}

.myaccount-wrap .change-data-form {
    margin-bottom: 10px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
}

    .modal .modal-header {
        padding-top: 6px;
        padding-bottom: 15px;
    }

        .modal .modal-header .modal-title {
            margin: 0;
            padding-right: 30px;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            font-family: DMSans-SemiBold;
            letter-spacing: 0px;
            line-height: 1.5;
        }

        .modal .modal-header .close {
            top: 0;
            right: 0;
        }

            .modal .modal-header .close:focus {
                outline: none;
            }

            .modal .modal-header .close span {
                font-size: 0;
            }

                .modal .modal-header .close span:first-child {
                    position: relative;
                    padding: 6px 17px 6px 16px;
                }

                    .modal .modal-header .close span:first-child:after, .modal .modal-header .close span:first-child:before {
                        position: absolute;
                        content: "";
                        height: 20px;
                        width: 1px;
                        right: 20px;
                        top: -10px;
                        background-color: #002739;
                    }

                    .modal .modal-header .close span:first-child:after {
                        -webkit-transform: rotate(-45deg);
                        -ms-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                    }

                    .modal .modal-header .close span:first-child:before {
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }

    .modal .shipment-tracking-modal .modal-header .modal-title {
        font-size: 14px;
        line-height: 1.5;
    }

    .modal .modal-footer .btn-primary.btn-group-lg > .btn, .modal .modal-footer .btn-primary.btn-lg {
        min-width: 118px;
    }

    .modal .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal .modal-content {
        position: relative;
        pointer-events: auto;
        padding: 20px;
        background: #fff;
    }

        .modal .modal-content .alert-warning {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 13'%3E%3Cpath fill='%23b30015' d='M7.539 10.574a.819.819 0 000-1.122A.754.754 0 007 9.22c-.2 0-.397.085-.539.232a.816.816 0 000 1.122.751.751 0 00.539.232c.2 0 .397-.084.539-.232zm.07-2.633v-2.95A.622.622 0 007 4.358a.622.622 0 00-.609.634v2.95c0 .35.273.633.609.633a.622.622 0 00.609-.634zm-5.955 3.79h10.692L7 1.92l-5.346 9.813zM13.391 13H.61a.605.605 0 01-.526-.315.657.657 0 01-.004-.632L6.472.321A.605.605 0 017 0c.219 0 .421.123.53.321l6.39 11.732a.656.656 0 01-.003.632.604.604 0 01-.526.315z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: 10px 12px;
            background-size: 14px;
            margin: 0 9px;
        }

            .modal .modal-content .alert-warning svg {
                display: none;
            }

    .modal .modal-body {
        padding-top: 0;
    }

        .modal .modal-body .account-form-wrapper {
            width: 100%;
            padding-left: 0;
            padding-right: 0;
        }

        .modal .modal-body .account-form-forgot-password .title {
            margin: 0 0 17px;
        }

        .modal .modal-body .account-form-forgot-password .signin-link-wrapper {
            margin-top: 10px;
        }

        .modal .modal-body .account-form-forgot-password .signin-link {
            padding: 0 0 3px;
            border-bottom: 1px solid #002739;
            color: #002739;
            font-weight: 400;
            letter-spacing: normal;
            font-family: $text_font;
            font-size: 16px;
        }

        .modal .modal-body form .field-wrapper {
            margin: 0 0 14px;
            padding: 0;
        }

            .modal .modal-body form .field-wrapper .message-root .root_error {
                padding-bottom: 10px;
            }

        .modal .modal-body form .actions-toolbar button {
            margin-bottom: 10px;
        }

        .modal .modal-body form .actions-toolbar .forgot-password-link {
            margin-bottom: 10px;
            display: inline-block;
        }

.modal-backdrop {
    opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #002739;
}

.page-header .account-form-steps {
    border: 0;
    max-width: 100%;
}

    .page-header .account-form-steps .header {
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 22px;
        min-height: 0;
    }

        .page-header .account-form-steps .header .title {
            color: #002739;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            font-family: DMSans-SemiBold;
            letter-spacing: 0px;
            line-height: 22px;
            margin: 0;
        }

    .page-header .account-form-steps .actions-toolbar .btn {
        margin-bottom: 10px;
    }

    .page-header .account-form-steps .account-form-forgot-password .title, .page-header .account-form-steps .account-reset-form .title {
        font-weight: 400;
        letter-spacing: normal;
        font-size: 16px;
    }

    .page-header .account-form-steps .close-sidebar {
        margin: 0;
        position: relative;
        height: 22px;
        display: block;
        padding: 0;
        right: -7px;
        top: -1px;
        width: 22px;
    }

        .page-header .account-form-steps .close-sidebar:after, .page-header .account-form-steps .close-sidebar:before {
            height: 15px;
            top: 3px;
            right: 10px;
        }

        .page-header .account-form-steps .close-sidebar span {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

    .page-header .account-form-steps .account-form-wrapper {
        margin-top: 0;
        margin-bottom: 7px;
        padding: 0;
        width: 100%;
    }

    .page-header .account-form-steps.open .customer.exist {
        font-size: 16px;
    }

    .page-header .account-form-steps.open .return-button {
        position: static;
        padding: 0 0 0 2px;
        height: 22px;
    }

    .page-header .account-form-steps.open .close-sidebar {
        margin: 0;
        position: relative;
        height: 22px;
        display: block;
        padding: 0;
        right: -7px;
        top: -1px;
        width: 22px;
    }

        .page-header .account-form-steps.open .close-sidebar:after, .page-header .account-form-steps.open .close-sidebar:before {
            height: 15px;
            top: 4px;
            right: 7px;
        }

@media (min-width:768px) {
    .myaccount-wrap .myaccount-content .ContactInformation .dashboard-block {
        max-width: 100%;
    }

    .myaccount-wrap .my-account-navigation .nav-wrapper {
        background: #f6f3ee;
        padding: 15px 0;
    }

    .myaccount-wrap .my-account-navigation li {
        margin-bottom: 10px;
        padding: 0;
    }

        .myaccount-wrap .my-account-navigation li a {
            line-height: 18px;
            border-left: 3px solid transparent;
            color: #002739;
            display: block;
            padding: 5px 18px 5px 15px;
        }

            .myaccount-wrap .my-account-navigation li a:hover {
                text-decoration: none;
            }

            .myaccount-wrap .my-account-navigation li a.active, .myaccount-wrap .my-account-navigation li a:focus {
                font-weight: 400;
                font-family: $text_font;
            }

    .myaccount-wrap .myaccount-content .dashboard-block .manage-address-button {
        font-size: 16px;
    }

    .myaccount-wrap .myaccount-content .dashboard-block.name-form {
        max-width: 100%;
    }
}

@media (min-width:1024px) {
    .page-header .account-form-steps {
        padding: 25px 28px 20px;
        max-width: 413px;
    }
}

@media screen and (max-width:413px) {
    .account-draw-inner {
        border: 0;
    }

    .myaccount-wrap .default-address-contanier .default-address-container {
        display: block;
    }
}

@media (max-width:767px) {
    .page-header .account-form-wrapper {
        width: 100%;
    }

    .myaccount-wrap .my-account-navigation .nav-wrapper {
        background: #f6f3ee;
    }

    .myaccount-wrap .table-wrapper table td, .myaccount-wrap .table-wrapper table th {
        padding: 7px 10px 0 0;
    }

    .myaccount-wrap .default-address-contanier .default-address-container {
        float: left;
        width: 100%;
    }

    .myaccount-wrap div.table-wrapper table.orders-list tbody tr td:before {
        font-weight: 400;
    }

    .myaccount-wrap table tbody tr td:before {
        font-family: DMSans-SemiBold;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: 0px;
        text-transform: uppercase;
    }

    .myaccount-wrap .order-details-contianer .ordered-items tbody tr td {
        padding-left: 15px;
        padding-right: 15px;
    }

    .myaccount-wrap .my-account-mob-menu-head {
        font-weight: 400;
        font-family: DMSans-SemiBold;
    }

    .myaccount-wrap .saved-cards-list tbody tr {
        display: block;
        padding: 0 30px;
        margin-bottom: 14px;
    }

        .myaccount-wrap .saved-cards-list tbody tr td, .myaccount-wrap .saved-cards-list tbody tr th {
            color: #092c4d;
            font-size: 12px;
            letter-spacing: 0px;
            text-transform: uppercase;
            display: block;
            padding: 0;
        }

    .myaccount-wrap .saved-cards-list .cc-image-type {
        background: #dfe8ed;
        margin-bottom: 23px;
    }

        .myaccount-wrap .saved-cards-list .cc-image-type td {
            padding: 15px 0 12px;
            display: inline-block;
            width: 50%;
        }

        .myaccount-wrap .saved-cards-list .cc-image-type span {
            color: #092c4d;
            font-size: 11px;
            line-height: 13px;
            letter-spacing: 0px;
            vertical-align: middle;
            margin-left: 13px;
        }

        .myaccount-wrap .saved-cards-list .cc-image-type .delete-button {
            text-align: right;
        }

        .myaccount-wrap .saved-cards-list .cc-image-type .delete-payment {
            padding: 5px;
            font-size: 11px;
            letter-spacing: 0px;
        }

    .myaccount-wrap .saved-cards-list .no-saved-cards {
        padding-left: 30px;
        padding-right: 30px;
    }

    .myaccount-wrap .myaccount-content .saved-cards-list tbody td {
        padding-left: 0;
    }

    .account-form-steps.open .close-sidebar, .account-form-steps.open .return-button {
        border: 0;
        min-width: auto;
        background: transparent;
    }

    .my-account-mob-menu-head {
        display: block;
        text-transform: uppercase;
        border: none;
        border-bottom: 1px solid #eaeaea;
        padding: 5px 0;
        font-size: 14px;
        margin-bottom: 0;
        cursor: pointer;
        text-align: left;
    }

        .my-account-mob-menu-head span {
            float: right;
            line-height: 18px;
            position: relative;
            font-size: 0;
        }

            .my-account-mob-menu-head span:after {
                content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16'%3E%3Cg fill='%23161616' fill-rule='evenodd'%3E%3Cpath d='M7.689 2.615v10.769H6.612V2.615z'/%3E%3Cpath d='M12.536 8.538H1.766V7.461h10.77z'/%3E%3C/g%3E%3C/svg%3E");
                position: absolute;
                right: 0;
                font-size: 18px;
                color: #161616;
            }

            .my-account-mob-menu-head span.open:after {
                content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='14'%3E%3Cpath d='M1.766 6.462h10.769v1.077H1.765z' fill='%23161616' fill-rule='evenodd'/%3E%3C/svg%3E");
            }

    .saved-cards .myaccount-wrap.container-width {
        padding-left: 0;
        padding-right: 0;
    }

    .saved-cards .my-account-navigation, .saved-cards .myaccount-content .account-header {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width:1023px) {
    .account-draw-inner {
        border-left: 1px solid hsla(0,0%,59.2%,.3);
        max-width: 413px;
        margin-left: auto;
        padding: 22px 28px 20px;
        width: 100%;
        height: 100%;
    }

        .account-draw-inner .input-block input {
            font-size: 16px;
        }

    .account-open .MegaMenu.open .hamburger-icon {
        display: none;
    }

    .account-open .account-form-steps {
        align-items: flex-start;
        display: flex;
        max-width: 100%;
        justify-content: flex-end;
    }

    .account-open .hamburger-icon {
        display: none;
    }

    .account-open .menu-container {
        height: 100%;
        top: 0;
    }

    .menu-container .account-form-steps .input-block input {
        font-size: 16px;
        max-width: 100%;
    }

    .MegaMenu .pm-cms-links .account-form-link {
        font-size: 17px;
        line-height: 24px;
        font-family: $header_font;
        background-position: left 5px top 6px;
        display: flex;
        align-items: center;
        padding: 0 0 0 37px;
        letter-spacing: normal;
        position: relative;
        width: auto;
    }

        .MegaMenu .pm-cms-links .account-form-link:before {
            content: "";
            border: 0;
            min-width: auto;
            position: absolute;
            display: block;
            width: 22px;
            height: 24px;
            left: 0;
            padding: 0;
            margin: 0;
            line-height: 1;
            color: #002739;
            background: transparent no-repeat 50% url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.68 15.48'%3E%3Cellipse fill='none' stroke='%230e223a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.08' cx='6.39' cy='4.14' rx='4.05' ry='3.6'/%3E%3Cpath fill='none' stroke='%230e223a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.08' d='M13.14 14.94a6.3 6.3 0 10-12.6 0'/%3E%3C/svg%3E");
            background-size: 14px 16px;
            background-position: top 3px center;
        }

    .pm-account-signin .collapsible-wrapper--opened .collapsible-content, .pm-account-signin .collapsible-wrapper .collapsible-content {
        padding: 7px 0 10px;
    }

    .pm-account-signin .collapsible-wrapper {
        margin: 0;
        padding: 0;
        background: transparent;
    }

        .pm-account-signin .collapsible-wrapper .collapsible-header {
            padding-bottom: 9px;
        }

        .pm-account-signin .collapsible-wrapper .collapsible-arrow-wrapper {
            align-items: center;
            display: flex;
            position: static;
            width: 20px;
        }

        .pm-account-signin .collapsible-wrapper .collapsible-arrow {
            content: "";
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 5.85'%3E%3Cpath fill='none' stroke-linejoin='round' stroke='%23000' d='M.35.35l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 12px 12px;
            background-position: 50%;
            margin-left: 7px;
            display: inline-block;
            width: 12px;
            height: 12px;
            -ms-transition: all .25s ease-in;
            -moz-transition: all .25s ease-in;
            -webkit-transition: all .25s ease-in;
            transition: all .25s ease-in;
        }

        .pm-account-signin .collapsible-wrapper .collapsible-toggle {
            border: 0;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            top: 0;
            width: auto;
        }

        .pm-account-signin .collapsible-wrapper .welcome-message {
            display: none;
        }

        .pm-account-signin .collapsible-wrapper .dropdown-list {
            padding-bottom: 0;
            padding-left: 37px;
        }

            .pm-account-signin .collapsible-wrapper .dropdown-list li {
                padding: 0 0 6px;
            }

                .pm-account-signin .collapsible-wrapper .btn-link, .pm-account-signin .collapsible-wrapper .dropdown-list li a {
                    font-size: 17px;
                    line-height: 24px;
                    font-family: $header_font;
                    margin: 0;
                    padding: 0;
                    border: 0;
                    letter-spacing: normal;
                }
}

@media screen and (max-width:1023px) and (prefers-reduced-motion:reduce) {
    .pm-account-signin .collapsible-wrapper .collapsible-arrow {
        transition: none;
    }
}

.gift-remove-action .gift-cart-applied .gift-card-value {
    margin: 0;
}

.cost-block .collapsible-header .cart-grand-total, .cost-block b, .cost-block strong {
    font-weight: 400;
}

.applied-coupon {
    font-family: DMSans-Light;
    font-size: 13px;
    line-height: 20px;
}

.cart-page .coupon-form .applied-coupon {
    padding: 7px 0 0;
}

.cart-page .dropdown-menu.show {
    width: 100%;
}

.cart-page .cart-item-list {
    border-top: 1px solid #eaeaea;
}

.cart-page .cart-edit-item {
    margin: 0;
}

    .cart-page .cart-edit-item .cart-edit-item-wrapper .cart-edit-item-options-list {
        padding: 15px 0;
    }

.cart-page .cart-container .loading-container {
    clear: both;
}

.cart-page .cart-container .lhs {
    padding-bottom: 25px;
}

.cart-page .cart-container .rhs {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

    .cart-page .cart-container .rhs .coupon-form {
        order: 1;
    }

        .cart-page .cart-container .rhs .coupon-form.cart-page-giftcard-form {
            order: inherit;
        }

.cart-page.container-width {
    padding-bottom: 30px;
}

.cart-page .coupon-form .promo-text-filed button.btn {
    top: 13px;
    width: auto;
}

.cart-page .coupon-form .promo-text-filed button.btn-primary {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9'%3E%3Cpath d='M12.848 4.07L9.598.245a.727.727 0 00-.983-.095.689.689 0 00-.098.953l2.314 2.723H.696A.686.686 0 000 4.5c0 .373.312.675.696.675h10.135L8.517 7.898c-.232.274-.18.722.098.953.286.238.751.18.983-.095l3.25-3.827c.212-.288.194-.58 0-.858z' fill='%23393838' fill-rule='nonzero'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    border: 0;
    font-size: 0;
    width: 14px;
    height: 10px;
}

    .cart-page .coupon-form .promo-text-filed button.btn-primary:focus, .cart-page .coupon-form .promo-text-filed button.btn-primary:hover {
        background-color: transparent;
        border: transparent;
    }

.cart-item {
    line-height: 20px;
}

.cart-item-name {
    letter-spacing: 1px;
    font-size: 14px;
}

.cart-item-price-calculation {
    font-weight: 300;
}

.cart-item-config-option {
    text-transform: capitalize;
    font-size: 10px;
}

div.cost-block {
    border: 0;
    background: #fff;
    box-shadow: 0 -12px 30px 0 hsla(0,0%,68.6%,.16);
    margin: 0;
}

    div.cost-block .cart-sub-total, div.cost-block .cart-subtotal {
        font-family: DMSans-Light;
        font-size: 15px;
        letter-spacing: 0px;
        line-height: 20px;
    }

        div.cost-block .cart-sub-total i, div.cost-block .cart-subtotal i {
            font-style: normal;
        }

.cart-discount {
    font-family: DMSans-Light;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 20px;
}

    .cart-discount i {
        font-style: normal;
    }

.summary-wrapper {
    margin-bottom: 20px;
}

.coupon-form .add-code-text {
    font-size: 14px;
}

.coupon-form input::placeholder {
    color: transparent;
}

.coupon-form .discount-coupon-form .see-balance-gift .btn.btn-link {
    text-align: left;
    height: auto;
}

.coupon-form .discount-coupon-form .collapsible-title {
    font-family: DMSans-SemiBold;
    line-height: 21px;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.coupon-form .discount-coupon-form .field-wrapper .label, .coupon-form .discount-coupon-form .note {
    color: #002739;
}

.coupon-form .discount-coupon-form input[type=text] {
    border-radius: 0;
    border-bottom: 1px solid #42413d;
    font-size: 15px;
    line-height: 25px;
    background: transparent;
    padding-right: 30px;
}

.coupon-form .discount-coupon-form .promo-text-filed .btn {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    min-width: 0;
    height: auto;
    line-height: normal;
}

.empty-cart .close-empty-cart {
    font-size: 48px;
}

.empty-cart h1 {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 33px;
}

.empty-cart span {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 20px;
}

.summary-block {
    background: #f7f7f7;
}

    .summary-block .summary-text {
        font-size: 20px;
    }

    .summary-block .address-label {
        line-height: 24px;
        letter-spacing: 0px;
        font-size: 15px;
    }

    .summary-block .entered-shipping-address {
        background-color: transparent !important;
    }

    .summary-block .cart-link {
        background-color: #002739;
        color: #fff;
        text-transform: uppercase;
        line-height: 24px;
        font-size: 10px;
    }

@media screen and (max-width:767px) {
    .cart-page.container-width {
        padding-bottom: 25px;
    }
}

@media screen and (min-width:768px) {
    .cart-page.container-width {
        padding-bottom: 35px;
    }
}

.checkout-header .global-alert {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 0 0 22px;
}

    .checkout-header .global-alert .alert {
        margin-bottom: 0;
    }

    .checkout-header .global-alert .alert-danger:before {
        content: "";
        position: absolute;
        width: 9px;
        height: 9px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' fill='%23B70020' stroke='%23B70020'%3E%3Cpath fill-rule='evenodd' d='M8.772 7.67A.78.78 0 017.67 8.772L4.5 5.602l-3.17 3.17a.776.776 0 01-1.102 0 .779.779 0 010-1.102l3.17-3.17-3.17-3.17A.78.78 0 011.33.228l3.17 3.17L7.67.228A.78.78 0 018.772 1.33L5.602 4.5l3.17 3.17z' stroke='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        left: 0;
        top: 13px;
    }

.checkout-header .account-form-forgot-password .signin-link-wrapper {
    margin-top: 10px;
}

.checkout-header .account-form-forgot-password .signin-link {
    padding: 0 0 3px;
    border-bottom: 1px solid #002739;
    color: #002739;
    font-weight: 400;
    letter-spacing: normal;
    font-family: $text_font;
    font-size: 16px;
}

.checkout-header .account-form-steps {
    border: 0;
}

    .checkout-header .account-form-steps .header {
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        min-height: 0;
    }

        .checkout-header .account-form-steps .header .title {
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            font-family: DMSans-SemiBold;
            letter-spacing: 0px;
            line-height: 22px;
            margin: 0;
        }

    .checkout-header .account-form-steps .actions-toolbar .btn {
        margin-bottom: 10px;
    }

    .checkout-header .account-form-steps .account-form-forgot-password .title, .checkout-header .account-form-steps .account-register-form .title, .checkout-header .account-form-steps .account-reset-form .title {
        font-weight: 400;
        letter-spacing: normal;
        font-size: 16px;
        margin: 0 0 17px;
    }

    .checkout-header .account-form-steps .close-sidebar {
        margin: 0;
        position: relative;
        height: 22px;
        display: block;
        padding: 0;
        right: -7px;
        top: -1px;
        width: 22px;
    }

        .checkout-header .account-form-steps .close-sidebar:after, .checkout-header .account-form-steps .close-sidebar:before {
            height: 15px;
            top: 3px;
            right: 10px;
        }

        .checkout-header .account-form-steps .close-sidebar span {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

    .checkout-header .account-form-steps .account-form-wrapper {
        margin-top: 0;
        padding: 0;
        width: 100%;
    }

    .checkout-header .account-form-steps.open .customer.exist {
        font-size: 16px;
    }

    .checkout-header .account-form-steps.open .return-button {
        position: static;
        padding: 0 15px 0 0;
        height: 22px;
    }

    .checkout-header .account-form-steps.open .close-sidebar {
        margin: 0;
        position: relative;
        height: 22px;
        display: block;
        padding: 0;
        right: -7px;
        top: -1px;
        width: 22px;
    }

        .checkout-header .account-form-steps.open .close-sidebar:after, .checkout-header .account-form-steps.open .close-sidebar:before {
            height: 15px;
            top: 3px;
            right: 10px;
        }

.order-confirmation-page .royalty-club-title {
    color: #002739;
    font-family: DMSans-SemiBold;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: .4px;
    margin-top: 23px;
    margin-bottom: 5px;
}

.order-confirmation-page .label-checkbox {
    color: #002739;
    font-size: 15px;
    letter-spacing: .16px;
}

.order-confirmation-page .order-confirmation-form .field-wrapper {
    margin: 0 0 14px;
    padding: 0;
}

    .order-confirmation-page .order-confirmation-form .field-wrapper .message-root .root_error {
        padding-bottom: 10px;
    }

.order-confirmation-page .order-confirmation-form .icon-checkbox, .order-confirmation-page .order-confirmation-form input[type=checkbox] {
    height: 21px;
    width: 21px;
    margin-top: 5px;
}

.order-confirmation-page .order-confirmation-form .root-checkbox {
    margin: 0 0 15px;
    align-items: flex-start;
}

.order-confirmation-page .order-confirmation-form .month-day-wrapper {
    margin-bottom: 17px;
}

.co-privacy-policy {
    margin-bottom: 20px;
    color: #4e87a0;
}

    .co-privacy-policy a {
        font-family: $header_font;
        padding: 0;
        letter-spacing: normal;
    }

        .co-privacy-policy a, .co-privacy-policy a:hover {
            color: #4e87a0;
            text-decoration: underline;
        }

.policy-error {
    color: #b30015;
    margin-bottom: 20px;
    font-size: 12px;
}

    .policy-error a {
        border-bottom: 1px solid #b30015;
        color: #b30015;
        font-family: $text_font;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0px;
    }

        .policy-error a:focus, .policy-error a:hover {
            color: #b30015;
        }

    .policy-error.store-us {
        margin-top: 10px;
    }

.paypal-payment-button .paypal-billing {
    margin-top: 25px;
}

.paypal-payment-button .paypal-error {
    padding: 0 0 15px;
}

.checkout-page .royalty-club-title {
    color: #002739;
    font-family: DMSans-SemiBold;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: .4px;
    margin-top: 23px;
    margin-bottom: 5px;
}

.checkout-page .root-checkbox {
    margin: 0 0 15px;
    align-items: flex-start;
}

.checkout-page .label-checkbox {
    color: #002739;
    font-size: 15px;
    letter-spacing: .16px;
}

.checkout-page .icon-checkbox, .checkout-page input[type=checkbox] {
    height: 21px;
    width: 21px;
    margin-top: 5px;
}

.checkout-page .paypal-confirmation-page .co-privacy-policy {
    margin-top: 0;
    margin-bottom: 0;
}

.checkout-page .paypal-confirmation-page .left-column > h2 {
    text-transform: capitalize;
}

.checkout-page .empty-cart {
    margin-top: 50px;
}

    .checkout-page .empty-cart .text {
        font-family: $header_font,sans-serif;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
    }

.checkout-page .gift-cart-applied .gift-card-value {
    margin: 0;
}

.checkout-page .discount-coupon-form .collapsible-wrapper, .checkout-page .promo-block-checkout .collapsible-wrapper {
    width: 100%;
}

.checkout-page .discount-coupon-form .coupon-error, .checkout-page .promo-block-checkout .coupon-error {
    padding-top: 10px;
}

.checkout-page .checkout-estimated-wrapper {
    margin: 0 -30px 20px;
    padding: 15px 30px;
}

    .checkout-page .checkout-estimated-wrapper .estimated-block {
        font-size: 16px;
        line-height: 1.625;
        letter-spacing: normal;
    }

    .checkout-page .checkout-estimated-wrapper .order-summary-header .title {
        text-transform: capitalize;
    }

.checkout-page .free-checkout-message {
    background: #f6f3ee;
    font-weight: 400;
    font-family: DMSans-SemiBold;
    padding: 15px;
}

.checkout-page .root_error {
    color: #b30015;
}

.checkout-page .saved-payment-methods .apollo-error {
    display: none;
}

.checkout-page .checkout-account-form > .field-wrapper:first-child .root_error {
    position: relative;
    bottom: 0;
}

.checkout-page .address-validation-wrapper.loadingMutation .address-validation-loading, .checkout-page .loading-or-form .loding-inicator-container {
    background: rgba(255,252,248,.78) none no-repeat scroll 0 0;
}

.checkout-page .shipping-method-form {
    max-width: 450px;
}

    .checkout-page .shipping-method-form .loading-or-form .loding-inicator-container {
        background: rgba(255,252,248,.78) none no-repeat scroll 0 0;
    }

    .checkout-page .shipping-method-form .shipping-method span:first-of-type {
        font-weight: 400;
        font-family: DMSans-SemiBold;
    }

.checkout-page .checkout-footer {
    position: relative;
}

.checkout-page .address-validation .address-validation-info {
    background-color: #f6f3ee;
    border-color: hsla(0,0%,59.2%,.5);
}

    .checkout-page .address-validation .address-validation-info strong {
        font-weight: 400;
        font-family: DMSans-SemiBold;
    }

    .checkout-page .address-validation .address-validation-info a {
        border-bottom: 1px solid #002739;
        padding: 0 0 3px;
        font-size: 16px;
        line-height: 22px;
        font-family: $text_font;
    }

        .checkout-page .address-validation .address-validation-info a strong {
            font-weight: 400;
            font-family: $text_font;
        }

.checkout-page .address-validation .address-suggestions a {
    border-bottom: 1px solid #002739;
}

    .checkout-page .address-validation .address-suggestions a strong {
        font-weight: 400;
    }

.checkout-page .tab-content {
    padding: 15px;
}

.checkout-page .payment-method-wrapper .should-save-credit-card .root-checkbox {
    margin: 0 10px 0 0;
}

.checkout-page .payment-method-wrapper .saved-cards .input-radio {
    margin-top: 0;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.checkout-page .payment-method-wrapper .saved-cards .icon-checkbox svg {
    margin: 0;
}

.checkout-page .payment-method-wrapper .saved-cards .root-radio {
    padding-left: 40px;
    position: relative;
}

.checkout-page .payment-method-wrapper .saved-cards .collapsible-wrapper .collapsible-inner {
    display: none;
}

.checkout-page .payment-method-wrapper .saved-cards .collapsible-wrapper.collapsible-wrapper--opened .collapsible-inner {
    display: block;
    overflow: auto;
}

.checkout-page .payment-method-wrapper .tab-content .fade.tab-pane {
    margin: 10px 0;
}

.checkout-page .payment-method-wrapper .nav-tabs .nav-item.active {
    border-bottom: 1px solid transparent;
}

.checkout-page .payment-method-wrapper .klarna-payment .root-radio-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkout-page .payment-method-wrapper .klarna-payment h2.billing-address-header {
    margin-top: 20px;
}

.checkout-page .left-column .payment-method-wrapper .nav-tabs .nav-item {
    padding: 12px 10px;
    font-size: 12px;
}

.checkout-page .tab-content .paypal-payment-button .undefined {
    line-height: 1;
}

.checkout-page .tab-content .paypal-payment-button a {
    margin-top: -13px;
    display: inline-block;
}

.checkout-page .order-confirmation-page .order-confirmation-form .ReactPasswordStrength .ReactPasswordStrength-strength-desc {
    top: 36px;
    right: 10px;
}

.checkout-page .order-confirmation-page .order-confirmation-form .ReactPasswordStrength .ReactPasswordStrength-strength-bar {
    bottom: auto;
    top: -11px;
    left: 1px;
}

.checkout-page .billing-address-header ~ form, .checkout-page .shipping-address-heading + form {
    max-width: 450px;
}

    .checkout-page .billing-address-header ~ form .field-wrapper, .checkout-page .shipping-address-heading + form .field-wrapper {
        position: relative;
    }

        .checkout-page .billing-address-header ~ form .field-wrapper .wrapping-svg, .checkout-page .shipping-address-heading + form .field-wrapper .wrapping-svg {
            position: absolute;
            top: 50px;
            right: 0;
        }

.checkout-page .address-block-group .col .btn.btn-secondary {
    white-space: normal;
}

.page .checkout-page .cart-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .page .checkout-page .cart-item:not(:last-child) {
        border-bottom: 1px solid hsla(0,0%,59.2%,.5);
    }

.page .checkout-page .cart-item-image img {
    max-width: 91px;
}

.page .checkout-page .cart-item-details {
    padding: 11px 0 0 18px;
    width: 75%;
}

.page .checkout-page .cart-item-data-inner {
    display: flex;
    flex-direction: column;
}

.page .checkout-page .cart-item-options .cart-item-option {
    display: block;
}

.checkout-page .checkout-estimated-wrapper {
    align-items: center;
    width: calc(100% + 60px);
}

    .checkout-page .checkout-estimated-wrapper .minicart-wrapper .cart-lbl {
        background-color: transparent;
    }

    .checkout-page .checkout-estimated-wrapper .order-summary-toggle {
        background: none;
        margin-bottom: 0;
        display: flex;
        position: relative;
        font-size: 0;
    }

        .checkout-page .checkout-estimated-wrapper .order-summary-toggle .shopping-cart {
            line-height: normal;
        }

        .checkout-page .checkout-estimated-wrapper .order-summary-toggle .cart-items-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-align: center;
        }

            .checkout-page .checkout-estimated-wrapper .order-summary-toggle .cart-items-wrapper .cart-items {
                font-size: 9px;
                line-height: 20px;
                letter-spacing: .45px;
                color: #032646;
                font-family: DMSans-Medium;
                display: block;
                padding-top: 4px;
            }

.checkout-page .left-column .coupon-form .promo-text-filed {
    padding: 0;
}

    .checkout-page .left-column .coupon-form .promo-text-filed input[type=text] {
        padding-right: 30px;
        max-width: inherit;
    }

.checkout-page .left-column .payment-method-wrapper .nav-tabs .nav-item {
    background-color: #f6f3ee;
}

    .checkout-page .left-column .payment-method-wrapper .nav-tabs .nav-item.active, .checkout-page .left-column .payment-method-wrapper .tab-content .tab-pane {
        background-color: #fff;
    }

.checkout-page .left-column .payment-method-wrapper .tab-content .collapsible-wrapper {
    padding-top: 15px;
}

    .checkout-page .left-column .payment-method-wrapper .tab-content .collapsible-wrapper .collapsible-title {
        font-family: DMSans-SemiBold;
        text-transform: uppercase;
        letter-spacing: 1.27px;
        line-height: 21px;
    }

.checkout-page .left-column .payment-method-wrapper .tab-content #braintree-dropin-container .braintree-large-button {
    font-family: DMSans-SemiBold;
    background: transparent;
    color: #002739;
    border: 1px solid #0e223a;
    border-radius: 2px;
    text-transform: uppercase;
    padding-bottom: .6rem;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 26px;
    padding-top: .7rem;
    transition: all .2s ease-in;
    -ms-transition: all .2s ease-in .2s ease-out;
    -moz-transition: all .2s ease-in .2s ease-out;
    -webkit-transition: all .2s ease-in ease-out .2s;
    transition: all .2s ease-in ease-out .2s;
}

@media (prefers-reduced-motion:reduce) {
    .checkout-page .left-column .payment-method-wrapper .tab-content #braintree-dropin-container .braintree-large-button {
        transition: none;
    }
}

.checkout-page .left-column .payment-method-wrapper .tab-content #braintree-dropin-container .braintree-large-button:hover {
    background: #002739;
    color: #fff;
    border-color: #002739;
    text-decoration: none;
}

.checkout-page .left-column .payment-method-wrapper .tab-content #braintree-dropin-container .braintree-large-button:focus {
    background: #002739;
    color: #fff;
    border-color: #002739;
    box-shadow: 0 0 4px 2px rgba(0,148,223,.77);
}

.checkout-page .left-column .payment-method-wrapper .tab-content #braintree-dropin-container .braintree-large-button span {
    border-bottom: 0;
    padding-bottom: 0;
}

.checkout-page .checkout-account-signed-in.step-title {
    margin-bottom: 10px;
}

.checkout-page .checkout-container h2.step-subtitle, .checkout-page h2.step-title {
    font-size: 28px;
    line-height: 1.625;
    text-transform: capitalize;
}

.checkout-page .checkout-container .step-subtitle {
    text-transform: capitalize;
}

.checkout-page .coupon-form {
    width: 100%;
}

    .checkout-page .coupon-form .collapsible-wrapper {
        width: 100%;
        margin-bottom: 0;
        padding-top: 15px;
    }

    .checkout-page .coupon-form .discount-coupon-form button.btn-primary {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9'%3E%3Cpath d='M12.848 4.07L9.598.245a.727.727 0 00-.983-.095.689.689 0 00-.098.953l2.314 2.723H.696A.686.686 0 000 4.5c0 .373.312.675.696.675h10.135L8.517 7.898c-.232.274-.18.722.098.953.286.238.751.18.983-.095l3.25-3.827c.212-.288.194-.58 0-.858z' fill='%23393838' fill-rule='nonzero'/%3E%3C/svg%3E");
        background-color: transparent;
        background-repeat: no-repeat;
        border: 0;
        font-size: 0;
        width: 14px;
        height: 10px;
        top: 18px;
    }

        .checkout-page .coupon-form .discount-coupon-form button.btn-primary:focus, .checkout-page .coupon-form .discount-coupon-form button.btn-primary:hover {
            background-color: transparent;
            border: transparent;
        }

    .checkout-page .coupon-form .promo-text-filed {
        position: relative;
    }

        .checkout-page .coupon-form .promo-text-filed .label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        .checkout-page .coupon-form .promo-text-filed .btn {
            width: 122px;
            position: absolute;
            margin: 0;
            right: 0;
            top: 0;
        }

        .checkout-page .coupon-form .promo-text-filed .input-block input {
            padding-right: 122px;
        }

        .checkout-page .coupon-form .promo-text-filed .note {
            display: block;
            margin: 7px 0 0;
        }

        .checkout-page .coupon-form .promo-text-filed .message {
            padding: 0;
        }

        .checkout-page .coupon-form .promo-text-filed .coupon-error {
            padding: 8px 0 0 27px;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            position: relative;
            font-size: 12px;
        }

            .checkout-page .coupon-form .promo-text-filed .coupon-error:before {
                content: "";
                position: absolute;
                width: 9px;
                height: 9px;
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' fill='%23B70020' stroke='%23B70020'%3E%3Cpath fill-rule='evenodd' d='M8.772 7.67A.78.78 0 017.67 8.772L4.5 5.602l-3.17 3.17a.776.776 0 01-1.102 0 .779.779 0 010-1.102l3.17-3.17-3.17-3.17A.78.78 0 011.33.228l3.17 3.17L7.67.228A.78.78 0 018.772 1.33L5.602 4.5l3.17 3.17z' stroke='none'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                left: 0;
                top: 13px;
            }

            .checkout-page .coupon-form .promo-text-filed .coupon-error svg {
                margin: 0 7px 0 0;
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                overflow: hidden;
                clip: rect(0,0,0,0);
                white-space: nowrap;
                border: 0;
            }

    .checkout-page .coupon-form .applied-coupon, .checkout-page .coupon-form .applied-gift-success {
        color: #054f70;
        font-size: 12px;
        font-family: $header_font;
        line-height: 22px;
    }

        .checkout-page .coupon-form .applied-coupon svg, .checkout-page .coupon-form .applied-gift-success svg {
            stroke: #054f70;
            margin-right: 16px;
            width: 13px;
            stroke-width: 3px;
        }

    .checkout-page .coupon-form .see-balance-gift .btn {
        min-width: 0;
        width: auto;
    }

    .checkout-page .coupon-form .discount-coupon-form .btn {
        height: auto;
        margin: 0;
    }

.checkout-page .shipping-method-form .shipping-method {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .checkout-page .shipping-method-form .shipping-method label {
        width: 100%;
    }

        .checkout-page .shipping-method-form .shipping-method label span:not(:first-of-type) {
            margin-left: 0;
        }

        .checkout-page .shipping-method-form .shipping-method label span {
            margin-left: 0;
            width: 35%;
            display: inline-block;
            vertical-align: top;
        }

            .checkout-page .shipping-method-form .shipping-method label span:first-of-type {
                width: 25%;
                padding-left: 10px;
            }

            .checkout-page .shipping-method-form .shipping-method label span.shipping-method-title {
                white-space: normal;
                word-break: break-word;
                padding-right: 5px;
            }

    .checkout-page .shipping-method-form .shipping-method .optionContainer {
        align-items: flex-start;
    }

.checkout-page header.checkout-header .header-logo .logo svg {
    color: #002739;
    height: auto;
    fill: currentColor;
    width: 120px;
}

.checkout-page .account-form-link .btn-link {
    min-width: 0;
}

.checkout-page .customCheck .field-wrapper {
    align-items: center;
}

.checkout-page .checkout-account-signed-in .button-container {
    display: flex;
    align-items: center;
}

    .checkout-page .checkout-account-signed-in .button-container .step-btn-block {
        display: flex;
    }

.checkout-page .button-container {
    display: flex;
    align-items: center;
}

.checkout-page .entered-shipping-address a {
    border-bottom: 1px solid #002739;
}

.checkout-page .braintree-sheet__content--form .braintree-form__field-group .braintree-form__field .braintree-form__hosted-field {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-color: #42413d;
}

.checkout-page .checkout-container .field-wrapper .root_error .field-required-error {
    font-size: 12px;
    font-family: DMSans-Light;
    line-height: 19px;
    color: #b30015;
    width: 100%;
    text-transform: none;
    margin-top: 3px;
    padding-left: 5px;
    position: relative;
}

    .checkout-page .checkout-container .field-wrapper .root_error .field-required-error:before {
        position: absolute;
        left: 0;
        top: 0;
        content: "*";
    }

.checkout-page .address-suggestions .highlight span {
    display: inline-block;
    background: #ccc;
}

.checkout-page .address-suggestions p {
    width: 100%;
}

.checkout-page .applied-gift-success {
    margin-top: 10px;
}

.checkout-page .collapsible-title h2 {
    text-align: left;
    padding-bottom: 25px;
}

    .checkout-page .collapsible-title h2 br {
        display: none;
    }

.checkout-page .num-items {
    text-align: left;
    font-weight: 400;
    font-family: DMSans-SemiBold;
    line-height: 21px;
    text-transform: uppercase;
    letter-spacing: 1.27px;
}

    .checkout-page .num-items b {
        font-weight: 400;
    }

.checkout-page .checkout-estimated-wrapper {
    background: #f6f3ee;
}

    .checkout-page .checkout-estimated-wrapper .order-summary-header {
        background: #f6f3ee;
        padding: 20px 30px 15px;
        max-width: 415px;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
    }

        .checkout-page .checkout-estimated-wrapper .order-summary-header .title {
            text-align: left;
            padding-bottom: 0;
            padding-top: 0;
            margin: 0;
            font-family: $text_font-Thin;
        }

.checkout-page .checkout-summary-block .address-label {
    font-weight: 400;
    letter-spacing: normal;
    font-size: 28px;
    line-height: 36px;
}

.checkout-page .checkout-summary-block .price-line {
    font-family: DMSans-Light;
    font-size: 15px;
    letter-spacing: .29px;
    line-height: 20px;
    margin-top: 5px;
}

    .checkout-page .checkout-summary-block .price-line i {
        font-style: normal;
    }

.checkout-page .checkout-summary-block .shipping-address-container address {
    line-height: 1.625;
}

.checkout-page .checkout-container .address-block-group .col {
    background-color: #f6f3ee;
    border-width: 1px;
}

.checkout-page .collapsible-wrapper .collapsible-arrow {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 5.85'%3E%3Cpath fill='none' stroke-linejoin='round' stroke='%23000' d='M.35.35l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: 50%;
}

.checkout-page .cart-item-qty {
    margin: 7px 0;
}

.checkout-page .divider {
    display: none;
}

.checkout-page .checkout-summary-block .collapsible-arrow {
    margin: 0;
}

.checkout-page .cart-item .cart-item-details .cart-item-data {
    position: static;
}

.checkout-page .cart-item .cart-item-details .cart-item-sku {
    display: none;
}

.checkout-page .cart-item .cart-item-details .cart-item-price-wrapper {
    float: none;
    margin: 0;
}

.checkout-page .cart-item .cart-item-details .cart-item-name {
    padding: 0;
    max-width: 100%;
}

    .checkout-page .cart-item .cart-item-details .cart-item-name a {
        font-weight: 400;
        font-size: 16px;
        letter-spacing: .31px;
        font-family: DMSans-Medium;
        color: #002739;
        line-height: 20px;
    }

.checkout-page .cart-item .cart-item-details .cart-item-price-wrapper .cart-item-price {
    letter-spacing: .5px;
    clear: left;
    font-family: $text_font;
    font-size: 16px;
    line-height: inherit;
}

    .checkout-page .cart-item .cart-item-details .cart-item-price-wrapper .cart-item-price b {
        font-weight: 400;
    }

.checkout-page .cart-item .price-variant-wrap {
    display: flex;
    align-items: center;
}

    .checkout-page .cart-item .price-variant-wrap .label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }

    .checkout-page .cart-item .price-variant-wrap .values {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: .24px;
        font-family: $text_font-LightItalic;
        font-weight: 400;
        padding-left: 15px;
    }

.checkout-page .collapsible-toggle {
    border: 0;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    justify-content: space-between;
}

    .checkout-page .collapsible-toggle .collapsible-arrow-wrapper {
        position: static;
    }

    .checkout-page .collapsible-toggle .collapsible-title br {
        display: none;
    }

.checkout-page .account-form .checkout-page-header.page-header .account-form-steps {
    max-width: 413px;
    width: 100%;
}

.checkout-page .account-form .checkout-page-header .actions-toolbar {
    display: block;
}

.checkout-page .account-form .checkout-page-header .header .title {
    width: 100%;
}

.checkout-page .account-form .checkout-page-header .account-form-steps .month-day-wrapper {
    display: block;
}

    .checkout-page .account-form .checkout-page-header .account-form-steps .month-day-wrapper .field-wrapper {
        width: 100%;
    }

        .checkout-page .account-form .checkout-page-header .account-form-steps .month-day-wrapper .field-wrapper:first-child {
            margin-right: 0;
            width: 100%;
        }

    .checkout-page .account-form .checkout-page-header .account-form-steps .month-day-wrapper select.input-select {
        font-size: 15px;
        color: #002739;
        line-height: 25px;
        letter-spacing: normal;
        height: 49px;
        border: 1px solid #42413d;
        padding: 7px 33px 5px 18px;
    }

.checkout-page .account-form .checkout-page-header .loyalty-register-form .account-login-form .title {
    color: #002739;
    font-family: DMSans-Medium;
    font-size: 14px;
    line-height: normal;
    letter-spacing: .05px;
    margin-top: 23px;
    margin-bottom: 13px;
    padding-right: 15px;
}

.checkout-page .account-form .checkout-page-header .loyalty-register-form .root-checkbox {
    gap: .4rem;
    margin-bottom: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.checkout-page .account-form .checkout-page-header .loyalty-register-form .root-checkbox-wrapper .label-checkbox {
    color: #002739;
    font-family: DMSans-Light;
    line-height: 1.46;
    font-size: 13px;
}

    .checkout-page .account-form .checkout-page-header .loyalty-register-form .root-checkbox-wrapper .label-checkbox a {
        color: #002739;
        font-size: 13px;
        font-family: DMSans-Light;
        line-height: 1.46;
        letter-spacing: normal;
        text-decoration: underline;
    }

.checkout-page .account-form .checkout-page-header .icon-checkbox, .checkout-page .account-form .checkout-page-header input[type=checkbox] {
    width: 21px;
    height: 21px;
}

.checkout-page .checkout-header .loyalty-welcome-gift .header .title {
    width: 100%;
}

.giftcard-info {
    font-size: 14px;
    margin: 10px 0;
}

    .giftcard-info .giftcard-details {
        display: block;
        height: 70px;
        overflow: hidden;
    }

        .giftcard-info .giftcard-details:last-child {
            margin-bottom: 0;
        }

        .giftcard-info .giftcard-details .giftcard-label, .giftcard-info .giftcard-details .giftcard-values {
            display: block;
        }

        .giftcard-info .giftcard-details .giftcard-label {
            font-weight: 400;
            font-family: DMSans-SemiBold;
        }

        .giftcard-info .giftcard-details .giftcard-values {
            overflow-x: scroll;
            overflow-y: hidden;
            padding-bottom: 100px;
        }

            .giftcard-info .giftcard-details .giftcard-values.gift-msg {
                word-break: break-word;
            }

        .giftcard-info .giftcard-details.gift-msg {
            height: auto;
            overflow: inherit;
        }

            .giftcard-info .giftcard-details.gift-msg .giftcard-values {
                padding-bottom: 15px;
                overflow: inherit;
            }

.checkout-summary-block .giftcard-info .giftcard-details, .minicart .giftcard-info .giftcard-details {
    width: 155px;
}

.checkout-agreements-modal .close {
    font-size: 0;
}

.password-remind {
    border-bottom: 1px solid #002739;
}

.address-block-group .btn {
    min-width: 0;
    width: 100%;
}

.checkout-summary-block .edit-link-button {
    min-width: 0;
}

.checkout-agree-label {
    display: none;
}

.other-payment-method-options {
    padding-bottom: 15px;
}

    .other-payment-method-options .other-payment-method-label {
        padding-bottom: 15px;
        line-height: 1;
    }

.payment-method-wrapper .saved-cards svg {
    margin: 0 6px 0 0;
}

.checkout-container .step-btn-block .btn {
    min-width: 0;
}

.checkout-container .radioButtonOuter {
    line-height: 13px;
    margin-right: 13px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: 1px solid #42413d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    top: 0;
}

    .checkout-container .radioButtonOuter .activeRadio {
        border-radius: 50%;
        position: relative;
        background-color: #004f71;
    }

.checkout-container .shipping-address-btn-block.step-btn-block .btn-link {
    width: auto;
}

.newsletter-checkbox .privacy-link {
    border-bottom: 1px solid #002739;
}

@media screen and (max-width:767px) {
    .checkout-page .billing-address-header ~ form .field-wrapper input[name=telephone], .checkout-page .shipping-address-heading + form .field-wrapper input[name=telephone] {
        width: 93%;
    }

    .checkout-page .radioButtonOuter {
        height: 24px;
        min-width: 24px;
        width: 24px;
    }

        .checkout-page .radioButtonOuter .activeRadio {
            height: 24px;
            width: 24px;
        }

            .checkout-page .radioButtonOuter .activeRadio:after {
                content: "";
                display: block;
                background-color: #fff;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                margin-top: -3px;
                margin-left: -3px;
                position: absolute;
                top: 50%;
                left: 50%;
            }

    .checkout-page .customCheck input[type=checkbox]:checked:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.81 10.39'%3E%3Cpath d='M4.1 10.07L.3 6.13a.91.91 0 010-1.25.84.84 0 011.22 0l3.19 3.31L12.3.32a.84.84 0 011.22 0 .93.93 0 010 1.26l-8.21 8.49a.79.79 0 01-.6.26.83.83 0 01-.61-.26z' fill='%23fff' stroke='%23fff' stroke-width='.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        left: 4px;
        top: 6px;
    }

    .checkout-page .checkout-summary-block .address-label {
        font-size: 22px;
    }

    .checkout-summary-block .collapsible-wrapper {
        padding: 0 0 17px;
    }

    .checkout-estimated-wrapper .order-summary-header .title {
        font-size: 18px;
        padding: 7px 0 0;
    }

    .collapsible-wrapper .collapsible-title h2 {
        font-size: 18px;
    }

    .collapsible-wrapper .collapsible-title .num-items {
        clear: both;
    }

    .paypal-confirmation-page .checkout-container .cart-info {
        position: static;
        max-width: 100%;
        transform: none;
        -webkit-transform: none;
    }

    .checkout-page .checkout-container .cart-info {
        max-width: 415px;
        background: #f6f3ee;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 60px;
    }

    .checkout-page .checkout-container .collapsible-title h2 {
        display: none;
    }

    .checkout-page .checkout-estimated-wrapper .order-summary-header .close {
        position: relative;
        margin: 0;
        padding: 0;
        border: 0;
    }

        .checkout-page .checkout-estimated-wrapper .order-summary-header .close:after, .checkout-page .checkout-estimated-wrapper .order-summary-header .close:before {
            background-color: #002739;
            height: 13px;
            top: 9px;
            width: 1px;
        }

    .checkout-page .paypal-confirmation-page .checkout-container .cart-info {
        max-width: inherit;
        width: 100%;
    }
}

@media screen and (min-width:768px) {
    .checkout-header .global-alert {
        padding: 0 0 0 12px;
    }

    .checkout-page .collapsible-wrapper {
        padding: 28px 20px 17px;
    }

    .checkout-page .billing-address-header ~ form .field-wrapper .wrapping-svg, .checkout-page .shipping-address-heading + form .field-wrapper .wrapping-svg {
        right: -30px;
    }

    .checkout-page .customCheck input[type=checkbox]:checked:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.24 6.96'%3E%3Cpath d='M3.15 6.91a.58.58 0 01-.4-.17L.22 4.11a.6.6 0 010-.84.55.55 0 01.8 0l2.13 2.21L8.22.23a.53.53 0 01.8 0 .59.59 0 010 .83L3.56 6.74a.6.6 0 01-.41.17' fill='%23fff' stroke='%23fff' stroke-width='.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .checkout-page .radioButtonOuter {
        height: 16px;
        min-width: 16px;
        width: 16px;
    }

        .checkout-page .radioButtonOuter .activeRadio {
            height: 16px;
            width: 16px;
        }

            .checkout-page .radioButtonOuter .activeRadio:after {
                content: "";
                display: block;
                background-color: #fff;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
            }

    .checkout-page .checkout-summary-block .price-line span:first-child {
        max-width: 75%;
        text-align: right;
    }

    .checkout-page .shipping-method-form .shipping-method .radioButtonOuter {
        margin-top: 3px;
    }

    .checkout-page .payment-method-wrapper .saved-cards .root-radio {
        padding-left: 30px;
    }

    .checkout-page .payment-method-wrapper .saved-cards .input-radio {
        top: 4px;
    }

    .checkout-page .progress-container .connection-line {
        max-width: 50px;
    }

    .checkout-page .progress-container button {
        font-size: 12px;
        line-height: 25px;
    }

    .checkout-header .account-form-steps {
        max-width: 100%;
    }
}

@media screen and (min-width:1024px) {
    .checkout-page .submit-braintree-method {
        display: block;
    }

    .checkout-page .address-block-group div.col {
        max-width: 48%;
    }
}

@media screen and (max-width:413px) {
    .checkout-page .checkout-container .address-block-group .col {
        max-width: 100%;
    }

    .checkout-page .left-column .payment-method-wrapper .nav-tabs .nav-item {
        padding: 12px 5px;
        font-size: 10px;
    }
}

@media screen and (max-width:767px) {
    .checkout-page .coupon-form .promo-text-filed .coupon-error {
        padding-left: 22px;
    }

    .checkout-page .payment-method-wrapper .klarna-payment .payment-method input[type=radio] {
        min-width: 24px;
    }
}

@media screen and (min-width:768px) {
    .checkout-page .payment-method-wrapper .klarna-payment .payment-method input[type=radio] {
        min-width: 16px;
    }
}

@media screen and (max-width:1023px) {
    .checkout-page div.checkout-password-form .actions-toolbar {
        flex-direction: column;
        margin-bottom: 20px;
    }

        .checkout-page div.checkout-password-form .actions-toolbar .password-remind {
            margin-left: 0;
        }
}

@media screen and (max-width:1280px) {
    .checkout-page .left-column .payment-method-wrapper .nav-tabs .nav-item {
        min-width: inherit;
    }
}

@media screen and (min-width:480px) {
    .checkout-summary-block .giftcard-info .giftcard-details, .minicart .giftcard-info .giftcard-details {
        width: 245px;
    }
}

@media screen and (min-width:768px) {
    .checkout-summary-block .giftcard-info .giftcard-details {
        width: 160px;
    }
}

@media screen and (min-width:1024px) {
    .checkout-header .account-form-steps {
        padding: 22px 30px 20px;
        max-width: 415px;
    }

    .checkout-page .progress-container .connection-line {
        max-width: 80px;
    }

    .checkout-page .progress-container button {
        font-size: 16px;
        line-height: inherit;
    }

    .checkout-page .left-column .payment-method-wrapper .nav-tabs .nav-item {
        padding: 12px 15px;
        font-size: 14px;
    }

    .checkout-summary-block .giftcard-info .giftcard-details {
        width: 260px;
    }
}

@media screen and (min-width:1280px) {
    .checkout-summary-block .giftcard-info .giftcard-details {
        width: 345px;
    }
}

@media screen and (min-width:1440px) {
    .checkout-summary-block .giftcard-info .giftcard-details {
        width: 360px;
    }
}

header .subCat {
    background: #fff;
    display: none;
}

@media screen and (max-width:1023px) {
    .pm-open {
        height: 100%;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .page-overlay .menu-container {
        z-index: 3;
    }

    .page-overlay .hamburger-icon {
        z-index: 0;
    }

    .nav-menu-wrapper .menu-container {
        background: #fff;
    }

    .page-overlay .page-header {
        position: static;
    }

    .device-sub-menu .accordion {
        border: 0;
        padding: 0 0 0 4px;
    }

        .device-sub-menu .accordion .collapse ul, .device-sub-menu .accordion .collapsing ul {
            padding-right: 0;
            padding-bottom: 0;
            padding-top: 9px;
        }

        .device-sub-menu .accordion ul li {
            display: flex;
            align-items: center;
            padding-bottom: 6px;
        }

            .device-sub-menu .accordion ul li a {
                font-size: 17px;
                line-height: 24px;
                font-family: $header_font;
                padding: 0;
                word-break: break-word;
                white-space: pre-wrap;
            }

                .device-sub-menu .accordion ul li a.no-flag {
                    padding-left: 33px;
                }

            .device-sub-menu .accordion ul li svg {
                min-width: 18px;
                margin-right: 15px;
            }

                .device-sub-menu .accordion ul li svg image {
                    height: auto;
                }

        .device-sub-menu .accordion button {
            display: flex;
            align-items: center;
            padding: 0;
            background: transparent;
            font-size: 17px;
            line-height: 24px;
        }

            .device-sub-menu .accordion button:focus {
                outline: none;
            }

            .device-sub-menu .accordion button svg {
                margin-right: 15px;
            }

            .device-sub-menu .accordion button:after {
                content: "";
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 5.85'%3E%3Cpath fill='none' stroke-linejoin='round' stroke='%23000' d='M.35.35l5 5 5-5'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-size: 12px 12px;
                background-position: 50%;
                margin-left: 7px;
                display: block;
                width: 12px;
                height: 12px;
                -ms-transition: all .25s ease-in;
                -moz-transition: all .25s ease-in;
                -webkit-transition: all .25s ease-in;
                transition: all .25s ease-in;
            }

            .device-sub-menu .accordion button.expanded:after {
                -webkit-transform: rotate(-180deg);
                -moz-transform: rotate(-180deg);
                -ms-transform: rotate(-180deg);
                -o-transform: rotate(-180deg);
                transform: rotate(-180deg);
            }

    .page-header {
        background: #fff;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        z-index: 999;
    }

        .page-header .subCat {
            width: 100%;
            height: 0;
            overflow: hidden;
            opacity: 0;
            -ms-transition: all .5s ease-in;
            -moz-transition: all .5s ease-in;
            -webkit-transition: all .5s ease-in;
            transition: all .5s ease-in;
            margin-left: 10px;
        }

    .menu-container {
        background: #fff;
        -ms-transition: left .5s ease;
        -moz-transition: left .5s ease;
        -webkit-transition: left .5s ease;
        transition: left .5s ease;
        position: fixed;
        padding: 41px 41px 50px;
        top: 59px;
        height: calc(100% - 50px);
        overflow: auto;
        left: -200vw;
        width: 100vw;
        z-index: 1;
    }

    .pm-cms-links {
        margin: 0;
        padding-top: 32px;
    }

    .MenuWrapper .menu-item.level-1 {
        padding-top: 11px;
        padding-bottom: 14px;
    }

        .MenuWrapper .menu-item.level-1 .levelTop {
            font-family: $text_font-Thin;
            font-weight: 400;
            font-size: 30px;
            line-height: 35px;
            letter-spacing: normal;
            text-transform: none;
        }

        .MenuWrapper .menu-item.level-1 .subCatWrapper .SubCategoryList .SubCategoryListHeading {
            text-decoration: none;
        }

            .MenuWrapper .menu-item.level-1 .subCatWrapper .SubCategoryList .SubCategoryListHeading:active {
                background-color: #d3d3d3;
            }

        .MenuWrapper .menu-item.level-1 .subCatWrapper .SubCategoryList ul li a {
            margin-left: 15px;
        }

            .MenuWrapper .menu-item.level-1 .subCatWrapper .SubCategoryList ul li a:active {
                background-color: #d3d3d3;
            }

    .subcat-select-top-2 button.menu-back, .subcat-select-top button.menu-back {
        position: relative;
        left: -17px;
    }

    .subcat-select-top-2 .menu-back svg, .subcat-select-top .menu-back svg {
        margin-top: 4px;
    }

    .subcat-select-top-2 .menu-back h2, .subcat-select-top .menu-back h2 {
        margin-left: -4px;
    }

    .menu-item.open .subCat {
        width: 100%;
        height: auto;
        overflow: visible;
        opacity: 1;
    }

    .category-menu-container [class^=columnGroup-root] {
        flex-direction: column;
        flex-direction: row;
        flex-wrap: wrap;
        flex-basis: 100%;
    }

    .pushmenu-column {
        flex-basis: 100%;
    }

    .MegaMenu .mob-only {
        display: block;
    }

    .MegaMenu .desktop-only {
        display: none;
    }

    .MegaMenu .hamburger-icon {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.01 12.61'%3E%3Cpath fill='none' stroke='%230e223a' stroke-width='1.8' d='M.78.75c1.13 1.91 3.18 2.86 6.13 2.86C11.35 3.61 12.3.9 17.4.9a15.38 15.38 0 014.35.75M.78 8.85c1.13 1.91 3.18 2.86 6.13 2.86C11.35 11.71 12.3 9 17.4 9a15.38 15.38 0 014.35.75'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: top 5px left 3px;
        background-size: 24px 13px;
        display: block;
    }

        .MegaMenu .hamburger-icon span {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

    .MegaMenu.open .hamburger-icon {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.11 8.11'%3E%3Cg fill='none' stroke='%230e223a' stroke-width='.55'%3E%3Cpath d='M.19.19l7.72 7.72M7.91.19L.19 7.91'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 15px;
    }

    .pm-level2-category {
        padding-top: 22px;
    }

        .pm-level2-category .subcat-select-top-2 {
            padding: 0;
        }

            .pm-level2-category .subcat-select-top-2 h2 {
                font-size: 18px;
                line-height: 24px;
                font-family: $text_font-Regular;
                padding-top: 12px;
                padding-bottom: 14px;
                margin: 0;
                border: 0;
                letter-spacing: normal;
            }

            .pm-level2-category .subcat-select-top-2 [class^=buttons-root] > div:first-child {
                display: none;
            }

    .mob-only-shop-all-2 .btn-link {
        font-size: 18px;
        line-height: 24px;
        font-family: $text_font-Regular;
        margin: 0;
        padding-top: 12px;
        padding-bottom: 14px;
        border: 0;
        letter-spacing: normal;
    }

    .subcat-select-top .menu-back h2 {
        font-size: 30px;
        line-height: 34px;
        margin: 0 0 0 -4px;
    }

    .subcat-select-top-2 {
        padding-top: 12px;
    }

        .subcat-select-top-2 [class^=buttons-root] {
            padding-top: 10px;
        }

        .subcat-select-top-2 h2 {
            font-size: 30px;
            line-height: 34px;
            margin: 0;
        }

        .subcat-select-top-2 .btn-link {
            font-size: 18px;
            font-family: $text_font-Regular;
            padding-top: 12px;
            padding-bottom: 14px;
        }

        .pm-cms-links .btn-link, .subcat-select-top-2 .btn-link {
            line-height: 24px;
            margin: 0;
            border: 0;
            letter-spacing: normal;
        }

    .pm-cms-links .btn-link {
        font-size: 17px;
        font-family: $header_font;
        padding: 0 0 0 37px;
        position: relative;
    }

    .pm-cms-links .account-form-link .btn-link {
        padding: 0;
    }

    .pm-cms-links [class^=buttons-root] > div {
        padding-bottom: 9px;
        margin: 0;
    }

    .pm-cms-links .account-form {
        padding-bottom: 9px;
    }

    .pm-cms-links .pm-consult-link .btn-link:before, .pm-cms-links .pm-customer-care-link .btn-link:before, .pm-cms-links .pm-store-link .btn-link:before {
        background-position: 0 0;
        content: "";
        display: block;
        position: absolute;
        background-repeat: no-repeat;
        left: 4px;
    }

    .pm-cms-links .pm-store-link .btn-link:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.2 17.77'%3E%3Ccircle fill='none' stroke='%230e223a' stroke-width='1.4' cx='7.6' cy='7.53' r='1'/%3E%3Cpath fill='none' stroke='%230e223a' stroke-width='1.4' d='M7.6 16.86c4.62-3.9 6.9-7.08 6.9-9.45A6.8 6.8 0 007.6.7 6.8 6.8 0 00.7 7.41c0 2.37 2.28 5.55 6.9 9.45z'/%3E%3C/svg%3E");
        background-size: 16px 20px;
        height: 20px;
        top: 4px;
        width: 16px;
    }

    .pm-cms-links .pm-consult-link .btn-link:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.2 15.32'%3E%3Cpath fill='%23002739' d='M3.6 4.6h8v1h-8zM3.6 7.6h4v1h-4z'/%3E%3Cpath fill='none' stroke='%230e223a' stroke-width='1.2' d='M4.94 14.6h0c.08-.05.76-.8 2.05-2.25h7.61V.6H.6v11.74h2.6c1.1 1.46 1.68 2.26 1.74 2.26z'/%3E%3C/svg%3E");
        background-size: 16px 20px;
        height: 20px;
        top: 3px;
        width: 16px;
    }

    .pm-cms-links .pm-customer-care-link .btn-link:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 14'%3E%3Cpath fill='%23002739' d='M9.27 0H5.73A5.67 5.67 0 000 5.6v5.17h1.1v1.7A1.54 1.54 0 002.66 14a1.54 1.54 0 001.56-1.53V9.1a1.54 1.54 0 00-1.56-1.53A1.54 1.54 0 001.1 9.1V5.6a4.59 4.59 0 014.63-4.53h3.54A4.59 4.59 0 0113.9 5.6v3.5a1.56 1.56 0 00-3.12 0v3.37a1.56 1.56 0 003.12 0v-1.7H15V5.6A5.67 5.67 0 009.27 0z'/%3E%3C/svg%3E");
        background-size: 16px 20px;
        height: 20px;
        top: 1px;
        width: 16px;
    }
}

@media screen and (max-width:1023px) and (prefers-reduced-motion:reduce) {
    .device-sub-menu .accordion button:after, .menu-container, .page-header .subCat {
        transition: none;
    }
}

@media screen and (min-width:1024px) {
    .menu-item.level-1:hover .subCat {
        display: block;
    }

    .MenuWrapper .mob-only {
        display: none;
    }

    .MenuWrapper .menu-item.level-1 {
        padding: 0 8px;
    }

        .MenuWrapper .menu-item.level-1.active .levelTop {
            font-family: DMSans-SemiBold;
            letter-spacing: .5px;
        }

        .MenuWrapper .menu-item.level-1 .levelTop {
            color: #002739;
            display: block;
            border: 0;
            font-size: 14px;
            line-height: 26px;
            letter-spacing: .06em;
            font-family: DMSans-Light;
            padding-bottom: 0;
            text-align: center;
            text-transform: none;
            text-decoration: none;
            position: relative;
        }

            .MenuWrapper .menu-item.level-1 .levelTop:before {
                background: none;
                content: none;
            }

    .subCatWrapper .SubCategoryList {
        padding-left: 2%;
        width: 100%;
    }

        .subCatWrapper .SubCategoryList:first-child {
            padding-left: 0;
        }

        .subCatWrapper .SubCategoryList .SubCategoryListHeading {
            color: #002739;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: normal;
            line-height: 1.2;
            text-transform: uppercase;
            font-family: DMSans-SemiBold;
        }

        .subCatWrapper .SubCategoryList ul {
            height: 265px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: flex-start;
            align-content: stretch;
        }

            .subCatWrapper .SubCategoryList ul li {
                padding: 0 0 5px;
            }

            .subCatWrapper .SubCategoryList ul a {
                font-size: 13px;
                padding: 10px 0;
                display: block;
                color: #002739;
                letter-spacing: .008em;
                font-family: $header_font;
                text-align: left;
                text-transform: none;
            }

                .subCatWrapper .SubCategoryList ul a:focus, .subCatWrapper .SubCategoryList ul a:hover {
                    text-decoration: none;
                }

    .menu-container [class^=columnGroup-root] h2 {
        font-family: $text_font-Regular;
        font-size: 18px;
        line-height: 24px;
        padding-top: 13px;
        padding-bottom: 13px;
        margin: 0;
    }

    .menu-container [class^=columnGroup-root] .btn-link {
        font-family: DMSans-Light;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: normal;
        padding-top: 7px;
        padding-bottom: 8px;
        text-align: left;
        border: 0;
        margin: 0;
    }

    .menu-container .desktop-only {
        text-align: center;
        padding-top: 30px;
    }

    .menu-container [class^=buttons-root] .text-link .btn-link {
        font-size: 16px;
        letter-spacing: 1.05px;
        line-height: 20px;
    }

        .menu-container [class^=buttons-root] .text-link .btn-link.btn:after {
            top: 7px;
            right: -14px;
        }

    .menu-container .mob-only-shop-all-2 {
        display: none;
    }

    .nav-menu-wrapper {
        min-height: 33px;
    }

        .nav-menu-wrapper .MegaMenu {
            min-width: 80%;
        }

    .subCatParent .category-menu-container [class^=columnGroup-root] {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .category-menu-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 19px 30px 52px;
        border-bottom: 1px solid hsla(0,0%,59.2%,.3);
    }

        .category-menu-container > div {
            max-width: 745px;
            margin: 0 auto;
            width: 100%;
        }

            .category-menu-container > div [class^=column-root] {
                max-width: 190px;
                padding: 0 2%;
            }

        .category-menu-container.row-contained-1tt {
            max-width: 100%;
        }

    .hdr-store-locator {
        padding-right: 21px;
    }

        .hdr-store-locator a {
            font-family: DMSans-Light;
            font-size: 11px;
            line-height: 26px;
            padding: 0;
            letter-spacing: normal;
            display: block;
        }
}

@media screen and (min-width:1280px) {
    .MenuWrapper .menu-item.level-1 {
        padding: 0 16px;
    }
}

.elemis-ethos .slider-wrap {
    position: relative;
    overflow: hidden;
}

.elemis-ethos .slider-after-text, .elemis-ethos .slider-before-text {
    color: #fff;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    position: absolute;
}

.elemis-ethos .slider-before-text {
    z-index: 2;
}

@media screen and (max-width:767px) {
    .elemis-ethos > div:first-child {
        padding-top: 80px;
    }

    .elemis-ethos [class^=columnGroup] {
        padding-bottom: 0;
    }

    .elemis-ethos .slider-wrap {
        background-size: 86.6% 83.2%;
        padding: 11.8% .1% 3.4% 12.4%;
    }

    .elemis-ethos .slider-after-text {
        font-size: 10px;
        bottom: 11px;
        right: 10px;
    }

    .elemis-ethos .slider-before-text {
        font-size: 10px;
        top: 9px;
        left: 12px;
    }

    .elemis-ethos .slider-handle svg {
        height: 56px;
        width: 56px;
    }
}

@media screen and (min-width:768px) {
    .elemis-ethos .slider-handle svg {
        height: 63px;
        width: 63px;
    }

    .elemis-ethos > div:first-child {
        padding-top: 84px;
        padding-bottom: 57px;
    }

    .elemis-ethos [class^=columnGroup] {
        max-width: 1060px;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
        width: 100%;
    }

    .elemis-ethos .slider-wrap {
        background-size: 90.5% 90.2%;
        padding: 3.2% 2.2% 3.4% 3.5%;
    }

    .elemis-ethos .slider-after-text {
        font-size: 13px;
        bottom: 13px;
        right: 11px;
    }

    .elemis-ethos .slider-before-text {
        font-size: 13px;
        top: 12px;
        left: 23px;
    }
}

@media screen and (min-width:1280px) {
    .elemis-ethos .slider-wrap {
        background-size: 92.5% 92.2%;
        padding: 4% 0 0 4.4%;
    }
}

.store-locator-detail .gm-iw {
    padding-right: 10px;
    color: #002739;
}

.minicart-wrapper .minicart .empty-cart .close-minicart {
    z-index: 1;
    position: absolute;
    top: 15px;
    right: 19px;
}

    .minicart-wrapper .minicart .empty-cart .close-minicart:after, .minicart-wrapper .minicart .empty-cart .close-minicart:before {
        height: 15px;
        top: 9px;
    }

.minicart.empty-cart-container {
    display: flex;
    align-items: flex-start;
    height: auto;
    overflow-y: auto;
    border: 0;
    max-width: 415px;
    background: #fff;
    padding: 0;
}

    .minicart.empty-cart-container .close-minicart:after, .minicart.empty-cart-container .close-minicart:before {
        width: 1px;
    }

div.empty-cart {
    padding-top: 0;
    width: 100%;
}

    div.empty-cart .empty-cart-face svg {
        margin-left: -5px;
        width: 195px;
    }

    div.empty-cart .subtitle {
        font-family: DMSans-SemiBold;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 1.27px;
    }

    div.empty-cart .text {
        font-family: DMSans-Light;
        font-size: 15px;
        line-height: 19px;
        letter-spacing: .29px;
    }

    div.empty-cart .buttons-wrapper .btn {
        max-width: 355px;
        width: 88%;
    }

@media screen and (max-width:767px) {
    div.empty-cart {
        padding: 0;
    }

        div.empty-cart .empty-cart-face {
            margin-bottom: 55px;
        }

            div.empty-cart .empty-cart-face svg {
                margin-left: -3px;
            }

        div.empty-cart .subtitle {
            margin-bottom: 10px;
            padding-top: 18px;
        }

        div.empty-cart .buttons-wrapper {
            padding-top: 10px;
        }
}

@media screen and (max-width:1024px) {
    .minicart.empty-cart-container {
        padding: 45px 0 30px;
    }
}

@media screen and (min-width:768px) {
    div.empty-cart .empty-cart-face {
        margin-bottom: 23px;
    }

    div.empty-cart .subtitle {
        margin-bottom: 15px;
    }

    div.empty-cart .buttons-wrapper {
        padding-top: 13px;
    }
}

@media screen and (min-width:1024px) {
    .minicart.empty-cart-container {
        align-items: center;
    }

    div.empty-cart .empty-cart-face {
        margin-bottom: 23px;
    }

    div.empty-cart .buttons-wrapper {
        padding-top: 13px;
    }
}

.variants .variant-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.qty-variant-wrapper {
    display: flex;
    align-items: flex-start;
    padding-bottom: 6px;
}

li.variant-option {
    border: 1px solid #0e223a;
    width: 79px;
    border-radius: 2px;
    height: 49px;
    letter-spacing: 1.05px;
    margin: 0 0 4px 6px;
}

    li.variant-option .swatch-data {
        font-family: $text_font;
        font-size: 16px;
        line-height: 22px;
        margin-top: 9px;
    }

    li.variant-option.selected {
        border: 2px solid #0e223a;
    }

    li.variant-option.oos {
        opacity: .5;
        border: 1px solid #0e223a;
    }

        li.variant-option.oos .cross-line {
            width: 89px;
            height: 37px;
            border-bottom: 1px solid #002739;
            -webkit-transform: translateY(-13px) translateX(0) rotate(31deg);
            -moz-transform: translateY(-13px) translateX(0) rotate(31deg);
            -o-transform: translateY(-13px) translateX(0) rotate(31deg);
            -ms-transform: translateY(-13px) translateX(0) rotate(31deg);
            transform: translateY(-13px) translateX(0) rotate(31deg);
        }

@media screen and (min-width:768px) {
    li.variant-option {
        width: 94px;
        margin-left: 7px;
    }

        li.variant-option.oos .cross-line {
            width: 103px;
            height: 35px;
            -webkit-transform: translateY(-12px) translateX(-1px) rotate(27deg);
            -moz-transform: translateY(-12px) translateX(-1px) rotate(27deg);
            -o-transform: translateY(-12px) translateX(-1px) rotate(27deg);
            -ms-transform: translateY(-12px) translateX(-1px) rotate(27deg);
            transform: translateY(-12px) translateX(-1px) rotate(27deg);
        }
}

.pdp-how-to-use [class^=row-contained] {
    max-width: 100%;
}

.pdp-how-to-use [class^=columnGroup-root] {
    margin: 0 auto;
    max-width: 1070px;
    width: 100%;
}

@media screen and (max-width:767px) {
    .pdp-how-to-use h2 {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 0;
        margin: 0;
    }

    .pdp-how-to-use h3 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 3px;
        padding-top: 25px;
    }

    .pdp-how-to-use p {
        margin-bottom: 21px;
    }

    .pdp-how-to-use .how-to-use-disc-text {
        order: 2;
        padding: 34px 30px 62px;
    }
}

@media screen and (min-width:768px) {
    .pdp-how-to-use [class^=columnGroup-root] {
        padding: 76px 20px 82px;
    }

    .pdp-how-to-use .how-to-use-disc-text {
        padding-right: 15%;
        padding-top: 0;
    }

    .pdp-how-to-use .how-to-use-gallery {
        padding: 6px 2px 0;
    }

    .pdp-how-to-use h2 {
        font-size: 44px;
        line-height: 44px;
    }

    .pdp-how-to-use h3 {
        font-size: 28px;
        line-height: 36px;
        padding-top: 19px;
        margin-bottom: 4px;
    }

    .pdp-how-to-use p {
        margin-bottom: 21px;
    }

    .how-to-use-wrap.how-to-use-top-margin {
        margin-top: -41px;
    }
}

.gift-title {
    font-family: DMSans-SemiBold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.27px;
    padding: 0 10px;
}

.gift-item-name {
    font-family: DMSans-Light;
    font-size: 13px;
    line-height: 20px;
    display: block;
    clear: both;
}

.remove-btn {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    width: 11px;
    height: 11px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    right: 0;
    top: 0;
}

    .remove-btn:after {
        content: "";
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.11 8.11'%3E%3Cpath fill='none' stroke='%230e223a' stroke-width='.55' d='M.19.19l7.72 7.72'/%3E%3Cpath fill='none' stroke='%230e223a' stroke-width='.55' data-name='Line' class='cls-1' d='M7.91.19L.19 7.91'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: 50%;
        display: block;
        height: 11px;
        width: 11px;
    }

.free-gift {
    background: #fff;
    padding: 30px 0 10px 20px;
}

    .free-gift .gift-items {
        padding-top: 30px;
        padding-bottom: 28px;
    }

    .free-gift .ps__rail-x:before {
        left: 0;
        width: 10px;
        z-index: 1;
    }

    .free-gift .ps__rail-x:after, .free-gift .ps__rail-x:before {
        background-color: #fff;
        content: "";
        position: absolute;
        height: 2px;
        top: 0;
    }

    .free-gift .ps__rail-x:after {
        right: 0;
        width: 30px;
        z-index: 4;
    }

    .free-gift .ps__rail-x .ps__thumb-x:before {
        background-color: #cbcac6;
        content: "";
        position: absolute;
        left: 0;
        width: 10px;
        height: 2px;
        top: 0;
        z-index: 0;
    }

    .free-gift .ps__rail-x .ps__thumb-x:after {
        background-color: #cbcac6;
        content: "";
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        top: 0;
        z-index: 1;
    }

.coupon-form .discount-coupon-form .free-item .btn {
    margin: 0;
}

.free-item.added img {
    cursor: pointer;
}

.free-item .btn {
    min-width: 0;
}

    .free-item .btn.btn-active {
        background: #002739;
        color: #fff;
        border-color: #002739;
        text-decoration: none;
    }

.free-item img {
    max-width: 67px;
}

.discount-coupon-form .promo-text-filed {
    padding: 0 30px 30px;
}

    .discount-coupon-form .promo-text-filed .note {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }

    .discount-coupon-form .promo-text-filed .coupon-error {
        font-family: $header_font;
        font-size: 12px;
        line-height: 22px;
        color: #b30015;
    }

        .discount-coupon-form .promo-text-filed .coupon-error svg {
            margin-right: 19px;
        }

.free-item {
    min-width: 112px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
}

    .free-item .btn {
        left: 10px;
    }

.minicart .gift-items-list {
    overflow-x: initial;
}

.checkout-page .free-gift {
    padding: 10px 0;
}

    .checkout-page .free-gift + .payment-method-wrapper {
        padding: 0;
    }

    .checkout-page .free-gift .gift-items {
        padding: 20px 0 0;
    }

@media (hover:none) {
    .coupon-form .discount-coupon-form .free-item .btn.btn-primary:hover {
        background: transparent;
        color: #002739;
        border-color: #0e223a;
    }

    .coupon-form .discount-coupon-form .free-item .btn.btn-primary.btn-active:hover {
        background: #002739;
        color: #fff;
        border-color: #002739;
    }
}

.product-video-content [class^=row-contained] {
    max-width: 100%;
}

.product-video-content [class^=columnGroup-root] {
    margin: 0 auto;
    max-width: 1070px;
    width: 100%;
}

.product-video-content [class^=buttons-root] button[class] {
    overflow: visible;
}

.product-video-content .btn-link {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1.05px;
}

@media screen and (max-width:767px) {
    .product-video-content-wrap h2 {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 12px;
    }

    .product-video-content-wrap p {
        margin-bottom: 9px;
    }

    .product-video-content-wrap [class^=columnGroup-root] {
        padding-top: 43px;
        padding-bottom: 34px;
    }

    .product-video-content-wrap .col-desc {
        order: 2;
        padding: 27px 30px 45px;
    }

    .product-video-content-wrap .col-content {
        order: 1;
    }
}

@media screen and (min-width:768px) {
    .product-video-content-wrap [class^=columnGroup-root] {
        padding: 100px 20px 34px;
    }

    .product-video-content-wrap h2 {
        font-size: 44px;
        line-height: 52px;
        padding-bottom: 15px;
    }

    .product-video-content-wrap .col-desc {
        padding-right: 15%;
    }
}

.pdp-shop-collection {
    position: relative;
}

    .pdp-shop-collection [class^=buttons-root] button[class] {
        overflow: visible;
    }

    .pdp-shop-collection .text-link {
        left: 50%;
        position: absolute;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .pdp-shop-collection .text-link .btn {
            font-size: 16px;
            line-height: 22px;
            letter-spacing: 1.05px;
        }

@media screen and (max-width:767px) {
    .pdp-shop-collection {
        padding-top: 34px;
        padding-bottom: 60px;
        margin-bottom: 67px;
    }

        .pdp-shop-collection .text-link {
            bottom: 3px;
        }

            .pdp-shop-collection .text-link .btn {
                font-size: 16px;
            }

    .shop-the-collection-title {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 15px;
    }

    .shop-the-collection-container {
        padding-left: 35px;
        padding-right: 35px;
        padding-bottom: 3px;
    }
}

@media screen and (min-width:768px) {
    .pdp-shop-collection {
        padding-top: 50px;
        padding-bottom: 69px;
        margin-bottom: 50px;
    }

        .pdp-shop-collection .shop-the-collection-container {
            max-width: 85%;
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 0;
        }

        .pdp-shop-collection .text-link {
            bottom: 5px;
        }

    .shop-the-collection-title {
        font-size: 44px;
        line-height: 52px;
        padding-bottom: 29px;
    }
}

@media screen and (min-width:1280px) {
    .pdp-shop-collection .shop-the-collection-container {
        max-width: 45%;
    }
}

@media screen and (max-height:550px) {
    .minicart-wrapper .minicart {
        overflow: auto;
        display: block;
    }

        .minicart-wrapper .minicart.minicart-open .middle-container {
            overflow: visible;
        }
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

.ps__rail-x {
    height: 2px;
    border-radius: 10px;
    bottom: 0;
}

.ps__rail-x, .ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color .2s linear,opacity .2s linear;
    -webkit-transition: background-color .2s linear,opacity .2s linear;
    position: absolute;
}

.ps__rail-y {
    width: 2px;
    right: 0;
}

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
    display: block;
    background-color: rgba(0,0,0,.2);
}

.ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y, .ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y {
    opacity: 1;
}

.ps__thumb-x {
    transition: background-color .2s linear,height .2s ease-in-out;
    -webkit-transition: background-color .2s linear,height .2s ease-in-out;
    height: 2px;
    bottom: 0;
}

.ps__thumb-x, .ps__thumb-y {
    background-color: #002739;
    border-radius: 10px;
    position: absolute;
}

.ps__thumb-y {
    transition: background-color .2s linear,width .2s ease-in-out;
    -webkit-transition: background-color .2s linear,width .2s ease-in-out;
    width: 2px;
    right: 0;
}

.ps__rail-x.ps--clicking .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x:hover > .ps__thumb-x {
    background-color: #002739;
    height: 2px;
}

.ps__rail-y.ps--clicking .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y:hover > .ps__thumb-y {
    background-color: #002739;
    width: 2px;
}

@supports (-ms-overflow-style:none) {
    .ps {
        overflow: auto !important;
    }
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
    .ps {
        overflow: auto !important;
    }
}

.scrollbar-container {
    position: relative;
    padding-bottom: 10px;
    height: 100%;
}

.guest-order-sales-form, .order-details-contianer {
    margin: 30px 0 50px;
    padding-bottom: 50px;
}

.order-details-print-page .page {
    margin-top: 30px;
}

.order-details-print-page .order-details-contianer {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.guest-order-sales-form h1 {
    font-family: $text_font-Thin;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 35px;
}

.guest-order-sales-form h2 {
    font-family: DMSans-SemiBold;
    font-size: 14px;
    letter-spacing: 1.27px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.guest-order-sales-form .alert {
    padding-left: 0;
    padding-right: 0;
}

    .guest-order-sales-form .alert strong {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }

    .guest-order-sales-form .alert p {
        max-width: 450px;
        width: 100%;
    }

.guest-order-sales-form .submit-btn-container {
    margin-top: 30px;
}

.order-details-contianer h1 {
    font-family: $text_font-Thin;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
}

.order-details-contianer a:not(.btn-primary):not(.nav-item), .order-details-contianer button:not(.btn-primary):not(.nav-item) {
    border: 0;
    border-bottom: 1px solid #002739;
    padding: 0 0 3px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    min-width: auto;
}

    .order-details-contianer a:not(.btn-primary):not(.nav-item):hover, .order-details-contianer button:not(.btn-primary):not(.nav-item):hover {
        background: none;
    }

.order-details-contianer a button:not(.btn-primary):not(.nav-item) {
    border: 0;
    padding-bottom: 0;
}

.order-details-contianer .my-account__page-title .status-badge {
    margin-top: 6px;
}

.order-details-contianer .my-account__block {
    margin-bottom: 30px;
}

.order-details-contianer .tab-pane .orderd-items-container {
    margin-top: 10px;
}

.order-details-contianer .order-data-tab .nav-tabs a.nav-item {
    background: #f6f3ee;
    font-size: 16px;
}

    .order-details-contianer .order-data-tab .nav-tabs a.nav-item.active, .order-details-contianer .tab-content .tab-pane {
        background: #fff;
    }

.order-details-contianer .ordered-items {
    font-size: 16px;
    line-height: 1.5;
}

    .order-details-contianer .ordered-items tbody tr:nth-child(2n) td {
        background: #f6f3ee;
    }

    .order-details-contianer .ordered-items tbody td dl.item-options {
        margin-bottom: 0;
    }

.order-details-contianer b, .order-details-contianer strong, .order-details-contianer tbody th, .order-details-contianer thead th {
    font-weight: 400;
    font-family: DMSans-SemiBold;
}

.order-details-contianer table thead th {
    font-size: 14px;
    letter-spacing: 1.27px;
    text-transform: uppercase;
}

.order-details-contianer .my-account__block-title {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px;
    margin-bottom: 13px;
}

.order-details-contianer h2.my-account__block-subtitle {
    font-size: 22px;
}

.order-details-contianer .order-information .order-information__tiles p {
    margin-bottom: 0;
}

.shipment-tracking-modal .modal-header {
    display: block;
}

    .shipment-tracking-modal .modal-header .modal-title {
        margin-bottom: 20px;
    }

@media (max-width:767px) {
    .guest-order-sales-form input[type=email], .guest-order-sales-form input[type=number], .guest-order-sales-form input[type=tel], .guest-order-sales-form input[type=text], .guest-order-sales-form textarea {
        font-size: 16px;
    }

    .order-details-contianer .ordered-items tbody tr td {
        padding-left: 15px;
        padding-right: 15px;
    }

        .order-details-contianer .ordered-items tbody tr td:before {
            font-family: DMSans-SemiBold;
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 1.27px;
            text-transform: uppercase;
        }

    .order-details-contianer .order-information .credit-card-info tbody tr th, .order-details-contianer .ordered-items tfoot th {
        text-align: left;
    }
}

.loyalty-banner .banner-wrapper-cAN {
    display: block;
    height: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.loyalty-banner h1, .loyalty-banner p {
    color: #004862;
}

.loyalty-signup h2 {
    color: #004862;
    font-family: $text_font-Thin;
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: normal;
    margin-bottom: 19px;
}

.loyalty-signup p {
    color: #004862;
    font-size: 15px;
    line-height: 1.67;
    letter-spacing: .2px;
    margin-bottom: 31px;
}

.loyalty-signup .btn-secondary {
    min-width: 217px;
}

.loyalty-program-footer .btn-secondary, .loyalty-signup .btn-secondary {
    font-size: 14px;
    line-height: 2.08;
    letter-spacing: 2.34px;
    padding: .66rem 1rem .53rem;
}

.loyalty-how-it-works h2 {
    font-family: $text_font-Thin;
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: normal;
    margin-bottom: 50px;
}

.loyalty-how-it-works p {
    font-size: 16px;
    line-height: 1.63;
    letter-spacing: normal;
}

.loyalty-how-it-works .columnGroup-root-2wf .column-root-1ln {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loyalty-how-it-works .columnGroup-root-2wf .text-root-1B0:first-child {
    margin-bottom: 45px;
}

.loyalty-program-tier-table > div {
    padding-bottom: 47px;
}

.loyalty-program-tier-table .text-root-1B0 {
    overflow-x: auto;
    display: block;
}

.loyalty-program-tier-table td {
    padding: 5px;
}

    .loyalty-program-tier-table td p {
        margin-bottom: 0;
    }

.loyalty-program-tier-table table {
    table-layout: fixed;
}

.loyalty-program-tier-table .loyalty-program-benefits-title {
    font-family: $text_font-Thin;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: normal;
}

.loyalty-program-tier-table .loyality-program-tire {
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
}

    .loyalty-program-tier-table .loyality-program-tire strong {
        font-family: DMSans-SemiBold;
    }

.loyalty-program-tier-table .loyalty-program-benefits-content {
    font-family: DMSans-SemiBold;
    line-height: 1.57;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.loyalty-program-tier-table tr:first-child td {
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
}

    .loyalty-program-tier-table tr:first-child td strong {
        font-family: DMSans-SemiBold;
    }

    .loyalty-program-tier-table tr:first-child td:first-child {
        font-family: $text_font-Thin;
        line-height: 1.18;
        font-weight: 400;
        letter-spacing: normal;
        text-transform: none;
    }

.loyalty-program-tier-table tr td:first-child {
    font-family: DMSans-SemiBold;
    line-height: 1.57;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.loyalty-program-footer a {
    letter-spacing: .18px;
    text-decoration: underline;
}

    .loyalty-program-footer a:hover {
        text-decoration: underline;
    }

.loyalty-program-footer .btn-secondary {
    min-width: 247px;
}

.loyalty-landing-page .buttons-inline-1ki > div {
    margin: 0;
}

@media screen and (max-width:767px) {
    .loyalty-landing-page {
        margin-bottom: 80px;
        margin-top: 15px;
    }

        .loyalty-landing-page .btn.btn-secondary {
            margin-bottom: 13px;
        }

    .loyalty-banner .banner-root-1Qc {
        min-height: 250px;
    }

    .loyalty-banner .banner-wrapper-cAN {
        padding-bottom: 74.88%;
    }

    .loyalty-banner .banner-overlay-2BR {
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }

        .loyalty-banner .banner-overlay-2BR img {
            max-width: 91px;
        }

    .loyalty-banner .column-root-1ln {
        padding: 21px 90px 24px 31px;
    }

    .loyalty-banner h1 {
        margin-bottom: 17px;
        letter-spacing: normal;
    }

    .loyalty-signup > div {
        padding: 35px 30px 46px;
    }

        .loyalty-signup > div p {
            padding-left: 16px;
            padding-right: 16px;
        }

    .loyalty-how-it-works > div {
        padding: 35px 46px 0;
    }

    .loyalty-how-it-works .columnGroup-root-2wf .column-root-1ln {
        margin-bottom: 50px;
    }

    .loyalty-how-it-works .loyalty-members p {
        padding: 0 35px;
    }

    .loyalty-how-it-works .discount-info p {
        padding: 0 40px;
    }

    .loyalty-program-footer .text-root-1B0 {
        margin-top: 15px;
    }

    .loyalty-program-tier-table {
        padding: 0 20px;
    }

        .loyalty-program-tier-table table {
            border-spacing: 5px;
        }

        .loyalty-program-tier-table td {
            height: 77px !important;
            width: 10% !important;
        }

            .loyalty-program-tier-table td img {
                max-width: 26px;
                max-height: 26px;
            }

        .loyalty-program-tier-table .loyalty-program-benefits-content, .loyalty-program-tier-table .loyalty-program-benefits-title {
            width: 13% !important;
            padding-left: 13px;
            padding-right: 10px;
        }

        .loyalty-program-tier-table .loyalty-program-benefits-title {
            font-size: 20px;
        }

        .loyalty-program-tier-table .loyality-program-tire, .loyalty-program-tier-table .loyalty-program-benefits-content, .loyalty-program-tier-table tr:first-child td {
            font-size: 11px;
        }

            .loyalty-program-tier-table tr:first-child td:first-child {
                font-size: 20px;
                width: 13% !important;
                padding-left: 13px;
                padding-right: 10px;
            }

        .loyalty-program-tier-table tr td:first-child {
            font-size: 11px;
            width: 13% !important;
            padding-left: 13px;
            padding-right: 10px;
        }
}

@media screen and (min-width:768px) {
    .loyalty-landing-page {
        margin-bottom: 130px;
    }

        .loyalty-landing-page .buttons-inline-1ki {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

    .loyalty-banner {
        min-height: 300px;
    }

        .loyalty-banner > div {
            position: relative;
            max-width: 1323px;
            margin: 0 auto;
            width: 100%;
        }

        .loyalty-banner .banner-wrapper-cAN {
            padding-bottom: 41.27%;
        }

        .loyalty-banner .banner-overlay-2BR {
            left: 50%;
            position: absolute;
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

            .loyalty-banner .banner-overlay-2BR img {
                max-width: 97px;
            }

        .loyalty-banner h1 {
            font-size: 44px;
            line-height: 46px;
            padding-left: 40px;
            padding-right: 40px;
            margin: 0 auto;
            text-align: center;
        }

        .loyalty-banner .columnGroup-root-2wf {
            top: 200px;
            left: 50%;
            position: absolute;
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            z-index: 1;
            width: 100%;
        }

    .loyalty-signup {
        margin-bottom: 81px;
    }

        .loyalty-signup > div {
            padding-top: 280px;
            padding-bottom: 85px;
            margin-top: -182px;
        }

        .loyalty-signup .text-root-1B0 {
            max-width: 703px;
            margin: 0 auto;
        }

        .loyalty-signup h2 {
            margin-bottom: 23px;
        }

        .loyalty-signup p {
            margin-bottom: 28px;
        }

        .loyalty-signup .buttons-inline-1ki div:first-child .btn-secondary {
            margin-right: 44px;
        }

    .loyalty-how-it-works {
        margin-bottom: 93px;
    }

        .loyalty-how-it-works > div {
            max-width: 1371px;
            margin: 0 auto;
        }

        .loyalty-how-it-works .discount-info, .loyalty-how-it-works .earn-points, .loyalty-how-it-works .loyalty-members {
            padding-left: 10px;
            padding-right: 10px;
        }

    .loyalty-program-footer .text-root-1B0 {
        margin-top: 25px;
    }

    .loyalty-program-footer .buttons-inline-1ki div:first-child .btn-secondary {
        margin-right: 30px;
    }

    .loyalty-program-tier-table > div {
        max-width: 842px;
        margin: 0 auto;
    }

    .loyalty-program-tier-table td img {
        max-width: 36px;
        max-height: 36px;
    }

    .loyalty-program-tier-table .loyalty-program-benefits-content, .loyalty-program-tier-table .loyalty-program-benefits-title {
        padding-right: 59px;
        padding-left: 60px;
    }

    .loyalty-program-tier-table .loyalty-program-benefits-title {
        font-size: 30px;
    }

    .loyalty-program-tier-table .loyality-program-tire {
        font-size: 14px;
    }

    .loyalty-program-tier-table .loyalty-program-benefits-content {
        font-size: 12px;
    }

    .loyalty-program-tier-table tr:first-child td {
        font-size: 14px;
    }

        .loyalty-program-tier-table tr:first-child td:first-child {
            font-size: 30px;
            padding-right: 59px;
            padding-left: 60px;
        }

    .loyalty-program-tier-table tr td:first-child {
        font-size: 12px;
        padding-right: 59px;
        padding-left: 60px;
    }
}

@media screen and (min-width:1024px) {
    .loyalty-banner h1 {
        font-size: 71px;
        line-height: 1.03;
    }

    .loyalty-landing-page {
        margin-bottom: 175px;
    }

    .loyalty-how-it-works .earn-points {
        padding: 0 55px;
    }

    .loyalty-how-it-works .loyalty-members {
        padding: 0 70px;
    }

    .loyalty-how-it-works .discount-info {
        padding: 0 50px;
    }

    .loyalty-how-it-works .columnGroup-root-2wf .text-root-1B0:first-child {
        margin-bottom: 95px;
    }

    .loyalty-how-it-works h2 {
        margin-bottom: 76px;
    }

    .loyalty-program-tier-table .loyalty-program-benefits-title {
        font-size: 44px;
    }

    .loyalty-program-tier-table .loyality-program-tire {
        font-size: 18px;
    }

    .loyalty-program-tier-table .loyalty-program-benefits-content {
        font-size: 14px;
    }

    .loyalty-program-tier-table tr:first-child td {
        font-size: 18px;
    }

        .loyalty-program-tier-table tr:first-child td:first-child {
            font-size: 44px;
        }

    .loyalty-program-tier-table tr td:first-child {
        font-size: 14px;
    }
}

@media screen and (min-width:1280px) {
    .loyalty-how-it-works .discount-info {
        padding: 0 90px;
    }

    .loyalty-banner {
        min-height: 500px;
    }

        .loyalty-banner h1 {
            padding-left: 70px;
            padding-right: 70px;
        }

        .loyalty-banner .banner-overlay-2BR {
            top: 55px;
        }

        .loyalty-banner .columnGroup-root-2wf {
            top: 292px;
        }
}

.gift-finder-result {
    background-color: #afcdd7;
    position: relative;
}

    .gift-finder-result:after {
        width: 100%;
        content: "";
        background-color: #afcdd7;
        position: absolute;
        bottom: -170px;
        left: 0;
        height: 175px;
        z-index: -1;
    }

.gift-result-container {
    background-color: #fff;
    max-width: 1340px;
    width: 100%;
    padding: 20px 20px 87px;
    margin: 0 auto;
}

    .gift-result-container .gift-finder-main-head {
        margin-bottom: 20px;
    }

    .gift-result-container .productsList {
        margin-bottom: 33px;
    }

.spectacular-text {
    justify-content: center;
    color: #002739;
    margin-bottom: 9px;
}

    .spectacular-text p {
        position: relative;
        padding: 0 20px;
        font-family: DMSans-SemiBold;
        font-size: 16px;
        letter-spacing: 2.31px;
        line-height: normal;
        text-transform: uppercase;
    }

        .spectacular-text p:before {
            left: -7px;
        }

        .spectacular-text p:after, .spectacular-text p:before {
            content: "—";
            top: 50%;
            position: absolute;
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .spectacular-text p:after {
            right: -7px;
        }

[class^=text-root].spectacular-text {
    flex-direction: row;
}

.gift-finder-main-head {
    font-size: 44px;
    line-height: 52px;
    color: #002739;
    letter-spacing: normal;
}

.gift-finder-text {
    color: #002739;
    line-height: 26px;
    margin-bottom: 20px;
}

@media screen and (max-width:413px) {
    .gift-result-container .productsList .productItem .btn {
        padding: .5rem .2rem .41rem;
        font-size: 12px;
        letter-spacing: 1.25px;
    }
}

@media screen and (max-width:767px) {
    .gift-finder-result, .gift-finder-result:after {
        background-color: #fff;
    }

    .gift-result-container {
        padding: 24px 30px 87px;
    }

        .gift-result-container .productsList {
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 7%;
            grid-row-gap: 24px;
        }

        .gift-result-container .gift-finder-text {
            padding: 0 25px;
        }
}

@media screen and (min-width:768px) {
    .gift-finder-result {
        padding: 50px 20px;
    }

    .gift-result-container {
        padding: 50px 30px 87px;
    }

        .gift-result-container .productsList {
            grid-template-columns: 1fr 1fr 1fr;
            grid-column-gap: 3%;
            grid-row-gap: 25px;
        }
}

@media screen and (min-width:1024px) {
    .gift-finder-result {
        padding: 50px 20px;
    }

    .gift-result-container {
        padding: 67px 50px 87px;
    }

        .gift-result-container .productsList {
            grid-column-gap: 7.5%;
            grid-row-gap: 62px;
        }
}

@media screen and (min-width:1280px) {
    .gift-result-container .productsList {
        padding: 0 60px;
        grid-column-gap: 14.5%;
    }
}

body {
    margin: 0;
    font-family: $header_font,sans-serif;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 400;
    color: #002739;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, html {
    height: 100%;
}

.Main {
    min-height: 100vh;
}

button {
    color: #002739;
    padding-bottom: 2px;
    margin-bottom: 2px;
    border: none;
}

.btn {
    min-width: 214px;
}

a {
    font-family: $text_font;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1.2px;
}

    a, a:active, a:hover {
        color: #002739;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    color: #002739;
    font-weight: 400;
}

h1 {
    letter-spacing: 0px;
}

h1, h2 {
    font-family: $text_font-Thin;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    line-height: 36px;
}

h3 {
    font-family: $text_font;
    font-size: 18px;
    line-height: 24px;
}

h3, h4 {
    margin-bottom: 10px;
}

h4 {
    font-family: DMSans-SemiBold;
    font-size: 14px;
    letter-spacing: 1.27px;
    line-height: 22px;
    text-transform: uppercase;
}

h5 {
    font-family: $text_font;
    font-size: 18px;
    line-height: 24px;
}

h5, h6 {
    margin-bottom: 10px;
}

h6 {
    font-family: DMSans-SemiBold;
    color: #393838;
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
}

.ul ul {
    margin-bottom: 1rem;
}

.ul li {
    font-size: 15px;
    line-height: 35px;
    position: relative;
    padding-left: 14px;
}

    .ul li:before {
        content: "•";
        position: absolute;
        display: block;
        font-size: 18px;
        top: 9px;
        left: 0;
        line-height: 1;
    }

.ol-list ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
}

    .ol-list ol li {
        color: #002739;
        font-size: 15px;
        counter-increment: my-awesome-counter;
        position: relative;
        line-height: 35px;
        padding-left: 23px;
    }

        .ol-list ol li:before {
            content: counter(my-awesome-counter) ". ";
            color: #002739;
            font-weight: 400;
            font-family: $header_font;
            font-size: 16px;
            position: absolute;
            left: 0;
        }

.secondary-btn-wrap {
    background: #002739;
}

.list-heading {
    font-size: 16px;
    line-height: 23px;
}

::-webkit-input-placeholder {
    color: transparent;
}

:-moz-placeholder, ::-moz-placeholder {
    color: transparent;
}

:-ms-input-placeholder {
    color: transparent;
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 44px;
        line-height: 52px;
    }

    .container-width {
        padding-left: 30px;
        padding-right: 30px;
    }

    .amlocator-stores-wrapper > .amlocator-store-desc:nth-last-child(2) {
        margin-bottom: 5px;
    }

    div.amlocator-main-container.container-width {
        padding-bottom: 50px;
    }
}

@media screen and (min-width:768px) {
    .container-width {
        max-width: 1360px;
        padding-left: 20px;
        padding-right: 20px;
        margin: 0 auto;
    }

    h1 {
        font-size: 71px;
        line-height: 73px;
    }

    .amlocator-main-container .pagination-toolbar {
        padding-top: 27px;
    }

    .amlocator-main-container .amlocator-map-container .amlocator-map {
        padding-bottom: 10px;
        padding-right: 10px;
        padding-top: 5px;
    }
}

@media screen and (min-width:1280px) {
    .container-width {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.discription {
    font-size: 12px;
    line-height: 19px;
    font-family: DMSans-Light;
}

.bv_modal_component_container {
    position: absolute;
}

.amlocator-attribute-wrapper .checkbox-label {
    font-family: $text_font;
}

.amlocator-left .amlocator-title .amlocator-link {
    font-family: DMSans-SemiBold;
}

.amlocator-text {
    font-family: $text_font-LightItalic;
}

.store-list-website a {
    font-family: $text_font;
}

.store-locator-detail .adp-text, .store-locator-detail .amlocator-label, .store-locator-detail .collapsible-title, .store-locator-detail .title-hours {
    font-family: DMSans-SemiBold;
}

.store-locator-detail .adp, .store-locator-detail .adp-step, .store-locator-detail .adp-substep, .store-locator-detail .adp table {
    font-family: $header_font;
    border: 0;
    font-weight: 400;
    color: #002739;
}

#tmx_tags_iframe, .skip-to-content {
    position: absolute;
}

.skip-to-content {
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

    .skip-to-content:active, .skip-to-content:focus {
        background: #d8d8d8;
        z-index: 200;
        max-width: 100%;
        width: 100%;
        padding: 8px 10px;
        border-radius: 2px;
        font-size: 16px;
        font-family: $header_font;
        color: #002739;
        text-transform: uppercase;
        letter-spacing: 1.85px;
        position: absolute;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
        text-align: center;
        top: 0;
        left: 0;
    }

@media (max-width:767px) {
    main.page {
        min-height: 300px;
    }
}

@media (min-width:768px) {
    main.page {
        min-height: 400px;
    }
}

.skip-size {
    position: absolute;
}

.page-header, .page-header .page-header-inner {
    width: 100%;
}

    .page-header .header-utility-items {
        display: flex;
        justify-content: space-between;
        order: 3;
    }

    .page-header .header-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .page-header .header-container .logo-block {
            order: 1;
        }

    .page-header .cart-toggle {
        display: block;
        font-size: 0;
        margin-bottom: 0;
        top: -1px;
        padding: 0;
        position: relative;
    }

        .page-header .cart-toggle .cart-items-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-align: center;
        }

            .page-header .cart-toggle .cart-items-wrapper .cart-items {
                font-size: 9px;
                line-height: 20px;
                letter-spacing: .45px;
                color: #032646;
                font-family: DMSans-Medium;
                display: block;
                padding-top: 4px;
            }

    .page-header .cart-items-wrapper, .page-header .shopping-cart svg {
        cursor: pointer;
    }

    .page-header .account-form-link {
        display: block;
        line-height: 1;
        width: 26px;
        height: 26px;
    }

        .page-header .account-form-link .btn.btn-link {
            font-size: 0;
            width: 26px;
            height: 26px;
            border: 0;
            min-width: auto;
            position: relative;
            padding: 0;
            margin: 0;
            line-height: 1;
            color: #002739;
            background: transparent no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.68 15.48'%3E%3Cellipse fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.08' cx='6.39' cy='4.14' rx='4.05' ry='3.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.08' d='M13.14 14.94a6.3 6.3 0 10-12.6 0'/%3E%3C/svg%3E");
            background-size: 16px 18px;
            background-position: top 2px center;
        }

    .page-header .logo {
        display: block;
    }

        .page-header .logo a {
            display: block;
            padding: 0;
        }

    .page-header .hdr-country-selector .dropdown-toggle {
        display: block;
        height: 26px;
        padding: 4px;
        width: 26px;
    }

@media (max-width:1023px) {
    .page-header {
        padding: 0;
    }

        .page-header .page-header-inner {
            min-height: 60px;
            padding: 17px 0 13px;
            position: relative;
        }

        .page-header .mobile-lhs-links {
            order: 1;
            display: flex;
            align-items: flex-start;
        }

        .page-header .header-container {
            position: relative;
        }

            .page-header .header-container .logo-block {
                order: 2;
            }

        .page-header .pm-store-locator {
            margin: 0 0 0 15px;
            text-align: center;
        }

            .page-header .pm-store-locator a {
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
                padding: 0 0 2px;
                width: 24px;
            }

        .page-header .logo a {
            display: block;
        }

        .page-header .logo svg {
            width: 103px;
        }

        .page-header .header-search-wrapper {
            margin-right: 17px;
        }

        .page-header .header-utility-items {
            align-items: flex-start;
            padding-right: 4px;
        }

            .page-header .header-utility-items .account-form .account-form-link {
                display: none;
            }

        .page-header .searchbar .search-icon {
            display: flex;
        }

        .page-header .container-width.header-container {
            align-items: flex-start;
            padding: 0 20px;
        }
}

@media (min-width:1024px) {
    .page-header .header-utility-items {
        align-items: center;
        padding-bottom: 8px;
    }

    .page-header .page-header-inner {
        padding: 24px 0 20px;
        top: 0;
    }

    .page-header .logo {
        position: relative;
        z-index: 100;
    }

        .page-header .logo svg {
            width: 126px;
        }

    .page-header .nav-menu-wrapper {
        order: 2;
        display: flex;
        align-items: flex-start;
    }

    .page-header .header-search-wrapper {
        margin-left: 14px;
        position: relative;
    }

    .page-header .account-form .account-form-link {
        margin-right: 17px;
    }

    .page-header .hdr-country-selector {
        margin-right: 12px;
    }

        .page-header .hdr-country-selector .dropdown-toggle {
            padding: 2px 4px 4px;
        }
}

@media (max-width:1023px) {
    .subCat {
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
        -ms-transition: all .5s ease-in;
        -moz-transition: all .5s ease-in;
        -webkit-transition: all .5s ease-in;
        transition: all .5s ease-in;
        margin-left: 10px;
    }

        .subCat a {
            display: inline-block;
            width: 100%;
        }

    .menu-item.level-1 {
        padding: 0 0 15px;
        width: 100%;
    }

        .menu-item.level-1 .levelTop:hover {
            text-decoration: none;
        }

    .menu-item.open .subCat {
        width: 100%;
        height: auto;
        overflow: visible;
        opacity: 1;
    }

    .menu-item.open .AccordionToggle:after {
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        -o-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    .MegaMenu.open .menu-container {
        left: 0;
    }

    .hamburger-icon {
        background-color: transparent;
        padding: 0;
        border: 0;
        position: relative;
        left: 0;
        top: 0;
        -ms-transition: all .25s linear;
        -moz-transition: all .25s linear;
        -webkit-transition: all .25s linear;
        transition: all .25s linear;
        cursor: pointer;
        margin: 0;
        height: 22px;
        width: 26px;
        z-index: 4;
    }

    .HeaderLinks {
        padding: 0;
    }

        .HeaderLinks ul li {
            padding: 0 0 11px;
            vertical-align: middle;
        }

            .HeaderLinks ul li a {
                color: #002739;
                font-size: 16px;
                font-family: $header_font;
                padding: 7px 0 6px;
            }

    .account-forms-dropdown, .pnone-num-wrap {
        color: #002739;
        font-size: 16px;
        font-family: $header_font;
        margin: 7px 0 0;
    }

        .pnone-num-wrap a {
            margin: 0 0 0 4px;
        }

    .select-category-item {
        font-size: 24px;
        font-family: $header_font;
        line-height: 32px;
        margin: 0 0 0 10px;
        text-transform: uppercase;
        vertical-align: middle;
    }

    .menu-back {
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
    }

    .MenuWrapper {
        padding: 0;
    }

    .subcat-select-top {
        padding: 12px 0 0;
    }

    .subcat-items {
        padding: 27px 32px 12px 44px;
    }

        .subcat-items ul li {
            padding: 0 0 15px;
            width: 100%;
        }

            .subcat-items ul li a {
                font-family: $header_font;
                font-weight: 700;
                font-size: 18px;
                line-height: 32px;
                color: #002739;
                text-transform: uppercase;
            }

                .subcat-items ul li a:hover {
                    text-decoration: none;
                }
}

@media (min-width:1024px) {
    .subCat {
        left: 0;
        margin-top: 1px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        -ms-transition: all .25s ease;
        -moz-transition: all .25s ease;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
        width: 100%;
        z-index: 99;
    }

    .menu-item.level-1:hover .subCat {
        opacity: 1;
        visibility: visible;
    }

    .menu-item .imageWrapper {
        display: none;
    }

        .menu-item .imageWrapper.imageWrapper-1 {
            display: block;
        }

    .menu-item.level-1 .levelTop {
        border-bottom: 5px solid #fff;
        color: #002739;
        display: block;
        font-family: $header_font;
        font-size: 14px;
        letter-spacing: .06em;
        line-height: 24px;
        padding-bottom: 0;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        position: relative;
    }

        .menu-item.level-1 .levelTop:before {
            content: "";
            position: absolute;
            bottom: -5px;
            width: 0;
            height: 5px;
            background: #002739;
            -ms-transition: all .2s ease-in-out;
            -moz-transition: all .2s ease-in-out;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

        .menu-item.level-1 .levelTop:focus:before, .menu-item.level-1 .levelTop:hover:before, .menu-item.level-1.active .levelTop:before {
            width: 100%;
        }

    .subCatWrapper {
        display: flex;
        align-items: stretch;
        width: 100%;
    }

        .subCatWrapper .SubCategoryList {
            padding-left: 2%;
            width: 100%;
        }

            .subCatWrapper .SubCategoryList:first-child {
                padding-left: 0;
            }

            .subCatWrapper .SubCategoryList .SubCategoryListHeading {
                color: #002739;
                font-size: 16px;
                font-weight: 400;
                letter-spacing: normal;
                line-height: 1.2;
                text-transform: uppercase;
                font-family: DMSans-SemiBold;
            }

            .subCatWrapper .SubCategoryList ul {
                align-items: flex-start;
                align-content: stretch;
                height: 265px;
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-start;
                margin: -10px 0 0;
                padding: 0 24px 0 0;
            }

                .subCatWrapper .SubCategoryList ul li {
                    padding: 0 0 5px;
                }

                .subCatWrapper .SubCategoryList ul a {
                    font-size: 13px;
                    padding: 10px 0;
                    display: block;
                    color: #002739;
                    letter-spacing: .008em;
                    text-align: left;
                    text-transform: uppercase;
                }

                    .subCatWrapper .SubCategoryList ul a:focus, .subCatWrapper .SubCategoryList ul a:hover {
                        text-decoration: none;
                    }

    .MenuWrapper {
        align-items: center;
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .subCatParentContainer {
        display: grid;
        grid-template-columns: 34.4% 65.6%;
    }

    .catalog-promo {
        position: relative;
    }

        .catalog-promo .catalog-promo-desc {
            position: absolute;
            right: 6%;
            top: 5%;
            max-width: 800px;
            z-index: 2;
        }

        .catalog-promo h2 {
            color: #fff;
            font-family: $header_font;
            font-weight: 700;
            font-size: 60px;
            line-height: 46px;
            margin: 0 0 16px;
        }

            .catalog-promo h2 > :first-child {
                font-size: 28px;
            }

            .catalog-promo h2 span, .catalog-promo h2 strong {
                font-family: $header_font;
                font-weight: 700;
            }
}

@media (min-width:1280px) {
    .catalog-promo .catalog-promo-desc {
        top: 14%;
    }
}

.collapsible-wrapper {
    padding: 18px 29px 17px;
    margin-bottom: 20px;
}

    .collapsible-wrapper .collapsible-arrow-wrapper {
        position: absolute;
        right: -11px;
        top: -4px;
    }

    .collapsible-wrapper .collapsible-arrow {
        display: block;
        width: 1.6rem;
        height: 1.6rem;
        transition: transform .3s ease-in-out;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAABGklEQVR4Ae3RAcZCQRiF4buDfwshBGi+2UQgcIGAVtpSIuS/KyilG+UTcbk6zIH3GQBm3mM6AAAAAAAAAACA+eqf/yZBXcV/2XeCVPYx1FXj/FjGUMd45AQp/1HHGGLZNL+e61jHnKDmv8652YT1IvPfE2LX/Sh27/ycsF60yT/lk58JYn6eU4MJccjnlAmZ/33i0OAH4jg9Qcw/5g9YJpS+m6n0xvzpCfVe+nn59S7kGyYo+YYJWz3fO+E2PaFs9XzPhMy/6fmWCXq+YUJs9HzrhLh+JsQmrnq+bYKeb52g53snXPR88wQ93z9Bz/dP0PP9E/R89wQ93zpBz7dO0POtE/R86wQ93zpBzzdP+MoHAAAAAAAAAADAExTnTW20AtjhAAAAAElFTkSuQmCC);
    }

    .collapsible-wrapper .collapsible-header {
        width: 100%;
        position: relative;
    }

    .collapsible-wrapper .collapsible-toggle {
        display: flex;
        width: 100%;
        border: 1px solid transparent;
        outline: none;
        background: transparent;
        text-align: left;
        position: relative;
        top: 2px;
    }

    .collapsible-wrapper .collapsible-inner {
        max-height: 0;
        overflow: hidden;
        transition-duration: .3s;
        transition-property: max-height;
        z-index: 1;
        position: relative;
    }

    .collapsible-wrapper .collapsible-content {
        opacity: 0;
        transition-timing-function: linear,ease;
        transition-duration: .3s;
        transition-property: opacity,transform;
        transition-delay: .5s;
        padding: 1rem 0;
    }

.collapsible-wrapper--opened .collapsible-arrow {
    transform: rotate(180deg);
}

.collapsible-wrapper--opened .collapsible-inner {
    max-height: 100rem;
    transition-timing-function: cubic-bezier(.895,.03,.685,.22);
    transition-duration: .5s;
    transition-property: max-height;
}

.collapsible-wrapper--opened .collapsible-content {
    opacity: 1;
    transition-delay: .2s;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: opacity,transform;
}

.back-to-top {
    position: fixed;
    bottom: 17px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 8;
    border: 3px solid #cfe0d5;
    cursor: pointer;
}

    .back-to-top svg {
        margin: -1px auto 0;
        width: 11px;
    }

        .back-to-top svg path {
            fill: #56695d;
        }

@media screen and (max-width:767px) {
    .product-detail .back-to-top {
        bottom: 85px;
    }
}

@media screen and (min-width:1280px) {
    .back-to-top {
        bottom: 18px;
    }
}

.footer-top-wrapper {
    border: solid transparent;
    text-align: center;
}

    .footer-top-wrapper .footer-inner-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
    }

@media screen and (max-width:767px) {
    .footer-logo {
        margin-top: 29px;
        text-align: center;
    }

        .footer-logo svg {
            width: 158px;
        }

    .footer-content-wrapper .footer-contact-wrapper, .footer-content-wrapper .footer-links .footer-logo svg {
        max-width: none;
    }

    .footer-social-links {
        padding: 24px 0 26px;
        border-width: 1px 0 0;
    }

    .footer-subscription-wrapper {
        padding: 40px 0 29px;
        border-width: 0 0 1px;
    }

    .footer-content-wrapper {
        padding: 43px 0 36px;
    }

    .footer-contact-wrapper .content {
        margin-top: 22px;
    }

    .footer-contact-wrapper .phone-link {
        margin-top: 16px;
        text-decoration: underline;
    }

    .footer-utility-links {
        margin-bottom: 6px;
    }

    .footer-accordion-item {
        padding-bottom: 33px;
    }

    .footer-accordion-heading, .footer-contact-heading, .footer-top-heading {
        font-size: 12px;
    }
}

@media screen and (min-width:768px) {
    .footer-container .container-width {
        width: 100%;
        max-width: 1440px;
    }

        .footer-container .container-width.footer-inner-content {
            padding-right: 0;
            padding-left: 0;
        }

    .footer-top-wrapper {
        border-width: 0 0 1px;
    }

    .footer-links-wrapper {
        padding-top: 65px;
        padding-bottom: 53px;
    }

    .footer-top-content {
        padding-top: 0;
        padding-bottom: 9px;
        text-align: center;
        width: 50%;
    }

        .footer-top-content.-left {
            border-right: 1px solid transparent;
            -webkit-flex-grow: 1;
            flex-grow: 1;
            -webkit-flex-basis: 0;
            flex-basis: 0;
        }

    .footer-contact-wrapper {
        max-width: 205px;
    }
}

@media screen and (min-width:1024px) {
    .footer-links .footer-logo {
        top: 38%;
    }
}

@media screen and (max-width:1280px) {
    .footer-contact-wrapper, .footer-links .footer-logo svg {
        max-width: 150px;
    }
}

@media screen and (min-width:1280px) {
    .footer-container .container-width {
        padding-left: 68px;
        padding-right: 130px;
    }
}

.footer-social-links {
    text-align: center;
}

    .footer-social-links .social-icons {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
    }

        .footer-social-links .social-icons a {
            margin-left: 42px;
            display: block;
        }

            .footer-social-links .social-icons a:first-child {
                margin-left: 0;
            }

            .footer-social-links .social-icons a:hover path {
                fill: #002739;
            }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media screen and (min-width:768px) {
    .footer-social-links {
        -webkit-flex-grow: 1;
        flex-grow: 1;
        -webkit-flex-basis: 0;
        flex-basis: 0;
    }

        .footer-social-links .footer-top-content {
            margin: auto;
        }

        .footer-social-links .social-icons a {
            margin-left: 42px;
        }

            .footer-social-links .social-icons a:first-child {
                margin-left: 0;
            }
}

.apollo-error {
    color: red;
}

.footer-subscription-wrapper {
    text-align: left;
}

    .footer-subscription-wrapper .field-wrapper .label {
        z-index: 1;
        clip: auto;
        width: auto;
        height: auto;
        left: 24px;
        pointer-events: none;
    }

    .footer-subscription-wrapper .field-wrapper input {
        width: 100%;
        background: transparent;
        color: #002739;
        font-size: 15px;
        border: 1px solid #898989;
        box-sizing: border-box;
    }

        .footer-subscription-wrapper .field-wrapper input::placeholder {
            color: inherit;
        }

.copyright-wrapper {
    width: 100%;
    background: #002739;
}

    .copyright-wrapper .footer-utility-link {
        color: #fff;
    }

    .copyright-wrapper .container-width {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        color: #fff;
    }

.footer-utility-links .footer-utility-link {
    display: inline;
}

    .footer-utility-links .footer-utility-link:first-child {
        padding-right: 10px;
        margin-right: 10px;
        border-right: 1px solid #fff;
    }

@media screen and (max-width:767px) {
    .copyright-wrapper .container-width {
        font-size: 11px;
        padding-top: 8px;
        padding-bottom: 11px;
        flex-direction: column-reverse;
    }

        .copyright-wrapper .container-width div {
            text-align: left;
        }
}

@media screen and (min-width:768px) {
    .copyright-wrapper {
        padding: 19px 0 15px;
        font-size: 10px;
    }

        .copyright-wrapper .container-width {
            justify-content: space-between;
            line-height: 1;
        }
}

.footer-container {
    background: none;
    color: #fff;
}

    .footer-container h2, .footer-container h4 {
        color: #fff;
    }

    .footer-container h4 {
        position: relative;
    }

        .footer-container h4:after {
            content: "";
            height: 1px;
            background: #fff;
            display: block;
            position: absolute;
            top: 10px;
            left: 0;
        }

    .footer-container a, .footer-container a:hover {
        color: #fff;
    }

    .footer-container .field-wrapper {
        padding: 0;
    }

.footer-subscription-wrapper {
    position: relative;
    max-width: 551px;
    width: 100%;
}

    .footer-subscription-wrapper .btn {
        border: 0;
        font-size: 0;
        display: flex;
        align-items: center;
        margin: 0;
        min-width: 0;
        padding: 0;
        position: absolute;
        right: 0;
        top: 26px;
    }

        .footer-subscription-wrapper .btn:after {
            content: "";
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.76 11.35'%3E%3Cpath fill='%23fff' d='M17.63 5.29L13.49.21a.6.6 0 00-.84-.08.62.62 0 00-.08.84l3.34 4.1H.58a.6.6 0 000 1.2h15.33l-3.33 4.1a.62.62 0 00.08.84.59.59 0 00.84-.08l4.14-5.08a.62.62 0 000-.76z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: 100% 0;
            display: block;
            height: 13px;
            opacity: .5;
            width: 18px;
            position: absolute;
            top: 8px;
        }

        .footer-subscription-wrapper .btn:focus, .footer-subscription-wrapper .btn:hover {
            background-color: transparent;
            border: transparent;
            outline: none;
            box-shadow: none;
        }

        .footer-subscription-wrapper .btn:disabled {
            opacity: 1;
            background: transparent;
        }

            .footer-subscription-wrapper .btn:disabled:after {
                opacity: .3;
            }

            .footer-subscription-wrapper .btn:disabled:focus, .footer-subscription-wrapper .btn:disabled:hover {
                background-color: transparent;
                border: transparent;
                outline: none;
                box-shadow: none;
            }

    .footer-subscription-wrapper .root-checkbox {
        align-items: flex-start;
    }

.sms-subscription {
    margin-top: 9px;
}

.footer-top-heading {
    font-size: 13px;
    line-height: 26px;
}

.footer-top-wrapper {
    background: #002739;
    border: 0;
    text-align: left;
    color: #fff;
}

.footer-accordion-heading, .footer-contact-heading {
    display: block;
    margin-bottom: 6px;
}

footer .root-checkbox {
    margin: 0;
}

footer .social-media {
    display: flex;
}

    footer .social-media button {
        font-size: 0;
        line-height: 1;
        text-decoration: none;
        margin: 0;
        border: 0;
    }

footer .social-fb button:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.5 27'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M8.98 27.04V13.5h4l.53-4.65H8.98V6.52c0-1.21.12-1.86 2-1.86h2.49V.04h-4c-4.79 0-6.48 2.22-6.48 6v2.81H0v4.65h3v13.54z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    display: block;
}

footer .social-insta button:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.8 28.8'%3E%3Cpath fill-rule='evenodd' fill='%23fff' d='M14.4 0c-3.91 0-4.41 0-5.94.09a10.53 10.53 0 00-3.5.67A7.36 7.36 0 00.75 4.97a10.48 10.48 0 00-.67 3.5C.01 10 0 10.47 0 14.41s0 4.4.08 5.93a10.79 10.79 0 00.67 3.54 7.36 7.36 0 004.21 4.21 10.48 10.48 0 003.5.67c1.53.07 2 .09 5.93.09s4.4 0 5.94-.09a10.53 10.53 0 003.5-.67 7.36 7.36 0 004.21-4.21 10.79 10.79 0 00.67-3.5c.07-1.53.08-2 .08-5.93s0-4.41-.08-5.94a10.74 10.74 0 00-.67-3.5A7.36 7.36 0 0023.83.76a10.53 10.53 0 00-3.5-.67c-1.54-.07-2-.09-5.94-.09zm-1.3 2.6h1.3c3.84 0 4.3 0 5.82.08a8 8 0 012.67.5 4.35 4.35 0 011.65 1.08 4.35 4.35 0 011.08 1.62 8 8 0 01.5 2.67c.07 1.52.08 2 .08 5.82s0 4.3-.08 5.82a8 8 0 01-.5 2.69 4.75 4.75 0 01-2.73 2.73 7.77 7.77 0 01-2.67.5c-1.52.07-2 .08-5.82.08s-4.3 0-5.82-.08a8 8 0 01-2.68-.5 4.75 4.75 0 01-2.68-2.73 8 8 0 01-.5-2.67c-.06-1.52-.08-2-.08-5.82s0-4.3.08-5.82a8 8 0 01.5-2.69 4.46 4.46 0 011-1.63A4.59 4.59 0 015.9 3.17a8.12 8.12 0 012.68-.49c1.33-.06 1.84-.08 4.52-.08zm9 2.39a1.73 1.73 0 101.73 1.73 1.72 1.72 0 00-1.73-1.73zm-7.68 2a7.4 7.4 0 107.39 7.4 7.4 7.4 0 00-7.39-7.4zm0 2.6a4.8 4.8 0 11-4.8 4.8 4.79 4.79 0 014.78-4.78z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    display: block;
}

footer .social-twitter button:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30.37 24.75'%3E%3Cpath fill-rule='evenodd' fill='%23fff' d='M14.75 6.59l.06 1.07-1.09-.13A17.93 17.93 0 013.27 2.46L1.82 1.04l-.37 1.05a6.24 6.24 0 001.36 6.44c.88.91.68 1-.83.5-.53-.18-1-.31-1-.24a7.9 7.9 0 00.79 2.92 7 7 0 003 2.8l1.08.5H4.57c-1.23 0-1.27 0-1.14.48a6.6 6.6 0 004.08 3.64l1.36.46-1.19.7A12.48 12.48 0 011.8 21.9a6.62 6.62 0 00-1.8.18A16.77 16.77 0 004.2 24a18.73 18.73 0 0014.39-1.62 19 19 0 007.31-8.47 22.19 22.19 0 001.49-6.56c0-1 .07-1.13 1.3-2.33a15.57 15.57 0 001.58-1.69c.22-.41.19-.41-.93 0-1.86.66-2.12.57-1.2-.42A6.26 6.26 0 0029.63.53c0-.07-.33 0-.7.24a13.1 13.1 0 01-1.93.76l-1.19.37-1.08-.72a9 9 0 00-1.86-1 7.55 7.55 0 00-3.84.09 6.25 6.25 0 00-4.28 6.32z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    display: block;
}

footer .social-pinterest button:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27'%3E%3Cpath fill-rule='evenodd' fill='%23fff' d='M0 13.5a13.51 13.51 0 008.62 12.58 13.32 13.32 0 010-3.88c.25-1.05 1.58-6.71 1.58-6.71a4.91 4.91 0 01-.4-2c0-1.88 1.09-3.28 2.44-3.28a1.7 1.7 0 011.71 1.9c0 1.16-.74 2.89-1.12 4.5a2 2 0 002 2.44c2.4 0 4.25-2.53 4.25-6.19a5.33 5.33 0 00-5.64-5.49 5.85 5.85 0 00-6.1 5.86 5.22 5.22 0 001 3.08.42.42 0 01.09.39c-.1.43-.33 1.34-.37 1.53s-.2.3-.46.18c-1.68-.78-2.74-3.25-2.74-5.23 0-4.26 3.1-8.17 8.92-8.17 4.69 0 8.33 3.34 8.33 7.8 0 4.65-2.94 8.4-7 8.4a3.61 3.61 0 01-3.09-1.56s-.68 2.58-.84 3.21A15.05 15.05 0 019.5 26.4 13.5 13.5 0 100 13.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    display: block;
}

footer .social-youtube button:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 22'%3E%3Cpath fill-rule='evenodd' fill='%23fff' d='M29.37 3.44A42.55 42.55 0 0130 11a42.55 42.55 0 01-.63 7.56 3.83 3.83 0 01-2.65 2.78C24.38 22 15 22 15 22s-9.38 0-11.72-.66a3.83 3.83 0 01-2.65-2.78A42.55 42.55 0 010 11a42.55 42.55 0 01.63-7.56A3.83 3.83 0 013.28.66C5.62 0 15 0 15 0s9.38 0 11.72.66a3.83 3.83 0 012.65 2.78zM12 17l8-5-8-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    display: block;
}

footer .col-accordion .btn-link {
    border: 0;
    font-family: $header_font;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: normal;
    margin-bottom: 7px;
}

footer .copyright-block.container-width {
    justify-content: flex-start;
}

    footer .copyright-block.container-width > div {
        font-family: DMSans-Light;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: normal;
        color: #002739;
    }

    footer .copyright-block.container-width [class^=buttons-root] {
        display: flex;
    }

footer .copyright-wrapper {
    background: #cacbcd;
}

    footer .copyright-wrapper .footer-bottom-links .btn-link {
        font-family: DMSans-Light;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: normal;
        padding: 0;
        border: 0;
        margin: 0 9px 0 0;
    }

@media screen and (max-width:767px) {
    footer .social-media {
        max-width: 280px;
        align-items: center;
        justify-content: space-between !important;
        margin: 0 auto;
        width: 100%;
    }

        footer .social-media button.btn-link {
            height: 27px;
            width: 30px;
        }

    footer .social-wrap {
        padding-top: 80px;
    }

    footer .social-fb button:after {
        height: 24px;
        width: 12px;
    }

    footer .social-insta button:after {
        height: 26px;
        width: 26px;
    }

    footer .social-twitter button:after {
        height: 22px;
        width: 27px;
    }

    footer .social-pinterest button:after {
        height: 24px;
        width: 24px;
    }

    footer .social-youtube button:after {
        height: 22px;
        width: 33px;
    }

    footer .copyright-wrapper {
        padding: 17px 0 18px;
    }

        footer .copyright-wrapper .copyright-block {
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 12px;
        }

    .footer-links-wrapper {
        padding-top: 65px;
        padding-bottom: 30px;
    }

        .footer-links-wrapper .collapse:not(.show) {
            display: none;
        }

        .footer-links-wrapper .accordion {
            border-color: #002739;
            width: 100%;
        }

            .footer-links-wrapper .accordion h3 {
                display: none;
            }

            .footer-links-wrapper .accordion > button {
                background-color: transparent;
                border-top: 1px solid #002739;
                background-size: 15px 8px;
                font-size: 28px;
                line-height: 36px;
                position: relative;
                padding: 15px 0 16px;
                text-align: left;
                -ms-transition: all .2s ease-out;
                -moz-transition: all .2s ease-out;
                -webkit-transition: all .2s ease-out;
                transition: all .2s ease-out;
                margin: 0;
                display: block;
                width: 100%;
            }

                .footer-links-wrapper .accordion > button:after {
                    content: "";
                    display: block;
                    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.71 5.85'%3E%3Cpath fill='none' stroke-linejoin='round' stroke='%23000' d='M.35.35l5 5 5-5'/%3E%3C/svg%3E");
                    background-position: 100%;
                    background-repeat: no-repeat;
                    position: absolute;
                    -ms-transition: all .25s ease-out;
                    -moz-transition: all .25s ease-out;
                    -webkit-transition: all .25s ease-out;
                    transition: all .25s ease-out;
                    right: 2px;
                    top: 24px;
                    height: 18px;
                    width: 15px;
                }

                .footer-links-wrapper .accordion > button:focus {
                    outline: none;
                }

                .footer-links-wrapper .accordion > button.expanded:after {
                    transform: rotate(-180deg);
                }

            .footer-links-wrapper .accordion [class^=buttons-root] {
                padding: 0 0 10px;
            }

            .footer-links-wrapper .accordion .btn-link {
                text-align: left;
                width: auto;
            }

        .footer-links-wrapper .col-accordion {
            width: 100% !important;
        }

            .footer-links-wrapper .col-accordion:nth-child(2) {
                padding: 0 5%;
            }

    .footer-subscription-wrapper .btn {
        height: 34px;
        width: 34px;
    }

        .footer-subscription-wrapper .btn:after {
            right: 2px;
        }

    .agreement-checkbox {
        padding-top: 24px;
    }

    .footer-inner-content.container-width {
        display: block;
    }

    .footer-content-wrapper {
        padding: 43px 0 34px;
    }

        .footer-content-wrapper .footer-contact-wrapper, .footer-content-wrapper .footer-links .footer-logo svg {
            max-width: none;
        }

        .footer-content-wrapper .content {
            margin-top: 22px;
        }

        .footer-content-wrapper .phone-link {
            margin-top: 16px;
            text-decoration: underline;
        }

    .footer-social-links {
        padding: 24px 0 26px;
        border-width: 1px 0 0;
    }

    .footer-subscription-wrapper {
        padding: 0 0 29px;
        border-width: 0;
    }

    .subscription-content {
        padding-bottom: 40px;
    }

    .footer-utility-links {
        margin-bottom: 6px;
    }

    .footer-accordion-item {
        padding-bottom: 33px;
    }

    .footer-accordion-heading, .footer-contact-heading, .footer-top-heading {
        font-size: 12px;
    }

    .footer-top-wrapper {
        padding-top: 45px;
        padding-bottom: 114px;
    }

    .footer-container h2 {
        padding-bottom: 6px;
        padding-right: 45px;
    }

    .footer-container h4 {
        padding-left: 45px;
        padding-bottom: 26px;
    }

        .footer-container h4:after {
            width: 24px;
        }

    .footer-container .input-block input {
        height: 34px;
        line-height: 34px;
    }

    .footer-container.footer-us .footer-top-wrapper {
        padding-top: 47px;
    }

    .footer-container.footer-us h4 {
        padding-bottom: 24px;
    }

    .footer-container.footer-us .social-wrap {
        padding-top: 9px;
    }

    .footer-container.footer-us .social-fb {
        margin-right: 0;
        margin-left: 2px;
    }

    .footer-container.footer-us .social-insta {
        margin-right: 11px;
    }
}

@media screen and (min-width:768px) {
    footer .social-media {
        justify-content: space-between !important;
        max-width: 314px;
    }

        footer .social-media button.btn-link {
            height: 30px;
            width: 34px;
        }

    footer .social-wrap {
        padding-top: 10%;
        padding-bottom: 0;
        max-width: 378px;
        width: 100%;
    }

    footer .social-fb button:after {
        height: 27px;
        width: 14px;
    }

    footer .social-insta button:after {
        height: 29px;
        width: 29px;
    }

    footer .social-twitter button:after {
        height: 25px;
        width: 30px;
    }

    footer .social-pinterest button:after {
        height: 27px;
        width: 27px;
    }

    footer .social-youtube button:after {
        height: 25px;
        width: 34px;
    }

    footer .accordion-title {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 0;
        margin-bottom: 8px;
    }

    footer .col-accordion .btn-link {
        padding: 0;
    }

    footer .footer-links-wrapper {
        padding-top: 50px;
        padding-bottom: 37px;
    }

    .footer-subscription-wrapper .btn {
        height: 43px;
        width: 43px;
    }

        .footer-subscription-wrapper .btn:after {
            right: -1px;
            top: 14px;
        }

    .sms-subscription {
        margin-top: 35px;
    }

    .footer-container .container-width {
        width: 100%;
        max-width: 1300px;
        justify-content: space-between;
        align-items: flex-start;
    }

        .footer-container .container-width.footer-inner-content {
            padding-right: 20px;
            padding-left: 20px;
        }

    .footer-container h4 {
        padding-left: 45px;
        margin-bottom: 22px;
    }

        .footer-container h4:after {
            width: 27px;
        }

    .footer-container .footer-links-wrapper.container-width {
        padding-left: 20px;
        padding-right: 20px;
    }

    .agreement-checkbox {
        padding-top: 20px;
    }

    .footer-top-wrapper {
        border-width: 0 0 1px;
        padding-bottom: 98px;
    }

    .footer-top-content {
        padding-top: 0;
        padding-bottom: 9px;
        text-align: left;
        width: auto;
    }

        .footer-top-content.left {
            border-right: 1px solid transparent;
            padding-right: 4%;
            max-width: 50%;
        }

    .footer-contact-wrapper {
        max-width: 205px;
    }

    .footer-links-wrapper [class^=columnGroup-root] {
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links-wrapper .col-accordion {
        width: auto !important;
    }

    .copyright-wrapper .copyright-block {
        flex-direction: column-reverse;
    }

        .copyright-wrapper .copyright-block.container-width {
            padding-right: 20px;
            padding-left: 20px;
        }
}

@media screen and (min-width:1440px) {
    .footer-container.footer-us .footer-content-wrapper {
        padding-top: 4.75%;
    }

    .footer-container.footer-us .container-width {
        justify-content: flex-start;
    }

    .footer-container.footer-us .social-wrap {
        padding-top: 12.5%;
    }

    .footer-container.footer-us .social-fb {
        margin-right: 0;
        margin-left: 0;
    }

    .footer-container.footer-us .social-insta {
        margin-right: 11px;
    }

    .footer-container.footer-us .footer-top-content.left {
        margin-top: 2px;
    }

    .footer-container.footer-us .footer-top-content.right {
        padding-left: 1.7%;
        margin-top: -3px;
    }

    .footer-container.footer-us .footer-subscription-wrapper .label-checkbox {
        line-height: 19px;
    }
}