.cs-terms-popup, .cs-terms-popup * {
	box-sizing: content-box;
}
.cs-terms-popup {
	position: fixed;
	overflow: hidden;
	z-index: 100000;
	padding: 8px;
	opacity: 0;
	transform: translateY(80px);
	transition: all 0.4s ease;
}
.cs-terms-popup.cs-terms-hidden {
	display: none;
}
.cs-terms-popup.cs-terms-appear {
	opacity: 1;
	transform: translateY(0px);
}
.cs-terms-popup.cs-terms-place-bottom {
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
}
.cs-terms-popup.cs-terms-place-right {
	right: 10px;
	bottom: 10px;
	max-width: 75vw;
	width: 300px;
	height: auto;
	border-radius: 2px;
}
.cs-terms-popup .cs-terms-popup-content {
	padding: 10px 14px;
}
.cs-terms-popup .cs-terms-popup-content p:last-child {
	margin-bottom: 0;
}
.cs-terms-popup .cs-terms-content-leftwrap {
	float: left;
}
.cs-terms-popup .cs-terms-popup-close {
	padding: 10px 18px;
	cursor: pointer;
	border-radius: 4px;
	float: right;
	text-align: center;
	transition: background-color 0.3s ease;
}
.cs-terms-popup .cs-terms-popup-close:empty {
	padding: 10px;
	border-radius: 100px;
	width: 24px;
	height: 24px;
	font: normal 30px/0.9em sans-serif;
}
.cs-terms-popup .cs-terms-popup-close:empty:after {
	content: '\d7';
}
.cs-terms-popup .cs-terms-popup-close:hover {
	background-color: rgba(255,255,255,0.1);
}
.cs-terms-popup .cs-terms-popup-close:active {
	background-color: rgba(0,0,0,0.1);
	transition: none;
}