sb-popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 789;
	background-color: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	transition-delay:0.2s;
}

sb-popup .holder{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%, -50%, 0) scale(0.8);
	transition: 0.4s;
	background-color: white;
	width: 90%;
    max-width: 900px;
    box-shadow: 0 0 30px 20px rgba(0,0,0,0.8);
}


sb-popup .closeBtn{
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0;
	top: 0;
	background-color: #bc0044;
    z-index: 5;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

sb-popup .closeBtn:hover{
	background-color: rgba(0, 0, 0, 0.8);
}

sb-popup .closeBtn::after{
	font-family: FontAwesome;
    content: " \f00d";
    color: white;
    font-size: 24px;
    line-height: 40px;
}

sb-popup label{
	display: flex;
    align-items: center;
    user-select: none;
}

sb-popup label input{
	margin: 3px 3px 0 0;
}

sb-popup.visible {
	visibility: visible; 
	opacity: 1;
	transition-delay:0s;
	transition: 0.7s;
}

sb-popup.visible .holder{
	transform: translate3d(-50%, -50%, 0) scale(1);
	transition-delay:0.3s;
	transition: 0.5s;
}

@media (max-width: 768px) {
	sb-popup .holder{
		height: 90%;
	}
}

@media (min-width: 768px) and (max-height: 520px) {
	sb-popup .holder{
		height: 90%;
	}
}


/* BANNER */

sb-popup sb-banner{
	margin-bottom: 0;
	overflow-y: auto;
    height: 100%;
}

sb-popup sb-banner .expand{
	display: none;
}

sb-popup sb-banner p.collabsible {
    display: block;
}

sb-popup sb-banner .inner {
    margin: 0%;
    padding: 3%;
}