/*!/wp-content/themes/teslachat/assets/css/products.css*/
.catalog-h1 {
  width: calc(100% - 96px);
}
.catalog-banner {
  position: relative;
}

.products {
  margin: 150px 0;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  columns: 3;
  gap: 20px;
}
.products-item {
  width: calc((100% - 40px) / 3);
  position: relative;
  margin: 20px 0;
}
.products-item-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem;
  color: #fafafa;
  margin: 32px 0 20px;
  line-height: 1;
  display: inline-block;
  width: 100%;
  height: 40px;
  overflow: hidden;
}
.products-item-price {
  font-size: 1.25rem;
  margin: 0 0 38px;
}
.products-item-price-old {
  text-decoration: line-through;
}
.products-item-price-new {
  color: #c7e954;
}
.products-item-btn {
  padding: 16px 20px;
  border-radius: 15px;
}
.products-item-more {
  color: #fafafa;
  border: 1px solid #39494c;
  display: inline-block;
}
.products-item-more:hover {
  text-decoration: none;
  border-color: #c7e954;
}
.products-item-to-cart {
  padding: 16px 20px;
  background: #c7e954;
  color: #111111;
  margin: 0 16px;
}
.products-item-to-cart:hover {
  text-decoration: underline;
}
.products-item-discount {
  background: #c7e954;
  padding: 4px 10px;
  border-radius: 15px;
  color: #39494c;
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.25rem;
  z-index: 1;
}
.products-more {
  color: #e8e8e8;
  border-bottom: 1px dashed #e8e8e8;
  padding: 0;
}
.products-more-wrap {
  text-align: center;
  margin: 60px 0;
}

@media (min-width: 1025px) {
  .products-filter-label {
    color: #e8e8e8;
    font-weight: 300;
    position: relative;
    background: #39494c;
    border-radius: 20px;
    padding: 23px 68px 23px 24px;
  }
  .products-filter-label:hover {
    cursor: pointer;
  }
  .products-filter-label:after {
    position: absolute;
    top: 50%;
    right: 24px;
    margin-top: -5px;
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fafafa;
  }
  .products-filter-item {
    position: relative;
    padding: 0 0 0 38px;
    margin: 16px 0;
    line-height: 1;
  }
  .products-filter-item:hover {
    cursor: pointer;
  }
  .products-filter-item:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -11px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
  }
  .products-filter-item.is-active:after {
    content: "";
    width: 9px;
    height: 4px;
    border-left: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: rotate(-45deg);
    margin: -4px 0 0;
  }
  .products-filter-close {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 10px;
    margin: -6px 0 0 0;
  }
  .products-filter-close:before, .products-filter-close:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: #fafafa;
    transform: rotate(45deg);
    top: 4px;
  }
  .products-filter-close:after {
    transform: rotate(-45deg);
  }
  .products-filter-close:hover {
    cursor: pointer;
  }
  .products-filter-items {
    background: #252525;
    padding: 8px 24px;
    border-radius: 20px;
    color: #e8e8e8;
    max-width: 300px;
    display: none;
    margin: 6px 0;
    position: absolute;
    z-index: 2;
  }
  .products-filter-items.is-active {
    display: block;
  }
  .products-filters {
    display: flex;
    gap: 16px;
    justify-self: center;
    margin: 0 0 20px;
  }
  .products-filters-active {
    justify-self: center;
    margin: 20px 0 60px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .products-filters-active-item {
    color: #fafafa;
    padding: 6px 10px 6px 35px;
    position: relative;
    background: #252525;
    display: inline-block;
    border-radius: 15px;
  }
  .products-filters-clear {
    color: #e8e8e8;
    border-bottom: 1px dashed #e8e8e8;
    padding: 0;
    display: none;
    height: 20px;
    margin: 4px 0;
  }
  .products-filters-clear.is-active {
    display: inline-block;
  }
  .products-filters-clear:hover {
    cursor: pointer;
  }
}
@media (max-width: 1024px) {
  .catalog-h1 {
    width: calc(100% - 30px);
  }
  .products {
    margin: 100px 0;
    padding: 0 16px;
  }
  .products-filters-mobile {
    padding: 16px;
    background: #39494c;
    border-radius: 10px;
    width: 100%;
    color: #fafafa;
    margin: 0 0 24px;
    font-size: 0.875rem;
  }
  .products-filters-mobile-arrow {
    background: #c7e954;
    border-radius: 15px;
    width: 42px;
    height: 25px;
    display: inline-block;
    padding: 6px;
    margin: 0 0 0 8px;
  }
  .products-filters-active {
    margin: 16px 0;
  }
  .products-list {
    columns: 2;
    gap: 8px;
  }
  .products-item {
    width: calc((100% - 8px) / 2);
    margin: 5px 0;
  }
  .products-item-title {
    font-size: 0.875rem;
    font-family: "TT Firs Neue", sans-serif;
    line-height: 1.1;
    margin: 12px 0 35px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.2em;
  }
  .products-item-image-img {
    border-radius: 7px;
  }
  .products-item-to-cart {
    background: transparent;
    padding: 0;
    margin: 0;
    float: right;
  }
  .products-item-price {
    font-size: 0.75rem;
    font-family: "Unbounded", sans-serif;
    color: #e8e8e8;
    width: calc(100% - 25px);
    float: left;
    margin: 0;
    line-height: 21px;
  }
  .products-item-price-new, .products-item-price-old {
    width: 100%;
    display: inline-block;
    line-height: 1.1;
    position: relative;
    top: -21px;
  }
  .products-item-price-discount {
    line-height: 1.3;
    position: relative;
    top: -12px;
  }
  .products-item-price-no {
    color: #8c8c8c;
    font-size: 0.625rem;
    font-family: "TT Firs Neue", sans-serif;
  }
  .products-item-discount {
    font-size: 0.625rem;
    top: 6px;
    left: 6px;
    line-height: 1;
    padding: 6px 8px;
  }
  .products-more-wrap {
    margin: 40px 0;
  }
  .products-filters {
    background: #252525;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 10;
    left: -100vw;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
    visibility: hidden;
  }
  .products-filters.is-active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .products-filters-label {
    font-family: "Unbounded", sans-serif;
    font-size: 0.75rem;
    color: #fafafa;
    padding: 19px 16px;
    text-align: left;
  }
  .products-filters-label-svg {
    margin: 0 5px 0 0;
  }
  .products-filters-clear {
    color: #e8e8e8;
    border-bottom: 1px dashed #e8e8e8;
    padding: 0;
    font-size: 0.875rem;
    display: none;
    margin: 40px auto;
    width: 110px;
  }
  .products-filters-clear.is-active {
    display: block;
  }
  .products-filter {
    border-top: 1px solid #525252;
  }
  .products-filter:last-of-type {
    border-bottom: 1px solid #525252;
  }
  .products-filter-label {
    color: #fafafa;
    font-size: 0.875rem;
    padding: 16px;
    width: 100%;
    text-align: left;
  }
  .products-filter-label-qty {
    float: right;
  }
  .products-filter-label-qty-svg {
    margin: 0 0 0 5px;
  }
  .products-filter-items {
    background: #252525;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 1;
    left: -100vw;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
    visibility: hidden;
    padding: 24px;
  }
  .products-filter-items.is-active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .products-filter-items-label {
    padding: 19px 0;
  }
  .products-filter-item {
    position: relative;
    padding: 0 16px 0 38px;
    margin: 16px 0;
    color: #e8e8e8;
    font-size: 0.875rem;
  }
  .products-filter-item:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    margin: -11px 0 0;
  }
  .products-filter-item.is-active:after {
    content: "";
    width: 9px;
    height: 4px;
    border-left: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: rotate(-45deg);
    margin: -4px 0 0;
  }
  .products-fav {
    padding: 0;
    margin: -4px 0 100px;
  }
  .products-fav-slider {
    display: flex;
    flex-direction: column;
  }
  .products-fav-slider .glide__track {
    padding: 0;
  }
  .products-fav-list {
    flex-wrap: nowrap;
    columns: auto;
    gap: 0;
    margin: 0 0 10px;
  }
}
/*# Current File Updated by Asset CleanUp - Original Source Map: products.css.map */
/*!/wp-content/themes/teslachat/assets/css/product.css*/
.header {
  position: relative;
  height: 68px;
  width: 100%;
}

.product {
  margin: 120px 0 100px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
.product-title {
  position: relative;
  top: 0;
  left: 0;
  font-size: 2.25rem;
  color: #fafafa;
  line-height: 1.4;
  letter-spacing: -0.02em;
  width: 100%;
  margin: -10px 0 0;
}
.product-description {
  width: 33%;
}
.product-price {
  margin: 25px 0 40px;
  font-size: 1.5rem;
}
.product-param {
  font-weight: 300;
  line-height: 1.1;
  margin: 2px 0 3px;
}
.product-param-label {
  font-weight: 400;
  color: #e8e8e8;
}
.product-button {
  padding: 20px 45px;
}
.product-tabs {
  width: 100%;
  margin: 100px 0;
}
.product-tab-label {
  font-family: "Unbounded", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  background: #b7b7b7;
  color: #111111;
  border: 1px solid #b7b7b7;
  border-radius: 10px 10px 0 0;
  padding: 12px 20px;
  display: inline-block;
}
.product-tab-label:hover {
  cursor: pointer;
  border-color: #525252;
  background: transparent;
  color: #e8e8e8;
}
.product-tab-label.is-active {
  color: #e8e8e8;
  background: #39494c;
  border-color: #39494c;
}
.product-tab-text {
  background: #39494c;
  padding: 40px 65px;
  border-radius: 0 20px 20px 20px;
  display: none;
  color: #d6d6d6;
}
.product-tab-text.is-active {
  display: block;
}
.product-tab-text strong {
  font-weight: 500;
  color: #fff;
}
.product-tab-text p {
  margin: 15px 0;
}
.product-tab-text ul {
  margin: 0 0 0 20px;
}
.product-discount {
  left: 20%;
}

@media (min-width: 1025px) {
  .product-main-image {
    width: 74.4%;
  }
  .product-images {
    width: 67%;
    display: flex;
    flex-direction: row;
    gap: 2.2%;
    justify-content: space-between;
  }
  .product-images-slider {
    width: 23.4%;
  }
  .product-images-track {
    overflow-y: auto !important;
    scrollbar-width: none;
  }
  .product-images-track:-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .product-images-track-scroll {
    display: block;
    width: 100%;
    padding: 5px;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 25px;
    position: absolute;
    z-index: 1;
    opacity: 0.85;
    color: #c7e954;
  }
  .product-images-track-scroll.hidden {
    display: none;
  }
  .product-images-track-scroll:hover {
    background: rgba(57, 73, 76, 0.25);
  }
  .product-images-track-scroll-top {
    top: -1px;
  }
  .product-images-track-scroll-bottom {
    bottom: -1px;
  }
  .product-gallery {
    width: 211px;
    float: left;
    gap: 4.1%;
    display: flex;
    flex-direction: column;
  }
  .product-gallery-image:hover {
    cursor: pointer;
  }
  .product-gallery-image.is-active {
    position: relative;
  }
  .product-gallery-image.is-active:after {
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 0;
    left: 0;
    border: 1px solid #c7e954;
    border-radius: 20px;
  }
  .product-image-active {
    stroke: #c7e954;
    stroke-width: 1;
    fill: none;
  }
}
@media (max-width: 1024px) {
  .product {
    flex-direction: column;
    margin: 32px 0 100px;
    padding: 0 16px;
  }
  .product-images {
    width: 100%;
  }
  .product-images-track {
    padding: 0;
  }
  .product-images-slider {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .product-gallery-image-img {
    width: calc(100vw - 32px);
    height: calc(85vw - 32px);
    border-radius: 10px;
  }
  .product-title {
    font-size: 0.75rem;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 15px 0 0;
  }
  .product-price {
    margin: 20px 0;
  }
  .product-description {
    width: 100%;
  }
  .product-param {
    margin: -3px 0;
  }
  .product-param-label {
    font-size: 0.875rem;
  }
  .product-param-value {
    font-size: 0.625rem;
    font-weight: 500;
  }
  .product-button {
    margin: 32px 0 0;
    padding: 20px;
    align-items: center;
  }
  .product-tabs {
    padding: 0 16px;
  }
  .product-tabs-wrap {
    display: flex;
  }
  .product-tab-label {
    color: #fafafa;
    font-size: 0.625rem;
    padding: 13px 10px;
    background: transparent;
    border-radius: 7px 7px 0 0;
    font-family: "TT Firs Neue", sans-serif;
    flex: 1;
    text-align: center;
    margin: 0 -1px 0 0;
    border-color: #525252;
  }
  .product-tab-label:last-child {
    margin: 0;
  }
  .product-tab-label.is-active {
    z-index: -1;
    color: #fafafa;
  }
  .product-tab-text {
    border-radius: 0;
    padding: 16px;
    color: #b7b7b7;
    font-weight: 300;
    line-height: 1.1;
  }
  .product-tab-text p {
    margin: 14px 0;
  }
  .product-tab-text p:first-child {
    margin: 0 0 14px 0;
  }
  .product-discount {
    left: 22px;
  }
}
@media (min-width: 471px) and (max-width: 1024px) {
  .product-button {
    width: 290px;
  }
}
/*# Current File Updated by Asset CleanUp - Original Source Map: product.css.map */
/*!/wp-content/plugins/contact-form-7/includes/css/styles.css*/
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}