
.modal-wrapper {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.7490196078);
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
  overflow: hidden;
}
.modal-wrapper.active .modal-content {
  opacity: 1;
}
.modal-wrapper .modal-content {
  z-index: 1;
  opacity: 0;
  transition: opacity;
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  background-color: #f0f1f2;
  color: #4e4e4e;
  overflow-y: auto;
  max-width: 715px;
  width: 95%;
  height: auto;
  font-size: 18px;
}
.modal-wrapper .modal-content .close-btn:not(a) {
  outline: none;
  border: none;
  border-radius: 50%;
  color: #685e5e;
  background-color: transparent;
  padding: 15px;
  cursor: pointer;
  position: absolute;
  right: 1%;
  top: 2%;
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
}
.modal-wrapper .modal-content .close-btn:not(a):active, .modal-wrapper .modal-content .close-btn:not(a):focus, .modal-wrapper .modal-content .close-btn:not(a):hover {
  opacity: 1;
  background: rgba(128, 128, 128, 0.5);
}
.modal-wrapper .modal-content .close-btn:not(a)::before, .modal-wrapper .modal-content .close-btn:not(a)::after {
  content: " ";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: currentColor;
}
.modal-wrapper .modal-content .close-btn:not(a)::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal-wrapper .modal-content .close-btn:not(a)::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-wrapper .modal-content .header-wrapper {
  background-color: red;
  padding: 0.8em;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.modal-wrapper .modal-content .header-wrapper .heading {
  font-size: 1.9em;
}
.modal-wrapper .modal-content .header-wrapper .sub-heading {
  font-size: 0.95em;
}
.modal-wrapper .modal-content .header-wrapper .sub-heading br {
  display: none;
}
.modal-wrapper .modal-content .inner-content {
  padding: 1em 0.7em 1em 0.7em;
}
.modal-wrapper .modal-content .inner-content .img-bottles {
  margin: 0 auto 1em;
  max-width: 550px;
}
.modal-wrapper .modal-content .inner-content .recommended-text {
  font-size: 0.8em;
  font-style: italic;
  color: #000000;
}
.modal-wrapper .modal-content .inner-content .btn {
  color: #fff;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  padding: 0.6em 1em;
  margin-top: 0.7em;
  box-shadow: 0 3px 6px #000;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}
.modal-wrapper .modal-content .inner-content .btn.btn__atc {
  font-size: 1.16em;
  transition: 0.3s ease-in-out;
  background: red;
}
.modal-wrapper .modal-content .inner-content .btn.btn__atc:active, .modal-wrapper .modal-content .inner-content .btn.btn__atc:focus, .modal-wrapper .modal-content .inner-content .btn.btn__atc:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.modal-wrapper .modal-content .inner-content .btn.btn__decline {
  background: #555;
  font-size: 0.9em;
}
@media only screen and (min-width: 768px) {
  .modal-wrapper .modal-content {
    font-size: 21px;
  }
  .modal-wrapper .modal-content .header-wrapper .heading {
    font-size: 2.4em;
  }
  .modal-wrapper .modal-content .header-wrapper .sub-heading {
    font-size: 0.95em;
  }
  .modal-wrapper .modal-content .header-wrapper .sub-heading br {
    display: block;
  }
  .modal-wrapper .modal-content .inner-content {
    padding: 1em 1.3em;
  }
  .modal-wrapper .modal-content .inner-content .recommended-text {
    font-size: 0.75em;
  }
  .modal-wrapper .modal-content .inner-content .btn.btn__atc {
    font-size: 1em;
  }
  .modal-wrapper .modal-content .inner-content .btn.btn__decline {
    font-size: 1em;
  }
}
.modal-wrapper.exit-intent .modal-content {
  background-color: #fff;
  background-image: url("/assets-2/images/bg-modal1.jpg");
  background-repeat: no-repeat;
  background-clip: padding-box;
  background-position: bottom right;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2117647059);
  border: 11px double #2783c5;
  border-radius: 17px;
  color: #4e4e4e;
  width: 95%;
  max-width: 700px;
  font-size: 20px;
  height: auto;
  padding: 1em 1em;
  text-align: center;
}
.modal-wrapper.exit-intent .modal-content .close-btn:not(a) {
  position: absolute;
  right: 2%;
  color: #484141;
}
.modal-wrapper.exit-intent .modal-content .exit-intent__wait {
  font-size: 2.5em;
  line-height: 1;
  font-weight: 600;
  color: red;
}
.modal-wrapper.exit-intent .modal-content .exit-intent__timer {
  font-weight: 600;
  font-size: 1em;
  line-height: 1;
  margin-bottom: 0.4em;
}
.modal-wrapper.exit-intent .modal-content .exit-intent__heading {
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  color: #2783c5;
  margin-bottom: 0.7em;
}
.modal-wrapper.exit-intent .modal-content .offer-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 15px;
  margin-bottom: 1em;
}
.modal-wrapper.exit-intent .modal-content .offer-box__img {
  max-width: 170px;
}
.modal-wrapper.exit-intent .modal-content .offer-box__txt {
  font-size: 1em;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}
.modal-wrapper.exit-intent .modal-content a.close-btn {
  border: none;
  background-color: rgba(251, 56, 56, 0.7);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 1em;
  color: #fff;
  box-shadow: 0 3px 6px #834e4e;
  display: block;
  text-decoration: none;
  line-height: 1.2;
  transition: 0.3s ease-in-out;
}
.modal-wrapper.exit-intent .modal-content a.close-btn:hover, .modal-wrapper.exit-intent .modal-content a.close-btn:active, .modal-wrapper.exit-intent .modal-content a.close-btn:focus {
  background-color: #8c0e0e;
}
@media only screen and (min-width: 768px) {
  .modal-wrapper.exit-intent .modal-content {
    font-size: 24px;
    padding: 1.4em 1.5em;
  }
  .modal-wrapper.exit-intent .modal-content .exit-intent__wait {
    font-size: 3.4em;
  }
  .modal-wrapper.exit-intent .modal-content .exit-intent__timer {
    font-size: 1.25em;
    margin-bottom: 0.7em;
  }
  .modal-wrapper.exit-intent .modal-content .exit-intent__heading {
    font-size: 1.42em;
  }
  .modal-wrapper.exit-intent .modal-content .offer-box {
    -ms-flex-direction: row;
        flex-direction: row;
    margin-bottom: 1.5em;
  }
  .modal-wrapper.exit-intent .modal-content .offer-box__img {
    -ms-flex: 0 0 240px;
        flex: 0 0 240px;
    max-width: 240px;
  }
  .modal-wrapper.exit-intent .modal-content .offer-box__txt {
    text-align: left;
  }
  .modal-wrapper.exit-intent .modal-content a.close-btn {
    font-size: 1em;
  }
}
.side_btm.active {
  left: 20px; /* Adjust as needed */
}
.ready_btn {
  display: none;
}
#slide-notification {
  display: block;
}
.body-overflow-visible {
  overflow: visible !important;
}