/*

COLOURS...

BRAND		ROYAL BLUE		#003da6		rgba(0,61,166,1);
HIGHLIGHT	SKY BLUE		#6aaae4		rgba(106,170,228,1);
FEATURE		NAVY			#00205c		rgba(0,32,92,1);
ACCENT		YELLOW			#f6a500		rgba(246,165,0,1);
DARK		DARK NAVY		#010C1E		rgba(1,12,30,1);
LIGHT		LIGHT GREY		#eff5fb		rgba(239,245,251,1);
WHITE		WHITE			#ffffff		rgba(255,255,255,1);
BLACK		BLACK			#1d1d1b		rgba(29,29,27,1);

FONTS...

font-family: 'Poppins', sans-serif;

*/


fieldset.invite-quantity{

}

fieldset.invite-quantity > legend{
	
}

fieldset.invite-quantity > .ginput_container{
	
}

fieldset.invite-quantity > .ginput_container > .gfield_radio{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
	gap: 0;
	margin-left: -5px;
	margin-right: -5px;
}

fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice{
	flex-grow: 1;
	flex-shrink: 1;
	width: 10%;
	flex-basis: 10%;
	position: relative;
	padding: 5px;
}

@media (max-width: 720px){

	fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice{
		width: 20%;
		flex-basis: 20%;
	}

}


fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice > input{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}

fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice > label{
	display: block;
	cursor: pointer;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 10px;
	text-align: center;
	height: 100%;
	color: rgba(106,170,228,1);
	font-weight: 600;
	border: 1px solid rgba(106,170,228,0.8);
	background-color: rgba(106,170,228,0.1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice > label:hover{
	border: 1px solid rgba(106,170,228,1);
	background-color: rgba(106,170,228,0.3);
}

fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice > input:checked + label{
	color: rgba(255,255,255,1);
	border: 1px solid rgba(0,32,92,1);
	background-color: rgba(0,32,92,1);
} 

fieldset.invite-quantity > .ginput_container > .gfield_radio > .gchoice > input:checked + label:hover{
	color: rgba(255,255,255,1);
	border: 1px solid rgba(106,170,228,1);
	background-color: rgba(106,170,228,1);
}