@font-face {
  font-family: "bodoni";
  src: url("/fonts/bodoni-72-book.ttf") format("truetype");
}
/*
 * Set up the keyframes to actually describe the begining and end states of 
 * the animation.  The browser will interpolate all the frames between these 
 * points.  Again, remember your vendor-specific prefixes for now!
 */
@-webkit-keyframes loadingRefresh {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
  }
}
@-moz-keyframes loadingRefresh {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(180deg);
  }
}
@-o-keyframes loadingRefresh {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(180deg);
  }
}
@keyframes loadingRefresh {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
/* Variables*/
/* Font Families*/
/* Font settings */
/* Color Palette*/
/* Shadows */
/* Max content width and paddings */
main section .section-content.multi-col {
  gap: 0;
}

@media (min-width: 1200px) {
  #product-catalog {
    padding-left: 40px;
  }
}
@media (min-width: 1400px) {
  #product-catalog {
    padding-left: 50px;
  }
}
@media (min-width: 1920px) {
  #product-catalog {
    padding-left: 60px;
  }
}
.search_toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1200px) {
  .search_toolbar {
    justify-content: flex-end;
  }
}
.search_filter_header {
  display: flex;
  gap: 10px;
  align-items: initial;
  justify-content: space-between;
  width: 100%;
}
.search_filter_header .heading {
  font-family: "bodoni", Georgia, serif;
  font-size: 1.5rem;
  line-height: 110%;
  color: #003871;
  width: max-content;
}

.navbar-expand-xl .offcanvas.navlist {
  align-items: stretch;
  padding-bottom: 140px;
  border-radius: 0;
  border: none;
  margin-bottom: 0 !important;
  overflow: auto;
}

.sidebar .navlist {
  width: 330px;
  padding: 0;
}
.sidebar .navlist form {
  padding: 24px;
}

@media (min-width: 1200px) {
  .navbar-expand-xl .offcanvas.navlist {
    padding-bottom: 0;
    border-radius: 4px;
    border: 2px solid #F0F2F3 !important;
    overflow: hidden;
    min-width: 296px;
  }
  .search_filter_header .heading {
    font-size: 2rem;
    line-height: 110%;
  }
  .search_filter_header #btn_set {
    gap: 10px;
    align-items: center;
  }
  .search_filter_header #btn_set .btn {
    font-size: 0.875rem;
    height: 34px;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xl .offcanvas.navlist {
    min-width: 330px;
  }
  .search_filter_header .heading {
    font-size: 2.25rem;
  }
  .search_filter_header #btn_set .btn {
    font-size: 1rem;
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .sidebar, .navlist {
    width: 416px;
  }
  .navbar-expand-xl .offcanvas.navlist {
    width: 416px !important;
  }
}
.filter_category h4 {
  font-size: 1.5rem;
  line-height: 110%;
  color: #003871;
  width: max-content;
}

.filter_list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 2px;
}

.btn-filter {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid #CBCBCD;
}

.form_btn_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 16px;
  width: inherit;
  background: #fff;
  border-top: 2px solid #F4f4F7;
}
.form_btn_container .btn {
  width: 100%;
}

.top-heading {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 120%;
  text-align: center;
  padding-top: 8px;
}

@media (min-width: 968px) {
  .top-heading {
    font-size: 1.5rem;
    padding: 0;
  }
}
#no_search_result_txt {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.no_search_result_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.no_search_result_top p {
  color: #2C3642;
  font-size: 16px;
  font-style: normal;
  line-height: 120%;
  margin: 0;
}
.no_search_result_try {
  border-radius: 4px;
  background: #F4F4F7;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #2C3642;
  font-size: 16px;
  font-style: normal;
  line-height: 120%;
  max-width: max-content;
}
.no_search_result_try ul {
  color: #555;
  text-align: left;
  margin: 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.no_search_result_bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.no_search_result_bottom h4 {
  font-size: 1.5rem;
  line-height: 110%;
  text-align: center;
}

@media (min-width: 968px) {
  .no_search_result_top {
    margin-top: 20px;
  }
  .no_search_result_try ul {
    gap: 0;
  }
}
.discover_products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.discover_products a {
  display: flex;
  flex-direction: column;
  color: #293343;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.08);
  width: 255px;
}
.discover_products a img {
  max-width: 100%;
}
.discover_products a span {
  padding: 11px;
  text-align: center;
}

@media (min-width: 992px) {
  .discover_products {
    flex-wrap: nowrap;
  }
  .discover_products a {
    width: calc((100% - 72px) / 4);
    max-width: 255px;
  }
}
@media (min-width: 1200px) {
  .discover_products {
    padding: 0 20px;
    gap: 20px;
  }
  .discover_products a {
    width: calc((100% - 100px) / 4);
    max-width: 255px;
  }
}
@media (min-width: 1920px) {
  .discover_products {
    padding: 0 24px;
    gap: 24px;
  }
  .discover_products a {
    width: calc((100% - 120px) / 4);
  }
}
#search_pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
}
#search_pagination a {
  border-radius: 4px;
  border: 1px solid #CBCBCD;
  width: 42px;
  height: 40px;
  color: #333;
  font-size: 0.875rem;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}
#search_pagination a.pagination-control .glyphicon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="43" height="40" viewBox="0 0 43 40" fill="none"><path d="M20.6929 24.6153L25.5391 19.9999L20.6929 15.3845" stroke="%23293343" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><rect x="1" y="0.5" width="41" height="39" rx="3.5" stroke="%23CBCBCD"/></svg>');
  background-color: #ffffff;
  background-position: center center;
  width: 42px;
  height: 40px;
}
#search_pagination a.control-prev .glyphicon {
  transform: rotate(180deg);
}
#search_pagination a.active {
  color: #ffffff;
  background-color: #003871;
}

/*# sourceMappingURL=search-page-v2.css.map */
