/* ==========================================================================
   Lors Theme for OpenCart 3
   ========================================================================== */

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

.d-flex {
	display: flex;
}

.ai-center {
	align-items: center;
}

.jc-between {
	justify-content: space-between;
}

.jc-center {
	justify-content: center;
}

.flex-wrap {
	flex-wrap: wrap;
}

.fd-column {
	flex-direction: column;
}

.mt-auto {
	margin-top: auto;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

.text-center {
	text-align: center;
}

.mb-10 {
	margin-bottom: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-10 {
	margin-top: 10px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-7 {
	margin-left: 7px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.gap-15 {
	gap: 15px;
}

.gap-10 {
	gap: 10px;
}

.gap-5 {
	gap: 5px;
}

.gap-20 {
	gap: 20px;
}

.ml-auto {
	margin-left: auto;
}

hr {
    margin: 20px 0;
}

h1 {
	font-size: 36px;
	font-weight: normal;
	margin-bottom: 20px;
	line-height: 1;
}

a {
	text-decoration: none;
	color: #000;
}

p {
	margin-bottom: 10px;
}

h2 {
	line-height: 1.2;
}

button {
	border: 0;
	outline: 0;
	background-color: transparent;
	cursor: pointer;
}

hidden {display: none;}

body {
	font: 400 15px / 21px "Inter", "Helvetica Neue", Tahoma, Arial, Helvetica, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 10px;
}

.top-head {
	margin-bottom: 10px;
	padding: 7px 0;
	border-bottom: 1px solid #eee;
	background-color: #eee;
}

.th-link {
	font-size: 15px;
}

.th-link+.th-link {
	margin-left: 10px;
}

.header-main {
	padding: 10px 0;
}

.header-main.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

a.logo {
	display: block;
	width: 140px;
	height: 43px;
}

a.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.catalogue {
	margin-left: 50px;
	position: relative;
}

.catalogue_btn {
	background: #dc2617;
	color: #fff;
	display: inline-block;
	padding: 9px 20px;
	cursor: pointer;
	border-radius: 6px;
	font-size: 11pt;
}

.catalogue_content {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 300px;
	background-color: #dc2616;
	border-radius: 0 6px 6px 6px;
	z-index: 100;
}

.catalogue_content a {
	display: block;
	padding: 10px;
	color: #fff;
}

.catalogue_content a+a {
	border-top: 1px solid #c80000;
}

.catalogue_btn.active {
	border-radius: 6px 6px 0 0;
}

.catalogue_content a:hover {
	background-color: #c80000;
}

.search-block {
	width: 570px;
	margin-left: 20px;
	position: relative;
}

input[name="search"] {
	width: 100%;
	line-height: 30px;
	border: 0;
	outline: 0;
	border-radius: 5px;
	padding: 5px 10px;
	background-color: #eee;
	font-size: 14px;
	-webkit-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
	--webkit-apperance: none;
}

.search-block button {
	position: absolute;
	top: 6px;
	right: 10px;
}

.icon {
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: #000;
}

.icon-search {
	width: 25px;
	height: 25px;
	mask-image: url("../image/search.svg");
	background-color: #868686;
}

.facebook {
	background: linear-gradient(to right, rgb(24 119 242 / 100%) 0%, rgb(20 93 191 / 100%) 100%);
	border-color: blue;
}

.icon-facebook {
	width: 20px;
	height: 20px;
	mask-image: url("../image/facebook.svg");
	background-color: #fff;
}

.icon-phone {
	width: 20px;
	height: 20px;
	mask-image: url("../image/phone.svg");
	background-color: #666;
}

.cart-btn,
.callme,
.facebook,
.instagram,
.whatsapp {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background-color: #eee;
	border: 1px solid #eee;
	border-radius: 50px;
	position: relative;
	transition: background-color 0.2s ease-out;
}

.icon-cart {
	width: 20px;
	height: 20px;
	mask-image: url("../image/cart.svg");
	background-color: #666;
}

.cart-total {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 18px;
	height: 18px;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	font-weight: 700;
	vertical-align: middle;
	background-color: #da2923;
	color: #fff;
	border-radius: 100%;
}

.cart-btn:hover,
.callme:hover {
	background-color: #fff;
}

.cart-btn:hover .icon-cart,
.callme:hover .icon-phone {
	background-color: #da2923;
}

.info-content ul {
    padding-left: 40px;
}

.main-slider {
	position: relative;
}

.slider-wrapper {
	display: flex;
	overflow: hidden;
}

.main_slider-item {
	width: 1320px;
	height: 400px;
	flex-shrink: 0;
	transition: margin .4s ease;
}

.main_slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

button.carousel-arrow {
	width: 40px;
	height: 40px;
	background-color: #fff;
	opacity: .66;
	backdrop-filter: blur(2px);
	position: absolute;
	top: calc(50% - 10px);
	border-radius: 50%;
	cursor: pointer;
}

button.carousel-arrow.prev {
	left: 20px;
}

button.carousel-arrow.next {
	right: 20px;
}

.icon-left {
	width: 24px;
	height: 24px;
	mask-image: url("../image/left.svg");
	background-color: #dc2617;
}

.icon-right {
	width: 24px;
	height: 24px;
	mask-image: url("../image/right.svg");
	background-color: #dc2617;
}

h2 {
	font-size: 32px;
	margin-bottom: .5em;
	font-weight: 400;
}

a.lors-category-item {
	width: calc(16.667% + 1px);
	margin: 0 0 -1px -1px;
	height: 175px;
	padding: 30px;
	border: 1px solid #eee;
	transition: box-shadow 0.2s ease, color 0.2s ease;
}

.lors-category-image {
	width: 87px;
	height: 87px;
	flex-shrink: 0;
	margin-bottom: 15px;
}

.lors-category-image img {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	object-fit: contain;
}

a.show-all-cats {
	display: block;
	text-align: center;
	width: fit-content;
	margin: 40px auto 30px;
	padding: 10px 25px;
	font-size: 16px;
	border-radius: 4px;
	color: #fff;
	border: 1px solid transparent;
	background-color: #da2923;
	transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}

.show-all-cats:hover {
	background-color: #e3524d;
}

a.lors-category-item:hover .lors-category-name {
	color: #da2923;
}

a.lors-category-item:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}

.banner-item {
	width: 306px;
	height: 320px;
	position: relative;
}

.category .banner-item,
.single .banner-item {
	width: 1320px;
	height: 182px;
}

.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.breadcrumb {
	font-size: 16px;
	margin-bottom: 10px;
}

.breadcrumb a+a:before {
	content: "/";
	padding-left: 3px;
	padding-right: 6px;
}

.category-chips {
	margin-bottom: 30px;
}

a.chip {
	padding: 10px 20px;
	height: 50px;
	font-size: 16px;
	color: #111;
	background: #eee;
	border: 1px solid #eee;
	border-radius: 50px;
	transition: all 0.2s ease-out;
}

a.chip:after {
	content: "×";
	margin-left: 10px;
	transform: translateY(0px);
}

img.chip-logo {
	margin-right: 7px;
}

a.chip + a.chip {
	margin-left: 10px;
}

.bands-list {
	margin-bottom: 30px;
	gap: 10px;
	font-size: 15px;
	text-align: center;
}

a.product-category-item {
	width: 100%;
	max-width: 211px;
	background-color: #f5f5f5;
	line-height: 33px;
	border-radius: 2px;
	border: 1px solid #eee;
	transition: all 0.2s ease-out;
}

a.chip:hover,
a.product-category-item:hover {
	color: #da2923;
	background-color: #fff;
}

.catalog-item {
	width: 264px;
	position: relative;
}

.catalog-item a.product {
	display: block;
	min-height: 314px;
	background-color: #fff;
	margin: 0 0 -1px -1px;
	padding: 1em;
	border: 1px solid #eee;
	transition: box-shadow 0.2s ease, color 0.2s ease;
}

.product-model {
	position: absolute;
	z-index: 20;
	left: 0;
	top: 10px;
	background-color: #eee;
	color: #222;
	height: 20px;
	line-height: 20px;
	font-size: 13px;
	padding: 0 .5em;
	pointer-events: none;
}

.hit-badge {
	position: absolute;
	z-index: 10;
	right: 10px;
	top: 10px;
	list-style-type: none;
	padding: 2px 5px;
	background: #ffd03c;
	color: #fff;
	text-transform: uppercase;
	border-radius: 2px;
}

.product-image {
	width: 235px;
	height: 206px;
	position: relative;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-name {
	margin-top: 10px;
	line-height: normal;
	color: #999;
}

.product-price {
	display: inline-block;
	vertical-align: top;
	padding-top: .5em;
	margin-top: auto;
	font-weight: 500;
	color: #5e5e5e;
	font-size: 16px;
}

del.price-old {
	margin-right: 5px;
}

.indicator {
	position: absolute;
	display: flex;
	justify-content: space-between;
	bottom: 0;
	width: 100%;
}

.indicator span {
	flex: 1;
	height: 2px;
	background: #ccc;
	border-radius: 2px;
	transition: background 0.3s;
}

.indicator span.active {
	background: #da2923;
}

.catalog-item:hover a.product {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}

.catalog-item:hover .product-name {
	color: #222;
}

.product-controls {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 1;
	background-color: #fff;
	margin: 10px 0 -1px -1px;
	padding: 0 10px 10px;
	border: 1px solid #eee;
	border-top: none;
}

.product-controls-btn {
	background-color: #fff;
	color: #666;
	border: 1px solid;
	border-color: #ccc;
	padding: 4px 25px;
	border-radius: 2px;
	font-size: 16px;
	transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}

.product-controls-btn:hover {
	border-color: #e3524d;
	background-color: #e3524d;
	color: #fff;
}

.catalog-item:hover .product-controls {
	display: flex;
}

.category-description {
	margin: 30px 0;
	font-size: 16px;
}

.category-description ul {
	padding-left: 20px !important;
	font-family: inherit !important;
	font-size: inherit !important;
}

.product-category .tg_vk {
	margin-top: 30px;
}

.tg_vk {
	background: #eee;
	border-radius: 10px;
	padding: 10px;
	margin-top: 10px;
}

.tg_vk-ttl {
	font-size: 17px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 10px;
}

.connect_button {
	width: 220px;
	background: #fff;
	padding: 10px 15px;
	color: #000;
	text-transform: uppercase;
	font-size: 8.5pt;
	border-radius: 10px;
	text-align: center;
}

.connect_button_fb {
	background-color: #0077fe;
	color: #fff;
	background-position: 10px;
	background-size: 30px;
}

.connect_button .icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.connect_button_none {
	padding-left: 15px;
	background-color: #dc2616;
	color: #fff;
}

.lors-recommended-item {
	width: 426px;
	height: 197px;
	padding: 20px;
	background-size: cover;
	border-radius: 4px;
	cursor: pointer;
}

.lors-recommended-title {
	font-size: 19px;
	line-height: 1;
	color: #da2923;
}

.lors-recommended-subtitle {
	font-size: 19px;
	line-height: 1.5;
}

.lors-recommended-price {
	font-size: 20px;
}

.lors-price-old {
	margin-right: 10px;
}

.lors-price-new {
	color: #da2923;
}

a.lors-recommended-link {
	display: inline-block;
	padding: 0 25px;
	line-height: 40px;
	background-color: #da2923;
	color: #fff;
	border-radius: 4px;
	font-size: 17px;
	transition: all 0.3s ease;
}

a.lors-recommended-link:hover {
	background-color: #f72d29;
}

.home-description {
	font-size: 16px;
}

.home-description p {
	margin-bottom: 0;
}

.home-description ul {
	padding-left: 20px;
}

.video-block {
	background-color: #000;
	color: #fff;
	padding: 20px;
	text-align: center;
}

.video-item {
	width: 305px;
	height: 170px;
	background-size: 120%;
	background-position: center;
	border-radius: 2px;
	cursor: pointer;
}

.news-item {
	width: calc(20% - 20px);
	height: 320px;
	border: 1px solid #eee;
	transition: box-shadow .2s, color .2s;
}

.news-item-link {
	position: relative;
}

.news-item:first-child {
	width: 40%;
}

.news-item:first-child .article-content {
	width: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
}

.news-item:first-child .news-item-img {
	height: 318px;
}

.news-item-img {
	position: relative;
	height: 158px;
}

img.article-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-content {
	height: 160px;
	background-color: #fff;
	padding: 15px;
}

.article-content h3 {
	font-weight: normal;
	line-height: 1.5;
}

.news-item .article-date {
	font-size: 13px;
	color: #666;
}

.news-item:hover {
	box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
}

.news-item:hover h3 {
	color: #da2923;
}

footer {
	margin-top: 30px;
	padding: 35px 20px;
	background-color: #f9f9f9;
}

.footer-col {
	width: 25%;
	padding: 0 10px;
	text-align: left;
}

.footer-logo {
	width: 140px;
	height: 43px;
}

.footer-logo img {
	width: 100%;
	height: 100%;
}

a.footer-menu-item,
.footer-email a {
	display: block;
	color: #da2923;
	-webkit-transition: color 0.2s ease-out;
	transition: color 0.2s ease-out;
}

a.footer-menu-item+a.footer-menu-item {
	margin-top: 3px;
}

.footer-tel {
	font-size: 17px;
	line-height: normal;
	color: #111;
}

.footer-tel span {
	display: block;
	font-size: 13px;
	margin-top: 3px;
	color: #999;
}

.last-col {
	width: 18%;
	margin-left: auto;
}

.instagram {
	background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);;
}

.icon-instagram {
	width: 17px;
	height: 17px;
	mask-image: url("../image/instagram.svg");
	background-color: #fff;
}

.whatsapp {
	background: #23c136;
}

.icon-whatsapp {
	width: 17px;
	height: 17px;
	mask-image: url("../image/whatsapp.svg");
	background-color: #fff;
}

.icon-visa {
	width: 17px;
	height: 17px;
	mask-image: url("../image/visa.svg");
	background-color: #000;
}

.icon-telega {
	width: 20px;
	height: 20px;
	background-image: url("../image/telega.svg");
	background-repeat: no-repeat;
	background-color: unset;
}

.icon-play {
	width: 50px;
	height: 35px;
	background-image: url("../image/youtube.svg");
	background-repeat: no-repeat;
	background-color: unset;
}

a.footer-menu-item:hover {
	color: #000;
}

.btn-cross {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABISURBVHgBlVDbCQAgCJQmaf8lHMVRLOE+So30QHydHB6p6tzBlsnh2qEwyEkGSbBjPxD0YZZdS0p6SAXSoA5K0uVnuvawfgxfYIn7hd1MhoUAAAAASUVORK5CYII=) no-repeat 50% 50%;
	background-size: 8px;
	background-color: #dc2616;
	width: 18px;
	height: 18px;
	outline: none;
	border: 0;
	border-radius: 20px;
}

.alert.alert-success {
	background-color: #20c55d;
	color: #fff;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 6px;
}

.alert.alert-success a {
	color: #fff;
	text-decoration: underline;
}

.alert button[data-dismiss="alert"] {
	margin-left: 10px;
	color: #fff;
}

span.text-danger {
	color: red;
	vertical-align: sub;
}

.alert.alert-danger {
	background-color: #f8c4c4;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 6px;
}

.alert.alert-danger button[data-dismiss="alert"] {
	color: #000;
}

.enter-coupon {
	margin-bottom: 8px;
}

input#input-coupon {
	width: 100%;
	line-height: 40px;
	padding: 0 10px;
	font-size: 15px;
	outline: 1px solid #d0cdcd;
	border: none;
}

button#button-coupon {
	white-space: nowrap;
	background-color: #008002;
	color: #fff;
	padding: 0 10px;
	outline: 1px solid #008002;
}