div.bright-product-warning {
  display: none;
}

div.bright-error {
  border-style: solid; border-width: 2px; border-color: red;
}

span.bright-license-key-span {
  float: left;
  padding-right: 20px;
}

button.bright-license-key-button {
  margin-top: 10px;
}

.bright-shop-table { /* like a woocommerce shop table */
    border: 1px solid rgba(0,0,0,.1);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
}

/*-------------------------
	Inline help tip
--------------------------*/

.bright-checkout-help-tip{
	position: absolute;
	top: 18px;
	right: 18px;
	text-align: center;
	background-color: #BCDBEA;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 14px;
	line-height: 26px;
	cursor: default;
}

.bright-checkout-help-tip:before{
	content:'?';
	font-weight: bold;
	color:#fff;
}

.bright-checkout-help-tip:hover p{
	display:block;
	transform-origin: 100% 0%;

	-webkit-animation: fadeIn 0.3s ease-in-out;
	animation: fadeIn 0.3s ease-in-out;

}

.bright-checkout-help-tip p{
	display: none;
	text-align: left;
	background-color: #1E2021;
	padding: 20px;
	width: 300px;
	position: absolute;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	right: -4px;
	color: #FFF;
	font-size: 13px;
	line-height: 1.4;
}

.bright-checkout-help-tip p:before{
	position: absolute;
	content: '';
	width:0;
	height: 0;
	border:6px solid transparent;
	border-bottom-color:#1E2021;
	right:10px;
	top:-12px;
}

.bright-checkout-help-tip p:after{
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}


.bright-float-right-tip{
	top: 18px;
        float: right;
	right: 18px;
	text-align: center;
	background-color: #BCDBEA;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 14px;
	line-height: 26px;
	cursor: default;
}

.bright-float-right-tip:before{
	content:'?';
	font-weight: bold;
	color:#fff;
        text-align: center;
        display: block;
}

.bright-float-right-tip:hover p{
	display:block;
	transform-origin: 100% 0%;

	-webkit-animation: fadeIn 0.3s ease-in-out;
	animation: fadeIn 0.3s ease-in-out;

}

.bright-float-right-tip p{
	display: none;
	text-align: left;
	background-color: #1E2021 !important;
	padding: 20px;
	width: 300px;
	position: absolute;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	right: -4px;
	color: #FFF !important;
	font-size: 13px;
	line-height: 1.4;
        z-index: 20;
}

.bright-float-right-tip p:before{
	position: absolute;
	content: '';
	width:0;
	height: 0;
	border:6px solid transparent;
	border-bottom-color:#1E2021;
	right:10px;
	top:-12px;
}

.bright-float-right-tip p:after{
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}


@-webkit-keyframes fadeIn {
	0% { 
		opacity:0; 
		transform: scale(0.6);
	}

	100% {
		opacity:100%;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	0% { opacity:0; }
	100% { opacity:100%; }
}

/* make radiobuttons of license check field align correctly */

p.bright_license_check {
  display:flex;
}

label[for="bright_license_check_single"], label[for="bright_license_check_multi"], label[for="bright_license_check_multimyself"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: -4px;
}

.license-key-widget-wrapper {
   position: relative;
 }

