/*===Filter Container===*/
.filter_toggle_btn.submit_button:after {
  content: "Filter";
}
.filter_toggle_close_btn {
  font-family: "flexe-icons";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
}
.filter_toggle_close_btn:after {
  content: "x";
  display: block;
  background: #fff;
  text-align: center;
  margin: 0 auto;
  color: #25315f;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  border-radius: 100%;
  box-shadow: 1px 1px 5px #0000006b;
  cursor: pointer;
}
.filter_frame_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 20px;
  margin: 0 auto;
  margin-top: 60px;
  max-width: 800px;
  background: #fff;
  box-shadow: 0px 0px 7px #0000005c;
  border-radius: 7px;
  -web-kit-transition: 0.5s;
  transition: 0.5s;
}
.filter_box_window {
  display: grid;
  gap: 30px;
}
.filter_container {
  position: relative;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #00000078;
  display: block;
  opacity: 0;
  height: 0;
  visibility: hidden;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}
.filter_container.open {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.filter_box_heading {
  display: block;
  height: 35px;
  line-height: 35px;
  color: var(--filter-heading-color);
  border-bottom: 1px solid #ddd;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.filter_box_list {
  width: 100%;
  margin: 0px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.filter_box_list li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter_box_list a {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  line-height: 34px;
}
.filter_box_list a:hover {
  text-decoration: none;
  color: var(--filter-link-color-hover);
}
.filter_box_list a:before {
  content: "";
  display: inline-block;
  background: var(--filter-indicator-background);
  width: 16px;
  height: 16px;
}
.filter_box_list a:hover:before {
  background: var(--filter-indicator-hover);
}
.filter_box_list a.link_cat_sel:before {
  background: var(--filter-indicator-background-sel);
}
.filter_box_list a.dis {
  color: #eee;
  cursor: default;
}
.filter_box_list a.dis:before {
  background: #eee;
  color: #eee;
}
@media only screen and (max-width: 600px) {
  .filter_container {
    position: absolute;
    z-index: 998;
    top: 0;
    bottom: 0;
  }

  .filter_container,
  .im_cat_menu_frame_bot {
    display: none;
  }

  .filter_container {
    left: -100%;
    overflow: visible;
    width: 85%;
  }

  .filter_container {
    position: fixed;
    background: #fff;
    box-shadow: 0 0 5px #00000061;
    padding: 20px;
    box-sizing: border-box;
    z-index: 100;
  }
}

@media only screen and (max-width: 800px) {
  .filter_container {
    position: fixed;
    width: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .im_cat_menu_box_extra_tag_frame {
    margin: 64px 20px;
    overflow-y: scroll;
    max-height: calc(100vh - 105px);
  }
  .filter_box_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

















/*===Item Container===*/
.gallery_global.gallery_id_inventory_item_list .box {
  text-align: inherit;
  align-items: inherit;
  justify-content: inherit;
  cursor: unset;
}
.gallery_global.gallery_id_inventory_item_list .box.blow {
  justify-content: center;
  align-items: center;
}
.item_container a:hover {
  text-decoration: none;
}
.item_listing_text {
  flex: 1;
}
.item_listing_text:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.item_name {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.item_no {
  font-size: 0.8rem;
}
.item_description {
  margin-top: 22px;
  margin-bottom: 15px;
}
.item_prices {
  font-size: 2rem;
  margin-top: 20px;
}
.item_listing_filters, .btn_fav_listing {
  display: none;
}
.more_info_container, .item_price abbr {
  display:none;
}
.buy_now_container {
  position: relative;
  margin-top: 30px;
  z-index: 2;
}
.btn_add_to_cart_list {
  width: 100%;
  display: block;
}
.inventory_view_all_wrap {
  text-align: center;
}

/*===Secondary Image===*/
.toggle_sec_img_hover{
  position: relative;
}
.toggle_sec_img_hover .item_img_frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 1;
}
.toggle_sec_img_hover .item_img_frame img {
  opacity: 0;
}
.toggle_sec_img_hover .item_img_frame:first-child {
  position: relative;
  z-index: 5;
}
.toggle_sec_img_hover .item_img_frame:first-child img {
  opacity: 1;
}
.toggle_sec_img_hover:hover .item_img_frame:first-child {
  position: absolute;
  z-index: 1;
}
.toggle_sec_img_hover:hover .item_img_frame:nth-child(2) {
  position: relative;
  z-index: 5;
}
.toggle_sec_img_hover:hover .item_img_frame:first-child img {
  opacity: 0;
}
.toggle_sec_img_hover:hover .item_img_frame:nth-child(2) img {
  opacity: 1;
}

.item_container .item_img_display_col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.item_img_display_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.item_img_display_row .item_img_frame {
  width: auto !important;
}


/*===THEME Item Description Right===*/
.theme_product_list_desc_top {

  .item_container {
    position: relative;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-wrap: nowrap;
    align-items: start;
  }
  
  .item_listing_text {
    order: 1;
  }
  .item_prices {
    order: 2;
  }
  .item_description {
    order: 3;
  }
  .product_listing_img {
    order: 10;
  }
  .buy_now_container {
    order: 100;
  }

  .item_description h1 {
    margin-top: 0;
  }
  .product_listing_img {
    flex: 0 0 25%;
  }
  .item_container .item_img {
    width: 100%;
    display: block;
  }
  .btn_add_to_cart_list {
    width: auto;
    display: inline-flex;
  }
  @media only screen and (max-width: 900px) {
    .item_container {
      flex-direction: column;
    }
    .product_listing_img {
      align-self: center;
      flex: 1;
      min-width: unset;
      max-width: unset;
    }
    .item_prices {
      text-align: center;
      margin-bottom: 15px;
    }
    .btn_add_to_cart_list {
      width: 100%;
      display: block;
    }
  }
}

.theme_product_list_desc_right {
  .item_container {
    display: grid;
    grid-template-columns: 20% auto;
    gap: 35px;
    align-items: start;
  }
  .btn_add_to_cart_list {
    width: auto;
    display: inline-flex;
  }
  @media only screen and (max-width: 900px) {
    .item_container {
      grid-template-columns: 1fr;
      width: 100%;
    }
    .item_img_display_row {
      justify-content: center;
    }
    .btn_add_to_cart_list {
      width: 100%;
      display: block;
    }
  }
}



/*===THEME Accordian===*/
.gallery_id_inventory_item_list.accordion_gallery {
  .item_listing_text,
  .item_prices,
  .buy_now_container {
    display: none;
  }
  .item_img {
    transition: 0.3s;
  }
  .img_wrap {
    margin-bottom: 70px;
  }
}
.gallery_id_inventory_item_list.accordion_gallery .aFocus {
  .item_listing_text,
  .item_prices,
  .buy_now_container {
    display: block;
  }
  .item_listing_text {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    color: #fff;
  }
  .item_prices {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
  }
  .item_img {
    filter: brightness(0.3);
  }
  &.blow .item_listing_text,
  &.blow .item_prices {
    position: static;
  }
  &.blow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}



/*===theme - carousel===*/
.gallery_carousel.gallery_id_inventory_item_list .carousel_nav_wrap {
  top: unset;
  bottom: 35px;
}
.gallery_carousel.gallery_id_inventory_item_list .wrap_overflow {
  padding-bottom: 70px;
}
.gallery_id_inventory_item_list .carousel_nav_wrap .carousel_prev {
  left: auto;
  right: 80px;
}
.gallery_id_inventory_item_list .carousel_nav {
  background: var(--submit-button-bg);
  color: var(--submit-button-color);
}
.gallery_id_inventory_item_list .carousel_nav:hover {
  background: var(--submit-button-bg-hover);
  color: var(--submit-button-color-hover);
}


/*===Theme - Slide Show ===*/
.slide_show_item_content {
  background: #000000ba;
  padding: 30px 50px;
  display: inline-flex;
  flex-direction: column;
}
.slide_show_item_content p {
  padding: 0;
  margin: 10px 0;
}



/*===Navigation===*/
.nav_btn_container {
  position: relative;
  display: flex;
  margin-top: 20px;
  gap: 20px;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  line-height: 45px;
  z-index: 10;
}
.nav_btn_container .sort_menu_label {
  min-width: 180px;
}
.nav_btn_container .submit_button  {
  line-height: 45px;
}
.nav_btn_container .sort_menu:hover .sort_menu_label {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.nav_btn_container {
  display: flex;
}
.nav_paging_status {
  display: none;
}
#FooterNavigation .nav_paging_status {
  display: block;
}
.nav_num_series {
  display: flex;
  flex: 1;
  justify-content: end;
  align-items: center;
  padding-right: 20px;
}
.nav_num_series a {
  display: block;
  flex: 0 0 30px;
  text-align: center;
  line-height: 30px;
  height: 30px;
  border-bottom: 1px solid transparent;
}
.nav_num_series .nav_text,
.nav_num_series a:hover {
  border-bottom: 1px solid var(--nav-page-focus-border-color);
}
.nav_num_series a:hover {
  text-decoration: none;
}
.nav_num_series .btn_nav:after {
  font-family: "flexe-icons";
}
.nav_num_series .btn_next:after {
  content: ">";
}
.nav_num_series .btn_pre:after {
  content: "<";
}
#FooterNavigation .filter_toggle_btn,
#FooterNavigation .sort_menu {
  display: none;
}

.sort_name_rating {
  display: none;
}
.sort_menu {
  position: relative;
  border-radius: var(--submit-button-border-radius);
}
.sort_menu .sort_menu_label:after {
  content: "";
  position: absolute;
  top: 21px;
  right: 10px;
  width: 0px;
  height: 0px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}
.sort_list {
  position: absolute;
  background: #fff;
  min-width: 130px;
  text-align: left;
  left: 0;
  right: 0;
  box-shadow: 0 6px 10px #0000003d;
  border-radius: inherit;
  overflow: hidden;
}
.sort_list {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.sort_menu a {
  text-decoration: none;
  display: block;
  padding: 0 10px;
  text-align: left;
}
.sort_menu a:hover {
  text-decoration: none;
}
.nav_btn_container .sort_menu_link.submit_button  {
  line-height: 35px;
  height: auto;
  border-radius: 0;
  border: none;
}
.sort_menu .sort_name {
  height: 0;
  line-height: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.sort_menu:hover .sort_name {
  height: 35px;
  opacity: 1;
  visibility: visible;
}
.sort_menu .sort_menu_label:before {
  padding: 0 25px 0 10px;
}







/*===Buy Now Varient optiins window===*/
.box.blow .item_container.frame {
  align-items: start;
  place-self: center;
}
.close_att_cart_popup,
.toggle_att_confirm,
.buy_now_opts {
  display: none;
}
.item_container_active_opts {
  display: flex;
  gap: 20px;
  margin: 20px !important;
}
.radio_group .submit_button span {
  margin-left: 7px;
}
.radio_group_wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.att_container_box {
  display: block;
  border-top: 1px solid #ededed;
  padding-top: 20px;
}
.att_container {
  margin-bottom: 30px;
}
.att_header {
  margin-bottom: 15px;
}
.radio_group_0 {
  display: none;
}
.radio_group label input {
  display: none;
}
.add_cart_inner .item_img_frame {
  display: none;
}
.gift_wrap_list {
  padding: 18px 20px;
}
.buy_now_container .item_qty_field {
  display: none;
}
.ga_item_data {
  display: none;
}
.submit_button.set_notify_btn {
  display: none;
}
.item_listing_add_img {
  display: none;
}
.product_listing_buy_opts p {
  font-size: 1.5em;
}
.item_container_active_opts {
  .toggle_att_confirm,
  .buy_now_opts {
    display: block;
  }
  .media_name.item_name {
    font-size: 25px;
    line-height: 40px;
    margin-top: 10px;
  }
  .product_listing_buy_opts_inner {
    position: relative;
    background: #fff;
    margin: 0;
    padding: 20px;
    border-radius: var(--product-img-border-radius);
  }
  .close_att_cart_popup {
    position: absolute;
    top: 6px;
    right: 7px;
    font-size: 30px;
    cursor: pointer;
  }
  .close_att_cart_popup:before {
    font-family: "flexe-icons";
    content: 'x';
  }
  .buy_now_container {
    margin: 0;
    max-width: 50vw;
  }
  .buy_now_container,
  .item_img_group {
    opacity: 0;
  }
}
.blow.focus .item_container_active_opts {
  .buy_now_container,
  .item_img_group {
    opacity: 1;
    transition: 0.2s;
  }
}
.item_container_active_opts.loading:after {
  content: "";
  background: url(/shop/images/loading3.svg);
  background-size: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

body.img_blow .gallery_id_inventory_item_list .carousel_nav_wrap {
  display: none;
}

