@font-face {
  font-family: "bodoni";
  src: url("/fonts/bodoni-72-book.ttf") format("truetype");
}
/*
 * Set up the keyframes to actually describe the begining and end states of 
 * the animation.  The browser will interpolate all the frames between these 
 * points.  Again, remember your vendor-specific prefixes for now!
 */
@-webkit-keyframes loadingRefresh {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
  }
}
@-moz-keyframes loadingRefresh {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(180deg);
  }
}
@-o-keyframes loadingRefresh {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(180deg);
  }
}
@keyframes loadingRefresh {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
/* Variables*/
/* Font Families*/
/* Font settings */
/* Color Palette*/
/* Shadows */
/* Max content width and paddings */
/* Homepage main content */
section.section {
  padding: 48px 24px;
}
section.section h2 {
  color: #293343;
}

@media (min-width: 968px) {
  section.section {
    padding: 68px 64px;
  }
  section.section h2 {
    font-size: 2.5rem;
    line-height: 110%;
    white-space: nowrap;
  }
}
@media (min-width: 1400px) {
  section.section {
    padding: 88px 100px;
  }
  section.section h2 {
    font-size: 3rem;
    line-height: 110%;
  }
}
.section-by-admin {
  display: flex;
  justify-content: center;
}
.section-by-admin table {
  width: 100%;
}

/* Homepage HERO section */
section.hero {
  display: grid;
  gap: 20px;
  padding: 0;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  grid-template-areas: "buysell" "carousel" "digital";
}
section.hero .hero-buy-sell {
  grid-area: buysell;
  padding: 20px 24px 0 24px;
}
section.hero .hero-digital {
  grid-area: digital;
  padding: 0 24px 24px 24px;
}
section.hero .carousel {
  grid-area: carousel;
}
section.hero .carousel-item table {
  width: 100%;
  height: 100%;
}
section.hero .carousel-item table a {
  display: flex;
  align-items: stretch;
}
section.hero .carousel-item table img {
  width: 100%;
  height: 100%;
}
section.hero .left-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.hero .left-rail a {
  display: flex;
  min-height: 112px;
  height: max-content;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  border-radius: 4px;
  border: 2px solid #F0F2F3;
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}
section.hero .left-rail a h2 {
  font-size: 1.375rem;
  line-height: 110%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
section.hero .left-rail a h2 img {
  width: 24px;
  height: 24px;
}
section.hero .left-rail-description {
  line-height: 120%;
  color: #000;
}

@media (min-width: 480px) {
  section.hero .left-rail a h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 968px) {
  section.hero .left-rail {
    flex-direction: row;
    gap: 20px;
  }
  section.hero .left-rail a {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  section.hero {
    padding: 20px 60px;
    row-gap: 8px;
    grid-template-columns: 30% 70%;
    grid-template-rows: auto;
    grid-template-areas: "buysell carousel" "digital carousel";
  }
  section.hero .hero-buy-sell, section.hero .hero-digital {
    padding: 0;
    gap: 8px;
  }
  section.hero .left-rail {
    flex-direction: column;
  }
  section.hero .left-rail a {
    min-height: 0;
    gap: 8px;
  }
  section.hero .carousel-control-prev {
    margin-left: 40px;
  }
  section.hero .carousel-control-next {
    margin-right: 40px;
  }
  section.hero .carousel-control-next-icon, section.hero .carousel-control-prev-icon {
    width: 48px;
    height: 48px;
  }
  section.hero .carousel-control-prev-icon {
    background-image: url("/images/svg/carousel-control-prev.svg");
  }
  section.hero .carousel-control-next-icon {
    background-image: url("/images/svg/carousel-control-next.svg");
  }
}
@media (min-width: 1400px) {
  section.hero .left-rail {
    flex-direction: column;
  }
  section.hero .left-rail a {
    min-height: 0;
    gap: 16px;
  }
  section.hero .left-rail a h2 {
    font-size: 1.75rem;
  }
  section.hero .left-rail-description {
    font-size: 1.125rem;
  }
}
@media (min-width: 1920px) {
  section.hero {
    gap: 20px;
    grid-template-columns: 468px auto;
    grid-template-rows: 336px 336px;
    max-width: 1920px;
    margin: 0 auto;
  }
  section.hero .hero-buy-sell, section.hero .hero-digital {
    padding: 0;
    gap: 20px;
  }
  section.hero .left-rail a {
    padding: 20px;
    height: 100px;
  }
  section.hero .left-rail a h2 {
    font-size: 2.25rem;
  }
  section.hero .left-rail a h2 img {
    width: 32px;
    height: 32px;
  }
  section.hero .left-rail-description {
    font-size: 1.5rem;
  }
  section.hero .carousel-control-prev {
    margin-left: 37px;
  }
}
/* Homepage Kitco Trust section */
.kitco-trust {
  padding: 24px;
  background-color: #F4F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.kitco-trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.kitco-trust-content > div {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

@media (min-width: 992px) {
  .kitco-trust-content {
    gap: 40px;
  }
}
@media (min-width: 1400px) {
  .kitco-trust {
    padding: 12px 40px;
  }
  .kitco-trust-content {
    gap: 40px;
    font-size: 1.125rem;
  }
  .kitco-trust-content > div.logos {
    column-gap: 24px;
  }
}
@media (max-width: 991px) {
  .kitco-trust .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
  }
  .kitco-trust .infinite-scrolling {
    padding-left: 100%;
    animation: scroll 25s linear infinite;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}
.kitco-branding {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  background: var(--Gradient, linear-gradient(180deg, #293343 0%, #040506 100%));
}
.kitco-branding-heading {
  font-size: 1.5rem;
  font-family: "bodoni", Georgia, serif;
  color: #ffffff;
  text-align: center;
  line-height: 110%;
}
.kitco-branding-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kitco-branding-cta a {
  font-size: 1.5rem;
  white-space: nowrap;
  line-height: normal;
  width: 205px;
  height: auto;
}

@media (min-width: 744px) {
  .kitco-branding-cta {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .kitco-branding {
    padding: 24px 48px;
    gap: 100px;
    flex-direction: row;
  }
}
/* Product metals categories */
.product-metals .section-content {
  width: 100%;
}
.product-metals-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-metals-category {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  padding: 16px;
  height: 222px;
  border-radius: 4px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.product-metals-category-title {
  color: #333;
  line-height: 120%;
  font-size: 1.25rem;
}
.product-metals-category .btn {
  height: auto;
  padding: 12px 0;
}
.product-metals-category--gold {
  background-image: url("/images/bg-pm-gold.png");
}
.product-metals-category--silver {
  background-image: url("/images/bg-pm-silver.png");
}
.product-metals-category--platinum {
  background-image: url("/images/bg-pm-platinum.png");
}
.product-metals-category--palladium {
  background-image: url("/images/bg-pm-palladium.png");
}
.product-metals-category--rhodium {
  background-image: url("/images/bg-pm-rhodium.png");
}

@media (min-width: 576px) {
  .product-metals-categories {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    justify-content: space-around;
  }
  .product-metals-category {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .product-metals-categories {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
  }
  .product-metals-category {
    height: 150px;
    background-size: 100% auto;
  }
}
@media (min-width: 1200px) {
  .product-metals .section-content {
    max-width: 1616px;
  }
  .product-metals-categories {
    gap: 16px;
  }
  .product-metals-category {
    height: 180px;
    background-size: 100% auto;
  }
}
@media (min-width: 1400px) {
  .product-metals-category {
    height: 222px;
  }
}
@media (min-width: 1920px) {
  .product-metals-category {
    background-size: 100%;
  }
}
/* Bestsellers */
.bestsellers {
  background: rgba(0, 0, 0, 0.02);
}
.bestsellers .section-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.bestsellers .carousel-item table {
  width: 100%;
}
.bestsellers .carousel-indicators {
  position: initial;
  margin: 40px auto 0 auto;
}
.bestsellers .carousel-indicators [data-bs-target] {
  background: #F0F2F3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}
.bestsellers .carousel-indicators [data-bs-target].active {
  background: #293343;
}
.bestsellers-slide {
  display: flex;
  column-gap: 16px;
  row-gap: 16px;
  flex-wrap: wrap;
}
.bestsellers-item {
  display: flex;
  padding: 24px 16px 90px 16px;
  border-radius: 4px;
  border: 1px solid #F0F2F3;
  background: #ffffff;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  text-align: center;
  position: relative;
  font-size: 1.125rem;
  color: #333;
  line-height: normal;
  width: 100%;
}
.bestsellers-item > div {
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.bestsellers-image {
  max-width: 250px;
  max-height: 250px;
}
.bestsellers .btn.btn-primary {
  width: max-content;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .bestsellers-item {
    height: 100%;
  }
  .bestsellers .carousel-item table {
    width: calc(50% - 8px);
    height: -webkit-fill-available;
  }
}
@media (min-width: 1200px) {
  .bestsellers .section-content {
    max-width: 1616px;
    row-gap: 60px;
  }
  .bestsellers-image {
    max-width: 200px;
    max-height: 200px;
  }
  .bestsellers-slide {
    flex-wrap: nowrap;
  }
  .bestsellers-item {
    flex: 1;
  }
  .bestsellers .carousel-control-prev {
    justify-content: flex-start;
    left: -55px;
  }
  .bestsellers .carousel-control-next {
    justify-content: flex-end;
    right: -55px;
  }
}
@media (min-width: 1400px) {
  .bestsellers-image {
    max-width: 250px;
    max-height: 250px;
  }
  .bestsellers .carousel-control-prev {
    left: -80px;
  }
  .bestsellers .carousel-control-next {
    justify-content: flex-end;
    right: -80px;
  }
}
/* Digital products */
.digital-products .section-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.digital-products-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.digital-products-item {
  display: flex;
  flex-direction: column;
}
.digital-products-item-description {
  padding: 20px;
  border: 2px solid #F0F2F3;
  font-size: 0.875rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.digital-products .btn.btn-primary {
  width: max-content;
}
.digital-products img {
  width: 100%;
}

@media (min-width: 968px) {
  .digital-products .section-content {
    max-width: 1616px;
    row-gap: 60px;
  }
  .digital-products-container {
    flex-direction: row;
    align-items: stretch;
  }
  .digital-products-item-description {
    padding: 40px;
    font-size: 1rem;
    flex-grow: 1;
  }
  .digital-products h4 {
    font-size: 1.5rem;
  }
}
/* Top Searches */
.top-searches .section-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.top-searches-items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.top-searches-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.top-searches-item-title {
  color: #293343;
  line-height: 120%;
  font-size: 1.25rem;
}
.top-searches-item-img {
  width: 100%;
  order: -1;
  text-align: center;
}
.top-searches-item-img img {
  width: 132px;
}
.top-searches-item .btn {
  height: auto;
}

@media (min-width: 576px) {
  .top-searches-items {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 60px;
    column-gap: 20px;
    justify-content: space-around;
  }
  .top-searches-item {
    width: calc((100% - 20px) / 2);
    align-items: self-end;
  }
}
@media (min-width: 992px) {
  .top-searches-item {
    width: calc((100% - 40px) / 3);
  }
}
@media (min-width: 1200px) {
  .top-searches .section-content {
    max-width: 1616px;
    row-gap: 60px;
  }
  .top-searches-items {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
  }
  .top-searches-item {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: auto;
    gap: 48px;
  }
  .top-searches-item-img {
    order: 0;
  }
  .top-searches-item-img img {
    width: 140px;
  }
}
@media (min-width: 1200px) {
  .top-searches-item-img img {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  .top-searches-item-img img {
    width: 180px;
  }
}
/* Exclusive Collections */
.exclusive-collections .section-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.exclusive-collections-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.exclusive-collections-item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 352px;
  border-radius: 4px;
  background-repeat: no-repeat;
}
.exclusive-collections-item.exclusive-collections-mintfirst {
  border: 2px solid #F0F2F3;
  background-color: #ffffff;
  background-image: url("/images/bg-mintfirst.png");
  background-position: right bottom;
  background-size: 85% auto;
}
.exclusive-collections-item.exclusive-collections-kitco-exclusives {
  background-color: #F4F4F7;
  background-image: url("/images/bg-kitco-exclusives.png");
  background-position: right bottom;
  background-size: 80% auto;
}
.exclusive-collections-item.exclusive-collections-bundles {
  background-color: rgba(6, 128, 205, 0.08);
  background-image: url("/images/bg-bundles.png");
  background-position: center bottom;
  background-size: 100% auto;
}
.exclusive-collections .btn {
  width: max-content;
}

@media (min-width: 576px) {
  .exclusive-collections-item.exclusive-collections-mintfirst {
    background-position: right bottom;
    background-size: auto 95%;
  }
  .exclusive-collections-item.exclusive-collections-kitco-exclusives {
    background-position: right bottom;
    background-size: 70% auto;
  }
  .exclusive-collections-item.exclusive-collections-bundles {
    background-position: right bottom;
    background-size: 80% auto;
  }
}
@media (min-width: 820px) {
  .exclusive-collections .section-content {
    max-width: 1616px;
    row-gap: 60px;
  }
  .exclusive-collections-container {
    flex-direction: row;
  }
  .exclusive-collections-item {
    padding: 40px;
    flex: 1;
    height: 380px;
  }
  .exclusive-collections-item.exclusive-collections-mintfirst {
    background-position: right bottom;
    background-size: 85% auto;
  }
  .exclusive-collections-item.exclusive-collections-kitco-exclusives {
    background-position: right bottom;
    background-size: 80% auto;
  }
  .exclusive-collections-item.exclusive-collections-bundles {
    background-position: center bottom;
    background-size: 100% auto;
  }
  .exclusive-collections h4 {
    font-size: 1.5rem;
  }
}
/* Sell to Kitco */
.sell-to-kitco {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sell-to-kitco .section-content {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  height: 318px;
  background-image: url("/images/bg-sell-to-kitco-mobile.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.sell-to-kitco .section-content h2 {
  color: #ffffff;
}
.sell-to-kitco .section-content .btn {
  margin: 0 auto;
}

@media (min-width: 480px) {
  .sell-to-kitco .section-content {
    background-image: url("/images/bg-sell-to-kitco.png");
  }
}
@media (min-width: 968px) {
  .sell-to-kitco .section-content {
    max-width: 1616px;
    height: 466px;
  }
  .sell-to-kitco .section-content h2 {
    font-size: 3.75rem;
  }
}
/* Other Services - Programs */
.other-services-products {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(0, 0, 0, 0.02);
}
.other-services-products .section-content {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  margin: 0 auto;
}
.other-services-products .section-content-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  color: #555;
}
.other-services-products .section-content-description h2 {
  white-space: wrap;
}
.other-services-products .section-content-image img {
  width: 100%;
}
.other-services-products .section-content .storage-solutions-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.other-services-products .btn {
  width: max-content;
}

@media (min-width: 968px) {
  .other-services-products .section-content {
    max-width: 1616px;
    flex-direction: row;
  }
  .other-services-products .section-content.ira-rsp {
    flex-direction: row-reverse;
  }
  .other-services-products .section-content > div {
    width: calc(50% - 10px);
  }
  .other-services-products .section-content-description {
    height: 318px;
  }
  .other-services-products .section-content-description h2 {
    font-size: 2.5em;
  }
  .other-services-products .section-content-image {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1920px) {
  .other-services-products .section-content-description h2 {
    font-size: 48px;
  }
}
/* Promo / special sale section */
.promotional-products {
  text-align: center;
  font-size: 0.875rem;
}
.promotional-products .section-content {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.promotional-products .section-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 24px;
  padding: 20px;
  min-height: 190px;
  text-align: left;
}
.promotional-products .section-description h2 {
  white-space: wrap;
}
.promotional-products .subtitle {
  font-size: 0.875rem;
  line-height: normal;
  color: #000;
  text-transform: uppercase;
}
.promotional-products .btn.btn-primary {
  width: max-content;
}
.promotional-products img {
  width: 100%;
  height: 100%;
}

@media (min-width: 968px) {
  .promotional-products .section-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1616px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
  }
  .promotional-products .section-content > div {
    flex-grow: 1;
  }
  .promotional-products .section-content a {
    display: block;
  }
  .promotional-products .section-description {
    text-align: left;
    padding: 60px;
    min-width: 30%;
    max-width: 45%;
  }
  .promotional-products .section-description h2 {
    white-space: wrap;
  }
  .promotional-products .subtitle {
    font-size: 0.875rem;
    line-height: 120%;
  }
}
/* Shop Collectible carousel section */
.shop-collectibles {
  text-align: center;
  font-size: 0.875rem;
}
.shop-collectibles .section-content {
  text-align: center;
  margin: 0 auto;
}
.shop-collectibles .carousel {
  width: 100%;
}
.shop-collectibles .collectible-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.shop-collectibles .collectible-item .subtitle {
  font-size: 0.875rem;
  line-height: normal;
  color: #000;
  text-transform: uppercase;
}
.shop-collectibles .collectible-item .btn.btn-primary {
  width: max-content;
}
.shop-collectibles .collectible-item img {
  width: 100%;
  height: 100%;
}
.shop-collectibles .collectible-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 24px;
  padding: 20px;
  min-height: 190px;
  text-align: left;
}
.shop-collectibles .collectible-description h2 {
  white-space: wrap;
}

@media (min-width: 992px) {
  .shop-collectibles.section {
    padding-bottom: 0;
  }
  .shop-collectibles .section-content {
    max-width: 1616px;
  }
  .shop-collectibles .collectible-item {
    flex-direction: row;
    justify-content: space-between;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
  }
  .shop-collectibles .collectible-item .subtitle {
    font-size: 0.875rem;
    line-height: 120%;
  }
  .shop-collectibles .collectible-item .btn.btn-primary {
    margin: 0;
  }
  .shop-collectibles .collectible-description {
    min-width: 30%;
  }
  .shop-collectibles .collectible-description h2 {
    white-space: wrap;
  }
  .shop-collectibles .carousel-control-prev {
    justify-content: flex-start;
    left: -80px;
  }
  .shop-collectibles .carousel-control-next {
    justify-content: flex-end;
    right: -80px;
  }
}
@media (min-width: 1200px) {
  .shop-collectibles .collectible-description {
    padding: 60px;
    max-width: 45%;
  }
  .shop-collectibles .carousel-control-prev {
    left: -55px;
  }
  .shop-collectibles .carousel-control-next {
    right: -55px;
  }
}
@media (min-width: 1400px) {
  .shop-collectibles .carousel-control-prev {
    left: -80px;
  }
  .shop-collectibles .carousel-control-next {
    right: -80px;
  }
}
/* Homepage Sign Up section */
.sign-up {
  text-align: center;
  font-size: 0.875rem;
  color: #2C3642;
}
.sign-up-content {
  padding: 49px 20px 30px 20px;
  background-image: url("/images/bg-silver-coins.png");
  background-repeat: no-repeat;
  background-position: 75% 0px;
  background-size: 50% auto;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
.sign-up h2 {
  margin-bottom: 5px;
  color: #293343;
}
.sign-up form {
  margin-top: 30px;
}
.sign-up label {
  display: none;
}
.sign-up input[name=email] {
  width: 100%;
  max-width: 402px;
}
.sign-up .form-group.error label, .sign-up .form-group.error .fieldset-message {
  display: block;
}
.sign-up .form-group.success label {
  display: block;
}
.sign-up .btn.btn-primary {
  margin: 30px auto 0 auto;
}

@media (min-width: 768px) {
  .sign-up {
    text-align: center;
    font-size: 1rem;
  }
  .sign-up-content {
    text-align: left;
    padding: 88px 60px;
    background-position: 95% 0px;
    background-size: auto 100%;
  }
  .sign-up.section h2 {
    margin-bottom: 20px;
    font-size: 60px;
  }
  .sign-up .btn.btn-primary {
    margin: 20px 0 0 0;
  }
}
@media (min-width: 1400px) {
  .sign-up-content {
    padding: 114px 60px;
    background-position: 75% 0px;
    max-width: 1616px;
  }
}
/* ShopperApproved section */
.sa-reviews {
  background: rgba(0, 0, 0, 0.02);
  font-size: 0.875rem;
}
.sa-reviews .section-content {
  margin: 0 auto;
}
.sa-reviews h2 {
  margin-top: 60px;
  margin-bottom: 24px;
}
.sa-reviews .btn-primary {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 19px;
}
.sa-reviews .SA__more_review {
  display: none !important;
}

@media (min-width: 968px) {
  .sa-reviews {
    font-size: 1rem;
  }
  .sa-reviews .section-content {
    max-width: 1616px;
  }
  .sa-reviews .SA__wrapper .SA__container {
    max-width: 1716px;
    margin: 0 -50px;
  }
  .sa-reviews .btn-primary {
    margin-bottom: 24.5px;
  }
}
/* Kitco Benefits section */
.kitco-benefits {
  overflow: hidden;
  text-align: center;
  position: relative;
  background-color: #293343;
  font-size: 0.875rem;
}
.kitco-benefits.section h2 {
  color: #ffffff;
}
.kitco-benefits .kitco-logo-floating {
  width: 151px;
  height: 133px;
  position: absolute;
  top: 70px;
  right: 0px;
}
.kitco-benefits .section-content {
  text-align: left;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 100%;
  color: #ffffff;
}
.kitco-benefits-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 24px;
}
.kitco-benefits-item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.kitco-benefits-item h4 {
  font-size: 1.5rem;
  color: #ffffff;
}
.kitco-benefits-item p {
  margin: 0;
}
.kitco-benefits-item p a {
  color: #ffffff;
  text-decoration: underline;
}
.kitco-benefits-icon-container {
  border-radius: 9999px;
  padding: 8px;
  background-color: #ffffff;
  border: 1px solid var(--Line, #D8E0E9);
  width: 36px;
}
.kitco-benefits-icon-container img {
  width: 20px;
  height: 20px;
}
.kitco-benefits .btn.btn-tertiary {
  height: auto;
  color: #EBBC4E;
  justify-content: flex-start;
  width: max-content;
  text-align: left;
}
.kitco-benefits .btn.btn-tertiary span.arrow-right {
  margin-bottom: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33073 8H12.6641' stroke='%23EBBC4E' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.9974 12.6666L12.6641 7.99992L7.9974 3.33325' stroke='%23EBBC4E' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.kitco-benefits .btn.btn-tertiary:hover span.arrow-right {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33073 8H12.6641' stroke='%23EBBC4E' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.9974 12.6666L12.6641 7.99992L7.9974 3.33325' stroke='%23EBBC4E' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (min-width: 992px) {
  .kitco-benefits {
    font-size: 1rem;
  }
  .kitco-benefits .kitco-logo-floating {
    width: 617px;
    height: 197px;
    top: -25px;
    right: -230px;
  }
  .kitco-benefits .section-content {
    max-width: 1616px;
    row-gap: 60px;
  }
  .kitco-benefits-container {
    column-gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
  .kitco-benefits-item {
    row-gap: 24px;
    flex: 1;
    position: relative;
    padding-bottom: 76px;
  }
  .kitco-benefits .btn-container {
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .kitco-benefits .btn.btn-tertiary {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .kitco-benefits-item h4 {
    min-height: 52.9px;
  }
}
@media (min-width: 1920px) {
  .kitco-benefits .kitco-logo-floating {
    top: -28px;
    right: -170px;
  }
  .kitco-benefits-item {
    padding-right: 80px;
  }
}

/*# sourceMappingURL=home-v2.css.map */
