html {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 12px;
  }
}

body {
  font-size: 14px;
  background-color: #fff;
}

.ttm-container {
  width: 100%;
  max-width: 1600px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .ttm-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

main.ttm-container {
  padding-top: calc(145px + 1rem);
}

/* @media screen and (max-width: 767px) {
  main.ttm-container {
    padding-top: calc(120px + 1rem);
  }
} */

.mobile-header-logo {
  height: 35px;
}

/* ===================================================================================

Header

======================================================================================*/
header {
  background-color: #fff;
  padding-top: 0 !important;
}

.header__upper {
  padding-bottom: 0;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__upper .upper__item {
  color: #222;
  font-weight: 500;
  margin-left: 10px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__upper .upper__item svg {
  height: 1em;
  stroke: var(--primary-color);
}

.header__middle {
  height: 80px;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .header__middle {
    height: 120px
  }
}

.header__middle__right {
  margin-left: auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__middle .search {
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px;
}

.header__middle .search__input {
  padding-left: 40px !important;
}

.header__middle .search .search__button {
  padding: 5px 7px;
  right: auto;
  left: 5px;
}

.header__middle .search .search__button:hover {
  background-color: transparent;
}

.header__middle .search .search__button svg {
  height: 20px;
}

.header__middle .cart__menu svg,
.header__middle .middle__user svg {
  stroke: #f6841f;
}

.header__bottom {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  height: 30px;
}

.header__bottom .header__category__item > span {
  color: #222;
  font-weight: 500;
}

.header__bottom .header__category__item > span:hover {
  color: #f6841f;
}

@media screen and (min-width: 768px) {
  .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .header__bottom {
    top: 120px;
    height: auto;
  }
}

.header-logo {
  height: 33px;
}

@media screen and (max-width: 767px) {
  .header-logo {
    display: none;
  }
}

.header-user {
  margin-right: 1rem;
  width: 200px;
  position: relative;
  cursor: pointer;
  padding: 0 1rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .header-user {
    display: none;
  }
}

.header-user-title {
  line-height: 1em;
  font-weight: 500;
  font-size: 16px;
}

.header-user-subtitle {
  /*line-height: 0;*/
}

.header-user svg {
  position: absolute;
  right: 1rem;
  bottom: 0;
}

.header-user-option {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  display: none;
}

.header-user-option.header-user-option--show {
  display: block;
}

.header-user-option.header-user-option--show {
    z-index:1;
}

.header-user-option-item {
  padding: 1rem;
  font-weight: 500;
  width: 100%;
  display: block;
}

.header-user-option-item:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.header-user-option-item:not(:last-child) {
  border-radius: 1px solid #ccc;
}

.header-user-option-item.close-button {
  text-align: center;
  padding-top: 0;
  color: #ccc;
  font-size: 12px;
}

.header-user-option-item.close-button:hover {
  background-color: transparent;
  color: #efefef;
}

/* ===================================================================================

TTM Home Page

======================================================================================*/
.ttm-home-page .page-section {
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .ttm-home-page .page-section {
    margin-bottom: 1rem;
  }
}

.ttm-home-page .page-section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .ttm-home-page .page-section-title {
    margin-bottom: 1rem;
  }
}

.ttm-home-page .page-section-title svg {
  stroke: var(--primary-color);
  margin-right: 0.5rem;
}

/* ===================================================================================

TTM Item

======================================================================================*/
.ttm-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
  position: relative;
  min-height: 300px;
}

@media screen and (max-width: 1300px) {
  .ttm-items {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 991px) {
  .ttm-items {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .ttm-items {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.ttm-items-5 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .ttm-items-5 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.ttm-items .search-empty-result-section {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ===================================================================================

Card 1

======================================================================================*/
.ttm-card {
  padding: 1rem;
  border-radius: 10px;
  display: block;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.ttm-card-1 {
  border: 1px solid #ccc;
  padding-bottom: 100px;
  height: 100%;
}

.ttm-card-1:hover {
    border-color: #f6841f;
}

  .ttm-card-1 {
    padding: 0.5rem;
    /*padding-bottom: 80px;*/
    padding-bottom: 4rem;
  }


.ttm-card-1.ttm-card-1--no-border {
  border: none;
  padding: 0;
}

.ttm-card-1 .ttm-card-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}

/*.ttm-card-1 .ttm-card-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}*/

.ttm-card-1 .ttm-card-discount {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  height: 4.8rem;
  width: 4.8rem;
  border-bottom-left-radius: 100%;
  background-color: #f6841f;
  padding-top: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-top-right-radius: 10%; 
}

.ttm-card-1 .ttm-card-discount * {
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1rem;
  text-align: center;
}

.ttm-card-discount-image{
  position: relative;

}

.ttm-card-discount-image-1{
  position: relative;

}

.ttm-card-discount-image-1 .ttm-card-discount {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  height: 4.8rem;
  width: 4.8rem;
  border-bottom-left-radius: 100%;
  background-color: #f6841f;
  padding-top: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;

}

.ttm-card-discount-image-1 .ttm-card-discount * {
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1rem;
  text-align: center;
}

.ttm-card-discount-single-products .ttm-card-discount {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  height: 6rem;
  width: 6rem;
  border-bottom-left-radius: 100%;
  background-color: #f6841f;
  padding-top: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;

}

.ttm-card-discount-single-products .ttm-card-discount * {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 14px;
  text-align: center;
}

.ttm-card-discount-image .ttm-card-discount {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  height: 4rem;
  width: 4rem;
  border-bottom-left-radius: 100%;
  background-color: #f6841f;
  padding-top: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-top-right-radius: 10%;

}

.ttm-card-discount-image .ttm-card-discount * {
  color: #fff;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 0.7rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ttm-card-discount-image-1 .ttm-card-discount {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  height: 4.8rem;
  width: 4.8rem;
  border-bottom-left-radius: 100%;
  background-color: #f6841f;
  padding-top: 7px;
  padding-right: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;

}

.ttm-card-discount-image-1 .ttm-card-discount * {
  color: #fff;
  font-weight: 700;
  line-height: 1rem;
}

}

@media screen and (max-width: 490px) {
.ttm-card-discount-image .ttm-card-discount {
    color: #fff;
    font-weight: 100;
    font-size: 10px;
    position: absolute;
    top: 0;
    right: 0;
    height: 3rem;
    width: 3rem;
    border-bottom-left-radius: 100%;
    background-color: #f6841f;
    padding-top: 2px;
    padding-right: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;

  }
  .ttm-card-discount-image .ttm-card-discount * {
    color: #fff;
    font-weight: 700;
    line-height: 0.7rem;
    font-size: 0.6rem;
  }
}


.ttm-card-1 .ttm-card .ttm-quantity {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.ttm-card-1 .ttm-card-button-container {
  -webkit-box-flex: o;
      -ms-flex-positive: o;
          flex-grow: o;
}

.ttm-card-1 .ttm-card-button {
  display: block;
  width: 100%;
  padding: 7px;
  color: #f6841f;
  border: 1px solid #f6841f;
  background-color: transparent;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}

.ttm-card-1 .ttm-card-button svg {
  height: 1em;
  stroke: #f6841f;
}

.ttm-card-2 {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ttm-card-2 .ttm-card-image {
  margin-right: 20px;
}

.ttm-card-2 .ttm-card-image img {
  height: 110px;
  width: 110px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .ttm-card-2 .ttm-card-image img {
    height: 90px;
    width: 90px;
  }
}

.ttm-card-2 .ttm-card-body {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%;
  padding-bottom: 40px;
  position: relative;
}

.ttm-card-2 .ttm-card-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.ttm-card-image {
  border-radius: 5px;
}

.ttm-card-price {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ttm-card-price-dsrt {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  /*display: flex;*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .ttm-section-highlight .ttm-card-price-dsrt {
    font-weight: 500;
    color: var(--primary-color);
    font-size: .7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    /*display: flex;*/
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.ttm-card-price-old-featured-dsrt s {
  color: #ccc;
  font-weight: inherit;
}

@media screen and (max-width: 768px) {
  .ttm-card-2 .ttm-card-price-old-featured-dsrt{
    font-size: .7rem;
  }
  .ttm-card-1 .ttm-card-price-old-featured-dsrt{
    text-align: left;
    font-size: 1.0rem;
  }
}

.ttm-items .ttm-card-price {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position:absolute; 
  bottom:65px;
     
}

#productsTable .ttm-card-price {
  position:absolute; 
  bottom:50px;
}

@media screen and (min-width: 768px) {
  #productsTable .ttm-card-price-dsrt {
    position:absolute; 
    bottom:70px;
  }

  .ttm-card-price-old-dsrt-nodsc s {
    color: #ccc;
    font-weight: inherit;
    position:absolute; 
    bottom:53px;
  }
}

.ttm-card-price-old s {
  color: #ccc;
  font-weight: inherit;
}

.ttm-card-price-old-dsrt s {
  color: #ccc;
  font-weight: inherit;
}

.ttm-card-price-old-dsrt-nodsc s {
  color: #ccc;
  font-weight: inherit;
}



@media screen and (max-width: 768px) {
  #productsTable .ttm-card-price-dsrt {
    position:absolute; 
    bottom:60px;
  }

  .ttm-card-price-old-dsrt s{
     height: 10px; 
    
  }
  .ttm-card-price-old-dsrt {
    line-height: 0.9em;
  }

  .ttm-card-price-old-dsrt-nodsc s{
     height: 10px; 
     position:absolute; 
     bottom:50px;
  }
  .ttm-card-price-old-dsrt-nodsc {
    line-height: 0.9em;
  }
}

/* .ttm-card-price-old{
    position:absolute; 
    bottom:50px;
} */

.ttm-card-price-old-featured s {
  color: #ccc;
  font-weight: inherit;
}

.ttm-card-price-old-featured{
    /*position:absolute; 
    bottom:50px;*/

}

@media screen and (max-width: 767px) {
  .ttm-card-price-old-featured{
    /*position:absolute; 
    bottom:50px;*/
    text-align: left;
  }
}

.ttm-card-footer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.ttm-item-padding {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

@media screen and (max-width: 767px) {
  .ttm-card-footer {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }
}

/* ===================================================================================

Promos

======================================================================================*/
.ttm-promos-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr 1fr;
      grid-template-columns: 1fr 2fr 1fr;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

@media screen and (max-width: 767px) {
  .ttm-promos-1 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.ttm-promos-1 .ttm-promos-section--2 {
  display: -ms-grid;
  display: grid;
  row-gap: 1rem;
}

.ttm-promos-1 .ttm-promos-section--2 img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ttm-promos-1 .ttm-promos-section--2 {
    row-gap: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media screen and (max-width: 767px) {
  .ttm-promos-1 .ttm-promos-item {
    margin-bottom: 1rem;
    display: block;
  }
}

.ttm-promos-1 .ttm-promos-item img {
  width: 100%;
  height: 100%;
}

/* ===================================================================================

Section Highlight

======================================================================================*/
.ttm-section-highlight {
  padding: 1.5rem;
  border-radius: 10px;
  border: 4px solid var(--primary-color);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.5fr;
      grid-template-columns: 1fr 4.5fr;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight {
    padding: 1rem;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.ttm-section-highlight .ttm-card {
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight .ttm-card {
    margin-bottom: 1rem;
  }
}

.ttm-section-highlight-top {
  text-align: center;
  border-right: 1px solid #eee;
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight-top {
      text-align: left;
      border-right: none;
    }
}

@media screen and (min-width: 991px) {
  .ttm-section-highlight-top {
    padding-right: 1rem;
  }
}

.ttm-section-highlight-top .ttm-card {
  border-color: transparent;
  padding: 0;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight-top .ttm-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .ttm-section-highlight-top .ttm-card-image {
    width: 110px;
    height: 110px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight-top .ttm-card-image {
    width: 140px;
    height: 140px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .ttm-section-highlight-top .ttm-card-body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 1rem;
  }
}

.ttm-section-highlight-top .ttm-card-title {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight-top .ttm-card-title {
    text-align: left;
  }
}

.ttm-section-highlight-top .ttm-card-price {
  text-align: center;
  display: block;
}

@media screen and (max-width: 991px) {
  .ttm-section-highlight-top .ttm-card-price {
    text-align: left;
  }
}

.ttm-section-highlight-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
}

.ttm-section-highlight-col .ttm-card {
  border-color: transparent;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .ttm-section-highlight-col .ttm-card {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .ttm-section-highlight-col .ttm-card-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ttm-section-highlight-col .ttm-card-2 .ttm-card-body {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .ttm-section-highlight-col .ttm-card-image {
    margin-right: 20px;
  }
}

.ttm-section-highlight-col .ttm-card-image img {
  height: 140px;
  width: 140px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .ttm-section-highlight-col .ttm-card-image img {
    width: 100%;
    height: 80px;
  }
}

@media screen and (max-width: 1360px) {
  .ttm-section-highlight-col .ttm-card-title {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .ttm-section-highlight-col .ttm-card-title {
    font-size: 10px;
  }
}

/* ===================================================================================

Banner

======================================================================================*/
.carousel-item img {
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
}

/* ===================================================================================

TTM Quantity

======================================================================================*/
.ttm-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  width: 100%;
  padding: 5px;
  height: 30px;
  margin-bottom: 3px;
}

.ttm-quantity-button {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.ttm-quantity-button button {
  background-color: transparent;
  border-radius: 3px;
  outline: none;
  border: none;
}

.ttm-quantity-button button svg {
  height: 1em;
  width: 1em;
}

.ttm-quantity-field {
  outline: none;
  background-color: transparent;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  width: 100%;
}

.ttm-cart-icon {
  position: relative;
}

@media screen and (max-width: 767px) {
  .ttm-cart-icon {
    right: 10px;
  }
}

.ttm-cart-icon .cart__notif__number {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/* ===================================================================================

Single Product

======================================================================================*/
.single-product-title {
  font-weight: 500;
}

.single-product-detail-title {
  font-weight: 500;
}

.single-product-price {
  font-weight: 700;
}

.single-product-summary .summary-content {
  font-weight: 500;
}

/* ===================================================================================

Breadcrumb

======================================================================================*/
.breadcrumb {
  border: 1px solid var(--primary-color);
  background-color: #f6efd1;
}

.breadcrumb-item.active {
  color: #f6841f;
  font-weight: 500;
}

/* ===================================================================================

Cart

======================================================================================*/
.cart {
  background-color: #fff;
}

.cart__title {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cart__footer {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
}

.product-card {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
}

.detail-card {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
}

.checkout-page {
  padding-top: 0;
}

.checkout-total {
  font-weight: 500;
}

.checkout-total .highlight > span {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .checkout-footer,
  .cartpage-footer {
    z-index: 1000;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top: 1px solid #eee;
  }
}

.detail-input {
  background-color: rgba(0, 0, 0, 0.03) !important;
}

.select2-container--default .select2-selection--single {
  background-color: rgba(0, 0, 0, 0.03) !important;
}

.cartpage-total {
  font-weight: 500;
}

.cartpage-highlight {
  font-weight: 700;
}

/* ===================================================================================

Button

======================================================================================*/
.portal-primary-btn,
.btn-primary {
  background-color: #222 !important;
  color: var(--primary-color) !important;
  border: 2px solid #222 !important;
  font-weight: 500 !important;
  padding: 10px 30px;
}

.btn-secondary {
  font-weight: 500 !important;
}

.form-control {
  border-radius: 5px;
}

footer {
  border: 1px solid #ccc;
}

footer * {
  font-weight: 500;
}

.soldout {
  color: #ccc;
  font-weight: 500;
  font-size: 1.1rem;
}

.header__top {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
  font-weight: 500 !important;
}

@media screen and (max-width: 767px) {
  .header__top {
    font-size: 12px;
  }
}

.announcement-container {
  background-color: #222;
}

.announcement-banner {
  background-color: transparent;
  border: none;
  padding: 5px;
  height: 30px;
}

@media screen and (max-width: 767px) {
  .header__category__item i {
    color: var(--primary-color);
  }
}

@media screen and (max-width: 767px) {
  .padding-mobile-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-mobile-logo {
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .header-mobile-logo {
    display: none;
  }
}

.header-mobile-logo a img {
  width: 250px;
}

/* ===================================================================================

Store

======================================================================================*/
.store-container {
  display: block;
}

.single-product-summary .store {
  margin-bottom: 1rem;
  font-size: 1rem !important;
}

.single-product-summary .store:hover .store-name {
  color: #f6841f;
}

.single-product-summary .store-name {
  font-size: 1rem !important;
  font-weight: 500;
}

.single-product-summary .store-image {
  height: 2rem;
  margin-left: 5px;
  margin-right: 1px;
}

.single-product-summary .store-button {
  font-size: 1rem;
  color: #f6841f;
}

@media screen and (min-width: 767px) {
  .single-product-summary .store-button {
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .single-product-summary .store-button {
    font-size: 0.8rem;
    padding: 3px 7px;
    border: 1px solid #f6841f;
    border-radius: 5px;
  }
}

.shop-page-banner-2 {
  width: 100%;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 26.5%;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 20px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .shop-page-banner-2 {
    padding-bottom: 50%;
  }
}

.ttm-item-row {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.ttm-item-padding {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
/*# sourceMappingURL=style.css.map */
.ttm-card-1 .ttm-card-title {
    font-weight: 500;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 3rem;
    font-size: 1rem;
}

.ttm-card-1 .ttm-card-price-container {
    position: absolute;
    bottom: 50;
    font-weight: 500;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.1rem;
}

.ttm-card-price-container span1 {
   color: var(--primary-color);
   font-weight: 500;
   font-size: 1.3rem;
}

@media screen and (max-width: 335px) {
  
  .ttm-card-price-container span1{
     font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px)  and (max-width: 800px) {
  .ttm-card-price-container span1 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 992px)  and (max-width: 1100px) {
  .ttm-card-price-container span1 {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1100px)  and (max-width: 1150px) {
  .ttm-card-price-container span1 {
    font-size: 1rem;
  }
}

.ttm-card-price-container span1 span{
   font-size: 0.7rem;
}

@media screen and (min-width: 1400px) {
  
  .ttm-card-price-container span1 .short-word{
     display: none;
  }
}

@media screen and (max-width: 1399px) {
  
  .ttm-card-price-container span1 .long-word{
     display: none;
  }
}


.ttm-card-price-container span2 s{
   color: #ccc !important;
   font-weight: inherit !important;
   font-size: 0.8rem;
}

.ttm-card-price-container span2 span{
   font-size: 0.7rem;
}

.ttm-card-price-container span3 s{
  color: #ccc !important;
  font-weight: inherit !important;
  font-size: 0.8rem;
}

.ttm-card-price-container span4 {
    color: #ccc;
    font-weight: 500;
    font-size: 1.1rem;
}


.ttm-card-1 .ttm-card-price-container-featured {
    font-weight: 500;
    overflow: hidden;
    text-overflow: clip;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.1rem;
}

.ttm-card-2 .ttm-card-price-container-featured {
    font-weight: 500;
    overflow: hidden;
    text-overflow: clip;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.1rem;
}

.ttm-card-price-container-featured span1 {
   color: var(--primary-color);
   font-weight: 500;
   font-size: 1rem;
}

.ttm-card-price-container-featured span1 span{
   font-size: 0.7rem;
}

@media screen and (min-width: 1400px) {
  
  .ttm-card-price-container-featured span1 .short-word{
     display: none;
  }
}

@media screen and (max-width: 1399px) {
  
  .ttm-card-price-container-featured span1 .long-word{
     display: none;
  }
}

@media screen and (max-width: 499px) {
  .ttm-card-price-container-featured span1 .short-word{
     display: none;
  }
  .ttm-card-price-container-featured span1 .long-word{
     display: none;
  }

  .ttm-card-price-container-featured span2 .badge{
   display: none;
  }
}

@media screen and (max-width: 499px) {
  .ttm-card-price-container-featured span1 .short-word{
     display: none;
  }
  .ttm-card-price-container-featured span1 .long-word{
     display: none;
  }

  .ttm-card-price-container-featured span2 .badge{
   display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .ttm-card-price-container-featured span1 .short-word{
     display: none;
  }
  .ttm-card-price-container-featured span1 .long-word{
     display: none;
  }

  .ttm-card-price-container-featured span2 .badge{
   display: none;
  }
}


.ttm-card-price-container-featured span2 s{
   color: #ccc !important;
   font-weight: inherit !important;
   font-size: 0.8rem;
}

.ttm-card-price-container-featured span2 span{
   font-size: 0.7rem;
}

.ttm-card-price-container-featured span3 s{
  color: #ccc !important;
  font-weight: inherit !important;
  font-size: 0.8rem;
}

.ttm-card-price-container-featured span4 {
    color: #ccc;
    font-weight: 500;
    font-size: 1.1rem;
}

.ttm-card-1 .sold_out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 5.75rem;
    background-color: rgba(0,0,0,.7);
    font-size: 1.25rem;
    color: #fff;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    text-transform: capitalize;            
}

.img_container{
  position: relative;
}

.ttm-card-price-container span1-search .badge {
   font-size: 0.6rem;
}

.ttm-card-price-container span1-search {
  color: var(--primary-color);
  font-weight: 500;
   font-size: 1.1rem;
}


@media screen and (min-width: 768px) and (max-width: 800px) {
  .ttm-card-price-container span1-search .badge {
    font-size: 0.6rem;
  }

  
  .ttm-card-price-container span1-search {
    color: var(--primary-color);
     font-weight: 500;
     font-size: 0.8rem;
  }


}

@media screen and (min-width: 800px) and (max-width: 1200px) {
  .ttm-card-price-container span1-search .badge {
    font-size: 0.6rem;
  }

  
  .ttm-card-price-container span1-search {
    color: var(--primary-color);
     font-weight: 500;
     font-size: 0.9rem;
  }


}

.tooltip:hover:after {
    left: 50%;
    transform: translateX(-50%);
    /* other styles ... */
}

.tooltip:hover:before {
    left: 50%;
    transform: translateX(-50%);
    /* other styles ... */
}

.tooltip-inner {
    max-width: 25rem;
    width: 25rem; 
    text-align: left;
}

.ttm-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 600;
}

.ttm-popup_overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
}

.ttm-popup_container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow: visible;
    max-height: 100%;
    max-width: 100%;
}

.ttm-close-btn {
  position: absolute;
  top: -20px;
  right: -5px;
  font-size: 32px;
  cursor: pointer;
  padding-top: 10px;
  padding-right: 10px;
}

.ttm-close-btn svg {
  color: #fdba1c;
}

