.coop-c-notification {
  display: flex;
  background-color: #EEF3FC;
  border-left: 4px solid #00A1CC;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  max-width: max-content;
}
@media only screen and (min-width: 979px) {
  .coop-c-notification {
    font-size: 20px;
    line-height: 30px;
  }
}

.coop-c-notification--red {
  background-color: #FCF1F1;
  border-left: 4px solid #E20F14;
}
.coop-c-notification--margin-t-15 {
  margin-top: 15px;
}
.coop-c-notification--column {
  flex-direction: column;
  gap: 0px;
}

.coop-c-notification--align-centre {
  align-items: center;
}
.coop-c-notification--active {
  align-items: center;
  background-color: #003057;
  color: #FFFFFF;
}
.coop-c-notification--fullwidth {
  max-width: 100%;
}
.coop-c-notification--fullwidth20 {
  position: relative;
  left: -10px;
  min-width: calc(100% - 16px);
}
@media only screen and (min-width: 979px) {
  .coop-c-notification--fullwidth20 {
    position: static;
    min-width: unset;
    max-width: 100%;
    left: 0px;
  }
}
.coop-c-notification--sidebar {
  gap: 8px;
  padding: 8px !important;
  font-size: 16px;
  line-height: 24px;
}
.coop-c-notification--desktop-hidden {
  display: flex;
}
@media only screen and (min-width: 949px) {
  .coop-c-notification--desktop-hidden {
    display: none;
  }
}
.coop-c-notification__heading {
  font-weight: 600;
  margin: 0 !important;
}
.coop-c-notification__heading--weight500 {
  font-weight: 500;
  margin: 0 !important;
}

.coop-c-notification__text {
  margin: 0 !important;
}

.coop-c-notification__description {
  margin: 0 !important;
  font-weight: 400;
}
.coop-c-notification--link {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 979px) {
  .coop-c-notification--link {
    font-size: 20px;
    line-height: 30px;
  }
}
.coop-c-notification--link:hover {
  text-decoration: none;
}
.coop-c-notification__logo {
  flex-shrink: 0;
}
.coop-c-notification__logo--sidebar {
  padding-top: 6px;
}

.coop-c-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #EEF3FC;
  border-top: 8px solid #00A1CC;
  border-radius: 8px;
  padding: 16px 16px;
  font-size: 18px;
  line-height: 24px;
  max-width: max-content;
}
@media only screen and (min-width: 979px) {
  .coop-c-block {
    padding: 24px 24px;
    font-size: 20px;
    line-height: 30px;
  }
}
.coop-c-block--no-top-overlap {
  margin-top: 15px;
}
@media only screen and (min-width: 979px) {
  .coop-c-block--no-top-overlap {
    margin-top: 35px;
  }
}
.coop-c-block--endpadding {
  margin-bottom: 24px;
}
.coop-c-block--bottom-page {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.coop-c-block--fullwidth {
  max-width: 100%;
}
.coop-c-block__logo {
  position: relative;
  margin-left: 87%;
  margin-top: -36px;
  width: 40px;
  height: 40px;
  padding-right: 16px;
  overflow: visible;
  transform: rotate(8deg);
  z-index: 1;
}
@media only screen and (min-width: 979px) {
  .coop-c-block__logo {
    width: 72px;
    height: 72px;
    margin-top: -60px;
  }
}
.coop-c-block__cancel-button {
  margin-left: auto;
  width: 20px;
  height: 20px;
  padding-right: 16px;
  overflow: visible;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (min-width: 979px) {
  .coop-c-block__cancel-button {
    width: 33px;
    height: 33px;
  }
}

.coop-l-popup {
  display: flex;
  position: relative;
  align-self: flex-end;
  width: 100%;
  opacity: 100%;
  transition: bottom 500ms;
  bottom: -100%;
}
@media only screen and (min-width: 979px) {
  .coop-l-popup {
    width: 80%;
  }
}
.coop-l-popup__outer {
  transition: bottom 0.5s;
  display: flex;
  align-items: end;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}

.coop-l-inner {
  border-left: 4px solid #80B7FF;
  padding-left: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.coop-c-accordion {
  border-bottom: 2px solid #D8D8D8;
}
.coop-c-accordion:first-child {
  border-top: 2px solid #D8D8D8;
}
.coop-c-accordion--button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 0px;
  cursor: pointer;
}
.coop-c-accordion--button:focus {
  outline-offset: 3px;
  outline: 2px solid #8d44d8;
}
.coop-c-accordion--panel {
  display: none;
}
.coop-c-accordion--icon {
  margin-left: auto;
  padding: 0px 8px;
  width: 24px;
  height: 24px;
}
.coop-c-accordion--icon__flip {
  transform: rotate(180deg);
}

.coop-l-divider {
  border-top: 2px solid #D8D8D8;
}

.coop-c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  color: #fff;
  background: #0F8482;
  font-family: Avenir-Next, Helvetica Neue, Helvetica, Arial, sans-serif !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  border: 0;
  border-radius: 0.5rem;
  transition: 0.15s ease-in-out;
  transition-property: background-color, color;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  max-width: max-content;
}
.coop-c-button:hover {
  background: #1c6b6a;
  color: #fff;
  border: 0;
  text-decoration: underline;
}
.coop-c-button:focus {
  outline-offset: 3px;
  outline: 2px solid #8d44d8;
}

.coop-c-button--inactive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  color: #595959;
  background: #C4C4C4;
  font-family: Avenir-Next, Helvetica Neue, Helvetica, Arial, sans-serif !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  border: 0;
  border-radius: 0.5rem;
  outline: none;
  text-decoration: none;
  max-width: max-content;
  cursor: default;
}
.coop-c-button--inactive--margin-right {
  margin-right: 16px;
}
.coop-c-button--inactive:focus {
  outline: none;
}
.coop-c-button--inactive:active {
  outline: none;
}

.coop-c-form {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  line-height: 1.5;
  gap: 16px;
  width: 100%;
}

.coop-c-form__input::placeholder {
    padding-left: 0px;
    overflow:visible;
    }

@media screen and (min-width: 979px) {
  .coop-c-form {
    font-size: 1.25rem;
  }
}
.coop-c-form--endpadding {
  padding-bottom: 24px;
}
.coop-c-form--nogap {
  gap: 0;
}
.coop-c-form__row {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}
.coop-c-form__row--nopadding {
  padding-bottom: 0;
}

.coop-c-form__columns {
  display: flex;
  white-space: nowrap;
  font-size: 0;
}
.coop-c-form__column {
  display: flex;
  flex-direction: column;
  width: auto;
}
.coop-c-form__column + .coop-c-form__column {
  margin-left: 1rem;
}


.coop-c-form__radio-button {
  overflow: visible;
  appearance: none;
  padding: 0;
  align-self: center;
  top: unset;
  left: unset;
  position: static !important;
  opacity: unset !important;
  width: 24px !important;
  height: 24px !important;
  border: 2px solid #282828 !important;
  border-radius: 50% !important;
  margin-left: 5px !important;
}
.coop-c-form__radio-button:checked {
  background-color: #282828 !important;
  box-shadow: inset 0 0 0 3.5px #fff;
}
.coop-c-form__radio-button:focus {
  outline-offset: 3px;
  outline: 2px solid #8d44d8;
}
.coop-c-form__checkbox {
  display: flex;
  overflow: visible;
  appearance: none;
  padding: 0;
  align-self: center;
  align-content: flex-start;
  top: unset;
  left: unset;
  position: static !important;
  opacity: unset !important;
  width: 25px !important;
  height: 25px !important;
  border: 2px solid #282828 !important;
  margin-left: 5px !important;
}
.coop-c-form__checkbox:checked::before {
  color: #282828;
  content: "";
  display: flex;
  margin-top: 6.5px;
  margin-left: 5px;
  height: 3px;
  width: 9px;
  text-align: center;
  border: solid;
  border-top-width: medium;
  border-top-color: currentcolor;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
  border-top-color: transparent;
}
.coop-c-form__checkbox:focus {
  outline-offset: 3px;
  outline: 2px solid #8d44d8;
}
.coop-c-form__checkbox-inactive {
  display: flex;
  cursor: default !important;
  overflow: visible;
  appearance: none;
  padding: 0;
  align-self: center;
  align-content: flex-start;
  top: unset;
  left: unset;
  position: static !important;
  opacity: unset !important;
  width: 25px !important;
  height: 25px !important;
  border: 2px solid #6e6e6e !important;
  margin-left: 5px !important;
}

.coop-c-form__input {
  font-family: "Avenir-Next", serif !important;
  border: 2px solid #000 !important;
  height: 3.25rem !important;
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 48rem) {
  .coop-c-form__input {
    height: 3.75rem !important;
    font-size: 20px;
    line-height: 30px;
  }
}
.coop-c-form__input:focus {
  outline-offset: 3px;
  outline: 2px solid #8d44d8;
}
.coop-c-form__input--width-2 {
  max-width: calc(4ch + 1.5rem);
}
.coop-c-form__input--width-4 {
  max-width: calc(8ch + 1.5rem);
}



.coop-c-form__label {
  font-size: 16px;
  line-height: 24px;	
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 0.75rem;
}

@media only screen and (min-width: 979px) {
  .coop-c-form__label {
    font-size: 20px;
    line-height: 30px;
  }
}

.coop-c-form__label--inactive {
  display: inline-block;
  cursor: default;
  position: relative;
  padding-left: 0.75rem;
}

.coop-c-form__label--column {
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.coop-c-form__membership {
  display: flex;
  align-items: center;
  height: 3.75rem;
  width: max-content;
  margin: 0.7rem 0;
  border: 2px solid #6e6e6e;
  border-radius: 6px;
  margin-left: 7px !important;
}
.coop-c-form__membership__prefix {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0 0.75rem;
  background: #F5F5F0;
  border-radius: 5px 0 0 5px;
  transition: border-color 0.3s ease-in-out;
  height: 100%;
  color: #282828;
}
.coop-c-form__membership__input {
  background: white;
  border: none !important;
  appearance: none;
  outline: 0;
  transition: border-color 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  padding: 8px 12px;
  max-width: 10.375rem;
  font-family: "Avenir-Next", serif;
  color: #282828;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 979px) {
  .coop-c-form__membership__input {
    max-width: 11.625rem;
    font-size: 1.25rem;
  }
}
.coop-c-form__membership:focus-within {
  background: #fff;
  border-radius: 5px;
  outline-offset: 5px;
  outline: 2px solid #8d44d8;
}

.coop-c-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 26px;
  min-width: 60px;
}
.coop-c-toggle__left-align {
  margin-left: auto;
  margin-right: 0;
}
.coop-c-toggle--input {
  opacity: 0;
  width: 0;
  height: 0;
}
.coop-c-toggle--input:focus + .coop-c-toggle--slider {
  outline-offset: 3px;
  outline: 2px solid #8d44d8;
}
.coop-c-toggle--input:checked + .coop-c-toggle--slider {
  background-color: #00A1CC;
}
.coop-c-toggle--input:checked + .coop-c-toggle--slider:before {
  transform: translateX(34px);
}
.coop-c-toggle--slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c7c7c7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 26px;
}
.coop-c-toggle--slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #ECECEC;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.coop-c-heading {
  font-family: "Avenir-Next", serif;
  font-weight: 700;
  color: #282828;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 8px;
}
@media screen and (min-width: 979px) {
  .coop-c-heading {
    font-size: 25px;
    line-height: 30px;
  }
}
.coop-c-heading__block {
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 979px) {
  .coop-c-heading__block {
    font-size: 32px;
    line-height: 40px;
  }
}
.coop-c-heading__sub {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 979px) {
  .coop-c-heading__sub {
    font-size: 20px;
    line-height: 30px;
  }
}

.coop-c-description {
  display: flex;
  flex-direction: column;
  font-family: "Avenir-Next", serif;
  font-weight: 400;
  color: #282828;
  font-size: 18px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 979px) {
  .coop-c-description {
    font-size: 20px;
    line-height: 30px;
  }
}
.coop-c-description--link {
  font-size: 16px;
  cursor: pointer;
}
@media only screen and (min-width: 979px) {
  .coop-c-description--link {
    font-size: 20px;
    line-height: 30px;
  }
}

.coop-c-bullets {
  margin-block-start: 0;
  padding-inline-start: 1.5rem;
}

.coop-c-text {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 8px;
}
@media only screen and (min-width: 979px) {
  .coop-c-text {
    font-size: 20px;
    line-height: 30px;
  }
}
.coop-c-text--default-margin {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
@media only screen and (min-width: 979px) {
  .coop-c-text--block-logo-margin {
    margin-left: 48px;
  }
}
.coop-c-text--link {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 979px) {
  .coop-c-text--link {
    font-size: 20px;
    line-height: 30px;
  }
}
.coop-c-text--link--lightgrey {
  color: #595959;
}
.coop-c-text--lightgrey {
  color: #595959;
}

.balVal > #headCol5 {
  border-radius: 8px 0 0 0;
  background: #2D2D2D;
  padding: 0;
  height: 16px;
}

.golVal > #headCol4 {
  padding: 0;
  height: 16px;
}

.silVal > #headCol3 {
  padding: 0;
  height: 16px;
}

.budVal > #headCol2 {
  border-radius: 0 8px 0 0;
  padding: 0;
  height: 16px;
}

.iagPanelPrem {
  color: #282828 !important;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
  text-align: left;
}

.iagPanelNonMem {
  color: #595959;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-decoration-line: line-through;
  text-align: left;
  padding-bottom: 8px;
  min-height: 24px;
}

.prodType {
  display: flex;
  color: #282828;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
  padding: 12px 16px 8px;
  height: min-content;
}

.prodType svg {
  display: flex;
  margin-left: auto;
}

.iagPanelPrem {
  font-size: 30px;
  line-height: 30px;
  padding-left: 16px;
  margin: 0;
}

.iagPanelNonMem {
  line-height: 24px;
  padding-left: 16px;
}

.btnCont {
  padding: 16px 32px 8px 8px;
}

.valCol {
  background: white;
}
.panelHeadDesk{
  border-left: solid 1px #BBBBBB;
}
.balVal{
  border: none !important;
  padding: 0px;
}
  .golVal {
  border: none !important;
  padding: 0px;  }
  .silVal {
  border: none !important;
  padding: 0px;  }
  .budVal {
  border: none !important;
  padding: 0px;  }

@media only screen and (max-width: 979px) {

  .panelHeadMob {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .balVal {
    background: #2D2D2D !important;
    height: 12px !important;
  }
  .golVal {
    height: 12px !important;
  }
  .silVal {
    height: 12px !important;
  }
  .budVal {
    height: 16px !important;
  }
  .panelHeadMob {
    margin: 0 !important;
  }
  .iagPanelPrem {
    padding-top: 0;
    margin: 0;
  }
  .panelMob {
    padding: 0 18px;
    margin: 0 !important;
    column-gap: 16px;
  }
  .panelMobSpan1 {
    max-width: 60%;
  }
  .panelMob p {
    margin: 0 !important;
    font-size: 18px;
    padding: 20px 0 8px 0;
  }
  .btnContBtm {
    padding: 16px 16px;
    margin: 0;
  }
  .panelMobRow {
    border-bottom: 1px solid #BBBBBB;
    padding: 8px 0;
    line-height: 30px;
  }
  .tableMob {
    border-bottom: 1px solid #BBBBBB;
  }
  .moreBenBtn {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #BBBBBB;
    line-height: 30px;
  }
  .moreBenBtn > .panelMobSpan1 {
    color: #00729A;
  }
  .moreBenBtn svg {
    padding-right: 8px;
    color: #BBBBBB;
    cursor: pointer;
    padding-left: 12px;
  }
  .iagqtecont {
    padding-top: 24px;
  }
  .blackMobCont {
    margin-bottom: 24px;
  }
  .goldMobCont {
    margin-bottom: 24px !important;
  }
  .silverMobCont {
    margin-bottom: 24px !important;
  }
  .budgetMobCont {
    margin-bottom: 24px !important;
  }
}
.coop-u-padding-b-16{padding-bottom: 16px}
.coop-u-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/*# sourceMappingURL=coop-allclear.css.map */
