.body-wrap {
  height: 100svh;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1366px) {
  .container {
    max-width: 1320px;
  }
}
:root {
  --s-primary: chocolate;
  --s-black: #222;
  --s-white: #fff;
}

.navbar_v2 {
    width: 100%;
  background: chocolate;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}

.navbar_v2-nav {
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  width: 100%;
  position: relative;
  left: -10px;
  justify-content: space-between;
}
.navbar_v2-nav .nav-item {
  position: relative;
}
.navbar_v2-nav .nav-item:last-child {
  margin: 0;
}
.navbar_v2-nav .nav-item .drop-down {
  display: none;
  position: absolute;
  left: 10px;
  background: #fff;
  z-index: 99;
  padding: 5px 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1), 0 -3px 0 0 #0e4194;
}
.navbar_v2-nav .nav-item:hover > .drop-down {
  display: block;
}
.navbar_v2-nav .nav-item:hover > .drop-menu-2 {
  left: 100%;
  top: -5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.2);
}
.navbar_v2-nav > .nav-item {
  margin-left: 0;
}
.navbar_v2-nav > .nav-item > .nav-link {
  color: var(--s-white);
}
.navbar_v2-nav > .nav-item:hover > .nav-link {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--s-white);
}
.navbar_v2-nav > .nav-item:nth-child(n+8):hover .drop-menu-1 {
  right: 10px;
  left: auto;
}
.navbar_v2-nav > .nav-item:nth-child(n+8):hover .drop-menu-2 {
  left: inherit;
  right: 100%;
}
.navbar_v2-nav .nav-link {
  padding: 0 7px 0 7px;
  line-height: 50px;
  white-space: nowrap;
  display: block;
  font-size: 13.3px;
  font-weight: 600;
  color: var(--s-black);
  position: relative;
}
@media (max-width: 1379.9px) {
  .navbar_v2-nav .nav-link {
    font-size: 13.3px;
  }
}
@media (max-width: 1299.9px) {
  .navbar_v2-nav .nav-link {
    font-size: 10.3px;
  }
}
.navbar_v2-nav .nav-link:hover {
  color: var(--s-primary);
  text-decoration: none;
}
.navbar_v2-nav .show > .nav-link {
  color: var(--s-primary);
  text-decoration: none;
}
.navbar_v2-nav .drop-down li {
  display: block;
  position: relative;
}
.navbar_v2-nav .drop-down li .nav-link {
  display: block;
  font-weight: normal;
  font-size: 14px;
  white-space: normal;
  line-height: 19px;
  padding: 4px 15px;
  width: 200px;
  color: var(--s-black);
}
.navbar_v2-nav .drop-down li a {
  display: block;
  font-weight: normal;
  font-size: 14px;
  white-space: normal;
  line-height: 19px;
  padding: 4px 15px;
  width: 200px;
  color: var(--s-black);
}
.navbar_v2-nav .drop-down li:hover > a {
  background: var(--s-primary);
  color: var(--s-white);
}
.navbar_v2-nav .drop-down li.has-child:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent var(--s-primary);
  position: absolute;
  right: 10px;
  top: 12px;
  opacity: 0.4;
}
.navbar_v2-nav .multi-col > .drop-down {
  width: 400px;
}
.navbar_v2-nav .multi-col .drop-down > ul {
  display: inline-block;
  position: relative;
  float: left;
}

.drop-down li .nav-link ul {
  display: none;
}

@media only screen and (min-width: 280px) and (max-width: 479px) {
  nav {
    height: unset;
  }
}
@media (max-width: 991.9px) {
  .navbar_v2 .navbar_v2-nav {
    width: 290px;
    display: block;
    position: fixed;
    left: -400px;
    top: 50px;
    height: calc(100vh - 50px);
    overflow: auto;
    background: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99999;
    border-top: 1px solid #eee;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
  }
  .navbar_v2.open .navbar_v2-nav {
    left: 0;
  }
  .navbar_v2-nav > .nav-item {
    margin-right: 0;
  }
  .navbar_v2-nav > .nav-item .nav-link {
    color: var(--s-black);
  }
  .navbar_v2-nav .nav-link {
    line-height: 44px;
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
    color: #000;
  }
  .navbar_v2-nav .nav-item.has-child:after,
  .navbar_v2-nav .drop-down li.has-child:after,
  .navbar_v2-nav .nav-item.has-child:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 1px;
    background: #999;
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
  }
  .navbar_v2-nav .nav-item.has-child:before {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .navbar_v2-nav li.has-child.open:before {
    opacity: 0;
  }
  .navbar_v2-nav > .nav-item:last-child {
    margin-bottom: 100px;
  }
  .navbar_v2-nav .drop-down li.has-child:before,
  .navbar_v2-nav .drop-down li.has-child:after {
    opacity: 0.7;
    top: 18px;
  }
  .navbar_v2-nav .drop-down li.has-child.open:before {
    opacity: 0;
  }
  .navbar_v2-nav .nav-item .drop-down {
    display: none !important;
    position: static;
    box-shadow: none !important;
    padding: 0;
    background: #fafafa;
  }
  .navbar_v2-nav .nav-item.open > .drop-down {
    display: block !important;
  }
  .navbar_v2-nav .nav-item .drop-menu-1 {
    border-bottom: 1px solid #eee;
  }
  .navbar_v2-nav .nav-item.has-child.open > a {
    color: var(--s-primary);
  }
  .navbar_v2-nav .nav-item .drop-menu-1 .nav-link,
  .navbar_v2-nav .nav-item .drop-menu-1 .see-all {
    padding-left: 40px;
    color: #666;
  }
  .navbar_v2-nav .nav-item .drop-menu-2 {
    border-bottom: 1px solid #eee;
    padding: 5px 0;
  }
  .navbar_v2-nav .nav-item .drop-menu-2 .nav-link,
  .navbar_v2-nav .nav-item .drop-menu-2 a {
    padding-left: 60px;
    border-bottom: none;
  }
  .navbar_v2-nav .drop-down li .nav-link,
  .navbar_v2-nav .drop-down li a {
    padding: 10px 15px;
    width: 100%;
    font-size: 15px;
  }
  .navbar_v2-nav > .nav-item:hover > .nav-link {
    box-shadow: none;
  }
  .navbar_v2-nav .drop-down li:hover > a {
    background: none;
    color: var(--s-primary);
  }
  .navbar_v2-nav .multi-col .drop-down {
    width: 100%;
  }
  .navbar_v2-nav .multi-col .drop-down ul {
    float: none;
    width: 100%;
  }
}
.category_page_heading {
  font-size: 22px;
}

.category_page_header {
  background-color: white;
  border-bottom: 1px solid gray;
  padding: 15px 0px;
}
.category_page_header .page_header_description,
.category_page_header .page_header_title {
  margin-bottom: 20px;
  font-size: 22px;
}
.category_page_header .page_sub_category_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category_page_header .page_sub_category_lists li a {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 25px;
  border: 1px solid rgba(128, 128, 128, 0.288);
  color: black;
}
.category_page_header .page_sub_category_lists li a:hover {
  border: 1px solid tomato;
  color: tomato;
}

.page_full_description_title {
  font-size: 22px;
  margin-bottom: 20px;
}

.page_full_description h2,
.page_full_description h3,
.page_full_description h4,
.page_full_description h5,
.page_full_description h6 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.text_no_wrap {
  white-space: nowrap;
}

.ws-box {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.top-bar {
  padding: 10px 10px 10px 20px;
  margin-bottom: 10px;
}
.top-bar label {
  margin-bottom: 0;
}

.top-bar .page-heading {
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
}

.tool-btn {
  display: flex;
  margin: 0 0 -40px 0;
  color: #000;
  padding: 0 10px;
  height: 30px;
  background: rgba(55, 73, 187, 0.05);
  border: none;
  white-space: nowrap;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}

.tool-btn i {
  float: left;
  margin-right: 5px;
}

.top-bar .show-sort {
  text-align: right;
}

.show-sort .form-group {
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 0;
}

.show-sort .form-group * {
  display: inline-block;
}

.show-sort .form-group label {
  padding-right: 5px;
  color: #666;
}

.show-sort {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.show-sort .custom-select {
  max-width: 167px;
}
.show-sort .form-group select {
  padding: 6px 5px;
  font-size: 14px;
  border: none;
  position: unset;
  outline: none;
  height: 30px;
  width: 100%;
  color: black;
}

.tool-btn {
  display: flex;
  margin: 0 0 -40px 0;
  color: #000;
  padding: 0 10px;
  height: 30px;
  background: rgba(55, 73, 187, 0.05);
  border: none;
  white-space: nowrap;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  display: none;
}

.tool-btn i {
  float: left;
  margin-right: 5px;
}

.product_list .product-box-2.alt-box .product-image img {
  width: 100%;
  object-fit: contain;
  padding: 0;
}

.collection-filter > div:nth-child(n+2) {
  margin-top: 30px;
}

.category-6 .col-xl-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.category-6 .col-xl-2 .product .product-box .product-detail .icon-detail button {
  padding: 10px;
}

.category-6 .col-xl-2 .product .product-box .product-detail .icon-detail a i {
  padding: 10px;
}

.collection-filter-block .product-service .media {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.collection-filter-block .product-service .media svg {
  height: 40px;
  width: 40px;
}

.collection-filter-block .product-service .media svg path {
  fill: #f15838;
}

.collection-filter-block .product-service .media .media-body {
  padding-left: 10px;
}

.collection-filter-block .product-service .media .media-body h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
  color: #333333;
  letter-spacing: 0.05em;
}

.collection-filter-block .product-service .media .media-body p {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: calc(13px + 2 * (100vw - 320px) / 1600);
}

.collection-filter-block .product-service .media:last-child {
  padding-bottom: 0;
}

.collection-collapse-block .collapse-block-title {
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.collection-collapse-block .collapse-block-title:after {
  position: absolute;
  display: block;
  top: 0;
  right: -3px;
  content: "\f0d7";
  font-family: FontAwesome;
  color: #333333;
}

.collection-collapse-block .collection-collapse-block-content .color-selector {
  margin-top: 20px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .form-check-input {
  height: 20px;
  width: 20px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 18px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li a {
  color: #777777;
  padding-bottom: 10px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li:last-child a {
  padding-bottom: 0;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li:first-child {
  margin-top: 30px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox {
  margin-bottom: 12px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox:first-child {
  margin-top: 20px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox:last-child {
  margin-bottom: -5px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label {
  text-transform: uppercase;
  cursor: pointer;
  color: #777777;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-left: 5px;
  line-height: 1.7;
  margin-bottom: 0;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label:checked {
  background-color: #f15838;
  border-color: #f15838;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label:before {
  top: 1px;
  height: 15px;
  width: 15px;
  background: #ffffff;
  border: 1px solid #dddddd;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label:after {
  top: 1px;
  height: 15px;
  width: 15px;
  background-size: 65%;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>");
}

.child-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.child-list a {
  display: inline-block;
  line-height: 34px;
  padding: 0 14px;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 30px;
  margin: 0 5px 5px 0;
  font-size: 13px;
  font-weight: normal;
}
.child-list a:hover {
  background: #3749bb;
  border: 1px solid #3749bb;
  color: #fff;
  text-decoration: none;
}

.logo-bar-area {
  padding-bottom: 10px;
}

.product-title {
  font-size: 15px !important;
  line-height: 27px;
  margin-bottom: 19px;
  max-height: unset;
  font-weight: unset;
}
.product-title a {
  color: #111;
  display: block;
  overflow: unset;
  text-overflow: unset;
  white-space: pre-wrap;
  text-align: center;
  min-height: 90px;
}

.product-card-2 {
  min-height: 380px;
}
/*# sourceMappingURL=custom.css.map */
