/******************************************************************
Site Name:
Author:

Stylesheet: Main Content

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: All SASS Utility Includes

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Utility Functions

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Sidebar

******************************************************************/
.sidebar {
  margin-top: 3em;
}

@media (max-width: 767.98px) {
  .sidebar {
    margin-top: 2em;
  }
}
@media (min-width: 768px) {
  .page-template-page-two-col #inner-content {
    display: flex;
  }
  .page-template-page-two-col #inner-content #main {
    width: 66.6%;
  }
  .page-template-page-two-col #inner-content #aside {
    width: 33.3%;
  }
}
@media (min-width: 992px) {
  .page-template-page-two-col #inner-content #main {
    width: 70%;
  }
  .page-template-page-two-col #inner-content #aside {
    width: 30%;
  }
}
.page-template-page-two-col #two-col-bottom-content {
  padding-bottom: 2em;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Media Stylesheet

******************************************************************/
figure {
  margin: 1em 0;
}

img {
  vertical-align: middle;
}

.container > p:first-child img {
  margin-top: -1em;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
img {
  height: auto;
  max-width: 100%;
}

img.alignleft,
.alignleft,
img.alignright,
.alignright,
img.aligncenter,
.aligncenter,
img.alignnone,
.alignnone {
  display: block;
  margin: 15px auto;
}

@media (min-width: 576px) {
  img.alignleft,
  .alignleft {
    float: left;
    margin: 5px 20px 15px 0;
  }
  img.alignright,
  .alignright {
    float: right;
    margin: 5px 0 15px 20px;
  }
  img.aligncenter,
  .aligncenter {
    display: block;
    margin: 15px auto;
  }
  img.alignnone,
  .alignnone {
    clear: both;
    margin: 15px 0;
  }
}
.wp-caption {
  background: #EEE;
  padding: 6px;
  max-width: 100%;
}
.wp-caption img {
  margin-bottom: 6px;
  width: 100%;
  vertical-align: top;
}

.wp-caption-text {
  font-size: 0.85em;
  text-align: center;
  font-style: italic;
}

.gallery {
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}
.gallery .gallery-item {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.gallery .gallery-item .gallery-icon {
  text-align: center;
}
.gallery .gallery-item .gallery-icon a:focus {
  outline: none;
}
.gallery .gallery-item .gallery-icon a img {
  vertical-align: top;
}
.gallery > br {
  display: none;
}

.gallery-caption {
  padding: 6px;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item,
.gallery-columns-4 .gallery-item,
.gallery-columns-5 .gallery-item,
.gallery-columns-6 .gallery-item,
.gallery-columns-7 .gallery-item,
.gallery-columns-8 .gallery-item,
.gallery-columns-9 .gallery-item {
  width: 33.333%;
}

@media (min-width: 768px) {
  .gallery-columns-4 .gallery-item {
    width: 25%;
  }
  .gallery-columns-5 .gallery-item {
    width: 20%;
  }
}
svg {
  width: 100%;
}

.responsive-svg {
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.responsive-svg svg {
  position: absolute;
  top: 0;
  left: 0;
}

video {
  height: auto !important;
  width: 100% !important;
}

.wp-video {
  margin: 1em 0;
}

.mejs-video {
  height: auto !important;
  padding-top: 57%;
  width: 100% !important;
}
.mejs-video .mejs-inner .mejs-mediaelement video {
  bottom: 0;
  height: 100% !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100% !important;
}
.mejs-video .mejs-inner .mejs-layers .mejs-poster {
  height: 100% !important;
  width: 100% !important;
}
.mejs-video .mejs-inner .mejs-overlay-play {
  height: 100% !important;
  width: 100% !important;
}

.wp-playlist {
  overflow: hidden;
}
.wp-playlist .wp-playlist-caption {
  display: block;
}
.wp-playlist .wp-playlist-caption .wp-playlist-item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Tables Stylesheet

******************************************************************/
table {
  border-collapse: collapse;
  margin: 1em 0;
  text-align: left;
  width: 100%;
}
table thead {
  text-align: center;
}
table th,
table td {
  padding: 4px;
}
table th {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #111;
  font-weight: bold;
  text-align: center;
}
table td {
  border: solid 1px #ddd;
  color: #111;
  vertical-align: top;
}
table:not(.card-comparison-table) tr:nth-child(even),
table:not(.card-comparison-table) tr.even {
  background-color: #fff;
}
table:not(.card-comparison-table) tr:nth-child(odd),
table:not(.card-comparison-table) tr.odd {
  background-color: #f1f4f7;
}
@media (min-width: 768px) {
  table th,
  table td {
    padding: 8px;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Forms Stylesheet

******************************************************************/
::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
  font-weight: 400;
}

:-moz-placeholder {
  color: #999;
  font-style: italic;
  font-weight: 400;
}

::-moz-placeholder {
  color: #999;
  font-style: italic;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #999;
  font-style: italic;
  font-weight: 400;
}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}

[placeholder]:focus:-moz-placeholder {
  -moz-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}

[placeholder]:focus::-moz-placeholder {
  -moz-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}

[placeholder]:focus:-ms-placeholder {
  -ms-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

textarea,
select,
input[type=text],
input[type=url],
input[type=email],
input[type=tel],
input[type=number],
input[type=password] {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 0;
  color: #111;
  font-size: 1em;
  letter-spacing: normal;
  outline: none;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
textarea:focus, textarea:active,
select:focus,
select:active,
input[type=text]:focus,
input[type=text]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=password]:focus,
input[type=password]:active {
  background: #fff;
  border: 1px solid #999;
}

select,
input[type=text],
input[type=url],
input[type=email],
input[type=tel],
input[type=number],
input[type=password] {
  vertical-align: middle;
  height: 42px;
  padding: 0 8px;
}

input[type=image] {
  border: none;
  padding: 0;
  width: auto;
}

textarea {
  resize: vertical;
  padding: 8px;
}

select {
  font-size: 1em;
  font-family: inherit;
  padding: 5px !important;
  overflow: hidden;
  letter-spacing: normal;
  border: 0;
  outline: 1px ridge #ddd;
  -webkit-border-radius: 0;
  -webkit-appearance: menulist-button;
}
select option {
  padding: 2px 10px !important;
  display: block;
}
select:focus {
  border: 0;
  outline: 1px ridge #999;
  -webkit-border-radius: 0;
  -webkit-appearance: menulist-button;
}

input[type=submit],
input[type=button],
button[type=submit] {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: transparent solid 1px;
  border-radius: 10px;
  transition: background-color 0.2s ease-in-out;
  background-color: #ee1b2e;
  color: #FFF;
  border-radius: 10px;
  font-size: 1.375em;
  line-height: 1.42857;
  padding-top: 0.425rem;
  padding-bottom: 0.425rem;
  padding-left: 2.125rem;
  padding-right: 2.125rem;
  background-image: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Knockout 31 A", "Knockout 31 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
}
input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active, input[type=submit].active,
input[type=button]:hover,
input[type=button]:focus,
input[type=button]:active,
input[type=button].active,
button[type=submit]:hover,
button[type=submit]:focus,
button[type=submit]:active,
button[type=submit].active {
  text-decoration: none;
}
input[type=submit]:hover, input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus,
button[type=submit]:hover,
button[type=submit]:focus {
  background-color: #df1123;
  color: #FFF;
}
input[type=submit]:active, input[type=submit].active,
input[type=button]:active,
input[type=button].active,
button[type=submit]:active,
button[type=submit].active {
  color: #FFF;
  box-shadow: inset 0px 1px 8px -1px #c70f1f;
}
input[type=submit]:visited,
input[type=button]:visited,
button[type=submit]:visited {
  color: #FFF;
}
input[type=submit]:focus,
input[type=button]:focus,
button[type=submit]:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.error-404 #searchform {
  margin: 1em 0;
  max-width: 481px;
}

#searchform {
  height: 42px;
  overflow: hidden;
  position: relative;
}
#searchform #s {
  padding-right: 12%;
  width: 100%;
}
#searchform #searchsubmit {
  font-size: 1em;
  height: 42px;
  line-height: 42px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 12%;
}

.post-password-form label {
  display: block;
}
.post-password-form input[type=password] {
  margin-top: 4px;
  margin-bottom: 1em;
}

.gsection.empty {
  display: none;
}

@media (min-width: 768px) {
  .post-password-form input[type=password] {
    display: block;
    width: 50%;
  }
}
.gform_wrapper {
  padding: 2em;
  margin-top: 4em;
  background-color: #e9e9e9;
}
.gform_wrapper .gsection {
  display: none;
}
.gform_wrapper h3 {
  font-size: 1.125rem;
}
.gform_wrapper .gform_title {
  margin-top: 0;
}

.gform_wrapper .sms-opt-in-checkbox .gchoice .gfield-choice-input {
  margin-top: 0 !important;
}
.gform_wrapper .sms-opt-in-checkbox .gchoice label {
  font-weight: normal !important;
}
.gform_wrapper .sms-opt-in-consent .ginput_container_consent input {
  display: none;
}
.gform_wrapper .sms-opt-in-consent .ginput_container_consent label {
  font-weight: normal;
  font-size: 0.9em;
  font-style: italic;
}
@media (min-width: 992px) {
  .gform_wrapper .sms-opt-in-mobile {
    width: 50%;
  }
}
.gform_wrapper .gform_required_legend {
  font-size: 0.9em;
}

.component-gravity_form.referral-form {
  padding-top: 1em;
}
.component-gravity_form.referral-form h2.gform_title {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #ee1b2e;
}
.component-gravity_form.referral-form h3 {
  padding-bottom: 0.5em;
  border-bottom: 1px solid lightgray;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Base Page Component Styles

Version: 1.0.0

******************************************************************/
.page-component {
  margin: 0 auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
  background-size: cover;
  background-position: center center;
  padding: 2em 1em;
}
@media (min-width: 576px) {
  .page-component {
    padding: 5em 2em;
  }
}
.page-component:last-of-type, .page-component.force-last-page-component {
  margin-bottom: -2em !important;
}
.page-component .section-heading {
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
  color: #111;
  line-height: 1.1;
}

.page-template-page-two-col #main .page-component {
  margin: 0;
  transform: none;
}

@media (min-width: 768px) {
  .page-template-page-two-col .inner-content .page-component {
    padding: 1em 4em 1em 2em;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
}
.background-color-white {
  background-color: #ffffff;
}
.background-color-white h3 {
  color: #ee1b2e;
}

.background-color-black {
  background-color: #111;
}
.background-color-black .hero-title,
.background-color-black .section-heading {
  color: #ffffff;
}

.background-color-light-grey {
  background-color: #f5f5f5;
}

.background-color-medium-grey {
  background-color: #ebecee;
}

.background-color-dark-grey {
  background-color: #3b3b3b;
}
.background-color-dark-grey .hero-title,
.background-color-dark-grey .section-heading {
  color: #ffffff;
}

.background-color-red {
  background-color: #ee1b2e;
}
.background-color-red .hero-title,
.background-color-red .section-heading,
.background-color-red .headline,
.background-color-red p,
.background-color-red .lets-talk-column-heading,
.background-color-red .component-lets-talk .column-description p,
.background-color-red h2,
.background-color-red a {
  color: #ffffff;
}
.background-color-red svg path {
  fill: #ffffff;
}

.background-color-dark-red {
  background-color: #a01416;
}

.background-color-orange {
  background-color: #f18a00;
}

.background-color-dark-orange {
  background-color: #c77100;
}

.background-color-yellow {
  background-color: #fcbf13;
}

.background-color-green {
  background-color: #2ab300;
}

.background-color-dark-green {
  background-color: #01740b;
}

.background-color-blue {
  background-color: #034ae2;
}

.background-color-dark-blue {
  background-color: #002ba0;
}

.background-color-purple {
  background-color: #7f00c9;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Card Comparison Table

Version: 1.0.0

******************************************************************/
.page-component.component-card_comparison {
  padding: 4em 1em;
}

#diff-button {
  width: 100%;
}

.card-comparison-table td,
.card-comparison-table th {
  border: none;
  position: relative;
  padding: 1em 0;
  vertical-align: middle;
  background: none;
}

.card-comparison-table .section-title td {
  padding: 0.25em 0;
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1.3;
}

td.section-title {
  font-size: 1.25rem;
  line-height: 1.2;
}

.card-comparison-table .section-title-card-title a {
  text-decoration: none;
  color: #ee1b2e;
  font-size: 1.375rem;
}
.card-comparison-table .section-title-card-title a:hover {
  color: #b61f1f;
  text-decoration: underline;
}

.card-compare-card-title {
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: #111 !important;
  margin: 0.25em 0 0;
}

.card-compare-card-sub-title {
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: normal;
  color: #ee1b2e;
  margin: 0 auto 0.75rem;
}

.card-compare-card-description {
  font-size: 0.8em;
}

tr.learn-more-row th {
  padding: 0.25em 0 1.75em;
  font-weight: normal;
}

.card-comparison-table tr.title-row th:not(.gutter),
.card-comparison-table tr.card-image-row th:not(.gutter) {
  padding: 0.5em;
}

.card-comparison-table tr.title-row th {
  vertical-align: top;
  padding-bottom: 0;
}
.card-comparison-table tr.apply-row-top th {
  padding: 0;
}
.card-comparison-table tr.apply-row .button {
  margin-bottom: 0.5em;
}
.card-comparison-table tr.section-title {
  background-color: #c7c7c7;
  border: solid 1px #c7c7c7;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}
.card-comparison-table tr.section-title .section-title-card-title {
  font-size: 1.375rem;
  text-align: center;
}
.card-comparison-table tr.apply-row-bottom th {
  margin-bottom: 0;
  padding: 0;
}
.card-comparison-table tr.apply-row-bottom th .button {
  margin-bottom: 0;
}
.card-comparison-table tr.card-image-row.card-image-row-bottom th {
  padding: 2em 1em 0.25em;
}
.card-comparison-table .button {
  padding: 0.425em 1.025em;
  font-weight: normal;
}
@media (min-width: 576px) {
  .card-comparison-table .button {
    padding: 0.625em 1.125em;
  }
}
@media (min-width: 768px) {
  .card-comparison-table .button {
    padding: 0.625rem 2.125em;
  }
}
.card-comparison-table .top-left-message {
  padding: 0.25em 0;
  text-align: left;
}
.card-comparison-table .top-left-message h3 {
  margin: 0.25em 0;
}
.card-comparison-table .top-left-message p {
  font-weight: normal;
}
.card-comparison-table i.fa-check {
  color: #ee1b2e;
  font-size: 2em;
}

.card-comparison-table td.section-comparison {
  text-align: center;
}

.card-comparison-table.hide-same-values .row-same {
  display: none;
}

/*
MOBILE SPECIFIC
*/
@media (max-width: 1199.98px) {
  .card-compare-card-title {
    font-size: 1em;
  }
  .card-compare-card-sub-title {
    font-size: 0.75em;
  }
  .card-compare-card-description {
    font-size: 0.65em;
  }
}
@media screen and (max-width: 767px) {
  .popmake-content table th:first-child {
    display: block !important;
  }
  th.diff-button-th,
  th.top-left-message {
    display: none !important;
  }
  .card-comparison-table {
    border: 1px solid #e0e0e0;
  }
  .card-comparison-table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .card-comparison-table td,
  .card-comparison-table th {
    flex: 1 0 50%;
    display: block;
    padding: 1em 0.5em;
    border: 1px solid #e0e0e0;
  }
  .card-comparison-table th.section-title,
  .card-comparison-table td.section-title {
    flex: 1 0 100%;
    padding: 1em 0.5em;
    text-align: center;
    background: #eaeaea;
  }
  .card-comparison-table th:first-child {
    display: none !important;
  }
  .card-comparison-table .gutter,
  .card-comparison-table .section-title-card-title {
    display: none !important;
  }
  .card-comparison-table .card-image-row-bottom {
    border-top: 1px solid #e0e0e0;
  }
}
@media only screen and (min-width: 768px) {
  .card-comparison-table {
    table-layout: fixed;
  }
  .card-comparison-table th.top-left-message {
    font-size: 0.8em;
    width: 27%;
  }
  .card-comparison-table th.top-left-message p {
    margin: 0.5em 0;
  }
  .card-comparison-table th.top-left-message #diff-button {
    margin-top: 0;
    padding: 0.625em 0.85em;
  }
  .card-comparison-table tr:nth-child(odd),
  .card-comparison-table tr.odd {
    background-color: #ffffff;
  }
  .card-comparison-table tr.section-title {
    background-color: #111;
    text-align: left;
  }
  .card-comparison-table tr.section-title td {
    padding: 0.5em 0;
    color: #ffffff;
  }
  .card-comparison-table tr.section-title.section-0, .card-comparison-table tr.section-title.section-2, .card-comparison-table tr.section-title.section-4 {
    border: solid 1px #e0e0e0;
  }
  .card-comparison-table tr.section-title.section-1, .card-comparison-table tr.section-title.section-3, .card-comparison-table tr.section-title.section-5 {
    border: solid 1px #c7c7c7;
  }
  .card-comparison-table tr.section-title .section-title-card-title a {
    color: #ffffff;
  }
  .card-comparison-table td {
    border-bottom: solid 1px #e0e0e0;
    border-top: solid 1px #e0e0e0;
  }
  .card-comparison-table .card-image-row img {
    max-width: 250px;
    width: auto;
  }
  .card-comparison-table .gutter {
    display: table-cell;
    width: 2%;
    border: none;
  }
  .card-comparison-table td.section-comparison-title {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .card-comparison-table .card-image-row img {
    width: auto;
  }
  .card-comparison-table th.top-left-message {
    font-size: 1em;
    width: 25%;
  }
  .card-comparison-table th.top-left-message p {
    margin: 0.75em 0;
  }
  .card-comparison-table th.top-left-message #diff-button {
    font-size: 1em;
  }
}
.card-image-row th,
.title-row th,
.apply-row th,
.learn-more-row th,
table.card-comparison-table {
  border: none;
}

.card-comparison-table.card-count-3 .card-compare-card-title {
  font-size: 1em;
}
.card-comparison-table.card-count-3 .card-compare-card-sub-title {
  font-size: 0.85em;
}
@media (max-width: 1199.98px) {
  .card-comparison-table.card-count-3 .button {
    font-size: 1em;
    padding: 0.425em 0.825em;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .card-comparison-table.card-count-3 .apply-row td,
  .card-comparison-table.card-count-3 .apply-row th,
  .card-comparison-table.card-count-3 .card-image-row td,
  .card-comparison-table.card-count-3 .card-image-row th,
  .card-comparison-table.card-count-3 .card-image-row-bottom td,
  .card-comparison-table.card-count-3 .card-image-row-bottom th,
  .card-comparison-table.card-count-3 .title-row td,
  .card-comparison-table.card-count-3 .title-row th,
  .card-comparison-table.card-count-3 .learn-more-row td,
  .card-comparison-table.card-count-3 .learn-more-row th {
    flex: 1 0 33%;
  }
  .card-comparison-table.card-count-3 .section-comparison {
    flex: 1 0 33%;
  }
  .card-comparison-table.card-count-3 .card-image-row img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60px;
  }
  .card-comparison-table.card-count-3 .button {
    font-size: 0.825em;
  }
}

/******************************************************************
Site Name:
Author:

Stylesheet: Card Options Page Component

Version: 1.0.0

******************************************************************/
.card-options-cards {
  margin: 1em auto 0;
  padding: 1em 0 0;
}
@media (min-width: 800px) {
  .card-options-cards {
    display: flex;
    justify-content: space-around;
    max-width: 960px;
  }
}
@media (max-width: 799px) {
  .card-options-cards .card-options-card:not(:last-child) {
    margin-bottom: 3em;
  }
}

.card-options-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex: 1 1 475px;
  padding: 0 1em;
}
@media (min-width: 576px) {
  .card-options-card {
    padding: 0 4em;
  }
}

.stacked-center .card-options-card {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.stacked-center .card-option-card-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.stacked-center .card-option-title,
.stacked-center .card-option-subtitle,
.stacked-center .card-option-description {
  text-align: center;
}
.stacked-center .card-option-description {
  max-width: 325px;
}
.stacked-center .card-option-subtitle {
  margin-top: 0.25em;
}
.stacked-center .card-option-buttons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.stacked-left .card-options-card {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}

.card-option-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: start;
}

.card-option-card-image {
  margin-bottom: 1em;
  height: auto;
  width: 100%;
  max-width: 355px;
}

.card-option-title {
  color: #111;
  margin: 0.5em 0 0.25em;
  line-height: 1.1;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .card-option-title {
    font-size: 1.5rem;
  }
}

.card-option-subtitle {
  margin: 1em 0 0.25em;
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  font-size: 1.25rem;
  color: #ee1b2e;
}
@media (min-width: 576px) {
  .card-option-subtitle {
    font-size: 1.25rem;
  }
}

.card-option-description p {
  margin: 0.5em 0 1em;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .card-option-description p {
    font-size: 1.25rem;
  }
}

.card-option-buttons {
  display: flex;
  flex-direction: column;
}
.card-option-buttons .button {
  margin-bottom: 0.5rem;
}

.card_options_stacked .card-option-subtitle {
  margin-top: 0.25em;
}

.card_options_horizontal .card-options-card {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .card_options_horizontal .card-options-card {
    margin: 0 1.5em;
  }
}
.card_options_horizontal .card-option-card-content {
  width: 100%;
}
.card_options_horizontal .card-option-title {
  color: #ffffff;
  background-color: #ee1b2e;
  padding: 0.25em 0.5em;
  font-size: 1.5em;
  min-width: 100%;
}
.card_options_horizontal .card_options-stacked-container {
  display: flex;
  flex: 1 1 auto;
  margin-top: 0.5em;
}
.card_options_horizontal .card-option-content-container {
  flex: 1 1 60%;
  padding-right: 1em;
  padding-left: 0.5em;
}
.card_options_horizontal .card-option-content-container .card-option-subtitle,
.card_options_horizontal .card-option-content-container .card-option-description p {
  font-size: 1em;
}
.card_options_horizontal .card-option-card-image {
  flex: 1 1 40%;
  padding-left: 0.5em;
  padding-top: 1.5em;
}
.card_options_horizontal .card-option-buttons {
  padding-left: 0.5em;
}
.card_options_horizontal .card-option-buttons .text_link {
  margin-left: 0.5em;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Columns

Version: 1.0.0

******************************************************************/
.component-content-columns .columns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.component-content-columns .columns .column {
  margin: 1em;
  flex: 1;
}
.component-content-columns .columns .column:first-child {
  margin-bottom: 3em;
}
@media (min-width: 576px) {
  .component-content-columns .columns {
    flex-direction: row;
  }
  .component-content-columns .columns .column:first-child {
    margin-bottom: 0;
  }
}

/******************************************************************
Site Name:
Author:

Stylesheet: Content Cards Page Component

Version: 1.0.0

******************************************************************/
.component-content-cards {
  padding: 4em 2em;
}
@media (min-width: 992px) {
  .component-content-cards .content-cards {
    display: flex;
  }
}
.component-content-cards .content-card {
  margin: 1em 1em 0;
}
@media (min-width: 992px) {
  .component-content-cards .content-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 767.98px) {
  .component-content-cards .content-card.last {
    margin-bottom: 0;
  }
}
.component-content-cards .content-card-content {
  padding: 0 1em 1em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.component-content-cards .content-card-title {
  margin: 0;
  font-size: 1.375rem;
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
}
.component-content-cards .content-card-description {
  color: #3b3b3b;
}
.component-content-cards .content-card-description p {
  margin: 0.5em 0;
}
.component-content-cards .cta {
  justify-self: flex-end;
}
.component-content-cards.image-alignment-top .content-card {
  box-shadow: 2px 2px 14px 0px rgba(0, 0, 0, 0.53);
}
.component-content-cards.image-alignment-top .content-card-image {
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: overlay;
  height: 175px;
}
@media (min-width: 576px) {
  .component-content-cards.image-alignment-top .content-card-image {
    height: 200px;
  }
}
@media (min-width: 768px) {
  .component-content-cards.image-alignment-top .content-card-image {
    height: 220px;
  }
}
@media (min-width: 992px) {
  .component-content-cards.image-alignment-top .content-card-image {
    height: 245px;
  }
}
@media (min-width: 1200px) {
  .component-content-cards.image-alignment-top .content-card-image {
    height: 275px;
  }
}
.component-content-cards.image-alignment-top .content-card-content {
  background-color: #fff;
}
.component-content-cards.image-alignment-left .content-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 767.98px) {
  .component-content-cards.image-alignment-left .content-card {
    margin-bottom: 1em;
  }
  .component-content-cards.image-alignment-left .content-card.last {
    margin-bottom: 0;
  }
}
.component-content-cards.image-alignment-left .content-card-image {
  flex: 1 1 150px;
  max-width: 25%;
}
.component-content-cards.image-alignment-left .content-card-content {
  flex: 1 1 auto;
  max-width: 75%;
}

/******************************************************************
Site Name:
Author:

Stylesheet: CTA

Version: 1.0.0

******************************************************************/
.component-cta p {
  margin: 1em auto;
  max-width: 700px;
}
.component-cta .cta {
  margin-top: 2em;
}
.component-cta.lets-talk-side-by-side {
  margin-top: 2em;
}
@media (min-width: 768px) {
  .component-cta.lets-talk-side-by-side .container {
    display: flex;
    padding: 0 2em;
    justify-content: space-between;
  }
}

@media (min-width: 576px) {
  .page-component.component-cta {
    padding: 3em;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Existing Customer Links

Version: 1.0.0

******************************************************************/
.component-existing-customer-links .existing-customer-links {
  margin: 2em 1em;
}
.component-existing-customer-links .existing-customer-card {
  padding: 0 1em;
  margin-bottom: 2em;
}
.component-existing-customer-links .card-image {
  max-width: 350px;
}
.component-existing-customer-links .card-option-title {
  font-size: 1.5em;
}
@media (min-width: 576px) {
  .component-existing-customer-links {
    padding-bottom: 1em;
  }
  .component-existing-customer-links .existing-customer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
  }
  .component-existing-customer-links .existing-customer-card {
    margin-bottom: 0;
  }
}

/******************************************************************
Site Name:
Author:

Stylesheet: Features Page Component

Version: 1.0.0

******************************************************************/
.page-component.component-features .ctas-container {
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .page-component.component-features .ctas-container {
    margin-top: 3rem;
  }
}

@media (min-width: 768px) {
  .features {
    display: flex;
  }
}

.feature {
  flex: 0 1 350px;
  padding: 0.5rem 0;
  width: 100%;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .feature {
    padding: 0.75rem 1.1rem;
  }
}

.feature-img {
  text-align: center;
}
.feature-img img,
.feature-img svg {
  width: auto;
  height: 100%;
  max-height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.feature-img svg path {
  fill: #ee1b2e;
}

.feature-title {
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #111;
  margin-bottom: 0.25rem;
}

.feature-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 auto;
}
.feature-description p {
  margin: 0.25em 0 1em;
}
.feature-description h3 {
  color: #111;
}

.features + .cta {
  padding: 0 1em;
}

/***********
Features Stacked
***********/
.features.layout-stacked {
  flex-direction: column;
}
.features.layout-stacked .feature {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  max-width: 750px;
  width: 100%;
}
.features.layout-stacked .feature-img {
  margin: 0 auto;
  flex: 0 0 15%;
  display: flex;
  justify-content: center;
}
.features.layout-stacked .feature-content {
  flex: 0 1 85%;
  max-width: 85%;
  padding-left: 2rem;
}
.features.layout-stacked .feature-title {
  margin-top: 0;
}
.features.layout-stacked .feature-description p {
  margin: 0 0 0.75em;
}

.features.stacked-two-col, .features.stacked-three-col {
  flex-direction: row;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .features.stacked-two-col .feature {
    width: 50%;
    max-width: 50%;
  }
  .features.stacked-two-col .feature .feature-content {
    padding-right: 2em;
  }
}

.features.stacked-three-col .feature {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .features.stacked-three-col .feature {
    width: 33.3%;
    max-width: 33.3%;
  }
  .features.stacked-three-col .feature .feature-img {
    flex: 0 0 20%;
  }
  .features.stacked-three-col .feature .feature-content {
    flex: 0 1 80%;
    max-width: 80%;
    padding-left: 1.5rem;
  }
}

/***********
Features Columns
***********/
.features.layout-columns {
  flex: 1 1 auto;
}
.features.layout-columns .feature {
  text-align: center;
}
.features.layout-columns .feature-img {
  margin-bottom: 1em;
}
.features.layout-columns .feature-img img {
  max-height: 50px;
}
.features.layout-columns ul {
  list-style: none;
  margin-bottom: 0;
}
.features.layout-columns ul li {
  margin-left: 0;
  margin-bottom: 1rem;
}
.features.layout-columns .feature-description {
  max-width: 250px;
  margin: 0 auto;
}
.features.layout-columns.feature-alignment-left {
  flex-wrap: wrap;
}
.features.layout-columns.feature-alignment-left .feature {
  text-align: left;
  flex: 0 1 320px;
}
@media (min-width: 992px) {
  .features.layout-columns.feature-alignment-left .feature {
    flex: 0 1 350px;
  }
}
.features.layout-columns.feature-alignment-left .feature .feature-top .feature-img {
  text-align: left;
  margin-bottom: 0;
}
.features.layout-columns.feature-alignment-left .feature .feature-top .feature-img svg {
  width: 42px;
  height: 42px;
  max-width: 42px;
}
.features.layout-columns.feature-alignment-left .feature .feature-top .feature-title {
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  font-size: 1.35em;
  color: #111;
}
.features.layout-columns.feature-alignment-left .feature .feature-description {
  margin: 0;
}
.features.layout-columns.feature-alignment-left .feature .feature-description p {
  font-size: 15px;
  line-height: 1.5;
}
.features.layout-columns.feature-alignment-left .feature .cta {
  padding-top: 2em;
}

/***********
Features Columns - Boxed
***********/
.features.columns-boxed .feature {
  background-color: #ffffff;
  border-radius: 1em;
  padding: 1.25em;
  margin: 1em 1em 2em;
}
.features.columns-boxed .feature .feature-img {
  text-align: center;
  margin-top: 1em;
}
.features.columns-boxed .feature-description p {
  color: #666;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Let's Talk Page Component

Version: 1.0.0

******************************************************************/
/* LET'S TALK */
@media (min-width: 576px) {
  .component-lets-talk .columns {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}
.component-lets-talk .column {
  margin: 0 1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  flex: 0 1 360px;
}
@media (max-width: 767.98px) {
  .component-lets-talk .column {
    margin: 2rem auto;
  }
}
.component-lets-talk .column-top {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}
.component-lets-talk .column-top img,
.component-lets-talk .column-top svg {
  width: auto;
}
.component-lets-talk .column-top svg {
  height: 80px;
}
.component-lets-talk .lets-talk-column-fuel-card-image img {
  height: 190px;
}
.component-lets-talk .lets-talk-column-fuel-card-image + .lets-talk-column-custom-image .column-top {
  margin-top: 60px;
}
.component-lets-talk .lets-talk-column-custom-image img,
.component-lets-talk .lets-talk-column-custom-image svg {
  height: 60px;
}
.component-lets-talk .lets-talk-column-heading {
  color: #ffffff;
  margin: 1rem 0 0;
}
.component-lets-talk .column-description {
  max-width: 325px;
  margin: 0 auto;
}
.component-lets-talk .column-description p,
.component-lets-talk .column-description a,
.component-lets-talk .column-description span {
  color: #ffffff;
}
.component-lets-talk a.text_link {
  display: inline-block;
  font-size: 1.875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .component-lets-talk a {
    margin-bottom: 0;
  }
}
.component-lets-talk .ctas-container {
  display: flex;
  flex-direction: column;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Promo

Version: 1.0.0

******************************************************************/
.promo {
  background-color: #ee1b2e;
  color: #ffffff;
  text-align: center;
  padding: 2rem 1rem;
}
.promo h2 {
  margin: 0;
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.1;
}
.promo p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.promo a {
  color: #ffffff;
}

#two-col-promo .promo {
  margin-bottom: 3em !important;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Two Column Image/Text Page Component

Version: 1.0.0

******************************************************************/
.component-two_col .headline {
  margin-bottom: 0.25em;
}

.col-image img {
  flex: 0 0 auto;
}

.two-col .col-image.img-mobile-hide {
  display: none;
}

.two-col .col-image.img-right {
  order: 1;
}

.two-col .img-right + .col-content {
  padding-left: 0;
}

.two-col > :only-child {
  padding: 0;
}

@media (min-width: 768px) {
  .two-col {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    margin-bottom: 1em;
  }
  .two-col .col-content {
    padding-left: 1rem;
  }
  .two-col .col-image.img-mobile-hide {
    display: block;
  }
  .two-col .col-image.img-right {
    margin-left: 2rem;
    margin-right: 0;
  }
  .two-col.half > * {
    flex: 1 1 50%;
    margin-right: 1rem;
  }
  .two-col.third > .col-image {
    flex: 1 1 33.3%;
    margin-right: 1rem;
  }
  .two-col.third > .col-content {
    flex: 1 1 66.6%;
    margin-right: 1rem;
  }
  .two-col.quarter > .col-image {
    flex: 1 1 25%;
    margin-right: 1rem;
  }
  .two-col.quarter > .col-content {
    flex: 1 1 75%;
    margin-right: 1rem;
  }
  .two-col > *:first-child:not(.img-right) {
    margin-left: 0;
  }
  .two-col.multi-cta:not(:first-of-type) {
    margin-top: 3em;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Two Column form/Text Page Component

Version: 1.0.0

******************************************************************/
.component-two_col-gravity-form .headline {
  margin-bottom: 0.25em;
}

.two-col-gf-text .col-form.form-right {
  order: 1;
}

.two-col-gf-text .form-right + .col-content {
  padding-left: 0;
}

.two-col-gf-text > :only-child {
  padding: 0;
}

@media (min-width: 768px) {
  .two-col-gf-text {
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1em;
  }
  .two-col-gf-text .col-content {
    padding-left: 2rem;
  }
  .two-col-gf-text .col-form.form-right {
    margin-left: 2rem;
    margin-right: 0;
  }
  .two-col-gf-text > *:first-child:not(.form-right) {
    margin-left: 0;
  }
  .two-col-gf-text.multi-cta:not(:first-of-type) {
    margin-top: 3em;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Page Component Utility Styles

Version: 1.0.0

******************************************************************/
.list-style-plus ul,
.list-style-plus li {
  list-style: none;
}
.list-style-plus li:before {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-size: 0.8em;
  float: left;
  margin-left: -1.5em;
  margin-top: 0.3em;
}

@media (min-width: 768px) {
  .list-style-two-column ul {
    -moz-column-count: 2;
         column-count: 2;
  }
}

.contact-us-text {
  padding-bottom: 0;
}
.contact-us-text h2 {
  margin-bottom: 0;
}

.contact-us-form {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .online-mobile-tools .two-col .col-content {
    padding-left: 4rem;
  }
}
.online-mobile-tools .two-col h3 {
  margin-bottom: 0;
  color: #111;
  font-size: 1.25rem;
}
.online-mobile-tools .two-col p {
  margin-top: 0;
}

.features-dots ul li:not(:last-of-type) {
  position: relative;
  margin-bottom: 35px;
}
.features-dots ul li:not(:last-of-type):after {
  content: ". . .";
  position: absolute;
  bottom: -28px;
  right: 50%;
  transform: translateX(50%);
  color: #ee1b2e;
  font-size: 1.5em;
}

@media (max-width: 991.98px) {
  .mobile-hero-background .hero-container {
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.homepage-mobile-account-access {
  padding: 2em;
  position: relative;
  margin-bottom: -2rem;
}
@media (min-width: 768px) {
  .homepage-mobile-account-access img {
    position: absolute;
    bottom: 0;
    max-height: 500px;
    width: auto;
  }
}
.homepage-mobile-account-access h3 {
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  line-height: 1.1;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .homepage-mobile-account-access h3 {
    font-size: 1.25rem;
  }
}

.homepage-compare {
  padding: 4em 2em 3em;
}
.homepage-compare .headline {
  margin-top: 0rem;
  font-size: 2.5rem;
}

#view-rebates-popup small,
#view-additional-popup small {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
}

.hide-component {
  display: none;
}

.about-us-no-image .container h2:first-child {
  margin-top: 0;
}

.no-break {
  white-space: nowrap;
}

/******************************************************************
Site Name:
Author:

Stylesheet: ACF Sidebar Components Stylesheet

Version: 1.0.0

******************************************************************/
.sidebar-component:not(:first-of-type) {
  margin-top: 1em;
}

.sidebar-cta-container {
  padding: 0.5em 1em;
}
.sidebar-cta-container h3 {
  margin: 0.5em 0 0.25em;
  font-family: "Knockout 53 A", "Knockout 53 B", "Arial", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: normal;
}
.sidebar-cta-container p {
  margin: 0.25em 0 0.5em;
  line-height: 1.2;
}
.sidebar-cta-container .cta {
  margin: 1em 0 0.5em;
}
.sidebar-cta-container .sidebar-cta-title {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.sidebar-cta-container .sidebar-cta-title img {
  height: 2.5em;
  margin-right: 1em;
}
.sidebar-cta-container .sidebar-cta-title h3 {
  line-height: 1;
}
.sidebar-cta-container .sidebar-cta-title + p {
  margin-top: 0.5em;
}

#inner-content {
  padding-bottom: 2em;
}
#inner-content .page-title,
#inner-content .single-title {
  margin-top: 0;
}
#inner-content .entry-meta {
  color: #7b868c;
  font-style: italic;
}
#inner-content .tags .tags-title {
  color: #7b868c;
}
.blog #inner-content .page-header,
.archive #inner-content .page-header,
.search #inner-content .page-header {
  margin-bottom: 1em;
}
.blog #inner-content article,
.archive #inner-content article,
.search #inner-content article {
  border-bottom: 1px solid #8b8b8e;
  padding-top: 1em;
  padding-bottom: 1em;
}
.blog #inner-content article .entry-header,
.archive #inner-content article .entry-header,
.search #inner-content article .entry-header {
  margin-top: 1em;
  margin-bottom: 1em;
}
.blog #inner-content article .entry-title,
.archive #inner-content article .entry-title,
.search #inner-content article .entry-title {
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.blog #inner-content article .entry-meta,
.archive #inner-content article .entry-meta,
.search #inner-content article .entry-meta {
  margin: 0.5em 0 0;
}
.blog #inner-content article .entry-header + .entry-content,
.blog #inner-content article .entry-content + .entry-footer,
.archive #inner-content article .entry-header + .entry-content,
.archive #inner-content article .entry-content + .entry-footer,
.search #inner-content article .entry-header + .entry-content,
.search #inner-content article .entry-content + .entry-footer {
  margin-top: -1em;
}
.blog #inner-content article:first-child .entry-header,
.archive #inner-content article:first-child .entry-header,
.search #inner-content article:first-child .entry-header {
  margin-top: 0;
}
.blog #inner-content article:only-child,
.archive #inner-content article:only-child,
.search #inner-content article:only-child {
  border-bottom: 0;
}

.single #inner-content .entry-meta {
  margin: -0.5em 0 1em;
}/*# sourceMappingURL=main.css.map */