.product-configurator-wrap{
	/*display:none;*/
}
.product-configurator {
	display:flex;
	gap:50px;
}
.product-configurator .pc-preview{
	width: 100%;
	max-width: 700px;
}
.product-configurator .pc-preview img {
	width: 100%;
	height: auto;
}
.product-configurator .pc-config{
	width: 100%;
}
.product-configurator .pc-config .configurator-title{
	color:#000000;
	font-family: "Work Sans", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 26px;
	text-transform:uppercase;
	margin-bottom: 16px;
}
.product-configurator .pc-config .pc-desc{
	color: #000000;
	font-family: "Work Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 32px;
}
.pc-config .pc-price-box {
	background: #F8F8F8;
	padding: 16px;
	margin-bottom: 32px;
}
.pc-price-box div {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}
.pc-price-box div.subtotal {
	border-top: 1px solid #CFCFCF;
	padding-top: 16px;
}
.pc-price-box div span{
	color: #000000;
	font-family: "Work Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}
.pc-price-box .total span{
	color: #000000;
	font-family: "Work Sans", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
}
.pc-block-title{
	color: #000000;
	font-family: "Work Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	margin-bottom: 16px;
}
.pc-field {
	margin-bottom: 24px;
}
.pc-label{
	color: #000000;
	font-family: "Work Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	display: block;
	margin-bottom: 16px;
}
.pc-field select,
.pc-field input {
	width: 100%;
	padding: 8px;
}
.pc-sizes {
	border-bottom: 1px solid #CFCFCF;
	margin-bottom: 24px;
	padding-bottom: 16px;
}
.pc-input-block{
	display: flex;
	gap: 16px;
}
.pc-measure {
	color:#000000;
	font-family: "Work Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: underline;
	margin-top: 16px;
	display: inline-block;
	&:hover{
		text-decoration: none;
	}
}
.pc-col{
	width: calc(100% / 3);
}
.pc-input{
	color:#000000;
	font-family: "Work Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #FFFFFF;
	padding: 11px 16px;
	width: 100%;
}
/*Dropdown*/
.pc-custom-select{
	background-color: #F8F8F8;
	border: 1px solid #DFDFDF;
	position: relative;
	cursor: pointer;
}
.pc-custom-select .selected-option {
	color: #020211;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	padding: 11px 16px 11px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pc-custom-select .selected-option:after{
	content: '';
	background-image: url('../img/icon_arrow-down.svg');
	background-size: 10px 6px;
	background-position: center;
	background-repeat: no-repeat;
	width: 24px;
	height:24px;
	margin-left: 5px;
	transition: transform 0.3s;
}
.pc-custom-select .options-list{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #F8F8F8;
	border: 1px solid #DFDFDF;
	border-radius: 4px;
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 10;
	display: none;
}
.pc-custom-select .options-list .option{
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	padding: 7px 8px 7px 8px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}
.pc-custom-select .options-list .option .icon{
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: center;
	margin-right: 8px;
	width: 24px;
	height: 24px;
	border-radius: 50px;
}
.pc-custom-select .options-list .option:hover{
	color:#000000;
}
.pc-custom-select.open .selected-option:after{
	transform: rotate(180deg);
}
.pc-custom-select.open .options-list{
	display: block;
}
.pc-color-block{
	display: flex;
	border-bottom: 1px solid #CFCFCF;
	padding-bottom:16px;
}
.pc-color-block .pc-color{
	width: 26px;
	height: 26px;
	border-radius: 50px;
	border: 1px solid #EAEAEA;
}
.pc-color-block .pc-color + .pc-color{
	margin-left: 11px;
}
.pc-color-block .pc-color.is-active {
	border: 1px solid #000;
}
.pc-flex{
	display: flex;
	gap: 48px;
}
.pc-custom-radio {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-bottom: 10px;
	font-size: 15px;
	position: relative;
}
.pc-custom-radio input {
	display: none;
}
.radio-mark {
	width: 22px;
	height: 22px;
	border: 1px solid #000000;
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
}
.pc-custom-radio input:checked + .radio-mark::after {
	content: '';
	width: 14px;
	height: 14px;
	background: #000000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
body .blockreassurance_product.pc-grey-block{
	margin-top: 32px;
	position: relative;
}
body .blockreassurance_product.pc-grey-block:before{
	content: '';
	background-image: url('../img/icon-i.svg');
	background-size: 22px;
	background-position: center;
	background-repeat: no-repeat;
	width: 22px;
	height:22px;
	position: absolute;
	top: 50%;
	left: 15px;
	margin-top: -11px;
}
body .blockreassurance_product.pc-grey-block>div{
	padding: 17px 20px 17px 45px;
}
body .blockreassurance_product.pc-grey-block p.block-title{
	color: #000000;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	max-width: none;
	width: 100%;
}
body .blockreassurance_product.pc-grey-block p.block-title a{
	text-decoration: underline;
}
body .blockreassurance_product.pc-grey-block p.block-title a:hover{
	text-decoration: none;
}
.pc-actions-block{
	border-top: 1px solid #CFCFCF;
	padding-top: 49px;
}
.pc-logo-block-wrap{
	margin-top: 72px;
}
.pc-logo-block-wrap .blockreassurance_product{
	margin-top: 10px!important;
}
.pc-logo-block-wrap .line-with-logo{
	display:flex;
	justify-content: center;
	align-items: center;
	gap: 44px;
	background-color: #F8F8F8;
	padding: 6px;
}
.pc-logo-block-wrap .line-with-logo img{
	max-width: 100%;
	height: auto;
}
.input-group-btn{
	display: none!important;
}