/* Clean Site for Snapshot Process */
header.header,
.header-topbar,
.footer {
  display: none; }

.snapshot {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden; }

.snapshot-disclaimer {
  font-size: .75em;
  line-height: 1.5;
  margin: 0; }

.nowrap {
  white-space: nowrap; }

/******************/
/* *** Header *** */
/******************/
.snapshot-header {
  display: flex;
  background: white;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 3;
  flex-shrink: 0; }

.snapshot-header__logo img {
  width: 175px;
  margin: 0 1em; }

.snapshot-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 600;
  flex-wrap: wrap; }

.boyl .snapshot-header__contact {
  background: var(--boylgreen); }

.snapshot-header__contact > * {
  padding: .25em 1em; }

.snapshot-header__contact > *:first-child {
  padding: 0;
  margin-left: 0; }

.snapshot-header__contact > *:last-child {
  margin-right: 0; }

.snapshot-header__contact a:link,
.snapshot-header__contact a:visited {
  color: white; }

.snapshot-header__contact-text {
  text-transform: uppercase;
  line-height: 1;
  font-size: Clamp(0.75rem, 2vw, 1rem); }
  .snapshot-header__contact-text a {
    text-decoration: underline; }

.snapshot-header__contact-phone {
  font-size: Clamp(1rem, 2.5vw, 1.5em);
  white-space: nowrap;
  padding: 0;
  position: relative; }

.snapshot-header__contact-photo img {
  height: 3em; }

.snapshot-header__contact-phone > a {
  display: inline-block;
  padding: .25em 1em; }

.snapshot-header__contact-phone .call_text {
  display: none;
  position: absolute;
  background: var(--primary);
  width: 100%;
  z-index: 1001;
  top: 100%;
  font-size: .875em;
  box-shadow: 0px 8px 8px -4px rgba(0, 0, 0, 0.5); }

.snapshot-header__contact-phone .call_text div {
  display: flex; }

.snapshot-header__contact-phone .call_text div a {
  flex-grow: 1;
  text-align: center;
  display: block;
  padding: .25em; }

.snapshot-header__contact-email {
  font-size: 1.5em; }

/*******************/
/* *** Content *** */
/*******************/
.snapshot-content {
  flex-grow: 1;
  overflow: auto;
  display: flex;
  flex-direction: column; }

/************************/
/* *** Content Full *** */
/************************/
.snapshot-full {
  padding: 2rem 5rem 5rem;
  flex-grow: 1;
  overflow-y: auto; }

/************************/
/* *** Content Left *** */
/************************/
.snapshot-left {
  background: var(--light); }

.snapshot-step {
  border-bottom: .125em solid white;
  transition: flex-grow 500ms;
  display: none;
  flex-direction: column;
  overflow: hidden;
  min-height: 1.5em; }

.snapshot-step.active {
  flex-grow: 1;
  display: flex; }

a.snapshot-step__link {
  display: none;
  text-align: center;
  line-height: 1;
  padding: .66em;
  margin-top: 0;
  background: var(--light);
  font-size: .875em;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  transition: background 250ms, color 250ms, margin 500ms, padding 250ms, font-size 250ms; }

.snapshot-step.active a.snapshot-step__link {
  background: var(--secondary);
  color: #fff;
  margin-top: .5em;
  padding: .75em .5em;
  font-size: 1em; }

.snapshot-step__content {
  padding: 1em;
  flex-grow: 1;
  overflow-y: auto; }
  @media (min-width: 576px) {
    .snapshot-step__content {
      padding: 2em; } }
  @media (min-width: 768px) {
    .snapshot-step__content {
      padding: 1em; } }
  @media (min-width: 991px) {
    .snapshot-step__content {
      padding: 2em; } }

.snapshot-step__bg {
  background-size: cover;
  background-position: center;
  min-height: 250px;
  min-height: Clamp(150px, 30vh, 250px); }

.snapshot-step__label {
  color: var(--secondary);
  font-weight: bold; }

.snapshot-step__value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000; }

.closingCostIncentive {
  display: none; }

.closingCostIncentive.active {
  display: inline; }

#datepicker {
  line-height: 1.25; }

#datepicker .ui-datepicker {
  width: 100%; }

#datepicker .ui-datepicker th {
  padding-top: .3em;
  padding-bottom: .3em; }

#datepicker .ui-datepicker .ui-datepicker-title {
  line-height: 1.5; }

#datepicker .ui-datepicker .ui-datepicker-prev,
#datepicker .ui-datepicker .ui-datepicker-next {
  height: 1.5em; }

/*************************/
/* *** Content Right *** */
/*************************/
.snapshot-right {
  position: relative;
  flex-grow: 1; }

.snapshot-main {
  width: 100%;
  padding: 1em 1em 3em;
  background: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms, visibility 0ms 250ms;
  display: none; }
  @media (min-width: 576px) {
    .snapshot-main {
      padding: 1em 2em 3em; } }
  @media (min-width: 768px) {
    .snapshot-main {
      padding: 1em 1em 3em; } }
  @media (min-width: 991px) {
    .snapshot-main {
      padding: 1em 2em 3em; } }

.snapshot-main.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms, visibility 0ms;
  display: block; }

.snapshot-main h2 {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: Clamp(1rem, 3vw, 1.875rem); }

.snapshot .toggler {
  display: block;
  margin-bottom: .5em; }

@media (min-width: 576px) and (max-width: 768px) {
  .snapshot .toggler {
    position: absolute;
    top: 1rem;
    right: 2rem; } }
@media (min-width: 991px) {
  .snapshot .toggler {
    position: absolute;
    top: 1rem;
    right: 2rem; } }
.snapshot-subheader {
  text-align: center; }

.snapshot-features {
  width: 90%;
  margin: 0 auto; }

.snapshot-features img {
  max-width: 100%;
  max-height: 80vw;
  margin: 0 auto; }

.snapshot-community_slider,
.snapshot-main__photos {
  width: 100%;
  margin: 0 auto; }

.snapshot-community_slider img,
.snapshot-main__photos img {
  max-width: 100%;
  max-height: 55vw;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 3px; }

.snapshot-slider__item a {
  display: block;
  position: relative; }

.snapshot-slider__item-example {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00000080;
  color: #fff;
  padding: .5em;
  line-height: 1;
  font-size: .75em; }

.snapshot-community_sliderthumbs::after,
.snapshot-main__photosthumbs::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 10px solid #000;
  transform: translateX(-50%); }

.snapshot-slider__thumb {
  padding: 5px; }

.snapshot-slider__thumb img {
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 110px;
  margin: 0 auto; }

.snapshot-main .slick-prev:before,
.snapshot-main .slick-next:before {
  color: #000; }

.snapshot-features__item img {
  max-width: 100%;
  margin: 0 auto; }

.snapshot-main__bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  min-height: 250px; }

/* Datepicker styles to make it take up more vertical space */
.ui-datepicker td span, .ui-datepicker td a {
  padding-bottom: 2em; }
  @media (min-width: 768px) {
    .ui-datepicker td span, .ui-datepicker td a {
      padding-bottom: Max(Calc((100vh - 525px) / 5), 0.2em); } }

/* swappy bits for Closing Date/QMI selector */
.ShowQMI {
  display: none; }

.ShowQMI.active {
  display: block; }

.snapshot label {
  display: block; }

/* Error Message Styling */
label.error {
  position: relative; }
  label.error::after {
    content: attr(data-error);
    color: red;
    position: absolute;
    bottom: -1.75em;
    left: 0;
    font-size: .75em; }
  label.error input {
    border-color: red; }

/*****************************/
/* Snapshot QMI Sooner Homes */
/*****************************/
.qmi-item {
  background: #fff;
  color: #000;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-size: 14px;
  font-size: Clamp(14px, 1.125vw, 18px); }

.qmi-item__photo {
  background-position: center;
  background-size: cover;
  position: relative; }

.qmi-item__photo::after {
  content: '';
  display: block;
  padding-top: 66%; }

.qmi-item__photo a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0; }

.qmi-item__photoAlt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1000ms; }

.qmi-item__photo:hover .qmi-item__photoAlt {
  opacity: 1; }

.qmi-item__photo img {
  display: none; }

.qmi-item__content {
  padding: 1em; }

.qmi-item__address h3 {
  font-weight: 600;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.125em; }

/**************************/
/* Snapshot Summary Table */
/**************************/
.snapshot-final {
  background: #fff;
  color: var(--secondary); }

.snapshot-final h2 {
  line-height: 1;
  padding: .25em .5em;
  margin: 0;
  background: var(--secondary);
  color: #fff; }

.snapshot-final__container {
  padding: 0 1em 1em; }

.snapshot-final .snapshot-final__container {
  padding-top: 1em; }

.snapshot-finaltable {
  width: 100%;
  margin-bottom: 1em; }

.snapshot-finaltable > .row {
  border-bottom: 1px solid var(--primary); }

.snapshot-finaltable .row > div + div {
  text-align: right;
  font-weight: bold;
  white-space: nowrap; }

/******************/
/* *** Footer *** */
/******************/
.snapshot-footer {
  background: url("/images/bg-secondarydark-stripes.png") repeat top left;
  height: 3em;
  flex-shrink: 0; }

.snapshot-actions {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative; }
  @media (min-width: 768px) {
    .snapshot-actions a.snapshot-action__continue,
    .snapshot-actions a.snapshot-action__back {
      display: none !important; } }

.snapshot-actions a {
  text-align: center;
  display: block;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  padding: 1em 0; }

.snapshot-action__label {
  display: none; }

.snapshot-action__label.active {
  display: inline; }

.snapshot-actions a.snapshot-action__continue i {
  color: var(--primary); }

.boyl .snapshot-actions a.snapshot-action__continue i {
  color: var(--boylgreen); }

.snapshot-actions a.disable {
  color: #ccc; }

.snapshot-action__back {
  white-space: nowrap; }

/* Snapshot Popup Styles */
.snapshot-actions__call {
  position: absolute;
  top: -2em;
  /*top: 0;*/
  left: 50%;
  transform: translate(-50%, 25%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 50%; }
  .snapshot-actions__call > a {
    display: flex !important;
    height: 2em;
    width: 2em;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #d22121;
    border-radius: 50%;
    font-size: 1.5em;
    color: #fff; }
  .snapshot-actions__callInit, .snapshot-actions__callPop {
    position: absolute;
    bottom: 100%;
    display: none;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.33);
    left: 50%;
    transform: translate(-50%, -20px);
    border-radius: 0.5em; }
    .snapshot-actions__callInit::before, .snapshot-actions__callPop::before {
      width: 20px;
      height: 20px;
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translate(-10px, 0px) rotate(45deg);
      background: #fff;
      box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.2); }
    .snapshot-actions__callInit .initClose,
    .snapshot-actions__callInit .popClose, .snapshot-actions__callPop .initClose,
    .snapshot-actions__callPop .popClose {
      position: absolute;
      top: 0;
      right: 0; }
      .snapshot-actions__callInit .initClose a,
      .snapshot-actions__callInit .popClose a, .snapshot-actions__callPop .initClose a,
      .snapshot-actions__callPop .popClose a {
        display: block;
        background: #eee;
        font-size: 1em;
        width: 1.5em;
        line-height: 1.5;
        text-align: center;
        border-left: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        border-radius: 0 .5em;
        padding: 0;
        text-transform: none;
        color: var(--secondary); }
        .snapshot-actions__callInit .initClose a:hover, .snapshot-actions__callInit .initClose a:active, .snapshot-actions__callInit .initClose a:focus,
        .snapshot-actions__callInit .popClose a:hover,
        .snapshot-actions__callInit .popClose a:active,
        .snapshot-actions__callInit .popClose a:focus, .snapshot-actions__callPop .initClose a:hover, .snapshot-actions__callPop .initClose a:active, .snapshot-actions__callPop .initClose a:focus,
        .snapshot-actions__callPop .popClose a:hover,
        .snapshot-actions__callPop .popClose a:active,
        .snapshot-actions__callPop .popClose a:focus {
          background: #ddd; }
  .snapshot-actions__callInit {
    padding: 0.5em;
    width: 300px;
    font-size: 0.875rem; }
    .snapshot-actions__callInit .d-flex {
      align-items: center;
      gap: 0.5em; }
    .snapshot-actions__callInit img {
      width: 40px;
      max-width: none; }
  .snapshot-actions__callPop {
    white-space: nowrap;
    text-align: center;
    padding: 1em 2em; }
    .snapshot-actions__callPop > h2 {
      font-size: 1.25em;
      color: var(--secondary);
      margin: 0; }
    .snapshot-actions__callPop > h3 {
      font-weight: bold;
      font-size: 1.625em;
      padding: 0.5em 0;
      color: #000;
      margin: 0; }
      .snapshot-actions__callPop > h3 > a {
        display: block;
        text-align: center;
        background: var(--primary);
        color: #fff;
        padding: 0.5em;
        font-family: 'muli', sans-serif; }
      .boyl .snapshot-actions__callPop > h3 > a:link, .boyl .snapshot-actions__callPop > h3 > a:visited {
        background: var(--boylblue);
        color: #fff; }
      .boyl .snapshot-actions__callPop > h3 > a:hover, .boyl .snapshot-actions__callPop > h3 > a:active, .boyl .snapshot-actions__callPop > h3 > a:focus {
        background: var(--boylblue);
        color: #fff; }

/*****************************/
/* *** Mobile Step Links *** */
/*****************************/
.snapshot-steps {
  position: relative; }

a.snapshot-steps__open {
  display: flex;
  background: var(--secondary);
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  padding: .75em;
  position: relative;
  z-index: 2;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25); }

.snapshot-steps__label {
  flex-grow: 1;
  text-align: center;
  color: white; }

.snapshot-steps ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: #ccc;
  z-index: 1;
  top: Calc(100% + 2rem);
  left: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
  transition: opacity 250ms, top 250ms, visibility 0ms 250ms; }

.snapshot-steps ul.open {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transition: visibility 0ms, opacity 250ms, top 250ms; }

a.snapshot-steps__link {
  background: var(--light);
  display: block;
  padding: .75em;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc; }

a.snapshot-steps__link.active {
  background: #00aeef;
  color: #fff; }

/************************/
/* *** Signing Page *** */
/************************/
.snapshot-complete {
  font-weight: 600;
  padding: 2em 2em;
  line-height: 1.5; }

.snapshot-complete__check {
  width: 100px;
  margin-bottom: 1em; }

.snapshot-complete__h1 {
  font-size: Clamp(1.25rem, 5vw, 4rem);
  text-transform: uppercase;
  font-weight: 600; }

.snapshot-complete p.strong {
  margin: 0 10%;
  font-size: 1.125em;
  font-weight: 700; }

/**************************/
/* *** Community QMIs *** */
/**************************/
.snapshot-community .bx-wrapper {
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.25);
  margin-bottom: 50px; }
.snapshot-community .bx-wrapper .bx-pager, .snapshot-community .bx-wrapper .bx-controls-auto {
  top: 100%; }
.snapshot-community .row > div {
  margin-bottom: 2em; }
.snapshot-community_list {
  box-shadow: 0 0.5em 1em var(--secondary); }
.snapshot-community_item {
  /*box-shadow: 0 .5em 1em rgba(0,0,0,0.25);*/
  /*margin-bottom: 2em;*/
  transition: box-shadow 500ms;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*height: 100%;*/ }
  .snapshot-community_item:hover, .snapshot-community_item:active, .snapshot-community_item:focus {
    /*box-shadow: 0 .5em 1em var(--secondary);*/ }
.snapshot-community_photo {
  position: relative;
  /*width: 100%;*/
  /*aspect-ratio: 1.5;	*/
  /*padding-bottom: 66.66%;*/
  flex: 1 1 60%;
  max-width: 60%; }
  .snapshot-community_photo a {
    /*position: absolute;
    inset: 0;
    top:0;
    bottom:0;
    left:0;
    right:0;*/
    background-position: center;
    background-size: cover; }
    .snapshot-community_photo a img {
      width: 100%;
      /*display: none;*/ }
.snapshot-community_details {
  padding: .5em;
  flex: 1 1 40%;
  max-width: 40%; }
@media (max-width: 1199.99px) {
  .snapshot-community_photo {
    flex: 1 1 50%;
    max-width: 50%; }
  .snapshot-community_details {
    padding: .5em;
    flex: 1 1 50%;
    max-width: 50%; } }
@media (max-width: 991.99px) {
  .snapshot-community_photo {
    flex: 1 1 100%;
    max-width: 100%; }
  .snapshot-community_details {
    padding: .5em;
    flex: 1 1 100%;
    max-width: 100%; } }
.snapshot-community_link:hover, .snapshot-community_link:active, .snapshot-community_link:focus {
  text-decoration: none; }
.snapshot-community_name {
  font-size: 1.5em;
  padding: .5em .5em .25em;
  color: var(--secondary);
  font-weight: 600; }
.snapshot-community_citystate {
  color: var(--dark); }
.snapshot-community_price {
  color: var(--dark);
  font-style: italic;
  font-weight: bold; }
.snapshot-community_footage {
  color: var(--dark); }
.snapshot-community_schools {
  font-size: .875em;
  line-height: 1.25;
  color: var(--dark); }

/**********************/
/* *** Responsive *** */
/**********************/
@media (max-width: 320px) {
  .snapshot-header__logo img {
    width: 125px;
    margin: 0 .5em; }

  .snapshot-header__contact-photo img {
    height: 2em; } }
@media (max-width: 400px) {
  .snapshot-header__logo img {
    width: 150px;
    margin: 0 .5em; }

  .snapshot-header__contact-photo img {
    height: 2.5em; } }
@media (min-width: 478px) {
  .snapshot-header__contact {
    flex-wrap: nowrap; }

  .snapshot-main__photos {
    width: 90%; }

  .snapshot-main__photos img {
    max-height: 50vw; } }
@media (min-width: 576px) {
  .snapshot-actions a.snapshot-action__continue i {
    font-size: 2em;
    margin-left: .25em; }

  .snapshot-actions {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .snapshot-actions a {
      display: inline-block;
      text-align: right; }
      .snapshot-actions a.snapshot-action__back {
        border-right: 1px solid #ccc;
        padding-right: 1.5rem;
        margin-right: 1.5rem; }
      .snapshot-actions a.snapshot-action__continue {
        display: flex;
        align-items: center; }
    .snapshot-actions__call a {
      text-align: center; } }
@media (max-width: 767px) {
  .snapshot-step__desktop-only,
  .snapshot-main__desktop-only {
    display: none !important; } }
@media (min-width: 768px) {
  .snapshot-main__mobile-only {
    display: none !important; }

  .snapshot-community_slider img,
  .snapshot-main__photos img {
    max-height: 50vh;
    max-height: Clamp(200px, Calc(100vh - 21rem), 80vh);
    max-height: Max(200px, Calc(100vh - 21rem)); }

  .snapshot-features img {
    max-height: 66vh;
    max-height: Max(300px, Calc(100vh - 16em)); }

  .snapshot-steps {
    display: none; }

  a.snapshot-step__link {
    display: block; }

  .snapshot-actions {
    justify-content: space-between; }

  .snapshot-content {
    display: flex;
    overflow: hidden;
    flex-direction: row; }

  .snapshot-step__content {
    display: none; }

  .snapshot-left {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-basis: 50%;
    max-width: 50%;
    padding-bottom: 3rem; }

  .snapshot-step {
    display: flex; }

  .snapshot-right {
    flex-basis: 50%;
    max-width: 50%;
    overflow-y: hidden; }

  .snapshot-left-narrow {
    flex-basis: 40%;
    max-width: 40%; }
    .snapshot-left-narrow + .snapshot-right {
      flex-basis: 60%;
      max-width: 60%; }

  .snapshot-main {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: auto;
    display: block; } }
@media (min-width: 992px) {
  .snapshot-left {
    flex-basis: 40%;
    max-width: 40%; }

  .snapshot-right {
    flex-basis: 60%;
    max-width: 60%; }

  .snapshot-left-narrow {
    flex-basis: 33.33%;
    max-width: 33.33%; }
    .snapshot-left-narrow + .snapshot-right {
      flex-basis: 66.66%;
      max-width: 66.66%; } }
@media (min-width: 1200px) {
  .snapshot-community_slider img,
  .snapshot-main__photos img {
    max-height: 50vh;
    max-height: Clamp(200px, Calc(100vh - 23rem), 80vh);
    max-height: Max(200px, Calc(100vh - 23rem)); }

  .snapshot-left {
    flex-basis: 33.33%;
    max-width: 33.33%; }

  .snapshot-right {
    flex-basis: 66.66%;
    max-width: 66.66%; }

  .snapshot-left-narrow {
    flex-basis: 25%;
    max-width: 25%; }
    .snapshot-left-narrow + .snapshot-right {
      flex-basis: 75%;
      max-width: 75%; } }
/*********************************/
/* *** Responsive Background *** */
/*********************************/
.snapshot-bg_started {
  min-height: 400px;
  background-image: url("/images/snapshot-started-image-400.jpg"); }
  @media (min-width: 478px) {
    .snapshot-bg_started {
      background-image: url("/images/snapshot-started-image-700.jpg"); } }
  @media (min-width: 768px) {
    .snapshot-bg_started {
      background-image: url("/images/snapshot-started-image-1000.jpg"); } }
  @media (min-width: 991px) {
    .snapshot-bg_started {
      background-image: url("/images/snapshot-started-image.jpg"); } }
  .webp .snapshot-bg_started {
    background-image: url("/images/snapshot-started-image-400.webp"); }
    @media (min-width: 478px) {
      .webp .snapshot-bg_started {
        background-image: url("/images/snapshot-started-image-700.webp"); } }
    @media (min-width: 768px) {
      .webp .snapshot-bg_started {
        background-image: url("/images/snapshot-started-image-1000.webp"); } }
    @media (min-width: 991px) {
      .webp .snapshot-bg_started {
        background-image: url("/images/snapshot-started-image.webp"); } }

.snapshot-bg_payment {
  background-image: url("/images/snapshot-payment-image-400.jpg"); }
  @media (min-width: 478px) {
    .snapshot-bg_payment {
      background-image: url("/images/snapshot-payment-image-700.jpg"); } }
  @media (min-width: 768px) {
    .snapshot-bg_payment {
      background-image: url("/images/snapshot-payment-image-1000.jpg"); } }
  @media (min-width: 991px) {
    .snapshot-bg_payment {
      background-image: url("/images/snapshot-payment-image.jpg"); } }
  .webp .snapshot-bg_payment {
    background-image: url("/images/snapshot-payment-image-400.webp"); }
    @media (min-width: 478px) {
      .webp .snapshot-bg_payment {
        background-image: url("/images/snapshot-payment-image-700.webp"); } }
    @media (min-width: 768px) {
      .webp .snapshot-bg_payment {
        background-image: url("/images/snapshot-payment-image-1000.webp"); } }
    @media (min-width: 991px) {
      .webp .snapshot-bg_payment {
        background-image: url("/images/snapshot-payment-image.webp"); } }

.snapshot-bg_success {
  background-image: url("/images/snapshot-success-image.jpg"); }
  @media (min-width: 478px) {
    .snapshot-bg_success {
      background-image: url("/images/snapshot-success-image-700.jpg"); } }
  @media (min-width: 768px) {
    .snapshot-bg_success {
      background-image: url("/images/snapshot-success-image-1000.jpg"); } }
  @media (min-width: 991px) {
    .snapshot-bg_success {
      background-image: url("/images/snapshot-success-image.jpg"); } }
  .webp .snapshot-bg_success {
    background-image: url("/images/snapshot-success-image-400.webp"); }
    @media (min-width: 478px) {
      .webp .snapshot-bg_success {
        background-image: url("/images/snapshot-success-image-700.webp"); } }
    @media (min-width: 768px) {
      .webp .snapshot-bg_success {
        background-image: url("/images/snapshot-success-image-1000.webp"); } }
    @media (min-width: 991px) {
      .webp .snapshot-bg_success {
        background-image: url("/images/snapshot-success-image.webp"); } }

.snapshot-bg_summary {
  background-image: url("/images/snapshot-summary-image.jpg"); }
  @media (min-width: 478px) {
    .snapshot-bg_summary {
      background-image: url("/images/snapshot-summary-image-700.jpg"); } }
  @media (min-width: 768px) {
    .snapshot-bg_summary {
      background-image: url("/images/snapshot-summary-image-1000.jpg"); } }
  @media (min-width: 991px) {
    .snapshot-bg_summary {
      background-image: url("/images/snapshot-summary-image.jpg"); } }
  .webp .snapshot-bg_summary {
    background-image: url("/images/snapshot-summary-image-400.webp"); }
    @media (min-width: 478px) {
      .webp .snapshot-bg_summary {
        background-image: url("/images/snapshot-summary-image-700.webp"); } }
    @media (min-width: 768px) {
      .webp .snapshot-bg_summary {
        background-image: url("/images/snapshot-summary-image-1000.webp"); } }
    @media (min-width: 991px) {
      .webp .snapshot-bg_summary {
        background-image: url("/images/snapshot-summary-image.webp"); } }

a.slideMore {
  background: var(--primary);
  color: var(--boylgreen);
  padding: .25em .5em;
  border-radius: 5px; }

.design-slider h2 {
  text-transform: uppercase;
  color: var(--boylgreen);
  text-align: center;
  font-size: 1.75rem; }
  .design-slider h2 span {
    font-weight: 600;
    color: var(--boylgreen); }
.design-slider h3 {
  text-transform: uppercase;
  color: var(--boylgreen);
  font-size: 1.5rem;
  text-align: center; }
.design-slider li {
  padding: 0 15px; }
.design-slider img {
  margin: 0 auto; }
.design-slider ul {
  padding: 0;
  margin: 0; }
.design-slider .slick-prev,
.design-slider .slick-next {
  height: 30px;
  width: 30px; }
  .design-slider .slick-prev::before, .design-slider .slick-prev::before,
  .design-slider .slick-next::before,
  .design-slider .slick-next::before {
    color: var(--boylgreen);
    font-size: 30px; }

.snapshot-sub {
  display: none; }
  .snapshot-sub.active {
    display: block; }

.boyl .snapshot-actions__call > a:link, .boyl .snapshot-actions__call > a:visited, .boyl .snapshot-actions__call > a:hover, .boyl .snapshot-actions__call > a:active, .boyl .snapshot-actions__call > a:focus {
  color: #fff; }

.bg-boyl-land {
  background-image: url("/images/boyl-estimate-land.jpg");
  background-size: cover;
  background-position: top center;
  min-height: 300px; }

.bg-boyl-tractor {
  background-image: url("/images/boyl-tractor-land-improvement.jpg");
  background-size: cover;
  background-position: top center;
  min-height: 300px; }

/*# sourceMappingURL=snapshot.css.map */
