button,
hr,
input {
	overflow: visible
}

progress,
sub,
sup {
	vertical-align: baseline
}

[type=checkbox],
[type=radio],
legend {
	box-sizing: border-box;
	padding: 0
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

details,
main {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	box-sizing: content-box;
	height: 0
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
select {
	text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: ButtonText dotted 1px
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	color: inherit;
	display: table;
	max-width: 100%;
	white-space: normal
}

textarea {
	overflow: auto
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

summary {
	display: list-item
}

[hidden],
template {
	display: none
}

/* Variables */
:root {
	--main-color: #F2682A;
	--accent-color: #A1A1A1;
	--white-color: #FFFFFF;
	--black-color: #000000;
}

@font-face {
	font-family: 'Avenir';
	src: url(../fonts/Avenir_LT_W01_55_Roman.woff2) format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Avenir';
	src: url(../fonts/Avenir_LT_W01_95_Black.woff2) format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

.clear {
	clear: both;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

html,
body {
	height: 100%;
}

html {
	font-size: 16px;
}

body {
	font-family: 'Avenir', sans-serif;
	font-size: 16px;
	font-weight: 400;
	background-color: #FFFFFF;
	background-color: var(--white-color);
	color: #000000;
	color: var(--black-color);
}

.no-style {
	list-style: none;
	margin: 0;
	padding: 0;
}

.custom-checkbox {
	display: block;
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	font-size: 0.875rem;
	line-height: 1.3em;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom-checkbox .checkmark {
	position: absolute;
	top: -1px;
	left: 0;
	height: 18px;
	width: 18px;
	background: #FFFFFF;
	background: var(--white-color);
	border: 1px solid #A1A1A1;
	border: 1px solid var(--accent-color);
	border-radius: 2px;
}

.custom-checkbox .checkmark:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 1px;
	width: 5px;
	height: 12px;
	border: solid #FFFFFF;
	border: solid var(--white-color);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	display: none;
}

.custom-checkbox input:checked~.checkmark {
	background: #F2682A;
	background: var(--main-color);
	border: 1px solid #F2682A;
	border: 1px solid var(--main-color);
}

.custom-checkbox input:checked~.checkmark:after {
	display: block;
}

.app-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 32;
}

.app-wrapper + hr {
	display: none;
}

.app-wrapper .app-container {
	max-width: 1300px;
	width: calc(100% - 100px);
	margin: 0 auto;
}

@media (max-width: 1200px) {
	.app-wrapper .app-container {
		width: calc(100% - 60px);
	}
}

@media (max-width: 1025px) {
	.app-wrapper .app-container {
		width: calc(100% - 40px);
	}
}

.app-wrapper .app-filters {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 70px;
	z-index: 99;
}

.app-wrapper .app-filters .app-filter-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1025px) {
	.app-wrapper .app-filters .app-filter-row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

.app-wrapper .app-filters .app-filter {
	position: relative;
	cursor: pointer;
}

.app-wrapper .app-filters .app-filter-boxes {
	display: flex;
	gap: 36px;
}

@media (max-width: 1025px) {
	.app-wrapper .app-filters .app-filter-boxes {
		gap: 20px;
		margin-bottom: 20px;
	}
}

.app-wrapper .app-filters .app-filter .app-filter-button {
	border: 1px solid #A1A1A1;
	border: 1px solid var(--accent-color);
	display: inline-flex;
	align-items: center;
	border-radius: 36px;
	background: #EEE;
}

.app-wrapper .app-filters .app-filter .app-filter-button .app-filter-button-label {
	font-size: 0.875rem;
	line-height: 1em;
	font-weight: 400;
	color: #4C4C4C;
	padding: 10px;
	border-right: 1px solid #A1A1A1;
	border-right: 1px solid var(--accent-color);
}

@media (max-width: 1025px) {
	.app-wrapper .app-filters .app-filter .app-filter-button .app-filter-button-label .on-mobile {
		display: none;
	}
}

.app-wrapper .app-filters .app-filter .app-filter-button .app-filter-list {
	padding: 10px 30px 10px 10px;
	font-size: 0.875rem;
	line-height: 1em;
	font-weight: 900;
	color: #000;
	width: 80px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	position: relative;
	top: 1px;
}

.app-wrapper .app-filters .app-filter .app-filter-button .app-filter-list:after {
	content: '';
	position: absolute;
	top: 15px;
	right: 10px;
	width: 10px;
	height: 5px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.500006L5 4.50001L9.5 0.500006' stroke='%234C4C4C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-size: 10px 5px;
	background-repeat: no-repeat;
}

.app-wrapper .app-filters .app-filter-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 236px;
	background: #FFFFFF;
	background: var(--white-color);
	border: 1px solid #A1A1A1;
	border: 1px solid var(--accent-color);
	border-radius: 10px;
	padding: 20px;
	z-index: 99;
	display: none;
}

.app-wrapper .app-filters .app-filter-dropdown.active {
	display: block;
}

.app-wrapper .app-filters .app-filter-dropdown .app-filter-dropdown-title {
	font-size: 0.875rem;
	line-height: 1.44em;
	font-weight: 900;
	margin-bottom: 10px;
}

.app-wrapper .app-filters .app-filter-dropdown ul li {
	display: block;
	margin-bottom: 12px;
}

.app-wrapper .app-filters .app-filter-dropdown ul li:last-child {
	margin-bottom: 0;
}

.app-wrapper .app-filters .clear-app-filters {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	line-height: 1em;
	font-weight: 400;
	color: #4C4C4C;
	border: 0 none;
	padding: 0;
	background: transparent;
	transition: all .2s linear;
	cursor: pointer;
}

.app-wrapper .app-filters .clear-app-filters svg {
	display: block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
}

.app-wrapper .app-filters .clear-app-filters:focus {
	outline: 0;
}

.app-wrapper .app-filters .clear-app-filters:hover {
	opacity: .88;
}

.app-wrapper .app-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 420px;
	height: 100vh;
	padding-left: 20px;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateX(400px);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 101;
}

@media (max-width: 1025px) {
	.app-wrapper .app-sidebar {
		width: 400px;
		transform: translateX(380px);
	}
}

@media (max-width: 767px) {
	.app-wrapper .app-sidebar {
		width: 360px;
		transform: translateX(340px);
	}
}

.app-wrapper .app-sidebar .app-sidebar-wrapper {
	width: 100%;
	min-height: 100%;
	background: #FFFFFF;
	background: var(--white-color);
	box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
	padding: 50px 40px 60px;
}

@media (max-width: 1025px) {
	.app-wrapper .app-sidebar .app-sidebar-wrapper {
		padding: 50px 30px 60px;
	}
}

@media (max-width: 767px) {
	.app-wrapper .app-sidebar .app-sidebar-wrapper {
		padding: 50px 20px;
	}
}

.app-wrapper .app-sidebar.active {
	transform: translateX(0);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-wrapper .app-sidebar .close-sidebar-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 20px;
	height: 45px;
	display: none;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 0 none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	z-index: 101;
	cursor: pointer;
}

.app-wrapper .app-sidebar .close-sidebar-arrow.active {
	display: flex;
}

.app-wrapper .app-sidebar .close-sidebar-arrow:focus {
	outline: 0;
}

.app-wrapper .app-sidebar .close-sidebar-arrow svg {
	display: block;
	margin: 0 auto;
	width: 6px;
	height: 11px;
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.app-wrapper .app-sidebar .close-sidebar-arrow.rotated svg {
	transform: rotate(0);
}

.app-wrapper .app-sidebar h1 {
	font-size: 1.375rem;
	line-height: 1.28em;
	font-weight: 900;
	margin: 0 0 8px;
}

.app-wrapper .app-sidebar h2 {
	font-size: 0.75rem;
	line-height: 1.44em;
	font-weight: 900;
	text-transform: uppercase;
	color: #F2682A;
	color: var(--main-color);
	margin: 0 0 8px;
}

.app-wrapper .app-sidebar p {
	font-size: 0.875rem;
	line-height: 1.67em;
	margin: 0 0 20px;
}

.app-wrapper .app-sidebar .app-sidebar-inner {
	position: relative;
}

.app-wrapper .app-sidebar .app-sidebar-inner .close-sidebar {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: #FFFFFF;
	background: var(--white-color);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	border: 0 none;
	border-radius: 50%;
	position: absolute;
	top: 4px;
	right: -17px;
	z-index: 78;
	cursor: pointer;
}

.app-wrapper .app-sidebar .app-sidebar-inner .close-sidebar svg {
	display: block;
	width: 16px;
	height: 16px;
}

.app-wrapper .app-sidebar .app-sidebar-inner .close-sidebar:focus {
	outline: 0;
}

.app-wrapper .app-sidebar .app-sidebar-slider {
	margin-bottom: 48px;
	position: relative;
	z-index: 32;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-slide {
	border-radius: 10px;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: 216px;
	object-fit: cover;
	object-position: center center;
	border-radius: 10px;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-prev,
.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-next {
	width: 32px;
	height: 32px;
	background: #FFFFFF;
	background: var(--white-color);
	z-index: 64;
	border-radius: 50%;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-prev:after,
.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-next:after {
	display: none;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-prev svg,
.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-next svg {
	display: block;
	width: 12px;
	height: 12px;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-prev {
	left: -16px;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-button-next {
	right: -16px;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-pagination {
	bottom: -25px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-pagination .swiper-pagination-bullet {
	display: block;
	width: 30px;
	height: 3px;
	background: #A1A1A1;
	background: var(--accent-color);
	border-radius: 0;
	margin: 0 4px;
}

.app-wrapper .app-sidebar .app-sidebar-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #F2682A;
	background: var(--main-color);
}

.app-wrapper .app-sidebar .entry ul {
	padding-left: 6px;
	margin-bottom: 24px;
}

.app-wrapper .app-sidebar .entry ul li {
	display: block;
	margin-bottom: 5px;
	position: relative;
	font-size: 0.875rem;
	line-height: 1.67em;
	font-weight: 400;
	padding-left: 18px;
}

.app-wrapper .app-sidebar .entry ul li:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #F2682A;
	background-color: var(--main-color);
}

.app-wrapper .app-sidebar .app-sidebar-products .app-sidebar-products-category {
	margin-bottom: 24px;
}

.app-wrapper .app-sidebar .app-sidebar-products .app-sidebar-products-category:last-child {
	margin-bottom: 0;
}

.app-wrapper .app-sidebar .app-sidebar-products li {
	display: block;
	margin-bottom: 5px;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap {
	width: 100%;
	display: flex;
	align-items: center;
	border: 1px solid #EEE;
	border-radius: 10px;
	padding: 10px;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-image {
	width: 79px;
	flex-shrink: 0;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-image img {
	display: block;
	width: 100%;
	border-radius: 5px;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content {
	padding-left: 10px;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content h3 {
	font-size: 0.875rem;
	line-height: 1.4em;
	font-weight: 900;
	color: #000000;
	color: var(--black-color);
	margin: 0 0 5px;
	transition: all .2s linear;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc {
	font-size: 0.8125rem;
	line-height: 1.4em;
	font-weight: 400;
	color: #A1A1A1;
	display: flex;
	flex-wrap: wrap;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc span {
	color: #F2682A;
	color: var(--main-color);
	display: flex;
	align-items: center;
	gap: 7px;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc-brand-link,
.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc-product-link {
	color: var(--accent-color);
	text-decoration: none;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc-product-link {
	color: var(--main-color);
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc-brand-link:hover,
.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc-product-link:hover {
	text-decoration: underline;
}

.app-wrapper .app-sidebar .app-sidebar-products li .list-wrap .list-content .list-content-desc span svg {
	display: block;
	width: 10px;
	height: 10px;
}

@media (max-width: 1025px) {
	.app-tabs .app-tabs-header .app-container {
		width: 100%;
		padding-left: 20px;
		position: relative;
		z-index: 33;
	}
}

@media (max-width: 1025px) {
	.app-tabs .app-tabs-header .app-container:after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 50px;
		height: 100%;
		background: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, .01));
		z-index: 34;
	}
}

.app-tabs .app-tabs-header ul {
	display: flex;
	border-bottom: 1px solid #EEE;
	position: relative;
	z-index: 33;
}

@media (max-width: 1025px) {
	.app-tabs .app-tabs-header ul {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
	}
}

.app-tabs .app-tabs-header ul li {
	display: inline-block;
}

.app-tabs .app-tabs-header ul button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	font-size: 1.125rem;
	line-height: 1em;
	font-weight: 900;
	color: #000000;
	color: var(--black-color);
	border: 0 none;
	background: transparent;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all .2s linear;
}

@media (max-width: 1199px) {
	.app-tabs .app-tabs-header ul button {
		font-size: 1rem;
	}
}

.app-tabs .app-tabs-header ul button:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #F2682A;
	background-color: var(--main-color);
	transition: all .2s linear;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}

.app-tabs .app-tabs-header ul button:focus {
	outline: 0;
}

.app-tabs .app-tabs-header ul button:hover {
	color: #F2682A;
	color: var(--main-color);
}

.app-tabs .app-tabs-header ul button.active {
	color: #F2682A;
	color: var(--main-color);
}

.app-tabs .app-tabs-header ul button.active:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}

.app-tabs .app-tabs-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 120px 0 0;
}

@media (max-width: 1025px) {
	.app-tabs .app-tabs-content {
		margin: 160px 0 0;
	}
}

.app-tabs .app-tabs-content .app-tabs-box {
	width: 100%;
	height: 100%;
}

.app-tabs .app-tabs-content .app-tabs-box-container {
	max-width: 2560px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

@media (max-width: 1025px) {
	.app-tabs .app-tabs-content .app-tabs-box-container {
		/*height: calc(100svh - 160px);
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		scroll-behavior: smooth;
		touch-action: initial !important;*/

		height: calc(100svh - 160px);
		overflow-x: auto;
		overflow-y: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
		scroll-behavior: smooth;
		touch-action: pan-x pan-y;
	}
}

.app-tabs-box-container-inner {
	position: relative;
	display: inline-block;
}


@media (min-width: 1026px) {
	.app-tabs-box-container-inner {
		height: 100%;
	}
}


.app-tabs .app-tabs-content .app-tabs-box-container .app-tabs-box-marker {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 1;
}

.app-tabs .app-tabs-content .app-tabs-box-container .app-tabs-box-marker .marker-svg {
	display: block;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
}

.app-tabs .app-tabs-content .app-tabs-box-container .app-tabs-box-marker.click-animation .marker-svg {
	transform: scale(1.1);
}

.app-tabs .app-tabs-content .app-tabs-box-container .app-tabs-box-marker.click-animation:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid transparent;
	z-index: -1;
	animation: pulse-marker-before-once 1.2s ease-out infinite;
}

.app-tabs .app-tabs-content .app-tabs-box-container .app-tabs-box-marker.click-animation:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 4px solid transparent;
	z-index: -1;
	animation: pulse-marker-after-once 1.2s ease-out infinite;
}

@keyframes pulse-marker-before-once {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
		border-color: transparent;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.8;
		border-color: #F2682A;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.4);
		opacity: 0;
		border-color: transparent;
	}
}

@keyframes pulse-marker-after-once {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
		border-color: transparent;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.6);
		opacity: 0.5;
		border-color: #F2682A;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.8);
		opacity: 0;
		border-color: transparent;
	}
}

.app-tabs .app-tabs-content .app-tabs-box img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.app-tabs .app-tabs-content .app-tabs-box .app-tabs-box-container.auto-fit img {
    max-height: calc(100vh - 120px);
}

@media (min-width: 1026px) {
    
	.app-tabs .app-tabs-content .app-tabs-box .app-tabs-box-container.auto-fit {
		/* height: calc(100vh - 120px); */
	}

	.app-tabs .app-tabs-content .app-tabs-box .app-tabs-box-container.auto-fit img {
		transform-origin: center center;
		object-fit: contain;
		max-width: 100%;
/*		max-height: 100%;*/ 
	}
}

@media (max-width: 1025px) {
	.app-tabs .app-tabs-content .app-tabs-box img {
		transform-origin: center center;
		object-fit: contain;
		max-width: 100%;
		max-height: 100%;
		display: block;
		margin: 0 auto;
	}
}

.app-wrapper .app-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index: 999;
}

.app-wrapper .app-loading-circle {
	position: absolute;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
}

.app-wrapper .app-loading-circle svg {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto;
}

.app-zoom-buttons {
	position: fixed;
	bottom: 100px;
	left: calc((100% - 1300px) / 2);
	width: 100%;
	z-index: 99;
}

@media (max-width: 1400px) {
	.app-zoom-buttons {
		left: 50px;
	}
}

@media (max-width: 1200px) {
	.app-zoom-buttons {
		left: 30px;
	}
}

@media (max-width: 1025px) {
	.app-zoom-buttons {
		bottom: 60px;
		width: 80px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

.app-zoom-buttons .app-zoom-buttons-inner {
	border: 1px solid var(--main-color);
	width: 80px;
	border-radius: 36px;
	display: flex;
	align-items: center;
}

@media (max-width: 1025px) {
	.app-zoom-buttons .app-zoom-buttons-inner {
		justify-content: center;
		margin: 0 auto;
	}
}

.app-zoom-buttons button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 32px;
	line-height: 1em;
	background: #FEF0EA;
	border: 0 none;
	padding: 0;
}

.app-zoom-buttons button svg {
	display: block;
	width: 16px;
	height: 16px;
	margin: 0 auto;
}

.app-zoom-buttons button.app-zoom-in {
	border-right: 1px solid var(--main-color);
	border-top-left-radius: 36px;
	border-bottom-left-radius: 36px;
}

.app-zoom-buttons button.app-zoom-out {
	border-top-right-radius: 36px;
	border-bottom-right-radius: 36px;
}

.app-zoom-buttons button:focus {
	outline: 0;
}

