
/* The anchor */
.rc-anchor-light.rc-anchor-normal, .rc-anchor-light.rc-anchor-compact {
	border: 1px solid #d3d3d3;
	padding: 10px;
}
.rc-anchor-light {
	background: #f9f9f9;
	color: #000;
}

/* The container */
.rc-container {
	display: inline-block;
	width: 80%;
	position: relative;
	margin-top: 20px;
	cursor: pointer;
	font-size: 0.8rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input.rc-checkbox {
	border: 1px solid #ebebeb !important;
	background: #ffffff !important;
	font-size: 13px !important;
	color: #666 !important;
	border-radius: 4px !important;
	display: inline-block;
	position: relative;
	width: 18px !important;
	height: 18px !important;
}

/* Hide the browser's default checkbox */
.rc-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.rc-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.rc-container:hover input ~ .rc-checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a red background */
.rc-container input:checked ~ .rc-checkmark {
  background-color: #c70909;
}

/* Create the checkmark/indicator (hidden when not checked) */
.rc-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.rc-container input:checked ~ .rc-checkmark:after {
  display: inherit;
}

/* Style the checkmark/indicator */
.rc-container .rc-checkmark:after {
	left: 10PX;
	top: 0PX;
	width: 5PX;
	height: 20PX;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.rc-anchor-logo-img-portrait {
	height: 32px;
	margin: 0 13px 0 10px;
	width: 32px;
	display: inherit;
}

.rc-anchor-logo-img {
    background-size: 32px!important;
    background: url('https://www.gstatic.com/recaptcha/api2/logo_48.png');
    background-repeat: no-repeat;
}

.rc-anchor-logo-text {
	cursor: default;
	font-size: 10px;
	font-weight: 400;
	line-height: 10px;
	margin-top: 5px;
	margin-left: 5px;
	text-align: left;
	width: 120px;
}
.rc-anchor-logo-text-term {
	cursor: default;
	font-size: 10px;
	font-weight: 400;
	line-height: 15px;
	margin-top: 0px;
	margin-left: 5px;
	margin-bottom: 5px;
	width: 120px;
	text-align: left;
}

.rc-anchor-content {
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    height: 100px;
    width: 100%;
    padding: 15px 5px 15px 5px;
    margin: 10px 10px 10px 15px;
    display: inherit;
    position: relative;
}