/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
.breadcrumbs {
  margin: 0;
  padding: 80px 0 45px 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #A7A7A7;
  z-index: 10;
}
.breadcrumbs ul {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  margin-right: 0.35rem;
  margin-left: 0.35rem;
  text-transform: uppercase;
  color: #A7A7A7;
}
.breadcrumbs li:after {
  content: "/";
  margin-left: 0.35rem;
  position: relative;
  top: -1px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs .icon {
  margin-left: 4px;
  width: 8px;
  height: 8px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #A7A7A7;
  color: #A7A7A7;
  position: relative;
  top: -2px;
}
.breadcrumbs .icon img, .breadcrumbs .icon svg {
  width: 8px;
  height: 8px;
  display: block;
}
.breadcrumbs .icon path, .breadcrumbs .icon circle, .breadcrumbs .icon line, .breadcrumbs .icon polygon, .breadcrumbs .icon ellipse, .breadcrumbs .icon svg, .breadcrumbs .icon use {
  fill: #A7A7A7;
  color: #A7A7A7;
}
.breadcrumbs a {
  color: #3c3c3c;
  transition: color 0.3s;
  font-weight: 600;
}
.breadcrumbs a .icon {
  fill: #A7A7A7;
  color: #A7A7A7;
}
.breadcrumbs a .icon path, .breadcrumbs a .icon circle, .breadcrumbs a .icon line, .breadcrumbs a .icon polygon, .breadcrumbs a .icon ellipse, .breadcrumbs a .icon svg, .breadcrumbs a .icon use {
  fill: #A7A7A7;
  color: #A7A7A7;
}
.breadcrumbs li:hover .home {
  fill: #184e8a;
  color: #184e8a;
}
.breadcrumbs li:hover .home path, .breadcrumbs li:hover .home circle, .breadcrumbs li:hover .home line, .breadcrumbs li:hover .home polygon, .breadcrumbs li:hover .home ellipse, .breadcrumbs li:hover .home svg, .breadcrumbs li:hover .home use {
  fill: #184e8a;
  color: #184e8a;
}
.breadcrumbs li:hover a {
  text-decoration: none;
}
.breadcrumbs li:hover .home {
  fill: #184e8a;
  color: #184e8a;
}
.breadcrumbs li:hover .home path, .breadcrumbs li:hover .home circle, .breadcrumbs li:hover .home line, .breadcrumbs li:hover .home polygon, .breadcrumbs li:hover .home ellipse, .breadcrumbs li:hover .home svg, .breadcrumbs li:hover .home use {
  fill: #184e8a;
  color: #184e8a;
}

@media screen and (max-width: 992px) {
  .breadcrumbs ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .breadcrumbs {
    font-size: 0.75rem;
    padding: 40px 0 20px 0;
  }
}
.newsletter {
  padding: 0 0 54px 0;
  text-align: center;
  overflow: hidden;
}
.newsletter .wrapper {
  border-radius: 14px;
  background: #FFF1C9;
  position: relative;
}
.newsletter .icon-1 {
  position: absolute;
  z-index: 2;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 95px;
  height: 66px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
}
.newsletter .icon-1 img, .newsletter .icon-1 svg {
  width: 95px;
  height: 66px;
  display: block;
}
.newsletter .icon-2 {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -25%;
  width: 218px;
  height: 248px;
}
.newsletter .icon-3 {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: -5%;
  width: 258px;
  height: 190px;
}
.newsletter .icon-4 {
  position: absolute;
  z-index: 2;
  top: 45px;
  right: 20%;
  width: 23px;
  height: 23px;
}
.newsletter .icon-5 {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: 5%;
  width: 70px;
  height: 70px;
}
.newsletter .icon-6 {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  right: 3%;
  width: 40px;
  height: 40px;
}
.newsletter .icon-7 {
  position: absolute;
  z-index: 2;
  bottom: -15px;
  right: 20%;
  width: 100px;
  height: 95px;
}
.newsletter .icon-8 {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  width: 128px;
  height: 128px;
}

.newsletter__bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.newsletter__bg img {
  height: 100%;
  opacity: 0.5;
}
.newsletter__bg:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 70%;
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(243, 241, 235, 0) 0%, #FFF1C9 90%);
  z-index: 2;
}

.newsletter__form {
  padding: 45px 15px;
  max-width: 505px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.newsletter__form .heading {
  letter-spacing: -1.2px;
  color: #3c3c3c;
  font-size: 2.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-family: "Cherry Swash";
  letter-spacing: -0.85px;
}
.newsletter__form .subheading {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a7a7a7;
  letter-spacing: -0.33px;
}
.newsletter__form input:not(.input-floating) {
  border: 0;
  border-radius: 0;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 0.875rem;
}
.newsletter__form input:not(.input-floating)::placeholder {
  color: #A7A7A7;
}
.newsletter__form .btn-submit {
  background: none;
  border: 0;
  font-size: 0.75rem;
  color: #74c123;
  font-weight: 700;
  position: relative;
  padding: 0 20px;
  text-transform: uppercase;
  background: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
.newsletter__form .btn-submit:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  display: block;
  height: 14px;
  background-color: #d6d6d6;
  content: "";
}
.newsletter__form .newsletter-agree-wrapper {
  position: absolute;
  bottom: -12px;
  text-align: left;
}

@media screen and (max-width: 992px) {
  .newsletter .icon-1, .newsletter .icon-2, .newsletter .icon-3, .newsletter .icon-4, .newsletter .icon-5, .newsletter .icon-6, .newsletter .icon-7, .newsletter .icon-8 {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .newsletter {
    overflow: visible;
  }
  .newsletter .wrapper {
    padding: 120px 0 0 0;
  }
  .newsletter .icon-8 {
    display: block;
    top: 15px;
    right: 40px;
    width: 120px;
  }
  .newsletter .icon-1 {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 110px;
  }
  .newsletter .icon-4 {
    display: block;
    left: 40px;
    top: 40px;
  }
  .newsletter .icon-6 {
    display: block;
    right: 20px;
    top: auto;
    bottom: 175px;
  }
  .newsletter__bg {
    height: 50%;
    bottom: auto;
  }
  .newsletter__bg img {
    width: 100%;
  }
  .newsletter__bg:after {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(243, 241, 235, 0) 0%, #FFF1C9 90%);
  }
  .newsletter__form .heading {
    font-size: 1.5rem;
  }
}
.features {
  margin: 0 0 54px 0;
}
.features .wrapper {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
}
.features .heading-primary {
  color: #74c123;
}

.features__item {
  text-align: center;
}
.features__item .item-wrapper {
  border-right: 2px dashed rgba(206, 206, 206, 0.5);
}
.features__item .item-heading {
  letter-spacing: -0.45px;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.features__item .thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.features__item .thumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 74px;
  margin: 0 auto 0.875rem auto;
}
.features__item:last-child .item-wrapper {
  border-right: 0;
}

@media screen and (max-width: 992px) {
  .features .wrapper {
    padding: 30px 15px;
  }
  .features__item .item-wrapper {
    border: 0;
    padding: 15px 0;
  }
  .features__item .item-heading {
    font-size: 1rem;
  }
  .features__item .thumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 50px;
    margin: 0 auto 0.875rem auto;
  }
}
.socials-feed {
  padding: 0 0 54px 0;
  overflow: hidden;
}
.socials-feed .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  background: #F2F2F2 0% 0% no-repeat padding-box;
  width: 100%;
  border-radius: 9px;
  height: 10px;
  overflow: hidden;
}
.socials-feed .swiper-pagination-bullet {
  height: 10px;
  border-radius: 9px;
  position: relative;
  border-radius: 0;
  border: 0;
  flex-grow: 1;
  margin: 0 !important;
  background: none;
}
.socials-feed .swiper-pagination-bullet-active {
  border-radius: 9px;
  background: #707070;
}

.socials-feed__socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.socials-feed__socials li {
  margin: 0 5px;
}
.socials-feed__socials .icon {
  width: 21px;
  height: 21px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #A7A7A7;
  color: #A7A7A7;
}
.socials-feed__socials .icon img, .socials-feed__socials .icon svg {
  width: 21px;
  height: 21px;
  display: block;
}
.socials-feed__socials .icon path, .socials-feed__socials .icon circle, .socials-feed__socials .icon line, .socials-feed__socials .icon polygon, .socials-feed__socials .icon ellipse, .socials-feed__socials .icon svg, .socials-feed__socials .icon use {
  fill: #A7A7A7;
  color: #A7A7A7;
}

.socials-feed__item {
  width: 675px;
}
.socials-feed__item .thumb {
  width: 40%;
  max-height: 315px;
}
.socials-feed__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.socials-feed__item .meta {
  width: 60%;
  padding: 25px 30px;
}
.socials-feed__item .item-wrapper {
  background-color: #fff;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.0509803922);
}
.socials-feed__item .heading {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  color: #184e8a;
  border-bottom: 1px solid rgb(224, 224, 224);
}
.socials-feed__item .heading h3 {
  margin-bottom: 0;
}
.socials-feed__item .heading .icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #184e8a;
  color: #184e8a;
  margin-right: 1rem;
}
.socials-feed__item .heading .icon img, .socials-feed__item .heading .icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.socials-feed__item .heading .icon path, .socials-feed__item .heading .icon circle, .socials-feed__item .heading .icon line, .socials-feed__item .heading .icon polygon, .socials-feed__item .heading .icon ellipse, .socials-feed__item .heading .icon svg, .socials-feed__item .heading .icon use {
  fill: #184e8a;
  color: #184e8a;
}
.socials-feed__item .tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.socials-feed__item .tags li {
  margin: 2px 5px;
  color: #184e8a;
  font-weight: 700;
}
.socials-feed__item .perex {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1.5;
}
.socials-feed__item .item-wrapper:hover {
  color: #3c3c3c;
}

@media screen and (max-width: 576px) {
  .socials-feed__item {
    width: 100%;
  }
  .socials-feed__item .item-wrapper {
    flex-wrap: wrap;
  }
  .socials-feed__item .thumb {
    width: 100%;
  }
  .socials-feed__item .meta {
    width: 100%;
  }
}
.swiper-wrapper .directions {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background-color: #8A8A8A;
}

.main-boys {
  background-color: #EBF5FF;
  padding: 10px 0;
}

.main-girls {
  background-color: #FFEBF1;
  padding: 10px 0;
}

.product-list {
  padding: 0 0 60px 0;
  overflow: hidden;
}
.product-list .heading-primary {
  margin-bottom: 2rem;
}
.product-list .row--sm {
  --bs-gutter-x: 0;
}
.product-list .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 0rem;
}
.product-list .swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  position: relative;
  background: none;
  border-radius: 50%;
  border: 0;
}
.product-list .swiper-pagination-bullet:after {
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #3c3c3c;
}
.product-list .swiper-pagination-bullet-active {
  border: 1px solid #c7c7c7;
}
.product-list .product-amount {
  font-size: 0.875rem;
}
.product-list .pagination-wrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E6E6E6;
}

.product-list--pb {
  padding: 0 0 44px 0;
}

.product-list__item {
  padding-bottom: 24px;
}
.product-list__item .item-wrapper {
  padding: 15px;
  border-radius: 24px;
  overflow: hidden;
  display: block;
}
.product-list__item .hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(60, 60, 60, 0.8);
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.product-list__item .hover-heading {
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.product-list__item .hover-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-wrap: wrap;
}
.product-list__item .hover-list li {
  background-color: #3C3C3C;
  color: #fff;
  border-radius: 14px;
  padding: 8px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 3px;
}
.product-list__item .btn-hover {
  border: 1px solid #fff;
  color: #fff;
}
.product-list__item .btn-hover:hover {
  color: #fff;
  background-color: #74c123;
  border: 1px solid #74c123;
}
.product-list__item .thumb {
  width: 100%;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
  min-height: 220px;
}
.product-list__item .thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.product-list__item .product-labels {
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 5;
}
.product-list__item .tag {
  padding: 8px 11px;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background-color: #FFBC01;
  float: left;
  display: inline-block;
}
.product-list__item .tag--sm {
  padding: 6px 10px;
  font-size: 0.775rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  background-color: #FFBC01;
  float: left;
  display: inline-block;
}
.product-list__item .tag--1 {
  background-color: #fac02e;
}
.product-list__item .tag--2 {
  background-color: #FD751F;
}
.product-list__item .tag--3 {
  background-color: #6ec726;
}
.product-list__item .tag--4 {
  background-color: #CC0000;
}
.product-list__item .tag--5 {
  background-color: #2477be;
}
.product-list__item .btn-favorite {
  background: none;
  padding: 0;
  margin: 0;
  border: 0;
}
.product-list__item .btn-favorite .icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.25);
}
.product-list__item .btn-favorite .icon img, .product-list__item .btn-favorite .icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.product-list__item .btn-favorite .icon path, .product-list__item .btn-favorite .icon circle, .product-list__item .btn-favorite .icon line, .product-list__item .btn-favorite .icon polygon, .product-list__item .btn-favorite .icon ellipse, .product-list__item .btn-favorite .icon svg, .product-list__item .btn-favorite .icon use {
  fill: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.25);
}
.product-list__item .btn-favorite:hover, .product-list__item .btn-favorite.active {
  fill: #da0d0d;
  color: #da0d0d;
}
.product-list__item .btn-favorite:hover path, .product-list__item .btn-favorite:hover circle, .product-list__item .btn-favorite:hover line, .product-list__item .btn-favorite:hover polygon, .product-list__item .btn-favorite:hover ellipse, .product-list__item .btn-favorite:hover svg, .product-list__item .btn-favorite:hover use, .product-list__item .btn-favorite.active path, .product-list__item .btn-favorite.active circle, .product-list__item .btn-favorite.active line, .product-list__item .btn-favorite.active polygon, .product-list__item .btn-favorite.active ellipse, .product-list__item .btn-favorite.active svg, .product-list__item .btn-favorite.active use {
  fill: #da0d0d;
  color: #da0d0d;
}
.product-list__item .item-heading {
  letter-spacing: -0.4px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  height: 19.2px;
  display: block;
  overflow: hidden;
}
.product-list__item .perex {
  color: #A7A7A7;
  font-size: 0.875rem;
  letter-spacing: -0.35px;
  margin-bottom: 0.7rem;
  height: 36.8px;
  display: block;
  overflow: hidden;
}
.product-list__item .price {
  letter-spacing: -0.47px;
  font-size: 1.1875rem;
  color: #184e8a;
  font-weight: 700;
}
.product-list__item .old-price {
  font-size: 0.875rem;
  letter-spacing: -0.35px;
  font-weight: 700;
  color: #A7A7A7;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.product-list__item .availability {
  text-transform: uppercase;
  letter-spacing: -0.3px;
  font-size: 0.75rem;
  font-weight: 700;
}
.product-list__item .availability--unavailable {
  color: #da0d0d;
}
.product-list__item .availability--available {
  color: #74c123;
}
.product-list__item .availability--temporarily {
  color: #fd751f;
}
.product-list__item .item-wrapper:hover {
  color: #3c3c3c;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.0784313725);
  background-color: #fff;
}
.product-list__item .item-wrapper:hover .hover {
  opacity: 1;
  visibility: visible;
}

.product-list__item--slider {
  width: 347px;
}

.product-list__item--hpslider {
  width: 307px;
}

.product-list__item--sm .thumb {
  height: 295px;
}
.product-list__item--sm .price {
  font-size: 1rem;
}
.product-list__item--sm .old-price {
  font-size: 0.75rem;
}

.product-list__filter {
  background: #FFFFFF;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.0509803922);
  border-radius: 10px;
  margin-bottom: 2rem;
}
.product-list__filter .heading {
  display: flex;
  align-items: center;
  color: #A7A7A7;
  border-bottom: 1px solid #F4F4F4;
  padding: 25px;
  font-weight: 700;
  cursor: pointer;
}
.product-list__filter .heading .icon {
  width: 15px;
  height: 17px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #A7A7A7;
  color: #A7A7A7;
  margin-right: 0.5rem;
}
.product-list__filter .heading .icon img, .product-list__filter .heading .icon svg {
  width: 15px;
  height: 17px;
  display: block;
}
.product-list__filter .heading .icon path, .product-list__filter .heading .icon circle, .product-list__filter .heading .icon line, .product-list__filter .heading .icon polygon, .product-list__filter .heading .icon ellipse, .product-list__filter .heading .icon svg, .product-list__filter .heading .icon use {
  fill: #A7A7A7;
  color: #A7A7A7;
}
.product-list__filter .filter-group {
  padding: 25px;
  border-bottom: 1px solid #F4F4F4;
}
.product-list__filter .filter-heading {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #184e8a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.product-list__filter .color {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 0.15rem;
}
.product-list__filter .amount {
  opacity: 0.75;
}
.product-list__filter .filter-group--price input {
  padding: 0;
  border: 0;
  color: #A7A7A7;
  border-radius: 0;
}
.product-list__filter .filter__item {
  margin-bottom: 25px;
  max-height: 250px;
  overflow: auto;
}
.product-list__filter .filter__item .amount {
  opacity: 0.5;
  font-style: italic;
}
.product-list__filter .filter__item::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.product-list__filter .filter__item::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.product-list__filter .filter__item::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #555;
}
.product-list__filter ul {
  list-style-type: none;
  padding-left: 0rem;
}
.product-list__filter ul.cat-submenu {
  margin-left: 20px;
}
.product-list__filter ul li a:hover {
  color: #74c123;
}

.product-list__side-banner {
  margin-bottom: 2rem;
  display: block;
}

.product-list__hero {
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.product-list__hero .heading {
  letter-spacing: -0.95px;
  color: #184e8a;
  font-size: 2.375rem;
  font-family: "Cherry Swash";
  font-weight: 700;
  margin-bottom: 1.375rem;
}
.product-list__hero .perex {
  letter-spacing: -0.45px;
  color: #707070;
  line-height: 1.75;
}
.product-list__hero .perex a {
  color: #74c123;
  text-decoration: underline;
}
.product-list__hero .perex a:hover {
  text-decoration: none !important;
}
.product-list__hero .thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list__hero .icon {
  width: 94px;
  margin-left: -25%;
  margin-top: 40px;
}
.product-list__hero .k {
  position: absolute;
  width: 200px;
  right: -30px;
  top: 75%;
  transform: translateY(-50%);
}
.product-list__hero .i {
  position: absolute;
  width: 60px;
  left: 0;
  top: 0;
}
.product-list__hero .d {
  position: absolute;
  width: 104px;
  position: absolute;
  top: -15px;
  right: 110px;
}
.product-list__hero .s {
  position: absolute;
  width: 40px;
  right: -70px;
  bottom: -30px;
}

.product-list__filter-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
  padding: 0 0 2rem 0;
  margin: 0 0 2rem 0;
}
.product-list__filter-2 .heading {
  letter-spacing: -0.7px;
  font-weight: 400;
  font-size: 0.875rem;
  margin-right: 1rem;
  opacity: 0.5;
}
.product-list__filter-2 .filter-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.product-list__filter-2 .filter-nav a {
  display: block;
  padding: 7.5px 10px;
}
.product-list__filter-2 .filter-nav a:hover {
  color: #999999;
}
.product-list__filter-2 .filter-nav .active a {
  font-weight: 700;
  color: #74c123;
}
.product-list__filter-2 .select {
  border: 1px solid #d3d3d3;
  border-radius: 10px;
}
.product-list__filter-2 select {
  background: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 0;
  color: #a7a7a7;
  padding: 10px 30px 10px 15px;
  width: calc(100% - 45px);
}

.product-list__current-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.product-list__current-filter .remove-all {
  text-transform: uppercase;
  color: #a7a7a7;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.product-list__current-filter .remove-all .icon {
  width: 8px;
  height: 8px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #a7a7a7;
  color: #a7a7a7;
  margin-left: 0.5rem;
}
.product-list__current-filter .remove-all .icon img, .product-list__current-filter .remove-all .icon svg {
  width: 8px;
  height: 8px;
  display: block;
}
.product-list__current-filter .remove-all .icon path, .product-list__current-filter .remove-all .icon circle, .product-list__current-filter .remove-all .icon line, .product-list__current-filter .remove-all .icon polygon, .product-list__current-filter .remove-all .icon ellipse, .product-list__current-filter .remove-all .icon svg, .product-list__current-filter .remove-all .icon use {
  fill: #a7a7a7;
  color: #a7a7a7;
}
.product-list__current-filter .heading {
  color: #184e8a;
  letter-spacing: -0.33px;
  font-size: 0.875rem;
  margin-right: 1rem;
  font-weight: 700;
}
.product-list__current-filter .tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-list__current-filter .tags li {
  margin-right: 1rem;
  border-radius: 14px;
  border: 1px solid #A7A7A7;
  border-radius: 14px;
  color: #a7a7a7;
  padding: 7px 12px 6px 12px;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}
.product-list__current-filter .tags .icon {
  width: 8px;
  height: 8px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #a7a7a7;
  color: #a7a7a7;
  margin-left: 0.5rem;
  position: relative;
  top: -1px;
}
.product-list__current-filter .tags .icon img, .product-list__current-filter .tags .icon svg {
  width: 8px;
  height: 8px;
  display: block;
}
.product-list__current-filter .tags .icon path, .product-list__current-filter .tags .icon circle, .product-list__current-filter .tags .icon line, .product-list__current-filter .tags .icon polygon, .product-list__current-filter .tags .icon ellipse, .product-list__current-filter .tags .icon svg, .product-list__current-filter .tags .icon use {
  fill: #a7a7a7;
  color: #a7a7a7;
}

@media screen and (max-width: 576px) {
  .product-list {
    padding: 0 0 45px 0;
  }
  .product-list .heading-primary {
    margin-bottom: 1.15rem;
  }
  .product-list__current-filter {
    flex-wrap: wrap;
  }
  .product-list__current-filter .remove-all {
    width: 100%;
    margin-top: 1rem;
  }
  .product-list__current-filter .tags {
    width: 100%;
  }
  .product-list__hero {
    margin-bottom: 0;
  }
  .product-list__hero .thumb {
    padding-bottom: 2rem;
  }
  .product-list__hero .thumb .k, .product-list__hero .thumb .i, .product-list__hero .thumb .d, .product-list__hero .thumb .s {
    display: none;
  }
  .product-list__hero .thumb .icon {
    margin: 0 auto;
  }
  .product-list__side-banner {
    display: none;
  }
  .filter-group {
    display: none;
  }
}
.pagination {
  position: relative;
  text-align: center;
}

.pagination__ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  font-size: 0.875rem;
}
.pagination__ul ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
}

.pagination__item {
  display: inline-block;
  line-height: normal;
  margin-right: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #3c3c3c;
  border-radius: 2px;
}
.pagination__item a, .pagination__item .link {
  color: #A7A7A7;
  transition: all 0.3s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__item .icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  fill: #565656;
  color: #565656;
}
.pagination__item .icon img, .pagination__item .icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.pagination__item .icon path, .pagination__item .icon circle, .pagination__item .icon line, .pagination__item .icon polygon, .pagination__item .icon ellipse, .pagination__item .icon svg, .pagination__item .icon use {
  fill: #565656;
  color: #565656;
}
.pagination__item a:hover {
  color: #184e8a;
  text-decoration: none;
}
.pagination__item a:hover .icon {
  fill: #184e8a;
  color: #184e8a;
  opacity: 1;
}
.pagination__item a:hover .icon path, .pagination__item a:hover .icon circle, .pagination__item a:hover .icon line, .pagination__item a:hover .icon polygon, .pagination__item a:hover .icon ellipse, .pagination__item a:hover .icon svg, .pagination__item a:hover .icon use {
  fill: #184e8a;
  color: #184e8a;
}

.pagination__item--active {
  font-weight: 400;
  background-color: transparent;
  color: #fff;
  background-color: #184e8a;
  opacity: 1;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__item--active a {
  color: #3c3c3c;
}

.pagination__item--more {
  background: transparent;
  border-color: transparent;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__item--disabled {
  opacity: 0.21;
}

.pagination__item--disabled-arrow {
  display: none;
}

.pagination__item--arrow a, .pagination__item--arrow .link {
  color: #184e8a;
  font-weight: 700;
  text-transform: uppercase;
  width: auto;
  height: auto;
}

@media screen and (max-width: 992px) {
  .pagination .btn-wrapper {
    justify-content: flex-start;
    right: auto;
  }
  .pagination__ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .pagination__ul {
    justify-content: center;
  }
  .pagination__item--more, .pagination__item--dots, .pagination__item--active {
    padding: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .pagination__item {
    margin-bottom: 0.75rem;
  }
  .pagination__item a {
    padding: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
.container-fluid {
  max-width: 1410px;
  _width: 1410px;
}