/*----------------------------------------------------------------*/
/*  Base styles
/*----------------------------------------------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    /* font: inherit; */
    vertical-align: baseline;
}

html {
    font-size: var(--k-text-font-size);

    /* takes into account our sticky header */
    scroll-padding-top: 150px;
}

body {
    font-family: var(--k-font-family);
    font-size: var(--k-text-font-size);
    line-height: var(--k-text-line-height);
    font-weight: var(--k-text-font-weight);
    letter-spacing: var(--k-text-letter-spacing);
    color: var(--k-text-color);
}


/*----------------------------------------------------------------*/
/*  Typography
/*----------------------------------------------------------------*/
h1 {
    font-family: var(--k-h1-font-family);
    font-size: var(--k-h1-font-size);
    font-weight: var(--k-h1-font-weight);
    line-height: var(--k-h1-line-height);
    letter-spacing: var(--k-h1-letter-spacing);
    text-rendering: optimizeLegibility;
    color: var(--k-h1-color);
    margin: var(--k-h1-margin);
    text-transform: uppercase;
}

h1::after {
    content: "";
    display: block;
    width: 65px;
    height: 7px;
    margin-top: 10px;
    background: var(--k-primary);
}

h2 {
    font-family: var(--k-h1-font-family);
    font-size: var(--k-h2-font-size);
    font-weight: var(--k-h2-font-weight);
    line-height: var(--k-h2-line-height);
    letter-spacing: var(--k-h2-letter-spacing);
    color: var(--k-h2-color);
    margin: var(--k-h2-margin);
    text-rendering: optimizeLegibility;
}

h3 {
    font-family: var(--k-h1-font-family);
    font-size: var(--k-h3-font-size);
    font-weight: var(--k-h3-font-weight);
    line-height: var(--k-h3-line-height);
    letter-spacing: var(--k-h3-letter-spacing);
    color: var(--k-h3-color);
    margin: var(--k-h3-margin);
    text-rendering: optimizeLegibility;
}

h4 {
    font-family: var(--k-h1-font-family);
    font-size: var(--k-h4-font-size);
    font-weight: var(--k-h4-font-weight);
    line-height: var(--k-h4-line-height);
    letter-spacing: var(--k-h4-letter-spacing);
    color: var(--k-h4-color);
    margin: var(--k-h4-margin);
    text-rendering: optimizeLegibility;
}

h5 {
    font-family: var(--k-h1-font-family);
    font-size: var(--k-h5-font-size);
    font-weight: var(--k-h5-font-weight);
    line-height: var(--k-h5-line-height);
    letter-spacing: var(--k-h5-letter-spacing);
    color: var(--k-h5-color);
    margin: var(--k-h5-margin);
    text-rendering: optimizeLegibility;
}

h6 {
    font-family: var(--k-h1-font-family);
    font-size: var(--k-h6-font-size);
    font-weight: var(--k-h6-font-weight);
    line-height: var(--k-h6-line-height);
    letter-spacing: var(--k-h6-letter-spacing);
    color: var(--k-h6-color);
    margin: var(--k-h6-margin);
    text-rendering: optimizeLegibility;
}

p {
    margin: var(--k-text-margin);
}

a {
    cursor: pointer;
    text-decoration: none;
    /* font-size: var(--k-text-font-size);
    line-height: var(--k-text-line-height);
    font-weight: var(--k-text-font-weight);
    letter-spacing: var(--k-text-letter-spacing); */
    color: var(--k-text-color);
}

a.k-link--regular {
    border-bottom: 1px solid #ffcc33;
}

a:hover {
    color: currentColor;
    /* color: var(--k-primary); */
    /* opacity: .8; */
}

strong {
    font-weight: 700;
}


ul.k-list--normal,
.k-content-page ul {
    padding-left: 0;
    list-style-type: none;
}

ul.k-list--normal li,
.k-content-page ul li {
    margin: 10px 10px;
    color: #6D6D6E;
    font-size: var(--k-text-font-size);
    font-weight: var(--k-text-font-weight);
    line-height: var(--k-text-line-height);
    letter-spacing: var(--k-text-letter-spacing);
    display: flex;
    align-items: center;
}

ul.k-list--normal li::before,
.k-content-page ul li::before {
    content: '';
    background-color: var(--k-accent);
    height: 1px;
    width: 16px;
    display: block;
    margin-right: 12px;
}


/*----------------------------------------------------------------*/
/*  Buttons
/*----------------------------------------------------------------*/
.btn {
    font-size: 12px;
    line-height: 1.5;
    padding: 6px 30px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .2s ease-out;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 700;
}

.btn:focus {
    box-shadow: none;
}

.btn-primary {
    color: #000;
    background-color: var(--k-primary);
    border-color: var(--k-primary);
}

.btn-primary:hover {
    color: #000;
    background-color: var(--k-primary-600);
    border-color: var(--k-primary-600);
}

.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary:disabled,
.btn-primary.active:focus
 {
    background-color: var(--k-primary-600);
    border-color: var(--k-primary-600);
    box-shadow: var(--k-button-focus-box-shadow);
    color: #000;
}

.btn-secondary:active:focus {
    box-shadow: var(--k-button-focus-box-shadow);
}

.btn-lg {
    font-size: 14px;
    line-height: 1.9;
    padding: 4px 29px;
}

.btn-sm {
    padding: 3px 30px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all .2s ease-out;
}

.btn-full {
    width: 100%;
}

.btn.btn-outline-primary {
    border: 2px solid var(--k-primary);
    color: black;
}

.btn.btn-outline-primary:hover {
    background-color: white;
    border-color: #292929;
}


.btn-outline-primary:focus,
.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:disabled,
.btn-outline-primary.active:focus {
    background-color: white;
    border-color: #292929;
    box-shadow: var(--k-button-focus-box-shadow);
}

.btn.btn-light {
    color: #000;
    background-color: #ededed;
}

.btn.btn-light:hover {
    background-color: #DBDBDB;
}

.btn-loading {
    color: transparent!important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
    
.btn-loading::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}
    
.btn-primary.btn-loading::before {
    color: black;
}

/*----------------------------------------------------------------*/
/*  Forms
/*----------------------------------------------------------------*/
.form-control:focus {
    position: relative;
    box-shadow: var(--k-input-focus-box-shadow);
    border-color: var(--k-input-focus-border-color) !important;
}

.form-select:focus {
    box-shadow: var(--k-input-focus-box-shadow);
    border-color: var(--k-input-focus-border-color) !important;
}

.form-check-input:checked {
    background-color: var(--k-primary);
    border-color: var(--k-primary) !important;
}

.form-check-input:focus {
    border-color: var(--k-input-focus-border-color) !important;
    box-shadow: var(--k-input-focus-box-shadow);
}

.form-field {
    margin-bottom: 16px;
    width: -webkit-fill-available;
    min-width: 0;
}

.form-check {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.form-check-input {
    margin-top: 0;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.form-row .form-field {
    flex: 1;
}

input[type=text], input[type=password], input[type=email], input[type=date], input[type=number], select, textarea, .form-control, .form-select {
    font-size: 14px;
    font-weight: 500;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.input-group--number {
    /* border: 1px solid gray; */
    /* border-radius: 4px; */
    /* width: 150px; */
    width: 110px;
    flex-wrap: nowrap;
    /* overflow: hidden; */
}

.input-group--number .btn {
    border: 0;
    background-color: #ededed;
    color: rgb(41, 41, 41);
    font-weight: 500;
    line-height: 100%;
    font-size: 22px;
    border-radius: 0;
    padding: 0;
    width: 30px;
    height: 36px;
}

.input-group--number .btn:first-of-type {
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    border-left: 1px solid gray;
    border-radius: 4px 0 0 4px !important;
}

.input-group--number .btn:last-of-type {
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    border-right: 1px solid gray;
    border-radius: 0 4px 4px 0 !important;
}



.input-group--number.input-group > .form-control {
    width: 50px;
    border-bottom: 0;
    border-top: 0;
    border: 1px solid #979797;
    text-align: center;
    z-index: 5;
    /* margin: 0 1px 0 1px!important; */
}

.autoComplete_wrapper>ul {
    max-height: none;
}

.autoComplete_wrapper>ul>li {
    padding: 16px;
    color: rgb(41, 41, 41);
    font-size: 16px;
    font-weight: 500;
}

.autoComplete_wrapper>ul>li mark {
    font-weight: 700;
    color: #292929;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--k-primary);
    color: #000;
}


/*----------------------------------------------------------------*/
/*  Tables
/*----------------------------------------------------------------*/
.table th, .table td {
    font-size: 14px;
}


/*----------------------------------------------------------------*/
/*  Accordion
/*----------------------------------------------------------------*/
.accordion-button, .accordion-button:not(.collapsed) {
    background-color: var(--k-primary-light);
    color: var(--k-text-color);
}

.accordion-button:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

/* setting the arrow fill manually as a fill param in data path */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292929'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23292929'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}



/*----------------------------------------------------------------*/
/*  Tabs
/*----------------------------------------------------------------*/
.nav-tabs.k-tabs--simple {
    border-bottom: 0;
    justify-content: center;
    gap: 6px;
}

.nav-tabs.k-tabs--simple button {
    font-size: 18px;
    text-align: center;
    border-radius: 3px 3px 0 0;
    vertical-align: middle;
    color: #686868;
    background-color: #fff;
    border-bottom: 4px solid #616161;
    font-weight: 400;
    border-top: 0;
    padding: 10px;
    border-left: 0;
    border-right: 0;
    min-width: 195px;
}

.nav-tabs.k-tabs--simple button.active {
    border-bottom: 4px solid var(--k-primary);
    font-weight: 600;
    color: #000;
}

.k-tabs--simple + .tab-content .tab-pane {
    border: 1px solid #eee;
    padding: 24px 30px;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 770px) {
    .nav-tabs.k-tabs--simple button {
        padding: 8px 16px;
        font-size: 14px;
        min-width: auto;
    }
}

@media screen and (max-width: 770px) {
    .nav-tabs.k-tabs--simple button {
        padding: 8px 8px;
        font-size: 12px;
    }
}

/*----------------------------------------------------------------*/
/*  Widget
/*----------------------------------------------------------------*/
.popover-header {
    font-family: var(--k-font-family);
}

/*----------------------------------------------------------------*/
/*  Widget
/*----------------------------------------------------------------*/
.k-widget {}

.k-widget:not(:last-child) {
    margin-bottom: 72px;
}

.k-widget__title {
    border-bottom: 2px solid #ededed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 26px;
    padding: 12px 0;
    position: relative;
    font-weight: 500;
    font-family: Montserrat,sans-serif;
}

.k-widget__title:after {
    content: "";
    display: block;
    border-bottom: 6px solid var(--k-primary);
    position: absolute;
    width: 36px;
    bottom: -4px;
}

.k-widget .tab-pane {
    /* padding: 24px 30px;
    font-size: 14px;
    font-weight: 500; */
}

@media (max-width: 767px) {
    .k-widget__title {
        font-size: 18px;
    }
}



/*----------------------------------------------------------------*/
/*  Page styles
/*----------------------------------------------------------------*/
.k-page--default {
    max-width: var(--k-content-max-width);
    width: var(--k-content-width);
    margin: 0 auto;
    padding: 24px 24px 80px 24px;
    min-height: calc(100vh - 430px);
}

.k-breadcrumbs {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    margin-bottom: 32px;
    background-color: #ededed;
    padding: 0 40px;
    height: 37px;
    max-width: var(--k-content-max-width);
    width: var(--k-content-width);
    margin: 0 auto;
}

a.k-breadcrumbs__link {
    color: #292929;
    font-size: 12px;
    font-weight: 500;
}

.k-breadcrumbs__link:not(:first-child)::before {
    content: "/";
    margin: 0 16px;
}

@media (max-width: 560px) {
    .k-breadcrumbs {
        display: none;
    }
}

.k-page__title {
    margin-bottom: 32px;
}


/*----------------------------------------------------------------*/
/*  Content page styles
/*----------------------------------------------------------------*/
*.has-text-color > a {
    color: inherit;
}

.wp-block-buttons > .wp-block-button {
    margin: 0;
}

a.wp-block-button__link,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    border-radius: 2px;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    margin: 0 0 24px 0;
    min-width: 88px;
    outline: 0;
    text-decoration: none;
    position: relative;
    vertical-align: middle;
    user-select: none;
    background-color: var(--k-primary);
    color: var(--k-primary-text);
}

.wp-block-code {
    font-family: Menlo, Consolas, monaco, monospace;
    color: #1e1e1e;
    padding: 0.8em 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wp-block-code code {
    color: #1e1e1e;
    box-shadow: none;
    background-color: unset;
    font-size: 16px;
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin: 1em 0;
}

.wp-block-quote p {
    margin-bottom: 0;
}

.k-content-page p:empty {
    height: 30px;
    margin: 0;
}

.wp-block-column {
    margin-left: auto;
    margin-right: auto;
}

/*----------------------------------------------------------------*/
/*  Product Direct Shipped Flag
/*----------------------------------------------------------------*/
.k-product-direct-shipped__flag {
    height: 28px;
    position: relative;
    background-color: black;
    width: fit-content;
    line-height: 25px;
    padding: 0 10px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-top: 16px;
}

.k-product-direct-shipped__flag:after, .k-product-direct-shipped__flag:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 15px;
    height: 50%;
    background-image: linear-gradient(to left top, transparent 50%, #000 50%);
}
.k-product-direct-shipped__flag:after {
    top: 50%;
    transform: scaleY(-1);
}
.k-product-direct-shipped__flag--text {
    color: white;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}
.k-product-direct-shipped__flag--highlighted {
    color: #f3b306;
}
