/* HEADER *********************************************************************/

.cp-header {
	width: 100%;
	height: calc(100vh - 4.0625rem);
	position: relative;
	overflow: hidden;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4.0625rem;
}

.cp-header.cp-header-tiles {
	justify-content: space-between;
}

.cp-header>a {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	overflow: hidden;
}

/*.cp-header>a::after {
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #a0a0a0;
	opacity: 0;
	transition: opacity .5s ease;
}

.cp-header>a:hover::after {
	opacity: .5;
}*/

.cp-header.cp-header-tiles>a {
	position: relative;
	width: calc(50% - 0.125rem);
}

.cp-header>a>img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
    max-width: unset;
	object-fit: cover;
}

.cp-header>a>img.bw {
	filter: url(#catGrayColorize);
	z-index: 1;
}

.cp-header>a>img.colorized {
	opacity: 0;
	z-index: 2;
	transition: opacity .6s ease;
}

.cp-header>a:hover>img.colorized {
	opacity: 1;
}

@media (max-width: 991px) {
	.cp-header.cp-header-tiles {
		flex-direction: column;
	}

	.cp-header.cp-header-tiles>a {
		margin-top: .25rem;
		width: 100%;
		min-height: 10rem;
	}

	.cp-header.cp-header-tiles>a>img {
		/*height: unset;*/
	}
}

.cp-header-button {
	color: #fff;
	border-color: #fff;
	z-index: 3;
	position: relative;
}

a:hover .cp-header-button {
	color: #fff;
}

.cp-header-button::before, .cp-header-button::after {
	border-color: #fff;
}

a:hover .cp-header-button::before, a:hover .cp-header-button::after {
	border-color: #a0a0a0;
}

.cp-header>a:hover .header-arrow-box>span, .cp-header>a:hover .header-arrow-box>.header-arrow {
	opacity: 1;
}

@media (hover: none) {
	.cp-header>a>img.colorized {
		opacity: 1;
	}

	.cp-header-button.box-button::before, .cp-header-button.box-button::after {
		width: calc(100% + .5rem);
		height: calc(100% + .5rem);
		border-color: #88888b;
	}
}

/* SECTIONS *******************************************************************/

.pl-header {
	background-color: #252525;
	width: 100%;
}

@media (max-width: 991px) {
	.pl-header {
		margin-top: -1px;
	}
}

.pl-header>a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	z-index: 0;
	padding: 1.625rem 1rem;
}

.pl-header>a::before {
	content: ' ';
	display: block;
	width: 0;
	height: 100%;
	background-color: #a0a0a0;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition: width .75s ease;
	z-index: -1;
}

.pl-header>a:hover::before {
	width: 100%;
}

.pl-header h2 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
}

/* LINKED PAGE BUTTON ********************************************************/

.cp-linked-page-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: 700;
    background-color: #191919;
    z-index: 2;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -100%);
}

/* video */
.cp-video-lightbox-button {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
    width: 4.375rem;
	color: #fff;
	border: .25rem solid #fff;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 1rem 2rem 1rem 1rem;
	cursor: pointer;
	text-transform: uppercase;
	z-index: 2;
	transition: opacity .5s ease;
	opacity: .5;
}

.cp-video-lightbox-button:hover {
	opacity: 1;
}

.cp-video-lightbox-button::after {
	content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: .75rem 0 .75rem 1rem;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: calc(50% + .15rem);
    transform: translateX(-50%) translateY(-50%);
    transition: border-width .5s ease;
}
/*wearable cat */
.pl-product>span.wearable {
    margin-bottom: 1.5rem!important;
}
article.pl-product span.wearable >i {
    color: #6babe5;
}
li.wearable-icons {
    flex-direction: column;
    height: unset!important;
    margin: auto;
}

li.wearable-icons h2 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 8px;
}
a.wearable-header-a {
    flex-direction: column;
}
.wearable-header {
    z-index: 100;
    color: #fff;
	margin-top: 3rem;
	/* JK edit 2022-04-13 */
	display: flex;
    flex-direction: column;
    align-items: center;
	font-size: 125%;
	/* /JK edit */
}
.wearable-header h2 {
    color: #fff;
}

/*wearables JK edit*/
.wearable-header>ul {
	
}

.wearable-table {
	max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: calc(100% - 2rem);
}

.wearable-table th,
.wearable-table td {
	text-align: center;
	padding: .5rem 1rem;
}

.wearable-table tbody th {
	text-align: left;
	padding-left: 2rem;
}

.wearable-table tbody td {
	font-weight: 400;
}

.wearable-table tbody th {
	font-weight: 700;
}

.wearable-table-header th {
	padding: 1.5rem;
}

.wearable-table-header th span {
	font-weight: 400;
}

.wearable-table-header th span.wearable-table-product {
	font-size: 1.5rem;
	font-weight: 700;
	padding-bottom: .5rem;
	display: inline-block;
}

.wearable-phone {
	background-color: #f1f1f1;
	padding: 2rem 0 5rem;
}

.wearable-phone-box {
	max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: calc(100% - 2rem);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row wrap;
}

.wearable-phone-box>a {
	width: calc(50% - 1rem);
	padding: 0;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	text-decoration: none;
}

.wearable-phone-box>a>div {
	width: 100%;
	position: relative;
	padding: 2rem 1rem;
}

.wearable-phone-box>a>div:nth-of-type(1) {
	height: 13.5rem;
}

.wearable-phone-box>a>div:nth-of-type(2) {
	height: 12.25rem;
	margin: 3rem 0 2rem;
}

.wearable-phone-box>a>div:nth-of-type(3) {
	height: 5rem;
}

.wearable-phone-box>a>div>img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	transition: opacity .2s ease, height .2s ease, top .2s ease;
}

.wearable-phone-hover {
	opacity: 0;	
}

.wearable-phone-box>a:hover .wearable-phone-hover {
	opacity: 1;
}

.wearable-phone-box>a>div:nth-of-type(2) img {
	top: 0;
	height: 10.75rem;
}

.wearable-phone-box>a:hover>div:nth-of-type(2) img {
	height: 12.25rem;
	top: -1.5rem;
}

.wearable-phone-box>a:hover>div:nth-of-type(2) .wearable-phone-hover {
	top: -1.5rem;
}

/*.wearable-phone-box>div:nth-of-type(3),
.wearable-phone-box>div:nth-of-type(4) {
	padding: 4rem 0 2rem;
}*/

.wearable-phone-box span {
	border-color: #000;
	color: #000;
	text-decoration: none;
}

.wearable-phone-box>a:hover span {
	color: #000;
}

.wearable-phone-box span::before,
.wearable-phone-box span::after {
	border-color: #000;
}

.wearable-phone-box>a:hover span::before,
.wearable-phone-box>a:hover span::after {
	border-color: #6babe5;
}

.wearable-table-desktop {
	display: table;
}
	
.wearable-table-mobile {
	display: none;
}

.pl-product-info>ul.wearable-icons-wrap {
	margin: 2.4375rem 0 1rem;
}

@media (min-width: 768px) {
	.wearable-table td:nth-child(2),
	.wearable-table th:nth-child(2),
	.wearable-table td:nth-child(3),
	.wearable-table th:nth-child(3) {
		background-color: #e5f0fa;	
	}

	.wearable-table td:nth-child(4),
	.wearable-table td:nth-child(5),
	.wearable-table th:nth-child(4),
	.wearable-table th:nth-child(5) {
		background-color: #c4def4;
	}

	.wearable-table tbody tr:nth-of-type(2n + 1) th,
	.wearable-table tbody tr:nth-of-type(2n + 1) td {
		background-color: #f1f1f1;
	}

	.wearable-table tbody tr:nth-of-type(2n + 1) td:nth-of-type(1),
	.wearable-table tbody tr:nth-of-type(2n + 1) td:nth-of-type(2) {
		background-color: #d8e3ec;
	}

	.wearable-table tbody tr:nth-of-type(2n + 1) td:nth-of-type(3),
	.wearable-table tbody tr:nth-of-type(2n + 1) td:nth-of-type(4) {
		background-color: #b9d2e7;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.pl-product-info>ul.wearable-icons-wrap {
		margin: 2.4375rem 0 2rem;
	}
}

@media (max-width: 767px) {
	.pl-product-info>ul>li.wearable-icons {
		display: block;
		width: calc(100% / 3 - 1rem);
		max-width: calc(100% / 3 - 1rem);
		margin: 0;
		align-items: flex-end;
		padding-bottom: 3rem;
	}
	
	.pl-product-info>ul>li.wearable-icons>h2 {
		display: flex;
		height: 3rem;
		align-items: flex-end;
	}
	
	.wearable-icons-wrap {
		justify-content: space-between;
		align-items: flex-start;
	}
	
	.wearable-table {
		padding: 0 .5rem;
	}
	
	.wearable-table-desktop {
		display: none;
	}
	
	.wearable-table-mobile {
		display: table;
	}
	
	.wearable-table tbody th {
		padding-left: .5rem;
	}
	
	.wearable-table tbody td:nth-of-type(1) {
		text-align: right;
	}
	
	.wearable-table th,
	.wearable-table td {
		padding: .5rem;
	}
	
	.wearable-table tbody tr:nth-of-type(4n + 3) th,
	.wearable-table tbody tr:nth-of-type(4n + 3) td {
		background-color: #f1f1f1;
	}
	
	.wearable-table tbody tr:nth-of-type(4n + 1) td:nth-child(2),
	.wearable-table tbody tr:nth-of-type(4n + 1) td:nth-child(3) {
		background-color: #e5f0fa;	
	}
	
	.wearable-table tbody tr:nth-of-type(4n + 2) td:nth-child(1),
	.wearable-table tbody tr:nth-of-type(4n + 2) td:nth-child(2) {
		background-color: #c4def4;	
	}
	
	.wearable-table tbody tr:nth-of-type(4n + 3) td:nth-child(2),
	.wearable-table tbody tr:nth-of-type(4n + 3) td:nth-child(3) {
		background-color: #d8e3ec;	
	}
	
	.wearable-table tbody tr:nth-of-type(4n + 4) td:nth-child(1),
	.wearable-table tbody tr:nth-of-type(4n + 4) td:nth-child(2) {
		background-color: #b9d2e7;	
	}
	
	.wearable-table tbody tr:nth-of-type(2n + 1) td:nth-child(2),
	.wearable-table tbody tr:nth-of-type(2n + 2) td:nth-child(1) {
		font-weight: 400;
	}
	
	.wearable-phone-box>a>div:nth-of-type(1) {
		height: 24vw;
	}
}

@media (max-width: 479px) {
	.pl-product-info>ul>li.wearable-icons {
		width: calc(50% - 1rem);
		max-width: calc(50% - 1rem);
	}
	
	.wearable-phone-box>a>div:nth-of-type(1) {
		height: 20vw;
	}
}

.wearable-table-header td:nth-child(2),
.wearable-table-header th:nth-child(2),
.wearable-table-header td:nth-child(3),
.wearable-table-header th:nth-child(3) {
	background-color: #5ba3e1;
	color: #fff;
}

.wearable-table-header td:nth-child(4),
.wearable-table-header th:nth-child(4),
.wearable-table-header td:nth-child(5),
.wearable-table-header th:nth-child(5) {
	background-color: #3d90d8;
	color: #fff;
}
section#lamax-connect, section#mobile-phone-no, section#mobile-phone-yes {
    width: 100%;
    max-width: 76rem;
    margin: auto;
}

.connect-in-category li {
    list-style: none;
    width: 350px;
    margin: 3rem 0;
}

.connect-in-category ul {
    width: auto;
    display: flex;
    flex-direction: column;
}

.connect-in-category {
    position: relative;
    width: 100%;
}

.connect-in-category > div {
    position: absolute;
    right: 4%;
    top: 3%;
}
#mobile-phone-yes > h2, #mobile-phone-no > h2, #lamax-connect > h2 {
    font-size: 4rem;
}

#mobile-phone-yes > h3, #mobile-phone-no > h3, #lamax-connect > h3 {
    font-size: 3rem;
}

#mobile-phone-yes > p, #mobile-phone-no > p, #lamax-connect > p {
    font-size: 1.2rem;
	padding: 0 1rem;
}

@media (max-width: 1000px) {
	.connect-in-category > div {
		position:relative;
		right: unset;
		top: unset;
	}
	
	.connect-in-category ul {
		flex-direction: row;
		justify-content: space-around;
		padding: 0;
		margin: auto;
	}
}
@media (max-width: 767px) {	
	.connect-in-category ul {
		flex-direction: column;
		justify-content: space-around;
		padding: 0;
		margin: auto;
	}
	.connect-in-category li {
		margin:3rem auto;
	}
}