.rlc-modalopen #usntA40Toggle {
  display: none !important;
}

/* Prevent body scroll when modal is open */
body.rlc-modalopen {
  overflow: hidden !important;
  height: 100vh !important;
  position: relative !important;
}

/* 2x2 grid icon */
.rlc-gridicon {
  display: inline-block;
  vertical-align: middle;
  width: 1.75em;
  height: 1.75em;
  position: absolute;
  right: -2.5em;
  top: 0.125em;
}
/* .rlc-gridicon-square:first-child::before,
.rlc-gridicon-square:first-child::after {
  content: "";
  position: absolute;
  width: 0.75em;
  height: 0.75em;
  border: 1px solid currentColor;
  background: none;
  box-sizing: border-box;
}
.rlc-gridicon-square:first-child::before {
  top: 0;
  left: 0;
}
.rlc-gridicon-square:first-child::after {
  top: 0;
  right: 0;
}
.rlc-gridicon-square:last-child::before,
.rlc-gridicon-square:last-child::after {
  content: "";
  position: absolute;
  width: 0.75em;
  height: 0.75em;
  border: 1px solid currentColor;
  background: none;
  box-sizing: border-box;
}
.rlc-gridicon-square:last-child::before {
  bottom: 0;
  left: 0;
}
.rlc-gridicon-square:last-child::after {
  bottom: 0;
  right: 0;
} */

/* Mobile sticky header for modal */
.rlc-mobile-sticky-header {
  visibility: hidden;
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0.25em 1.875em rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.4em);
  -webkit-backdrop-filter: blur(0.4em);
  color: #fff;
  font-size: 0.875em;
  height: 3.75em;
  font-family: "LeJeuneDeck-Regular", "Times New Roman", Times, serif;
  text-align: left;
  padding: 0.75em 2.125em;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-100%);
  opacity: 0;
  display: flex;
}
.rlc-mobile-sticky-header.rlc-slide-in {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rlc-valoverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s;
  /* background: #000; */
  width: 100%;
  height: 100%;
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.75);
  border-radius: 1em;
  box-shadow: 0 0.25em 1.875em rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.4em);
  -webkit-backdrop-filter: blur(0.4em);
}
#rlc-valoverlay.rlc-open {
  opacity: 1;
}
#rlc-valmodal {
  position: fixed;
  top: 0;
  left: 100%;
  transform: translateX(-33%);
  z-index: 1001;
  opacity: 0;
  transition:
    opacity 0.5s,
    transform 0.5s;
  color: #fff;
}
#rlc-valmodal.rlc-open {
  opacity: 1;
  transform: translateX(-100%);
}
#rlc-valwrapper {
  width: 75.9375em;
  height: 100vh;
  background: #fff;
}
#rlc-valwrapper .rlc-close {
  position: absolute;
  top: 1.875em;
  right: 1.075em;
  width: 1.5em;
  height: 1.5em;
  transform: rotate(45deg);
  z-index: 3;
  color: #000;
}
.rlc-header-visible #rlc-valwrapper .rlc-close {
  color: #fff;
}
#rlc-valwrapper .rlc-close::before,
#rlc-valwrapper .rlc-close::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#rlc-valwrapper .rlc-close::after {
  transform: translateY(-50%) rotate(90deg);
}

#rlc-valwrapper .rlc-in {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  overflow: auto;
  overflow-y: scroll; /* Force vertical scrollbar space */
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* scrollbar-width: none; */
  color: #f5f5f2;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  overscroll-behavior: contain; /* Prevent scroll chaining to background */
}
#rlc-valwrapper .rlc-intro {
  margin: 6.125em auto 3em;
  width: 30em;
  text-align: center;
}
#rlc-valwrapper .rlc-intro .rlc-title {
  font-family: "LeJeuneDeck-Regular", "Times New Roman", Times, serif;
  font-size: 2.75em;
  line-height: 1.1818181818181819em;
  letter-spacing: normal;
  text-transform: none;
}
#rlc-valwrapper .rlc-intro .rlc-dek {
  font-family: "Founders Grotesk text Regular", Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  margin: 1.75em auto 0;
  width: 100%;
}
#rlc-valwrapper .rlc-intro .rlc-linecta {
  font-family: "Founders Grotesk text Regular", Arial, Helvetica, sans-serif;
}
#rlc-valmodal .rlc-ll_manual.rlc-lazyLoad:after {
  display: none;
}

/* grid styles */
#rlc-valwrapper .rlc-grid {
  display: flex;
  flex-wrap: wrap;
  width: 69em;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 3.75em;
}
#rlc-valwrapper .rlc-grid .rlc-grid-item {
  width: 34em;
  position: relative;
  margin-bottom: 1em;
}
#rlc-valwrapper .rlc-grid .rlc-grid-item .rlc-copygroup {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#rlc-valwrapper .rlc-grid .rlc-grid-item .rlc-copygroup-in {
  left: 1.3em;
  bottom: 1.675em;
}
#rlc-valwrapper .rlc-grid .rlc-grid-item .rlc-copygroup .rlc-title {
  margin: 0;
  text-transform: uppercase;
  font-family: "Founders Grotesk text Regular", Arial, Helvetica, sans-serif;
  font-size: 0.6875em;
  line-height: 1em;
  letter-spacing: 0.125em;
}
@media screen and (max-width: 767px) {
  #rlc-valoverlay {
    display: none;
  }
  #rlc-valmodal {
    left: 0;
    transform: none;
    transition: opacity 0.5s;
  }
  #rlc-valmodal.rlc-open {
    transform: none;
  }
  #rlc-valwrapper {
    width: 100vw;
    height: 100vh;
  }
  #rlc-valwrapper .rlc-close {
    top: 1.2em;
    right: 1.75em;
    width: 1em;
    height: 1em;
  }
  #rlc-valwrapper .rlc-intro {
    margin: 3.75em auto 1.875em;
    width: 90%;
  }
  #rlc-valwrapper .rlc-intro .rlc-title {
    font-size: 1.75em;
    line-height: 1.25em;
    letter-spacing: normal;
  }
  #rlc-valwrapper .rlc-intro .rlc-dek {
    font-size: 0.75em;
    line-height: 1.75em;
    margin-top: 0.75em;
    width: 22em;
  }
  #rlc-valwrapper .rlc-intro .rlc-linecta {
    margin-top: 1.727em;
  }

  /* grid styles */
  #rlc-valwrapper .rlc-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto 3.75em;
  }
  #rlc-valwrapper .rlc-grid .rlc-grid-item {
    width: 19.6875em;
    position: relative;
    margin-bottom: 0.625em;
  }
  #rlc-valwrapper .rlc-grid .rlc-grid-item .rlc-copygroup {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }
  #rlc-valwrapper .rlc-grid .rlc-grid-item .rlc-copygroup-in {
    left: 0.75em;
    bottom: 0.875em;
  }
}