/* чекбокс */
.custom-checkbox>input {
	position: absolute;
	z-index: -1;
	opacity: 0;
  }


  .custom__checkbox-span {
	display: flex;
	align-items: center;
	user-select: none;
  }
  
  .custom-checkbox>span::before {
	content: '';
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #adb5bd;
	border-radius: 0.25em;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
  }
  .custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
	border-color: #b3d7ff;
  }
  
  .custom-checkbox>input:not(:disabled):active+span::before {
	background-color: #b3d7ff;
	border-color: #b3d7ff;
  }
  .custom-checkbox>input:focus+span::before {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-checkbox>input:focus:not(:checked)+span::before {
	border-color: #80bdff;
  }
  .custom-checkbox>input:checked+span::before {
	border-color: #25D366;
	background-color: #25D366;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
  .custom-checkbox>input:disabled+span::before {
	background-color: #e9ecef;
  }
  .wapp{
	color: #23d366;
	margin-left: 5px;
  }
  .custom__checkbox-two{
	display: block;
}
/* модальные окна */
.arcticmodal-overlay,
.arcticmodal-container { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 1000; }
.arcticmodal-container { overflow: auto; margin: 0; padding: 0; border: 0; border-collapse: collapse; }
*:first-child+html .arcticmodal-container { height: 100% }
.arcticmodal-container_i { height: 100%; margin: 0 auto; }
.arcticmodal-container_i2 { padding: 24px; margin: 0; border: 0; vertical-align: middle; }
.arcticmodal-error { padding: 20px; border-radius: 10px; background: #000; color: #fff; }

  .box-modal {
	position: relative;
	max-width: 390px;
	padding: 25px;
	background: #fff;
	color: #3c3c3c;
	font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
	box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
	border-radius: 6px;
}
.box-modal_close { 
	position: absolute;
	right: 10px;
	top: 6px;
	font-size: 11px;
	line-height: 15px;
	color: #999;
	cursor: pointer; 
}
.box-modal_close:hover { color: #666; }
.box-modal .framed{
	border: none;
}
.modal__img-box{
	margin-bottom: 20px;
	text-align: center;
}
.modal__sending{
	font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    color: #3D3D3D;
	margin-bottom: 0;
	text-align: center;
}
/* ВАЛИДАЦИЯ ФОРМЫ */
.is-invalid{
	border-bottom: 2px solid rgb(255 0 0) !important;
}
.is-valid{
	border-color: #28a745 !important;
}
.input-group label {
   display: none !important;
}
@media (max-width: 800px){
	.custom-checkbox>span{
		display: block;
	}
}