.chip{--item-pl:16px;--item-pr:16px;--item-height:36px;border:0;display:flex;align-items:center;justify-content:center;background-color:var(--card_bg_active);border-radius:var(--theme-button-border-radius);height:var(--item-height);color:var(--white_text_black);padding:0;transition:color .3s ease,background-color .3s ease,border-color .3s ease;}.chip--pill-shape{border-radius:100vw;--item-pl:18px;--item-pr:18px;--item-height:34px;}.chip--rectangular-shape{--item-pl:12px;--item-pr:12px;--item-height:36px;}.chip--small{--item-pl:12px;--item-pr:12px;--item-height:30px;}.chip--large{--item-height:44px;}.chip__label{overflow:hidden;text-overflow:ellipsis;padding-left:var(--item-pl);padding-right:var(--item-pr);white-space:nowrap;}.chip:has(.chip__icon) .chip__label{padding-right:calc(var(--item-pl) - 4px);}.chip.active{color:var(--button_color_text);cursor:pointer;}.chip.active:not(.chip--toggle){cursor:default;}.chip--transparent{background-color:transparent;}.chip:where(a,button,label){cursor:pointer;}.chip:where(a,button,label):hover{background-color:var(--light,rgba(136,136,136,.05)) var(--dark,#343434);color:var(--white_text_black);}.chip--white{background-color:#fff;}@media (any-hover:hover){.chip--white:where(a,button,label):hover{background-color:hsl(var(--theme-base-color-hue),var(--theme-base-color-saturation),calc(var(--theme-base-color-lightness) + var(--theme-lightness-hover-diff)));color:#fff}}.chip--white:where(a,button,label):focus-visible{background-color:hsl(var(--theme-base-color-hue),var(--theme-base-color-saturation),calc(var(--theme-base-color-lightness) + var(--theme-lightness-hover-diff)));color:#fff;}.chip--white-hover{border:1px solid rgba(255,255,255,.32);color:#fff;}.chip--grey-border{border:1px solid rgba(34,34,40,.32);}.chip--white-hover:where(a,button,label):hover,.chip--white-hover:where(a,button,label):focus-visible{background-color:color-mix(in oklab,#e8e9ed,transparent 32%);border-color:transparent;color:#fff;}.chip--white-blur{background-color:rgba(255,255,255,.24);backdrop-filter:blur(10px);color:#fff;}.chip--white-blur:where(a,button,label):hover,.chip--white-blur:where(a,button,label):focus-visible{background-color:hsl(var(--theme-base-color-hue),var(--theme-base-color-saturation),calc(var(--theme-base-color-lightness) + var(--theme-lightness-hover-diff)));border-color:hsl(var(--theme-base-color-hue),var(--theme-base-color-saturation),calc(var(--theme-base-color-lightness) + var(--theme-lightness-hover-diff)));color:#fff;}.chip__icon{padding-right:var(--item-pr);height:18px;display:flex;align-items:center;}.chip.active:hover .chip__icon{opacity:.64;}.chip--sm{--item-pl:10px;--item-pr:10px;--item-height:29px;}.chip--max-width{max-width:400px;}@media (max-width:600px){.chip--sm-to-600{--item-pl:10px;--item-pr:10px;--item-height:30px}}
.drop-zone {
	display: block;
	min-height: 120px;
	width: 100%;
}

.drop-zone__wrapper:hover,
.drop-zone.dragover {
	background: var(--theme-base-opacity-color);
	border: 1px solid hsla(var(--dark_light-wtheme-hue),
			var(--dark_light-wtheme-saturation),
			var(--dark_light-wtheme-lightness),
			0.35);
	transition: all 0.3s ease;
}

.drop-zone__image {
	position: relative;
	overflow: hidden;
	padding-bottom: 100%;
}

.drop-zone__image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.drop-zone .drop-zone__wrapper-input {
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1;
	opacity: 0;
	cursor: pointer;
}

.drop-zone__image-close {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	z-index: 1;
}

.drop-zone__image-icon {
	background-image: url('/bitrix/templates/aspro-premier/images/svg/close-drop.svg');
	background-position: 4px 4px;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.35);
	height: 16px;
	width: 16px;
	opacity: 1;
	position: absolute;
	right: 8px;
	top: 8px;
	z-index: 1;
	box-shadow: none;
	cursor: pointer;
}

.drop-zone__image-icon:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

.drop-zone__wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	position: relative;
	padding: 28px;
	margin: -1px;
}

.drop-zone__wrapper-text {
	position: relative;
	padding-left: 19px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.drop-zone__wrapper-text:before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 9px;
	height: 18px;
	background: url(/bitrix/templates/aspro-premier/images/svg/content_icons.svg) -118px -117px no-repeat;
	background-position: var(--light, -118px -117px) var(--dark, -128px -117px);
}

.drop-zone__wrapper-text span {
	color: var(--fill_dark_light_hover);
}

.drop-zone__images {
	--repeat_colum: 5;
	display: grid;
	grid-template-columns: repeat(var(--repeat_colum), 1fr);
	gap: 16px;
	padding: 28px;
}

.drop_zone__images-input {
	opacity: 0;
	position: absolute;
	visibility: hidden;
	z-index: -1;
}

@media (max-width: 1124px) {
	.drop-zone__images {
		--repeat_colum: 4;
	}
}

@media (max-width: 768px) {
	.drop-zone__images {
		--repeat_colum: 3;
	}
}

@media (max-width: 501px) {
	.drop-zone__images {
		--repeat_colum: 2;
	}
}

@media (max-width: 320px) {
	.drop-zone__images {
		--repeat_colum: 1;
	}
}
