/** Shopify CDN: Minification failed

Line 468:0 Expected "}" to go with "{"

**/
/***********************************************************
 *  MOBILE MONSTER — CUSTOM UPSELL MODULE
 *  Warranty + Battery + Shared Layout Styles
 ***********************************************************/


/* =========================================================
   1) SHARED UPSSELL LAYOUT (Battery + Warranty)
   ========================================================= */

.related_product_block_check {
  display:flex;
    cursor: pointer;
    pointer-events: none; /* disable click on the wrapper */
    width: 100%;
    margin-top: 5px;
    align-items: center;
    position: relative;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    background-color:rgb(255, 255, 255);
    line-height: 1.2em;
    justify-content: space-around;
}
.related_product_block_check input[type="checkbox"] {
  pointer-events: auto;
  min-width: 7%;
}
.related_product_block_check .related_product_text {
  max-width:80%;
  padding-right:2px;
}
.related_product_block_check_input {
  margin-right:10px;
}
.related_product_block_check.checked {
  background-color: #F6F3F8;
    border: 2px solid #63388B ;
}
.related_product_price,
.exclamation_icon_wrapper {
  cursor: default;
}


/* =========================================================
   2) TWO-COLUMN WRAPPER (Battery + Warranty side-by-side)
   ========================================================= */

.custom-upsell-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom:8px;

}

.custom-upsell-column > * {
  position: relative;
  z-index: 1;
  display: block;
}

.custom-upsell-column {
  flex: 1 1 calc(50% - 6px);
  max-width: calc(50% - 6px);
  isolation: isolate;
}

.custom_upsell__row {
padding: 2px;
}

.custom_battery__row__heading {
  margin-bottom: -5px; 
  margin-top: 5px;}

.custom_upsell__row label span {
  font-size: 15px;
  font-style: italic;}

.upsell_note {
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 0px; }

/* Stack */
@media (max-width: 1300px) and (min-width: 1067px) {
  .custom-upsell-column {
    flex: 1 1 100%;
    max-width: 100%; }

}

@media (max-width: 768px) {
  .custom-upsell-column {
    flex: 1 1 100%;
    max-width: 100%; }

}


/* =========================================================
   5) ICON + TOOLTIP + EXCLAMATION POPUP
   ========================================================= */

.exclamation_icon_wrapper {
  margin-top: 3px;
}

span.exclamation_icon {
  padding-left: 5px;
  padding-top: 7px;
  position: relative;
  margin-left: 4%;
  width: 14px;
  height: 14px;
  pointer-events: auto;
}

/*** Popup overlay ***/
.exclamation_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
}

.exclamation_overlay:target {
  visibility: visible;
  opacity: 1;
}

/*** Popup container ***/
.exclamation_popup {
  background: #fff;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.exclamation_popup .close {
  position: absolute;
  top: 10px;
  right: -15px;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.exclamation_popup .close:hover {
  color: #63388b;
}

/*** Popup content ***/
.exclamation_content {
  border-top: 1px solid #00000024;
  padding: 1.5rem 3em 0 3em;
}

@media (max-width: 700px) {
  .exclamation_popup {
    width: 90%;
  }

  .exclamation_content {
    padding-left: 0;
    padding-right: 0;
    line-height: 1.5em;
  }

  span.exclamation_icon {
    min-width: 8%;
  }

  .exclamation_popup .close {
    top: 0;
    right: 10px;
  }
}

span.exclamation_icon {
    padding-left: 5px;
    padding-top: 7px;
    position: relative;
    margin-left: 4%;
}

.custom_warranty__row label span {
  font-size: 15px;
  font-style: italic;
}
.custom_battery__row label span {
  font-size: 15px;
  font-style: italic;
}

/* ===============================
   EXCLAMATION POPUP – FIXED
   =============================== */

/* FULLSCREEN OVERLAY */
.exclamation_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 300ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2147483646; /* ABOVE SHOPIFY HEADER */
  overflow-y: auto;
}

/* OPEN STATE */
.exclamation_overlay:target {
  visibility: visible;
  opacity: 1;
}

/* POPUP BOX */
.exclamation_popup {
  background: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 2147483647; /* ABOVE OVERLAY */
  margin: 25px auto;
  max-width: 720px;
  transition: transform 300ms ease, opacity 300ms ease;
  margin-top: 10%
}

/* FORCE HEADER UNDER OVERLAY */
theme-header,
.header--sticky,
.header-sticky--active {
  z-index: 10 !important;
}

/* CONTENT PADDING */
#exclamation_popup1 .page__content.rte,
#exclamation_popup2 .page__content.rte {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* TITLES */
.exclamation_popup h2 {
  text-align: center;
  font-size:30px;
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}

/* CLOSE BUTTON */
.exclamation_popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  transition: color 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  z-index: 2147483648;
}

.exclamation_popup .close:hover {
  color: #63388b;
}

/* TEXT STYLES */
.text__h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.text__sub {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0 2.5rem 1.5em;
  text-align: center;
}

.exclamation_content {
  border-top: 1px solid #00000024;
  padding: 1.5rem 3em 0;
}

.exclamation_content li {
  gap: 1.5rem;
  justify-content: center;
}

.text__percent {
  font-size: .875rem;
  line-height: 1.25rem;
  padding: 0 3em;
  margin: 1.5em 0 1em;
  text-align: center;
}

/* BUTTON */
.exclamation_btn {
  padding: 0.4rem;
  background: #000;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 700;
  border-radius: 0.375rem;
  margin: 0.25rem 2.5em;
}

/* CONTAINER FIX */
#exclamation_popup1 .container.container--narrow,
#exclamation_popup2 .container.container--narrow {
  background: #fff;
  padding-bottom: 10px;
}

/* HIDE UNUSED HEADINGS */
#exclamation_popup1 .page__content.rte h3,
#exclamation_popup2 .page__content.rte h3 {
  display: none;
}

/* MOBILE */
@media screen and (max-width: 700px) {
  .exclamation_popup {
    width: 90%;
  }

  .exclamation_content {
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.5em;
  }

  .exclamation_popup .close {
    top: 5px;
    right: 10px;
  }
}

/* TOOLTIP */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  width: 13px;
  height: 13px;
}

.saturate {
  filter: brightness(0) invert(1);
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 160px;
  background-color: #fff;
  color: #000;
  text-align: center;
  font-size: 12px;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 50;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip-bottom {
  top: 135%;
  left: 50%;
  margin-left: -60px;
}
.container {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--mobile-container-gutter);
}

.container--medium {
  max-width: 1150px;
}

.container--narrow {
  max-width: 800px;
}

.container--extra-narrow {
  max-width: 630px;
}

.container--giga-narrow {
  max-width: 520px;
}

.anchor {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}


/* Enable animated gradient border */
.related_product_block_check {
  position: relative;
  z-index: 1;

  /* Default angle — JS updates this smoothly */
  --mm-angle: 0deg;
}

.related_product_block_check::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: conic-gradient(from var(--mm-angle),
    #63388C,
    #A455CA,
    #FF66E3,
    #77CD28,
    #A4FF4E,
    #6EDB5A,
    #63388C
  );

  /* Mask so only border is visible */
  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;







