.bot-dark-bg { 
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0.3;
}
.bot-robotDialog {
	display: none;
	position: fixed;
	z-index: 1000; /* Sit on top */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:360px;
	background-color: #ffffff;
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-top: 1px solid #d3d3d3; 
	border-right: 1px solid #d3d3d3; 
	border-bottom: 2px solid #d3d3d3; 
	border-left: 1px solid #d3d3d3; 
	padding-top: 35px;
	padding-right: 30px;
	padding-bottom: 35px;
	padding-left: 30px;
}
.bot-robotDialog.bot-active { 
	display: block; 
}

.bot-robotMainDialog {
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}


.bot-error {
	display: none;
    color: #b3261e;
    font-size: 12px;
}
.bot-submitBtn:hover,
.bot-submitBtn:focus {
	font-weight: bold;
}


input[type="checkbox"] {
	display: none;
}
.bot-custom-checkbox {
	width: 23px;
	height: 23px;
	border: 2px solid #ccc;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin-right: 8px;
	vertical-align: middle;
}
.bot-custom-checkbox:checked + .bot-custom-checkbox::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 12px;
	border: solid black;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}