@charset "UTF-8";
:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
}

/* WooProduct Fuzzy Search Form */
#wooproduct_fuzzy_search *,
#wooproduct_full_search *,
#wooproduct_link_search *,
#wooproduct_search_pair_bar * {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

    
}
#wooproduct_fuzzy_search {
    display: grid;
    grid-template-columns: 3fr minmax(80px, 1fr);
    grid-column-gap: 1%;
}
#wooproduct_full_search,
#wooproduct_link_search {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
#wooproduct_search_pair_bar {
  display: grid;
  grid-template-columns: 1fr ;
  grid-column-gap: 1%;
}

#wooproduct_fuzzy_search,
#wooproduct_full_search,
#wooproduct_link_search,
#wooproduct_search_pair_bar {
    /* background-color: rgba(44,131,200,0.8);
    padding: 20px;
    border-radius: 12px; */

    background-color: rgba(0,0,0,0.05);
    padding: 20px;
    border-radius: 12px;
}

#wooproduct_full_search #tc_full_search_text_label,
#wooproduct_link_search #tc_link_search_text_label {
    display: inline-block;
    grid-column: 1 / span 3;
}
#wooproduct_fuzzy_search input[type="text"],
#wooproduct_full_search input[type="text"],
#wooproduct_link_search input[type="text"],
#wooproduct_search_pair_bar input[type="text"] {
    display: inline-block;
    background: #fff;
}

/* Form Styles */
/* Textbox */
.tc_txtbox {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 3px;
    overflow: hidden;
}
.tc_txtbox .label {
    position: absolute;
    top: 20px;
    left: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
    pointer-events: none;
}
.tc_txtbox .focus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.01);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
}
.tc_txtbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 16px 12px 0 12px;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    color: #000;
    transition: all 0.15s ease;
}
.tc_txtbox input:hover {
    background: rgba(0, 0, 0, 0.01);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.tc_txtbox input:not(:-moz-placeholder-shown)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}

.tc_txtbox input:not(:-ms-input-placeholder)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.tc_txtbox input:not(:placeholder-shown)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.tc_txtbox input:focus {
    background: rgba(0, 0, 0, 0.01);
    outline: none;
    box-shadow: inset 0 -2px 0 #7a9859;
}
.tc_txtbox input:focus+.label {
    color: #7a9859;
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.tc_txtbox input:focus+.label+.focus-bg {
    transform: scaleX(1);
    transition: all 0.1s ease;
}
/* Button */
.tc_button {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 56px;
    margin: 0;
    padding: 0;
    font-size: 1em;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    cursor: pointer;
    /* background: rgba(0,0,0,0.04); */
    background: rgba(255,255,255,0.8);
    color: rgba(0,0,0,0.5);
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 16px;
}
#tc_full_search_submit_label > button > span, 
#tc_link_search_submit_label > button > span,
#tc_search_pair_bar_submit_label > button > span {
    position: absolute;
    top: auto;
    right: auto;
    left: 14px;
    bottom: 14px;
}
.tc_button:hover {
    /* border-bottom: 2px solid #859351;
    color: #859351;
    background: rgba(133,147,81,0.2); */
    background: rgba(255,255,255,0.95);
    border-bottom: 2px solid rgba(0,0,0,0.3);
    opacity: 0.9;
}
#tc_fuzzy_search_text_label:hover + #tc_fuzzy_search_submit_label .tc_button,
#tc_full_search_text_label:hover + #tc_full_search_submit_label .tc_button,
#tc_search_pair_bar_text_label:hover + #tc_search_pair_bar_submit_label .tc_button {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
#tc_search_pair_bar_submit:before {
  content: "✕";
  position: absolute;
  z-index: 3;
  top: 2px;
  right: 2px;
  left: auto;
  bottom: auto;
  background: #f5f5f8;
  height: 47px;
  width: 47px;
  opacity: 1;
  line-height: 47px;
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
  color: rgb(25, 71, 163);
  border: 1px solid transparent;
  border-radius: 32px;
  box-sizing: border-box;
  padding-top: 2px;
  padding-bottom: -2px;
  display: none;
}
/* .has_term #tc_search_pair_bar_submit:before {
  display: block;
} */
#wooproduct_fuzzy_search.on .tc_button,
#wooproduct_full_search.on .tc_button,
#wooproduct_link_search.on .tc_button,
#wooproduct_search_pair_bar.on .tc_button {
    border-bottom: 2px solid #859351 !important;
    color: #859351;
    /* background: rgba(133,147,81,0.2); */
    background: rgba(255,255,255,1);
}

/* Select */
.tc_select select {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 8px;
    font-size: 14px;
    line-height: 14px;
    background: rgba(255,255,255,1);
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    color: rgba(0,0,0,0.5);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';

    transition: all .25s ease;
}
.tc_select select:disabled {
    background: rgba(255,255,255,.9);
    color: rgba(0,0,0,0.7);
}
.tc_select select.on {
    background: rgba(230,230,230,1);
}


/* Item Grid */
#wooproduct_fuzzy_search_output, 
#wooproduct_full_search_output,
#wooproduct_search_pair_output {
    position: relative;
    display: block;
    min-height: 200px;
    /* background: rgba(0,0,0,0.02); */
    background: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 20px;
}
#wooproduct_fuzzy_search_item_grid,
#wooproduct_full_search_item_grid,
#wooproduct_search_pair_item_grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: scroll;
    max-width: auto;
    height: auto;
    padding: 0 0 20px 0;
}
#wooproduct_fuzzy_search_item_grid:empty,
#wooproduct_full_search_item_grid:empty,
#wooproduct_search_pair_item_grid:empty {
    max-height: 0px;
    height: 0px;
    padding: 0px;
}


#wooproduct_fuzzy_search_item_grid .product_grid_cell, 
#wooproduct_full_search_item_grid .product_grid_cell,
#wooproduct_search_pair_item_grid .product_grid_cell {
    position: relative;
    /* min-height: 200px; */
    
}
#wooproduct_fuzzy_search_item_grid img,
#wooproduct_full_search_item_grid img,
#wooproduct_search_pair_item_grid img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    z-index: 1;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
    min-width: 20px;
    height: auto;
}
#wooproduct_fuzzy_search_item_grid img:hover,
#wooproduct_full_search_item_grid img:hover,
#wooproduct_search_pair_item_grid img:hover {
    transform: scale(1.3);
}

#wooproduct_fuzzy_search_item_grid span,
#wooproduct_full_search_item_grid span,
#wooproduct_search_pair_item_grid span {
    display: inline-block;
}

#wooproduct_full_search_item_grid .grid_info,
#wooproduct_search_pair_item_grid .grid_info {
    grid-column: 1 / span 4;
    font-size: 12px;
    line-height: 14px;
    font-style: italic;
    width: 100%;
    color: rgba(0,0,0,0.5);
}

.product_grid_hover_panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* width: 100%;
    height: 100%; */
    overflow: hidden;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 2;
    transition: all 0.25s;
    pointer-events: none;
    padding: 12px;
    font-size: 12px;
    line-height: 13px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr;
    align-items: flex-end;
}
.product_grid_price {
    color: #00d084;
}
.product_grid_price::before {
    content: '$ ';
}

.product_grid_hover_panel:has(+ img) {
    opacity: 0;
}

.product_grid_hover_panel:has(+ img:hover) {
    opacity: 1;
    
}

.product_grid_hover_panel:has(+ a.product_grid_name) {
    opacity: 0;
}

.product_grid_hover_panel:has(+ a.product_grid_name:hover) {
    opacity: 1;
}

.product_grid_id,
.product_grid_yearline {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 4px;
}
.product_grid_yearline {
    padding-top: 8px;
    padding-bottom: 8px;
}
.product_grid_price {
    display: inline-block;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
}
a.product_grid_name {
    font-size: 14px;
    line-height: 15px;
    overflow: hidden;
    max-width: 100%;
    display: inline-block;
    color: #345c00;
    /* display: grid;
    grid-template-rows: 1fr auto;
    height: 100%; */
    
}
.product_grid_cell a.product_grid_name {
    color: #345c00;
    display: grid;
    height: 100%;
    padding: 0;
}
.product_grid_cell a.product_grid_name span {
    align-self: flex-end;
}
.product_grid_cell.numeric a.product_grid_name {
    color: #dc7d11 !important;
}
.product_grid_cell.single a.product_grid_name {
    color: #11a3dc !important;
}
.product_grid_cell.multi a.product_grid_name {
    color: #06a52b !important;
}
.prod_deets {
    text-align: right;
}

/* Spinner */
#wooproduct_featured_product_spinner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;

  transition: all .25s ease;
}
#wooproduct_featured_product_spinner > .tc_spinner {
  margin: 0 auto;
}

#wooproduct_fuzzy_search_spinner,
#wooproduct_full_search_spinner,
#wooproduct_search_pair_spinner {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    display: grid;
    align-items: center;
    justify-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: all 0.05s;
    border-radius: 4px;
    overflow: hidden;
}
#wooproduct_fuzzy_search_spinner.on,
#wooproduct_full_search_spinner.on,
#wooproduct_search_pair_spinner.on {
    opacity: 1;
}
.tc_spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.tc_spinner div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: tc_spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.tc_spinner div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}
.tc_spinner div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}
.tc_spinner div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}
@keyframes tc_spinner {
    0% {
        top: 8px;
        height: 64px;
    }

    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

/* Default Product Page Styles */
/* Borrowed from Bootstrap container CSS Class */
div#header,
div#footer,
.wp-block-group {
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
@media (min-width: 576px) {
    div#header,
    div#footer,
    .wp-block-group {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    div#header,
    div#footer,
    .wp-block-group {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    div#header,
    div#footer,
    .wp-block-group {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    div#header,
    div#footer,
    .wp-block-group {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    div#header,
    div#footer,
    .wp-block-group {
        max-width: 1320px;
    }
}
/* Product Detail */
.search_breadcrumbs a {
    color: #de7d00;
    text-decoration: none;
}
.search_breadcrumbs a:hover {

}
.post_detail {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-row-gap: 10px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 20px 0;
}
.product_meta {
    display: grid;
    grid-template-columns: 25% 1fr;
    grid-template-rows: auto auto auto 100px auto auto auto auto auto;
    column-gap: 60px;
    margin-bottom: 20px;
    align-items: flex-start;
    align-content: flex-start;
}
img.product_detail_image {
    grid-column: 1 / span 1;
    grid-row: 1 / span 4;
    width: 100%;
    height: auto;
    margin-top: 2px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px;
    
}

span.sale,
span.special {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  background: var(--trekwood-green);
  border: 1px solid var(--trekwood-green);
  border-radius: 16px;
  padding: 6px 10px;
  font-size: .9em;
  line-height: 1;
  color: #fff;
  width: auto;
  max-width: 25%;
  
}

.post_detail h3.product_name {
    /* grid-column: 2 / span 1; */
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    display: inline-block;
    margin: 0;
    padding: 0 0 20px;
    font-size: 24px;
    line-height: 26px;
    align-self: flex-end;
}

.post_detail h3.product_price {
    /* grid-column: 3 / span 1; */
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    display: inline-block;
    margin: 0;
    padding: 0 2px 0 0;
    color: var(--trekwood-green);
    /* justify-self: flex-end; */
    font-size: 20px;
    line-height: 22px;
    color: #d12728;
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.post_detail div.product_model {
    /* grid-column: 2 / span 2; */
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    color: rgba(0,0,0,0.7);
    font-style: italic;
    /* display: grid;
    grid-template-columns: 1fr; */
    /* display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0; */
}
/* .post_detail div.product_model br {
  display: none;
} */
.post_detail div.product_model {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.post_detail div.product_model span.desc {
    /* display: grid;
    grid-template-columns: 1fr 270px; */
}
.post_detail .weight_output {
  color: rgb(100,100,100);
  color: rgba(0,0,0,0.4);
  display: inline-block;
  padding-top: 6px;
}
.post_detail div.product_model span.desc {
    color: rgba(0,0,0,0.7);
    /* display: inline-block; */
}
.post_detail div.product_model span.desc div.search_breadcrumbs {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.post_detail div.product_model span.desc div.product_cart_form {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}

.post_detail div.product_model span.desc .fits_table_header {
  grid-column: 1 / span 2;
  grid-row: 2 / span 1;
}
.post_detail div.product_model span.desc #fits_table_wrapper {
  grid-column: 1 / span 2;
  grid-row: 3 / span 1;
}
.post_detail div.product_model .product_found {
  /* grid-column: 1 / span 2;
  grid-row: 3 / span 1; */
  display: none;
}

.post_detail div.product_model .product_uom {
  grid-column: 1 / span 2;
  grid-row: 4 / span 1;
}
.post_detail div.product_model .product_static {
  grid-column: 1 / span 2;
  grid-row: 5 / span 1;
}

.post_detail div.product_found {
    grid-column: 2 / span 2;
    grid-row: 6;
    display: none;
}
.post_detail div.product_uom {
    grid-column: 1 / span 2;
    grid-row: 7 / span 1;
    padding-top: 20px;
}
.post_detail div.product_static {
    grid-column: 1 / span 2;
    grid-row: 8 / span 1;
}




/* Fits table */
.post_detail #fits_table_wrapper {
    /* grid-row: 4;
    grid-column: 2 / span 2; */
    grid-column: 1 / span 2;
    grid-row: 6 / span 1;
    /* margin-top: 20px; */
}
.post_detail #fits_table_header {
    /* grid-row: 3;
    grid-column: 2 / span 2; */
    grid-column: 1 / span 2;
    grid-row: 5 / span 1;
    margin-top: 40px;
    margin-bottom: 1px;
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 22px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
#fits_table {
    display: inline-block;
    width: 100%;
    min-height: 100px;
}



/* DataTables Themeroller */
#products_table_processing table.dataTable thead > tr > th {
  color: #eee;
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable td.dt-control:before {
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: inline-block;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New", Courier, monospace;
  line-height: 1em;
  content: "+";
  background-color: #31b131;
}
table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "-";
  background-color: #d33333;
}
 
table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.125;
  right: 10px;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 50%;
  content: "▲";
  content: "▲"/"";
}
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 50%;
  content: "▼";
  content: "▼"/"";
}
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}
 
div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
  display: none;
}
 
div.dataTables_processing {
  position: absolute;
  /* top: 50%;
  left: 50%;
  width: 200px; */
  width: 100%;
  height: calc(100% - 30px);
  min-height: 400px;
  top: 30px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  align-content: center;

  /* margin-left: -100px;
  margin-top: -26px; */
  text-align: center;
  padding: 2px;
  z-index: 999;
  /* background:#eff0f0; */
  background: rgb(239,239,239,0.5);
  backdrop-filter: blur(8px);
  transition: all .3s ease;

  opacity: 1;
}

div.dataTables_processing > div {
  position: absolute;
  /* top: calc(50% - 40px); */
  /* left: 50%; */
}

div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--trekwood-green);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}
 
@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}
 
/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable thead th,
table.dataTable thead td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 10px 6px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable tbody tr {
  background-color: transparent;
}
table.dataTable tbody tr:hover {
    /* background-color: rgba(255,150,0,0.2); */
    background-color: rgba(0,0,0,0.1);
    /* cursor: pointer; */
}
table.dataTable tbody tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: white;
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable tbody tr.selected a {
  color: #090a0b;
  color: rgb(var(--dt-row-selected-link));
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}
table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
}
table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.923));
}
table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
}
table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px var(--trekwood-green) !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 1)) !important;
}
table.dataTable.order-column > tbody tr > .sorting_1,
table.dataTable.order-column > tbody tr > .sorting_2,
table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
table.dataTable.display > tbody tr > .sorting_2,
table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
}
table.dataTable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
table.dataTable.display > tbody tr.selected > .sorting_2,
table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.919));
}
table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
}
table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
}
table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.954));
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.947));
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.939));
}
table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
}
table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
}
table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.919));
}
table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.911));
}
table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.903));
}
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
}
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
}
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
}
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.982));
}
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.974));
}
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.962));
}
table.dataTable.no-footer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable.compact thead th,
table.dataTable.compact thead td,
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td,
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}
 
table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}
 
/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_length select {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  padding: 4px;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  margin-left: 3px;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(230, 230, 230, 0.1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111111;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111111 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111111 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: inherit;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.3); */
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
 
@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}

/* Mini Cart Override Form */
.post_detail div.product_cart_form {
  /* grid-row: 2 / span 1;
  grid-column: 3 / span 1; */
  grid-column: 2 / span 1;
  grid-row: 4 / span 1;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: 0px;
  align-items: flex-end;
  max-width: 200px;
}
.post_detail div.product_cart_form input[type="number"] {
  box-sizing: border-box;
  /* width: calc(100% - 40px); */
  display: inline-block;
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
  padding:  10px;
  min-width: 38;
  max-width: 38px;
  border: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  border: 1px solid #e4e5e6;
}

.post_detail div.product_cart_form input[type='number'] {
  -moz-appearance:textfield;
}

.post_detail div.product_cart_form input::-webkit-outer-spin-button,
.post_detail div.product_cart_form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.post_detail div.product_cart_form input[type="number"]:disabled {
  opacity: 0.5;
}

#add_to_cart {
  cursor: pointer;
}
.post_detail div.product_cart_form button {
  font-size: 14px;
  /* background: var(--trekwood-green);
  border: 1px solid var(--trekwood-green); */
  background: var(--trekwood-orange);
  border: 1px solid var(--trekwood-orange);
  border-radius: 0px;
  color: #fff;
  line-height: 14px;
  padding: 12px 20px 4px 20px;
  font-weight: normal;
  width: 100%;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  border-radius: 8px;
 /*  margin-left: 10px; */

  transition: all .25 ease;
}
.post_detail div.product_cart_form button:disabled {
  opacity: 0.5;
}
.post_detail div.product_cart_form button span {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.post_detail div.product_cart_form button .wp-spinner {
  width: 0;
  opacity: 0;
  transition: all .1 ease;
  top: -3px;
}
.post_detail div.product_cart_form button .wp-spinner.on {
  width: 20px;
  opacity: 1;
}

.post_detail div.product_cart_form button#qty_down,
.post_detail div.product_cart_form button#qty_up {
  background: rgba(0,0,0,0.2);
  height: 38px;
  width: 38px;
  display: grid;
  align-content: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  font-size: 20px;
  line-height: 20px;
  border: 1px solid #e4e5e6;
  padding: 8px;

  cursor: pointer;
}
.post_detail div.product_cart_form button#qty_down {
  border-left: 0;
  margin-right: 5px;
}
.post_detail div.product_cart_form button#qty_up {
  border-right: 0;
}
.post_detail div.product_cart_form button#qty_down:hover,
.post_detail div.product_cart_form button#qty_up:hover {
  opacity: 0.9;
}

/* Inline spinner */

.wp-spinner {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
.wp-spinner div {
  display: inline-block;
  position: absolute;
  left: 2px;
  width: 4px;
  background: #fff;
  animation: wp-spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.wp-spinner div:nth-child(1) {
  left: 2px;
  animation-delay: -0.24s;
}
.wp-spinner div:nth-child(2) {
  left: 8px;
  animation-delay: -0.12s;
}
.wp-spinner div:nth-child(3) {
  left: 14px;
  animation-delay: 0;
}
@keyframes wp-spinner {
  0% {
    top: 2px;
    height: 16px;
  }
  50%, 100% {
    top: 6px;
    height: 8px;
  }
}

pre {
  max-height: 400px;
  overflow: scroll;
  background: black;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin: 20px;
}

/* touchCarousel Overrides */
body.home-page .touchcarousel {
  width: calc(100% - 180px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
  height: auto;
}
body.home-page #carousel-image-and-text.touchcarousel {
  height: 0;
  opacity: 0;

  transition: all .25s ease;
}

body.home-page .touchcarousel .touchcarousel-item {
  width: 256px;
  overflow: hidden;
  margin-right: 28px;
}

body.home-page #carousel-image-and-text.touchcarousel .touchcarousel-item img {
  display: inline-block;
  max-width: 256px;
  max-height: 160px;
  margin: 0 auto;
}

body.home-page .touchcarousel .touchcarousel-item .touchcarousel-img {
  background: #fff;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 3px;
}

body.home-page .touchcarousel.grey-blue .arrow-holder.left,
body.home-page .touchcarousel.grey-blue .arrow-holder.right {
  width: 100px;
  /* background: rgba(255,0,0,0.1); */
}
body.home-page .touchcarousel.grey-blue .arrow-holder.left {
  left: -100px;
}
body.home-page .touchcarousel.grey-blue .arrow-holder.right {
  right: -100px;
}

body.home-page .touchcarousel.grey-blue .arrow-icon.left,
body.home-page .touchcarousel.grey-blue .arrow-icon.right {
  background-image: url(../images/arrow-left.png) !important;
  background-position: 50% 50% !important;
  width: 90px;
  min-height: 100px;
  height: calc(100% - 20px);
  /* top: calc(50% - 67px); */
  top: 10px;
  bottom: 10px;
  border-radius: 18px;
  
}
body.home-page .touchcarousel.grey-blue .arrow-icon.left:hover,
body.home-page .touchcarousel.grey-blue .arrow-icon.right:hover {
  background-color: rgba(0,0,0,0.05);
  color: #fff;
}
body.home-page .touchcarousel.grey-blue .arrow-icon.left {
  /* left: -87px; */
}
body.home-page .touchcarousel.grey-blue .arrow-icon.right {
  /* right: -87px; */
  transform: rotate(180deg);
}
body.rv-models #primary {
  padding-bottom: 40px;
}


body.home-page a.item-block {
  text-decoration: none;
  text-align: center;
}
body.home-page a.item-block span,
body.home-page a.item-block p {
  width: 100%;
  display: inline-block;
  text-align: center;
}
body.home-page a.item-block h5 {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 1.2em;
}
body.home-page a.item-block h6 {
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

body.home-page .touchcarousel .scrollbar.dark {
  background-color: rgba(255,255,255,0.5);
}

/* Touch Carousel Models on Homepage */
#carousel-image {
  width: calc(100% - 80px);
  height: auto;
  /* padding-left: 0px;
  padding-right: 0px; */
}
#carousel-image * {
  box-sizing: border-box;
}
#carousel-image ul.touchcarousel-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 50px;
  padding-left: 8px;
  padding-right: 8px;
}
#carousel-image.touchcarousel .touchcarousel-item span {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: rgba(0,0,0,0.3);
  padding-right: 20px;
  padding-top: 10px; 
}
body.home-page #carousel-image ul.touchcarousel-container {
  display: grid;
  grid-template-rows: 2;
  grid-template-columns: repeat(30, 262px);
  grid-column-gap:20px;
  grid-row-gap: 30px;
}
body.home-page #carousel-image.touchcarousel .touchcarousel-item {
  float: none;
  display: inline-block;
  width: 252px;
  height: 200px;
  background: #fff;
  display: grid;
  align-items: center;
  justify-items: center;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 12px;
  overflow: hidden;
}
body.home-page #carousel-image.touchcarousel .touchcarousel-item img {
  height: auto;
  max-height: 256px;
  background: #fff;
} 
body.home-page #carousel-image.touchcarousel .touchcarousel-item span {
  display: none;
  padding: 0;
}
body.home-page #carousel-image.touchcarousel.grey-blue .arrow-icon.left {
  filter: invert(20%);
}
body.home-page #carousel-image.touchcarousel.grey-blue .arrow-icon.right {
  filter: invert(20%);
}
body.home-page #carousel-image.touchcarousel .touchcarousel-item a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}

/* Touch Carousel Models on Other pages? */
body.std-page #carousel-image ul.touchcarousel-container {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
body.std-page #carousel-image.touchcarousel {
  width: 100%;
  height: auto;
  overflow: auto;
}


ul#menu-woocommercemenu > li:nth-child(1) > a,
ul#menu-woocommercemenu > li:nth-child(2) > a,
ul#menu-woocommercemenu > li:nth-child(3) > a {
	color: #7a9859;
	padding-right: 0px;
	font-size: 30px;
	line-height: 30px;
}
ul#menu-woocommercemenu > li:nth-child(1) > a > i,
ul#menu-woocommercemenu > li:nth-child(2) > a > i,
ul#menu-woocommercemenu > li:nth-child(3) > a > i {
	color: rgba(255,255,255,0.94);
}

.woocommerce-error li {
  padding-left: 20px !important;
}

/* Cart Counter */
#cart_count {
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
  min-width: 16px;
  padding: 4px;
  height: 16px;
  border-radius: 16px;
  /* background: rgba(255,255,255,0.9);
  color: #444; */
  background: #7a9859 !important;
  color: #fff !important;
  font-size: 14px;
  line-height: 14px;
  z-index: 2;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Serps page */
body.product_search,
body.product_search .dhmain {
  background-color: #eff0f0;
}
/* Product Search */
.dhmain {
	padding-top: 200px;
}
body.product_search .dhmain {
	/* padding-top: 280px; */
  padding-top: 40px;
}
#wooproduct_full_search_output {
	margin-bottom: 40px;
}
body.product_search .search_breadcrumbs a {
  color: #777;
}
body.product_search .search_breadcrumbs a:hover {
  color: var(--trekwood-green);
}
body.checkout .dhmain {
  background-color: #eff0f0;
}
body.about .dhmain,
body.contact .dhmain {
  background-color: #eff0f0;
}
body.about .entry-content,
body.contact .entry-content {
  display: inline-block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
  padding: 40px;
  margin-bottom: 80px;
}

/** SERPs DataTable to Grid.
 *  I've never done this before but here goes. 
 */
#serp_table_wrapper,
#products_table_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#serp_table_wrapper .maintable,
#products_table_wrapper .maintable {
  border-bottom: 0;
  grid-column: 1 / span 2;
}
#serp_table_wrapper .buttons,
#products_table_wrapper .buttons {
  display: grid;
  align-items: flex-end;
  justify-items: flex-end;
}
#serp_table_wrapper .paginator,
#products_table_wrapper .paginator {
  grid-column: 1 / span 2;
}
/* #serp_table_wrapper .tabletitle:after,
#products_table_wrapper .tabletitle:after {
  content: "Search results";
  font-size: 2.4em;
} */


#serp_table.dataTable,
#products_table.dataTable {
    position: relative;
    width: 100% !important;
    min-width: 100% !important;
}
#serp_table.dataTable,
#products_table.dataTable {
    box-sizing: border-box;
    border-bottom: 0;
    min-height: 400px;
}
#serp_table.dataTable thead,
#products_table.dataTable thead,
#products_table_wrapper thead {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
#serp_table.dataTable .fits_trigger,
#products_table.dataTable .fits_trigger {
  position: absolute;
  top: 6px;
  right: 5px;
  z-index: 3;
  color: rgba(0,0,0,0.4);
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}
#serp_table.dataTable .fits_trigger.on,
#products_table.dataTable .fits_trigger.on {
  color: #fff;
}

#serp_table.dataTable .fits_overlay,
#products_table.dataTable .fits_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  bottom: auto;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  padding: 14px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
#serp_table.dataTable .fits_overlay.on,
#products_table.dataTable .fits_overlay.on {
  opacity: 1;
}
#serp_table.dataTable .fits_overlay span,
#products_table.dataTable .fits_overlay span {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding-top: 8px;
}

#serp_table.dataTable tbody,
#products_table.dataTable tbody {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-template-rows: repeat(3, 1fr); */
    grid-template-rows: auto !important;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: 100%;
    padding: 20px 2px;
}
@media screen and (max-width: 1400px) {
  #serp_table.dataTable tbody,
  #products_table.dataTable tbody {
      display: grid;
      grid-template-columns: repeat(3, 1fr) !important;
      /* grid-template-rows: repeat(4, 1fr) !important; */
      grid-template-rows: auto !important;
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      max-width: 100%;
      padding: 20px 2px;
  }
}
@media screen and (max-width: 1200px) {
  #serp_table.dataTable tbody,
  #products_table.dataTable tbody {
      display: grid;
      grid-template-columns: repeat(2, 1fr) !important;
      /* grid-template-rows: repeat(6, 1fr) !important; */
      grid-template-rows: auto !important;
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      max-width: 100%;
      padding: 20px 2px;
  }
}

#serp_table.dataTable tbody > tr,
#products_table.dataTable tbody > tr {
    display: inline-block;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 18px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05); 
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
}

#serp_table.dataTable tbody > tr > td,
#products_table.dataTable tbody > tr > td {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: flex-start;
    justify-items: center;
    padding: 20px;
    height: calc(100% - 40px);
}

#serp_table.dataTable tbody > tr > td > a.serp_anchor,
#products_table.dataTable tbody > tr > td > a.serp_anchor {
    display: grid;
    text-decoration: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr;
    align-items: flex-start;
    justify-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

#serp_table.dataTable tbody > tr > td > a.serp_anchor > img.serp_image,
#products_table.dataTable tbody > tr > td > a.serp_anchor > img.serp_image {
    /* width: 100%; */
    width: auto;
    min-width: 0px;
    max-width: 100%;
    max-height: 200px;
    border-radius: 14px;
}

#serp_table.dataTable tbody > tr > td > a.serp_anchor h3.serp_name,
#products_table.dataTable tbody > tr > td > a.serp_anchor h3.serp_name {
  display: inline-block;
  text-decoration: none;
  font-size: 1.1em;
  /* color: rgba(0,0,0,0.7); */
  color: var(--trekwood-green);
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 10px;
}

#serp_table.dataTable tbody > tr > td > a.serp_anchor h4.serp_price,
#products_table.dataTable tbody > tr > td > a.serp_anchor h4.serp_price {
    display: inline-block;
    width: 100%;
    text-align: center;
    /* color: var(--trekwood-green); */
    /* color: var(--trekwood-green); */
    color: black;
    font-size: 1.2em;
    margin: 0;
    padding: 10px;
}

#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin: 20px auto 10px auto;
    align-self: flex-end;
    justify-self: center;
    background-color: var(--trekwood-green);
    border: 1px solid var(--trekwood-green);
    color: #fff;
    text-transform: uppercase;
    padding: 8px 20px 8px 20px;
    margin: 10px;
    cursor: pointer;
    opacity: 1;
    transition: all .2s ease;
    pointer-events: initial;
    border-radius: 8px;
}
#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc.on,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc.on {
  opacity: 0.8;
}
#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc:disabled,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc:disabled {
  pointer-events: none;
}
#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc:hover,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc:hover {
    opacity: 0.9;
}

#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc .wp-spinner,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc .wp-spinner {
  display: none;
  margin-left: 5px;
  top: 4px;
}
#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc .wp-spinner.on,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc .wp-spinner.on {
  display: inline-block;
  
}
#serp_table.dataTable tbody > tr > td > a.serp_anchor button.atc span,
#products_table.dataTable tbody > tr > td > a.serp_anchor button.atc span {
  display: inline-block;
  padding-top: 4px;
}

#serp_table.dataTable div.sale,
#serp_table.dataTable div.special,
#products_table.dataTable div.sale,
#products_table.dataTable div.special {
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  background: var(--trekwood-green);
  border: 1px solid var(--trekwood-green);
  border-radius: 16px;
  padding: 6px;
  font-size: .9em;
  line-height: 1;
  color: #fff;
}

.dhheaders {
  transition: height .3s ease;
}
/* body.product_search .dhheaders #wooproduct_search_pair_meta {
  background: #eff0f0;
  border-radius: 0 0 16px 16px;
} */

body.product_search #tc_search_pair_meta_submit {
  padding-top: 14px;
  padding-bottom: 14px;
  height: auto;
}
#wooproduct_search_pair_meta {
  top: -400px;
  height: 0;
  display: none !important;
}
#wooproduct_search_pair_meta.on {
  /* top: 120px; */
  top: 0px;
  height: auto;
  display: grid !important;
  grid-template-rows: 1fr !important;
}
body.close #wooproduct_search_pair_meta.on {
	top: 80px;
  
}
body.product_search.close #wooproduct_search_pair_meta.on {
  top: 75px;
  background: rgba(239,240,240.0.4);
  backdrop-filter: blur(3px);
}
.subtopbar:has(>#wooproduct_search_pair_meta.on) {
  grid-template-rows: 1fr !important;
}


/* Paginator */
#serp_table_wrapper .paginator,
#products_table_wrapper .paginator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  padding: 0;
  align-items: center;
  justify-items: stretch;
}

#serp_table_wrapper .paginator .dataTables_info .found,
#products_table_wrapper .paginator .dataTables_info .found,
#serp_table_wrapper .paginator .dataTables_info .results,
#products_table_wrapper .paginator .dataTables_info .results,
#serp_table_wrapper .paginator .dataTables_info .dot,
#products_table_wrapper .paginator .dataTables_info .dot {
  display: none;
}

#serp_table_wrapper .buttons,
#products_table_wrapper .buttons {
  grid-column: 1 / span 2;
  justify-items: flex-start !important;
  justify-content: flex-start !important;
}

#serp_table_wrapper .tabletitle {
  display: none;
}

#serp_table_wrapper .buttons .dataTables_info .items,
#products_table_wrapper .buttons .dataTables_info .items,
#serp_table_wrapper .buttons .dataTables_info .start,
#products_table_wrapper .buttons .dataTables_info .start,
#serp_table_wrapper .buttons .dataTables_info .to,
#products_table_wrapper .buttons .dataTables_info .to,
#serp_table_wrapper .buttons .dataTables_info .end,
#products_table_wrapper .buttons .dataTables_info .end,
#serp_table_wrapper .buttons .dataTables_info .of,
#products_table_wrapper .buttons .dataTables_info .of,
#serp_table_wrapper .buttons .dataTables_info .dot,
#products_table_wrapper .buttons .dataTables_info .dot,
#serp_table_wrapper .buttons .dataTables_info .total_text,
#products_table_wrapper .buttons .dataTables_info .total_text {
  display: none;
}

#serp_table_wrapper .paginator .dataTables_paginate a,
#products_table_wrapper .paginator .dataTables_paginate a {
  width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: inline-block;
  padding: 8px 8px 6px 8px;
  margin: 0 2px;
  font-size: .9em;
  cursor: pointer;

  &[aria-current="page"] {
    background: var(--trekwood-green);
    color: #fff;
    opacity: 1 !important;
  }
}
#serp_table_wrapper .paginator .dataTables_paginate a:hover,
#products_table_wrapper .paginator .dataTables_paginate a:hover {
  background: #efefef;
}
#serp_table_wrapper .paginator .dataTables_paginate a.ui-state-disabled,
#products_table_wrapper .paginator .dataTables_paginate a.ui-state-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.6;
}

/* Reset sorting background colors. */
table.dataTable.display > tbody > tr.odd > .sorting_1,
table.dataTable.display > tbody > tr.even > .sorting_1, 
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1,
table.dataTable.display > tbody > tr.odd > .sorting_2,
table.dataTable.display > tbody > tr.even > .sorting_2, 
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2,
table.dataTable.display > tbody > tr.odd > .sorting_3,
table.dataTable.display > tbody > tr.even > .sorting_3, 
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3,
table.dataTable.display > tbody > tr.odd > .sorting_4,
table.dataTable.display > tbody > tr.even > .sorting_4, 
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_4,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_4,
table.dataTable.display > tbody > tr.odd > .sorting_5,
table.dataTable.display > tbody > tr.even > .sorting_5, 
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_5,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_5,
table.dataTable.display > tbody > tr.odd > .sorting_6,
table.dataTable.display > tbody > tr.even > .sorting_6, 
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_6,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_6 {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 0px;
}
table.dataTable.display > tbody > tr.odd {
  background: none;
}
table.dataTable.display > tbody > tr.odd > * {
  box-shadow: none;
}
table.dataTable.display > tbody > tr {
  border-bottom: 0px;
  border-top: 0px;
}
table.dataTable.display > tbody > tr > td {
  border-bottom: 0px;
  border-top: 0px;
}
table.dataTable thead th, table.dataTable thead td {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Product Post Detail */
body.product_search .post_detail {
  box-sizing: border-box;
    display: inline-block;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 18px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 80px;
    overflow: hidden;
}

body.product_search .search_breadcrumbs {
  padding-bottom: 30px;
}

/* Cart */

body.cart {
  background: #eff0f0;
}
body.cart .dhmain {
  background: #eff0f0;
}
body.cart .woocommerce,
body.checkout .woocommerce {
  display: inline-block;
  width: calc(100% - 80px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.05);
  padding: 40px;
  margin-bottom: 80px;
}

body.cart .woocommerce table.shop_table {
  /* border: 1px solid rgba(0,0,0,.1); */
  border: 0;
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}
body.cart .woocommerce table.shop_table th {
  padding: 14px 20px;
}
body.cart .woocommerce table.shop_table td {
  padding-top: 30px;
  padding-bottom: 30px;
}
body.cart .woocommerce table.shop_table tr {
  display: grid;
  grid-template-columns: 110px 1fr 120px 140px 120px 50px;
  /* align-items: center; */
}
body.cart .woocommerce table.shop_table tr:last-child td {
    grid-column: 1 / span 6;
}
body.cart .woocommerce-cart-form__cart-item {
  display: grid;
  grid-template-columns: 200px 1fr 120px 140px 120px 50px;
}

body.cart .woocommerce .cart_totals table.shop_table tr {
  grid-template-columns: 1fr 2fr;
}
body.cart .woocommerce table.shop_table tr.order-total:last-child td {
  grid-column: 2 / span 1;
  padding: 14px 20px 14px 10px;
}

body.cart .woocommerce table.shop_table th.product-thumbnail {
  grid-column: 1 / span 1;
  grid-row: 1;
}
body.cart .woocommerce-cart-form__cart-item .product-thumbnail {
  grid-column: 1 / span 1;
  grid-row: 2;
}

body.cart .woocommerce table.shop_table th.product-name {
  grid-column: 2 / span 1;
  grid-row: 1;
}
body.cart .woocommerce-cart-form__cart-item .product-name {
  grid-column: 2 / span 1;
  grid-row: 2;
}

body.cart .woocommerce table.shop_table th.product-price {
  grid-column: 3 / span 1;
  grid-row: 1;
  text-align: center;
}
body.cart .woocommerce-cart-form__cart-item .product-price {
  grid-column: 3 / span 1;
  grid-row: 2;
  text-align: center;
}

body.cart .woocommerce table.shop_table th.product-quantity {
  grid-column: 4 / span 1;
  grid-row: 1;
  text-align: center;
}
body.cart .woocommerce-cart-form__cart-item .product-quantity {
  grid-column: 4 / span 1;
  grid-row: 2;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, auto);
}

body.cart .woocommerce-cart-form th.product-subtotal {
  grid-column: 5 / span 1;
  grid-row: 1;
  text-align: center;
}
body.cart .woocommerce-cart-form__cart-item .product-subtotal {
  grid-column: 5 / span 1;
  grid-row: 2;
  text-align: center;
}

body.cart .woocommerce table.shop_table th.product-remove {
  grid-column: 6 / span 1;
  grid-row: 1;
}
body.cart .woocommerce-cart-form__cart-item .product-remove {
  grid-column: 6 / span 1;
  grid-row: 2;
}

body.cart .woocommerce-cart-form__cart-item .product-quantity input[type="number"] {
  box-sizing: border-box;
  /* width: calc(100% - 40px); */
  display: inline-block;
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
  padding: 10px;
  min-width: 38;
  max-width: 38px;
  border: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  border: 1px solid #e4e5e6;
  -moz-appearance:textfield;
}
.post_detail div.product_cart_form input[type='number'] {
  
}

body.cart .woocommerce-cart-form__cart-item .product-quantity input::-webkit-outer-spin-button,
body.cart .woocommerce-cart-form__cart-item .product-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

body.cart .woocommerce-cart-form__cart-item .product-quantity #woo_qty_up,
body.cart .woocommerce-cart-form__cart-item .product-quantity #woo_qty_down {
  background: rgba(0,0,0,0.2);
  height: 38px;
  width: 38px;
  display: grid;
  align-content: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  font-size: 20px;
  line-height: 20px;
  border: 1px solid #e4e5e6;
  padding: 8px;
  cursor: pointer;
  background: #eff0f0;
}

body.cart .woocommerce-cart-form__cart-item .product-price .woocommerce-Price-amount,
body.cart .woocommerce-cart-form__cart-item .product-subtotal .woocommerce-Price-amount {
  display: inline-block;
  padding-top: 7px;
}

body.cart .woocommerce a.remove {
  margin-top: 7px;
}

body.cart .woocommerce-cart-form .coupon {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: flex-start;
  justify-items: flex-start;

}
body.cart .woocommerce-cart-form .coupon > span.coupon_lbl {
  grid-column: 1 / span 2;
  text-transform: uppercase;
  padding-bottom: 8px;
}
body.cart .woocommerce-cart-form .coupon input[type="text"] {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #eff0f0;
  background: #fff;
  color: #b9bbbe;
  padding: 2px 20px;
  height: 40px;
  box-sizing: border-box;
}
body.cart .woocommerce-cart-form .coupon button {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #eff0f0;
  background: #e4e5e6;
  color: #b9bbbe;
  padding: 8px 30px;
  text-transform: uppercase;
  font-weight: normal;
  height: 40px;
  transition: all .2s ease;
}
body.cart .woocommerce-cart-form .coupon button:hover {
  background: var(--trekwood-green);
  color: #fff;
}
body.cart .woocommerce-cart-form .coupon button:disabled {
  background: #e4e5e6;
  color: #b9bbbe;
  pointer-events: none;
}

body.cart .woocommerce table.shop_table tr:last-child td button {
  display: inline-block;
  width: auto;
  border: 1px solid #eff0f0;
  background: #e4e5e6;
  color: #b9bbbe;
  padding: 8px 30px;
  text-transform: uppercase;
  font-weight: normal;
  height: 40px;
  transition: all .2s ease;
}
body.cart .woocommerce table.shop_table tr:last-child td button[name="update_cart"] {
  background: var(--trekwood-green);
  color: #fff;
}
body.cart .woocommerce table.shop_table tr:last-child td button:hover {
  background: var(--trekwood-green);
  color: #fff;
}
body.cart .woocommerce table.shop_table tr:last-child td button:disabled {
  background: #e4e5e6;
  color: #b9bbbe;
  pointer-events: none;
}

body.cart .woocommerce .cart_totals .wc-proceed-to-checkout a,
body.checkout .woocommerce button.button.alt {
  display: grid;
  width: auto;
  border: 1px solid #eff0f0;
  background: var(--trekwood-green);
  color: #fff;
  padding: 8px 30px;
  text-transform: uppercase;
  font-weight: normal;
  height: 40px;
  transition: all .2s ease;
  align-content: center;
  justify-content: center;
}
body.cart .woocommerce .cart_totals .wc-proceed-to-checkout a:hover,
body.checkout .woocommerce button.button.alt:hover {
  opacity: 0.94;
}
.wccsq-contact-link {
  background: var(--trekwood-green);
  color: #fff;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
  padding: 8px 24px;
}

body.checkout .woocommerce-billing-fields,
body.checkout .woocommerce-shipping-fields {
  background: rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 20px;
}

body.checkout .woocommerce-billing-fields input[type="text"],
body.checkout .woocommerce-billing-fields input[type="tel"],
body.checkout .woocommerce-billing-fields input[type="email"],
body.checkout .woocommerce-shipping-fields input[type="text"],
body.checkout .woocommerce-shipping-fields input[type="tel"],
body.checkout .woocommerce-shipping-fields input[type="email"],
body.contact .gform_wrapper.gravity-theme input[type=text],
body.contact .gform_wrapper.gravity-theme input[type=email] {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px;
  font-size: 1em;
  line-height: 1;
  padding: 8px 20px;
  cursor:text;

  transition: all .2s ease;
}
body.checkout .woocommerce-billing-fields input[type="text"]:focus,
body.checkout .woocommerce-shipping-fields input[type="text"]:focus {
  border: 1px solid rgba(0,0,0,0.5);
}
body.checkout .woocommerce-billing-fields select,
body.checkout .woocommerce-shipping-fields select {
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px;
  padding: 6px 20px;
  height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
  top: 6px;
}

#quote_grid {
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  padding: 20px;
  background: rgba(0,0,0,0.05);
  border-radius: 18px;
}
#quote_grid p.form-row {
  margin-top: 0;
  margin-bottom: 0;
}

#quote_grid > label {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0 0 6px 0;
  position: relative;
}
#quote_grid > .twocol {
  grid-column: 1 / span 2;
}
#quote_grid > label > span {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}

#quote_grid input[type="text"],
#quote_grid input[type="tel"],
#quote_grid input[type="email"] {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 32px;
}
#quote_grid select {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 32px;
  margin: 0px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9 6 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 1em;
}
#quote_grid button {
  display: inline-block;
  width: auto;
  border: 1px solid #eff0f0;
  background: var(--trekwood-green);
  color: #fff;
  padding: 8px 30px 4px 30px;
  text-transform: uppercase;
  font-weight: normal;
  height: 40px;
  transition: all .2s ease;
  margin: 20px auto;
}
#quote_grid .cent {
  align-items: center;
  justify-items: center;
  justify-content: center;
  text-align: center;
}

input#customer_email {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 32px;
  font-size: 1em;
  line-height: 1;
  padding: 8px 20px;
  cursor: text;
  transition: all .2s ease; 
}

.wccsq-body .shop_table {
  display: table;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.1);
}
.wccsq-body .shop_table td,
.wccsq-body .shop_table th {
  padding: 8px 14px;
  background: transparent;
  background-color: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.wccsq-body .shop_table > thead > tr > th:nth-child(2),
.wccsq-body .shop_table > tbody > tr > td:nth-child(2),
.wccsq-body .shop_table > thead > tr > th:nth-child(3),
.wccsq-body .shop_table > tbody > tr > td:nth-child(3) {
  text-align: right;
}

.wccsq-body .shop_table > tbody > tr:last-child > td {
  border-bottom: none !important;
}

.wccsq-body p {
  line-height: 1.2;
  color: rgba(0,0,0,0.5);
  font-style: italic;
}
.wccsq-body label i {
  color: red;
  font-size: 1.2em;
}
.wccsq-body #quote_grid > label > span.err {
  height: 0px;
  overflow: hidden;
  color: red;
  transition: all .2s ease;
  padding: 0px 0px 0px 8px;
  font-size: .8em;
  font-style: italic;
  display: none;
}
.wccsq-body #quote_grid > label.error > span.err {
  display: block;
  height: auto;
  padding-top: 3px;
}

.orange {
  color: var(--trekwood-green);
}

body.cart .wccsq-body tr.woocommerce-cart-form__cart-item,
body.checkout .wccsq-body tr.woocommerce-cart-form__cart-item {
  display: table-row;
  
}
body.cart .wccsq-body .woocommerce-cart-form__cart-item .product-quantity,
body.checkout .wccsq-body .woocommerce-cart-form__cart-item .product-quantity {
  display: table-cell;
}


body.checkout textarea {
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px 18px 0 18px;
  overflow: hidden;
  padding: 20px;
}

body.checkout .woocommerce-checkout #payment {
  background: rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 20px;
}

body.checkout .woocommerce #payment #place_order, 
body.checkout .woocommerce-page #payment #place_order {
  margin-top: 20px;
}

/* Shipping Quote Modal Overrides */
.wccsq-popup {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  /* z-index: 9999;
  display: block; */
  display: none;
}
.ui-dialog {
  z-index: 9999;
}

/* Line Links */
.entry-content > ul.line_links {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 40px;
}

.entry-content > ul.line_links li.line_link_li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

ul.line_links li.line_link_li a {
  color: var(--trekwood-green);
  font-size: 1.1em;
  line-height: 1.4;
  text-decoration: none;
}

body.cart .product-remove .mobile_remove_label {
  display: none;
}

body.cart body.cart .woocommerce-cart-form__cart-item .product-thumbnail {
  width: 40px;
}
body.cart .woocommerce-cart-form {
  position: relative;
  display: block;
  overflow: hidden;
}
body.cart .woocommerce table.shop_table {
  max-width: 100%;
}
.woocommerce table.cart img {
  width: 100px;
}



/* @media (max-width: 1200px) {
  #serp_table.dataTable tbody,
  #products_table.dataTable tbody {
    grid-template-columns: 33% 33% 33%;
    width: calc(100% - 60px);
  }
} */

@media (max-width: 992px) {
  #serp_table_wrapper *,
  #products_table_wrapper * {
    box-sizing: border-box;
  }
  #serp_table_wrapper .maintable,
  #products_table_wrapper .maintable {
    overflow: hidden;
  }
 /*  #serp_table.dataTable tbody,
  #products_table.dataTable tbody {
    grid-template-columns: 50% 50%;
    width: calc(100% - 30px);
  } */
  body.cart .woocommerce table.cart td.actions .coupon .input-text, .woocommerce table.cart td.actions .coupon input {
    width: 100%;
  }
  body.cart .woocommerce table.cart td.actions .coupon .input-text+.button {
    width: 100%;
  }
  body.cart .woocommerce table.shop_table tr:last-child td button[name="update_cart"] {
    width: 100%;
    margin-top: 20px;
  }
  body.cart .woocommerce-cart-form__cart-item .product-thumbnail {
    width: 100px;
  }
  body.product_search .wp-block-group {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 768px) {
  /* .post_detail h3.product_name {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
    font-size: 1.3em;
    line-height: 1.1;
  }
  .post_detail div.product_model {
    grid-column: 2 / span 2;
    grid-row: 2 / span 1;
  }
  .post_detail h3.product_price {
    grid-row: 3 / span 1;
    grid-column: 1 / span 1;
    padding-top: 20px;
    text-align: left;
    align-self: flex-end;
    justify-self: left;
    width: 100%;
  }
  .post_detail div.product_cart_form {
    grid-row: 3 / span 1;
    grid-column: 2 / span 2;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 38px 38px 38px auto;
  }
  .post_detail #fits_table_header {
    grid-row: 4;
    grid-column: 1 / span 3;
  }
  .post_detail #fits_table_wrapper {
    grid-row: 5;
    grid-column: 1 / span 3;
  }
  .post_detail div.product_uom {
    grid-column: 1 / span 3;
    grid-row: 7;
    padding-top: 20px;
  }
  .post_detail div.product_static {
    grid-column: 1 / span 3;
    grid-row: 8;
  } */
  #serp_table.dataTable tbody,
  #products_table.dataTable tbody {
    grid-template-columns: 100%;
    width: 100%;
  }
  body.cart .woocommerce table.shop_table tr {
    display: table-row;
  }
  body.cart .product-remove .mobile_remove_label {
      display: inline-block;
  }
  body.cart .woocommerce a.remove {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: flex-start;
    width: 100%;
    height: auto;
    
  }
  body.cart .woocommerce a.remove span {
    font-weight: normal;
    font-size: 1.5em;
    line-height: 1;
    text-align: left;
    font-weight: bold;
    font-weight: 700;
  }
  body.cart .woocommerce a.remove span.mobile_remove_label {
    font-weight: normal;
    font-size: 0.75em;
    line-height: 1;
    text-align: left;
  }
  .woocommerce a.remove:hover {
    background: none;
    color: red !important;
  }
  .woocommerce table.shop_table_responsive tr td::before {
    grid-column: 1 / span 3;
    text-align: left;
    align-items: flex-start;
    align-content: flex-start;
    padding-bottom: 4px;
  }
  body.cart .woocommerce-cart-form__cart-item .product-quantity {
    grid-template-columns: 38px 38px 38px;
  }
  
  #quote_grid {
    grid-template-columns: 1fr !important;
  }
  #quote_grid > .twocol {
    grid-column: 1 / span 1;
  }
}
@media (max-width: 678px) {
  
  
}

@media (max-width: 550px) {
  /* .post_detail h3.product_name {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
  }
  .post_detail div.product_model {
    grid-column: 2 / span 2;
    grid-row: 2 / span 1;
  }
  .post_detail h3.product_price {
    grid-row: 3 / span 1;
    grid-column: 1 / span 1;
    padding-top: 20px;
    text-align: left;
    align-self: flex-end;
    justify-self: left;
    width: 100%;
  }
  .post_detail div.product_cart_form {
    grid-row: 4 / span 1;
    grid-column: 1 / span 3;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 38px 38px 38px auto;
  }
  .post_detail #fits_table_header {
    grid-row: 5;
    grid-column: 1 / span 3;
  }
  .post_detail #fits_table_wrapper {
    grid-row: 6;
    grid-column: 1 / span 3;
  }
  .post_detail div.product_uom {
    grid-column: 1 / span 3;
    grid-row: 7;
    padding-top: 20px;
  }
  .post_detail div.product_static {
    grid-column: 1 / span 3;
    grid-row: 8;
  } */
  .maintable {
    overflow: hidden;
  }
  .post_detail div.product_cart_form button#add_to_cart {
    grid-row: 2;
    grid-column: 1 / span 4;
    margin-left: 0px;
    margin-top: 10px;
  }
}

#quote_grid .wp_spinner {
  margin-top: 4px;
}

#quote_grid button {
  font-size: 14px;
  background: var(--trekwood-green);
  border: 1px solid var(--trekwood-green);
  border-radius: 0px;
  color: #fff;
  line-height: 14px;
  padding: 12px 20px 4px 20px;
  font-weight: normal;
  width: auto;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  /*  margin-left: 10px; */
  cursor: pointer;

  transition: all .25 ease;
}
#quote_grid button:hover {
  opacity: 0.9;
}

#quote_grid button:disabled {
  opacity: 0.5;
}
#quote_grid button span {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

#quote_grid button .wp-spinner {
  width: 0;
  opacity: 0;
  transition: all .1 ease;
  top: -3px;
}
#quote_grid button .wp-spinner.on {
  width: 20px;
  opacity: 1;
}

.response_msg_wrap {
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  background: rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 20px;
  display: none;
}

.response_msg_wrap.success,
.response_msg_wrap.error {
  display: block;
}

.response_msg_wrap .success_msg {
  color: darkgreen;
  display: none;
}

.response_msg_wrap.success .success_msg {
  display: block;
}

.response_msg_wrap .error_msg {
  color: crimson;
  display: none;
}

.response_msg_wrap.error .error_msg {
  display: block;
}




/*! jQuery UI - v1.13.2 - 2023-07-16
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;-ms-filter:"alpha(opacity=25)";opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}


/* jQuery UI Overrides */

.ui-dialog {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 18px;
  padding: 20px;
}

.ui-widget-overlay {
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}

body .ui-dialog .ui-dialog-titlebar-close {
  width: 21px;
  height: 21px;
}

body .ui-dialog-titlebar-close:before {
  content: "×";
  position: absolute;
  right: 4px;
  top: -1px;
  text-indent: 0 !important;
  margin-top: 0;
}

.woocommerce-checkout #payment div.payment_box .form-row {
  box-sizing: border-box;
}