/*
    The purpose of this is to prevent two things from happening:
        * On mobile, the x-axis overflows by A LOT, making it possible to scroll
          right a lot when you shouldn't be able to at all.

        * In solving the above issue, sometimes scrolling would get stuck because
          the wrapper would have scrolling enabled as well as the body, so it 
          gets dicey. That's why the wrapper hides *all* overflow. It works.
*/
.site-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.learn-more-link {
  text-decoration: underline;
  color: #0085f5;
  font-weight: bold;
}

.fade-in {
  opacity: 0.5;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.isVisible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.button,
.buy-button {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  border-radius: 8px;
}
.button:hover:not(#unlock-word, #unlock-word-text),
.buy-button:hover:not(#unlock-word, #unlock-word-text) {
  background-color: #0085f5;
  color: white;
}

.horizontal-line {
  border-color: #00000015;
}

.wave {
  padding: 0;
  margin: 0;
  z-index: -1;
  position: fixed;
  left: 0px;
}

#wave-1 {
  fill-opacity: 0;
  top: 50%;
}
@media only screen and (max-width: 905px) {
  #wave-1 {
    top: 55%;
  }
}
@media only screen and (max-width: 600px) {
  #wave-1 {
    top: 55%;
  }
}
@media only screen and (max-width: 500px) {
  #wave-1 {
    top: 50%;
  }
}

.section-padding {
  padding: 46px 10% 92px;
}

.grey-section {
  background-color: #5c5f64;
  color: white;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.juicy-star {
  display: inline-block;
  margin: -2.9px;
  opacity: 0;
}

.no-size-selected {
  top: 40%;
}

.header-alert {
  text-align: center;
  height: 40px;
  width: 100%;
  position: fixed;
  color: white;
  background-color: red;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  padding-top: 12px;
  z-index: 2;
  opacity: 0.95;
  filter: alpha(opacity=95);
  transition: all 0.5s;
  top: 70px;
  display: block;
}

@media only screen and (max-width: 550px) {
  #main-image {
    margin-top: 70px;
  }
}

.masthead {
  margin-top: 20px;
  padding: 0 10%;
}
.masthead .main-title {
  margin-bottom: 200px;
  font-size: 26px;
  display: none;
  opacity: 0%;
}
@media only screen and (max-width: 950px) {
  .masthead .main-title {
    margin-bottom: 50px;
  }
}
.masthead #anim-container {
  position: relative;
  width: 650px;
  margin: -25px auto 55px auto;
  opacity: 0;
}
.masthead #anim-container #password-anim-text {
  font-size: 26px;
  opacity: 60%;
  position: absolute;
  top: 12px;
  left: 20px;
}
.masthead #anim-container #password-anim {
  position: relative;
  width: 600px;
  height: 60px;
  background-color: white;
  padding-left: 15px;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.masthead #anim-container #password-anim #autofill-icon {
  width: 25px;
  height: auto;
  position: absolute;
  right: 15px;
  opacity: 0%;
}
.masthead #center-buy-now-button {
  font-size: 18px;
  margin-bottom: 250px;
  margin-top: -25px;
}
@media only screen and (max-width: 905px) {
  .masthead #center-buy-now-button {
    margin-bottom: 175px;
  }
}

#scroll-learn-more {
  font-size: 22px;
  color: #0085f5;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}
#scroll-learn-more #down-carat {
  margin-bottom: 13px;
  margin-left: 10px;
  font-size: 28px;
  font-weight: 300;
}

.promotional-content {
  padding-top: 61px;
}
.promotional-content #video-container {
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.promotional-content #video-container .play-video-button {
  border-width: 0px;
  width: 200px;
  height: auto;
  z-index: 2;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.promotional-content #video-container .play-video-button .play-video-text {
  color: white;
  font-size: 36px;
  margin-top: 10px;
  padding-bottom: 0;
}
.promotional-content #video-container .play-video-button .play-video-button-box {
  font-size: 60px;
  border: 3px solid white;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin: 0 auto;
}
.promotional-content #video-container .play-video-button .play-video-button-box .play-video-img {
  width: 30px;
  position: relative;
  top: -8px;
}
.promotional-content #video-container .play-video-container {
  background-color: transparent;
  text-align: center;
  cursor: pointer;
}
.promotional-content #video-container .play-video-container .play-video-image,
.promotional-content #video-container .play-video-container .play-video-image-2 {
  width: 85%;
  padding: 0;
  margin: 0;
  max-width: 1500px;
  cursor: pointer;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
}
@media only screen and (max-width: 750px) {
  .promotional-content #video-container .play-video-container .play-video-image,
.promotional-content #video-container .play-video-container .play-video-image-2 {
    width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .promotional-content #video-container .play-video-container .play-video-image,
.promotional-content #video-container .play-video-container .play-video-image-2 {
    width: 95%;
  }
}
.promotional-content .unlock-section {
  padding: 87px 10% 102px;
}
.promotional-content .unlock-section .unlock-text-section {
  padding: 0px 0px 0px 30px;
}
.promotional-content .unlock-section .unlock-text-section .unlock-text {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 20px;
}
.promotional-content .unlock-section .unlock-text-section .unlock-container {
  display: inline-block;
  transform: translateY(50px);
}
.promotional-content .unlock-section .unlock-text-section .unlock-container #unlock-word {
  padding: 15px 20px;
  margin: 0 0 -23px;
  cursor: text;
  font-size: 24px;
  transition: color 0.1s, width 0.25s;
  -webkit-transition: width 0.25s, color 0.1s;
  border: none;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
}
.promotional-content .unlock-section .unlock-text-section .unlock-container #unlock-word #unlock-word-text {
  color: black;
  width: max-content;
  width: -moz-max-content;
  transition: color 0.1s, width 0.25s;
  -webkit-transition: width 0.25s, color 0.1s;
}
.promotional-content .unlock-section .unlock-text-section .unlock-container .coming-soon-container #coming-soon-text {
  padding-top: 30px;
  color: #bbb;
  font-weight: 400;
  opacity: 0.4;
  filter: alpha(opacity=40);
  transition: opacity 0.5s, filter 0.5s;
}
.promotional-content .unlock-section .unlock-img {
  padding: 0 15px;
  opacity: 0.4;
  filter: alpha(opacity=40);
  transition: opacity 0.5s, filter 0.5s;
  height: 75px;
}
@media only screen and (max-width: 950px) {
  .promotional-content .unlock-section .unlock-img {
    padding: 10px 5px 0;
  }
}
.promotional-content .unlock-section #unlock-image-laptop,
.promotional-content .unlock-section #unlock-image-websites {
  height: 80px;
}
.promotional-content .unlock-section #unlock-image-door {
  height: 95px;
}

#overview {
  padding: 92px 10%;
  padding-bottom: 0;
}
#overview .what-is-text {
  font-style: italic;
  text-decoration: underline;
  color: black;
  font-weight: 300;
}
#overview .button {
  margin-top: 26px;
  margin-bottom: 112px;
}

#unlock-animation-container {
  padding: 0;
  margin: 0;
  background-color: white;
  text-align: center;
  position: relative;
  z-index: -1;
}
#unlock-animation-container .unlock-animation,
#unlock-animation-container .unlock-animation-img {
  width: 800px;
  margin-left: -90px;
  padding-bottom: 0;
  border-width: 0;
  overflow: hidden;
}
@media only screen and (max-width: 905px) {
  #unlock-animation-container .unlock-animation,
#unlock-animation-container .unlock-animation-img {
    width: 600px;
    margin-left: -67px;
  }
}
@media only screen and (max-width: 650px) {
  #unlock-animation-container .unlock-animation,
#unlock-animation-container .unlock-animation-img {
    width: 95%;
    margin-left: -39px;
  }
}

#press-div {
  width: 100%;
  margin-top: -5px;
  text-align: center;
  padding-bottom: 41px;
  z-index: 1;
}
#press-div .press-logo-img {
  padding: 40px 20px 5px;
}
#press-div .press-logo-wired {
  height: 30px;
  padding-bottom: 20px;
}
#press-div .press-logo-business-insider {
  height: 70px;
  padding-bottom: 0px;
}
#press-div .press-logo-wall-street-journal {
  height: 60px;
}
#press-div .press-logo-yahoo {
  height: 50px;
  padding-bottom: 10px;
}
#press-div .press-logo-techcrunch {
  height: 60px;
}

#feature-items {
  padding: 96px 0;
  padding-top: 126px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#feature-items .grid-item {
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  padding: 35px;
  padding-top: 20px;
  padding-bottom: 30px;
  margin: 15px;
  width: 300px;
  height: 275px;
  vertical-align: middle;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
#feature-items .grid-item .feature-img {
  height: 100px;
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
}
#feature-items .grid-item .feature-title {
  padding-bottom: 23px;
}
@media only screen and (max-width: 1200px) {
  #feature-items .grid-item {
    margin-top: 65px;
  }
}
@media only screen and (max-width: 650px) {
  #feature-items .grid-item {
    width: 90%;
  }
}

.promotional-content {
  padding-top: 0;
}
.promotional-content .retail-section {
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.promotional-content .retail-section .retail-img {
  padding: 40px 20px 0;
}
@media only screen and (max-width: 700px) {
  .promotional-content .retail-section .retail-img {
    height: 40px;
  }
}
.promotional-content .retail-section .retail-best {
  height: 70px;
}
.promotional-content .retail-section .retail-newegg {
  height: 60px;
}
.promotional-content .retail-section .retail-micro {
  height: 50px;
}
.promotional-content .retail-section .retail-office {
  height: 55px;
}
.promotional-content .retail-section .retail-modern {
  height: 43px;
}
@media only screen and (max-width: 700px) {
  .promotional-content .retail-section .retail-modern {
    width: 95px;
    height: auto;
  }
}
.promotional-content .retail-section .retail-qvc {
  height: 65px;
}

#reviews #reviews-div-left-1 {
  left: 5px;
}
#reviews #reviews-div-right-1 {
  right: 5px;
}
#reviews .review-carousel-button-left {
  margin-top: -165px;
  position: absolute;
  left: 15px;
  padding-left: 13px;
  padding-top: 5px;
  width: 32px;
  height: 40px;
  cursor: pointer;
}
#reviews .review-carousel-button-right {
  margin-top: -165px;
  position: absolute;
  right: 15px;
  padding-left: 17px;
  padding-top: 5px;
  width: 28px;
  height: 40px;
  cursor: pointer;
}
#reviews .review-carousel-button {
  width: 15px;
}
#reviews .review-carousel {
  padding: 0;
  margin: 0;
  background-color: #5c5f64;
  color: white;
  height: 305px;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
}
#reviews .review-carousel .review-carousel-button {
  width: 15px;
}
#reviews .review-carousel .review-tile-wrapper {
  display: inline-block;
  position: absolute;
  width: 100%;
}
#reviews .review-carousel .review-tile-wrapper .review-tile {
  padding: 60px 30px;
  width: 280px;
  display: inline-block;
  height: 170px;
  vertical-align: bottom;
}
#reviews .review-carousel .review-tile-wrapper .review-tile .review-tile-stars {
  font-size: 30px;
}
#reviews .review-carousel .review-tile-wrapper .review-tile .review-tile-name {
  font-size: 30px;
  font-weight: 500;
}
#reviews .review-carousel .review-tile-wrapper .review-tile .review-tile-text {
  padding-top: 15px;
}

.setup-section {
  padding: 96px 10% 96px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.setup-section .app-image {
  object-fit: contain;
  width: 950px;
}
@media only screen and (max-width: 905px) {
  .setup-section .app-image {
    width: 750px;
  }
}
@media only screen and (max-width: 650px) {
  .setup-section .app-image {
    width: 100%;
    height: auto;
    margin-left: -50px;
    margin-right: -50px;
  }
}
.setup-section .setup-title {
  padding-bottom: 23px;
}
.setup-section .button {
  margin-top: 26px;
  margin-bottom: 0;
}

#systems-div {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#systems-div .compatibility-logo {
  height: 70px;
  padding: 15px 30px !important;
}
#systems-div .compatibility-mac {
  padding-top: 38px;
  padding-bottom: 25px;
}
#systems-div .compatibility-windows {
  padding-top: 40px;
}
#systems-div .compatibility-android {
  padding-top: 42px;
}
#systems-div .compatibility-safari {
  height: 75px;
  padding-top: 40px;
}

.your-way-section {
  padding: 92px 10%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.your-way-section #accessories-container {
  margin-top: 150px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1239px) {
  .your-way-section #accessories-container .key-ring-accessory {
    margin-top: 150px !important;
  }
}
.your-way-section #accessories-container .accessory-item {
  display: inline-block;
  padding: 35px;
  width: 450px;
  vertical-align: top;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 350px;
  box-sizing: border-box;
  margin: 25px 20px 0 20px;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .your-way-section #accessories-container .accessory-item {
    width: 300px;
    box-sizing: border-box;
    font-size: 16px !important;
  }
}
.your-way-section #accessories-container .accessory-item .accessory-img {
  width: 150px;
  position: absolute;
}
.your-way-section #accessories-container .accessory-item .band-accessory-image {
  left: 50%;
  top: -140px;
  transform: translateX(-50%);
}
.your-way-section #accessories-container .accessory-item .key-ring-accessory-image {
  width: 125px;
  top: -135px;
  left: 55%;
  transform: translateX(-55%);
}
.your-way-section #accessories-container .accessory-item .accessory-title {
  padding: 23px 0 15px;
}

#future-div {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 92px;
}
#future-div .future-text {
  font-size: 50px;
}
#future-div .future-img {
  padding: 35px 20px 0px;
  height: 90px;
}
@media only screen and (max-width: 700px) {
  #future-div .future-img {
    height: 60px;
    padding: 0 7px;
  }
}
#future-div .future-image-car {
  height: 80px;
}
@media only screen and (max-width: 700px) {
  #future-div .future-image-car {
    height: 53px;
  }
}
#future-div .future-image-door {
  height: 100px;
}
@media only screen and (max-width: 700px) {
  #future-div .future-image-door {
    height: 67px;
  }
}

.revolution-section {
  padding: 92px 10% 92px;
}

.accessory-section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.accessory-section #accessories-header {
  padding: 92px 0 92px;
}
.accessory-section #accessories {
  padding: 0 5% 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.accessory-section #accessories #replacement_plan_store_item {
  display: none;
}
.accessory-section #accessories #replacement_plan_store_item .store-acs-image {
  width: 250px;
  padding-bottom: 5px;
}
.accessory-section #accessories #stacked-acc-div {
  height: 800px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.accessory-section #accessories .store-item {
  position: relative;
  height: 500px;
  padding: 125px 35px 35px 35px;
  padding-top: 125px;
}
.accessory-section #accessories .store-item .store-acs-image {
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%);
}
.accessory-section #accessories #key_ring_store_item .store-acs-image {
  width: 125px;
}
@media only screen and (max-width: 845px) {
  .accessory-section #accessories #key_ring_store_item {
    margin-top: 125px;
  }
}
@media only screen and (max-width: 777px) {
  .accessory-section #accessories #dongle_store_item {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 777px) {
  .accessory-section #accessories #band_store_item {
    height: 550px;
    margin-bottom: 50px;
  }
}
.accessory-section #accessories #band_store_item .add-to-bag {
  margin-top: 25px;
}
.accessory-section #accessories #cable_store_item .store-acs-image {
  width: 175px;
  top: -75px;
}
@media only screen and (max-width: 845px) {
  .accessory-section #accessories #cable_store_item {
    margin-top: 100px;
  }
}
.accessory-section #accessories #band-color-wrapper {
  padding-top: 20px;
}
.accessory-section #accessories .store-band-color {
  width: 20px;
  height: 20px;
  border: 1px solid black;
  border-radius: 100px;
  margin-right: 4px;
  cursor: pointer;
}
.accessory-section #accessories .store-band-color:focus {
  outline: none;
  border: none;
}
.accessory-section #accessories .selected-color {
  width: 30px;
  height: 30px;
}
.accessory-section #accessories .selected-color:focus {
  border: 1px solid black;
  border-radius: 100px;
}
.accessory-section #accessories .band-size-options {
  vertical-align: middle;
  padding: 23px 0;
}
.accessory-section #accessories .band-size-options .store-band-size {
  padding-bottom: 3px;
  border-bottom: 0px solid #0085f5;
  color: #0085f5;
  font-size: 21px;
  font-weight: 300;
  cursor: pointer;
}
.accessory-section #accessories .band-size-options .band-size-info {
  font-size: 21px;
  cursor: pointer;
  color: #0085f5;
  width: 38px;
  height: 38px;
  background-color: white;
  border: 2px solid #0085f5;
  border-radius: 100px;
  transition: color 0.3s, background-color 0.3s;
  will-change: color, background-color;
}
.accessory-section #accessories .band-size-options .band-size-info:hover {
  background-color: #0085f5;
  color: white;
}
.accessory-section #accessories .band-size-options .selected-size {
  border-bottom-width: 2px;
}

#shop,
#accessories {
  padding: 75px 5% 92px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#shop .shop-loading,
#accessories .shop-loading {
  width: 100px;
  height: 100px;
}
#shop .store-item,
#accessories .store-item {
  width: 300px !important;
  padding: 0 35px;
  height: 515px;
  margin: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
}
#shop .store-item .store-item-image,
#accessories .store-item .store-item-image {
  width: 250px;
  padding-bottom: 23px;
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 375px) {
  #shop .store-item .store-item-image,
#accessories .store-item .store-item-image {
    width: 200px;
  }
}
#shop .store-item .store-acs-image,
#accessories .store-item .store-acs-image {
  width: 250px;
  padding-bottom: 5px;
}
#shop .store-item .subscription-info,
#accessories .store-item .subscription-info {
  cursor: pointer;
  font-size: 15px;
  color: #0085f5;
}
#shop .store-item .subscription-info:hover,
#accessories .store-item .subscription-info:hover {
  text-decoration: underline;
}
#shop .store-item .shop-description,
#accessories .store-item .shop-description {
  padding: 23px 0;
}
#shop .store-item .price-span .price,
#accessories .store-item .price-span .price {
  display: inline;
}
#shop .store-item .strike,
#accessories .store-item .strike {
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #999;
}
#shop .store-item .add-to-bag,
#accessories .store-item .add-to-bag {
  margin-top: 50px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 400px) {
  #shop .store-item,
#accessories .store-item {
    height: 550px;
  }
}

@media only screen and (max-width: 1333px) {
  #shop #everykey-div-4 {
    margin-top: 130px;
  }
}
@media only screen and (max-width: 888px) {
  #shop #everykey-div-2 {
    margin-top: 65px;
  }
}

#accessories .store-item {
  height: 750px;
  padding: 35px;
  width: 250px !important;
}
#accessories .store-item .shop-description {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 903px) {
  #accessories .store-item {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 903px) {
  #accessories #key_ring_store_item {
    margin-top: 125px;
  }
  #accessories #cable_store_item {
    margin-top: 55px;
  }
}
@media only screen and (max-width: 1348px) {
  #accessories #key_ring_store_item {
    margin-top: 75px;
  }
  #accessories #cable_store_item {
    margin-top: 75px;
  }
}

#subscribe {
  padding: 92px 10% 92px;
}
#subscribe .subscribe-subtitle {
  font-size: 20px;
  padding-bottom: 23px;
}
#subscribe #mce-EMAIL {
  border: none;
  outline: none;
  box-sizing: border-box;
  height: 56px;
  width: 300px;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
}
@media only screen and (max-width: 400px) {
  #subscribe #mce-EMAIL {
    margin-left: 0;
    margin-right: 0;
    width: 250px;
  }
}

.band {
  max-width: 800px;
  padding: 0 10%;
}
@media only screen and (max-width: 1100px) {
  .band {
    max-width: 500px;
  }
}
.band .size-range-text {
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
}
.band .instructions-text {
  font-size: 17px;
}
.band .size-range-box {
  display: inline-block;
  padding: 30px;
  text-align: center;
}
.band .large-label {
  font-size: 40px;
}
.band .band-measure-img-1 {
  width: 200px;
}
.band .band-measure-img-2 {
  width: 400px;
}

.vault {
  max-width: 1000px;
  padding: 30px 100px 80px 100px;
}
@media only screen and (max-width: 1100px) {
  .vault {
    max-width: 500px;
    padding: 20px 30px 30px 30px;
  }
}
.vault .vault-modal-text {
  display: inline-block;
  max-width: 500px;
}
.vault .vault-modal-text .size-range-text {
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
}
.vault .vault-modal-text .instructions-text {
  font-size: 17px;
}
.vault .vault-modal-text .large-label {
  font-size: 40px;
}
@media only screen and (max-width: 1100px) {
  .vault .vault-modal-text {
    max-width: unset;
  }
}
.vault .vault-modal-img-1 {
  width: 213px;
  vertical-align: top;
  padding-right: 40px;
}
@media only screen and (max-width: 1100px) {
  .vault .vault-modal-img-1 {
    display: none;
  }
}
.vault .vault-modal-img-2 {
  width: 213px;
  vertical-align: top;
  padding: 40px 87px 20px 0;
  display: none;
}
@media only screen and (max-width: 1100px) {
  .vault .vault-modal-img-2 {
    display: block;
  }
}

.modal-content .band {
  max-width: 800px;
  padding-right: 10%;
  padding-left: 10%;
}
.modal-content .vault {
  max-width: 1000px;
  padding: 30px 100px 80px 100px;
}

#notificationDesktop {
  transition: background 0.5s, color 0.5s, border 0.5s;
  opacity: 0.95;
  position: fixed;
  bottom: 19px;
  right: -999999px;
  background: white;
  padding: 18px 27px 18px 30px;
  border-radius: 6px;
  font-size: 17px;
  opacity: 0.92;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.2);
}
#notificationDesktop #notificationImageDesktop {
  width: 64px;
  padding: 0 1px 3px 1px;
}
#notificationDesktop #starContainerDesktop {
  display: inline-block;
  width: 90px;
  font-size: 22px;
  padding: 0 7px 25px 20px;
  color: #5c5f64;
}
#notificationDesktop #starContainerDesktop #notificationStarsDesktop {
  position: absolute;
  left: 32px;
  top: 27px;
  font-size: 22px;
  color: #5c5f64;
}
#notificationDesktop #starContainerDesktop #notificationStarsDesktop .juicy-star {
  opacity: 1;
}
#notificationDesktop #starContainerDesktop #juicyNotificationStarsDesktop {
  position: absolute;
  left: 32px;
  top: 27px;
  font-size: 22px;
  color: #5c5f64;
}
#notificationDesktop #notificationTextDesktop {
  display: inline-block;
  padding: 13px 13px 13px 19px;
  vertical-align: bottom;
  color: black;
}

#notificationMobile {
  z-index: 1;
  transition: background 0.5s, color 0.5s, border 0.5s;
  opacity: 0.95;
  position: fixed;
  left: 0;
  top: -999999px;
  width: 100%;
  text-align: center;
  background: white;
  padding: 15px 0 20px 0;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
#notificationMobile #notificationImageMobile {
  width: 64px;
  padding: 0 1px 3px 6px;
}
#notificationMobile #starContainerMobile {
  display: inline-block;
  width: 90px;
  font-size: 22px;
  padding: 0 7px 25px 20px;
  color: #5c5f64;
}
#notificationMobile #starContainerMobile #notificationStarsMobile {
  position: absolute;
  top: 23px;
  font-size: 22px;
  color: #5c5f64;
}
#notificationMobile #starContainerMobile #notificationStarsMobile .juicy-star {
  opacity: 1;
}
#notificationMobile #starContainerMobile #juicyNotificationStarsMobile {
  position: absolute;
  top: 23px;
  font-size: 22px;
  color: #5c5f64;
}
#notificationMobile #notificationTextMobile {
  display: inline-block;
  padding: 13px 13px 13px 15px;
  vertical-align: bottom;
  color: black;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}