.choose-images-container {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.choose-image-box input {
	display: none;
}

.choose-image-box label {
	display: flex;
	/* width: 120px; */
	height: 120px;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
}

.choose-image-box label::before {
	content: "1";
	display: block;
	position: absolute;
	width: 22px;
	height: 22px;
	right: 0;
	top: 0;
	background-color: #000;
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: 50%;
	opacity: 0;
	transition: opacity .33s;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' width='512' height='512'%3E%3Cpath d='M.3 14c-.2-.2-.3-.5-.3-.7s.1-.5.3-.7l1.4-1.4c.4-.4 1-.4 1.4 0l.1.1 5.5 5.9c.2.2.5.2.7 0L22.8 3.3h.1c.4-.4 1-.4 1.4 0l1.4 1.4c.4.4.4 1 0 1.4l-16 16.6c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3L.5 14.3.3 14z' fill='%23FFF'/%3E%3C/svg%3E")

}

.choose-image-box input:checked + label::before {
	opacity: 1;
}

.product-card__series {
	margin-top: 50px;
}
.product-card__series-header {
	cursor: pointer;
}
.product-card__series-title {
    font-size: 32px;
    font-weight: 700;
}
.product-card__series-icon {
    width: 30px;
    display: inline-block;
    position: relative;
    top: 5px;
    transition: all .5s;
}
.product-card__series-icon.active {
	transform: rotate(180deg);
	top: 0;
}
.product-card__series-body {
	display: none;
	padding-top:15px;
}
.product-docs__item-icon {
	padding-right: 3px;
}

.header__nav,
.header__links,
.header__btns,
.burger,
.notification,
.footer__links,
.footer__brands,
.footer__top{
	display: none!important;
}