/* ----------------------------------------------------------------
O V E R R I D E S
---------------------------------------------------------------- */


/* PAGE */

.page {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	line-height: 1.333
}


/* SLICE */

.slice {
	background-color: #f1f2f4;
	padding-bottom: 1px; /* prevents collapsing margins */
}
.slice.for-footer {
}


/* CONTAINER */

.container.for-navigation {
	padding-bottom: 60px;
}


/* BACKGROUND EXTENSION */

.backgroundextension {
	background: #f1f2f4;
}









/* ----------------------------------------------------------------
C O N T A C T H E A D E R
---------------------------------------------------------------- */

.contactheader {
	/* Layout */
	margin-bottom: 50px;
	/* Typography */
	font-size: 2em;
	font-weight: 700;
	/* Appearance */
	color: hsl(0,0%,33%);
}








/* ----------------------------------------------------------------
F A Q   /    S T I C K Y N O T E
---------------------------------------------------------------- */

.faq-info {
	font-size: 1.1em;
}

.stickynote {
	padding: 20px;
	margin-bottom: 24px;
	color: #595636;
	background-color: #fffac2; /* hsl(55, 100%, 88%) */
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
}

.stickynote p,
.stickynote ol,
.stickynote ul {
	margin-bottom: 10px;
}
.stickynote p:last-child,
.stickynote ol:last-child,
.stickynote ul:last-child {
	margin-bottom: 0;
}
.stickynote h2,
.stickynote h3,
.stickynote h4 {
	/* .core-elements-heading(@contact-fontsize, @contact-baseline, 1.0, 1.5, 0.0); */
	font-size: 16px;
	line-height: 1;
	padding-top: 0;
	padding-bottom: 16px;
	font-weight: 700;
}
.stickynote ol,
.stickynote ul {
	margin-left: 0;
	padding-left: 1.5em;
	margin-bottom: 10px;
}
.stickynote ul {
	list-style: disc;
}
.stickynote ol {
	list-style: decimal;
}
.stickynote a {
	/* .core-elements-link(@contact-color-link); */
	color: #2474e5;
	text-decoration: none;
}
.stickynote a:hover {
	text-decoration: underline;
}
.stickynote b,
.stickynote strong {
	color: #2b2b22;
}








/* ----------------------------------------------------------------
C O N T A C T F O R M
---------------------------------------------------------------- */


.contactform {
	/* Layout */
	margin-bottom: 21px;
	/* Typography */
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
	/* Appearance */
	color: #292929;
}


/* QUESTION */

.contactform-question {
    padding: 0.25em 0.75em 0.75em 0.75em;
    margin: -0.25em -0.75em 16px -0.75em;
	border-radius: 8px;
    transition: background 0.1s ease-out;
}
.contactform-question.has-error {
	background: hsla(50, 89%, 55%, 0.75);
	animation: contactform-shaking-question 0.2s 1 ease-out forwards;
}
.contactform-question.style-hidden {
	display: none;
}
@keyframes contactform-shaking-question {
	0% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(-15px, 0);
	}
	50% {
		transform: translate(10px, 0);
	}
	90% {
		transform: translate(-2px, 0);
	}
	100% { 
		transform: translate(0, 0);
	}
}


/* LABEL */

.contactform-label {
	/* .core-elements-heading(@contact-fontsize, @contact-baseline, 1.2, 2); */
	/* Layout */
	padding-top: 11px;
	padding-bottom: 11px;
	/* Typography */
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	/* Appearance */	
	color: #545454; /* hsl(0,0%,33%); */
}


/* FIELD */

.contactform-field {
}


/* ACTIONS */

.contactform-actions {
	text-align: center;
	margin: 40px 0;
}

/* CATEGORY */

.contactform-category {
	margin: 0.4em 0;
}

/* HELP */

.contactform-help {
}



/* RESPONSE */

.contactform-response {
}


/* SUBMIT */

/* .contactform-submit {
	.core-elements-button(40px, 16px);
	padding-left: 30px;
	padding-right: 30px;
	font-size: 16px;
	font-family: @contact-fontstack;
	font-weight: 600;
	//letter-spacing: 0.015em;
	.skins-amsterdam-button-strong();
} */

.contactform-submit {
	/* Layout */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	line-height: normal !important;
	padding-left: 30px;
	padding-right: 30px;
	/* Typography */
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
	font-weight: 600;
	text-align: center;
	/* Appearance */
	color: #fff;
	background: #79a9ec;
	border: 1px solid #639be9;
	border-radius: 4px;
	transition: box-shadow 0.1s ease-out;
}
.contactform-submit:hover {
	color: #fff;
	background: #82afed;
	border-color: #6ca0ea;
	text-decoration: none;
	box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.contactform-submit:active {
	border-color: #5e98e8;
	background: #79a9ec;
	box-shadow: 0 1px 3px rgba(0,0,0,.2) inset;
}
.contactform-submit:focus {
	box-shadow: 0 0 0 2px rgba(121,169,236,.5);
	outline: 0;
}


/* TEXTFIELD */

/* .contactform-textfield {
	.core-elements-textfield(2 * @contact-baseline, @contact-fontsize-textfield);
	width: 100%;
	font-family: @contact-fontstack;
	font-size: 16px;
	.skins-zurich-textfield-white();
} */

.contactform-textfield {
	/* Layout */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 11px;
	line-height: normal! important;
	width: 100%;
	/* Typography */	
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	/* Appearance */
	background-color: #fff;
	border: none;
	border-radius: 4px;
	transition: background-color .15s ease-out;
}
.contactform-textfield:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgba(121,169,236,.7);
}
.contactform-textfield::-webkit-input-placeholder {
	color: #aaa;
}
.contactform-textfield:-moz-placeholder {
	color: #aaa;
}
.contactform-textfield::-moz-placeholder {
	color: #aaa;
}
.contactform-textfield:-ms-input-placeholder {
	color: #aaa;
}


/* TEXTAREA */

/* .contactform-textarea {
	.core-elements-textarea(2 * @contact-baseline, @contact-fontsize-textfield, 16);
	width: 100%;
	margin-bottom: 10px;
	font-family: @contact-fontstack;
	font-size: 16px;
	line-height: 1.3 !important;
	.skins-zurich-textfield-white();
} */

.contactform-textarea {
	/* Layout */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 11px;
	line-height: normal!important;
	height: 325px;
	width: 100%;
	margin-bottom: 10px;
	/* Typography */
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
	font-size: 16px;
	line-height: 1.3!important;
	/* Appearance */
	background-color: #fff;
	border: none;
	border-radius: 4px;
	transition: background-color .15s ease-out;
}
.contactform-textarea:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgba(121,169,236,.7);
}
.contactform-textarea::-webkit-input-placeholder {
	color: #aaa
}
.contactform-textarea:-moz-placeholder {
	color: #aaa
}
.contactform-textarea::-moz-placeholder {
	color: #aaa
}
.contactform-textarea:-ms-input-placeholder {
	color: #aaa
}


/* CHECKBOX */

.contactform-checkbox {
}


/* EMAILUSDIRECTLY */

.contactform-emailusdirectly {
	text-align: center;
	padding: 40px 0;
}





/* ----------------------------------------------------------------
P R O D U C T S E L E C T I O N
---------------------------------------------------------------- */
/* @productselection-height: 28px; */


.productselection {
}


/* ITEM */

.productselection-item {
	padding: .4em 0;
	margin-bottom: 5.25px; /* @contact-baseline / 4; */
	clear: both
}
.productselection-item.is-selected {
}


/* QUESTIONS */

.productselection-questions {
	/* Layout */	
	display: none;
	margin: 10px 0 15px 1.25em;
	padding: 5px 15px 10px 15px;
	/* Typography */
	/* font-size: @contact-fontsize-small; */
	/* Appearance */
	color: #555;
	background: rgba(0,0,0,.05);
	border-radius: 3px
}
.productselection-item.is-selected .productselection-questions {
	display: block;
}


/* QUESTION */

.productselection-question {
	/* .core-fluidgrid-float-row(2%); */
	margin: 10px 0;
	zoom: 1;
	clear: both;
	margin-left: -1%;
	margin-right: -1%;
}

.productselection-question:after,
.productselection-question:before {
	/* Clearfix */
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
.productselection-question:after {
	/* Clearfix */
	clear: both
}


/* LABEL / FIELD / HELP COLUMNS */

.productselection-label {
	/* .core-fluidgrid-float-column(3/6, 2%); */
	/* Layout */
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	padding-left: .98039216%;
	padding-right: .98039216%;
	/* Typography */
	text-align: right;
	line-height: 28px; /* @productselection-height */
}
.productselection-field {
	/* .core-fluidgrid-float-column(2/6, 2%); */
	/* Layout */
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 33.33333333%;
	padding-left: .98039216%;
	padding-right: .98039216%
}
.productselection-help {
	/* .core-fluidgrid-float-column(1/6, 2%); */
	/* Layout */
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 16.66666667%;
	padding-left: .98039216%;
	padding-right: .98039216%;
	/* Typography */
	line-height: 28px; /* @productselection-height */
}


/* INFO (used for Mac license lookup) */

.productselection-info {
	margin: 20px 0 10px;
	text-align: center;
}


/* LINK */

.productselection-link {
	/* .core-elements-link(normal, @contact-color-link); */
	color: #2474e5;
	text-decoration: none
}
.productselection-link:hover {
	text-decoration: underline
}


/* TEXTFIELD */

/* .productselection-textfield {
	.core-elements-textfield(@productselection-height, @contact-fontsize-textfield);
	width: 100%;
	.skins-zurich-textfield-white();
} */

.productselection-textfield {
	/* Layout */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 4px;
	font-size: 16px;
	line-height: normal! important;
	width: 100%;
	/* Appearance */
	background-color: #fff;
	border: none;
	border-radius: 4px;
	transition: background-color .15s ease-out
}
.productselection-textfield:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgba(121,169,236,.7)
}
.productselection-textfield::-webkit-input-placeholder {
	color: #aaa
}
.productselection-textfield:-moz-placeholder {
	color: #aaa
}
.productselection-textfield::-moz-placeholder {
	color: #aaa
}
.productselection-textfield:-ms-input-placeholder {
	color: #aaa
}


/* RESPONSIVE */

@media screen and (max-width: 605px) { /* @default-breakpoint-compact */ 
	.productselection-info {
		text-align: left;
	}
	.productselection-label {
		/* .core-fluidgrid-float-column-width(1/1, 2%); */
		width: 100%;
		text-align: left;
	}
	.productselection-field {
		/* .core-fluidgrid-float-column-width(6/7, 2%); */
		width: 85.71428571%;
	}
	.productselection-help {
		/* .core-fluidgrid-float-column-width(1/7, 2%); */
		width: 14.28571429%;
		text-align: left;
	}
}







/* ----------------------------------------------------------------
R E S P O N S E
---------------------------------------------------------------- */
/*
@response-colortext: #aaa;
@response-colorbackground: #444;
*/


.response {
	/* Layout */
	position: relative;
	margin-bottom: 21px; /* @contact-baseline */
	padding: 20px 30px 20px 60px;
	/* Typography */
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif; /* @contact-fontstack; */
	font-size: 15px;
	line-height: 1.3;
	/* Appearance */
	color: #bbb; /* @response-colortext */
	background: #444; /* @response-colorbackground */
	border: 1px solid #373737; /* darken(@response-colorbackground, 5%) */
	border-radius: 5px;
	box-shadow: 0 2px 12px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.1);
}
.response.is-successful {
	/* margin-bottom: 240px; /* otherwise the page is too short */
}


/* ICON */

.response-icon {
	/* Layout */
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	left: 16px;
	top: 21px;
	/* Appearance */
	background-repeat: no-repeat;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}
.response.has-failed .response-icon {
	background-image: url(images/response-icon-error.png);
}
.response.is-invalid .response-icon {
	background-image: url(images/response-icon-error.png);
}
.response.is-successful .response-icon {
	background-image: url(images/response-icon-success.png);
}
@media screen and (-webkit-min-device-pixel-ratio:1.5) {
	.response.has-failed .response-icon {
		background-image: url(images/response-icon-error.2x.png);
	}
	.response.is-invalid .response-icon {
		background-image: url(images/response-icon-error.2x.png);
	}
	.response.is-successful .response-icon {
		background-image: url(images/response-icon-success.2x.png);
	}
}


/* TITLE */

.response-title {
	margin-bottom: 2px;
	font-weight: 700;
	color: white;
	/* .core-elements-heading(@contact-fontsize, @contact-baseline, 1.0, 1.5, 0.0); */
}


/* BODY */

.response-body {
	font-weight: 500;
}

/* Link */
.response-body a {
	/* .core-elements-link(lighten(@contact-color-link, 20%)); */
	color: #7faef0;
	text-decoration: none
}
.response-body a:hover {
	text-decoration: underline
}






/* ----------------------------------------------------------------
Y O U R E M A I L
---------------------------------------------------------------- */

.youremail {
	/* Layout */
	padding: 3em 2.5em;
	margin: 4em 0;
	/* Typography */
	font-size: 14px;
	line-height: 1.3;
	/* Appearance */
	color: #555555;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 3px 16px rgba(0,0,0,0.05);
}
.youremail-subject {
	margin-bottom: 1.3em;
	font-weight: 700;
}
.youremail-message {
	white-space: pre-line;
}





/* ----------------------------------------------------------------
H E L P P O P U P P A G E
---------------------------------------------------------------- */

.helppopuppage {
	background: white;
	padding: 5px 40px;
	max-width: 600px;
	margin: 0 auto;
}












/* ----------------------------------------------------------------
S U G G E S T I O N S
---------------------------------------------------------------- */
/* wrapper for quickfind results */

.suggestions {
	
}
.suggestions .quickfind-results {
	/* border: 1px solid rgba(0,0,0,0.2); */
	padding: 5px;
	border-radius: 10px;
	background: white;
}




/* ----------------------------------------------------------------
Q U I C K F I N D
---------------------------------------------------------------- */
/* modified (!) copy from support */

.quickfind {
	margin: 1em 0;
}


/* SEARCH */

.quickfind-search {
	position: relative;
	/* Typography */
	font-size: 1.25em;
	line-height: 1.25;
}

.quickfind-search:before {
	content: '';
	display: block;
	position: absolute;
	top: 0.5em;
	left: 0.3em;
	width: 24px;
	height: 24px;
	z-index: 100;
	/* Appearance */
	background: url(images/quickfind-loupe.svg) no-repeat;
	background-position: 0 50%;
	background-size: 24px 24px;
	opacity: 0.75;
}




/* TEXTFIELD */

.quickfind-textfield {
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em 0.5em 0.5em 35px;
	margin: 0;
	/* Typography */
	font-size: 1.0em;
	line-height: inherit;
	/* Appearance */
	color: hsla(210, 100%, 1%, 0.81);
	background: hsla(216, 100%, 14%, 0.08);
	border-radius: 0.3em;
	border: 0;
	/* Animation */
	transition: background 0.1s ease-out;
}

.quickfind-textfield:hover {
}

.quickfind-textfield:focus {
	outline: none;
}

.quickfind-textfield:active {
	background: hsla(216, 100%, 12%, 0.11);
}




/* RESULTS */

.quickfind-results {
	margin: 1em 0 3em 0;
}




/* RESULTS */

.quickfind-group {
}

.quickfind-group.is-horizontal {
}
.quickfind-group.is-horizontal:after {
	content: '';
	display: block;
	clear: both;
}


/* HEADING */

.quickfind-heading {
	/* Layout */
	padding: 0.5em 0.5em 0.5em 10px;
	margin-top: 1em;
	/* Typography */
	font-weight: 700;
}



/* MESSAGE */

.quickfind-message {
	text-align: center;
	padding: 1em 2em;
	color: #74777c;
}
.quickfind-message b {
	display: block;
	font-size: 2em;
}




/* ARTICLE */

.quickfind-article {
	/* Layout */
	position: relative;
	box-sizing: border-box;
	padding: 0.6em 24px 0.6em 35px;
	/* Typography */
	line-height: 1.3;
	/* Appearance */
	background: url(images/quickfind-article.svg) no-repeat;
	background-size: 24px 24px;
	background-position: 6px 8px;
	/* Misc */
	cursor: pointer;
}

.quickfind-article.for-question,
.quickfind-article.for-question:hover {
	background-image: url(images/quickfind-question.svg);
	/* modified */
	/*
	background-color: hsla(216, 100%, 40%, 0.1);
	border-radius: 0.5em;
	margin-bottom: 2px;
	*/
}

.quickfind-article.for-question:not(.is-not-clickable):hover {
	/* background-color: hsla(216, 100%, 40%, 0.15); */ /* modified */
}

/* Chevron */
.quickfind-article:not(.is-not-clickable):after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 6px;
	margin-top: -9px; /* half height */
	width: 12px;
	height: 18px;
	margin-left: 0.25em;
	vertical-align: -2px;
	background-image: url(images/quickfind-chevron.svg);
	background-size: 100% 100%;
	opacity: 0.3;
}


.quickfind-article.for-question h6:after {
	display: none;
}
.quickfind-article:hover h6:after {
}

/* Highlighted */
.quickfind-article:hover {
	background-color: hsla(216, 100%, 40%, 0.05);
	border-radius: 0.5em;
	border-color: transparent;
}
.quickfind-article:hover + .article {
	border-color: transparent;
}

/* Is Not Clickable */
.quickfind-article.is-not-clickable {
	cursor: default;
}




/* LINK */

.quickfind-article a {
	display: block;
}




/* HEADING */

.quickfind-article h6 {
	/* Typography */
	font-size: 1.0em;
	font-weight: 600;
}


/* For Topic */
.quickfind-article.for-topic h6 {
	font-size: 1.25em;
	font-weight: 600;
}

/* For Question */
.quickfind-article.for-question h6 {
	margin-bottom: 0.2em;
	font-size: 1.0em;
	font-weight: 600;
}





/* DESCRIPTION */

.quickfind-article p {
	/* Typography */
	/* font-size: 0.95em; */ /* modified */
	/* Appearance */
	color: hsla(216, 99%, 3%, 0.5);
}
.quickfind-article.for-topic p {
	display: none;
}
/* modified */
/*
.quickfind-article.for-question p {
	font-size: 1.0em;
	color: hsla(216, 99%, 3%, 0.6);
	margin-bottom: 0.2em;
}
*/



/* MARK */

.quickfind-article mark {
	color: inherit;
	/*
	background-color: hsla(50, 100%, 47%, 0.86);
	background-color: hsla(48, 100%, 50%, 0.6);
	box-shadow: 0 -2px hsla(48, 100%, 50%, 0.95) inset;
	*/
	background-color: transparent;
	background-image: -webkit-linear-gradient(transparent, hsla(48, 100%, 50%, 0.0) 5%, hsla(48, 100%, 50%, 0.5) 85%);
}


