.t-primary {
  color: var(--primary-hex) !important;
}

.t-secondary {
  color: var(--secondary-hex)!important;
}

.t-tertiary {
  color: var(--tertiary-hex)!important;
}

.t-light {
  color: var(--light-hex)!important;
}

.t-dark {
  color: var(--dark-hex)!important;
}

.all-center {
	align-items: center !important;
	text-align: center !important;
	margin: auto !important;
}

.all-left {
	align-items: left !important;
	text-align: left !important;
	margin-left: 2rem !important;
}

.all-right {
	align-items: right !important;
	text-align: right !important;
	margin-right: 2rem !important;
}

.rounded {
	border-radius: 0.25rem
}

.w-100 {
	width: 100% !important
}

.w-88 {
	width: 88% !important
}

.m-0 {
	margin: 0 !important
}

.mx-0 {
	margin-right: 0 !important;
	margin-left: 0 !important
}

.mx-1 {
	margin-top: 2rem !important;
	margin-bottom: 2rem !important
}

.my-1 {
	margin-left: 2rem !important;
	margin-right: 2rem !important
}

.p-0 {
	padding: 0 !important
}

.py-1 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important
}

.px-1 {
	padding-left: 2rem !important;
	padding-right: 2rem !important
}

.sc-50 {
	scale: 0.5
}

.no-radius {
	border-radius: 0 !important
}

.d-inline {
	display: inline !important
}

.d-inline-block {
	display: inline-block !important
}

.d-block {
	display: block !important
}

.d-grid {
	display: grid !important
}

.d-table {
	display: table !important
}

.d-table-row {
	display: table-row !important
}

.d-table-cell {
	display: table-cell !important
}

.d-flex {
	display: flex !important
}

.d-inline-flex {
	display: inline-flex !important
}

.d-none {
	display: none !important
}

.shadow {
	box-shadow: 0 .5rem 1dvw var(--dark-20-rgba) !important
}

.shadow-sm {
	box-shadow: 0 .125rem .25rem var(--dark-20-rgba) !important
}

.shadow-lg {
	box-shadow: 0 1dvw 3rem var(--dark-20-rgba) !important
}

.shadow-none {
	box-shadow: none !important
}

.position-static {
	position: static !important
}

.position-relative {
	position: relative !important
}

.position-absolute {
	position: absolute !important
}

.position-fixed {
	position: fixed !important
}

.position-sticky {
	position: sticky !important
}

/* Blocks */

.blocks_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}

.block {
  background-color: var(--light-20-rgba);
  cursor: pointer;
}

.product_block {
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
}

.product_block .product_header {
  position: absolute;
  text-align: center;
  top: 0.12rem;
  left: 0.5rem;
  width: calc(100% - 1dvw);
  height: 55px;
  z-index: 1;
  transform: translateY(-100%);
  transition: transform 0.43s cubic-bezier(0.32, 1.259, 0.375, 1.15) !important;
}

.product_block .product_img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: flex;
  background-size: contain;
  background-position: 50% 80%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
}

.product_block .product_info {
  text-align: center;
  padding: 1dvw 0.5rem 0 0.5rem;
}

.product_block .product_info .product_title {
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  display: list-item;
}

.product_info .product_title fade {
  float: left;
  margin-left: 0.8rem;
  text-align: left;
  padding: calc(0.25rem - 0.4dvw);
  color: var(--tertiary-80-rgba);
  background: var(--light-80-rgba);
  width: 25%;
  font-size: 75%;
  text-transform: uppercase;
}

.product_info .product_title strong {
  float: right;
  margin-right: 0.8rem;
}

.product_block .product_info .product_subtitle {
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--secondary-hex);
  margin: 0;
  margin-bottom: 0.25rem;
}

.product_block .product_info .product_price {
  text-transform: uppercase;
  font-weight: 700;
  font-size: small;
  margin: 0.5rem;
  background-color: var(--darkish-20-rgba);
  padding: 0.25rem !important;
}

.product_price {
  display: block;
}

.product_block .product_info .product_price span {
  text-decoration: line-through;
  color: #fc7070;
}

.product_block:hover {
  background-color: var(--light-hex);
  color: var(--primary-hex);
}

.product_block:hover .product_header {
  transform: translateY(0);
}

.product_block:hover .product_header .product_tag {
  background-color: var(--light-hex);
  color: var(--primary-hex);
}

.product_block:hover .product_img {
  transform: scale(1.03);
}

.new_arrival {
  width: 31%;
  overflow: hidden;
  position: relative;
  height: 400px;
  text-align: center;
  transition: all 0.4s ease;
}

.new_arrival .na_subtitle {
  text-transform: uppercase;
  margin-top: 40px;
  font-size: 11px;
  margin-bottom: 10px;
}

.new_arrival .na_title {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 51px;
  margin-bottom: 20px;
}

.new_arrival .na_img {
  width: 100%;
  height: 330px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
}

.new_arrival:hover .na_img {
  transform: scale(1.04);
}

.news_block {
  width: 65%;
  overflow: hidden;
  position: relative;
  height: 400px;
  transition: all 0.4s ease;
}

.news_block .news_img {
  position: relative;
  width: 100%;
  height: 275px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
}

.news_block .news_img .news_tag {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -300%);
  text-align: center;
  color: var(--light-hex);
  text-transform: uppercase;

  background-color: #83d78c;
  padding: 4px 15px;
  border-radius: 0.8em;
  transition: transform 0.43s cubic-bezier(0.32, 1.259, 0.375, 1.15);
}

.news_block .news_content {
  height: 125px;
  text-align: center;
}

.news_block .news_content .news_title {
  font-size: 16px;

  text-transform: uppercase;
  margin: 20px 0 0 0;
}

.news_block .news_content .news_subtitle {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--origin-hex);
  margin: 9px 0 10px 0;
}

.news_block .news_content .news_price {
  font-size: 16px;

  font-weight: bold;
  text-transform: uppercase;
}

.news_block:hover .news_img {
  transform: scale(1.04);
}

.news_block:hover .news_img .news_tag {
  transform: translate(-50%, 0);
}

.news_block_lat {
  width: 65%;
  overflow: hidden;
  position: relative;
  height: 400px;
  transition: all 0.4s ease;
}

.news_block_lat .news_img {
  position: relative;
  width: 48%;
  float: left;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
}

.news_block_lat .news_content {
  position: relative;
  float: left;
  width: 52%;
  overflow: hidden;
}

.news_block_lat .news_content .nbl_tag {
  display: inline-block;
  color: var(--light-hex);
  text-transform: uppercase;

  background-color: #0089cf;
  padding: 4px 15px;
  border-radius: 0.8em;
  margin: 30px 0 50px 15px;
}

.news_block_lat .news_content .nbl_title {
  font-size: 16px;

  text-transform: uppercase;
  margin: 30px 0 0 15px;
}

.news_block_lat .news_content .nbl_subtitle {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--secondary-hex);
  margin: 5px 0 10px 15px;
}

.news_block_lat .news_content .nbl_desc {
  font-size: 12px;
  color: var(--secondary-hex);
  letter-spacing: 1px;
  margin-left: 15px;
  width: 90%;
}

.news_block_lat .news_content .nbl_price {
  font-size: 16px;

  font-weight: bold;
  text-transform: uppercase;
  margin: 30px 0 0 15px;
}

.news_block_lat:hover .news_img {
  transform: scale(1.04);
}

.news_block_lat:hover .news_img .news_tag {
  transform: translate(-50%, 0);
}

@media (max-width: 730px) {

  .product_block,
  .new_arrival,
  .news_block,
  .news_block_lat {
    width: 100%;
  }

  .product_block .product_img {
    height: 125 !important;
    margin: 0 auto 2rem !important;
  }

  .news_block_lat .news_img {
    width: 100%;
    float: none;
    height: 200px;
  }

  .news_block_lat .news_content {
    float: none;
    width: 100%;
    overflow: visible;
  }

  .news_block_lat .news_content .nbl_tag {
    width: 60px;
    position: relative;
    top: -10px;
    z-index: 2;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .news_block_lat .news_content .nbl_title {
    margin: 0 25px;
  }

  .news_block_lat .news_content .nbl_subtitle,
  .news_block_lat .news_content .nbl_desc,
  .news_block_lat .news_content .nbl_price {
    margin-left: 25px;
  }
}

/* Table tbl */

/* .tbl {
	 width: 100%;
	 max-width: 100%;
	 margin-bottom: 2rem;
	 border-collapse: collapse;
   text-transform: capitalize;
}
 .tbl > thead > tr, .tbl > tbody > tr, .tbl > tfoot > tr {
	 -webkit-transition: all 0.25s ease;
	 -o-transition: all 0.25s ease;
	 transition: all 0.25s ease;
}
 .tbl > thead > tr > th, .tbl > thead > tr > td, .tbl > tbody > tr > th, .tbl > tbody > tr > td, .tbl > tfoot > tr > th, .tbl > tfoot > tr > td {
	 text-align: center;
	 vertical-align: top;
	 border-top: 0;
	 padding: 0.5rem;
	 -webkit-transition: all 0.25s ease;
	 -o-transition: all 0.25s ease;
	 transition: all 0.25s ease;
}
.tbl > thead > tr > th > button {
	 font-weight: 900;
	 color: var(--light-hex);
	 vertical-align: top;
	 text-align: center;
	 padding: 1dvw;
	 font-size: large;
	 text-transform: lowercase;
	 font-variant: small-caps;
	 border-bottom: 1px solid rgba(0,0,0,0.12);
}

.tbl > tbody > tr > td > .button {
  display: inline-block;
  margin: 0 0.12rem;
}

.tbl > tbody > tr > td {
  vertical-align: middle;
  border-bottom: 1px solid var(--primary-hex);
  padding: 1dvw;
}

 .tbl > caption + thead > tr:first-child > th, .tbl > caption + thead > tr:first-child > td, .tbl > colgroup + thead > tr:first-child > th, .tbl > colgroup + thead > tr:first-child > td, .tbl > thead:first-child > tr:first-child > th, .tbl > thead:first-child > tr:first-child > td {
	 border-top: 0;
}
 .tbl > tbody + tbody {
	 border-top: 1px solid rgba(0,0,0,0.12);
}
 .tbl .tbl {
	 background-color: var(--light-hex);
}
 .tbl .no-border {
	 border: 0;
}
 .tbl-condensed > thead > tr > th, .tbl-condensed > thead > tr > td, .tbl-condensed > tbody > tr > th, .tbl-condensed > tbody > tr > td, .tbl-condensed > tfoot > tr > th, .tbl-condensed > tfoot > tr > td {
	 margin: 0.8rem;
}
 .tbl-bordered {
	 border: 0;
}
 .tbl-bordered > thead > tr > th, .tbl-bordered > thead > tr > td, .tbl-bordered > tbody > tr > th, .tbl-bordered > tbody > tr > td, .tbl-bordered > tfoot > tr > th, .tbl-bordered > tfoot > tr > td {
	 border: 0;
	 border-bottom: 1px solid #e0e0e0;
}
 .tbl-bordered > thead > tr > th, .tbl-bordered > thead > tr > td {
	 border-bottom: 1px solid var(--primary-hex);
}
 .tbl-striped > tbody > tr:nth-child(odd) > td, .tbl-striped > tbody > tr:nth-child(odd) > th {
	 background-color: #f5f5f5;
}
 .tbl-hover > tbody > tr:hover > td, .tbl-hover > tbody > tr:hover > th {
	 background-color: rgba(0,0,0,0.12);
}
 @media screen and (max-width: 768px) {
	 .tbl-responsive-vertical > .tbl {
		 margin-bottom: 0;
		 background-color: transparent;
	}
	 .tbl-responsive-vertical > .tbl > thead, .tbl-responsive-vertical > .tbl > tfoot {
		 display: none;
	}
	 .tbl-responsive-vertical > .tbl > tbody {
		 display: grid;
	}
  
	 .tbl-responsive-vertical > .tbl > tbody > tr {
		 display: inline-block;
		 outline: 0.12rem solid var(--dark-20-rgba);
		 border-radius: 0.25rem;
     padding-bottom: 1dvw;
		 margin-bottom: 1dvw;
		 text-align: center;
	}
	 .tbl-responsive-vertical > .tbl > tbody > tr > td {
		 background-color: var(--light-hex);
		 display: contents;
		 vertical-align: top;
		 text-align: center;
		 font-size: small;
		 max-width: 33%;
		 padding: 0.25rem;
	}
	 .tbl-responsive-vertical > .tbl > tbody > tr > td[data-title]:before {
		 content: attr(data-title);
		 text-align: center;
		 font-weight: 900;
		 text-transform: uppercase;
		 display: block;
		 padding: 0.5rem;
		 margin: 1dvw;
		 color: var(--dark-hex);
		 background: var(--primary-20-rgba);
	}

	 .tbl-responsive-vertical.shadow-z-1 {
		 -webkit-box-shadow: none;
		 -moz-box-shadow: none;
		 box-shadow: none;
	}
	 .tbl-responsive-vertical.shadow-z-1 > .tbl > tbody > tr {
		 border: none;
	}
	 .tbl-responsive-vertical > .tbl-bordered {
		 border: 0;
	}
	 .tbl-responsive-vertical > .tbl-bordered > tbody > tr > td {
		 border: 0;
		 border-bottom: 1px solid #e0e0e0;
	}
	 .tbl-responsive-vertical > .tbl-bordered > tbody > tr > td:last-child {
		 border-bottom: 0;
	}
	 .tbl-responsive-vertical > .tbl-striped > tbody > tr > td, .tbl-responsive-vertical > .tbl-striped > tbody > tr:nth-child(odd) {
		 background-color: var(--light-hex);
	}
	 .tbl-responsive-vertical > .tbl-striped > tbody > tr > td:nth-child(odd) {
		 background-color: #f5f5f5;
	}
	 .tbl-responsive-vertical > .tbl-hover > tbody > tr:hover > td, .tbl-responsive-vertical > .tbl-hover > tbody > tr:hover {
		 background-color: var(--light-hex);
	}
	 .tbl-responsive-vertical > .tbl-hover > tbody > tr > td:hover {
		 background-color: rgba(0,0,0,0.12);
	}
} */

table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: transparent;
  padding: .35em;
}

table tr:nth-child(even) {
  background: var(--light-40-rgba);
}

table th,
table td {
  padding: 0.25rem;
  text-align: center;
}

table th {
  text-transform: uppercase;
}

table th button {
  font-weight: 900;
  color: var(--light-hex);
  vertical-align: top;
  text-align: center;
  padding: 1dvw;
  font-size: large;
  text-transform: lowercase;
  font-variant: small-caps;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

table td .button {
  display: inline-block;
  margin: 0 0.12rem;
}

@media screen and (max-width: 768px) {

  table caption {
    font-size: 1.3em;
  }

  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    border-bottom: 0.12rem solid var(--dark-20-rgba);
    display: inline-grid;
    width: 100%;
    margin-bottom: 1dvw !important;
  }

  table td {
    border-bottom: 0.12rem solid var(--dark-20-rgba);
    display: block;
    width: 100%;
    text-align: right !important;
  }

  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    width: auto;
    background: var(--primary-20-rgba);
    padding: 0.5rem;
    opacity: 0.4;
    text-align: left;
  }

  table td:last-child {
    border-bottom: 0;
  }
}