@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100,200&display=swap');
html {
  height: 100%;
  width: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #666;
  margin: 0;
  height: inherit;
  background-color: #fafafa;
}
#root {
  height: inherit;
}
button {
  background-color: #257CAF;
  color: white;
  height: 36px;
  width: 100px;
  box-shadow: 0 1px 2px 0;
  padding: 4px 8px;
  font-size: 0.875em;
  border: none;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
}
.version {
  position: relative;
  width: 100%;
}
.version-number {
  position: absolute;
  bottom: 0;
}
.top-nav {
  padding: 20px 0px;
  background-color: #e5ebf1;
}
.bottom-nav {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.nav-logo {
  display: grid;
  place-self: center;
  width: 30%;
}
.selected-nav-icon {
  color: royalblue;
}
.more-nav-container {
  background: white;
  padding: 20px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  font-size: 20px;
}
.scanner-button {
  position: relative;
}
.scanner-button button {
  position: absolute;
  display: block;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  bottom: 0;
  margin: 20px;
  background-image: linear-gradient(336deg, #159b9b, #34f1f1);
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
/* Page Styles */
.page-container {
  overflow-y: hidden;
}
.option-card-container {
  background: white;
  padding: 0 20px;
  width: 100%;
}
.option-card-content {
  width: 100%;
  padding: 15px 0;
}
.bottom-card-border {
  border-bottom-style: solid;
  border-bottom-width: 0.25px;
  border-color: rgba(0, 0, 0, 0.2);
}
.drop-shadow-top {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.box-shadow-bottom {
  box-shadow: 2px 4px 10px -2px rgba(0, 0, 0, 0.4);
}
.drop-shadow-bottom {
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
}
.message-container {
  border-style: solid;
  border-width: 2px;
  border-color: #666;
  margin: 10px 20px;
  padding: 20px;
  width: fit-content;
}
.agent-message {
  width: unset;
  background-color: #2563b2;
  color: white;
  border-radius: 20px 20px 20px 0;
  align-self: flex-start;
}
.customer-message {
  background-color: white;
  border-radius: 20px 20px 0 20px;
  align-self: flex-end;
}
.system-message {
  background: lightgray;
  border-radius: 20px 20px 20px 20px;
  align-self: flex-end;
}
.chat-message-container {
  overflow: scroll;
}
.chat-back-button {
  position: absolute;
  top: 0;
  margin: 65px 20px;
}
.support-chat-input {
  width: 100%;
  place-items: center;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.support-chat-input input {
  flex: 1;
  padding: 20px 10px;
  font-size: 20px;
  margin: 20px;
  border-radius: 10px;
  border: none;
  background-color: #e5ebf1;
}
.support-chat-input button {
  position: absolute;
  margin: 0 50px;
  width: 20px;
  background-color: unset;
  box-shadow: unset;
  color: black;
}
.benefit-card-container {
  width: 100%;
  background-image: url("./assets/hsa-card-background.jpg");
  padding: 10px 20px;
  border-radius: 15px;
  color: white;
  min-height: 220px;
  place-content: space-between;
}
.benefit-card-open {
  background-color: #159b9b;
  border-radius: 20px;
  padding: 2.5px 10px;
  color: white;
}
.benefit-card-close {
  background-color: rgba(21, 155, 155, 0);
  border-radius: 20px;
  border: 2px solid white;
  padding: 2.5px 10px;
  color: white;
}
.benefit-card-superscript {
  position: relative;
  top: 10px;
  font-size: 20px;
  font-weight: 100;
  align-self: start;
}
.benefit-card-subscript {
  position: relative;
  bottom: 10px;
  font-size: 20px;
  color: lightgray;
  font-weight: 100;
}
.wallet-page-container {
  overflow-y: scroll;
  padding-bottom: 100px;
}
.wallet-card-image {
  color: darkblue;
  align-self: start;
  padding-right: 10px;
  width: 50px;
}
.wallet-card-container {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  justify-content: space-between;
}
.wallet-card-modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  place-content: center;
  place-items: center;
  background-color: rgba(114, 114, 114, 0.6);
  z-index: 100;
}
.wallet-modal-header {
  background-color: #fffae7;
  min-height: 120px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 999;
}
.wallet-modal-icon {
  width: 75px;
  justify-content: center;
  background: white;
  padding: 20px;
  border-radius: 50%;
}
.wallet-modal {
  background-color: white;
  border-radius: 20px;
  width: 80%;
  height: 80%;
}
.wallet-progress-bar {
  background-color: #383838;
  border-radius: 25px;
  margin: 10px 0;
  position: relative;
}
.wallet-filled-progress {
  height: 100%;
  border-radius: 25px;
  -webkit-mask: linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0);
}
.wallet-filled-progress::before {
  background-image: linear-gradient(to right, #ff4646, #fffb54, #4eff0d);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wallet-filled-progress p {
  position: relative;
  z-index: 1;
  color: black;
  margin: 0;
  text-align: end;
  padding-right: 5px;
  align-self: baseline;
}
.wallet-arrow {
  left: 15px;
  position: relative;
}
.semi-progress-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: 200px;
  border-radius: 150px 150px 0 0;
  background-color: green;
}
.money-summary {
  width: 100%;
  background: #eaeaea;
  color: black;
  border-radius: 15px;
  font-size: 18px;
  padding: 10px;
}
.transaction-summary {
  width: 100%;
  background: #eaeaea;
  color: black;
  border-radius: 15px;
  font-size: 18px;
  padding: 10px;
  width: unset;
  padding: 20px;
}
.detail-info-image {
  border-radius: 25px;
}
/*===========OFFERSt===========*/
.offers-value-card {
  border-radius: 25px;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  box-shadow: 2px 2px 5px 2px gainsboro;
  overflow: hidden;
  padding: 25px;
}
.offers-value-card-subcontainer {
  display: flex !important;
  align-items: center;
}
.offers-value-card {
  padding-bottom: 10px;
}
.offers-value-card-image {
  height: 20px;
  width: 20px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.offers-value-card-value {
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 10px;
}
.offers-value-card-text {
  font-size: 20px;
  padding-left: 10px;
  padding-bottom: 10px;
}
.offers-page-container {
  overflow-y: scroll;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.offers-card-container {
  border-radius: 25px;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  box-shadow: 2px 2px 5px 2px gainsboro;
  overflow: hidden;
}
.offers-card-container-sub {
  overflow: hidden !important;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.offers-card-image-container {
  background: #dbeaf4;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-top: 30px;
}
.offers-card-description-container {
  padding-left: 10px;
  border-radius: 25px;
  flex: 1;
  overflow: hidden !important;
}
.offers-card-item-details {
  padding-bottom: 25px;
}
.offers-card-description-container {
  width: 12em;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  padding-top: 10px;
  height: 10em !important;
}
.offers-card-description {
  padding-bottom: 25px;
  font-size: 15px;
  font-weight: lighter;
  color: black;
}
.offers-card-savings-activated-container {
  padding-bottom: 10px;
}
.offers-card-savings {
  color: #e35443;
  font-size: 15px;
  padding: 5px;
  padding-left: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-right: 15px !important;
}
.overflow-container {
  overflow: hidden;
  flex: 1;
}
.offers-select-tile-container {
  padding: 2px;
  padding-bottom: 3px;
  border-radius: 8px;
  align-items: center !important;
}
.offers-unpressed {
  margin: 1px !important;
  color: #506a76;
  border-radius: 8px;
  border: none;
  height: 40px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offers-pressed {
  border-radius: 8px;
  color: #f2fbfb;
  background: #2ebdbe;
  margin: 1px !important;
  border: none;
  height: 40px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offers-above-card {
  margin-top: 5px !important;
  display: flex !important;
}
.offers-above-card-offers {
  font-size: 20px;
  color: #243741;
}
.offers-above-card-filter {
  font-size: 15px;
  color: #2ebdbe;
  margin-left: 125px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.offers-above-card-filter-icon {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.offers-above-card-filter-word {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.offers-card-activate {
  font-size: 15px;
  flex: 1;
  color: #63cdce !important;
  border: 1px solid #63cdce !important;
  border-radius: 25px !important;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 18px;
  padding-right: 18px;
  margin: 10px !important;
}
.offers-card-activated {
  font-size: 15px;
  flex: 1;
  border-radius: 25px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 10px !important;
  background: #63cdce;
  color: white;
  font-weight: normal;
}
.offers-card-redeemed {
  font-size: 15px;
  flex: 1;
  border: 1px solid #647b86;
  border-radius: 25px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 4px;
  padding-right: 4px;
  margin: 10px !important;
  color: #647b86;
  font-weight: normal;
}
.offers-card-item-info-container {
  align-items: center;
  width: 12.5em;
}
.offers-card-info {
  height: 25px;
  width: 25px;
  padding-top: 25px;
  padding-left: 7.5em;
}
.offers-card-item {
  padding-top: 25px;
  padding-left: 10px;
  font-weight: bold;
  font-size: 25px;
  color: black;
}
.offers-modal-container {
  background-color: rgba(114, 114, 114, 0.6);
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  position: absolute;
  justify-content: center;
}
.offers-modal {
  position: absolute;
  top: 50px;
  width: 90%;
  height: 80%;
  background-color: #ffffff;
  border-radius: 25px;
  z-index: 100;
  flex-direction: column;
}
.offers-modal-image-container {
  background: #dbeaf4;
  padding-left: 10px;
  padding-right: 10px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  align-items: center;
  flex-direction: column;
}
.offers-modal-image {
  height: 150px;
  width: 150px;
}
.offers-modal-item-info-container {
  flex-direction: column;
}
.offers-modal-item {
  padding-top: 25px;
  padding-left: 20px;
  font-size: 25px;
  color: black;
}
.offers-modal-savings-activate-container {
  padding-right: 2em;
  padding-top: 35px;
  height: 79px;
}
.offers-modal-activate {
  font-size: 15px;
  flex: 1;
  color: #63cdce !important;
  border: 1px solid #63cdce !important;
  border-radius: 25px !important;
  padding-top: 2px;
  padding-left: 20px;
  padding-right: 72px;
  margin: 10px !important;
}
.offers-modal-savings {
  color: #e35443;
  font-size: 15px;
  padding: 5px;
  padding-left: 20px;
  display: flex !important;
  width: 100px;
}
.offers-line {
  background: gainsboro;
  padding: 1px;
  width: 90%;
  align-self: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.offers-offer-details-container {
  flex-direction: column;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.offers-offer-detail-item {
  font-size: 25px;
  color: black;
  padding-bottom: 10px;
}
.offers-modal-activated {
  font-size: 15px;
  flex: 1;
  border-radius: 25px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 45px;
  padding-right: 45px;
  margin: 10px !important;
  background: #63cdce;
  color: white;
  font-weight: normal;
}
.offers-modal-redeemed {
  font-size: 15px;
  flex: 1;
  border: 1px solid #647b86;
  border-radius: 25px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 10px !important;
  color: #647b86;
  font-weight: normal;
}
/*===========OFFERSb===========*/
.stores-page-container {
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 20px;
}
.stores-map {
  justify-content: center;
}
.map {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scanner-result {
  width: 100%;
  text-align: center;
  font-size: 50px;
}
.shop-in-store {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  justify-content: space-between;
  box-shadow: 2px 2px 5px 1px grey;
  margin-bottom: 20px;
}
.show-store-button {
  cursor: pointer;
  text-align: center;
  color: #2ebdbe;
  font-weight: lighter;
  border-radius: 3px;
}
.store-title {
  font-weight: bold;
}
.store-distance {
  font-weight: lighter;
}
.store-details {
  padding-left: 1%;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  height: 80px;
  width: 100%;
}
.store-title-info {
  display: flex;
  flex-direction: row;
}
.col-l {
  width: 10%;
  margin-right: 3%;
}
.col-c {
  width: 75%;
  padding-left: 5%;
  margin-left: 5%;
  margin-right: 5%;
  justify-content: left;
}
.col-r {
  width: 15%;
  justify-content: right;
  margin-right: 3%;
}
.store-col-left {
  width: 75%;
  text-align: left;
}
.store-col-right {
  width: 25%;
  text-align: right;
  padding-right: 5px;
}
.img-container {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 50%;
}
.store-img {
  float: left;
  max-width: 100%;
  max-height: 100%;
  object-fit: fill;
  border-radius: 50%;
}
.shop-online-link > a {
  text-decoration: none;
  font-weight: lighter;
  cursor: pointer;
  color: #2ebdbe;
}
.shop-online-link > a:hover {
  background-color: #414141;
  color: lightblue;
}
.shop-online-link > a:visited {
  color: royalblue;
}
.globe-link > a:hover {
  color: #2ebdbe;
}
.grocery-details {
  padding-left: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  height: 50px;
  width: 100%;
}
.slide-out-menu {
  width: 100%;
  position: relative;
  display: flex;
}
.slide-out-icon {
  justify-content: left;
  width: 10%;
  padding: 1em;
}
.slide-out-text {
  position: relative;
  width: 90%;
  top: 50%;
  transform: translateY(-50%);
}
.log-out {
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5%;
  height: 60px;
}
.slide-back-img {
  background-image: url("./assets/hsa-card-background.jpg");
  padding: 10px;
  border-radius: 15px;
  color: white;
  height: 30px;
  width: 50px;
  margin: 15px;
  display: flex;
}
.slide-col-l {
  width: 25%;
  position: relative;
  margin: auto;
}
.slide-col-c {
  width: 60%;
  position: relative;
}
.slide-col-r {
  width: 15%;
  justify-content: right;
  position: relative;
  margin: auto;
}
.side-img {
  justify-content: center;
}
.cam-style {
  border: 2px solid;
  border-radius: 50%;
  background-clip: content-box;
  padding: 0.5em;
}
.cam-background {
  position: absolute;
  bottom: 7%;
  z-index: 1;
  border-radius: 50%;
  padding: 1em;
}
.cam-pic {
  width: 8vw;
}
input.fitler-checkbox {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
}
.wallet-reward-opportunity {
  background-color: #f1faf4;
  border: 1.5px solid #72c48e;
  color: #5ba976;
  padding: 20px;
  border-radius: 15px;
  justify-content: space-between;
}
.reward-modal-header {
  background-color: #dbeaf4;
  min-height: 120px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 999;
}
.reward-modal {
  background-color: white;
  border-radius: 20px;
  width: 80%;
  height: 80%;
}
.reward-modal-details {
  overflow-y: scroll;
  padding-left: 5%;
  padding-right: 5%;
}
.reward-modal-details-top {
  text-align: center;
  margin-top: 20%;
}
.explore-rewards-button {
  border-radius: 15px;
  color: #2ebdbe;
  border: 1px solid #2ebdbe;
  width: 75%;
  padding: 5px;
  margin-top: 10px;
}
