/* -обязательное поле в форме- */
.op {
	font-weight:bold;
}

.op sup {
	color:#d00;
	font-size:1.5em;
}

.cr {
	color: #d00;
}
.cg{
	color: #4dad27;
}

/* popUp__confirm */


.popUpBody{
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	top: 0;
	right: 0;
	z-index: 99990;
  }
.popUp__controls{
	display: flex;
	align-items: center;
}
.popUp__minimize{
	color: white;
}
.popUp__minimize:hover{
	transform: scale(1.2) translateY(-2px);
}
.popUp__minimize:active{
	transform: scale(1) translateY(0);
}

.popUp__control{
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px;
}
.popUp__control svg{
	height: 16px;
	min-height: 16px;
	width: 16px;
	min-width: 16px;
	fill: white;
}

.popUp__control:hover svg{
	transform: scale(1.2);
}


.popUp--fullWindow{
max-height: none !important;
height: 100% !important;
width: 100% !important;
	max-width: none !important;
	border-radius: 0 !important;
}


.popUp__confirm{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 500px;
    width: max-content;
	border-radius: 16px;
	overflow: hidden;
	animation: appearance .2s ease;
}
@media (max-width: 450px){
	.popUp__confirm{
		width: calc(100% - 15px);
	}
}
.oneChoise .secondChoise {
	display: none;
}

.firstChoise{
	margin-right: 20px;
}
.oneChoise .firstChoise {
	margin-right: 0;
}




.confirm__header{
	display: flex;
	justify-content: space-between;
	width: 100%;
	background: rgb(52,118,187);
	/* background: linear-gradient(94deg, rgba(52,118,187,1) 0%, rgb(88 176 218) 100%); */
	padding: 15px;
	color: white;
}
.confirm__close:hover svg{
	transform: scale(1.2);
}
.confirm__header svg{
	cursor: pointer;
	width: 15px;
	height: 15px;
	fill: white;
}

.confirm__body{
	padding: 15px;
	background: white;
	width: 100%;
}

.confirm__text{
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 15px;
	color: #444444;
}
.confirm__buttons{
	width: 100%;
	display: flex;
	justify-content: center;
}
.popUp__button{
	font-weight: bold;
	padding: 7px 20px;
	border: none;
	cursor: pointer;
	color: white;
	font-size: 15px;
	background: rgb(236,107,107);

	background: linear-gradient(94deg, rgba(236,107,107,1) 0%, rgb(255 129 109) 100%);
	border-radius: 3px;
}
.popUp__button:hover{
	background: #db5353;
}



/* popUp__confirm */


.popuper.notify .popuper__header{
	background: var(--blue);
	color: white;
}
.popuper.notify .popuper__header svg{
	fill: var(--white)
}