
:root {
	--contact-hrule-color: #eaeaea;
}

/* ///////////////////////////////////////////////////////////////////// CONTACT SUBNAV */
.contact-subnav { /* ul */
  display: flex;
  flex-wrap: none;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.125rem;
  padding: 1.75rem 0rem 1.5rem 0rem;
  margin: 0rem;
  min-width: calc(var(--global-content-width-min) - (2 * var(--global-padding)));
  width: 100%;

  /* background: rgba(255, 102, 0, 0.3); / * subnav items bg area ORANGE */
}

.contact-subnav li {
  list-style: none;
  padding: 0rem;
  /* margin-right: 2.5rem; / * !!! SPACING BETWEEN SUBNAV ITEMS */
  /* background: rgba(255, 0, 255, 0.1); / * SUBNAV ITEM HOT AREA PINK */
}

.contact-subnav li:hover { /* WORK HERE: REMOVE */
  /* background: var(--white); */ /* subnav item bg color */
}

.contact-subnav li a {
	display: block; /* !!! APPLIED TO NAV ITEM TEXT ELEMENTS SO THEY WOULD BE FULL WIDTH */
  position: relative;
  color: var(--black); /* MENU ITEM TEXT COLOR */
  font-size: .75rem; /* 18px */
  font-weight: 400; /* Regular */
  line-height: .75rem; /* 18px */
  letter-spacing: .07em; /* 7% */
  text-transform: uppercase;
  text-decoration: none;
  width: auto;
	transition: all var(--duration-btn) ease-in-out;
	/* cubic-bezier(0.6, 0, 0.4, 2) */
}

.contact-subnav li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: .08rem;
  bottom: -0.25rem;
  left: 0;
	background-color: var(--black);
	transform: scaleX(0);
	transition-property: transform, background-color;
	transition-duration: var(--duration-short);
	transition-timing-function: ease-in-out;
  transform-origin: bottom right;
}

.contact-subnav li a:hover::before {
	background-color: var(--grey5);
  transform: scaleX(1);
  transform-origin: bottom left; /* IF OMITTED, TRANSITION RETURNS TO ORIGIN POINT */
}

.contact-subnav li a:focus,
.contact-subnav li a:hover {
  color: var(--grey5);
}

/* ////////////////////////////////////////////////////////////////////// CONTACT INTRO */

/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
.flex-container-contact {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	/* flex-flow: row wrap; */
	gap: var(--global-grid-gap);

	min-width: 100%;
	width: 100%;
}

.contact-section {
	flex-shrink: 0;
	display: block;
	position: relative;
	/*
	width: calc(50% - (var(--global-grid-gap) / 2)); / * ONLY SHOW 2 IMAGES * /
	*/
	width: 100%;
	min-width: 17.5rem; /* 280px / 100% */
	min-height: 20rem;
}

#id_contact_contact_us {
	word-break: break-all;
}

#id_contact_contact_us,
#id_contact_message_us,
#id_contact_visit_us {
	width: 100%;
}

.contact-section-hrule {
	width: 100%;
	height: 1px;
	margin: 0rem;
	/* padding-bottom: 1.5rem; / * 24px ADDED TO .contact-section-header instead */
	border-width: 0rem;
	color: var(--contact-hrule-color);
	background-color: var(--contact-hrule-color);
}

.contact-section-header {
	/* Contact Us, Message Us, Visit Us */
  font-size: 1rem; /* 16px */
  font-weight: 500; /* Medium */
  line-height: 1.125rem; /* 18px */
  letter-spacing: .03em; /* 3% */
  text-transform: uppercase;
  padding: 1.5rem 0rem; /* 24px */
	color: var(--black);
}

/* ///////////////////////////////////////////////////////////////// CONTACT CONTACT US */
.contact-section p {
	/*
	MOBILE
	font-size: .8125rem;
	font-weight: 300;
	*/

	/* DESKTOP SLIGHTLY LARGER? */
	font-size: .875rem; /* 15px */
	font-weight: 400; /* Regular */
	line-height: 1.375rem; /* 22px */
	letter-spacing: .11em; /* 11% */

  text-align: left;
  padding-bottom: 1rem;
  margin: 0rem;
	width: 100%;

	/*
	background-color: var(--FPO-Pink);
	*/ /* WORK HERE FPO */
}

.contact-section p::first-line {
	/* line-height: 1.125rem; */
}

.contact-section p .title {
  color: var(--grey5);
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .22em; /* 22% */
	line-height: 1rem;
}

.contact-section p > a {
  position: relative;
  color: var(--black);
  text-decoration: none;
  transition: all var(--duration-short) ease-in-out;
}

.contact-section p > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: .06rem;
  bottom: 0rem;
  left: 0;
	background-color: var(--black);
	transform: scaleX(0);
	transition-property: transform, background-color;
	transition-duration: var(--duration-short);
	transition-timing-function: ease-in-out;
  transform-origin: bottom right;
}

.contact-section p > a:hover::before {
	background-color: var(--grey5);
  transform: scaleX(1);
  transform-origin: bottom left; /* IF OMITTED, TRANSITION RETURNS TO ORIGIN POINT */
}

.contact-section p > a:hover,
.contact-section p > a:focus {
  color: var(--grey5);
}

#id_contact_instagram,
#id_contact_facebook {
  margin-right: 0.6rem;
}

#id_contact_instagram_svg,
#id_contact_facebook_svg {
  padding: 0rem;
  margin-top: 0.375rem; /* .625rem */
	width: 1.25rem;
	height: 1.25rem;
	vertical-align: text-bottom; /* ALTERS SVG Y PLACEMENT */
}

#id_contact_instagram::before,
#id_contact_instagram:hover::before,
#id_contact_facebook::before,
#id_contact_facebook:hover::before {
  display: none;
}

#id_contact_instagram_svg path,
#id_contact_facebook_svg path {
  transition: all var(--duration-short) ease-in-out;
	fill: var(--black);
	color: var(--black);
}

#id_contact_instagram:hover #id_contact_instagram_svg path,
#id_contact_instagram:focus #id_contact_instagram_svg path,
#id_contact_facebook:hover #id_contact_facebook_svg path,
#id_contact_facebook:focus #id_contact_facebook_svg path {
	fill: var(--grey5);
	color: var(--grey5);
}

/* ///////////////////////////////////////////////////////////////// CONTACT MESSAGE US */
#id_contact_form,
form {
}

.form-inputs {
	position: relative;
}

.form-response-container {
	position: absolute;
	/*
	display: flex;
  */
	display: none;
	flex-direction: column;
	align-items: center; /* column: centers horizontally */
  /* justify-content: center; / * column: centers vertically */
  justify-content: flex-end; /* column: at bottom */
	width: 100%;
	height: 100%;
	padding: 4.25rem 0rem;
	pointer-events: auto;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.85);
}

.form-response-center {
  justify-content: center; /* column: centers vertically */
}

.form-response-show {
	display: flex;
}

.form-response-hide {
	display: none;
}

.form-response {
	display: flex;
	flex-direction: column;
	align-items: center; /* column: centers horizontally */
  justify-content: center; /* column: centers vertically */

  padding: 0rem;
	min-width: 100%; /* 17.5rem / 280px */
	width: 100%; /* 17.5rem / 280px */
	min-height: 19rem; /* 304px */
	height: 22rem; /* 352px */
	background-color: var(--white);
	border: .1875rem solid var(--black);
	text-align: center;
}

.form-response-title {
	padding-bottom: .625rem; /* 10px */
	font-size: 2.25rem; /* 36px */
	font-weight: 500; /* Medium */
	line-height: normal; /* auto */
	letter-spacing: .07em; /* 7% */
	color: var(--black);
	text-align: center;
}

.form-response p.form-response-body,
.form-response p.form-response-body-error,
.form-response p.form-response-body-error-contact {
	font-size: 1.125rem; /* 18px */
	font-weight: 400; /* Regular */
	line-height: normal; /* 32px */
	letter-spacing: .07em; /* 7% */
	color: var(--black);
	text-align: center;
}

.form-response p.form-response-body-error {
	font-size: .875rem; /* 18px */
	line-height: 1.5rem; /* 32px */
}

.form-response p.form-response-body-error-contact {
	font-size: .75rem; /* 18px */
	line-height: 1.375rem; /* 32px */
}

#id_contact_form_error .cta {
	padding: 0rem 0rem 1.25rem 0rem;
}

form label {
	font-size: .625rem; /* 10px */
	font-weight: 400; /* Regular */
	line-height: .625rem; /* 10px */
	letter-spacing: .22em; /* 22% */
  text-transform: uppercase;
	color: var(--grey5);
	margin-top: 1.25rem 0rem;
}

input,
input[type = text],
input[type=email],
input[type=tel],
textarea {
	width: 100%;
	height: 3.25rem; /* 52px */
	padding: 1rem;
	border: .125rem solid var(--black);
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: .25rem;
	margin-bottom: 1.25rem;

	font-size: .875rem; /* 15px */
	font-weight: 400; /* Regular */
	line-height: 1.375rem; /* 22px */
	letter-spacing: 0em; /* 0% */
	color: var(--black);
}

textarea {
	height: 11.5625rem; /* 11.5625rem : 185px : 12.5rem : 200px */
	resize: vertical;
}

input:focus,
input[type = text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
	border-color: var(--grey6);
}

::placeholder {
	color: var(--grey5);
	opacity: 1; /* for Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
	color: var(--grey5);
}

input[type=submit] { /* WORK HERE : REMOVE / SOURCE */
	background-color: var(--FPO-Pink);
	color: var(--black);
	padding: .75rem 1.25rem;
	border: none;
	cursor: pointer;
}

input[type=submit]:hover { /* WORK HERE : REMOVE / SOURCE */
	background-color: var(--FPO-Blue);
}

.contact-form { /* WORK HERE : REMOVE / SOURCE */
	background-color: #f2f2f2;
	padding: 1.25rem;
}

.input-success,
input.input-success {
	/* only change border left color and width */
	border-left-color: #009900;
	border-left-width: .3125rem;
}

.input-error,
input.input-error {
	/* change all 4 border colors but only change border left width */
	border-color: #990000;
	border-left-width: .3125rem;
	background-color: #FFDFDF;
	background-image: url('../images/form_input_error_icon.svg');
	background-position: calc(100% - .75rem) .625rem; /* right center */
	background-repeat: no-repeat;
	background-size: 1.5625rem 1.5625rem;
	padding-right: 3rem;
}

.input-alert {
	font-size: .75rem; /* 12px */
	font-weight: 400; /* Regular */
	line-height: .75rem; /* 12px */
	letter-spacing: .03em; /* 3% */
	color: #990000;
	display: none;
}

.input-alert-text {
	display: none;
}

.input-error-text {
	display: inline-block;
}

.privacy-legal {
  padding-top: 0.5rem}

.privacy-legal p {
  color: var(--black);
  font-size: .625rem;
  font-weight: 300;
  line-height: 1rem;
  letter-spacing: .11em; /* 11% */
}

.privacy-legal p > a {
  position: relative;
  color: var(--black);
  text-decoration: none;
  transition: all var(--duration-short) ease-in-out;
}

.privacy-legal p > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: .06rem;
  bottom: 0rem;
  left: 0;
	background-color: var(--black);
	transform: scaleX(0);
	transition-property: transform, background-color;
	transition-duration: var(--duration-short);
	transition-timing-function: ease-in-out;
  transform-origin: bottom right;
}

.privacy-legal p > a:hover::before {
	background-color: var(--grey8);
  transform: scaleX(1);
  transform-origin: bottom left; /* IF OMITTED, TRANSITION RETURNS TO ORIGIN POINT */
}

.privacy-legal p > a:hover,
.privacy-legal p > a:focus {
  color: var(--grey8);
  /* text-decoration: none; */
}

/* /////////////////////////////////////////////////////////////////// CONTACT VISIT US */
.contact-visit-us-map {
	min-width: 200px; /* 12.5rem */
  width: 100%;
  min-height: 200px; /* 12.5rem */
  height: 25rem; /* 300px : 18.75rem; */
}

.contact-visit-us-map iframe {
	min-width: 200px; /* 12.5rem */
  width: 100%;
  min-height: 200px; /* 12.5rem */
  height: 25rem; /* 300px : 18.75rem; */
	border: none;
	border-radius: var(--global-border-radius);
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 360px */
@media (min-width: 360px) {
/* ///////////////////////////////////////////////////////////////// CONTACT MESSAGE US */
	.form-response {
		min-width: 20rem; /* 320px */
		width: 20rem; /* 320px */
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 480px */
@media (min-width: 480px) {
/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
	#id_contact_message_us form {
		width: 75%;
	}

/* ///////////////////////////////////////////////////////////////// CONTACT MESSAGE US */
	.form-response {
		min-width: var(--global-content-width-min); /* 300px */
		width: 22rem; /* 352px */
		min-height: var(--global-content-width-min); /* 300px */
		height: 22rem; /* 352px */
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 600px */
@media (min-width: 600px) {
/* ///////////////////////////////////////////////////////////////////// CONTACT SUBNAV */
	.contact-subnav { /* ul */
		gap: 2.5rem;
		padding: 1.875rem 0rem 3.125rem 0rem;
	}

	.contact-subnav li a {
		font-size: 1.125rem; /* 18px */
		line-height: 1.125rem; /* 18px */
	}

/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
	#id_contact_message_us form {
		width: 65%;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 768px */
@media (min-width: 768px) {
/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
	#id_contact_contact_us,
	#id_contact_message_us {
		min-width: 17.5rem; /* 280px / 100% */
		width: calc(50% - (var(--global-grid-gap) / 2)); /* ONLY SHOW 2 IMAGES */
	}

	#id_contact_message_us form {
		width: 100%;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 800px */
@media (min-width: 800px) {
/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
	.flex-container-contact {
		justify-content: center; /* flex-start */
	}

	.contact-section {
		min-width: var(--global-content-width-min); /* 300px / 100% */
	}
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 1000px */
@media (min-width: 1000px) {
/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
	#id_contact_contact_us,
	#id_contact_message_us {
		width: calc(50% - (var(--global-grid-gap) / 2)); /* ONLY SHOW 2 IMAGES */
	}

	#id_contact_visit_us {
		width: 100%; /* 56.5rem */
	}

/* ///////////////////////////////////////////////////////////////// CONTACT MESSAGE US */
	.form-response {
		min-width: var(--global-content-width-min); /* 300px */
		width: 26.25rem; /* 420px */
		min-height: var(--global-content-width-min); /* 300px */
		height: 26.25rem; /* 420px */
	}

	#id_contact_form_error .cta {
		padding: .75rem 0rem 2rem 0rem;
	}
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 1200px */
@media (min-width: 1200px) {
/* //////////////////////////////////////////////////////////////////// CONTACT CONTENT */
	#id_contact_contact_us,
	#id_contact_message_us {
		width: 28rem;
	}

	#id_contact_visit_us {
		width: 56.5rem; /* + 27rem */
		width: 58.5rem; /* + 28rem */
		width: 100%;
	}

/* ///////////////////////////////////////////////////////////////// CONTACT MESSAGE US */
	.form-response-container {
		padding: 4.75rem 0rem;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: MEDIA : 800px */
@media (min-height: 800px) {
/* ///////////////////////////////////////////////////////////////// CONTACT MESSAGE US */
	/*
	.form-response-container {
		justify-content: center; / * column: centers vertically * /
	}
	*/
}

/*
WORK HERE
https://www.w3schools.com/css/css_form.asp

-ms-transform: translateY(-50%);
transform: translateY(-50%);
*/
