/* .content {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 1fr;
    background: #fff;
    color: #333;
    padding: 0 !important;
    margin: 0;
    font-family: "Heebo", sans-serif;
} */

.sample__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4em;
  overflow: hidden;
}

.form__slide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#form__container {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 13%;
  background: #fff;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
	/* padding: 3rem; */
	padding: 1% 2%;
  font-family: "Heebo", sans-serif;
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

#sample-close__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(255,255,255,1);
    width: 85px;
    height: 50px;
    color: rgb(255, 100, 99);
    font-size: 37px;
    transition: all 0.35s ease-in-out;
}

#sample-close__button:focus,
#sample-close__button:hover {
  background-color: rgba(0,0,0,1);
}

.form__title {
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0 10px;
  color: rgb(102, 102, 102);
}

/* 
.form__title::before {
    content: "";
    border-bottom: 5px solid #333;
    width: 2.5em;
    position: absolute;
    top: 0.55em;
    left: -3em;
}

.form__title::after {
    content: "";
    border-bottom: 5px solid #333;
    width: 2.5em;
    position: absolute;
    top: 0.55em;
    right: -3em;
} */

.form__subtitle {
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 1.35em;
  font-weight: 300;
  margin-top: 1em;
}

.form__input-group {
  margin: 10px auto 15px;
  width: 100%;
}

.form__input-container {
  width: 100%;
  padding: 0.7rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.form__input-dual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

p.form__label {
  font-size: 1.25em;
  font-weight: 800;
  margin: 0;
}

[data-blank-option],
[data-default-option],
#referral-source {
  background: #fff url(../img/select-arrow.svg) no-repeat center;
  background-size: 55px;
  background-position: right;
  color: #9B9B9B;
}

.full-guide__trigger {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  text-decoration-color: rgb(251, 182, 182);
  text-decoration-style: dotted;
  transition: all 0.35s ease-in-out;
}
.full-guide__trigger:focus,
.full-guide__trigger:hover {
  color: rgb(251, 182, 182);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-style: dotted;
}

[data-blank-option] option {
  color: rgba(0,0,0,1);
}

option {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  color: rgba(0,0,0,1);
  font-size: 1.5rem;
}

/* ::-webkit-input-placeholder {
  color: rgb(197, 197, 197);
  font-weight: 300;
  opacity: 1;
}

::-moz-placeholder {
  color: rgb(197, 197, 197);
  font-weight: 300;
  opacity: 1;
} */

.form__input-container-small {
  width: 48%;
}

.form__button {
  border: none;
  color: rgb(255, 255, 255);
  background-color: rgb(51, 51, 51);
  font-weight: 900;
  padding: 20px;
  font-size: 17px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}

.form__button:focus {
  outline: none;
}

.form__button i {
  margin-left: -15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.form__button:focus i,
.form__button:hover i {
  margin-left: 0.25em;
  opacity: 1;
  visibility: visible;
}

#section__imagery-guide {
  width: 100%;
  z-index: 1;
  margin-right: -2em;
}

.section__imagery {
  width: 50%;
}

.sample__title-container {
  width: 65%;
}

#section__title {
  font-family: "Heebo", sans-serif;
  font-weight: 800;
  font-size: 3em;
  margin: 0;
}

p#section__title-topper {
  font-weight: 800;
  color: rgb(218, 65, 67);
  font-size: 1.5em;
  margin: 0;
}

.sample__subsection {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.sample__subtext-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.sample__subtext-container>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.6em;
}

div#subsection-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
}

.section__subtitle {
  font-family: "Heebo", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px !important;
  text-transform: uppercase;
  color: #757575;
}

.section__subtext {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.5em;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: #c6c6c6;
}

.section__grid-fill {
  position: relative;
}

img#section__imagery-heat-press {
  width: 42.5%;
  position: absolute;
  right: 0;
}

img#section__imagery-sample-pack {
  margin-left: -22em;
  width: 90%;
}

footer.content-footer {
  margin-top: 0 !important;
  border: 0 !important;
}

.error-icon {
  position: absolute;
  padding-right: 0.75em;
  font-size: 1.5em;
  color: rgb(218, 65, 67);
  display: none;
  right: 0;
}

.affix {
  top: 0;
}

.affix-bottom {
  position: absolute;
}

#quantity-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#form__label {
  margin: 0;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 1.35em;
  margin-right: 1em;
}

input#quantity {
  width: 20%;
}

select.form__input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding-right: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#form__container .fa-spinner:before {
  content: "\f110";
  font-size: 15em;
  color: rgb(218, 65, 67);
}

/******************************************************************************
 - Sample Pack: Overrides
******************************************************************************/

.content {
  padding: 0 !important;
}

.content-wrapper {
  background-color: rgb(255, 255, 255) !important;
}

/******************************************************************************
 - Sample Pack: Typography
******************************************************************************/

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content p {
  font-family: "Heebo", sans-serif;
  margin: 0;
}

/******************************************************************************
 - Sample Pack: Hero
******************************************************************************/

header.sample-hero {
  background-image: url(../img/product-guide-hero-min.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 400px; */
  height: 350px;
  width: 100%;
}

header.sample-hero:after {
  content: "";
  background-color: rgba(255, 82, 82, 0.91);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

header.sample-hero h1 {
  color: rgb(255, 255, 255);
  font-weight: 700;
  /* font-size: 40px; */
  font-size: 30px;
  line-height: 1.3;
}

header.sample-hero span {
  color: rgb(255, 168, 168);
  display: block;
  /* font-size: 17px; */
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin: -30px auto 15px;
}

.sample-aside__content {
  /* padding: 100px 40px; */
  padding: 100px 30px;
  overflow: auto;
  width: 100%;
}

.sample-hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  padding: 50px 20px;
  text-align: center;
}

.sample-hero__header--desktop {
  display: none;
}

.sample-hero__header--mobile {
  display: block;
}

.wi-trigger {
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* width: 400px; */
  width: 320px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: none;
  padding: 25px;
  background-color: rgb(255, 255, 255);
  /* font-size: 18px; */
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(102, 102, 102);
  letter-spacing: 1px;
  transition: all 0.35s ease-in-out;
}

.wi-trigger svg {
  width: 17px;
  height: 23px;
  fill: rgb(99, 99, 99);
}

.wi-trigger:active,
.wi-trigger:focus,
.wi-trigger:hover {
  background-color: rgb(38, 38, 38);
  color: #fff;
}

.wi-trigger:active svg,
.wi-trigger:focus svg,
.wi-trigger:hover svg {
  fill: #fff;
}

.wi-trigger__icon {
  background: url(../img/wi-icon.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
}

/******************************************************************************
 - Sample Pack: Aside (Content)
******************************************************************************/

.sample-content {
	position: relative;
	display: flex;
	flex-direction: column;
	z-index: 1060;
	background-color: white;
}

.callout-section {
  text-align: center;
}

.callout-section:not(:last-child) {
  margin-bottom: 100px;
}

.callout-section__imagery::after {
  width: 4px;
  height: 52px;
  background-image: linear-gradient(to bottom, rgb(255, 82, 82), rgb(255, 255, 255));
  display: block;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
}
.callout-section__text {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.callout-section__imagery {
  /* background-color: rgba(240, 77, 77, 0.902); */
  position: relative;
  height: 200px;
  margin: 45px auto 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.section__icon {
  /* height: 80px; */
  height: 65px;
  width: 65px;
  background-color: rgb(255, 82, 82);
  /* width: 80px; */
  border-radius: 100%;
  margin: auto auto 40px;
  display: flex;
  align-content: center;
  justify-content: center;
}

[class*="section__icon--"] {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: relative;
  /* width: 45px;
  height: 45px; */
  width: 32px;
  height: 32px;
  margin: auto;
}

.section__icon--poster {
  background-image: url(../img/guide-icon.svg);
  top: -2px;
}

.section__icon--press {
  background-image: url(../img/press-icon.svg);
}

.section__icon--samples {
  background-image: url(../img/sample-icon.svg);
}

.form__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: solid 2px rgb(234, 234, 234);
  caret-color: rgb(221, 221, 221);
  font-weight: 300;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  padding: 14px;
  width: 100%;
  transition: border 0.35s ease-in-out;
}

.form__input:focus {
  border-color: rgb(51, 51, 51);
}

/******************************************************************************
 - Sample Pack: Aside (Form)
******************************************************************************/

#form-trigger {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    border: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: -40px;
    margin: auto;
    order: -1;
    width: 340px;
    padding: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(26, 26, 26, 0.9);
    color: rgb(203, 203, 203);
    display: flex;
    align-content: center;
    justify-content: center;
    z-index: 8;
    left: 0;
    right: 0;
    transition: all 0.35s ease-in-out;
}

footer.content-footer {
  position: relative;
  z-index: 929;
}

#form-trigger.reveal {
  bottom: 28px;
  visibility: visible;
  opacity: 1;
}

#form-container {
  cursor: pointer;
}
#form__container:hover {
    cursor: auto;
}

.error-notice {
  background-color: rgba(255, 82, 82, 1);
  width: 100%;
  text-align: center;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: -100px;
  height: 90px;
  display: flex;
  align-content: center;
  justify-content: center;
  transition: all 0.35s ease-in-out;
}
.error-notice.reveal {
  top: 0;
  visibility: visible;
  opacity: 1;
}
.error-notice p {
  color: rgb(255, 255, 255);
  margin: auto;
  font-size: 22px;
}

.dg-window {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999999999;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(207, 49, 49, 0.8);
  left: 0;
  right: 0;
  transition: all 0.35s ease-in-out 0.3s;
}
.dg-window.reveal {
  visibility: visible;
  opacity: 1;
}
.dg-window.reveal .dg-window__modal {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.dg-window__modal {
  position: relative;
  visibility: hidden;
  opacity: 0;
  width: 80%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  background-color: #eee;
  padding: 30px;
  transform: scale(0.7);
  transition: all 0.35s ease-in-out 0.3s;
}
.dg-window__modal img {
  max-width: 100%;
  width: 100%;
  margin-top: -20px;
  margin-bottom: 30px;
}
#dg-window__exit {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 70px;
  background-color: rgb(168, 43, 43);
  display: flex;
  align-content: center;
  justify-content: center;
  transition: all 0.35s ease-in-out 0.3s;
}
#dg-window__exit:focus,
#dg-window__exit:hover {
  background-color: rgba(168, 43, 43,0.8);
}
#dg-window__exit span {
  margin: auto;
  font-size: 48px;
  color: #fff;
}
.dg-window__modal--caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgb(238, 238, 238);
  color: rgb(134, 134, 134);
  padding: 13px;
  text-align: center;
  font-size: 15px;
  border-top: solid 1px rgb(218, 218, 218);
}
#ga-validate__form .ga-form-input {
	border: solid 3px #ddd;
	height: auto;
	padding: 10px;
	font-size: 1.6rem;
	border-radius: 3px !important;
}
#ga-validate__form .ga-form-input:focus,
#ga-validate__form .ga-form-input:focus-within {
	border-color: #222 !important;
}
#ga-validate__form .ga-validate__button {
	padding: 25px;
	height: auto;
	background-color: #222;
}
.checkout-modal-form-container {
	margin-top: 0;
}
#ga-address__container {
	padding: 0;
}
.ga-validate__input-container {
	margin-bottom: 9px !important;
}
.navbar-fixed-top {
	z-index: 1061 !important;
}
/******************************************************************************
 - Sample Pack: Media Queries
******************************************************************************/

@media (max-width: 1339px) {
	#ga-address__container {
		padding: 0 15px;
	}
	.below-nav-notification-bar {
		margin-top: -16px;
	}
  .affix,
  .affix-bottom {
    position: static;
  }
  #form__container {
    position: absolute;
  }
  .footer-controls {
    top: -18px !important;
    right: -60px !important;
  }
  .sample-aside__form {
    position: fixed;
    overflow: scroll;
    bottom: 0;
    top: 0;
    transform: translateX(100%);
    right: 0;
    width: 100%;
    transition: all 0.35s ease-in-out 0.3s;
    z-index: 99999999;
  }
  .sample-aside__form.reveal {
    background-color: rgba(255, 82, 82, 0.902);
    transform: translateX(0px);
  }
  .zopim {
    bottom: -10px !important;
  }
}

@media (min-width: 1340px) {
  .dg-window__modal {
    width: 50%;
  }
  .dg-window__modal img {
    margin-top: -40px;
    margin-bottom: 60px;
  }
  .form__input {
    font-size: 18px;
  }
  #sample-close__button {
    display: none;
  }
  .section__subtitle {
    font-size: 28px;
      color: #343434;
      
  }
  .section__subtext {
    font-size: 19px;
      color: #343434;
  }
  header.sample-hero {
    height: 400px;
  }
  #form-trigger {
    display: none;
  }
  #form__container {
    overflow: hidden;
    left: inherit;
    right: 2.75%;
    margin: 0;
    width: 32%;
  }
  .sample-hero__content {
    text-align: left;
    padding: 50px;
  }
  header.sample-hero span {
    margin: -30px 0 15px;
  }
  header.sample-hero h1 {
    font-size: 60px;
    line-height: 1.1;
  }
  .wi-trigger {
    font-size: 18px;
    left: 60px;
    right: inherit;
    width: 400px;
  }
  .wi-trigger svg {
    width: 20px;
    height: 26px;
  }
  .section__icon {
    width: 80px;
    height: 80px;
  }
  [class*="section__icon--"] {
    width: 45px;
    height: 45px;
  }
  .sample-hero__header--desktop {
    display: block;
  }
  .sample-hero__header--mobile {
    display: none;
  }
  aside.sample-aside__content {
    width: 60%;
    padding: 150px 40px;
  }
}

@media (min-width: 800px) {
  .dg-window__modal--caption {
    padding: 20px;
    font-size: 20px;
  }
  .form__title {
		font-size: 2.3rem;
		padding: 10px;
		font-weight: 900;
	}
  .form__button {
    font-size: 1.45em;
  }
  .form__input-container {
    font-size: 1.25em;
    padding: 1rem 0;
  }
  #form-trigger {
    font-size: 21px;
  }
  .callout-section__imagery {
    height: 300px;
    margin: auto;
    width: 400px;
  }
  .section__icon {
    margin: 0 0 30px;
  }
  .sample-aside__content {
    padding: 40px;
  }
  aside.sample-aside__content {
    padding: 150px 40px;
  }
  .sample-hero__content {
    /* margin-right: auto; */
    width: 100%;
    margin: auto;
  }
  .callout-section {
    display: flex;
    align-content: center;
    text-align: left;
  }
  .callout-section:not(:last-child) {
    margin-bottom: 110px;
  }
  .callout-section__text {
    width: 60%;
    padding-right: 40px;
    margin: auto;
  }
  header.sample-hero {
    height: 500px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1339px) {
  #form-trigger {
    font-size: 21px;
  }
  .callout-section__imagery {
    width: 330px;
  }
  .section__subtitle {
    font-size: 23px;
  }
  .wi-trigger {
    font-size: 18px;
    left: 0;
    right: 0;
    width: 400px;
  }
  .wi-trigger svg {
    width: 20px;
    height: 26px;
  }
  header.sample-hero h1 {
    font-size: 60px;
    max-width: 70rem;
    margin: 0 auto 0 auto;
  }
}

.content-footer {
    display: none;
}
