.popup-item__gallery {
	border-radius: 10px;
	max-width: 512px;
	box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
	padding: 24px;
	box-sizing: border-box;
	margin-block: 30px;
	font-family: var(--font-family-base);
}
.popup-item__gallery .popup-close {
	background-color: #fff;
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.popup-item__gallery .popup-close svg {
	pointer-events: none;
	opacity: .7;
	transition: var(--animation);
}
.popup-item__gallery .popup-close:hover svg {
	opacity: 1;
}
.popup-copy__title {
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: #062035;
	margin-bottom: 16px;
	width: calc(100% - 25px);
}
.popup-copy__content-base img[class*=wp-image-] {
	width: calc(50% - 3px);
}
.popup-copy__gallery {
	margin-bottom: 24px;
}
.popup-copy__gallery-big {
	position: relative;
	margin-bottom: 16px;
}
.popup-copy__gallery-big:before {
	content: '';
	position: relative;
	display: block;
	padding-top: 56%;
}
.popup-copy__gallery-big img {
	transition: var(--animation);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 10px;
}
.popup-copy__gallery-list {
	display: flex;
	grid-gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
}
.popup-copy__gallery-list img {
	cursor: pointer;
	width: 104px;
	height: 58px;
	object-fit: cover;
	object-position: center;
	border-radius: 4px;
	flex-shrink: 0;
}
.popup-copy__props {
	display: flex;
	background-color: #f8f6f3;
	border-radius: 10px;
	padding: 16px;
	box-sizing: border-box;
	grid-gap: 16px;
	margin-bottom: 24px;
}
.popup-copy__prop {
	flex-basis: 25%;
}
.popup-copy__prop-name {
	font-size: 14px;
	line-height: 1.42;
	font-weight: 400;
	color: #9a7764;
	margin-bottom: 4px;
}
.popup-copy__prop-value {
	font-size: 16px;
	line-height: 1.42;
	font-weight: 400;
	color: #062035;
}
.popup-copy__detail {
	margin-bottom: 24px;
}
.popup-copy__detail-title {
	font-family: var(--font-family-second);
	font-weight: 500;
	font-size: 18px;
	color: #062035;
	line-height: 1.55;
	margin-bottom: 12px;
}
.popup-copy__videos-title {
	font-weight: 500;
	font-size: 18px;
	color: #062035;
	line-height: 1.55;
	margin-bottom: 12px;	
}
.popup-copy__videos-list {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 16px;
}
.popup-copy__video-item {
	flex-basis: calc(50% - 8px);
	position: relative;
}
.popup-copy__video-item:before {
	content: '';
	position: relative;
	display: block;
	padding-top: 56%;
	z-index:  1;
}
.popup-copy__videos-list video {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 10px;
}

@media (max-width: 500px) {
	.popup-item__gallery {
		padding: 20px;
		border-radius: 0px;
		margin-block: 0;
	}
	.popup-copy__title {
		font-size: 16px;
		margin-bottom: 14px;
	}
	.popup-copy__gallery {
		margin-bottom: 20px;
	}
	.popup-copy__gallery-big {
		margin-bottom: 12px;
	}
	.popup-copy__gallery-list {
		grid-gap: 6px;
	}
	.popup-copy__gallery-list img {
		width: 80px;
		height: 45px;
	}
	.popup-copy__props {
		padding: 12px;
		grid-gap: 10px;
		margin-bottom: 20px;
	}
	.popup-copy__prop-name {
		font-size: 12px;
		margin-bottom: 2px;
	}
	.popup-copy__prop-value {
		font-size: 12px;
	}
	.popup-copy__detail {
		margin-bottom: 20px;
	}
	.popup-copy__detail-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.popup-copy__videos-title {
		font-size: 16px;
		margin-bottom: 10px;	
	}
	.popup-copy__videos-list {
		grid-gap: 10px;
	}
	.popup-copy__video-item {
		flex-basis: 100%;
	}
}