.fos{
	border-radius: 16px;
	background: var(--grey);
	padding: 24px 20px 48px 20px;
	position: relative;
	overflow: hidden;
}

.fos.fos-mb{
	margin-bottom: 72px;
}

.fos.fos-black{
	background: var(--grey-dark);
	color: white;
}

.fos-img{
	position: absolute;
	top: 0px;
	right: 94px;
}

.fos .inputs-container{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 752px;
}

.inputs-container{
	margin-bottom: 24px;
}

.fos-about{
	display: block;
	font-size: 12px;
	color: #AAAAAA;
	margin-bottom: 30px;
}

.fos-descrip{
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 24px;
}

.fos-title{
	font-size: 24px;
    line-height: 32px;
	margin-bottom: 8px;
}

.fos-multiplay{
	max-width: 752px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.fos .checkbox.popup__checkbox{
	width: fit-content;
}

.fos .checkbox__text{
	/* line-height: 20px; */
	line-height: 100%;
}

.fos-black .typicalInput{
	background: var(--black);
	color: white;

}

.recapchaInput{
	display: none;
}

/* .fos-success{
	display: flex;
    align-items: center;
    gap: 100px;
}

.fos-success img{
	width: 158px;
	height: 158px;
}

.fos-success .fos-block-info{
	max-width: 400px;
}

.fos-success{
	min-height: 192px;
} */
.fos.fos-white{
	background: white;

}

.fos-white .typicalInput {
    background: #F3F3F3;
    color: #AAAAAA;
}

.fos-success.fos-success__popup-active{
	display: flex;
	position: absolute;
	top: 0px;
	background: white;
	width: inherit;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

@media(max-width: 1250px){
	.fos .fos-img{
		display: none;
	}
}

@media(max-width: 1199px){
	/* .fos-success img {
    	width: 108px;
    	height: 108px;
	} */
}

@media(max-width: 767px){
	.fos-multiplay{
		align-items: flex-start;
		flex-direction: column-reverse;
		gap: 24px
	}

	.typicalInput,
	.input_container{
		width: 100%;
	}

	.fos-contain.mb100{
		margin-bottom: 60px;

	}

	/* .fos-success {
		gap: 120px;
		flex-direction: column;
	}

	.fos-success .fos-descrip{
		margin-bottom: 0px;
	}

	.fos-success {
    	align-items: flex-start;
		gap: 123px;
	}

	.fos-success img {
		margin: 0 auto;
		margin-bottom: 58px;
	} */

}


/* попап сексес */

.popup--default.popup-success-white{
	background-color: white;
	color: #212121;
}

.popup-success{
	max-width: 655px;
	padding: 56px 24px;
	border-radius: 16px;
}

.popup-success-title{
	font-size: 24px;
    line-height: 32px;
    text-align: center;
	margin-bottom: 24px;
}

.popup-success-descrip{
	font-size: 14px;
    line-height: 20px;
    text-align: center;
	max-width: 396px;
}

.success-content{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.success-content img {
	width: 80px;
	height: 80px;
	margin-bottom: 50px;
}

.fos-block-info{
	max-width: 400px;
}

.icon-closed.mfp-close{
	top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px;
	cursor: pointer;
}

.popup-fos__success{

}

@media(max-width: 1199px){
	.mfp-content {
		vertical-align: bottom;
	}
}
/* попап сексес END */

/* фос в попапе товара */
.popup-fos__inputs{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 24px 30px;
}

.popup-fos__inputs .input_container{
	grid-column: span 6;
	width: 100%;
}

.popup-fos__inputs .input_container.input_container-textarea{
	grid-column: span 12;
}

.input_container-textarea textarea{
	height: 120px;
}

.popup-fos__inputs .input_container .typicalInput{
	width: 100%;
}

.popup-fos__inputs .input_container .typicalInput[name="company"] {
    text-transform: capitalize;
}

textarea {
    resize: none;
} 
/* запретить изменение размера*/


textarea:focus {
    outline: none;
    border: 1px solid transparent;
}

textarea.typicalInput {
	border-radius: 8px;
}

.fos-multiplay .checkbox{
	display: flex;
    align-items: flex-end;
}


.dropzone.dz-clickable div.dropzone-custom-text,
.dropzone.dz-clickable div.custom-icon{
	width: fit-content;

}

	/* Основной стиль для элементов в Dropzone */
	.dropzone .dz-preview {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px;
		background-color: #f7f7f7;
		margin-bottom: 10px;
		border-radius: 5px;
		position: relative;
	}
	
	/* Стиль для имени файла */
	.dropzone .dz-filename {
		font-size: 14px;
		color: #333;
		flex: 1;
	}
	
	/* Прогресс загрузки */
	.dropzone .dz-progress {
		width: 100%;
		height: 5px;
		background-color: #e0e0e0;
		border-radius: 3px;
		position: absolute;
		bottom: 0;
	}
	
	.dropzone .dz-upload {
		height: 100%;
		width: 0%; /* Это будет обновляться по мере загрузки */
		background-color: #f44336;
		border-radius: 3px;
	}
	
	.dropzone .dz-status {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 12px;
		color: #333;
	}
	
	/* Кнопка удаления */
	.dropzone .dz-remove {
		background-color: #f44336;
		color: white;
		border: none;
		padding: 5px 10px;
		border-radius: 3px;
		cursor: pointer;
	}
	
	/* Стили для кнопки удаления при наведении */
	.dropzone .dz-remove:hover {
		background-color: #d32f2f;
	}

	.dropzone-fos .dz-default.dz-message{
		display: none;
	}

	.dropzone-fos .custom-dropzone-content{
		cursor: pointer;
		display: flex;
    	justify-content: center;
		align-items: center;
	}

	.dropzone-fos__container{
		grid-column: span 12;
	}

	.dropzone-fos__container .dropzone {
		border: 1px double #ccc;
    	border-style: dashed;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.dropzone.dz-clickable div {
		cursor: pointer;
	}

	.dropzone-custom-text{
		font-size: 14px;
		line-height: 100%;
	}

	.custom-dropzone-content .custom-icon{
		line-height: 100%;
		margin-right: 8px;
		font-size: 20px;
		color: orange;
	}
	
	.dropzone.dropzone-fos .dz-status {
		top: auto;
    	bottom: 0px;
		color:#54AA64;
		display: none;
	}

	.dropzone.dropzone-fos .dz-preview .dz-details {
		opacity: 1;
	}

	.dropzone .dz-preview .dz-image img{
		height: 100%;
	}

	.dropzone.dropzone-fos .dz-preview:hover .dz-image img {
		filter: none;
	}
	/* временные загруженный фалй дропзон */
	.dropzone.dz-clickable div {
		width: 100%;
	}

	.dropzone-fos .dz-remove{
		z-index: 100;
	}
	/* временные загруженный фалй дропзон END */
	/* Основной стиль для элементов в Dropzone END*/
	@media (max-width: 767px) {
		.popup-fos__inputs .input_container {
			grid-column: span 12;
			width: 100%;
		}
	}
/* фос в попапе товара END */