@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
table {
  border-collapse: collapse;
  width: 100%; }

td {
  vertical-align: top; }

/* Make HTML 5 elements display block-level for consistent styling */
header, nav, article, footer, address {
  display: block; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*-------- COLORS --------

*/
/***** END RESET *****/
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  display: table; }

.cf:after {
  clear: both; }

.cf {
  *zoom: 1; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*---These are Variables. They are being used in place of the hex color easily changes site colors but updating these variables----*/
/*----These are Mixins. They work similarly to variables and are plugged in using @include in place of the CSS----*/
.btn {
  font-size: 16px;
  padding: 14px 25px;
  display: inline-block;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 500;
  border: none;
  text-transform: uppercase; }

.blue {
  color: #fff;
  background: #017AC1;
  display: inline-block !important;
  width: auto !important; }
  .blue:hover {
    background: #1d1d1d;
    transition: ease-out .3s;
    cursor: pointer;
    color: #fff; }

/*-------- BODY STYLES --------*/
* {
  box-sizing: border-box; }

body {
  font-family: "Roboto Condensed", sans-serif; }

a {
  text-decoration: none !important; }

/*--- HEADER STYLES ---------------------*/
header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

.logo {
  width: 100%;
  max-width: 400px;
  background: #1d1d1d;
  padding: 10px; }
  .logo img {
    width: 100%; }

.header-right {
  width: calc(100% - 400px); }

.top-header {
  width: 100%;
  padding: 10px 12% 10px 10px;
  background: #f0f0f0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px; }
  .top-header a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-family: "Roboto Condensed", sans-serif;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: #333;
    padding: 10px; }
    .top-header a i {
      font-size: 30px;
      -webkit-text-stroke: 1px #333;
      color: transparent; }
    .top-header a span {
      font-size: 17px;
      font-weight: 700;
      color: #000;
      line-height: 18px; }
      .top-header a span span {
        font-size: 15px;
        font-weight: 400;
        color: #333; }

.bottom-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10%;
  padding: 10px 12% 10px 10px;
  background: #fff;
  box-shadow: 1px 3px 4px 1px rgba(0, 0, 0, 0.1); }

/*--------Hero---------*/
/*---------Pages----------*/
/*--------FORM STYLES--------------------*/
#formpage {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  text-align: left; }
  #formpage label {
    margin: 5px;
    padding: 10px 0 5px 0; }
  #formpage input, #formpage select {
    padding: 14px;
    border: #ccc;
    color: #777 !important;
    font-size: 14px;
    background: #F8F8F8;
    border-radius: 5px; }
  #formpage input[type="text"], #formpage input[type="email"], #formpage input[type="date"], #formpage select, #formpage input[type="phone"] {
    width: 100%;
    box-sizing: border-box; }
  #formpage textarea {
    font-family: 'Arial', sans-serif;
    border: #ccc;
    box-sizing: border-box;
    color: #000;
    background: #fff;
    width: 100%;
    height: 100px;
    border-radius: 2px;
    padding: 14px;
    color: #777 !important;
    font-size: 14px;
    background: #F8F8F8;
    border-radius: 5px; }
  #formpage textarea:focus {
    border: 1px solid #ccc;
    border-radius: 2px; }

.flex-form {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 15px; }

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%; }

.form-whole {
  width: calc(100% - 10px);
  display: block;
  vertical-align: middle;
  margin: 5px; }

.form-half {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.form-third {
  width: calc(33.33% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

label:has(+ input:required)::after {
  content: "*";
  color: #017AC1;
  margin-left: 5px; }

#formpage .submit-button, #submit-btn button {
  width: 200px;
  padding: 14px;
  background: #017AC1;
  display: block;
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border: none;
  font-size: 14px;
  text-transform: uppercase; }

#formpage input.submit-button:hover, #submit-btn button:hover {
  transition: ease-out .3s;
  cursor: pointer;
  background: #1d1d1d;
  color: #fff; }

.submit-button, #submit-btn {
  padding: 10px 0px 10px 0px;
  position: relative;
  width: 100%;
  text-align: center; }

.captcha-button {
  width: 200px; }

#formpage input.submit-button {
  color: #fff !important; }

.include-captcha {
  display: none; }

/*-------- FOOTER STYLES ----------------*/
footer {
  width: 100%;
  background: #1d1d1d;
  color: #fff; }

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1750px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  padding: 60px 10px; }

.footer-left {
  max-width: 500px;
  width: 100%; }
  .footer-left img {
    width: 100%; }

.nav-footer {
  width: 100%;
  padding: 15px 10%;
  background: #000;
  color: #ccc;
  font-size: 15px; }

.footer-right {
  width: calc(100% - 700px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px; }

.foot-col {
  width: calc(33.33% - 10px); }
  .foot-col ul {
    margin: 0;
    padding: 0; }
    .foot-col ul li {
      list-style: none; }
      .foot-col ul li a {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        font-family: "Anton", sans-serif;
        padding: 5px 0;
        display: block; }
        .foot-col ul li a:hover {
          color: #017AC1; }

/* ---- INVENTORY STYLES - KEEP AT BOTTOM OF CSS ---- */
/* --------------------------------
   Primary actions / buttons
-------------------------------- */
.listing-top-right .buy-now-link,
.listing-top-right .check-availability-link,
.listing-top-right .email-seller-link {
  background: #017AC1 !important;
  color: #fff !important; }

.list-error-container .info button,
.mobile-done-button,
a.buy-btn.des-buy-now,
a.buy-btn.gtm-buynow.des-buy-now,
button.selected-facet.ts-button,
.detail-contact-bar .contact-bar-btn,
button.page-nav {
  background: #017AC1 !important;
  color: #fff !important; }

/* --------------------------------
   Hover states
-------------------------------- */
.view-listing-details-link:hover,
.contact-options a:hover,
.fin-calc-mobile > a:hover,
button.g-recaptcha.button:hover,
.email-seller-link:hover,
.mc-nav-controls .mc-icon-navarrow span,
a.buy-btn.des-buy-now:hover,
a.buy-btn.gtm-buynow.des-buy-now:hover,
.detail-contact-bar .contact-bar-btn:hover {
  background: #1d1d1d !important;
  color: #fff !important; }

/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1450px) {
  .foot-col {
    width: auto;
    padding: 10px 20px; } }
@media only screen and (max-width: 1300px) {
  .footer-left {
    max-width: 350px; }

  .footer-right {
    width: calc(100% - 450px); } }
@media only screen and (max-width: 1200px) {
  .top-header a span {
    display: none; }

  .top-header, .bottom-header {
    padding: 10px; } }
@media only screen and (max-width: 1100px) {
  .footer {
    flex-direction: column;
    gap: 20px; }

  .footer-left {
    margin: 0 auto; }

  .footer-right {
    width: 100%; } }
@media only screen and (max-width: 1000px) {
  .logo {
    max-width: 300px; }

  .header-right {
    width: calc(100% - 300px); } }
@media only screen and (max-width: 850px) {
  .bottom-header .blue {
    display: none !important; } }
@media only screen and (max-width: 600px) {
  .top-header {
    display: none; }

  header {
    flex-direction: column; }

  .header-right {
    width: 100%; }

  .logo {
    margin: 0 auto; }

  .bottom-header {
    justify-content: center;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.1); }

  .footer-right {
    flex-direction: column;
    justify-content: center;
    gap: 10px; }

  .foot-col {
    text-align: center;
    width: 100%; } }
