.info__tag__title {
  font-size: 20px;
  margin-bottom: 20px;
}
.info__tag__list {
  display: flex;
  flex-wrap: wrap;
}
.info__tag_item {
  border: 1px solid #dadada;
  padding: 4px;
  margin-right: 8px;
  margin-bottom: 4px;
  border-radius: 10px;
  cursor: pointer;
}

.sticker__album {
  width: 100%;
}
.sticker__album__leftColumn {
  max-height: 715px;
  overflow: hidden;
  width: 27.1%;
  max-width: 27.1%;
  margin-right: 4px;
}
.sticker__album__leftColumn .rowImg {
  height: 49.5%;
  margin-bottom: 6px;
}
.sticker__album__leftColumn .rowImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  border-radius: 4px;
  border-radius: var(--ds-radius-small);
  background-color: rgba(64, 53, 78, 0.12);
  z-index: 0;
}
.sticker__album__rightColumn {
  position: relative;
  max-height: 715px;
  overflow: hidden;
  width: 72.7%;
  max-width: 72.7%;
}
.sticker__album__rightColumn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .sticker__singleView {
    display: flex;
  }
  .sticker__album {
    display: none;
  }
}
@media (min-width: 1024px) {
  .sticker__singleView {
    display: none;
  }
  .sticker__album {
    display: flex;
  }
}

.pro__store {
  margin-bottom: 20px;
}
.pro__store span {
  color: #212121;
  font-weight: 100;
  font-size: 1.5em;
}
.pro__store a.storeName {
  color: #212121;
  font-weight: 100;
  font-size: 1.1em;
}
.pro__store a.storeName:hover {
  text-decoration: underline;
}
.pro__title {
  margin-bottom: 4px;
}
.pro__collection {
  margin-bottom: 20px;
}
.pro__collection:hover {
  text-decoration: underline;
}
.pro__dtl__prize {
  margin-top: 16px;
}

.filter__bar {
  margin-bottom: 8px;
}
.filter__bar__tag .title h3 {
  border-left: 1px solid rgba(129, 129, 129, 0.2);
  border-right: 1px solid rgba(129, 129, 129, 0.2);
  border-top: 2px solid #ff4136;
  color: #303030;
  font-size: 17px;
  font-weight: 500;
  padding: 15px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.filter__bar__tag .wrapItem {
  overflow-y: scroll;
  max-height: 300px;
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid rgba(129, 129, 129, 0.2);
  padding: 20px 0;
  width: 100%;
}
.filter__bar__tag .input-block {
  background-color: #fff;
  color: #333;
  display: block;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 7px 20px;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
}
.filter__bar__tag .input-block label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}
.filter__bar__tag .input-block input {
  margin: 0px;
}

.explorer .container-fluid {
  padding: 0px;
}
.explorer__paging {
  text-align: center;
  margin: 150px 0px;
  padding-bottom: 30px;
}
.explorer__paging a.btn {
  margin-right: 5px;
}

.filter__top {
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 15px;
  text-align: center;
  justify-content: center;
  margin-bottom: 30px;
}
.filter__top__tagItem {
  margin-right: 8px;
  display: inherit;
}
.filter__top__tagItem .name {
  pointer-events: none;
  padding: 4px 8px;
  border: 1px solid #e6e6e6;
  margin-bottom: 8px;
}
.filter__top__tagItem span {
  pointer-events: none;
}
.filter__top__tagItem span.icon {
  border: 1px solid #e6e6e6;
  margin-bottom: 8px;
  padding: 4px 8px;
}
.filter__top__count {
  line-height: 34px;
  font-size: 14px;
  margin-right: 15px;
}
.filter__top__number {
  font-weight: bold;
}

.searchbox {
  padding-left: 15px;
  padding-right: 15px;
}
.searchbox ::selection {
  color: #fff;
  background: #8e8e8e;
}
.searchbox .wrapper {
  max-width: 750px;
  margin: 30px auto;
}
.searchbox .wrapper .search-input {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}
.searchbox .search-input input {
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.searchbox .search-input.active input {
  border-radius: 5px 5px 0 0;
}
.searchbox .search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}
.searchbox .search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  z-index: 100;
  background: white;
  width: 100%;
  top: 60px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.searchbox .autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}
.searchbox .search-input.active .autocom-box li {
  display: block;
}
.searchbox .autocom-box li:hover {
  background: #efefef;
}
.searchbox .search-input .icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #8e8e8e;
  cursor: pointer;
}

#productModal {
  padding-bottom: 30px;
}
#productModal select[name=sizeQuick] {
  font-size: 17px;
}
@media (max-width: 400px) {
  #productModal .modal-dialog {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
  #productModal .modal-dialog .btnBuyQuick {
    width: 100%;
  }
  #productModal .modal-dialog .btnBuyQuick a {
    width: 100%;
    text-align: center;
    padding: 0px;
  }
}
@media (min-width: 768px) {
  #productModal .modal-dialog {
    width: 95%;
  }
}
@media (min-width: 991px) {
  #productModal .modal-dialog {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  #productModal .modal-dialog {
    width: 70%;
  }
}
#productModal .modal-dialog .modal-body {
  padding: 15px 0px;
}
#productModal .addtocart-btn {
  bottom: 0px;
}
#productModal .addtocart-btn a {
  width: 100%;
  padding: 0px;
  text-align: center;
}

@media (max-width: 400px) {
  #scrollUp {
    z-index: 5 !important;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 93%;
  }
}
@media (min-width: 991px) {
  #scrollUp {
    right: 15px;
  }
}

.store .banner__wrap {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 75px;
  background: grey;
}
@media (min-width: 400px) {
  .store .banner__wrap {
    height: 100px;
  }
}
@media (min-width: 576px) {
  .store .banner__wrap {
    height: 145px;
  }
}
@media (min-width: 767px) {
  .store .banner__wrap {
    height: 150px;
  }
}
@media (min-width: 991px) {
  .store .banner__wrap {
    height: 200px;
  }
}
@media (min-width: 1024px) {
  .store .banner__wrap {
    height: 256px;
  }
}
.store .banner__wrap__img {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.store .info__title h2 {
  text-align: center;
  font-size: 22px;
  line-height: 45px;
  font-weight: bold;
}
.store .info__detail {
  text-align: center;
  color: #797979;
}
.store__items {
  padding: 0 15px;
}
.store__items .list_products {
  animation-duration: 500ms !important;
}

.store__filter__search {
  margin-bottom: 18px;
}
.store__filter__search .search_wrap {
  position: relative;
  display: flex;
  border-radius: 96px;
  background: #ffffff;
}
.store__filter__search .search_wrap input {
  width: 100%;
  border: 1px solid rgba(34, 34, 34, 0.15);
  border-right: 0;
  transition-duration: 0s;
  padding-left: 18px;
  border-top-left-radius: 96px;
  border-bottom-left-radius: 96px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  box-shadow: none;
  background: transparent;
  flex: 1;
}
.store__filter__search .search_wrap input:focus {
  border: 1px solid rgba(34, 34, 34, 0.15);
  border-right: 0;
}
.store__filter__search .search_wrap button {
  border: 1px solid rgba(34, 34, 34, 0.15);
  width: 80px;
  text-align: center;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  position: relative;
  padding-right: 21px;
  padding-left: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  height: 48px;
  color: #222222;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  z-index: 10;
  transition: all 200ms ease-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 96px;
  border-bottom-right-radius: 96px;
  border-left: 0;
  text-align: center;
  line-height: 1rem;
}
.store__filter__search .search_wrap button:hover {
  background: black;
  color: white;
}
.store__filter__search .search_wrap button svg {
  width: 22px;
  height: 22px;
}
.store__filter__collection .itemWrap {
  border-right: 2px solid rgba(34, 34, 34, 0.15);
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.store__filter__collection .itemWrap .item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin: 0 12px;
  position: relative;
  font-size: 16px;
}
.store__filter__collection .itemWrap .item:after {
  width: 0%;
  height: 100%;
  border-bottom: none;
  right: 10px;
  transform: translateY(-5%);
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  transition: width 200ms cubic-bezier(0.54, 0, 0.54, 1);
}
.store__filter__collection .itemWrap .item.active:after {
  border-right: 2px solid rgba(14, 14, 14, 0.5);
}
.store__filter__collection .itemWrap .item:hover:after {
  border-right: 2px solid rgba(48, 48, 48, 0.5);
}
.store__filter__collection .itemWrap .item .quanity {
  margin-right: 30px;
}

.product__list .single__pro .product__details {
  padding-top: 10px !important;
}

.btnBuy {
  cursor: pointer;
  color: #4b4b4b;
  font-size: 14px;
  text-transform: uppercase;
  width: 175px;
  transition: 0.3s;
  border: 1px solid #d5d5d5;
  display: block;
  font-size: 18px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.btnBuy:hover {
  background: #ff4136;
  border: 1px solid #ff4136;
  color: #fff;
}

.qtybutton {
  font-size: 30px !important;
}
.qtybutton:hover {
  cursor: pointer;
}

.removeItem {
  cursor: pointer;
}

.list_products__item {
  padding-left: 4px;
  padding-right: 4px;
}

.list_products .product {
  margin-top: 0px !important;
  margin-bottom: 4px;
}
.list_products .product .product__inner {
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 8px;
}
.list_products .product:hover .product__inner a img {
  transition: 0.6s;
  transform: scale(1.5);
}
.list_products .product:hover .product__hover__info {
  opacity: 1;
  top: 50%;
}
.list_products .product .product_info {
  height: 65px;
}
.list_products .product .product_info__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 4px;
}
.list_products .product .product_info__store {
  font-size: 14px;
  line-height: 1.3em;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 75%;
}
.list_products .product .product_info__store span {
  font-size: 12px;
}
.list_products .product .product_info__add {
  cursor: pointer;
  position: absolute;
  font-size: 18px;
  right: 8px;
  bottom: 12px;
}
.list_products .product .product_info__add:hover {
  color: #ff4136;
}
.list_products .product .product_info__add a:hover span {
  color: #ff4136;
  border: 1.5px solid #ff4136;
}
.list_products .product .product_info__add span.ti-shopping-cart {
  transition: color 1s;
  transition: border 1000ms ease-out;
  border: 1.5px solid #757575;
  color: #757575;
  border-radius: 50%;
  padding: 4px;
}

.product__action li:first-child::before {
  width: 0px !important;
}

.product__hover__info {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 60%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: 0.6s;
}
.product__hover__info ul.product__action {
  width: 50px !important;
  cursor: pointer;
}

.ti-shopping-cart {
  position: relative;
}

.cartViewIcon {
  line-height: 20px !important;
  font-size: 14px !important;
  color: white !important;
  position: absolute;
  top: -10px;
  right: -11px;
  height: 20px !important;
  width: 20px;
  text-align: center;
  border-radius: 50px;
  background: #ff4136;
}

.cartHidden {
  display: none !important;
}

#pageViewCart .table-content table td {
  border-top: medium none;
  padding: 2px 3px;
  vertical-align: middle;
  font-size: 13px;
}

#quickview .modal-product {
  padding-top: 0px;
}

#addtoCard select[name=size] {
  font-size: 17px;
}

section.checkout input {
  font-size: 17px !important;
}
section.checkout .select2-selection__rendered {
  font-size: 17px !important;
}
section.checkout .section-title-3 {
  margin-bottom: 30px;
}
section.checkout .productCheckout {
  line-height: normal;
  border-top: 1px solid #ddd;
  display: flex;
}
section.checkout .productCheckout .shp__pro__thumb img {
  max-width: 60px !important;
}
section.checkout .productCheckout .shp__pro__details {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.checkout .productCheckout .shp__pro__details h2 {
  font-weight: 500;
}
section.checkout .productCheckout .shp__pro__details .shp__price {
  display: inline;
  text-align: right;
  float: right;
}

.btnFinish {
  width: 100%;
  text-align: center;
}
.btnFinish:hover {
  cursor: pointer;
}

.modal__container {
  margin: 0 auto;
}

.addtocart-btn {
  cursor: pointer;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.viewer,
.sticker__singleView {
  overflow: hidden;
  background-color: #666;
}
.viewer .wrapImg,
.sticker__singleView .wrapImg {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.viewer .wrapImg .customResize,
.sticker__singleView .wrapImg .customResize {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.errorStk {
  outline: none;
  border: 1px solid #800000;
  box-shadow: 0 0 5px 1px #800000;
}

.shopping__cart .shopping__btn {
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .container.re {
    width: 97.5% !important;
    /*this gives it the precise width to match the Bootstrap defaults*/
  }
}

.sizes_flex {
  display: flex;
  flex-wrap: wrap;
}
.sizes_flex .option_size {
  position: relative;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  justify-content: space-between;
  margin-right: 8px;
  margin-top: 8px;
  padding: 6px 8px;
  font-size: 18px;
}
.sizes_flex .option_size.active {
  color: #ff4136;
  border-color: #ff4136;
}
.sizes_flex .option_size:hover {
  color: #ff4136;
  border-color: #ff4136;
}
