.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 .35s forwards ease-in;
	animation: lightboxFadeIn .3s .35s 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 30px;
	}
}

.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,border-color .3s ease-in-out;
	transition: background .3s ease-in,border-color .3s ease-in-out;
}

@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.cps-checkbox-label--box-disabled {
	background: rgba(0,0,0,.4);
	border: 1px solid #afafaf;
}
.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-checkbox-label--tick-radio-disabled {
	background: rgba(0,0,0,.4);
}
.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 {
	width: 100%;
	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;
		margin-bottom: 0;
	}
	to {
		height: 80px;
		margin-bottom: 10px;
	}
}

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


@keyframes expandVerticalSmall {
	0% {
		height: 0;
		margin-bottom: 0;
	}
	to {
		height: 80px;
		margin-bottom: 10px;
	}
}

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


@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%;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		flex: 0;
	}
}

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


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

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


@keyframes shrinkHorizontalMobile {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 47%;
		flex: 0 0 47%;
		width: 100%;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		flex: 0;
		width: 0;
	}
}

@-webkit-keyframes shrinkHorizontalMobile {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 47%;
		flex: 0 0 47%;
		width: 100%;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		flex: 0;
		width: 0;
	}
}


@keyframes shrinkHorizontalMobile {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 47%;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%;
		width: 100%;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-ms-flex: 0;
		flex: 0;
		width: 0;
	}
}

@-webkit-keyframes shrinkHorizontalMobile {
	0% {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 47%;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%;
		width: 100%;
	}
	to {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-ms-flex: 0;
		flex: 0;
		width: 0;
	}
}


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

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


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

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


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

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


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

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

.cps-events-wrapper {
	position: relative;
	height: 100%;
}

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

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


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

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


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

	.cps-events-wrapper {
		min-width: auto;
	}
}

.cps-events__close-btn {
	position: absolute;
	top: 0;
	right: 0;
	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-events__header {
	-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;
	padding: 40px 0 24px;
}
.cps-events__header,.cps-events__header-types-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;
}
.cps-events__header-types-separator {
	display: inline-block;
	width: 1px;
	height: 10px;
	margin: 0 10px 7px;
	background-color: #000;
}
.cps-events__header-subheading {
	font-size: 10px;
	letter-spacing: 0;
	color: #000;
	text-transform: uppercase;
}
.cps-events__header-heading {
	margin-bottom: 10px;
	font-size: 32px;
	line-height: 36px;
	color: #000;
	text-align: center;
}

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

	.cps-events__header-heading {
		padding: 0 20px;
		font-size: 24px;
		line-height: 30px;
	}
}

.cps-events__alert {
	margin: 30px 30px 0;
}

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

	.cps-events__alert {
		margin: 15px 17px 0;
	}
}

.cps-events {
	margin: 5px 128px 86px;
}

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

	.cps-events {
		margin: 5px 68px 86px;
	}
}


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

	.cps-events {
		margin: 5px 20px 60px;
	}
}

.cps-events__holder {
	padding: 60px 100px;
	border-bottom: 1px solid #e0e0e0;
}

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

	.cps-events__holder {
		padding: 60px 50px;
	}
}


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

	.cps-events__holder {
		padding: 0;
		margin: 55px 0;
		border-bottom: 0;
	}
}


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

	.cps-events__holder--margin-top-small {
		margin-top: 16px;
	}
}

.cps-events__holder--padding-bottom-none {
	padding-bottom: 0;
}
.cps-events__holder--no-border {
	border-bottom: 0;
}
.cps-events__tickets-heading {
	padding-bottom: 15px;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px solid #e0e0e0;
}

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

	.cps-events__tickets-heading {
		font-size: 20px;
	}
}

.cps-events__tickets-select {
	width: 33%;
	margin-bottom: 22px;
}
.cps-events__tickets-select .cps-form-select__tick {
	right: -25%;
}

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

	.cps-events__tickets-select {
		width: 100%;
	}
	.cps-events__tickets-select .cps-form-select__tick {
		right: 0;
	}
}

.cps-events__tickets-info {
	margin: 0;
}
.cps-events__details-heading-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: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 15px;
	margin-bottom: 37px;
	border-bottom: 1px solid #e0e0e0;
}

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

	.cps-events__details-heading-wrapper {
		-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;
		padding-bottom: 0;
		margin-bottom: 32px;
		border-bottom: 0;
	}
}

.cps-events__details-heading-wrapper--no-border {
	padding: 0 30px;
	border-bottom: 0;
}

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

	.cps-events__details-heading-wrapper--no-border {
		padding: 0;
	}
}

.cps-events__details-heading {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
}

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

	.cps-events__details-heading {
		-webkit-align-self: stretch;
		-ms-flex-item-align: stretch;
		-ms-grid-row-align: stretch;
		align-self: stretch;
		padding-bottom: 15px;
		margin-bottom: 23px;
		font-size: 20px;
		border-bottom: 1px solid #e0e0e0;
	}
}

.cps-events__details-personal-data {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 37px;
}
.cps-events__details-data-single {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 40%;
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
}
.cps-events__details-data-single:not(:last-child) {
	margin-bottom: 45px;
}

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

	.cps-events__details-data-single:not(:last-child) {
		margin-bottom: 36px;
	}
}


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

	.cps-events__details-data-single {
		-webkit-box-flex: 100%;
		-webkit-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}

.cps-events__details-data-single-label {
	margin-bottom: 14px;
	font-size: 14px;
	letter-spacing: .5px;
	color: rgba(0,0,0,.4);
}
.cps-events__details-data-single-name {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: #000;
}

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

	.cps-events__details-additional-email .cps-form-input__label {
		padding-right: 35%;
		-webkit-transform: translate(15px,54px);
		transform: translate(15px,54px);
	}
	.cps-events__details-additional-email .cps-form-input__label.cps-form-input__label-valid {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

.cps-events__accept-terms {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 25px;
}

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

	.cps-events__accept-terms {
		padding: 0;
		margin-bottom: 36px;
	}
}

.cps-events__accept-terms-text {
	margin-left: 10px;
}

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

	.cps-events__accept-terms-text {
		font-size: 14px;
		line-height: 22px;
	}
}


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

	.cps-events__accept-terms-text {
		font-size: 12px;
	}
}

.cps-events__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-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;
}

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

	.cps-events__cta-complete-btn {
		padding: 15px 35px;
	}
}

.cps-events-lightbox-b-wrapper {
	position: relative;
	height: 100%;
}

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

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


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

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


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

	.cps-events-lightbox-b-wrapper {
		min-width: auto;
	}
}

.cps-events-lightbox-b__close-btn {
	position: absolute;
	top: 0;
	right: 0;
	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-events-lightbox-b__header {
	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;
	padding: 35px 0 34px;
}

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

	.cps-events-lightbox-b__header {
		padding: 29px 39px 28px;
	}
}

.cps-events-lightbox-b__header-subheading {
	font-size: 10px;
	letter-spacing: 0;
	color: #000;
	text-transform: uppercase;
}

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

	.cps-events-lightbox-b__header-subheading {
		margin-bottom: 9px;
	}
}

.cps-events-lightbox-b__header-subheading-text:first-child {
	margin-right: 10px;
}
.cps-events-lightbox-b__header-subheading-text:last-child {
	margin-left: 10px;
}
.cps-events-lightbox-b__header-heading {
	margin-bottom: 10px;
	font-size: 32px;
	line-height: 36px;
	color: #000;
	text-align: center;
}

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

	.cps-events-lightbox-b__header-heading {
		margin-bottom: 0;
		font-size: 24px;
		line-height: 30px;
	}
}

.cps-events-lightbox-b__main-container {
	padding: 46px 193px 55px;
}

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

	.cps-events-lightbox-b__main-container {
		padding: 37px 130px 49px;
	}
}


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

	.cps-events-lightbox-b__main-container {
		padding: 37px 0 49px;
	}
}

.cps-events-lightbox-b__inner-container-information {
	padding: 0 53px;
	margin-bottom: 46px;
}

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

	.cps-events-lightbox-b__inner-container-information {
		padding: 0 25px;
		margin-bottom: 40px;
	}
}

.cps-events-lightbox-b__inner-container-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-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 50px;
}
.cps-events-lightbox-b__information-text {
	font-size: 16px;
	text-align: center;
}

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

	.cps-events-lightbox-b__information-text {
		font-size: 14px;
		line-height: 20px;
	}
}

.cps-events-lightbox-b__information-text:first-child {
	margin-bottom: 29px;
	font-weight: 700;
}

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

	.cps-events-lightbox-b__information-text:first-child {
		margin-bottom: 26px;
	}
}


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

	.cps-events-lightbox-b__tickets-heading-container {
		padding: 0 21px;
	}
}

.cps-events-lightbox-b__tickets-heading {
	padding-bottom: 15px;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px solid #e0e0e0;
}

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

	.cps-events-lightbox-b__tickets-heading {
		font-size: 20px;
	}
}

.cps-events-lightbox-b__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-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 219px;
	height: 50px;
	padding: 10px 25px;
	font-size: 10px;
}

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

	.cps-events-lightbox-b__button {
		width: 194px;
	}
}

.cps-events-lightbox-b__button:first-child {
	margin-bottom: 16px;
}

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

	.cps-events-lightbox-b__button:first-child {
		margin-bottom: 22px;
	}
}

.cps-events-lightbox-b__button:last-child {
	margin-left: 0;
}
.cps-events-lightbox-b__ticket-summary-wrapper {
	margin-bottom: 48px;
}

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

	.cps-events-lightbox-b__ticket-summary-wrapper {
		margin-bottom: 40px;
	}
}

.cps-empty-message {
	padding: 10px;
	margin-bottom: 65px;
	color: #939598;
	border: 1px dashed #939598;
}

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

	.cps-empty-message {
		padding: 40px;
		margin-bottom: 100px;
	}
}

.cps-empty-message--margin {
	margin-top: 60px;
}
.cps-empty-message__text {
	margin-bottom: 0;
}
.cps-empty-message--hidden {
	display: none;
}

@media (max-width:768px) {

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


@media (max-width:768px) {

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

.cps-marketing__header {
	position: relative;
	height: auto;
	min-height: 555px;
	padding-bottom: 31px;
	background-color: #000;
	background-repeat: no-repeat;
}

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

	.cps-marketing__header {
		background-color: #000;
	}
}


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

	.cps-marketing__header {
		min-height: 551px;
		padding-bottom: 75px;
		background-position: 0 0;
	}
}

.cps-marketing__header:before {
	height: auto;
	background-image: none;
}
.cps-marketing__header .cps-marketing__header-bg-image {
	display: block;
}
.cps-marketing__header-middle-bar {
	position: relative;
	z-index: 1;
}
.cps-marketing__header--pro {
	background-position: 100% 0;
}
.cps-marketing__header--consumer {
	min-height: 460px;
	background-position: top;
}

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

	.cps-marketing__header--consumer {
		min-height: 551px;
	}
}

header .cps-marketing__header-bg-image {
	display: block;
}
header .cps-marketing__header-bg-image:after {
	height: 100%;
	background-image: none;
}

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

	header .cps-marketing__header-bg-image,header .cps-marketing__header-bg-image img {
		width: auto;
	}
}


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

	header .cps-marketing__header-bg-image,header .cps-marketing__header-bg-image img {
		width: 100%;
		height: auto;
	}
}

.cps-header {
	z-index: 2;
	display: block;
}
.cps-header__wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
}
.cps-marketing__banner {
	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;
	padding: 0 20px;
	margin-top: 100px;
	text-align: center;
}

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

	.cps-marketing__banner {
		display: block;
		max-width: 785px;
		padding: 0;
	}
}

.cps-marketing__header--pro .cps-marketing__banner {
	margin: 92px auto 0;
}

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

	.cps-marketing__header--pro .cps-marketing__banner {
		margin: 145px auto 0;
	}
}

.cps-marketing__header--consumer .cps-marketing__banner {
	margin: 127px auto 0;
}

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

	.cps-marketing__header--consumer .cps-marketing__banner {
		margin: 210px auto 0;
	}
}

.cps-marketing__banner-logo {
	width: 77px;
	margin-top: 5px;
	margin-bottom: 28px;
}

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

	.cps-marketing__banner-logo {
		width: 120px;
		margin-bottom: 52px;
	}
}

.cps-marketing__banner-heading {
	margin-bottom: 25px;
	font-size: 32px;
	color: #fff;
}

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

	.cps-marketing__banner-heading {
		line-height: 1;
	}
}


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

	.cps-marketing__banner-heading {
		margin-bottom: 40px;
		font-size: 64px;
	}
}

.cps-marketing__header--consumer .cps-marketing__banner-heading {
	margin-bottom: 18px;
}
.cps-marketing__banner-paragraph {
	max-width: 100%;
	margin-bottom: 42px;
	font-size: 16px;
	line-height: 1.7;
	color: #fff;
}

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

	.cps-marketing__banner-paragraph {
		margin-bottom: 30px;
		font-size: 18px;
	}
}

.cps-marketing__header--consumer .cps-marketing__banner-paragraph {
	margin-bottom: 32px;
}
.cps-marketing__banner-cta-btn {
	width: 220px;
	padding: 15px;
	margin-bottom: 30px;
	font-size: 10px;
}
.cps-marketing__banner-cta-btn--primary {
	color: #fff;
}
.cps-marketing__banner-cta-btn--secondary {
	color: #fff;
	border: 2px solid #fff;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.cps-marketing__banner-cta-btn--secondary:link,.cps-marketing__banner-cta-btn--secondary:visited {
	color: #fff;
}
.cps-marketing__banner-cta-btn--secondary:hover {
	color: #000;
	background-color: #fff;
}
.cps-marketing__page-header {
	height: auto;
	min-height: auto;
	padding: 50px 25px 0;
	color: #000;
	text-align: center;
}
.cps-marketing__page-header:before {
	height: auto;
}
.cps-marketing__page-header .cps-marketing__page-header-heading {
	padding: 0 20px;
	margin-top: 10px;
	margin-bottom: 18px;
}
.cps-marketing__page-header .cps-marketing__page-header-sub-heading {
	max-width: 800px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
}

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

	.cps-marketing__page-header {
		padding: 100px 20px 35px;
		margin-top: 0;
	}
}

.cps-marketing__benefits-content {
	width: 100%;
	padding: 40px 0;
}

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

	.cps-marketing__benefits-content {
		padding: 10px 0 40px;
	}
}

.cps-marketing__benefits-content-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 40px 0 0;
	margin: 0 35px;
	color: #000;
	border-top: 1px solid #eceded;
}

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

	.cps-marketing__benefits-content-container {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 20px 0;
		margin: 0 auto;
		border-top: 0;
	}
}

.cps-marketing__benefits-content-item-wrapper {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding-bottom: 20px;
}

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

	.cps-marketing__benefits-content-item-wrapper {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 22%;
		-ms-flex: 0 0 22%;
		flex: 0 0 22%;
	}
}

.cps-marketing__benefits-content-item {
	padding: 0;
}
.cps-marketing__benefits-content-icon,.cps-marketing__benefits-content-icon-img,.cps-marketing__benefits-content-img,.cps-marketing__benefits-content-picture {
	height: auto;
	max-width: 100%;
}
.cps-marketing__benefits-content-description {
	margin-top: 15px;
}
.cps-marketing__benefits-content-heading {
	margin-bottom: 15px;
	font-size: 28px;
	line-height: 1.3;
}
.cps-marketing__benefits-content-paragraph {
	font-size: 13px;
	line-height: 1.5;
}
.cps-marketing__cta {
	text-align: center;
}
.cps-marketing__benefits-content--pro .cps-marketing__benefits-content-icon {
	display: block;
	height: 54px;
	margin-bottom: 20px;
}
.cps-marketing__benefits-content--consumer {
	padding-top: 45px;
}

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

	.cps-marketing__benefits-content--consumer.cps-marketing__benefits-content {
		padding: 30px 0 40px;
	}
}

.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-container {
	padding-top: 0;
	margin-bottom: 30px;
	border: 0;
}
.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-item-wrapper {
	padding-bottom: 40px;
}

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

	.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-item-wrapper {
		padding-bottom: 0;
	}
}

.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-description {
	margin-top: 22px;
}

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

	.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-description {
		margin-top: 25px;
	}
}

.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-heading {
	margin-bottom: 20px;
}

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

	.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-heading {
		margin-top: 15px;
	}
}

.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-paragraph {
	font-size: 13px;
	line-height: 1.5;
}

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

	.cps-marketing__benefits-content--consumer .cps-marketing__benefits-content-paragraph {
		font-size: 16px;
	}
}

.cps-marketing__benefits-content--consumer .cps-marketing__cta {
	margin-bottom: 45px;
	text-align: center;
}
.cps-marketing__benefits-content--consumer .cps-marketing__cta-btn {
	width: 215px;
	padding: 15px 32px;
}
.cps-marketing-more-benefits__other-benefits-wrapper {
	height: 0;
	overflow: hidden;
	-webkit-transition: height .3s ease-in;
	transition: height .3s ease-in;
}
.cps-marketing-more-benefits__hide.pl-link {
	opacity: 0;
	visibility: hidden;
}
.cps-marketing-more-benefits__heading-box {
	margin-bottom: 50px;
}
.cps-marketing-more-benefits__heading {
	margin-bottom: 15px;
	font-size: 28px;
	line-height: 1.3;
	color: #000;
}
.cps-marketing-more-benefits-wrapper {
	border-top: 1px solid #eceded;
}
.cps-marketing-more-benefits--item {
	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;
	padding: 30px 10px;
	overflow: hidden;
	cursor: pointer;
}
.cps-marketing-more-benefits--item:hover {
	background: #fbfbfb;
}
.cps-marketing-more-benefits--item__title {
	max-width: 90%;
	font-size: 16px;
	font-weight: 700;
	color: #000;
}
.cps-marketing-more-benefits--item__title .pl-tag--new-small {
	position: relative;
	bottom: 2px;
}
.cps-marketing-more-benefits--content-wrapper {
	height: 0;
	overflow: hidden;
	-webkit-transition: height .3s ease-in;
	transition: height .3s ease-in;
}
.cps-marketing-more-benefits--content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px 10px;
}
.cps-marketing-more-benefits--item__arrow {
	width: 20px;
	height: 20px;
	color: #006fb4;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
	-webkit-transform-origin: 10px 6px;
	transform-origin: 10px 6px;
}

@media (max-width:544px) {

	.cps-marketing-more-benefits--item__arrow {
		-webkit-transform-origin: 10px 5px;
		transform-origin: 10px 5px;
	}
}

.cps-marketing-more-benefits--item__arrow.icon-right-c-t:before {
	width: 22px;
	height: 22px;
	font-size: 20px;
}
.cps-marketing-more-benefits--item__arrow--open {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.cps-marketing-more-benefits--content__ul li {
	line-height: 46px;
}
.cps-marketing-more-benefits--hidden {
	display: none;
}
.cps-marketing-more-benefits__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;
	margin: 0 0 70px;
}

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

	.cps-marketing-more-benefits__view-more-wrapper {
		margin: 0 0 50px;
	}
}

.cps-marketing-more-benefits__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-marketing-more-benefits__toggle-button.pl-link+.pl-link {
	margin: 0;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.cps-marketing-more-benefits__toggle-button--top {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.cps-marketing-more-benefits__label-show {
	margin-bottom: 9px;
}
.cps-marketing-more-benefits__label-hide {
	margin-top: 9px;
}
.cps-marketing-more-benefits__hide-more-button-bottom {
	margin-top: 50px;
}
.cps-marketing-more-benefits__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
.cps-marketing-more-benefits__picture-wrapper {
	min-height: 200px;
	margin: 20px 0;
}
.cps-marketing-more-benefits__cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin-bottom: 25px;
}

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

	.cps-marketing-more-benefits__cta {
		-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;
	}
}

@charset "UTF-8";

@font-face {
	font-family: canon-icon;
	src: url(../fonts/canon-icon.eot);
	src: url(../fonts/canon-icon.eot?#iefix) format("eot"),url(../fonts/canon-icon.woff) format("woff"),url(../fonts/canon-icon.ttf) format("truetype"),url(../fonts/canon-icon.svg#canon-icon) format("svg");
}
.icon-aperture-h-t:before,.icon-aperture-h:before,.icon-aperture-t:before,.icon-aperture:before,.icon-article-c-h-t:before,.icon-article-c-h:before,.icon-article-c-t:before,.icon-article-c:before,.icon-article-t:before,.icon-article:before,.icon-bookmark-save:before,.icon-bookmark:before,.icon-camera-c-h-t:before,.icon-camera-c-h:before,.icon-camera-c-t:before,.icon-camera-c:before,.icon-camera-h-t:before,.icon-camera-h:before,.icon-camera-t:before,.icon-camera:before,.icon-circle-t:before,.icon-circle:before,.icon-close-c-h-t:before,.icon-close-c-h:before,.icon-close-c-t:before,.icon-close-c:before,.icon-close-t:before,.icon-close:before,.icon-down-c-h-t:before,.icon-down-c-h:before,.icon-down-c-t:before,.icon-down-c:before,.icon-down-t:before,.icon-down:before,.icon-facebook:before,.icon-favourite-c-h-t:before,.icon-favourite-c-h:before,.icon-favourite-c-t:before,.icon-favourite-c:before,.icon-favourite-h-t:before,.icon-favourite-h:before,.icon-favourite-t:before,.icon-favourite:before,.icon-gallery-broken:before,.icon-gallery-c-h:before,.icon-gallery-c:before,.icon-gallery-full:before,.icon-gallery-grid:before,.icon-gallery-h-t:before,.icon-gallery-h:before,.icon-gallery-t:before,.icon-gallery:before,.icon-gplus:before,.icon-image-c-h-t:before,.icon-image-c-h:before,.icon-image-c-t:before,.icon-image-c:before,.icon-image-h-t:before,.icon-image-h:before,.icon-image-t:before,.icon-image:before,.icon-info-h-t:before,.icon-info-h:before,.icon-info-t:before,.icon-info:before,.icon-instagram:before,.icon-iso-h-t:before,.icon-iso-h:before,.icon-iso-t:before,.icon-iso:before,.icon-left-c-h-t:before,.icon-left-c-h:before,.icon-left-c-t:before,.icon-left-c:before,.icon-left-t:before,.icon-left:before,.icon-line:before,.icon-link:before,.icon-linkedin:before,.icon-location-c-h-t:before,.icon-location-c-h:before,.icon-location-c-t:before,.icon-location-c:before,.icon-location-h-t:before,.icon-location-h:before,.icon-location-t:before,.icon-location:before,.icon-login-c-h-t:before,.icon-login-c-h:before,.icon-login-c-t:before,.icon-login-c:before,.icon-login-h-sm:before,.icon-login-h-t:before,.icon-login-h:before,.icon-login-sm:before,.icon-login-t:before,.icon-login:before,.icon-options-c-h-t:before,.icon-options-c-h:before,.icon-options-c-t:before,.icon-options-c:before,.icon-options-h-t:before,.icon-options-h:before,.icon-options-t:before,.icon-options:before,.icon-palette-c-h-t:before,.icon-palette-c-h:before,.icon-palette-c-t:before,.icon-palette-c:before,.icon-palette-h-t:before,.icon-palette-h:before,.icon-palette-t:before,.icon-palette:before,.icon-phone:before,.icon-photo-c-h-t:before,.icon-photo-c-h:before,.icon-photo-c-t:before,.icon-photo-c:before,.icon-photo-h-t:before,.icon-photo-h:before,.icon-photo-t:before,.icon-photo:before,.icon-pinterest:before,.icon-play-c-h-t:before,.icon-play-c-h:before,.icon-play-c-t:before,.icon-play-c:before,.icon-play-h-t:before,.icon-play-h:before,.icon-play-t:before,.icon-play:before,.icon-plus-c-t:before,.icon-plus-c:before,.icon-plus-t:before,.icon-plus:before,.icon-pluse-c-h-t:before,.icon-pluse-c-h:before,.icon-right-c-h-t:before,.icon-right-c-h:before,.icon-right-c-t:before,.icon-right-c:before,.icon-right-t:before,.icon-right:before,.icon-search-h-sm:before,.icon-search-h-t:before,.icon-search-h:before,.icon-search-sm:before,.icon-search-t:before,.icon-search:before,.icon-see-more-c-h-t:before,.icon-see-more-c-h:before,.icon-see-more-c-t:before,.icon-see-more-c:before,.icon-share-c-h-t:before,.icon-share-c-h:before,.icon-share-c-t:before,.icon-share-c:before,.icon-share-h-t:before,.icon-share-h:before,.icon-share-t:before,.icon-share:before,.icon-shop-h-t:before,.icon-shop-h:before,.icon-shop-t:before,.icon-shop:before,.icon-slideshare:before,.icon-tags-c-h-t:before,.icon-tags-c-h:before,.icon-tags-c-t:before,.icon-tags-c:before,.icon-tags-h-t:before,.icon-tags-h:before,.icon-tags-t:before,.icon-tags:before,.icon-tick-c-h-t:before,.icon-tick-c-h:before,.icon-tick-c-t:before,.icon-tick-c:before,.icon-tick-t:before,.icon-tick:before,.icon-time-h-t:before,.icon-time-h:before,.icon-time-t:before,.icon-time:before,.icon-twitter:before,.icon-up-c-h-t:before,.icon-up-c-h:before,.icon-up-c-t:before,.icon-up-c:before,.icon-up-t:before,.icon-up:before,.icon-video-c-h-t:before,.icon-video-c-h:before,.icon-video-c-t:before,.icon-video-c:before,.icon-video-h-t:before,.icon-video-h:before,.icon-video-t:before,.icon-video:before,.icon-view-c-h-t:before,.icon-view-c-h:before,.icon-view-c-t:before,.icon-view-c:before,.icon-view-h-t:before,.icon-view-h:before,.icon-view-t:before,.icon-view:before,.icon-weather-c-h-t:before,.icon-weather-c-h:before,.icon-weather-c-t:before,.icon-weather-c:before,.icon-weather-h-t:before,.icon-weather-h:before,.icon-weather-t:before,.icon-weather:before,.icon-xing:before,.icon-youtube:before {
	font-family: canon-icon;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-decoration: none;
	text-transform: none;
}
.icon-aperture-h-t:before {
	content: "";
}
.icon-aperture-h:before {
	content: "";
}
.icon-aperture-t:before {
	content: "";
}
.icon-aperture:before {
	content: "";
}
.icon-article-c-h-t:before {
	content: "";
}
.icon-article-c-h:before {
	content: "";
}
.icon-article-c-t:before {
	content: "";
}
.icon-article-c:before {
	content: "";
}
.icon-article-t:before {
	content: "";
}
.icon-article:before {
	content: "";
}
.icon-camera-c-h-t:before {
	content: "";
}
.icon-camera-c-h:before {
	content: "";
}
.icon-camera-c-t:before {
	content: "";
}
.icon-camera-c:before {
	content: "";
}
.icon-camera-h-t:before {
	content: "";
}
.icon-camera-h:before {
	content: "";
}
.icon-camera-t:before {
	content: "";
}
.icon-camera:before {
	content: "";
}
.icon-circle-t:before {
	content: "";
}
.icon-circle:before {
	content: "";
}
.icon-close-c-h-t:before {
	content: "";
}
.icon-close-c-h:before {
	content: "";
}
.icon-close-c-t:before {
	content: "";
}
.icon-close-c:before {
	content: "";
}
.icon-close-t:before {
	content: "";
}
.icon-close:before {
	content: "";
}
.icon-down-c-h-t:before {
	content: "";
}
.icon-down-c-h:before {
	content: "";
}
.icon-down-c-t:before {
	content: "";
}
.icon-down-c:before {
	content: "";
}
.icon-down-t:before {
	content: "";
}
.icon-down:before {
	content: "";
}
.icon-facebook:before {
	content: "";
}
.icon-favourite-c-h-t:before {
	content: "";
}
.icon-favourite-c-h:before {
	content: "";
}
.icon-favourite-c-t:before {
	content: "";
}
.icon-favourite-c:before {
	content: "";
}
.icon-favourite-h-t:before {
	content: "";
}
.icon-favourite-h:before {
	content: "";
}
.icon-favourite-t:before {
	content: "";
}
.icon-favourite:before {
	content: "";
}
.icon-gallery-broken:before {
	content: "";
}
.icon-gallery-c-h:before {
	content: "";
}
.icon-gallery-c:before {
	content: "";
}
.icon-gallery-full:before {
	content: "";
}
.icon-gallery-grid:before {
	content: "";
}
.icon-gallery-h-t:before {
	content: "";
}
.icon-gallery-h:before {
	content: "";
}
.icon-gallery-t:before {
	content: "";
}
.icon-gallery:before {
	content: "";
}
.icon-gplus:before {
	content: "";
}
.icon-image-c-h-t:before {
	content: "";
}
.icon-image-c-h:before {
	content: "";
}
.icon-image-c-t:before {
	content: "";
}
.icon-image-c:before {
	content: "";
}
.icon-image-h-t:before {
	content: "";
}
.icon-image-h:before {
	content: "";
}
.icon-image-t:before {
	content: "";
}
.icon-image:before {
	content: "";
}
.icon-info-h-t:before {
	content: "";
}
.icon-info-h:before {
	content: "";
}
.icon-info-t:before {
	content: "";
}
.icon-info:before {
	content: "";
}
.icon-instagram:before {
	content: "";
}
.icon-iso-h-t:before {
	content: "";
}
.icon-iso-h:before {
	content: "";
}
.icon-iso-t:before {
	content: "";
}
.icon-iso:before {
	content: "";
}
.icon-left-c-h-t:before {
	content: "";
}
.icon-left-c-h:before {
	content: "";
}
.icon-left-c-t:before {
	content: "";
}
.icon-left-c:before {
	content: "";
}
.icon-left-t:before {
	content: "";
}
.icon-left:before {
	content: "";
}
.icon-link:before {
	content: "";
}
.icon-linkedin:before {
	content: "";
}
.icon-location-c-h-t:before {
	content: "";
}
.icon-location-c-h:before {
	content: "";
}
.icon-location-c-t:before {
	content: "";
}
.icon-location-c:before {
	content: "";
}
.icon-location-h-t:before {
	content: "";
}
.icon-location-h:before {
	content: "";
}
.icon-location-t:before {
	content: "";
}
.icon-location:before {
	content: "";
}
.icon-login-c-h-t:before {
	content: "";
}
.icon-login-c-h:before {
	content: "";
}
.icon-login-c-t:before {
	content: "";
}
.icon-login-c:before {
	content: "";
}
.icon-login-h-t:before {
	content: "";
}
.icon-login-h:before {
	content: "";
}
.icon-login-t:before {
	content: "";
}
.icon-login-sm:before {
	content: "";
}
.icon-login-h-sm:before {
	content: "";
}
.icon-login:before {
	content: "";
}
.icon-options-c-h-t:before {
	content: "";
}
.icon-options-c-h:before {
	content: "";
}
.icon-options-c-t:before {
	content: "";
}
.icon-options-c:before {
	content: "";
}
.icon-options-h-t:before {
	content: "";
}
.icon-options-h:before {
	content: "";
}
.icon-options-t:before {
	content: "";
}
.icon-options:before {
	content: "";
}
.icon-palette-c-h-t:before {
	content: "";
}
.icon-palette-c-h:before {
	content: "";
}
.icon-palette-c-t:before {
	content: "";
}
.icon-palette-c:before {
	content: "";
}
.icon-palette-h-t:before {
	content: "";
}
.icon-palette-h:before {
	content: "";
}
.icon-palette-t:before {
	content: "";
}
.icon-palette:before {
	content: "";
}
.icon-phone:before {
	content: "";
}
.icon-photo-c-h-t:before {
	content: "";
}
.icon-photo-c-h:before {
	content: "";
}
.icon-photo-c-t:before {
	content: "";
}
.icon-photo-c:before {
	content: "";
}
.icon-photo-h-t:before {
	content: "";
}
.icon-photo-h:before {
	content: "";
}
.icon-photo-t:before {
	content: "";
}
.icon-photo:before {
	content: "";
}
.icon-pinterest:before {
	content: "";
}
.icon-play-c-h-t:before {
	content: "";
}
.icon-play-c-h:before {
	content: "";
}
.icon-play-c-t:before {
	content: "";
}
.icon-play-c:before {
	content: "";
}
.icon-play-h-t:before {
	content: "";
}
.icon-play-h:before {
	content: "";
}
.icon-play-t:before {
	content: "";
}
.icon-play:before {
	content: "";
}
.icon-plus-c-t:before {
	content: "";
}
.icon-plus-c:before {
	content: "";
}
.icon-plus-t:before {
	content: "";
}
.icon-plus:before {
	content: "";
}
.icon-pluse-c-h-t:before {
	content: "";
}
.icon-pluse-c-h:before {
	content: "";
}
.icon-right-c-h-t:before {
	content: "";
}
.icon-right-c-h:before {
	content: "";
}
.icon-right-c-t:before {
	content: "";
}
.icon-right-c:before {
	content: "";
}
.icon-right-t:before {
	content: "";
}
.icon-right:before {
	content: "";
}
.icon-search-h-t:before {
	content: "";
}
.icon-search-h:before {
	content: "";
}
.icon-search-t:before {
	content: "";
}
.icon-search-h-sm:before {
	content: "";
}
.icon-search-sm:before {
	content: "";
}
.icon-search:before {
	content: "";
}
.icon-see-more-c-h-t:before {
	content: "";
}
.icon-see-more-c-h:before {
	content: "";
}
.icon-see-more-c-t:before {
	content: "";
}
.icon-see-more-c:before {
	content: "";
}
.icon-share-c-h-t:before {
	content: "";
}
.icon-share-c-h:before {
	content: "";
}
.icon-share-c-t:before {
	content: "";
}
.icon-share-c:before {
	content: "";
}
.icon-share-h-t:before {
	content: "";
}
.icon-share-h:before {
	content: "";
}
.icon-share-t:before {
	content: "";
}
.icon-share:before {
	content: "";
}
.icon-shop-h-t:before {
	content: "";
}
.icon-shop-h:before {
	content: "";
}
.icon-shop-t:before {
	content: "";
}
.icon-shop:before {
	content: "";
}
.icon-slideshare:before {
	content: "";
}
.icon-tags-c-h-t:before {
	content: "";
}
.icon-tags-c-h:before {
	content: "";
}
.icon-tags-c-t:before {
	content: "";
}
.icon-tags-c:before {
	content: "";
}
.icon-tags-h-t:before {
	content: "";
}
.icon-tags-h:before {
	content: "";
}
.icon-tags-t:before {
	content: "";
}
.icon-tags:before {
	content: "";
}
.icon-tick-c-h-t:before {
	content: "";
}
.icon-tick-c-h:before {
	content: "";
}
.icon-tick-c-t:before {
	content: "";
}
.icon-tick-c:before {
	content: "";
}
.icon-tick-t:before {
	content: "";
}
.icon-tick:before {
	content: "";
}
.icon-time-h-t:before {
	content: "";
}
.icon-time-h:before {
	content: "";
}
.icon-time-t:before {
	content: "";
}
.icon-time:before {
	content: "";
}
.icon-twitter:before {
	content: "";
}
.icon-up-c-h-t:before {
	content: "";
}
.icon-up-c-h:before {
	content: "";
}
.icon-up-c-t:before {
	content: "";
}
.icon-up-c:before {
	content: "";
}
.icon-up-t:before {
	content: "";
}
.icon-up:before {
	content: "";
}
.icon-video-c-h-t:before {
	content: "";
}
.icon-video-c-h:before {
	content: "";
}
.icon-video-c-t:before {
	content: "";
}
.icon-video-c:before {
	content: "";
}
.icon-video-h-t:before {
	content: "";
}
.icon-video-h:before {
	content: "";
}
.icon-video-t:before {
	content: "";
}
.icon-video:before {
	content: "";
}
.icon-view-c-h-t:before {
	content: "";
}
.icon-view-c-h:before {
	content: "";
}
.icon-view-c-t:before {
	content: "";
}
.icon-view-c:before {
	content: "";
}
.icon-view-h-t:before {
	content: "";
}
.icon-view-h:before {
	content: "";
}
.icon-view-t:before {
	content: "";
}
.icon-view:before {
	content: "";
}
.icon-weather-c-h-t:before {
	content: "";
}
.icon-weather-c-h:before {
	content: "";
}
.icon-weather-c-t:before {
	content: "";
}
.icon-weather-c:before {
	content: "";
}
.icon-weather-h-t:before {
	content: "";
}
.icon-weather-h:before {
	content: "";
}
.icon-weather-t:before {
	content: "";
}
.icon-weather:before {
	content: "";
}
.icon-youtube:before {
	content: "";
}
.icon-xing:before {
	content: "";
}
.icon-line:before {
	content: "";
}
.icon-bookmark:before {
	content: "";
}
.icon-bookmark-save:before {
	content: "";
}
.cps-content-video {
	display: block;
	min-height: auto;
	margin: 35px 0 40px;
}
.cps-content-video__video-launcher {
	width: 100%;
	padding: 0;
}
.cps-content-video__video-launcher:after {
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
}
.cps-content-video .pl-hero {
	min-height: 0;
	padding: 0;
}
.cps-content-video .pl-cover__close {
	padding: 10px;
}

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

	.cps-content-video .pl-cover__close {
		padding: 0;
	}
}

.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: 50px;
	font-weight: 100;
	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: 16px;
	font-weight: 400;
	color: #a8a9a9;
}

@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: 700;
	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--product-points {
	position: absolute;
	width: 100%;
	height: 100%;
}
.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--product-points {
	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-tooltip__content--product-points: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-tooltip__paragraph {
	margin: 0;
	font-weight: 300;
}
.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-marketing__contextual-band {
	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;
	height: 225px;
	color: #fff;
	text-align: center;
	background-color: #26282a;
}

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

	.cps-marketing__contextual-band {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		height: 210px;
	}
}

.cps-marketing__contextual-band-text {
	padding: 0 50px 15px;
}

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

	.cps-marketing__contextual-band-text {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 0;
		margin-right: 80px;
		margin-bottom: 0;
	}
}

.cps-marketing__contextual-band-btn {
	width: 215px;
	padding: 15px 32px;
}
.cps-marketing__exceptional-benefits {
	padding: 65px 0 40px;
	color: #000;
	background-color: #f5f6f6;
}

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

	.cps-marketing__exceptional-benefits {
		padding: 90px 0;
	}
}

.cps-marketing__exceptional-benefits-heading {
	padding: 0 20px;
	margin: 0 auto 75px;
	font-size: 32px;
	line-height: 1;
	text-align: center;
}

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

	.cps-marketing__exceptional-benefits-heading {
		width: 615px;
		margin: 0 auto 90px;
		font-size: 40px;
	}
}

.cps-marketing__exceptional-benefits-panel {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

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

	.cps-marketing__exceptional-benefits-panel {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.cps-marketing__exceptional-benefits-item {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 34%;
	-ms-flex: 1 0 34%;
	flex: 1 0 34%;
	padding: 0 15px;
	margin-bottom: 50px;
	text-align: center;
}

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

	.cps-marketing__exceptional-benefits-item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 24%;
		-ms-flex: 0 0 24%;
		flex: 0 0 24%;
		margin-bottom: 20px;
	}
}

.cps-marketing__exceptional-benefits-icon {
	display: block;
	height: 70px;
}
.cps-marketing__exceptional-benefits-title {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}

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

	.cps-marketing__exceptional-benefits-title {
		margin-top: 35px;
		font-size: 28px;
	}
}

.cps-textual-overview--bg-white {
	height: 100%;
	padding: 20px;
}

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

	.cps-textual-overview--bg-white {
		padding: 0;
	}
}

.cps-textual-overview-wrapper--pro {
	background-image: url(/assets/images/cps/canon-dashboard-bg.png);
}

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

	.cps-textual-overview-wrapper--pro {
		min-height: 100vh;
	}
}

.cps-textual-overview-wrapper--consumer {
	background-image: url(/assets/images/cps/canon-consumer-dashboard-bg.png);
}

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

	.cps-textual-overview-wrapper--consumer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		min-height: 100vh;
	}
}

.cps-textual-overview {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-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;
	padding: 200px 70px 15px;
}

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

	.cps-textual-overview {
		padding: 150px 40px 15px;
	}
}


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

	.cps-textual-overview {
		padding: 30px 30px 15px;
	}
}


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

	.cps-textual-overview {
		padding: 30px 15px 20px;
	}
}

.cps-textual-overview--consumer {
	padding-bottom: 0;
}

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

	.cps-textual-overview--consumer {
		padding: 40px 30px 0;
		margin-top: auto;
		margin-bottom: auto;
	}
}


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

	.cps-textual-overview--consumer {
		margin-top: 0;
	}
}

.cps-textual-overview__img-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;
}

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

	.cps-textual-overview__img-wrapper {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.cps-textual-overview__img {
	width: 120px;
	height: auto;
}
.cps-textual-overview__heading {
	margin-bottom: 15px;
}

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

	.cps-textual-overview__heading {
		text-align: center;
	}
}


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

	.cps-textual-overview__heading {
		font-size: 24px;
	}
}

.cps-textual-overview__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-height: 325px;
}

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

	.cps-textual-overview__content {
		max-height: 100%;
	}
}

.cps-textual-overview__content--pro {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	min-height: 240px;
}

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

	.cps-textual-overview__content--pro {
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}


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

	.cps-textual-overview__content--consumer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.cps-textual-overview__introduction-wrapper {
	width: 46%;
	height: 100%;
}

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

	.cps-textual-overview__introduction-wrapper {
		-webkit-box-flex: 1;
		-webkit-flex: auto;
		-ms-flex: auto;
		flex: auto;
		width: 100%;
	}
}

.cps-textual-overview__introduction-wrapper--pro {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 80%;
	-ms-flex: 0 0 80%;
	flex: 0 0 80%;
	margin-bottom: auto;
}
.cps-textual-overview__introduction-wrapper--consumer {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}
.cps-textual-overview__introduction {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.cps-textual-overview__description {
	margin-bottom: auto;
}

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

	.cps-textual-overview__description {
		margin-bottom: 35px;
		text-align: center;
	}
}

.cps-textual-overview__legal {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 5%;
	-ms-flex: 0 0 5%;
	flex: 0 0 5%;
	width: 46%;
	height: 100%;
	margin-bottom: 0;
	color: #a8a9a9;
}

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

	.cps-textual-overview__legal {
		-webkit-box-flex: 1;
		-webkit-flex: auto;
		-ms-flex: auto;
		flex: auto;
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		width: 100%;
		color: #fff;
		text-align: center;
	}
}

.cps-textual-overview__terms {
	font-weight: 700;
}
.cps-textual-overview__terms.pl-link {
	color: #a8a9a9;
}

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

	.cps-textual-overview__terms.pl-link {
		color: #fff;
	}
}

.cps-textual-overview__features-wrapper {
	width: 43%;
	height: 100%;
	margin-left: auto;
}

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

	.cps-textual-overview__features-wrapper {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		-webkit-box-flex: 1;
		-webkit-flex: auto;
		-ms-flex: auto;
		flex: auto;
		width: 85%;
		margin-bottom: 20px;
		margin-left: 0;
	}
}


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

	.cps-textual-overview__features-wrapper {
		width: 100%;
	}
}

.cps-textual-overview__features-wrapper--pro {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
}

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

	.cps-textual-overview__features-wrapper--consumer {
		margin-bottom: 40px;
	}
}

.cps-textual-overview__features {
	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%;
	border-radius: 5px;
}
.cps-textual-overview__features-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.cps-textual-overview__features-list__item:not(:last-child) {
	margin-bottom: 10px;
}
.cps-textual-overview__cta-wrapper {
	-webkit-box-flex: 1;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
	min-height: 100%;
}
.cps-textual-overview__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-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;
	margin: 70px 0;
}

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

	.cps-textual-overview__cta {
		margin: 35px 0;
	}
}


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

	.cps-textual-overview__cta {
		margin: 20px;
	}
}


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

	.cps-textual-overview__cta--consumer {
		margin-bottom: 25px;
	}
}

.cps-textual-overview__cta-button {
	padding: 10px 90px;
}
.cps-textual-overview__cta-reject {
	margin-top: 28px;
	font-size: 12px;
}
.cps-textual-overview__cta-reject.pl-link {
	margin-left: 0;
	color: #fff;
}
.cps-textual-overview__cta-navigation-wrapper {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
}
.cps-textual-overview__cta-navigation-list {
	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: 0;
	margin: 0;
	list-style: none;
}
.cps-textual-overview__cta-navigation-list--consumer {
	padding-bottom: 15px;
}
.cps-textual-overview__cta-navigation-dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 6px;
	background-color: hsla(0,0%,100%,.2);
	border-radius: 50%;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.cps-textual-overview__cta-navigation-dot--active {
	background-color: #fff;
}
.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-red__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-red__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-red__paragraph {
	margin: 0 0 50px;
}
.cps-sample-kitbag-red__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-red__user-data {
	margin: 0;
}
.cps-sample-kitbag-red__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-red__cta-confirm-btn {
	margin-bottom: 20px;
}
.cps-sample-kitbag-red__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-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-sample-kitbag-silver-products {
	width: 50%;
} */

.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-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-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-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-gold__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-gold__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-gold__paragraph {
	margin: 0 0 50px;
}
.cps-sample-kitbag-gold__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-gold__user-data {
	margin: 0;
}
.cps-sample-kitbag-gold__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-gold__cta-confirm-btn {
	margin-bottom: 20px;
}
.cps-sample-kitbag-gold__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%;
	}
}

.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%;
	}
}

