<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Helper for getting a color from a map */
/* Helper for setting a color */
/*other shade of black used #1C1D1C,#252725, #000*/
/*other shade of light grey used #F4F4F4*/
/* ICONS */
/* svg Icons */
/* Sprite svg Icons */
/* Helper for getting a color from a map */
/* Helper for setting a color */
/*other shade of black used #1C1D1C,#252725, #000*/
/*other shade of light grey used #F4F4F4*/
/* ICONS */
/* svg Icons */
/* Sprite svg Icons */
.wb-checkbox {
  --checkbox-size: 1.5rem;
  --checkbox-gap: .75rem;
}
.wb-checkbox--flex {
  display: flex;
}
.wb-checkbox__label {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 14px;
  line-height: 1.25rem;
  letter-spacing: 0.0175rem;
  font-weight: 300;
  --checkbox-opacity: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: var(--checkbox-gap);
       column-gap: var(--checkbox-gap);
}
.wb-checkbox__label::before, .wb-checkbox__label::after {
  content: "";
  flex-grow: 0;
  flex-shrink: 0;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  margin: 0;
  border: 2px solid #000;
  border-radius: 0;
}
.wb-checkbox__label::after {
  position: absolute;
  background-image: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5#check-light");
  background-color: #000;
  opacity: var(--checkbox-opacity);
  transition: opacity 0.2s ease;
}
.wb-checkbox__label-text {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.5ch;
       column-gap: 0.5ch;
}
.wb-checkbox__input:checked + .wb-checkbox__label {
  --checkbox-opacity: 1;
}

.btn-text-cta {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-family: decimal-book, sans-serif;
  font-weight: 400;
  border: 0;
  padding: 0;
  display: inline-block;
  background: rgba(0, 0, 0, 0);
  font-weight: 400;
  font-family: decimal-medium, sans-serif;
  -webkit-appearance: none !important;
  color: #1d1b1c;
  text-decoration: underline;
}
.btn-text-cta:active {
  color: #1d1b1c !important;
}

.styled-checkbox {
  opacity: 0;
  position: relative;
  width: 16px;
  height: 16px;
  z-index: 1;
  cursor: pointer;
}
.styled-checkbox + .checkmark {
  position: relative;
  cursor: pointer;
  padding: 0;
  left: -16px;
  top: -1px;
}
.styled-checkbox + .checkmark:before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #000;
}
.styled-checkbox:checked + .checkmark:before {
  background: #fff;
}
.styled-checkbox:checked + .checkmark:after {
  content: "✓";
  color: #131e29;
  font-weight: bold;
  position: absolute;
  left: 2px;
  top: -2px;
  width: 2px;
  height: 2px;
  font-size: 21px;
}

.ns-btn {
  --btn-bg-color: #000;
  --btn-label-color: #fff;
  --btn-border-color: var(--btn-bg-color);
  --btn-padding-x: 24px;
  --btn-height: 2.5rem;
  --btn-width: 100%;
  --btn-cursor: pointer;
  --btn-uppercase: uppercase;
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01313rem;
  text-transform: uppercase;
  text-transform: var(--btn-uppercase) !important;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 var(--btn-padding-x);
  width: var(--btn-width);
  min-height: var(--btn-height);
  background-color: var(--btn-bg-color);
  color: var(--btn-label-color);
  border: 1px solid var(--btn-border-color);
  border-radius: 8px;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
  cursor: var(--btn-cursor);
}
.ns-btn:hover {
  --btn-bg-color: #dfddd2;
  --btn-label-color: #000;
}
.ns-btn:active {
  --btn-bg-color: #9c9a90;
}
.ns-btn:disabled {
  --btn-bg-color: #e9e9e9;
  --btn-label-color: #434343;
  --btn-cursor: default;
}
.ns-btn--secondary {
  --btn-bg-color: #fff;
  --btn-border-color: #000;
  --btn-label-color: #000;
}
.ns-btn--secondary:hover {
  --btn-border-color: var(--btn-bg-color);
}
.ns-btn--subtle {
  --btn-bg-color: transparent;
  --btn-label-color: #000;
}
.ns-btn--link {
  --btn-bg-color: transparent;
  --btn-label-color: #000;
  --btn-border-color: #000;
  --btn-padding-x: 0;
  --btn-width: auto;
  --btn-height: auto;
  --btn-uppercase: none;
  display: inline-flex;
  font-size: inherit;
  font-weight: inherit;
  border-width: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--btn-border-color);
}
.ns-btn--link:hover {
  --btn-bg-color: transparent;
  --btn-label-color: #7b7b7b;
  --btn-border-color: #7b7b7b;
}
.ns-btn--icon {
  --btn-bg-color: transparent;
  --btn-padding-x: 0;
  --btn-width: auto;
  --btn-height: auto;
  border-width: 0;
  border-radius: 0;
}
.ns-btn--icon:hover {
  --btn-bg-color: transparent;
}
.ns-btn--sm {
  --btn-height: 2.25rem;
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 0.625rem;
  line-height: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0125rem;
  text-transform: uppercase;
}
.ns-btn--lg {
  --btn-height: 2.75rem;
}

.ns-form__descr {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
}
.ns-form__required-descr {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 14px;
  line-height: 1.25rem;
  letter-spacing: 0.0175rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.ns-form__fields {
  --form-col-gap: 1.5rem;
  --form-row-gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--form-row-gap) var(--form-col-gap);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .ns-form__fields {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2.5rem;
  }
}
.ns-form__group--full-span {
  grid-column: 1/-1;
}
.ns-form__input, .ns-form__textarea, .ns-form__select, .ns-form__date-input {
  --padding-y: 0;
  --padding-x: .75rem;
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
  width: 100%;
  height: 46px;
  padding: var(--padding-y) var(--padding-x);
  border: 1px solid #7b7b7b;
  border-radius: 0;
  color: #000 !important;
  background-color: #fff !important;
}
@media (min-width: 1024px) {
  .ns-form__input, .ns-form__textarea, .ns-form__select, .ns-form__date-input {
    --padding-y: 1rem;
    --padding-x: .75rem;
  }
}
.ns-form__date-input-wrapper {
  --padding-x: .75rem;
  position: relative;
}
.ns-form__date-input-wrapper::after {
  content: "";
  position: absolute;
  right: var(--padding-x);
  top: 0;
  display: inline-block;
  width: 1.75rem;
  height: 46px;
  background: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5#schedule-appt-dark") no-repeat center;
  pointer-events: none;
}
.ns-form__date-input::-webkit-calendar-picker-indicator {
  width: 2.5rem;
  opacity: 0;
}
.ns-form__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.ns-form__textarea {
  height: auto;
  resize: none;
}
.ns-form__select-wrapper {
  position: relative;
}
.ns-form__select-wrapper::after {
  content: "";
  background-image: url("https://watchbox-sfcc.imgix.net/arrow-down-black.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5");
  transform: rotate(0);
  height: 20px;
  width: 20px;
  top: 13px;
  right: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  margin-top: 0;
  z-index: 2;
  pointer-events: none;
}
.ns-form__label {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
  display: block;
  margin: 0;
  margin-bottom: 0.25rem;
}
.ns-form__form-group--full-span {
  grid-column: 1/-1;
}
.ns-form .iti__flag-container {
  bottom: auto;
  height: 44px;
}

span.mandatory {
  color: #b93535;
}

/* Helper for getting a color from a map */
/* Helper for setting a color */
/*other shade of black used #1C1D1C,#252725, #000*/
/*other shade of light grey used #F4F4F4*/
/* ICONS */
/* svg Icons */
/* Sprite svg Icons */
/* Helper for getting a color from a map */
/* Helper for setting a color */
/*other shade of black used #1C1D1C,#252725, #000*/
/*other shade of light grey used #F4F4F4*/
/* ICONS */
/* svg Icons */
/* Sprite svg Icons */
.wb-form__group {
  margin-bottom: 1.25rem;
}

@font-face {
  font-family: "Blanka Expanded";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-RegularExpanded.woff2") format("woff2"), url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-RegularExpanded.woff") format("woff");
}
@font-face {
  font-family: "Blanka Expanded";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-MediumExpanded.woff2") format("woff2"), url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-MediumExpanded.woff") format("woff");
}
body {
  counter-reset: formSection;
}

section,
.section-margin {
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  section,
  .section-margin {
    margin-bottom: 7rem;
  }
}

h1 {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 2.375rem;
  font-weight: 400;
  letter-spacing: -0.0475rem;
}

h2 {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.035rem;
}

h1 {
  margin-bottom: 1rem;
}
h1 + p {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
}

blockquote {
  display: flex;
  flex-direction: column-reverse;
}
blockquote &gt; footer {
  background: inherit;
  color: inherit;
}

ol {
  list-style: none;
  padding: 0;
}

form h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}
form h4 {
  font-size: 15px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

legend {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
}

figcaption {
  color: #57575B;
  text-align: center;
}

.form-page-header {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.bg-gray,
.bg-white {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.bg-white {
  padding-bottom: 0 !important;
}

.bg-gray h2 {
  margin-bottom: 2rem;
}

.icon-description img {
  margin-bottom: 0.5rem;
}
.icon-description &gt; h3 {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}
.icon-description &gt; p {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  margin: 0;
}

.services .icon-description:first-child {
  margin-bottom: 5.5rem;
}
@media (min-width: 768px) {
  .services .icon-description:first-child {
    margin-bottom: 0;
  }
}
.services .icon-description:first-child img {
  margin-bottom: 2rem;
}

.btn-landing {
  margin: auto;
}
@media (min-width: 576px) {
  .btn-landing {
    max-width: 27rem;
  }
}

.section-transition-btn {
  width: 100%;
}

.lock-icon,
.save-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.save-icon {
  background: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5#upload-dark") no-repeat center;
  margin-bottom: 1.5rem;
}

.lock-icon {
  background: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5#lock-dark") no-repeat center;
  display: inline-block;
  margin-right: 0.5rem;
}

.delete-btn-wrapper {
  display: none;
  margin-left: 3rem;
}
.delete-btn-wrapper &gt; .delete-btn {
  font-size: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #57575B;
}

.tradeanotherwatch-add:last-child .delete-btn-wrapper {
  display: initial;
}

.watch-details-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}
.watch-details-header h3 {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.035rem;
}

.carousel-item {
  text-align: center;
}

.carousel-indicators {
  position: relative;
}
.carousel-indicators li {
  background-color: #c0c0c0;
  opacity: 1;
}
.carousel-indicators li.active {
  background-color: #000;
}

.toggle-switch {
  --toggle-switch-color: #5c7b77;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  width: 254px;
  height: 44px;
  border-radius: 100px;
  border: 1px solid var(--toggle-switch-color);
  background-color: var(--toggle-switch-color);
  text-transform: uppercase;
}
.toggle-switch::after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #f4f4f4;
  color: var(--toggle-switch-color);
  border-radius: 2rem;
  transition: left 180ms ease, transform 180ms ease;
}
.toggle-switch.active::after {
  transform: translateX(100%);
}

.toggle-option {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 400;
  color: #fff;
  flex-basis: 50%;
  transition: color 150ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 2;
}
.toggle-option.active {
  color: var(--toggle-switch-color);
}

.page-instructions {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.how-to-sequence {
  flex-direction: column;
  margin: 0;
}
@media (min-width: 768px) {
  .how-to-sequence {
    flex-flow: row wrap;
  }
}
@media (min-width: 1200px) {
  .how-to-sequence {
    flex-wrap: nowrap;
  }
}

.how-to-item {
  display: flex;
  flex-direction: column;
  opacity: 0;
  text-align: center;
  transform: translateX(-50px);
  transition: opacity 80ms ease-out, transform 160ms ease-out;
}
@media (min-width: 768px) {
  .how-to-item {
    flex: 1 0 50%;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .how-to-item {
    flex-basis: 25%;
  }
}
.how-to-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.how-to-item:not(:last-child)::after {
  align-self: center;
  content: url(https://watchbox-sfcc.imgix.net/revamp/arrow.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5);
  display: block;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@media (min-width: 768px) {
  .how-to-item:not(:last-child)::after {
    transform: rotate(0);
  }
}
.how-to-item &gt; div {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .how-to-item &gt; div {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .how-to-item:nth-of-type(odd) &gt; div {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .how-to-item:nth-of-type(odd) &gt; div {
    padding-left: 2rem;
  }
}
.how-to-item:first-child &gt; div {
  padding-top: 0;
}
.how-to-item:last-child &gt; div {
  padding-bottom: 0;
}

.how-it-works-contact {
  font-size: 18px;
  font-size: 1.5rem;
  margin: 0;
}
.how-it-works-contact a {
  font-size: 1em;
}

@media (max-width: 900px) {
  .trade-loan-sell-faqs.col-5 {
    flex: 0 0 100%;
    max-width: 85%;
  }
}
.trade-loan-sell-faqs .faqquestions,
.trade-loan-sell-faqs .faqans {
  cursor: pointer;
  border-top: 1px solid #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}
.trade-loan-sell-faqs .faqquestions.active,
.trade-loan-sell-faqs .faqans.active {
  font-weight: 500;
}
.trade-loan-sell-faqs .faqquestions.active span::after,
.trade-loan-sell-faqs .faqans.active span::after {
  content: "-";
}
.trade-loan-sell-faqs .faqquestions span::after,
.trade-loan-sell-faqs .faqans span::after {
  float: right;
  content: "+";
  font-size: 23px;
  color: #000;
}
.trade-loan-sell-faqs .faqquestions {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 400;
  padding: 19px 9px 19px 0;
}
.trade-loan-sell-faqs .faqans {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  border: none;
  display: none;
  margin-bottom: 2rem;
  padding: 0;
}
.trade-loan-sell-faqs .faqsection:last-child {
  border-bottom: 1px solid #000;
  padding-bottom: 0;
}

.service-icon {
  width: 5rem;
}

.title-block {
  align-items: center;
  border-bottom: 3px solid #9d9d9d;
  text-transform: uppercase;
  color: #9d9d9d;
}
@media (min-width: 768px) {
  .title-block {
    align-items: baseline;
  }
}
.title-block &gt; .section-title-wrapper {
  margin-bottom: 1rem;
}
.title-block h2 {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .title-block h2 {
    line-height: 1;
    font-family: "Blanka Expanded", ui-sans-serif, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02625rem;
  }
}

.rule {
  border-bottom: 1px solid #c0c0c0;
}

.form-section {
  margin-bottom: 0;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .form-section {
    padding-left: 4rem;
    border-left: 1px solid #c0c0c0;
  }
}
.form-section:last-of-type {
  padding-bottom: 0;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .form-section:last-of-type {
    margin-bottom: 7rem;
  }
}
@media (min-width: 768px) {
  .form-section.active {
    border-color: #000;
  }
}
.form-section.active:not(:last-of-type) {
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .form-section.active:not(:last-of-type) {
    padding-bottom: 7rem;
  }
}
.form-section.active .active-info {
  display: block;
}
.form-section.active .edit-section {
  display: none;
}
.form-section.active .title-block {
  border-color: #000;
  margin-bottom: 2rem;
}
.form-section.active .title-block h2 {
  color: #000;
}
.form-section.active .section-counter {
  background: #000;
  color: #ffffff;
}
.form-section[data-edited=true]:not(.active) .section-summary,
.form-section[data-edited=true]:not(.active) .edit-section {
  display: block;
}
.form-section[data-edited=true]:not(.active) .title-block {
  margin-bottom: 2rem;
  border-color: #000;
}
.form-section[data-edited=true]:not(.active) .title-block h2 {
  color: #000;
}
.form-section[data-edited=true]:not(.active) .section-counter {
  background: #000;
  color: #ffffff;
}
.form-section[data-edited=true]:not(.active) .section-counter::before {
  content: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5#check-light");
  height: 1rem;
  width: 1rem;
}
@media (min-width: 768px) {
  .form-section[data-edited=true]:not(.active) .section-counter::before {
    width: 2rem;
    height: 2rem;
  }
}
.form-section[data-edited=true]:not(.active) .section-description {
  margin-bottom: 1.5rem;
}
.form-section .active-info,
.form-section .section-summary,
.form-section .edit-section {
  display: none;
}

.section-counter {
  --counter-diam: 2.5rem;
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  flex-shrink: 0;
  height: var(--counter-diam);
  width: var(--counter-diam);
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #e9e9e9;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .section-counter {
    --counter-diam: 3rem;
    position: absolute;
    left: -84px;
    margin: 0;
  }
}
.section-counter::before {
  counter-increment: formSection;
  content: counter(formSection);
}

.section-description {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
  align-items: center;
  display: flex;
  margin-bottom: 3rem;
}

.edit-section {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  margin-left: 1rem;
  flex-shrink: 0;
  color: #57575B;
}

.section-summary {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
}
.section-summary ul {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.defaultimg {
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.example-photo-grid {
  grid: repeat(2, 1fr)/repeat(2, 1fr);
}
.example-photo-grid &gt; figure {
  display: grid;
  place-content: center;
}
.example-photo-grid img {
  margin: 0 auto 0.5rem;
}

.currency-grid {
  display: grid;
  grid-template: auto auto/2fr 1fr;
}
.currency-grid &gt; label:nth-of-type(1) {
  grid-area: 1/1;
}
.currency-grid &gt; label:nth-of-type(2) {
  grid-area: 1/2;
}
.currency-grid &gt; .price-desired {
  grid-area: 2/1;
}
.currency-grid &gt; .price-desired .formattedprice {
  border-right: 0 !important;
}
.currency-grid .currency-type {
  grid-area: 2/2;
}
.currency-grid .currency-type .currency.custom-select {
  border-radius: 0 4px 4px 0;
}

.upload-cap {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
}

/* ========

OLD STYLES BELOW THIS POINT

Tech Debt: Delete or organize these styles into SMACSS setup above

 =========*/
.price::-webkit-inner-spin-button,
.price::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.getaquotetitledesc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.getaquotetitledesc h5 {
  padding-top: 0px;
}
@media (min-width: 1024px) {
  .getaquotetitledesc h5 {
    width: 40%;
    display: block;
  }
}
.getaquotetitledesc h5 a {
  text-decoration: underline;
  margin-left: 5px;
}

/******* input floating label **********/
:root {
  --input-padding-x: .75rem;
  --input-padding-y: .75rem;
  --select-padding-x: 1rem;
  --select-padding-y: 1rem;
  --textarea-padding-x: 1rem;
  --textarea-padding-y: 1rem;
}

.form-control {
  color: #57575B;
  background-clip: initial;
}

.tradepage-form {
  width: 100%;
  margin: 0 auto;
}

.loanpage-form {
  margin-top: 77px;
}

.form-label-group &gt; label {
  position: absolute;
  top: 0;
  left: 9px;
  display: block;
  width: 90%;
  margin-bottom: 0;
  /* Override default `&lt;label&gt;` margin */
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
  color: #4A4A4A;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 20px;
}

textarea.form-control:not([size]):not([multiple]) {
  height: calc(4rem + 45px);
  resize: none;
}

.form-label-group {
  position: relative;
}
.form-label-group label.trade-comment-section {
  background-color: #ffffff;
  width: 93%;
  display: block;
}
@media (max-width: 567px) {
  .form-label-group label.trade-comment-section {
    width: 94%;
  }
}

.form-group-element {
  margin-top: 0;
}

.whatareyoulookingfor .searchmodeldb {
  margin-top: 18px;
}
.whatareyoulookingfor .searchmodeldb .divider {
  margin: 24px auto;
  width: 100%;
}

.formsubheading:not(.active),
.addbefore:not(.active) {
  cursor: pointer;
}

.whatareyoulookingfor,
.whatareyoutrading,
.personalinfo {
  color: #000;
}
.whatareyoulookingfor .forminnersubheading,
.whatareyoutrading .forminnersubheading,
.personalinfo .forminnersubheading {
  font-weight: 400;
  font-size: 14px;
  font-size: 1.1666666667rem;
  margin-bottom: 5px;
  color: #000;
  line-height: 14px;
  text-transform: uppercase;
}

.dummy-watch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dummy-watch figcaption {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
}

.example-photos h4,
.dummy-watch h4 {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}
.example-photos figcaption,
.dummy-watch figcaption {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0175rem;
}

.divider {
  margin: 25px auto 61px;
  width: 67.5%;
  border-bottom: 1px solid #dcdcdc;
}

.gettinaddedrows,
.tradeanotherwatch-add {
  position: relative;
}
.gettinaddedrows span.remove,
.tradeanotherwatch-add span.remove {
  position: absolute;
  right: 12px;
  top: -13px;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
  background: url(https://watchbox-sfcc.imgix.net/Close.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5);
  display: block;
  width: 19px;
  height: 19px;
  background-size: cover;
}
.gettinaddedrows .search-icon,
.tradeanotherwatch-add .search-icon {
  background: url(https://watchbox-sfcc.imgix.net/revamp/search.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5) no-repeat scroll 18px 18px;
  background-size: 20px 20px;
  position: absolute;
  top: -5px;
  display: inline-block;
  width: 6em;
  height: 5.2em;
  z-index: 1;
}

.tradeanotherwatch-add .toggle-down-up,
.whatareyoulookingfor .toggle-down-up {
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #000;
}
.tradeanotherwatch-add .toggle-down-up span,
.whatareyoulookingfor .toggle-down-up span {
  font-size: 20px;
  font-weight: 400;
  vertical-align: middle;
}
.tradeanotherwatch-add .toggle-down-up span.hide-symbol,
.whatareyoulookingfor .toggle-down-up span.hide-symbol {
  font-size: 24px;
  vertical-align: sub;
}
.tradeanotherwatch-add .photo-label,
.whatareyoulookingfor .photo-label {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
.tradeanotherwatch-add .search-looking-for,
.whatareyoulookingfor .search-looking-for {
  text-indent: 40px;
}

.gettinaddedrows .suggestions-trade-wrapper,
.tradeanotherwatch-add .suggestions-trade-wrapper {
  position: relative;
}
.gettinaddedrows .suggestions,
.tradeanotherwatch-add .suggestions {
  display: block;
  position: absolute;
  border: none;
  background-color: #fff;
  top: -23px;
  right: 0;
  width: 100%;
  z-index: 11;
  left: 0;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}
.gettinaddedrows .suggestions .swatch-circle,
.tradeanotherwatch-add .suggestions .swatch-circle {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fff;
  border-radius: 1.25em;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-right: 0.313em;
  position: relative;
}
.gettinaddedrows .suggestions .items,
.tradeanotherwatch-add .suggestions .items {
  padding: 0.313em 0;
}
.gettinaddedrows .suggestions .item,
.tradeanotherwatch-add .suggestions .item {
  padding-bottom: 0.625em;
}
.gettinaddedrows .suggestions .item .name,
.tradeanotherwatch-add .suggestions .item .name {
  margin-top: 0.313em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gettinaddedrows .suggestions .header,
.tradeanotherwatch-add .suggestions .header {
  color: #999;
  font-size: 0.875em;
  padding-top: 0.625em;
}
.gettinaddedrows .suggestions .header:not(:first-child),
.tradeanotherwatch-add .suggestions .header:not(:first-child) {
  border-top: 1px solid #ccc;
}
.gettinaddedrows .product-img,
.tradeanotherwatch-add .product-img {
  overflow: hidden;
}

.tradeanotherwatch-add .suggestions {
  padding: 10px;
}

.lookingfor {
  color: #000;
  font-size: 14px;
  font-size: 1.1666666667rem;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.whatareyoulookingfor .looking-for,
.whatareyoutrading .looking-for,
.personalinfo .looking-for {
  font-weight: 400;
}
.whatareyoulookingfor .search-looking-for,
.whatareyoutrading .search-looking-for,
.personalinfo .search-looking-for {
  margin-bottom: 24px;
  border: none;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  padding-left: 3rem;
  padding-right: 0.5rem;
}
.whatareyoulookingfor .comments textarea,
.whatareyoutrading .comments textarea,
.personalinfo .comments textarea {
  height: 90px;
}

.whatareyoutrading .nodata .divider {
  width: 100%;
  margin: 15px auto 30px;
}
.whatareyoutrading .nodata .subscribe-text {
  font-size: 12px;
  color: #c2c5c8;
  margin-bottom: 1em;
}
.whatareyoutrading .nodata .input-group .input-group-text {
  display: flex;
}
@media (max-width: 567px) {
  .whatareyoutrading .nodata .input-group .input-group-btn {
    display: block;
    clear: both;
    width: 100%;
  }
}
.whatareyoutrading .nodata .input-group .input-group-btn .btn {
  width: 130px;
  height: 60px;
  border-radius: 0;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 567px) {
  .whatareyoutrading .nodata .input-group .input-group-btn .btn {
    margin: 5px 0;
    padding: 0 30px;
    border-radius: 5px;
  }
}
.whatareyoutrading .nodata span.input-group-text {
  background-color: #ffffff;
}
.whatareyoutrading .nodata .emailsubscriptinputbox {
  padding: 0;
  margin-top: 27px;
}
.whatareyoutrading .nodata .emailsubscriptinputbox .input-group-prepend {
  padding: 10px 0 10px 10px;
  background-color: #ffffff;
  border-radius: 0px;
  border: 1px solid #ccc;
}
.whatareyoutrading .nodata .emailsubscriptinputbox .input-group-prepend span {
  margin-right: 0;
}
.whatareyoutrading .nodata .emailsubscriptinputbox .contactstyle.envelope-icon {
  background-image: url(https://watchbox-sfcc.imgix.net/footer/email-dark.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5);
  background-size: 16px 16px !important;
  border: none;
}

.s3Image,
.s3-image-upload {
  flex: 1;
}

.s3-image-preview {
  display: inline-flex;
  position: relative;
  width: 202px;
  flex-direction: column;
  margin-right: 5px;
  margin-bottom: 8%;
  height: 202px;
  overflow: hidden;
  vertical-align: top;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.09), 0 4px 8px rgba(0, 0, 0, 0.06);
}
.s3-image-preview div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.s3-image-preview div img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.s3-delete-image {
  right: 3%;
  top: 3%;
  position: absolute;
}

.s3-image-upload {
  min-height: 8rem;
  width: 100%;
  border: 2px dashed #9B9B9B;
  border-radius: 3px;
  background: #f4f4f4;
}
.s3-image-upload,
.s3-image-upload &gt; button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.s3-image-upload &gt; button {
  background: inherit;
  border: none;
  color: #000;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.remove-image {
  background: url(https://watchbox-sfcc.imgix.net/hamburger-open-white.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5);
  width: 22px;
  height: 26px;
  display: inline-block;
  cursor: pointer;
}

span a.i-icon::after {
  width: 20px;
  border-radius: 18px;
  height: 20px;
  background-color: #7D98A3;
  display: inline-block;
  content: "i";
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
  font-family: auto;
  font-style: italic;
  margin-left: 8px;
  cursor: pointer;
  border: none;
}

a.i-icon.dropdown-toggle:empty::after {
  margin-left: 10px;
}

.avgprivepaid {
  border-radius: 2px;
  width: 305px;
  background-color: #FAFAFA;
  margin: 23px auto 10px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 20px 0;
}
.avgprivepaid .text {
  font-weight: 400;
}
.avgprivepaid .text span {
  display: block;
  font-weight: 400;
}
.avgprivepaid .price {
  font-weight: 500;
}

@media (min-width: 901px) and (max-width: 1023px) {
  .tradepage .offset-md-2 {
    margin-left: 0;
  }
  .tradepage .offset-md-1.col-md-4 {
    max-width: 66%;
    flex: 0 0 66%;
  }
  .tradepage .whatareyoulookingfor .formsubheading,
  .tradepage .whatareyoutrading .formsubheading,
  .tradepage .personalinfo .formsubheading {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .tradepage .personalinfo .offset-md-2.col-md-4 {
    max-width: 100%;
    flex: 0 0 66%;
  }
}
@media (max-width: 1023px) {
  .avgprivepaid {
    width: auto;
  }
}
.examble-watches-wrapper {
  margin-top: 1em;
  padding: 50px 0 30px;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
}
.examble-watches-wrapper .examble-watches .examble-watches-list {
  text-align: center;
  text-align: -webkit-center;
}
.examble-watches-wrapper .examble-watches .examble-watches-list img {
  margin: auto;
}
@media (min-width: 1024px) {
  .examble-watches-wrapper .examble-watches .examble-watches-list {
    padding: 30px 0 50px;
  }
}
@media (max-width: 1023px) {
  .examble-watches-wrapper .examble-watches .examble-watches-list {
    padding: 20px 0;
  }
}
.examble-watches-wrapper .examble-watches .examble-watches-list .price {
  font-size: 18px;
  font-size: 1.5rem;
  line-height: 30px;
  padding: 20px 0 5px;
}

.sellpage .formaddbutton .a.btn.btn-outline-primary {
  padding: 11.5px 25px;
}
.sellpage .newarrrivaldiv a.btn.btn-outline-primary {
  width: 100%;
  height: 41px;
  line-height: 40px;
  padding: 0px;
}
@media (min-width: 1024px) {
  .sellpage .sell-get-quote {
    padding: 0 0 0 10px;
  }
}
.sellpage .how-it-works {
  border-top: 1px solid #c0c0c0;
}
@media screen and (min-width: 1024px) {
  .sellpage .welcometowatchbox {
    margin-top: 120px;
  }
}

.sell-mobile-view .faqsection {
  position: relative;
}
.sell-mobile-view .faqsection .faqquestions.active {
  border-bottom: none;
}

.personal-form-head {
  margin-bottom: 14px;
}
.personal-form-head .personal-form {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.personal-form-head .personal-form a {
  color: #4A4A4A;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.4px;
  line-height: 16px;
}

.tradeanotherwatch-add .divider {
  width: 100%;
  margin: 0px auto 55px;
}

@media (max-width: 991px) {
  .sellpage .whatareyoutrading .nodata .emailsubscriptinputbox,
  .tradepage .whatareyoutrading .nodata .emailsubscriptinputbox,
  .loanpage .whatareyoutrading .nodata .emailsubscriptinputbox {
    margin: 0;
  }
  .sellpage .whatareyoutrading .nodata .emailsubscriptinputbox input,
  .tradepage .whatareyoutrading .nodata .emailsubscriptinputbox input,
  .loanpage .whatareyoutrading .nodata .emailsubscriptinputbox input {
    height: 50px;
    border: 1px solid #ccc;
    border-left: none;
    width: 80%;
    display: block;
  }
  .sellpage .whatareyoutrading .nodata .emailsubscriptinputbox .input-group-prepend,
  .tradepage .whatareyoutrading .nodata .emailsubscriptinputbox .input-group-prepend,
  .loanpage .whatareyoutrading .nodata .emailsubscriptinputbox .input-group-prepend {
    border-right: none;
  }
  .sellpage .whatareyoutrading .nodata .emailsubscriptinputbox .input-group .input-group-btn .btn,
  .tradepage .whatareyoutrading .nodata .emailsubscriptinputbox .input-group .input-group-btn .btn,
  .loanpage .whatareyoutrading .nodata .emailsubscriptinputbox .input-group .input-group-btn .btn {
    height: 40px;
    width: 182px;
    background: #FFB511;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.4px;
    line-height: 16px;
    text-align: center;
    margin-top: 13px;
  }
  .sellpage .contactstyle,
  .tradepage .contactstyle,
  .loanpage .contactstyle {
    top: 1px;
  }
}
.sellpage .form-control-label,
.tradepage .form-control-label,
.loanpage .form-control-label {
  padding-left: 0px !important;
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.1666666667rem;
  line-height: 14px;
}
.sellpage .commentsection,
.tradepage .commentsection,
.loanpage .commentsection {
  height: 126px;
}
.sellpage .search-label,
.tradepage .search-label,
.loanpage .search-label {
  margin-top: 18px;
}
.sellpage .select-form-group label,
.tradepage .select-form-group label,
.loanpage .select-form-group label {
  display: block;
}
.sellpage label,
.tradepage label,
.loanpage label {
  z-index: 9;
}
.sellpage .getaquotetitledesc a .btn-primary-cta,
.tradepage .getaquotetitledesc a .btn-primary-cta,
.loanpage .getaquotetitledesc a .btn-primary-cta {
  padding: 14px 39px;
}

.price-desired-curreny {
  display: flex;
  flex-direction: row;
}
.price-desired-curreny .price-desired {
  width: 65%;
  margin: 0;
}
.price-desired-curreny .price-desired &gt; input:first-child:first-child {
  border-radius: 4px 0 0 4px;
}
.price-desired-curreny .currency-type {
  width: 35%;
  margin: 0;
}
.price-desired-curreny .currency-type .currency {
  margin: 0;
  border-left: 0;
  border-radius: 0px 4px 4px 0px;
}

.whatareyoutrading-mobile-show {
  display: none;
}

.gettinaddedrows .lookingfor.mobile-show {
  display: none;
}

.gettinaddedrows.row .divider {
  width: 66%;
  margin: 25px auto 25px;
}
.gettinaddedrows.row .row .col-md-7 {
  margin-bottom: 40px;
}
.gettinaddedrows.row .row .col-md-7 span.remove {
  top: 0px;
}

@media (max-width: 991px) {
  .tradepage .gettinaddedrows.row .divider {
    width: 100%;
    margin: 5px auto 20px;
  }
  .tradepage .newarrrivaldiv {
    padding-bottom: 30px;
  }
  .tradepage .how-it-works {
    border-top: 1px solid #DCDCDC;
  }
  .tradepage .how-it-works .how-it-works-subheading {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.4px;
    line-height: 18px;
  }
  .tradepage .how-it-works p {
    margin: 10px 0 0px 0;
  }
  .tradepage .trade-loan-sell-trustedmessages {
    border-bottom: 1px solid #fff;
  }
  .tradepage .trade-loan-sell-trustedmessages .trusted-messages {
    padding: 20px 0 30px;
  }
  .tradepage .whatareyoutrading .formsubheading {
    margin-top: 25px;
  }
  .tradepage .yourwatch .forminnersubheading {
    display: none;
  }
  .trade-loan-sell-trustedmessages .trusted-messages .immediate-payment .trusted-messages-subheading {
    margin-top: 10px;
  }
  .trade-loan-sell-trustedmessages .trusted-messages .free-insured-shipping .trusted-messages-subheading {
    margin-top: 10px;
  }
  .trade-loan-sell-trustedmessages .trusted-messages .top-value-paid .trusted-messages-subheading {
    margin-top: 10px;
  }
  .tradeanotherwatch-add .divider {
    width: 100%;
    margin: 0px auto 20px;
  }
  .tradeanotherwatch-add span.remove {
    top: 0px;
  }
  .how-it-works .choose-your-watch span,
  .how-it-works .speak-expert span,
  .how-it-works .send-watch span,
  .how-it-works .ships-watch span,
  .trusted-messages .immediate-payment span,
  .trusted-messages .free-insured-shipping span .trusted-messages .top-value-paid span {
    margin-bottom: 15px;
    text-align: center;
  }
  .trade-loan-sell-faqs {
    padding-top: 20px;
  }
  .mob-examble-watches .faqsection h3,
  .trade-loan-sell-faqs .faqsection h3 {
    display: block;
    height: auto;
    padding: 15px 18px 15px 0;
    position: relative;
  }
  .mob-examble-watches .faqsection h3 span,
  .trade-loan-sell-faqs .faqsection h3 span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .trade-loan-sell-faqs.col-md-5 {
    border: none;
  }
  .welcometowatchbox .welcometowatchboximg .welcometowatchboxcontent {
    left: 0;
    right: 0;
    margin: auto;
  }
  .getaquotetitledesc div {
    margin-bottom: 30px;
  }
  .sellpage .site-search button {
    display: none;
  }
  .sellpage .trade-loan-sell-trustedmessages {
    border-bottom: none;
  }
  .personalinfo input::-moz-placeholder {
    font-size: 14px;
    color: #000;
    letter-spacing: 0.2px;
  }
  .personalinfo input::placeholder {
    font-size: 14px;
    color: #000;
    letter-spacing: 0.2px;
  }
  .personalinfo #brandDataList1 + label,
  .personalinfo .comments label {
    display: block;
  }
  .personalinfo .comments label {
    margin-top: 5px;
  }
  .getaquotetitledesc {
    padding: 0 2px;
  }
  .getaquotetitledesc div {
    margin-top: 20px;
  }
  .getaquotetitledesc a {
    display: block;
  }
  .getaquotetitledesc a .btn-primary-cta {
    width: 100%;
    margin-bottom: 10px;
    margin-right: auto;
  }
  .trade-loan-sell-faqs .content-asset {
    width: 100%;
  }
  .testimonialsofcustomers {
    padding: 0px;
  }
  .personalinfo .personal-form {
    padding: 0px;
  }
  .price-desired-curreny .currency-type {
    width: 39%;
  }
  .whatareyoulookingfor .formsubheading,
  .whatareyoutrading .formsubheading,
  .personalinfo .formsubheading {
    padding: 0 0 10px 0;
    margin-bottom: 20px;
    margin-top: 40px;
    letter-spacing: initial;
    text-align: left;
  }
  .personalinfo .formsubheading {
    margin-bottom: 30px;
  }
  .tradepage .whatareyoulookingfor {
    padding: 0 5px;
  }
  .tradepage .getaquotetitledesc div {
    margin-top: 20px;
    width: 100%;
  }
  .tradepage .getaquotetitledesc div a .btn-primary-cta {
    padding: 13px 0px;
  }
}
.hero-recaptcha-invisible {
  margin-bottom: 5px;
  width: 304px;
}
@media (min-width: 544px) and (max-width: 767px) {
  .hero-recaptcha-invisible {
    margin-left: 25%;
  }
}

@media (max-width: 500px) {
  .hero-recaptcha-invisible {
    width: 100%;
    overflow: hidden;
  }
}
.defaultimg + .veil {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}
.defaultimg + .veil .double-bounce1,
.defaultimg + .veil .double-bounce2 {
  top: 0;
  left: 0;
}

.image-upload-error {
  font-size: 12px;
}

#removeImageModal .modal-header {
  margin: 20px;
  padding: 0;
  border: none;
}
#removeImageModal .modal-header .close {
  padding: 0;
  background: url(https://watchbox-sfcc.imgix.net/Close.svg?auto=format,compress&amp;cs=srgb&amp;usm=5&amp;usmrad=5&amp;vib=5) no-repeat;
  display: inline-block;
  background-size: 100% 100%;
  margin-top: 2px;
  margin-right: 2px;
  height: 20px;
  width: 20px;
}
#removeImageModal .modal-title {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 2.375rem;
  font-weight: 400;
  letter-spacing: -0.0475rem;
  color: #000;
  text-align: center;
  text-transform: capitalize;
}
#removeImageModal .modal-body {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  color: #000;
  text-align: center;
  opacity: 0.9;
  margin: 0 50px;
  margin-top: 10px;
  border-top: 1px solid #DCDCDC;
}
#removeImageModal .modal-footer {
  justify-content: center;
  margin: 0 50px;
}
#removeImageModal .modal-footer .btn-outline-primary {
  margin-top: 0;
  border-radius: 0;
}

.form-control {
  letter-spacing: normal;
  box-shadow: none;
}

.formaddbutton {
  width: 100%;
}
@media (min-width: 1024px) {
  .formaddbutton .sell-logo-container {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .formaddbutton .nextstepwatchlogo {
    padding-left: 0;
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .formaddbutton .nextstepwatchlogo {
    padding-left: 29%;
  }
}

.getaquote {
  margin: 18px 0;
  width: 100%;
}
.getaquote button {
  padding: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .getaquote button {
    width: 100%;
  }
}

/* New Intro and Outro Content */
.content-top,
.content-bottom {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
}
.content-top ul,
.content-top li,
.content-top p,
.content-top span,
.content-top div,
.content-bottom ul,
.content-bottom li,
.content-bottom p,
.content-bottom span,
.content-bottom div {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
}
.content-top ul,
.content-bottom ul {
  list-style: unset !important;
  margin: 24px !important;
}
.content-top li,
.content-bottom li {
  margin-bottom: 1rem;
}
.content-top h1,
.content-top h2,
.content-top h3,
.content-bottom h1,
.content-bottom h2,
.content-bottom h3 {
  margin-bottom: 1rem;
}
.content-top h1,
.content-bottom h1 {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 2.375rem;
  font-weight: 400;
  letter-spacing: -0.0475rem;
}
.content-top h2,
.content-bottom h2 {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.035rem;
}
.content-top h3,
.content-bottom h3 {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}
.content-top p,
.content-bottom p {
  margin-bottom: 1rem;
}</pre></body></html>