/*New Changes Tiaan Laubscher (2023)*/
:root {
  /*Colors Start*/
  /*<-==========================================->*/
  --Color1-Pure-Black: #000000;
  --Color1-Pure-white: #ffffff;
  --Color-OffWhite: #f4f4f4;
  --pmm-primary-color: #00008;
  --pmm-secondary-color: #00004;
  --Gray: #f5f5f5;
  /*Colors End*/
  /*<-==========================================->*/
  /*Font size Start*/
  /*<-==========================================->*/
  --fs-normal: 1.6rem;
  --fs-700: 4rem;
  --fs-600: 3.4rem;
  --fs-550: 2.2rem;
  --fs-500: 2rem;
  --fs-400: 1.9rem;
  --fs-300: 1.8rem;
  --fs-200: 16px;
  --fs-150: 15px;
  --fs-100: 12px;
  --fs-50: 8px;
  /*Font Size End*/
  /*<-==========================================->*/
  /*Font weight Start*/
  /*<-==========================================->*/
  --fw-400: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;
  /*Font weight End*/
  /*<-==========================================->*/
}

/* <-==========================-> */
/* CSS REST */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  touch-action: manipulation;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

p,
label, span {
  font-size: 16px;
}

/* CSS REST End*/
/* <-==========================-> */

html {
  font-size: 62.5%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: var(--fw-400);
  background-color: var(--Gray);
  line-height: 1.6;
  color: var(--clr-primary-300);
  height: 100%;
  margin: 0;
  width: 100%;
}

html, body {
  background-color: var(--Gray) !important;
}

form {
  font-family: "avenir next", Arial, Helvetica, sans-serif;
  font-weight: var(--fw-400);
  background-color: var(--Gray);
  line-height: 1.6;
  color: var(--clr-primary-300);
  height: 100%;
  margin: 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: relative;
  min-height: 100vh;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h2 {
  font-size: var(--fs-700);
}

/*Header Start*/
/*<-==========================================->*/
.Logo {
  margin: 0;
  position: relative;
  background-color: var(--pmm-primary-color);
}

.Logo_MultiPage {
  padding: 1.5rem;
}

.Logo::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  background-color: var(--pmm-primary-color);
  width: 100%;
  height: 2rem;
}

.Logo--img {
  padding: 1rem;
  margin: 2rem auto 0 auto;
  margin-top: 0;
  background-color: transparent;
  max-width: 22rem;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  z-index: 1000;
  position: relative;
  border-radius: 4rem;
  border: 2px solid var(--Color1-Pure-white);
  outline: 2px solid var(--pmm-primary-color);
  box-shadow: rgba(245, 245, 245, 0.25) 0px 30px 60px -12px inset, rgba(245, 245, 245, 0.3) 0px 18px 36px -18px inset;
}

.Logo_ImgMultiPage {
  max-width: 14rem;
  margin: 0 auto;
  border-radius: 1.2rem;
}

.Logo--img-2 {
  margin: 2rem auto;
  margin-top: 0rem;
  max-width: 25.5rem;
  width: 100%;
  padding: 1rem;
  object-fit: contain;
}
/*Header End*/

.btn-ColorSet {
  background-color: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
  font-size: var(--fs-150);
  border: 1px solid var(--pmm-primary-color);
}

.btn-ColorSet-Secondary {
  background-color: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
  font-size: var(--fs-150);
  border: 2px solid var(--pmm-primary-color);
}

.btn-ColorSetCyan {
  background-color: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
  font-size: var(--fs-150);
  border: 1px solid var(--pmm-primary-color);
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
}

.btn-ColorSetLight {
  background-color: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
  font-size: var(--fs-150);
  border: 1px solid var(--Color1-Pure-white);
}

.btn-ColorSetCyan::before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255,255,255,0.5);
  width: 6rem;
  height: 100%;
  top: 0;
  filter: blur(30px);
  transform: translate(-10rem) skewX(-15deg);
}

.btn-Dimensions,
.btn-Dimensions--large, .btn-Dimensions--xxlarge,
.btn-Dimensions--medium {
  padding: 1rem 1.5rem 1rem 1.5rem;
  min-height: 5rem;
  max-height: 5rem;
  margin: 0rem auto;
  display: grid;
  grid-template-columns: minmax(6rem, 330px);
  -webkit-grid-template-columns: minmax(6rem, 330px);
  align-items: center;
  max-width: 100%;
  width: 33rem;
  border-radius: 5rem;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
}

p.btn-Dimensions {
  text-align: center;
  cursor: pointer;
}

.btn-Dimensions--medium {
  min-height: 4rem;
  max-width: 16rem;
  font-size: var(--fs-400);
}

.btn-Dimensions--large, .btn-Dimensions--xxlarge {
  max-width: 32.5rem;
  width: 100%;
  grid-template-columns: minmax(6rem, 325px);
  -webkit-grid-template-columns: minmax(6rem, 325px);
  padding: 0.2rem 1.5rem;
}

.btn-ColorSet:focus,
.btn-ColorSetCyan:focus,
.btn-ColorSetCyan:hover,
.btn-ColorSet:hover,
.btn-ColorSet-Secondary:focus,
.btn-ColorSet-Secondary:hover {
  color: var(--Color1-Pure-white);
  outline: 0;
  box-shadow: 0 0 0 0.25rem transparent;
}

.btn-ColorSet-Secondary:focus,
.btn-ColorSet-Secondary:hover {
  color: var(--pmm-primary-color);
}

.btn_useCurrent {
  background-color: #dcdcdc;
  color: var(--Color1-Pure-Black);
  font-weight: var(--fw-400);
  border: 0;
  font-size: var(--fs-150);
  font-weight: var(--fw-600);
  display: inline-block;
  height: 4.4rem;
  color: var(--Color1-Pure-Black);
  text-align: center;
  max-height: 100%;
  width: 100%;
  border-radius: 3rem;
  padding: 0.5rem;
}

.SetBackroundColor {
  background-color: var(--pmm-primary-color) !important;
  color: var(--Color1-Pure-white);
}

/*Body Start*/
/*<-==========================================->*/
.text-header {
  text-align: center;
  font-size: var(--fs-normal);
  font-weight: var(--fw-400);
  color: var(--Color1-Pure-Black);
  width: 90%;
  display: block;
  margin: .5rem auto;
  line-height: 1.2;
}

  .text-header span {
    font-size: var(--fs-200);
    font-weight: var(--fw-600);
  }

.text-standard {
  text-align: center;
  font-size: var(--fs-200);
  color: rgba(0, 0, 0, 0.5);
  width: 78%;
  display: block;
  margin: 0 auto;
  line-height: 1.4;
}

.Block--white {
  background-color: var(--Gray);
  margin-right: -.75rem;
  margin-left: -.75rem;
  padding-bottom: 0;
  overflow-x: hidden;
}

.Block--Element--childv2 {
  background-color: var(--Color1-Pure-white);
  margin: 1rem;
  min-height: 4.7rem;
  border-radius: 1rem;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  position: relative;
}

  .Block--Element--childv2 span:first-child {
    display: inline-block;
    position: absolute;
    left: 0rem;
    top: 0;
    color: var(--pmm-primary-color);
    background: var(--Color1-Pure-white);
    width: 5.7rem;
    height: 100%;
    min-height: 5rem;
    max-height: 5rem;
    border-radius: 1rem 0 1rem 0;
    display: grid;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-size: var(--fs-300);
    padding: .6rem 1.2rem;
  }

  .Block--Element--childv2 > span:first-child {
    left: -2.5rem;
  }

  .Block--Element--childv2 span.IconPadding1 {
    padding: 1rem 2rem 1rem 2rem;
  }

textarea {
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 1rem 0 1rem 0;
}

.Block--Element--childv2 span.IconPadding2 {
  padding: 0.9rem 1.5rem 1.3rem 1.5rem;
}

.Block--Element--childv2 span:nth-child(2) {
  width: 75%;
  margin: 0 auto;
  display: block;
  text-align: left;
  font-weight: var(--fw-600);
  font-size: var(--fs-100);
}

.Block--Element--child {
  background-color: var(--pmm-primary-color);
  margin: 1rem;
  min-height: 4.7rem;
  border-radius: 1rem;
  border: 1px solid var(--pmm-primary-color);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  color: var(--Color1-Pure-white);
}

  .Block--Element--child span:first-child {
    background-color: var(--pmm-primary-color);
    display: inline-block;
    left: 0;
    top: 0;
    color: var(--Color1-Pure-white);
    width: 6rem;
    height: 100%;
    min-height: 6rem;
    border-radius: .8rem;
    display: grid;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    font-size: var(--fs-550);
  }

  .Block--Element--child span:nth-child(2) {
    width: 75%;
    margin: 0 auto;
    display: block;
    text-align: left;
  }

.Block-Element > div:last-child {
  margin-bottom: 1rem;
}

.margin--y {
  margin-top: .7rem !important;
  margin-bottom: .7rem !important;
}

.margin__Big--y {
  margin-top: 2.5rem !important;
  margin-bottom: 2rem !important;
}

.floating-label {
  position: relative;
  margin-bottom: 2rem;
  width: 60%;
  margin: 1.5rem auto;
  background-color: var(--Color1-Pure-white);
  border-radius: 1rem;
  margin-bottom: 0;
}

.floating-input {
  font-size: var(--fs-150);
  padding: .4rem 1rem;
  display: block;
  width: 100%;
  height: 3rem;
  background-color: transparent;
  border: none;
}

  .floating-input:focus {
    outline: none;
  }

.btn-ColorSet {
  background-color: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
  font-size: var(--fs-150);
  border: 1px solid var(--pmm-primary-color);
}

.btn-ColorSet-Secondary {
  background-color: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
  font-size: var(--fs-150);
  border: 2px solid var(--pmm-primary-color);
}

.btn-ColorSetCyan {
  background-color: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
  font-size: var(--fs-150);
  border: 1px solid var(--pmm-primary-color);
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
}

.btn-ColorSetLight {
  background-color: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
  font-size: var(--fs-150);
  border: 1px solid var(--Color1-Pure-white);
}

.btn-ColorSetCyan::before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255,255,255,0.5);
  width: 6rem;
  height: 100%;
  top: 0;
  filter: blur(30px);
  transform: translate(-10rem) skewX(-15deg);
}

.btn-Dimensions,
.btn-Dimensions--large, .btn-Dimensions--xxlarge,
.btn-Dimensions--medium {
  padding: 1rem 1.5rem 1rem 1.5rem;
  min-height: 5rem;
  max-height: 5rem;
  margin: 0rem auto;
  display: grid;
  grid-template-columns: minmax(6rem, 330px);
  -webkit-grid-template-columns: minmax(6rem, 330px);
  align-items: center;
  max-width: 100%;
  width: 33rem;
  border-radius: 5rem;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
}

p.btn-Dimensions {
  text-align: center;
  cursor: pointer;
}

.btn-Dimensions--medium {
  min-height: 4rem;
  max-width: 16rem;
  font-size: var(--fs-400);
}

.btn-Dimensions--large, .btn-Dimensions--xxlarge {
  max-width: 32.5rem;
  width: 100%;
  grid-template-columns: minmax(6rem, 325px);
  -webkit-grid-template-columns: minmax(6rem, 325px);
  padding: 0.2rem 1.5rem;
}

.btn-ColorSet:focus,
.btn-ColorSetCyan:focus,
.btn-ColorSetCyan:hover,
.btn-ColorSet:hover,
.btn-ColorSet-Secondary:focus,
.btn-ColorSet-Secondary:hover {
  color: var(--Color1-Pure-white);
  outline: 0;
  box-shadow: 0 0 0 0.25rem transparent;
}

.btn-ColorSet-Secondary:focus,
.btn-ColorSet-Secondary:hover {
  color: var(--pmm-primary-color);
}

.Btn__Share {
  padding: 0;
  position: relative;
  top: 0;
  min-height: 4rem;
  margin: 2rem auto 2rem auto;
  display: flex;
  grid-template-columns: minmax(6rem, 100px);
  -webkit-grid-template-columns: minmax(6rem, 100px);
  align-items: center;
  max-width: 100%;
  width: 10rem;
  border-radius: 1.2rem 0 1.2rem 0;
  font-weight: var(--fw-400);
  background: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
  border: 2px solid var(--Color1-Pure-white);
  opacity: 1;
  cursor: pointer;
  transition: all .15s ease-in-out;
}

  .Btn__Share .Btn__Share--Icon {
    width: 3.75rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.75rem;
    padding: .7rem;
  }

    .Btn__Share .Btn__Share--Icon img {
      display: inline-block;
      width: 100%;
      height: 100%;
      -webkit-filter: grayscale(100%) brightness(135%) contrast(120%);
      filter: grayscale(100%) brightness(135%) contrast(120%);
    }

  .Btn__Share .Btn__Share--text {
    margin: 0;
    background: transparent;
    border: 1px solid transparent;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    width: 80%;
    font-size: var(--fs-150);
  }

  .Btn__Share:active,
  .Btn__Share:focus {
    box-shadow: 0;
    min-height: 4rem;
  }

  .Btn__Share:hover {
    opacity: 1;
  }

.btn_useCurrent {
  background-color: #dcdcdc;
  color: var(--Color1-Pure-Black);
  font-weight: var(--fw-400);
  border: 0;
  font-size: var(--fs-150);
  font-weight: var(--fw-600);
  display: inline-block;
  height: 4.4rem;
  color: var(--Color1-Pure-Black);
  text-align: center;
  max-height: 100%;
  width: 100%;
  border-radius: 3rem;
  padding: 0.5rem;
}

.Wrap__Additional-Info--contact {
  background-color: var(--Color1-Pure-Black);
  color: var(--Color1-Pure-white);
  font-size: var(--fs-150);
  padding: .5rem;
  text-align: center;
  display: inline-block;
  width: 100%;
  line-height: 1.1;
  font-size: var(--fs-150);
  display: inline-block;
  height: 3rem;
}

.setSize {
  font-size: var(--fs-500);
}

.align__Wrap .setSize {
  width: fit-content;
  margin: 1rem;
}

.setSize:first-child {
  display: list-item;
}

.MainWrap__Additional-user {
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.Wrap__Additional-Info--user {
  margin: 2rem .5rem;
  font-size: var(--fs-200);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.Wrap__Additional-Info--userInitials {
  display: -webkit-flex;
  -webkit-align-items: center;
  background: var(--Color1-Pure-white);
  -webkit-justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pmm-primary-color);
  border: 1px solid var(--pmm-primary-color);
  border-radius: 50%;
  font-size: var(--fs-500);
  font-weight: 400;
  padding: .5rem;
  width: 5rem;
  height: 5rem;
  margin-right: 1.5rem;
}

.heading-Info,
.heading__normal {
  color: var(--Color1-Pure-Black);
  background: var(--Gray);
  font-size: var(--fs-500);
  font-weight: var(--fw-600);
  text-align: center;
  padding: .8rem 0;
  border-radius: 1rem;
  max-width: 38rem;
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
}

.heading__normal {
  color: var(--Color1-Pure-Black);
  background-color: transparent
}

img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.outOf_Stock {
  text-transform: uppercase;
  font-size: var(--fs-50);
  display: inline-block;
  font-weight: var(--fw-900);
  color: #ff0000;
}

.Terms__ofUSe {
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 36rem;
  font-size: 13px;
}

  .Terms__ofUSe a {
    color: var(--pmm-primary-color);
    text-decoration: none;
    font-weight: var(--fw-400);
  }

.SearchBar--wrap,
.Optional--wrap,
.Content--wrap {
  display: flex;
  justify-content: space-between;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  margin: 0rem auto .5rem auto;
  padding: .5rem;
  width: 100%;
  padding-bottom: 0;
  position: relative;
  transition: all .3s ease;
}

.SearchBar--wrap_GreenEdge {
  outline: 2px solid var(--pmm-primary-color);
}

.Content--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}

.checkout_wrap .Optional--wrap {
  width: 100%;
}

.Content--wrap span {
  font-size: var(--fs-150);
  font-weight: var(--fw-400);
  text-align: center;
  display: inline-block;
  width: 100%;
  margin: .2rem auto;
}

.SearchBar--InputBox,
.Optional--InputBox {
  background-color: var(--Color1-Pure-white);
  border: 0;
  font-size: var(--fs-150);
  display: inline-block;
  height: 3rem;
  color: var(--Color1-Pure-Black);
  text-align: center;
  max-height: 100%;
  width: 100%;
  border-radius: 3rem 1.5rem 1.5rem 3rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 2.2rem 5rem;
}

  .SearchBar--InputBox:focus,
  .Optional--InputBox:focus {
    outline: 0;
  }

.Optional--InputBox {
  border-radius: .5rem;
  padding: 0 1rem;
  border: 1px solid var(--Color1-Pure-Black);
}

.Optional--label {
  font-size: var(--fs-100);
  font-weight: var(--fw-600);
}

.txtGreen {
  color: var(--pmm-primary-color);
}

.SearchBar--wrap_GreenEdge:focus {
  outline: 2px solid var(--pmm-primary-color);
}

.erase__P {
  padding: 0 !important;
}

.wrap__SelectDate {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: space-evenly;
  padding: 1rem;
  width: 90%;
  margin: 1rem auto;
  pointer-events: auto;
  max-width: 350px;
}

.wrap__SelectDate--content {
  display: grid;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  text-align: center;
  font-weight: var(--fw-400);
  color: var(--Color1-Pure-Black);
  border: 1px solid transparent;
  padding: .5rem;
  border-radius: .8rem;
  line-height: 1.2;
  position: relative;
  width: 100%;
  min-width: 5.1rem;
  pointer-events: auto;
}

  .wrap__SelectDate--content span {
    font-size: var(--fs-150);
    pointer-events: auto;
  }

.SelectDate_Selected {
  color: var(--Color1-Pure-Black);
  border: 1px solid transparent;
  font-weight: var(--fw-400);
  display: grid;
  place-items: center;
  padding: .6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100%;
  min-width: 6rem;
  height: 7rem;
  border-radius: 1.5rem !important;
}

  .SelectDate_Selected label {
    pointer-events: auto;
    cursor: pointer;
  }

.wrap__SelectDate--content input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  z-index: 500;
}

  .wrap__SelectDate--content input[type="radio"]:checked ~ .SelectDate_Selected {
    color: var(--Color1-Pure-white);
    background-color: var(--pmm-primary-color);
    font-weight: var(--fw-600);
  }

.isHidden {
  display: none !important;
}

.checkout_wrap {
  border-radius: 1rem;
  border: 1px solid var(--Color1-Pure-Black);
  min-height: 20rem;
}

  .checkout_wrap .text_left > * {
    text-align: left;
  }

  .checkout_wrap .text_right > * {
    text-align: right;
  }

  .checkout_wrap .font_weightBold {
    font-weight: var(--fw-600);
  }

.arrow__img {
  display: inline-block;
  width: 2rem;
  height: 2rem;
}

.category__wrap {
  flex-direction: row-reverse;
  min-height: 3.5rem;
  border-radius: 1rem;
  margin: 1rem 0;
}

.Block--Element .category__wrap .category__wrap--img {
  min-height: 3.5rem;
  border-radius: .8rem;
  width: 4.5rem;
  height: 4rem;
  text-align: center;
  display: inline-block;
}

.txt__ColorChange {
  color: var(--pmm-primary-color) !important;
  text-decoration: none;
}

.txt__ColorChange-underline {
  color: var(--pmm-primary-color);
  text-decoration: underline;
  text-underline-offset: 1rem;
}

.additionalInfo__wrap strong {
  font-size: var(--fs-150);
  text-align: center;
  display: inline-block;
  width: 100%;
  margin: 0.2rem auto;
}

.additionalInfo__wrap span:not(.txt__ColorChange) {
  font-size: var(--fs-100);
}

.payment__Wrap--select,
.payment__Wrap--select_Img,
.payment__Wrap--select_Img-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  width: 14rem;
  margin: 0.5rem auto;
}

.payment__Wrap--select_Img,
.payment__Wrap--select_Img-2 {
  justify-content: flex-start;
  width: 6rem;
}

  .payment__Wrap--select_Img img {
    width: 6rem;
    display: inline-block;
    height: 2rem;
  }

  .payment__Wrap--select_Img-2 img {
    width: 4rem;
    display: inline-block;
    height: 4rem;
  }

::-moz-selection {
  /* Code for Firefox */
  color: var(--Color1-Pure-white);
  background: var(--pmm-primary-color);
}

::selection {
  color: var(--Color1-Pure-white);
  background: var(--pmm-primary-color);
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 32.25%;
  position: relative;
  height: 0;
}

  .map-responsive #map {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }

input[type="date"] {
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: inherit;
  padding-inline-start: unset;
  cursor: default;
  padding: 0.5rem 1.8rem;
  -webkit-appearance: none;
  padding-left: 10px;
  outline: none;
  max-width: 600px;
  margin-bottom: 15px;
  font-size: 11pt;
  border: none;
  color: #000;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #000;
}

.Content--wrap .bolder__Font {
  font-weight: var(--fw-600);
  width: auto;
}

.border_line {
  border-bottom: 2px solid var(--pmm-primary-color);
  border-radius: 0;
  width: fit-content;
}

/* Chrome, Safari, Edge, Opera */
.product__card--value::-webkit-outer-spin-button,
.product__card--value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.product__card--value[type=number] {
  -moz-appearance: textfield;
}

/*Error popup message*/

.ToastError {
  opacity: 1;
  width: 100%;
  margin: 0 auto 1rem auto;
  min-width: 32.5rem;
  background-color: #D90429;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: .8rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: ease-in-out all .4s;
}

.ToastError__Text {
  color: var(--Color-OffWhite);
  margin-left: 1rem;
  width: fit-content;
  padding: 0 .5rem;
  padding-left: 0;
  text-transform: uppercase;
  display: inline-block;
  word-break: break-word;
}

  .ToastError__Text p {
    font-size: var(--fs-100);
    color: #fff;
  }

.ToastError__Close {
  background-color: #EF233C;
  width: 5rem;
  align-self: stretch;
  justify-self: stretch;
  height: auto;
  display: inline-block;
  text-align: center;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}

  .ToastError__Close button {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 0;
    font-size: var(--fs-600);
    color: var(--Color-OffWhite);
  }

.overlayError {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transition: ease-in-out all .4s;
}

/*Error popup message*/

.margin__Auto--x {
  margin: 0 auto;
}

.col-lg-4.margin__Auto--x {
  margin: 1rem auto;
}

.activeClick {
  background: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
}

.inactiveClick {
  background: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
}

.activeClick:hover,
.activeClick:focus {
  background: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
}

.inactiveClick:hover,
.inactiveClick:focus {
  background: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
}

.modal {
  z-index: 99999;
}

.fade {
  background-color: rgba(0,0,0,0.6);
}

.modal-dialog {
  z-index: 99999;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.modal-content {
  border-radius: 2rem;
  border: 0;
  outline: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  height: 45vh;
  max-width: 34rem;
}

.User__Address {
  display: inline-block;
  margin: .5rem auto;
  width: 100%;
  text-align: center;
}

.text--center {
  text-align: center;
}

.SetRelative {
  position: relative !important;
}

.SetStatic {
  position: static !important;
}

.align__Wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.Btn_Grouped {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0rem;
  transition: all .25s ease-in;
}

  .Btn_Grouped button {
    background-color: transparent;
    padding: .5rem 0;
    color: #000;
    width: 13.5rem;
    min-height: 17rem;
    margin: 1rem auto;
    text-transform: uppercase;
    display: grid;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 4px;
    position: relative;
    transition: all .2s ease-in;
  }

    .Btn_Grouped button span {
      z-index: 1000;
      position: relative;
      display: flex;
      width: 90%;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0.2rem 5%;
      max-width: 12.6rem;
      font-size: var(--fs-150);
    }

    .Btn_Grouped button:hover,
    .Btn_Grouped button:focus {
      color: var(--Color1-Pure-Black);
      box-shadow: rgba(var(--RGBAprimary),.24) 0px 3px 4px;
    }

.dc_Icon_ {
  width: 6rem;
  display: inline-block;
  margin: 0 auto;
  height: 6rem;
}

.heading_View {
  font-size: var(--fs-500);
  color: #A7A9AC;
  background-color: transparent;
  width: 100%;
}

.Heading_BackGround {
  background: var(--Gray);
  margin: 1rem 0;
  margin-right: -7px;
  margin-left: -7px;
}

  .Heading_BackGround div:last-child {
    margin: 2rem 0;
  }

.justify-start {
  justify-content: flex-start !important;
}

.Customers_Wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 5px;
  text-align: left;
}

  .Customers_Wrap ul {
    margin: 0;
    padding: 0;
  }

    .Customers_Wrap ul li {
      list-style: none;
    }

.margin_autoL {
  margin: 0;
  margin-left: auto;
}

.familyMember--Parent {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
}

.Dischem--Card {
  border: 1px solid transparent;
}

.btn_Dischem--Card::first-letter {
  text-transform: uppercase;
}

.Dischem--Card div, .btn_Dischem--Card {
  border: 0;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  grid-gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  min-height: 7rem;
  text-align: left;
  width: 100%;
  font-weight: var(--fw-600);
  background: var(--Color1-Pure-white);
  position: relative;
}

.familyMember--Name {
  font-size: var(--fs-150);
  background: transparent;
  border: 0;
  color: var(--Color1-Pure-Black);
}

.btn_Dischem--Card {
  padding: 0;
}

.Dischem--Card div:not(:last-of-type)::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  height: .1rem;
  width: 94%;
  background: var(--Color1-Pure-Black);
  margin: 0 3%;
  z-index: 1000;
}

.familyMember--Name {
  width: 135px;
  display: inline-block;
  overflow: hidden;
}

.familyMember--NameSingle {
  width: 170px
}

.ArrowIs_Check, .icon_Type {
  border-radius: 50%;
  background: var(--Gray);
  width: 4rem;
  height: 4rem;
  display: grid;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: all .25s ease-in;
  padding-top: 8px;
}

.Icon_Payment {
  border-radius: 0;
  height: 3rem;
}

.ArrowIs_CheckYes {
  background: #35c27e !important;
}

  .ArrowIs_CheckYes img {
    filter: brightness(0) invert(1) !important;
    -webkit-filter: brightness(0) invert(1) !important;
  }

.ArrowIs_Check .fa-angle-down,
.ArrowIs_Check .fa-angle-right,
.ArrowIs_Check .fa-arrow-right,
.ArrowIs_Check .fa-check,
.ArrowIs_Check .fa-remove {
  font-size: var(--fs-550);
  color: #b5b2b2;
  font-weight: normal;
}

.ArrowIs_Check .fa-angle-right {
  font-size: var(--fs-600);
}

.ArrowIs_Check .fa-angle-down {
  font-size: var(--fs-600);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.ArrowIs_CheckYes .fa-check, .ArrowIs_CheckYes .fa-remove, .ArrowIs_CheckYes .fa-angle-right {
  color: #fff;
}

.juStifiy_Center {
  justify-content: center !important;
  -webkit-align-items: center !important;
  -webkit-justify-content: center !important;
  text-align: center !important;
}

.Customers_Wrap div {
  display: list-item;
  margin-left: 1.3em;
  list-style-type: disc;
  text-align: left;
}

.USerDOB_Select {
  font-size: var(--fs-500);
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,.3);
  background: var(--pmm-primary-color);
  min-width: 12rem;
  color: var(--Color1-Pure-white);
  text-align: center;
  line-height: 1.5;
  appearance: none
}

  .USerDOB_Select:focus {
    outline: none;
  }

.text-header span::first-letter {
  text-transform: lowercase;
  color: red;
}

.text-header spa::first-letter {
  text-transform: uppercase;
  color: red;
}

.Back_Arrow, .ArrowBackGreen, .ClearSearch {
  display: grid;
  height: 3rem;
  width: 3rem;
  padding: .5rem;
  border: 0;
  align-content: center;
  justify-content: center;
  float: left;
  background: transparent;
}

.ArrowBackGreen, .ClearSearch {
  display: inline-block;
  margin: 0 auto;
  position: absolute;
  left: .5rem;
  top: 5px;
  pointer-events: auto;
  height: 4.5rem;
  width: 4.5rem;
  padding: 0;
}

.ClearSearch {
  left: unset;
  right: .58rem;
  top: 5px;
  padding: 1.5rem;
  background: var(--pmm-primary-color);
  border-radius: 0rem 1.5rem 1.5rem 0rem
}

.searchIcon {
  padding: 1rem;
}

.Back_Arrow .fa-arrow-left {
  font-size: var(--fs-550);
}

.ImgBtnDimensions {
  height: 6rem;
  width: 6rem;
  position: absolute;
  top: .5rem;
  left: 0rem;
}

  .ImgBtnDimensions input {
    display: inline-block;
    height: 100%;
    width: 100%;
  }

.ImgBtnDimensionsRight {
  height: 4.5rem;
  width: 4.5rem;
  left: unset;
  right: 0rem;
}

.Legends_images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto;
}

  .Legends_images > div {
    font-size: var(--fs-150);
  }

    .Legends_images > div img {
      display: inline-block;
      height: 3rem;
      width: 3rem;
    }

      .Legends_images > div img:nth-of-type(2) {
        display: inline-block;
        height: 3rem;
        width: 4rem;
      }

.Dischem--Card div.Card_Br--Prop {
  border-radius: 1.2rem 0 1.2rem 0;
}

.Dischem--Card .cardGreen {
  background: var(--pmm-primary-color);
  color: var(--Color1-Pure-white);
}

.poduct_Info {
  font-size: var(--fs-100);
  font-weight: var(--fw-400);
}

.poduct_Info--green {
  color: var(--pmm-primary-color);
  font-size: var(--fs-100);
  font-weight: var(--fw-600);
}

.LastChild_Space:last-of-type {
  margin-bottom: 3rem;
}

.address--icon {
  display: inline-block;
  height: 4rem;
  width: 4rem;
}

  .address--icon img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    display: block;
    margin: 0 auto;
    -webkit-object-fit: contain;
    object-fit: contain;
    -o-object-fit: contain;
  }

.mainAddressContainer > .searchBox {
  padding: 1rem;
  background-color: var(--pmm-primary-color);
}

.icon_Type {
  filter: brightness(0%);
  background: transparent;
}

.grouped_Cards {
  background-color: var(--pmm-primary-color);
  --add_pad: 0 2.5rem;
}

.grouped_Cards--header {
  padding: 1rem 0;
  align-items: center;
}

  .grouped_Cards--header label {
    color: var(--Color1-Pure-white);
    padding: 0rem .8rem;
    font-size: var(--fs-100);
    display: inline-block;
    width: 100%;
    text-align: left;
  }

.grouped_Cards-Wrap {
  background-color: var(--Color1-Pure-white);
  width: 100%;
  height: 100%;
  display: inline-block;
}

  .grouped_Cards-Wrap span {
    padding: 1.2rem .8rem;
    display: inline-block;
    width: 100%;
    max-width: 18rem;
    word-wrap: break-word;
    font-size: var(--fs-100);
    text-align: left;
  }

.Bolder-Font {
  font-weight: var(--fw-700);
}

.setVertical_LineL {
  border-left: 1px solid var(--Color1-Pure-white);
  color: #fff;
}

div.BodyGoals_Banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.BodyGoals_Banner img {
  height: 50vh;
}

.setVertical_LineR {
  border-right: 1px solid var(--Color1-Pure-white);
}

.addedpad {
  padding: var(--add_pad,1rem);
}

.HWfooter {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  position: static !important;
  bottom: 0;
  white-space: nowrap;
  line-height: inherit;
  margin-bottom: 2rem;
  position: static;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

  .HWfooter img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
    margin: 0 auto;
    height: 12vh;
    width: 100%;
    object-fit: cover;
    object-position: 100% 0;
  }

.App_Icons {
  padding: 1rem;
  margin: 0 auto;
  background-color: transparent;
  max-width: 18.3rem;
  width: 100%;
  height: auto;
  z-index: 1000;
  position: relative;
  cursor: pointer;
}

.Preferred_Textbox {
  border: 0;
  border-bottom: 2px solid rgb(0 0 0 / 30%);
  width: 94%;
  margin: 0 3%;
  font-size: var(--fs-500);
  background: transparent;
  text-align: center;
}

  .Preferred_Textbox:focus {
    outline: 0;
  }

.MedicationDue ul {
  display: inline-block;
  width: 46%;
  margin: .5rem 1.3%;
  padding: 0;
  font-weight: 100;
}

  .MedicationDue ul .familyMember--Name {
    font-weight: 100;
  }

.Dischem--Card div.MedicationDue {
  padding: 0rem;
  display: inline-block;
}

.Needhelp {
  font-weight: var(--fw-600);
  color: #b6b3b3;
  text-align: center;
}

  .Needhelp a {
    color: #b6b3b3;
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
  }

.Address_Block p .familyMember--Name, .Address_Block p, .Address_Block span {
  font-size: var(--fs-100);
}

.Address_Block {
  display: inline-block;
  width: 100%;
  max-width: 18rem;
}

.ClickMap {
  color: var(--Color1-Pure-white);
  text-align: center;
  margin: 1rem auto;
}

.link_Tag {
  text-decoration: none;
  font-weight: 600;
}

  .link_Tag:hover,
  .link_Tag:focus {
    color: var(--pmm-primary-color);
  }

.SETborder1 {
  border-radius: 1.2rem 0 0 0 !important;
}

.SETborder2 {
  border-radius: 1.2rem 0 1.2rem 0 !important;
}

.whiteBG {
  background: #fff;
}

.IconDimentions, .IconDimentions2 {
  padding: 0.5rem 0.8rem;
  border-radius: 0;
  margin: 0 .5rem;
}

.IconDimentions2 {
  padding: 0.5rem;
}

.FontSize {
  font-size: var(--fs-150);
  width: 186px;
}

#mapCanvas {
  height: calc(100vh - 48.1rem);
}

.LineHeight {
  line-height: 1.4;
}

.margin_YAuto {
  margin-top: auto;
  margin-bottom: auto;
}

.SetUSerMax_Width {
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
}

.TxtthankYou {
  font-size: var(--fs-600);
  border-bottom: 2px solid var(--pmm-primary-color);
  color: var(--pmm-primary-color);
}

.thanks_Wrap p label,
.thanks_Wrap p span {
  font-weight: var(--fw-400);
}

.OrderStatus_Parent {
  max-width: 50rem;
  position: relative;
}

.OrderStatus--Name {
  font-size: var(--fs-200);
  font-weight: var(--fw-600);
}

.OrderStatus--Name_Sub {
  font-size: var(--fs-150);
  font-weight: var(--fw-400);
}

.OrderStatus_Parent .Dischem--Card .Card_Br--Prop p {
  width: 100%;
}

blockquote {
  border-width: 2px;
}

.btn_ViewOrder {
  padding: .5rem 1.5rem .5rem 1.5rem;
  min-height: 4rem;
  max-height: 4rem;
  margin: 0rem auto;
  display: grid;
  grid-template-columns: minmax(6rem, 100px);
  -webkit-grid-template-columns: minmax(6rem, 100px);
  align-items: center;
  max-width: 100%;
  width: 10rem;
  border-radius: 5rem;
  font-weight: var(--fw-600);
  font-size: var(--fs-300);
  letter-spacing: 1px;
  background: Var(--Color1-Pure-white);
  border: 1px solid var(--pmm-primary-color);
  color: var(--pmm-primary-color);
  position: absolute;
  top: 50%;
  transform: translate(0%,-50%);
  right: -5px;
}

div.grid_gap {
  grid-gap: .2rem;
}

span.FontNormal {
  font-weight: 400;
}

.SetBackgroundGreen {
  background-color: var(--pmm-primary-color) !important;
}

.Txtas_Easy_as {
  margin: 1rem 0;
  display: inline-block;
  width: 100%;
  text-align: left;
  font-size: var(--fs-normal);
}

.text_ScriptNextMonth {
  background-color: var(--Color1-Pure-white);
  color: var(--pmm-primary-color);
  font-size: var(--fs-150);
  border: 2px solid var(--pmm-primary-color);
  position: absolute;
  left: 50%;
  top: 0rem;
  transform: translate(-50%, -50%);
  overflow: hidden;
  text-transform: capitalize;
  padding: 1rem 1.5rem 1rem 1.5rem;
  min-height: 5rem;
  max-height: 5rem;
  margin: 0rem auto;
  align-items: center;
  max-width: 100%;
  width: 35rem;
  border-radius: 5rem;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
  text-align: center;
}

.SetBorderRadius {
  border-radius: 1.2rem 0 1.2rem 0 !important;
}

.Erro_SubscrriptOverlay, .DeliveryMessageOverlay {
  background: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
}

.Erro_Subscrript, .DeliveryMessage .brand__main {
  padding: 1rem;
  border-radius: 1.2rem;
  border-bottom: 2px solid #fff;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 35rem;
  height: 20rem;
  background: #fff;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 2000000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.DeliveryMessage .brand__main {
  top: 56%;
}

.DeliveryMessage .brand__main {
  width: 35rem;
  height: auto;
}

.Erro_Subscrript h3 {
  color: var(--pmm-primary-color);
  font-size: var(--fs-300);
  font-weight: var(--fw-600);
  width: 90%;
  max-width: 100%;
  margin: 0 4.5%;
}

.Icon_Element1 img, .Icon_Element2 img,
.Icon_Element3 img {
  width: 2.5rem;
  height: 3.5rem;
}

.Icon_Element2 img {
  width: 2.2rem;
}

.highlightSpanText {
  color: var(--pmm-primary-color);
}

.lastChilDSpacing:last-child {
  margin-bottom: 4rem;
}

button.Back_ArrowPMM {
  margin-top: 23px;
  margin-right: 0;
  margin-left: 5px;
}

button.Back_ArrowInitials {
  margin-top: 15px;
  margin-right: 0;
  margin-left: 5px;
}

.Action_Wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}

  .Action_Wrap .familyMember--Name {
    font-size: var(--fs-100);
    width: 90px;
  }

  .Action_Wrap .ArrowIs_Check {
    width: 3rem;
    height: 3rem;
    padding: 0.8rem 0.5rem;
  }

  .Action_Wrap .XIs_Check {
    padding: 0.6rem;
  }

ul.calendar__list {
  display: flex;
  align-items: center;
  max-width: 90rem;
  justify-content: center;
  margin: 2rem auto;
}

.calendar__list .flex__child {
  margin-right: 2rem;
}

.calendar__list .day__select {
  border-radius: 1.5rem !important;
}

.ErroBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0rem auto;
  padding: 1.5rem;
  background: #fff;
  height: calc(100vh - 12.8rem);
}

  .ErroBox .ClickHere {
    background-color: var(--primary);
    font-size: 1.5em;
    font-weight: 700;
    padding: 8px 5px 8px 5px;
    border-radius: 25px;
    border: none;
    width: 100%;
    max-width: 30.6rem;
    min-width: 26.6rem;
    text-align: center;
    position: relative !important;
    z-index: 100;
    margin: 2rem auto 2rem 2rem;
  }

    .ErroBox .ClickHere a {
      color: #fff;
    }

  .ErroBox p {
    color: #000;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 400;
    max-width: 46rem;
    width: 100%;
    margin: 2rem auto 4rem 2rem;
    text-align: left;
  }

  .ErroBox .Oops {
    color: #DC3E3E;
    font-size: 6rem;
    font-weight: 700;
    padding-left: 1rem;
  }

  .ErroBox .Cancel {
    max-width: fit-content;
    font-size: 5rem;
  }

  .ErroBox .row p label:first-child {
    font-weight: bold;
  }

  .ErroBox .row p span,
  .ErroBox p span,
  .ErroBox .row p label {
    font-size: 2.5rem;
    font-weight: 400;
  }

  .ErroBox .row p {
    margin: 1rem auto 0 2rem;
  }

  .ErroBox .ClickHere {
    margin: 2rem auto;
    max-width: 26.6rem;
  }

.PaymentSelected {
  font-size: var(--fs-500);
  font-weight: 600;
  padding: 0.8rem;
  margin: 0 auto;
  background: transparent !important;
  color: #000 !important;
}
/*Body End*/
/*<-===========================================->*/
.map-responsive {
  padding-bottom: 118.25%;
}

.DischemHeader {
  background: transparent;
  border-radius: 2rem;
}

  .DischemHeader span,
  .DischemHeader label {
    color: #969696;
    font-size: var(--fs-550);
    font-weight: var(--fw-600);
    text-align: center;
    padding: .8rem 0;
    border-radius: 1rem;
    max-width: 38rem;
    margin: 0 auto 0 3rem;
    display: block;
    width: 100%;
    text-align: left;
  }

.Text_Light {
  color: VAr(--Color1-Pure-white);
  font-weight: var(--fw-600);
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

Loaded
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

JavaScript Turned Off
.no-js #loader-wrapper {
  display: none;
}

#dsiLoad {
  -webkit-animation: logoGlow 2.5s linear 2;
  animation: logoGlow 1.5s linear 2;
}

@-webkit-keyframes logoGlow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes logoGlow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.backgroundGradient {
  background-color: var(--pmm-primary-color);
}

.greyOut {
  height: 45px !important;
  background-color: #f3f3f3 !important;
  color: #adadad !important;
}

.backgroundPrimary {
  background-color: var(--pmm-primary-color);
}

.backgroundSecondary {
  background-color: var(--pmm-primary-color);
}

.landingWrap {
  height: 100vh;
  background: #F0F0F0;
  text-align: center;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-image: linear-gradient( to bottom, var(--pmm-primary-color), var(--pmm-primary-color) );
  z-index: 1000;
  -webkit-transform: translateX(0); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(0); /* IE 9 */
  transform: translateX(0); /* Firefox 16+, IE 10+, Opera */
}

.delivery__select {
  background: #009E41;
  text-align: center;
  vertical-align: middle;
}

.brand__main {
  color: #009E41;
}

.initials__wrap {
  border: 1px solid #009E41;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  color: #009E41;
}

.DOBAuth {
  width: 14.3rem;
}

.IntroImage {
  border-radius: 4rem;
  border: 2px solid var(--Color1-Pure-white);
  outline: 2px solid var(--pmm-primary-color);
  box-shadow: rgb(245 245 245 / 25%) 0px 30px 60px -12px inset, rgb(245 245 245 / 30%) 0px 18px 36px -18px inset;
}

.customerTotalLabel {
  text-align: center;
}

.cartHidden {
  border-radius: 1.2rem
}

.btn-Plus, .btn-Minus {
  border-radius: 50%;
  height: 3.5rem !important;
  width: 3.5rem !important;
}

.Quantity {
  border: 0 !important;
}
/*Footer Start*/
/*<-==========================================->*/
.Content__bottom {
  background-color: var(--Gray);
  padding: 7rem 1.5rem 7rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  align-items: center;
  margin-top: auto;
  width: 100%;
  height: 110px;
}

.setFixed--Wrap {
  max-width: 100%;
  width: 100%;
  height: 90px;
  display: grid;
  align-items: center;
  justify-content: center;
  background: var(--Gray);
  pointer-events: none;
  padding: 0 1rem 1rem 1rem;
}

.setFixed--WrapOpt2 {
  height: 25rem;
}

  .setFixed--WrapOpt2 .wrap__SelectDate {
    margin: 0 auto;
    padding: 0 1rem;
  }

#PreferCollection input[type="submit"] {
  margin-bottom: 1rem;
}

.setFixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10000;
}

  .setFixed .btn-Dimensions, .setFixed .btn-Dimensions--large, .setFixed .btn-Dimensions--xxlarge, .setFixed .btn-Dimensions--medium {
    pointer-events: auto;
  }

.order-overView {
  height: auto;
}

/*Footer End*/
/*<-==========================================->*/
/*New Changes Tiaan Laubscher (2023)*/
select.DOBAuth {
  color: #000 !important;
}

.mainHeaderContainer {
  position: relative;
  display: flex;
  align-items: center;
}

.contactBar.fabIcon {
  position: absolute;
  right: 10px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .contactBar.fabIcon > div {
    display: flex;
  }

    .contactBar.fabIcon > div > div {
      display: flex;
      flex-direction: row-reverse;
      padding: 3px 6px;
    }

      .contactBar.fabIcon > div > div > input {
        padding: 0;
      }

      .contactBar.fabIcon > div > div > span.glyphicon {
        font-size: 15px;
        margin-right: 10px;
      }

.backgroundGradient {
  height: var(--header-height);
}

a, a:visited, a:focus {
  text-decoration: none;
  color: unset;
}

p {
  margin: 0;
}

.home__logo {
  margin-top: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.profile__hero {
  background-color: #f4f4f4;
  padding: 10px 50px;
}

  .profile__hero p {
    margin: 0;
  }

.profile__primer {
  text-align: center;
  padding: 15px 15px;
  color: #606366;
}

  .profile__primer h3 {
    margin-top: 0;
    margin-bottom: 0;
  }

.profile__repeats {
  padding: 20px 15px;
}

.profile__orders ul {
  margin: 15px 0;
}

.profile__btn {
  border: 1px solid #333;
  min-width: 50px;
  padding: 5px 10px;
  color: #333;
  border-radius: 5px;
  float: right;
}

.profile__btn--required {
  border: 1px solid #ea6565;
  color: #ea6565;
}

.profile__btn--confirm {
  padding: 5px 30px !important;
  background: #00ac4e;
  color: #fff;
  border: 0;
}

.profile__btn--confirmPos {
  padding: 5px 30px !important;
  background: #d04c4c;
  color: #fff;
}

.profile__btn--add {
  float: none;
}

.profile__profile img {
  margin: 5px;
}

.user__name {
  font-size: 19px;
}

.flex__parent {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
}

.flex__parentPaymentOption {
  display: flex;
  flex-flow: column;
  align-content: center;
}

.flex__child {
  flex: 1 0 auto;
  align-self: center;
}

.initials__wrap--mini {
  width: 2em;
  height: 2em;
  font-size: 2em;
}

.initials__wrap p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.meds__btn {
}

.landingHeading, .landingDirect {
  margin: 5px 0;
}

.landingHeading {
  color: rgb(180,180,180);
}

.landingWrap article {
  margin: 40px 0 0 0;
}

.director {
  margin: 10px 0;
  color: rgb(180,180,180);
}

.btn--gray {
  color: #fff;
  background: rgb(180,180,180);
  padding: 5px 10px;
  border-radius: 5px;
}

.positioner {
  position: relative;
}

.landingWrap img {
  width: 160px;
  max-width: 100%;
}

.copyrightLogo {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  padding: 0px;
}

  .copyrightLogo img {
    display: block;
    margin: 0 auto;
    width: 100px;
    max-width: 100%;
    margin-bottom: 10px;
  }

.contactBar {
  background-color: #222;
  padding: 5px;
  text-align: center;
  color: #eee;
  font-size: 12px;
}

  .contactBar p {
  }

  .contactBar b {
    color: #fff;
  }

.copyrightLogo--end {
  background: #eeeeee;
  height: 150px;
}

.healthLogo--end {
  background: #d0d1d1;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 10px;
}

input[type='number'] {
  width: 30px;
  color: black;
  border-radius: 5px;
  text-align: center;
}

.select__dosage {
  font-size: 11px;
}

.select__button {
  text-align: center;
}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.menuItems {
  transition: 0.5s ease all;
  opacity: 1.0;
}

  .menuItems:hover {
    transition: 0.5s ease all;
    opacity: 0.9;
  }

.toggle {
  transition: 0.5s ease all;
}

.sendButton {
  max-width: 25px;
  padding: 5px;
  border-radius: 5px;
  position: relative;
  top: -2px;
  left: 0px;
  transition: 0.5s ease all;
}

  .sendButton:hover {
    left: 5px;
    transition: 0.5s ease all;
  }

.breadcrumbs {
  font-size: 13px;
  text-transform: capitalize;
  color: #444;
  font-family: Arial;
  transition: 0.5s ease all;
}

  .breadcrumbs:hover {
    color: #7f7f7f;
    transition: 0.5s ease all;
  }

.morepads {
  padding: 20px 40px 5px 40px !important;
}

.banks {
  width: 90%;
  padding: 15px 25px 15px 25px;
  border: 1px solid #eee;
  margin: 8px 15px 8px 15px;
  max-width: 300px;
}

.bigButtonStyle {
  padding: 5px 20px 5px 20px;
  font-weight: bold;
  transition: 0.5s ease all;
  font-size: 18px;
  opacity: 1.0;
  border-radius: 5px;
}

  .bigButtonStyle:hover {
    opacity: 0.8;
    transition: 0.5s ease all;
    color: #fff;
    text-decoration: none;
  }

.centerText {
  text-align: center;
}

.alerts {
  max-width: 150px;
}

.paymentTable {
  color: #7f7f7f;
}

  .paymentTable tr td {
    padding: 5px;
  }

  .paymentTable tr th {
    padding: 5px;
  }

.myth {
  text-transform: capitalize;
  font-weight: bold;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%); /* IE 9 */
  transform: translateX(-100%); /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%); /* IE 9 */
  transform: translateX(100%); /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%); /* IE 9 */
  transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

.no-js h1 {
  color: #222222;
}

#content {
  margin: 0 auto;
  padding-bottom: 50px;
  width: 80%;
  max-width: 978px;
}

#dsiLoad {
  -webkit-animation: logoGlow 2.5s linear 2;
  animation: logoGlow 1.5s linear 2;
}

.Layout_GridFull {
  display: grid;
  grid-gap: 2rem 0;
}

.Update_Details li, .Update_Details li input {
  display: inline-block;
  width: 100%;
}

  .Update_Details li input {
    margin: .5rem auto;
    background-color: var(--Color1-Pure-white);
    border: 0;
    font-size: var(--fs-150);
    display: inline-block;
    height: 3rem;
    color: var(--Color1-Pure-Black);
    text-align: center;
    max-height: 100%;
    width: 100%;
    border-radius: 3rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 2.2rem 5rem;
  }

.Layout_GridFull .MainWrap__Additional-user {
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 1rem;
}

  .Layout_GridFull .MainWrap__Additional-user:last-of-type {
    border-bottom: 0;
  }

.Layout_GridFull .pull-right img {
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: all .25s ease-in;
  padding-top: 2px;
}

.Layout_GridFull .pull-right .brand__main {
  font-size: var(--fs-500);
  padding: 0.8rem;
  max-width: 70rem;
  margin: 0 auto;
}

.Update_Details li input:focus-within {
  outline: none;
  box-shadow: rgba(60, 64, 67, 0.1) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px;
}

@-webkit-keyframes logoGlow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes logoGlow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.flexParent {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  align-items: center;
}

.flexJustifyCenter {
  -webkit-justify-content: center;
  justify-content: center;
}

.flexJustifySpaceBetween {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flexJustifySpaceAround {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.flexJustifyStart {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flexJustifyEnd {
  justify-content: flex-end;
}

.flexDirectionColumn {
  -webkit-flex-direction: column;
  flex-direction: column;
}

/*.flexlAlign {
    align-items: left;
}

.hundies {
    width: 100%;
}

.maxHundies {
    max-width: 100%;
}

.vAlign {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}*/
.lAlign {
  text-align: left;
}

/*.inactive {
    color: rgb(217, 217, 217);
    border-color: rgb(217, 217, 217);
    pointer-events: none;
}

div.filtering {
    border: 1px solid #999;
    margin-bottom: 5px;
    padding: 10px;
    background-color: #EEE;
}

.dobFormSection > .dobFormSectionLabel {
    font-weight: bold;
}

.dobFormSection > .dobFormSectionDobInput {
    margin-top: 10px;
}

.dobFormSection > .dobFormSectionDobButton {
    color: white;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
}

.datepicker.dropdown-menu {
    padding: 0px;
}

    .datepicker.dropdown-menu .table-condensed > thead > tr:first-child > th {
        background-color: #00963A;
        color: white;
        border-radius: 0px;
    }

    .datepicker.dropdown-menu .table-condensed > tbody > tr:nth-child(2) > td.active {
        background-color: #00963A;
        border-radius: 50%;
    }

    .datepicker.dropdown-menu .table-condensed > tbody > tr:nth-child(2) > td {
        padding: 7px;
    }*/

/*Media Queries Start*/
/*<-==========================================->*/
@media (min-width: 600px) {
  .heading-Info, .heading__normal {
    font-size: var(--fs-400);
  }

  .additional__Card--info {
    font-size: var(--fs-100);
  }

  .btn-Dimensions--large {
    max-width: 100%;
    width: 45rem;
    min-width: 4rem;
    grid-template-columns: minmax(6rem, 450px);
    -webkit-grid-template-columns: minmax(6rem, 450px);
  }

  .Content__bottom {
    padding: 5px 15px 10px 15px;
  }

  .checkout_wrap {
    width: 96%;
    margin: 0 1.6%;
  }

  .Btn_Grouped {
    margin-bottom: 10rem;
  }

  .Content__bottom {
    height: 22rem;
    margin-top: 0;
  }

  .Dischem--Card div, .btn_Dischem--Card {
    padding: 1rem 2.2rem;
  }

  .grouped_Cards .Dischem--Card .cardGreen {
    padding: 0 2rem;
  }

  .Back_Arrow {
    margin-left: 1rem;
    margin-top: 5px;
  }

  button.Back_ArrowPMM {
    margin-top: 23px;
    margin-right: 0;
    margin-left: 5px;
  }

  .ArrowBackGreen, .ClearSearch {
    left: .5rem;
    top: 5px;
    height: 4.95rem;
    width: 4.95rem;
    padding: 0;
  }

  .ClearSearch {
    left: unset;
    right: .5rem;
    top: 5px;
    padding: 1.5rem;
  }

  .searchIcon {
    padding: 1rem;
  }

  .Block--Element--childv2 span:nth-child(2) {
    font-size: var(--fs-300);
  }

  .First_Let_Capital {
    text-transform: capitalize;
    font-size: var(--fs-400);
  }

  .HomePageHeight {
    min-height: calc(86vh - 36px);
  }

  .grouped_Cards-Wrap span {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .HomePageHeight {
    min-height: calc(86vh - 36px);
  }

  .map-responsive {
    padding-bottom: 30.25%;
  }

  .btn-Dimensions--large, .btn-Dimensions--xxlarge {
    max-width: 100%;
    width: 45rem;
    grid-template-columns: minmax(6rem, 450px);
    -webkit-grid-template-columns: minmax(6rem, 450px);
  }

  .Content__bottom {
    height: 22rem;
    margin-top: 0;
  }

  .setFixed--Wrap {
    height: 120px;
  }

  .setFixed--WrapOpt2 {
    height: 25rem;
  }

  .map-responsive {
    padding-bottom: 55.25%;
  }

  .order-overView {
    height: auto;
  }

  .familyMember--Parent {
    max-width: 90rem;
  }

  .Dischem--Card {
    min-height: 10rem;
  }

  .familyMember--Name {
    width: fit-content;
  }

  .DeliveryMessage .brand__main {
    width: 45rem;
    height: auto;
  }
}

@media screen and (min-width: 992px) {
  html {
    font-size: 60%;
  }

  .floating-label {
    width: 15%;
    margin-bottom: 2.5rem;
  }

  .Logo--img {
    margin: 1.5rem auto;
  }

  .Logo--img-2 {
    height: 9rem;
    max-width: 20rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
  }

  .text-header,
  .text-header span {
    font-size: var(--fs-500);
    width: 65%;
    margin: 1rem auto;
  }

  .col-lg-4.margin__Auto--x {
    margin: 1.8rem auto;
  }

  .Wrap__Additional-Info--contact {
    font-size: var(--fs-500);
  }

  .Yellow__Block {
    font-size: var(--fs-200);
    padding: 2rem 1.4rem;
    margin-top: 2rem;
    width: 95%;
  }

  .pleaseNote::before {
    font-size: 11px;
    font-weight: 600;
    top: 50%;
  }

  span.Wrap__Additional-Info--userInitials {
    font-size: var(--fs-300);
    padding: 0.5rem;
    width: 8rem;
    height: 8rem;
    margin-right: 1.2rem;
  }

  .Wrap__Additional-Info--user {
    font-size: var(--fs-600);
  }

  .heading-Info,
  .heading__normal {
    font-size: var(--fs-500);
    padding: 0.8rem;
    max-width: 70rem;
    margin: 0 auto;
  }

  .btn-Dimensions,
  .btn-Dimensions--large, .btn-Dimensions--xxlarge {
    font-size: var(--fs-150);
    grid-template-columns: minmax(6rem, 320px);
    -webkit-grid-template-columns: minmax(6rem, 320px);
    align-items: center;
    -webkit-align-items: center;
    width: 32rem;
  }

  .btn-Dimensions--large, .btn-Dimensions--xxlarge {
    max-width: 100%;
    width: 45rem;
    grid-template-columns: minmax(6rem, 450px);
    -webkit-grid-template-columns: minmax(6rem, 450px);
  }

  .SearchBar--wrap, .Optional--wrap {
    width: 100%;
  }

  .SearchBar--InputBox,
  .Optional--InputBox, .btn_useCurrent {
    font-size: var(--fs-550);
    height: 5rem;
  }

  .SearchBar--btn {
    height: 4rem;
    width: 4.5rem;
  }

  .DOBAuth {
    width: 20.3rem !important;
  }

  .ToastError {
    width: fit-content;
    max-width: 120rem;
  }

    .ToastError p {
      font-size: var(--fs-200);
    }

  .wrap__btn .btn-Dimensions {
    padding: 0.5rem 1.5rem 0.5rem 5.2rem
  }

  .grouped_Cards--header label {
    padding: 0rem 2rem;
  }

  .First_Let_Capital {
    text-transform: capitalize;
    font-size: var(--fs-550);
  }

  .HomePageHeight {
    min-height: calc(86vh - 37px);
  }

  .address--icon {
    height: 7rem;
    width: 10rem;
  }
}

@media (max-width: 600px) {
  body {
    min-height: auto;
    height: 86vh;
    margin-bottom: 0;
  }

  form {
    min-height: auto;
    height: 86vh;
    margin-bottom: 0;
  }

  .HomePageHeight {
    min-height: calc(86vh - 38px);
  }

  .Layout_Grid {
    display: grid;
  }

    .Layout_Grid .customerTotalLabel > h5 {
      border: 0;
    }

  .HWfooter img {
    height: auto;
  }

  .Btn_Grouped button span {
    font-size: var(--fs-100);
  }

  .Content__bottom {
    height: 22rem;
    margin-top: 0;
  }

  section.medicationToPackContainer .profile__orders .medicationContainer {
    flex-wrap: wrap;
  }

  .Space_MB--X {
    margin: 1.8rem 0;
  }

  .Back_Arrow {
    margin-left: 0;
    margin-right: 1rem;
    margin-top: 5px;
  }

  .Needhelp {
    font-size: var(--fs-100);
  }

  .removeWitesPace {
    display: none;
  }

  .ToastError {
    min-width: 26.5rem;
  }

  .WidthFit {
    width: fit-content;
  }

  .TxtthankYou {
    font-size: var(--fs-400);
    border-bottom: 2px solid var(--pmm-primary-color);
  }

  div.NoWrap {
    flex-wrap: nowrap;
  }

  .min_height {
    min-height: auto !important;
  }

  .text_ScriptNextMonth {
    width: 29rem;
    font-size: var(--fs-200);
    top: -0.7rem;
  }

  .ScriptNextMonthArrowIs_Check {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  section.medicationToPackContainer .profile__orders .medicationContainer {
    padding: 1.5rem;
    flex-wrap: nowrap;
  }

  .ErroBox .row p span, .ErroBox .row p label {
    font-size: 1.8rem;
  }

  .ErroBox p {
    margin-bottom: 3rem;
  }

  .MedicationDue ul {
    width: 100%;
    padding: 0;
  }

    .MedicationDue ul .familyMember--Name {
      width: 100%;
      font-weight: 100;
    }

    .MedicationDue ul .Dischem--Card div, .btn_Dischem--Card {
      padding: 1.5rem;
    }

  .heading-Info, .heading__normal {
    max-width: 34rem;
  }

  .calendar__list .flex__child {
    margin-right: 0.5rem;
  }

  .SelectDate_Selected {
    min-width: 4rem;
  }

    .SelectDate_Selected span {
      font-size: 14px;
    }

  .calendar__list .day__select {
    border-radius: 1rem !important;
  }

  .DOBAuth {
    width: 12.3rem;
  }

  .ErroBox p span {
    padding-bottom: 18rem;
  }

  .ErroBox {
    flex-direction: column-reverse;
    height: 100%;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 49%;
  }

  .HomePageHeight {
    min-height: unset;
  }

  .map-responsive {
    padding-bottom: 118.25%;
  }

  .btn-Dimensions--large {
    width: 28rem;
    max-width: unset;
    grid-template-columns: minmax(6rem, 280px);
    -webkit-grid-template-columns: minmax(6rem, 280px);
    padding: 0.2rem 1.5rem;
    font-size: var(--fs-100);
  }

  .btn-Dimensions--xxlarge {
    width: 32rem;
    max-width: unset;
    grid-template-columns: minmax(6rem, 320px);
    -webkit-grid-template-columns: minmax(6rem, 320px);
    padding: 0.2rem 1.5rem;
    font-size: var(--fs-100);
  }

  .btn-Dimensions--medium {
    max-width: unset;
  }

  .additional__Card--info {
    font-size: var(--fs-50);
  }

  .heading__normal {
    font-size: var(--fs-200);
  }

  .ToastError__Close {
    padding: 0.8rem;
  }

  .Heading_BackGround {
    margin-right: -4px;
    margin-left: -4px;
  }

  .heading__normal, .First_Let_Capital {
    font-size: var(--fs-200);
  }

  .btn_ViewOrder {
    top: 45%;
  }
}

@media (max-width: 285px) {
  html {
    font-size: 45%;
  }

  .Card_paddingX {
    padding: 1rem 0rem;
  }

  .familyMember--Name {
    font-size: var(--fs-100);
  }

  .Content__bottom {
    padding: 10rem 1.5rem 10rem 1.5rem;
  }

  section.medicationToPackContainer .profile__orders .medicationContainer {
    grid-gap: 0;
  }
}

/*Media Queries End*/
/*<-==========================================->*/
