.cps-lightbox-wrapper {
	height: 100%;
	min-height: 400px;
	background-position: 50%;
	background-size: cover;
}

@media only screen and (min-width:1050px) {

	.cps-lightbox-wrapper {
		min-width: 1000px;
	}
}


@media only screen and (max-width:1050px) {

	.cps-lightbox-wrapper {
		min-width: 700px;
	}
}


@media only screen and (max-width:768px) {

	.cps-lightbox-wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		min-width: auto;
	}
}

.cps-lightbox__fade-in {
	opacity: 0;
	-webkit-animation: lightboxFadeIn .3s .25s forwards ease-in;
	animation: lightboxFadeIn .3s .25s forwards ease-in;
}
.cps-lightbox__fade-out {
	-webkit-animation: lightboxFadeOut .3s forwards ease-in;
	animation: lightboxFadeOut .3s forwards ease-in;
}

@keyframes lightboxFadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes lightboxFadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


@keyframes lightboxFadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes lightboxFadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


@keyframes lightboxFadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes lightboxFadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}


@keyframes lightboxFadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes lightboxFadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.cps-lightbox-button {
	display: inline-block;
	min-width: 190px;
	padding: 10px 45px;
	font-family: inherit;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 32px;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
}

@media only screen and (max-width:543px) {

	.cps-lightbox-button {
		padding: 15px 70px;
	}
}

.cps-lightbox-button--secondary {
	background-color: #009bd4;
	border: 2px solid #009bd4;
}
.cps-lightbox-button--secondary.pl-link {
	color: #fff;
}
.cps-lightbox-button--white-empty {
	background-color: transparent;
	border: 2px solid #fff;
}
.cps-lightbox-button--white-empty.pl-link {
	color: #fff;
}
.cps-lightbox-button--white-filled {
	background-color: #fff;
	border: 2px solid #fff;
}
.cps-lightbox-button--white-filled.pl-link {
	color: #fff;
}
.cps-lightbox-button--light-blue-filled {
	background-color: #009bd4;
	border: 2px solid #009bd4;
}
.cps-lightbox-button--light-blue-filled.pl-link {
	color: #fff;
}
.cps-lightbox-button--light-blue-empty {
	background-color: transparent;
	border: 2px solid #009bd4;
}
.cps-lightbox-button--light-blue-empty.pl-link {
	color: #009bd4;
}
.cps-lightbox-button--light-blue-filled:focus,.cps-lightbox-button--light-blue-filled:hover {
	background-color: #fff;
}
.cps-lightbox-button--light-blue-filled:focus.pl-link,.cps-lightbox-button--light-blue-filled:hover.pl-link {
	color: #009bd4;
}
.cps-lightbox-button--light-blue-empty:focus,.cps-lightbox-button--light-blue-empty:hover {
	color: #fff;
	background-color: #009bd4;
}
.cps-lightbox-button--white-empty:focus,.cps-lightbox-button--white-empty:hover {
	color: #000;
	background-color: #fff;
}
.cps-lightbox-button--secondary:focus,.cps-lightbox-button--secondary:hover {
	background-color: transparent;
}
.cps-lightbox-button--secondary:focus.pl-link,.cps-lightbox-button--secondary:hover.pl-link {
	color: #009bd4;
}
.cps-blur-effect--visible {
	-webkit-filter: blur(5px);
	filter: blur(5px);
}
.cps-lightbox-template {
	display: none;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	border: 0;
}
.cps-header--sticky {
	position: -webkit-sticky;
	position: sticky;
	top: -10px;
	z-index: 15;
}
.cps-lightbox-header {
	width: 100%;
}
body:not(.cps-keyboard-navigation) .cps-checkbox:focus~.cps-checkbox-label--box,body:not(.cps-keyboard-navigation) .cps-checkbox:focus~.cps-checkbox-label--box-radio,body:not(.cps-keyboard-navigation) .cps-form-input-range__input:focus~.cps-form-input-range__slider-thumb,body:not(.cps-keyboard-navigation) .cps-form-input-range__input:focus~.cps-form-input-range__slider-track,body:not(.cps-keyboard-navigation) :focus,body:not(.cps-keyboard-navigation) select:focus {
	outline: none;
}

@keyframes wobbleIn {
	0% {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	75% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	to {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes wobbleIn {
	0% {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	75% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	to {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


@keyframes wobbleIn {
	0% {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	75% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	to {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes wobbleIn {
	0% {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	75% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	to {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


@keyframes wobbleOut {
	0% {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@-webkit-keyframes wobbleOut {
	0% {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}


@keyframes wobbleOut {
	0% {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@-webkit-keyframes wobbleOut {
	0% {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

.cps-checkbox {
	position: absolute;
	cursor: pointer;
	opacity: 0;
}
.cps-checkbox-label {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	cursor: pointer;
}

@media only screen and (max-width:768px) {

	.cps-checkbox-label {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start;
		width: auto;
		padding: 18px 18px 10px;
	}
}

.cps-checkbox-label--box {
	position: relative;
	width: 15px;
	height: 15px;
	background: transparent;
	border: 1px solid #afafaf;
	border-radius: 2px;
	-webkit-transition: background .3s ease-in;
	transition: background .3s ease-in;
}

@media only screen and (max-width:768px) {

	.cps-checkbox-label--box {
		width: 20px;
		height: 20px;
	}
}

.cps-checkbox-label--box-radio {
	position: relative;
	width: 15px;
	height: 15px;
	background: transparent;
	border: 1px solid #afafaf;
	border-radius: 50%;
	-webkit-transition: background .3s ease-in;
	transition: background .3s ease-in;
}

@media only screen and (max-width:768px) {

	.cps-checkbox-label--box-radio {
		width: 20px;
		height: 20px;
	}
}

.cps-checkbox-label--tick {
	position: absolute;
	top: 49%;
	left: 54%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: opacity .3s ease-in,visibility .3s ease-in;
	transition: opacity .3s ease-in,visibility .3s ease-in;
}

@media only screen and (max-width:768px) {

	.cps-checkbox-label--tick {
		-webkit-transform: translate(-50%,-50%) scale(1.5);
		transform: translate(-50%,-50%) scale(1.5);
	}
}

.cps-checkbox-label--tick-radio {
	top: 50%;
	left: 54%;
	width: 11px;
	height: 11px;
	background: #006fb4;
	border-radius: 50%;
	-webkit-transform: translate(-54%,-46%);
	transform: translate(-54%,-46%);
}

@media only screen and (max-width:768px) {

	.cps-checkbox-label--tick-radio {
		left: 51%;
		width: 16px;
		height: 16px;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
}

.cps-checkbox:focus~.cps-checkbox-label--box,.cps-checkbox:focus~.cps-checkbox-label--box-radio {
	outline: 5px auto -webkit-focus-ring-color;
}
.cps-checkbox:checked~.cps-checkbox-label--box {
	background: #006fb4;
	border: 1px solid #006fb4;
}
.cps-checkbox:checked~.cps-checkbox-label--box-radio .cps-checkbox-label--tick,.cps-checkbox:checked~.cps-checkbox-label--box .cps-checkbox-label--tick {
	opacity: 1;
	visibility: visible;
}
.cps-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999999;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	outline: 0;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	box-pack: center;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.cps-lightbox--centered {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.cps-lightbox-overlay {
	display: none;
	background-color: rgba(0,0,0,.8);
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}
.cps-lightbox-overlay--open {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999999999;
	display: block;
	height: 100%;
	opacity: 1;
}
.cps-lightbox__content {
	margin: 48px 0 80px;
	-webkit-transition: height .3s ease;
	transition: height .3s ease;
}

@media (max-width:768px) {

	.cps-lightbox__content {
		margin: 36px 10px;
	}
}

.cps-lightbox__content--regular {
	max-width: 1050px;
}
.cps-lightbox__content--alert {
	max-width: 615px;
}

@media (max-width:768px) {

	.cps-lightbox__content--alert {
		max-width: 100%;
	}
}

.cps-lightbox--open {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.cps-lightbox__close-button {
	position: absolute;
	top: 0;
	right: 2px;
	z-index: 99;
	display: flex;
	padding: 10px;
	margin: 15px;
	background: transparent;
	border: 0;
	border-radius: 100%;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}

@keyframes comeUp {
	0% {
		-webkit-transform: translateY(200px) scale3d(0,0,100);
		transform: translateY(200px) scale3d(0,0,100);
	}
	50% {
		-webkit-transform: translateY(-20px) scale3d(1.01,1.01,0);
		transform: translateY(-20px) scale3d(1.01,1.01,0);
	}
	75% {
		-webkit-transform: translateY(2px) scaleX(1);
		transform: translateY(2px) scaleX(1);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0) scaleX(1);
		transform: translateY(0) scaleX(1);
	}
}

@-webkit-keyframes comeUp {
	0% {
		-webkit-transform: translateY(200px) scale3d(0,0,100);
		transform: translateY(200px) scale3d(0,0,100);
	}
	50% {
		-webkit-transform: translateY(-20px) scale3d(1.01,1.01,0);
		transform: translateY(-20px) scale3d(1.01,1.01,0);
	}
	75% {
		-webkit-transform: translateY(2px) scaleX(1);
		transform: translateY(2px) scaleX(1);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0) scaleX(1);
		transform: translateY(0) scaleX(1);
	}
}


@keyframes comeUp {
	0% {
		-webkit-transform: translateY(200px) scale3d(0,0,100);
		transform: translateY(200px) scale3d(0,0,100);
	}
	50% {
		-webkit-transform: translateY(-20px) scale3d(1.01,1.01,0);
		transform: translateY(-20px) scale3d(1.01,1.01,0);
	}
	75% {
		-webkit-transform: translateY(2px) scaleX(1);
		transform: translateY(2px) scaleX(1);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0) scaleX(1);
		transform: translateY(0) scaleX(1);
	}
}

@-webkit-keyframes comeUp {
	0% {
		-webkit-transform: translateY(200px) scale3d(0,0,100);
		transform: translateY(200px) scale3d(0,0,100);
	}
	50% {
		-webkit-transform: translateY(-20px) scale3d(1.01,1.01,0);
		transform: translateY(-20px) scale3d(1.01,1.01,0);
	}
	75% {
		-webkit-transform: translateY(2px) scaleX(1);
		transform: translateY(2px) scaleX(1);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0) scaleX(1);
		transform: translateY(0) scaleX(1);
	}
}


@keyframes expandVertical {
	0% {
		height: 0;
	}
	to {
		height: 120px;
	}
}

@-webkit-keyframes expandVertical {
	0% {
		height: 0;
	}
	to {
		height: 120px;
	}
}


@keyframes expandVertical {
	0% {
		height: 0;
	}
	to {
		height: 120px;
	}
}

@-webkit-keyframes expandVertical {
	0% {
		height: 0;
	}
	to {
		height: 120px;
	}
}


@keyframes expandVerticalSmall {
	0% {
		height: 0;
	}
	to {
		height: 80px;
	}
}

@-webkit-keyframes expandVerticalSmall {
	0% {
		height: 0;
	}
	to {
		height: 80px;
	}
}


@keyframes expandVerticalSmall {
	0% {
		height: 0;
	}
	to {
		height: 80px;
	}
}

@-webkit-keyframes expandVerticalSmall {
	0% {
		height: 0;
	}
	to {
		height: 80px;
	}
}


@keyframes expandHorizontal {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 0;
		flex: 0 0 0;
		width: 0;
		opacity: 0;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
		opacity: 1;
	}
}

@-webkit-keyframes expandHorizontal {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 0;
		flex: 0 0 0;
		width: 0;
		opacity: 0;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
		opacity: 1;
	}
}


@keyframes expandHorizontal {
	0% {
		width: 0;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
	}
}

@-webkit-keyframes expandHorizontal {
	0% {
		width: 0;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
	}
}


@keyframes expandHorizontalMobile {
	0% {
		-webkit-flex-basis: 0;
		flex-basis: 0;
	}
	to {
		-webkit-flex-basis: 49%;
		flex-basis: 49%;
	}
}

@-webkit-keyframes expandHorizontalMobile {
	0% {
		-webkit-flex-basis: 0;
		flex-basis: 0;
	}
	to {
		-webkit-flex-basis: 49%;
		flex-basis: 49%;
	}
}


@keyframes expandHorizontalMobile {
	0% {
		-webkit-flex-basis: 0;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
	to {
		-webkit-flex-basis: 49%;
		-ms-flex-preferred-size: 49%;
		flex-basis: 49%;
	}
}

@-webkit-keyframes expandHorizontalMobile {
	0% {
		-webkit-flex-basis: 0;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
	to {
		-webkit-flex-basis: 49%;
		-ms-flex-preferred-size: 49%;
		flex-basis: 49%;
	}
}


@keyframes zoomIn {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes zoomIn {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


@keyframes zoomIn {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes zoomIn {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


@keyframes fadeInProduct {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInProduct {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


@keyframes fadeInProduct {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInProduct {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


@keyframes fadeOutProduct {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes fadeOutProduct {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}


@keyframes fadeOutProduct {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes fadeOutProduct {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}


@keyframes shrinkVertical {
	0% {
		height: 110px;
	}
	to {
		height: 0;
		margin: 0;
	}
}

@-webkit-keyframes shrinkVertical {
	0% {
		height: 110px;
	}
	to {
		height: 0;
		margin: 0;
	}
}


@keyframes shrinkVertical {
	0% {
		height: 110px;
	}
	to {
		height: 0;
		margin: 0;
	}
}

@-webkit-keyframes shrinkVertical {
	0% {
		height: 110px;
	}
	to {
		height: 0;
		margin: 0;
	}
}


@keyframes shrinkHorizontal {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		flex: 0;
		width: 0;
	}
}

@-webkit-keyframes shrinkHorizontal {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		flex: 0;
		width: 0;
	}
}


@keyframes shrinkHorizontal {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-ms-flex: 0;
		flex: 0;
		width: 0;
	}
}

@-webkit-keyframes shrinkHorizontal {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33%;
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
		width: auto;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-ms-flex: 0;
		flex: 0;
		width: 0;
	}
}


@keyframes dimOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes dimOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}


@keyframes dimOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes dimOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}


@media (max-width:768px) {

	.cps-lightbox__content {
		margin: 36px 10px;
	}
}


@media (max-width:768px) {

	.cps-lightbox__content--alert {
		max-width: 100%;
	}
}

.cps-comparison-table {
	padding: 130px 0 30px;
	color: #fff;
	background: #000;
}

@media only screen and (max-width:991px) {

	.cps-comparison-table {
		padding: 60px 0 0;
	}
}

.cps-comparison-table__shadow-container {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.cps-comparison-table__hidden {
	display: none;
}
.cps-comparison-table__container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media only screen and (max-width:991px) {

	.cps-comparison-table__container {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.cps-comparison-table__container--header {
	margin-bottom: 40px;
}
.cps-comparison-table__container--benefits {
	padding: 20px 0;
	border-bottom: 1px solid #444;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__container--benefits {
		padding: 5px 0 0;
		border-bottom: 0;
	}
}

.cps-comparison-table__item {
	min-width: 165px;
}

@media only screen and (max-width:1199px) {

	.cps-comparison-table__item {
		min-width: 130px;
		margin-right: 5px;
	}
	.cps-comparison-table__item:not(:first-child) {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}

.cps-comparison-table__item--benefits {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.cps-comparison-table__item--header {
	width: 337px;
	font-size: 32px;
}

@media only screen and (max-width:991px) {

	.cps-comparison-table__item--header {
		width: 100%;
		margin-right: 0;
	}
}

.cps-comparison-table__header {
	margin-bottom: 18px;
	font-size: 32px;
}

@media only screen and (max-width:991px) {

	.cps-comparison-table__header {
		line-height: 42px;
		text-align: center;
	}
}

.cps-comparison-table__description {
	font-size: 12px;
	line-height: 20px;
}

@media only screen and (max-width:991px) {

	.cps-comparison-table__description {
		margin-bottom: 32px;
		font-size: 16px;
		line-height: 26px;
		text-align: center;
	}
}

.cps-comparison-table__item__points-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 126px;
	height: 126px;
	background: #26282a;
	border-radius: 5px;
}

@media only screen and (max-width:991px) {

	.cps-comparison-table__item__points-container {
		width: 120px;
	}
}

.cps-comparison-table__item__points-number {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: -3px;
}
.cps-comparison-table__item__points-description {
	margin-bottom: 0;
	font-size: 10px;
	font-weight: 600;
	color: #a8a9a9;
	text-transform: uppercase;
}
.cps-comparison-table__item__level-bar {
	position: relative;
	display: block;
	height: 7px;
	max-width: 155px;
	margin-top: 25px;
	border-radius: 10px;
}
.cps-comparison-table__item__level-bar:before {
	position: absolute;
	top: -5px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	content: "";
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__item__level-bar {
		max-width: 120px;
	}
}

.cps-comparison-table__item__level-bar--red {
	background: #c00;
}
.cps-comparison-table__item__level-bar--red:before {
	background: #000;
	border: 5px solid #c00;
}
.cps-comparison-table__item__level-bar--silver {
	background: #939598;
}
.cps-comparison-table__item__level-bar--silver:before {
	background: #000;
	border: 5px solid #939598;
}
.cps-comparison-table__item__level-bar--gold {
	background: #feab00;
}
.cps-comparison-table__item__level-bar--gold:before {
	background: #000;
	border: 5px solid #feab00;
}
.cps-comparison-table__item__level-bar--platinum {
	background: #707e83;
}
.cps-comparison-table__item__level-bar--platinum:before {
	background: #000;
	border: 5px solid #707e83;
}
.cps-comparison-table__item__header {
	letter-spacing: -1px;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__item__header {
		font-size: 20px;
	}
}

.cps-comparison-table__item__title {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 500;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__item__title {
		margin-bottom: 10px;
		font-size: 12px;
	}
}

.cps-comparison-table__item__title--other {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__item__title--other {
		font-size: 12px;
	}
}

.cps-comparison-table__item__label {
	margin-left: 8px;
	font-weight: 500;
	color: #a8a9a9;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__item__label {
		font-size: 12px;
	}
}

.cps-comparison-table__item__label--text-only {
	margin-left: 0;
}
.cps-comparison-table__terms {
	padding-left: 20px;
	margin: 34px 0 0;
	font-size: 12px;
	line-height: 16px;
	color: #a8a9a9;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__terms__li {
		margin-bottom: 16px;
	}
}

.cps-comparison-table__terms__link.pl-link {
	font-weight: 500;
	color: #a8a9a9;
	text-decoration: underline;
}
.cps-comparison-table__benefits-header {
	padding-bottom: 24px;
	border-bottom: 1px solid #e0e0e0;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__benefits-header {
		padding-bottom: 14px;
		font-size: 20px;
	}
}

.cps-comparison-table__benefits-header--label {
	display: inline-block;
}
.cps-comparison-table__view-more-wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 40px 0;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__view-more-wrapper {
		padding: 50px 0;
	}
}

.cps-comparison-table__toggle-button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.cps-comparison-table__toggle-button.pl-link {
	margin: 0;
	color: #fff;
}
.cps-comparison-table__toggle-button.pl-link+.pl-link {
	margin: 0;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.cps-comparison-table__toggle-button--top {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.cps-comparison-table__hide-more-button-bottom {
	margin-bottom: 50px;
}
.cps-comparison-table__hide.pl-link {
	opacity: 0;
	visibility: hidden;
}
.cps-comparison-table__label-show {
	margin-bottom: 9px;
}
.cps-comparison-table__label-hide {
	margin-top: 9px;
}
.cps-comparison-table__items-holder {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__items-holder--mobile {
		padding-bottom: 10px;
		border-bottom: 1px solid #444;
	}
}

.cps-comparison-table-inner-wrapper,.cps-comparison-table-inner-wrapper--bottom {
	position: relative;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table-inner-wrapper,.cps-comparison-table-inner-wrapper--bottom {
		overflow-x: scroll;
	}
}

.cps-comparison-table-inner-wrapper--bottom {
	height: 0;
	overflow-y: hidden;
	-webkit-transition: height .3s ease-in;
	transition: height .3s ease-in;
}
.cps-comparison-table-inner-wrapper__shadow--hide {
	display: none;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table-inner-wrapper__shadow {
		position: fixed;
		top: 0;
		z-index: 5;
		width: 50px;
		height: 100%;
		-webkit-transition: opacity .2s ease-in;
		transition: opacity .2s ease-in;
	}
}


@media only screen and (max-width:768px) {

	.cps-comparison-table-inner-wrapper__shadow-left {
		left: -15px;
		opacity: 0;
		-webkit-box-shadow: inset 3em 0 2em -1.5em #000;
		box-shadow: inset 3em 0 2em -1.5em #000;
	}
}


@media only screen and (max-width:768px) {

	.cps-comparison-table-inner-wrapper__shadow-right {
		right: -15px;
		-webkit-box-shadow: inset -1.5em 0 2em 0 #000;
		box-shadow: inset -1.5em 0 2em 0 #000;
	}
}

.cps-comparison-table-info {
	cursor: pointer;
}
.cps-comparison-table__sup {
	top: -1em;
	font-size: 55%;
}

@media only screen and (max-width:768px) {

	.cps-comparison-table__sup {
		top: -.5em;
		font-size: 75%;
	}
}

.cps-tooltip {
	position: relative;
	display: none;
	color: #fff;
	cursor: pointer;
}

@media screen and (min-width:991px) {

	.cps-tooltip {
		display: inline;
	}
}

.cps-tooltip--kitbag {
	display: inline;
}
.cps-tooltip__icon {
	font-size: 16px;
}
.cps-tooltip__icon:before {
	font-weight: 900;
}
.cps-tooltip__content {
	position: absolute;
	top: -108px;
	left: -105px;
	width: 225px;
	padding: 18px;
	color: #000;
	pointer-events: none;
	background-color: #fff;
	border-radius: 4px;
	opacity: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transform-origin: 50% 100px;
	transform-origin: 50% 100px;
}
.cps-tooltip__content:after {
	position: absolute;
	bottom: -30px;
	left: 0;
	display: block;
	width: 100%;
	height: 35px;
	content: " ";
}
.cps-tooltip__content:before {
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	z-index: 100;
	width: 0;
	height: 0;
	margin: 0 auto;
	border-top: 20px solid #fff;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	content: "";
}
.cps-tooltip__content--show {
	pointer-events: auto;
	-webkit-animation: wobbleIn .5s ease-in-out forwards;
	animation: wobbleIn .5s ease-in-out forwards;
}
.cps-tooltip__content--hide {
	-webkit-animation: wobbleOut .3s ease-in-out forwards;
	animation: wobbleOut .3s ease-in-out forwards;
}
.cps-tooltip__content--kitbag {
	top: -60px;
	left: -75px;
	width: 165px;
	padding: 5px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	-webkit-transform-origin: 50% 65px;
	transform-origin: 50% 65px;
}
.cps-sample-kitbag-silver-wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	min-width: 600px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-silver-wrapper {
		min-width: auto;
	}
}

.cps-sample-kitbag-silver__close-btn {
	position: absolute;
	top: 0;
	right: 2px;
	z-index: 99;
	padding: 10px;
	margin: 15px;
	background: transparent;
	border: 0;
	border-radius: 100%;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}
.cps-sample-kitbag-silver,.cps-sample-kitbag-silver__close-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.cps-sample-kitbag-silver {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 80px 23px;
}
.cps-sample-kitbag-silver__paragraph {
	margin: 0 0 50px;
}
.cps-sample-kitbag-silver__user-data-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 35px;
	margin: 40px 0;
}
.cps-sample-kitbag-silver__user-data {
	margin: 0;
}
.cps-sample-kitbag-silver__cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.cps-sample-kitbag-silver__cta-confirm-btn {
	margin-bottom: 20px;
}
.cps-sample-kitbag-silver__cta-redirect-btn.pl-link {
	margin: 0;
}
.cps-your-products__wrapper {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 48%;
	-ms-flex: 0 0 48%;
	flex: 0 0 48%;
}

@media only screen and (max-width:768px) {

	.cps-your-products__wrapper {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

.cps-your-products,.cps-your-products-admin,.cps-your-products-affiliate {
	padding: 55px 45px;
	background-color: #fff;
}

@media only screen and (max-width:991px) {

	.cps-your-products,.cps-your-products-admin,.cps-your-products-affiliate {
		padding: 55px 35px;
	}
}


@media only screen and (max-width:768px) {

	.cps-your-products,.cps-your-products-admin,.cps-your-products-affiliate {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding: 0 0 55px;
		background-color: #f5f6f6;
		border-bottom: 2px solid #eceded;
	}
}

.cps-your-products__support-header {
	margin-bottom: 30px;
	font-size: 28px;
	line-height: 64px;
	color: #000;
}

@media only screen and (max-width:768px) {

	.cps-your-products__support-header {
		font-size: 24px;
		line-height: 34px;
	}
}


@media only screen and (max-width:1199px) {

	.cps-your-products__support-header--two-lines {
		line-height: 48px;
	}
}


@media only screen and (max-width:768px) {

	.cps-your-products__support-header--two-lines {
		line-height: 34px;
	}
}

.cps-your-products__product-heading {
	margin: 0;
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
	color: #323232;
}

@media only screen and (max-width:991px) {

	.cps-your-products__product-heading {
		font-size: 13px;
	}
}


@media only screen and (max-width:768px) {

	.cps-your-products__product-heading {
		font-size: 16px;
	}
}

.cps-your-products__product-admin-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width:1199px) {

	.cps-your-products__product-admin-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}


@media only screen and (max-width:991px) {

	.cps-your-products__product-admin-info {
		margin-top: -7px;
	}
}

.cps-your-products__product-admin-info .cps-your-products__product-serial {
	line-height: 22px;
}
.cps-your-products__product-admin-info .cps-your-products__product-serial:first-child {
	margin-right: 12px;
}

@media only screen and (max-width:1199px) {

	.cps-your-products__product-admin-info .cps-your-products__product-serial:first-child {
		margin: 0;
	}
}


@media only screen and (max-width:1199px) {

	.cps-your-products__product-admin-info .cps-your-products__product-serial:last-child {
		margin-top: -10px;
	}
}

.cps-your-products__product-serial {
	margin: 0;
	font-size: 12px;
	color: #000;
}

@media only screen and (max-width:991px) {

	.cps-your-products__product-serial {
		font-size: 10px;
	}
}

.cps-your-products__product-serial-number {
	line-height: 30px;
	color: #323232;
}
.cps-your-products__product-list {
	padding: 0;
	margin: 0 0 40px;
	list-style: none;
}
.cps-your-products__product-item:not(:last-child) {
	border-bottom: 1px solid #eceded;
}
.cps-your-products__product-item--silver {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	margin: 0 0 10px;
}
.cps-your-products__product-item--silver:not(:last-child) {
	border-bottom: 0;
}
.cps-your-products__product-link {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 15px 10px;
}
.cps-your-products__product--miniature,.cps-your-products__product-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.cps-your-products__product--miniature {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 18%;
	-ms-flex: 0 0 18%;
	flex: 0 0 18%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 15px;
}

@media only screen and (max-width:991px) {

	.cps-your-products__product--miniature {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 19%;
		-ms-flex: 0 0 19%;
		flex: 0 0 19%;
	}
}


@media only screen and (max-width:768px) {

	.cps-your-products__product--miniature {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 13%;
		-ms-flex: 0 0 13%;
		flex: 0 0 13%;
	}
}


@media only screen and (max-width:543px) {

	.cps-your-products__product--miniature {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 16%;
		-ms-flex: 0 0 16%;
		flex: 0 0 16%;
	}
}


@media only screen and (max-width:1199px) {

	.cps-your-products__product--miniature-admin {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 23%;
		-ms-flex: 0 0 23%;
		flex: 0 0 23%;
	}
}


@media only screen and (max-width:768px) {

	.cps-your-products__product--miniature-admin {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 13%;
		-ms-flex: 0 0 13%;
		flex: 0 0 13%;
	}
}


@media only screen and (max-width:543px) {

	.cps-your-products__product--miniature-admin {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 16%;
		-ms-flex: 0 0 16%;
		flex: 0 0 16%;
	}
}

.cps-your-products__product--miniature-silver {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 13%;
	-ms-flex: 0 0 13%;
	flex: 0 0 13%;
}
.cps-your-products__product-img {
	width: 100%;
	height: auto;
}
.cps-your-products__product-description {
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	margin-right: auto;
}
.cps-your-products__product-description,.cps-your-products__product-points {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.cps-your-products__product-points {
	position: relative;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	width: 58px;
	height: 47px;
	margin-right: 9px;
	color: #000;
	cursor: pointer;
	border-radius: 4px;
}
.cps-your-products__product-points--disabled {
	color: rgba(0,0,0,.4);
	background-color: transparent;
	border: 1px dashed #d0cbcb;
}
.cps-your-products__product-points-msg {
	position: absolute;
	top: -85px;
	left: -103px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 260px;
	height: 60px;
	padding: 9px;
	border-radius: 3px;
	-webkit-box-shadow: 0 7px 25px #eceded;
	box-shadow: 0 7px 25px #eceded;
	-webkit-animation: wobbleOut .3s ease-in-out forwards;
	animation: wobbleOut .3s ease-in-out forwards;
}
.cps-your-products__product-points-msg:after {
	position: absolute;
	bottom: -.94rem;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 1rem solid #fff;
	border-right: 1rem solid transparent;
	border-left: 1rem solid transparent;
	content: "";
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.cps-your-products__product-points-msg-txt {
	font-weight: 300;
}
.cps-your-products__product-points:hover .cps-your-products__product-points-msg {
	-webkit-animation: wobbleIn .5s ease-in-out forwards;
	animation: wobbleIn .5s ease-in-out forwards;
}

@media only screen and (max-width:768px) {

	.cps-your-products__product-points:hover .cps-your-products__product-points-msg {
		display: none;
	}
}

.cps-your-products__product-score {
	text-transform: uppercase;
}
.cps-your-products__product-score--number {
	font-size: 18px;
	font-weight: 300;
}
.cps-your-products__product-score--label {
	font-size: 10px;
	line-height: 8px;
	letter-spacing: 0;
}
.cps-your-products__notification-dot {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	margin-right: -11px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.cps-your-products__notification-dot--shown {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.cps-your-products__cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media only screen and (max-width:991px) {

	.cps-your-products__cta {
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.cps-your-products__cta-button-add-product:focus svg,.cps-your-products__cta-button-add-product:hover svg {
	stroke: #fff;
}
.cps-your-products__cta-button-label {
	margin-left: 10px;
}
.cps-your-products__cta-button-add-product {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 27px;
}

@media only screen and (max-width:991px) {

	.cps-your-products__cta-button-add-product {
		margin-bottom: 25px;
	}
}

.cps-your-products__cta-button-add-product svg {
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
	stroke: #009bd4;
}
.cps-sample-kitbag-platinum-wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	min-width: 600px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-platinum-wrapper {
		min-width: auto;
	}
}

.cps-sample-kitbag-platinum__close-btn {
	position: absolute;
	top: 0;
	right: 2px;
	z-index: 99;
	padding: 10px;
	margin: 15px;
	background: transparent;
	border: 0;
	border-radius: 100%;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}
.cps-sample-kitbag-platinum,.cps-sample-kitbag-platinum__close-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.cps-sample-kitbag-platinum {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 80px 23px;
}
.cps-sample-kitbag-platinum__paragraph {
	margin: 0 0 50px;
}
.cps-sample-kitbag-platinum__user-data-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 35px;
	margin: 40px 0;
}
.cps-sample-kitbag-platinum__user-data {
	margin: 0;
}
.cps-sample-kitbag-platinum__cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.cps-sample-kitbag-platinum__cta-confirm-btn {
	margin-bottom: 20px;
}
.cps-sample-kitbag-platinum__cta-redirect-btn.pl-link {
	margin: 0;
}
.cps-sample-kitbag-platinum-products-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-platinum-products-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.cps-sample-kitbag-platinum-products {
	width: 50%;
}
.cps-sample-kitbag-platinum-products:first-child {
	margin-right: 10px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-platinum-products {
		width: 100%;
	}
}



.cps-sample-kitbag-red-wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	min-width: 600px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-red-wrapper {
		min-width: auto;
	}
}

.cps-sample-kitbag-platinum__close-btn {
	position: absolute;
	top: 0;
	right: 2px;
	z-index: 99;
	padding: 10px;
	margin: 15px;
	background: transparent;
	border: 0;
	border-radius: 100%;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}
.cps-sample-kitbag-red,.cps-sample-kitbag-platinum__close-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.cps-sample-kitbag-red {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 80px 23px;
}
.cps-sample-kitbag-platinum__paragraph {
	margin: 0 0 50px;
}
.cps-sample-kitbag-platinum__user-data-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 35px;
	margin: 40px 0;
}
.cps-sample-kitbag-platinum__user-data {
	margin: 0;
}
.cps-sample-kitbag-platinum__cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.cps-sample-kitbag-platinum__cta-confirm-btn {
	margin-bottom: 20px;
}
.cps-sample-kitbag-platinum__cta-redirect-btn.pl-link {
	margin: 0;
}
.cps-sample-kitbag-red-products-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-red-products-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.cps-sample-kitbag-red-products {
	width: 50%;
}
.cps-sample-kitbag-red-products:first-child {
	margin-right: 10px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-red-products {
		width: 100%;
	}
}

.cps-sample-kitbag-gold-wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	min-width: 600px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-gold-wrapper {
		min-width: auto;
	}
}

.cps-sample-kitbag-platinum__close-btn {
	position: absolute;
	top: 0;
	right: 2px;
	z-index: 99;
	padding: 10px;
	margin: 15px;
	background: transparent;
	border: 0;
	border-radius: 100%;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}
.cps-sample-kitbag-gold,.cps-sample-kitbag-platinum__close-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.cps-sample-kitbag-gold {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 80px 23px;
}
.cps-sample-kitbag-platinum__paragraph {
	margin: 0 0 50px;
}
.cps-sample-kitbag-platinum__user-data-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 35px;
	margin: 40px 0;
}
.cps-sample-kitbag-platinum__user-data {
	margin: 0;
}
.cps-sample-kitbag-platinum__cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.cps-sample-kitbag-platinum__cta-confirm-btn {
	margin-bottom: 20px;
}
.cps-sample-kitbag-platinum__cta-redirect-btn.pl-link {
	margin: 0;
}
.cps-sample-kitbag-gold-products-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-gold-products-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.cps-sample-kitbag-gold-products {
	width: 50%;
}
.cps-sample-kitbag-gold-products:first-child {
	margin-right: 10px;
}

@media only screen and (max-width:768px) {

	.cps-sample-kitbag-gold-products {
		width: 100%;
	}
}
