@charset "UTF-8";
@font-face {
  font-family: 'Helvetica', sans-serif;
  src: url("../Helvetica-Font/Helvetica.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Montserrat', sans-serif;
  src: url("../Montserrat/Montserrat.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Poppins', sans-serif;
  src: url("../Poppins/Poppins.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

:root {
  --mainColor: #C8102E;
  --navBackground: #fff;
  --font: "Helvetica"
}

*,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font), sans-serif;
  line-height: 1.3;
  color: #000000;
  background-color: #fff;
  height: 100%;
}

h1,
h2 {
  margin: 0;
  padding: 0;
}

h3,
h4,
h5,
h6 {
  text-transform: unset;
  margin: 0;
  padding: 0;
}

h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter {
  text-transform: uppercase;
}

h1::first-letter,
h2::first-letter {
  text-transform: uppercase;
}

ul {
  padding: 0;
  margin: 0;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #191919 !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.maroon {
  color: var(--mainColor);
}

.blue {
  color: #1F6FB5;
}

.black {
  color: #000000;
}

.maroon-btn {
  width: 100%;
  height: 46px;
  background-color: var(--mainColor);
  border: 1px solid #fff;
  border-radius: 6px;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #fff;
}

.maroon-btn:hover {
  color: #fff;
}

.sec-title {
  font-weight: bold;
  font-size: 30px;
  line-height: 29px;
  letter-spacing: 0.144375px;
  color: #333333;
}

.show-on-mbl {
  display: none;
}

.form-field {
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: left;
}

.form-field label {
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  height: 41px;
  font-size: 18px;
  background-color: #fff;
  border: 1px solid #191919;
  border-radius: 6px;
}

.form-check .form-check-input {
  float: left;
  margin-left: 0;
  width: 35px;
  height: 32px;
  margin-right: 11px;
}

.form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.form-switch .form-check-input {
  width: 38px;
  height: 22px;
  background-color: #64748B;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  border: 0;
  cursor: pointer;
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:active {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.splash-screen {
  height: 100%;
  margin-top: 204px;
}

.customer-loader {
  height: 100%;
}

.splash-screen.ntop-margin {
  margin-top: 0px;
}

.splash-screen .logo img,.customer-loader .logo img{
  width: 247px;
  height: 95px;
}

.splash-screen .preloader,.customer-loader .preloader{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.splash-screen .preloader .loader,.customer-loader .preloader .loader{
  width: 54px;
  height: 74px;
  /* background-image: url("../../images/refresh.svg"); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 69px 0 2px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

.splash-screen .maroon,.customer-loader .maroon{
  font-weight: 600;
  font-size: 16px;
  line-height: 29px;
}

.page-item.active .page-link {
  z-index: 3;
}


.global-pagination .page-item.active a {
  background: var(--mainColor) !important;
  color: #ffffff;
}

.global-pagination .page-item a {
  outline: none;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  padding: 10px 18px;
}

.page-link {
  position: relative;
  display: block;
  margin-left: -1px;
}

.global-pagination{
  margin: 0 auto;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@media screen and (max-width: 767.98px) {
  .splash-screen {
    margin-top: 218px;
  }
  .splash-screen .logo img {
    width: 160px;
    height: 62px;
  }
  .splash-screen .preloader .loader {
    width: 35px;
    height: 48px;
    margin: 45px 0 5px;
  }
  .splash-screen .maroon {
    font-family: "Helvetica", sans-serif;
  }
}

.navbar {
  padding: 7px 20px;
  background-color: var(--navBackground);
  -webkit-box-shadow: 0px 4px 4px rgba(204, 204, 204, 0.25);
          box-shadow: 0px 4px 4px rgba(204, 204, 204, 0.25);
}

.navbar .logo {
  padding: 0;
  margin-right: 60px;
}

.navbar .logo img {
  max-width: 180px;
  max-height: 95px;
}

.navbar .hamburger {
  width: 33px;
  height: 33px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background-color: #E2E8F0;
  border-radius: 50%;
  padding: 0;
  border: 0;
}

.navbar .hamburger span {
  display: block;
  position: absolute;
  height: 1.25px;
  width: 16.25px;
  background-color: #000000;
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  left: 0;
  right: 0;
  border-radius: 5px;
  margin: 0 auto;
}

.navbar .hamburger span:nth-child(1) {
  top: 11.2px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.navbar .hamburger span:nth-child(2) {
  top: 16px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.navbar .hamburger span:nth-child(3) {
  top: 21px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.navbar .hamburger:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .open span:nth-child(1) {
  -webkit-transform: rotate(43deg);
          transform: rotate(43deg);
  top: 10px;
  left: 5.5px;
}

.navbar .open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.navbar .open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 21.5px;
  left: 5px;
}

.navbar .login {
  padding: 0;
  margin-left: 65px;
  margin-right: 13px;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .login .title {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.144375px;
  color: #333333;
}

.navbar .login .icon-logout {
  width: 18px;
  height: 18px;
  background-image: url("../../images/logout.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .login:hover {
  color: var(--mainColor);
}

.navbar .login:hover .icon {
  -webkit-filter: invert(100%) sepia(100%) saturate(4246%) hue-rotate(339deg) brightness(75%) contrast(103%);
          filter: invert(100%) sepia(100%) saturate(4246%) hue-rotate(339deg) brightness(75%) contrast(103%);
}

.navbar .login:hover .title {
  color: var(--mainColor);
}

.navbar .login.active {
  color: var(--mainColor);
}

.navbar .login.active .title {
  color: var(--mainColor);
}

.navbar .login-icon {
  width: 33px;
  height: 33px;
  background-color: #E2E8F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.navbar .login-icon .icon {
  width: 18px;
  height: 20px;
}

.navbar .login-icon .user {
  background-image: url("../../images/user-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.navbar .show-on-mbl {
  display: none;
}

#mainNavbar ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#mainNavbar ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#mainNavbar ul li a {
  color: #333333;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#mainNavbar ul li a .icon-home {
  width: 22px;
  height: 20px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-extra-menu {
  width: 22px;
  height: 20px;
  background-image: url("../../images/extra-menu-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-info {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-live-help {
  width: 17px;
  height: 20px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-shake-hands {
  width: 24px;
  height: 18px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-land-mark {
  width: 17px;
  height: 24px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-chat-info {
  width: 17px;
  height: 20px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-dollar-bag {
  width: 17px;
  height: 19px;
  margin-right: 15px;
}

#mainNavbar ul li a .icon-user {
  width: 18px;
  height: 19px;
  background-image: url("../../images/user-grey.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 15px;
}

#mainNavbar ul li a .title {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.144375px;
}

#mainNavbar ul li a:hover {
  color: var(--mainColor);
}

#mainNavbar ul li a .icon {
  transition: all .10s ease-in-out;
}

#mainNavbar ul li a:hover .icon {
  fill: var(--mainColor);
  stroke: var(--mainColor);
  transition: all .10s ease-in-out;
}

#mainNavbar ul li .active {
  color: var(--mainColor);
}

#mainNavbar ul li .active .icon {
  fill: var(--mainColor);
  stroke: var(--mainColor);
}

#mainNavbar ul li:last-child {
  margin-right: 0;
}

.user-menu {
  margin-right: 13%;
}

.header-img {
  width: 100%;
  height: 507px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  background-size: cover;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 15px 44px 16px;
}

.header-img .maroon-btn {
  max-width: 426px;
  margin: 0 auto;
  display: block;
  text-transform: capitalize;
}

.get-reward {
  padding: 40px 12px 0;
}

.get-reward .sec-title {
  margin-bottom: 40px;
  text-transform: capitalize;
}

.get-reward .rewards-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.get-reward .rewards-items li {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.get-reward .rewards-items li .icon {
  height: 79px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-bottom: 27px;
}

.get-reward .rewards-items li .bag {
  width: 68px;
  background-image: url("../../images/bag.svg");
}

.get-reward .rewards-items li .gift {
  width: 98px;
  background-image: url("../../images/gift-box.svg");
}

.get-reward .rewards-items li .tag {
  width: 61px;
  background-image: url("../../images/badge-ribbon.svg");
}

.get-reward .rewards-items li p {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}

.join-store {
  padding: 45px 12px 220px;
}

.join-store .sec-title {
  text-transform: unset;
}

.join-store .maroon-btn {
  max-width: 426px;
  margin: 40px 0;
}

.join-store div {
  max-width: 960px;
  text-align: left;
  margin: 0 auto;
}

footer {
  background-color: #F9F9FA;
  padding: 12px 32px 20px 29px;
}

footer .blue {
  font-weight: normal;
  font-size: 20px;
  line-height: 27px;
  margin: 27px 0 30px;
  display: inline-block;
  text-transform: capitalize;
}

footer hr {
  background: #ADADAD;
  margin: 0;
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 24px;
}

footer ul li {
  margin-right: 54px;
}

footer ul li a {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}

footer ul li a:hover {
  color: #000000;
}

footer ul li:last-child {
  margin-right: 0;
}

footer p.text-capitalize {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  opacity: 0.5;
}


.theme-color-fixed{
  color:var(--mainColor) !important;
}

.login-page .login-form .form-field a{
  color: #1F6FB5;
}

.register-rewards-content a{
  color: #1F6FB5;
}

.btn-loader{
  margin-left:10px;
  color: #ffffff;
}

.btn-loader-theme{
  color:#C8102E;
}

.error-label{
  color:#C8102E !important;
}

@media screen and (max-width: 1200px) {
  .navbar .logo {
    margin-right: 50px;
  }
  #mainNavbar .login {
    margin-left: 25px;
  }
  #mainNavbar ul li a .icon {
    margin-right: 10px;
  }
}

@media screen and (max-width: 991.98px) {
  .navbar .logo {
    margin: 0 auto;
  }
  .navbar .logo img {
    margin-right: 40px;
  }
  .navbar .login {
    margin: 0;
    position: absolute;
    top: 25px;
    right: 20px;
  }
  #mainNavbar ul {
    height: 100vh;
    position: absolute;
    background-color: #fff;
    top: 70px;
    left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 45px 0 0 28px;
    -webkit-box-shadow: inset 0 7px 7px -4px rgba(204, 204, 204, 0.25);
            box-shadow: inset 0 7px 7px -4px rgba(204, 204, 204, 0.25);
  }
  #mainNavbar ul li {
    margin: 0;
    margin-bottom: 30px;
  }
  #mainNavbar ul li:last-child {
    margin-bottom: 0;
  }
  .get-reward .rewards-items li {
    width: 240px;
  }
}

@media screen and (max-width: 767.98px) {
  .hide-on-mbl,
  .login.hide-on-mbl,
  .login .hide-on-mbl {
    display: none !important;
  }
  .navbar .show-on-mbl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .show-on-mbl {
    display: block;
  }
  .navbar {
    padding: 8px 8px 9px 12px;
  }
  .navbar .login {
    margin: 0;
    position: absolute;
    top: 17px;
    right: 8px;
  }
  .navbar .with-icon {
    top: 20px;
    right: 12px;
  }
  .navbar .logo img {
    max-width: 180px;
    max-height: 95px;
    margin-right: 35px;
  }
  .navbar .login .title {
    font-size: 14px;
  }
  #mainNavbar ul {
    top: 86px;
  }
  #mainNavbar ul li,
  #mainNavbar ul li a {
    width: 100%;
  }
  #mainNavbar ul li a .icon {
    margin-right: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45px;
            flex: 0 0 45px;
  }
  #mainNavbar ul li a .title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: left;
  }
  .header-img {
    /* margin-top: 50px; height: 399px; */
    margin-top: 100px;
    height: 250px;
    padding: 0 15px 24px 16px;
  }
  .header-img.snows {
      height: 140px;
  }
  .header-img.ffh {
      height: 300px;
  }
  .maroon-btn {
    font-size: 16px !important;
  }
  section.text-center {
    text-align: left !important;
  }
  .sec-title {
    font-size: 20px !important;
    text-align: left !important;
  }
  .get-reward {
    padding: 30px 14px 0;
  }
  .get-reward .sec-title {
    margin-bottom: 30px;
  }
  .get-reward .rewards-items {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .get-reward .rewards-items li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    margin-bottom: 15px;
  }
  .get-reward .rewards-items li:last-child {
    margin-bottom: 0;
  }
  .get-reward .rewards-items li .icon {
    margin: 0;
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
  .get-reward .rewards-items li p {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    white-space: nowrap;
  }
  .join-store {
    padding: 27px 17px 44px 14px;
  }
  .join-store .maroon-btn {
    margin: 30px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .join-store p {
    font-size: 14px;
  }
  footer {
    padding: 7px 17px;
  }
  footer .blue {
    font-size: 16px;
    margin: 44px 0 30px;
  }
  footer ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 13px 0 24px;
  }
  footer ul li {
    margin-right: 0;
  }
  footer ul li a,
  footer p.text-capitalize {
    font-size: 14px;
  }
}

.main-container {
  padding: 40px 35px 40px 31px;
  margin-top: 70px;
}

.welcome-box {
  background-color: #F1FDF2;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 32, 76, 0.15);
          box-shadow: 0px 2px 8px rgba(0, 32, 76, 0.15);
  border-radius: 8px;
  padding: 30px 12px 32px;
  position: relative;
}

.welcome-box .close-btn {
  width: 15px;
  height: 15px;
  background-image: url("../../images/close-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 19px;
  top: 13px;
  padding: 0;
}

.welcome-box p {
  font-size: 18px;
  line-height: 29px;
  letter-spacing: 0.144375px;
  color: #333333;
}

.welcome-box p.fw-bold {
  margin: 20px 0;
}

.points-rewards {
  padding: 30px 12px 40px;
  background-color: #F6F6F6;
  border-radius: 8px;
  margin-top: 40px;
}

.points-rewards .maroon {
  color: var(--mainColor) !important;
}

.points-rewards p {
  font-weight: normal;
  font-size: 20px;
  line-height: 18px;
  color: #1F1F41;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.points-rewards .big-text {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.points-rewards .progress {
  margin: 40px auto;
  max-width: 775px;
  height: 15px;
  background-color: #F6F6F6;
  border: 0.5px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 14.5px;
}

.points-rewards .progress .progress-bar {
  border-radius: 14.5px;
  background-color: var(--mainColor);
}

.points-rewards .bar-code p {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  margin: 20px 0 40px;
}

.points-rewards .maroon-btn {
  max-width: 289px;
}

.earn-more-points {
  margin: 40px 0;
}

.earn-more-points p {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  margin: 30px 0;
}

.earn-more-points .maroon-btn {
  max-width: 289px;
}

.my-store p {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  margin: 30px 0;
}

.my-store a {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: #1F6FB5;
}

.hours {
  margin: 30px 0 70px;
}

.hours ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 230px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

.hours ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.hours ul li .day {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55px;
          flex: 0 0 55px;
  text-align: left;
}

.hours ul li p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #172C4C;
  white-space: nowrap;
  text-align: left;
}

.hours ul li:last-child {
  margin-bottom: 0;
}


.bar-code p{
  font-size: 20px !important;
}

.mobile-popup {
  border-radius: 6px;
  border: 1px solid grey;
  position: fixed !important;
  z-index: 10000;
  top: 0;
  width: 100%;
}
.mobile-popup P {
    font-size: 13px;
}
.mobile-popup .btn-close {
    padding: 0;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 12px;
    top: 12px;
}
.mobile-popup .icon-chrome {
    width: 27px;
    height: 27px;
    background-image: url("../../images/google-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.mobile-popup .icon-firefox {
  width: 27px;
  height: 27px;
  background-image: url("../../images/firefox-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.mobile-popup .icon-edge {
  width: 27px;
  height: 27px;
  background-image: url("../../images/edge-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.mobile-popup .icon-opera {
  width: 27px;
  height: 27px;
  background-image: url("../../images/opera-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.mobile-popup .icon-safari {
    width: 27px;
    height: 27px;
    background-image: url("../../images/safari-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.mobile-popup .logo {
    width: 90px;
    object-fit: contain;
}
.mobile-popup h6 {
    font-size: 13px;
    font-weight: bold;
}
.mobile-popup .icon-download-safari {
    width: 10px;
    height: 10px;
    background-image: url("../../images/icon-download.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.mobile-popup .icon-download-other-browsers {
  width: 10px;
  height: 10px;
  background-image: url("../../images/icon-download-other-browsers.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.modal-style-title{
  font-size:18px;
  font-weight: 500;
  color: #000000;
}

.modal-style{
  background: #FFFFFF;
  box-shadow: 0px 12px 12px rgba(208, 213, 225, 0.3);
  border-radius: 12px;
  max-width: 432px;
  margin-top: 25%;
}

.modal-style-body{
  padding: 31px 24px 37px 42px;
}

.auto-complete-div{
  position: relative;
}

.autocomplete-loader{
  color:#C8102E;
  position: absolute;
  right: 7px;
  top: 3px;
}


.twitter-typeahead{
  width:100%;
}
.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999
}

.tt-menu {    /* used to be tt-dropdown-menu in older versions */
  width: 100%;
  margin-top: 4px;
  padding: 4px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
      border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
      box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 3px 20px;
  line-height: 24px;
  cursor: pointer;
}

.tt-suggestion.tt-cursor,.tt-suggestion:hover {
  color: #fff;
  background-color: #c8102e;

}

.tt-suggestion p {
  margin: 0;
}


@media screen and (max-width: 1200px) {
  .welcome-box p {
    font-size: 17px;
  }
}

@media screen and (max-width: 991.98px) {
  .welcome-box .d-flex.justify-content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767.98px) {
  .main-container {
    padding: 18px 10px 40px 11px;
    margin-top: 50px;
  }
  .welcome-box {
    padding: 20px 18px;
  }
  .points-rewards .maroon,
  .welcome-box .sec-title {
    text-align: center !important;
  }
  .welcome-box .close-btn {
    right: 12px;
    top: 10px;
  }
  .welcome-box p.fw-bold {
    margin: 15px 0;
    text-align: left;
    font-size: 18px;
  }
  .welcome-box p {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
  }
  .welcome-box .d-flex.justify-content-center p.ms-1 {
    margin: 0 !important;
  }
  .points-rewards {
    margin-top: 30px;
    padding: 20px 4px 20px 6px;
  }
  .points-rewards p {
    font-size: 16px;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: center;
    padding: 0 10px;
    margin-top: 20px;
    position: relative;
  }
  .points-rewards p .ms-1.fw-bold {
    line-height: 25px;
  }
  .points-rewards p .big-text.ms-3 {
    font-size: 28px;
  }
  .points-rewards p.next-reward {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    white-space: nowrap;
  }
  .points-rewards p.next-reward .big-text.ms-4.me-3 {
    font-size: 16px;
    margin: 0 5px !important;
  }
  .points-rewards .progress {
    margin: 20px 10px;
    height: 8px;
  }
  .points-rewards .bar-code p.text-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    line-height: 18px;
    margin: 8px auto 20px;
  }
  .earn-more-points {
    margin: 30px 0;
  }
  .earn-more-points,
  .my-store,
  .hours {
    padding-left: 7px;
  }
  .earn-more-points p {
    font-size: 16px;
    margin: 25px 0 30px;
  }
  .my-store .d-flex.justify-content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .my-store .d-flex.justify-content-center p.ms-1 {
    margin: 0 !important;
  }
  .my-store p {
    font-size: 16px;
    margin: 20px 0;
  }
  .my-store a {
    font-size: 16px;
    margin-top: 30px;
    display: block;
  }
  .hours {
    margin: 25px 0 4px;
  }
  .hours ul li p {
    font-size: 16px;
  }
  .hours ul {
    margin: 0;
    margin-top: 20px;
  }
  .earn-more-points .maroon-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.about-rewards {
  padding: 40px 12px 149px;
  margin-top: 70px;
}

.about-rewards .sec-title {
  margin-bottom: 40px;
}

.about-rewards ul {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
}

.about-rewards ul li {
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 32px;
  padding-left: 24px;
  text-indent: -22px;
}

.about-rewards ul li::before {
  content: "• ";
  color: var(--mainColor);
  font-size: 35px;
  line-height: 15px;
  position: relative;
  top: 5px;
}

.about-rewards ul li:last-child {
  margin-bottom: 0;
}

.about-rewards .maroon-btn {
  max-width: 426px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.about-rewards .d-flex.flex-column a {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #1F6FB5;
  margin-bottom: 40px;
}

.about-rewards .note {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  max-width: 1100px;
  text-align: left;
  margin: 0 auto;
  padding-left: 10px;
}

@media screen and (max-width: 767.98px) {
  .about-rewards {
    padding: 30px 16px 35px;
    margin-top: 50px;
  }
  .about-rewards .sec-title {
    margin-bottom: 25px;
  }
  .about-rewards ul li {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
    padding-left: 15px;
    text-indent: -16px;
  }
  .about-rewards ul li::before {
    font-size: 24px;
    line-height: 10px;
    position: relative;
    top: 3px;
  }
  .about-rewards .maroon-btn {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .about-rewards .d-flex.flex-column a {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .about-rewards .note {
    padding-left: 0;
  }
}

.faq {
  padding: 40px 15px 17px;
  margin-top: 70px;
}

.faq .sec-title {
  margin-bottom: 40px;
}

.faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq .accordion .accordion-item {
  background-color: #fff;
  margin-bottom: 40px;
  border: 0;
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  color: #000000;
}

.faq .accordion .accordion-button {
  padding: 12.5px 15px 12.5px 18.6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 18px;
}

.faq .accordion .accordion-button::after {
  width: 19px;
  height: 19px;
}

.faq .accordion .accordion-button:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq .accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--mainColor);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq .accordion .accordion-button:not(.collapsed)::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.faq .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq .accordion .accordion-body {
  padding: 40px 20px 0;
  text-align: left;
}

.faq .accordion .accordion-body ul li {
  margin-bottom: 30px;
}

.faq .accordion .accordion-body ul li p {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.faq .accordion .accordion-body ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
  .faq {
    padding: 30px 15px 11px;
    margin-top: 50px;
  }
  .faq .sec-title {
    margin-bottom: 30px;
  }
  .faq .accordion .accordion-item {
    margin-bottom: 30px;
  }
  .faq .accordion .accordion-button {
    padding: 12.5px 15px 12.5px 12px;
    font-size: 16px;
    line-height: 20px;
  }
  .faq .accordion .accordion-body {
    padding: 30px 13px 0;
  }
  .faq .accordion .accordion-body ul li {
    margin-bottom: 20px;
  }
  .faq .accordion .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 15px;
  }
}

.login-page {
  padding: 40px 15px 173px;
  margin-top: 70px;
}

.login-page .sec-title {
  margin-bottom: 40px;
}

.login-page .login-form {
  max-width: 355px;
  margin: 0 auto;
}

.login-page .login-form .form-field {
  position: relative;
  padding: 0;
}

.login-page .login-form .icon, .register-form .icon {
  font-size: 20px;
  width: 22px;
  height: 15px;
  position: absolute;
  top: 36px;
  right: 13px;
  z-index: 1;
  cursor: pointer;
}
.register-form .icon {
  right: 26px;
}

.login-page .login-form .show-password {
  background-image: url("../../images/hide-password.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.login-page .login-form .change-icon {
  background-image: url("../../images/view-password.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.login-page .login-form .maroon-btn {
  margin-bottom: 40px;
}

.login-page .d-flex.flex-column a {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: var(--mainColor);
}

.login-page .d-flex.flex-column p {
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}

@media screen and (max-width: 767.98px) {
  .login-page {
    padding: 30px 15px 46px;
    margin-top: 50px;
  }
  .login-page .sec-title {
    margin-bottom: 21px;
  }
  .login-page .login-form .maroon-btn {
    margin-bottom: 30px;
  }
  .login-page .d-flex.flex-column {
    text-align: center;
  }
  .login-page .d-flex.flex-column a {
    font-size: 14px;
  }
  .login-page .d-flex.flex-column p {
    margin-top: 20px;
    margin-bottom: 7px;
    font-size: 14px;
  }
}

.join-rewards {
  padding: 40px 15px 55px;
  margin-top: 70px;
}

.join-rewards .sec-title {
  margin-bottom: 35px;
}

.join-rewards .description {
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 35px;
}

.join-rewards .maroon-btn {
  margin-top: 96px !important;
}

.my-form {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.my-profile .my-form{
  max-width: 670px;
}

.my-form .form-field {
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
  position: relative;
}

.my-form .d-flex.justify-content-center.form-check.form-field {
  max-width: 100%;
}

.my-form .maroon-btn {
  max-width: 426px;
  margin: 0 auto;
  margin-top: 0px !important;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #000000;
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: var(--mainColor);
}

.form-control.is-valid,
.was-validated .form-control:valid,
.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: none;
}

.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid,
.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #191919;
}

.logout-icon{
  color: var(--mainColor);
  font-size: 20px;
  margin-left: 4px;
}

@media screen and (max-width: 767.98px) {
  .join-rewards {
    padding: 30px 15px 87px;
    margin-top: 50px;
  }
  .join-rewards .sec-title {
    margin-bottom: 15px;
  }
  .join-rewards .description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .join-rewards .my-form .form-field {
    max-width: 356px;
    padding: 0;
    margin-bottom: 30px;
  }
  .join-rewards .my-form .form-field .form-check-input {
    margin-left: 0;
  }
  .join-rewards .my-form .maroon-btn {
    margin-top: 0px !important;
  }
  .join-rewards .my-form .d-flex.justify-content-center.form-check.form-field {
    max-width: 356px;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}

.register-rewards {
  padding: 40px 15px 55px;
  margin-top: 70px;
}

.register-rewards .sec-title {
  margin-bottom: 35px;
}

.register-rewards .description {
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 35px;
}

.register-rewards .register-options {
  margin: 0;
  padding: 0 15px 40px 15px;
}

.register-rewards .register-options .description {
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.register-rewards .register-options nav {
  background-color: #F6F6F6;
  border-radius: 8px;
  padding: 3px 7px;
}

.register-rewards .register-options nav .nav-tabs {
  border: 0;
}

.register-rewards .register-options nav .nav-tabs .nav-link {
  background-color: transparent;
  border-radius: 8px;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  padding: 7px 10px 8px;
  border: 0;
  margin: 0;
  text-transform: capitalize;
}

.register-rewards .register-options nav .nav-tabs .active {
  font-weight: bold;
  background-color: #fff;
}

.register-rewards .register-options .tab-content .tab-pane .form-field {
  max-width: 100%;
  padding: 40px 0 0;
  margin: 0;
}

.register-rewards .register-options .tab-content .tab-pane .form-field label {
  text-transform: capitalize;
}

.register-rewards .register-options .tab-content .tab-pane .form-field input {
  max-width: 100%;
}

@media screen and (max-width: 767.98px) {
  .register-rewards {
    padding: 30px 15px 44px;
    margin-top: 50px;
  }
  .register-rewards .sec-title {
    margin-bottom: 15px;
  }
  .register-rewards .description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .register-rewards .my-form .form-field {
    padding: 0;
    margin-bottom: 30px;
  }
  .register-rewards .my-form .maroon-btn {
    margin-top: 0px;
  }
  .register-rewards .register-options .description {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 30px;
  }
  .register-rewards .register-options nav .nav-tabs .nav-link {
    font-size: 14px;
  }
  .register-rewards .register-options {
    padding: 0 0 30px 0;
  }
  .register-rewards .register-options .tab-content .tab-pane .form-field {
    padding-top: 30px;
  }
}

.my-profile {
  padding: 40px 15px 134px;
  margin-top: 70px;
}

.my-profile .sec-title {
  margin-bottom: 35px;
}

.my-profile .form-field {
  max-width: 100%;
}

.my-profile .form-field input,
.my-profile .form-field select {
  max-width: 100%;
}

.my-profile .form-field .form-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.my-profile .form-field .form-switch .form-check-input {
  margin: 0;
  margin-right: 6px;
  width: 60px;
}

.my-profile .form-field .form-switch label {
  margin: 0;
}

.switch-global {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}

.switch-global input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-global .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c8102e;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0 1px #c8102e;
}

.switch-global .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch-text-label {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  padding-left: 5px;
}
.switch-global input:checked + .slider {
  background-color: #52D017;
  box-shadow: 0 0 1px #52D017;
}

.switch-global input:focus + .slider {
  box-shadow: 0 0 1px #52D017;
}

.switch-global input:checked + .slider:before {
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}

.switch-global .slider.round {
  border-radius: 34px;
}

.switch-global .slider.round:before {
  border-radius: 50%;
}

.switch-global .slider .on
{
  display: none;
}

.switch-global .slider .on
{
  padding-right: 20px;
}

.switch-global .slider .off
{
  padding-left: 17px;
}

.switch-global .slider .on, .switch-global .slider .off
{
  color: white;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 42%;
  left: 50%;
  font-size: 14px;
  font-weight: 600;
  font-family: Verdana, sans-serif;
}

.switch-global input:checked + .slider .on
{
  display: block;
}

.switch-global input:checked + .slider .off
{
  display: none;
}

.my-profile .ms-auto {
  margin-left: auto !important;
}

.my-profile p {
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  color: #000000;
}

.my-profile .maroon-btn {
  margin: 0;
}

@media screen and (max-width: 767.98px) {
  .my-profile {
    padding: 30px 15px 50px;
    margin-top: 50px;
  }
  .my-profile .sec-title {
    margin-bottom: 25px;
  }
  .my-profile .my-form .form-field {
    padding: 0;
    margin-bottom: 30px;
  }
  .my-profile .my-form .maroon-btn {
    margin-top: 0px;
  }
  .my-profile .form-field .form-switch .form-check-input {
    width: 38px;
    height: 22px;
  }
  .my-profile .form-field .form-switch.float-end {
    float: unset !important;
  }
  .my-profile p {
    font-size: 14px;
  }
}

.section-body{
  padding: 40px 15px 91px;
  margin-top: 70px;
  min-height: 72vh;
}

.program-terms-conditions .container p, .accessibility-statement .container p{
  line-height: 1.5rem;
}

.contact-us {
  padding: 40px 15px 91px;
  margin-top: 70px;
}

.contact-us .sec-title {
  margin-bottom: 35px;
}

.contact-us .form-field {
  max-width: 100%;
}

.contact-us .form-field textarea {
  max-width: 100%;
  min-height: 229px;
}

.contact-us .form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-us .maroon-btn {
  margin: 0;
}

@media screen and (max-width: 767.98px) {
  .contact-us {
    padding: 30px 15px 51px;
    margin-top: 50px;
  }
  .contact-us .sec-title {
    margin-bottom: 25px;
  }
  .contact-us .my-form .form-field {
    padding: 0;
    margin-bottom: 30px;
  }
  .contact-us .my-form .maroon-btn {
    margin-top: 0px;
  }
  .contact-us .form-field textarea {
    min-height: 145px;
  }
}

.coupons {
  padding: 40px 15px 62px;
  margin-top: 70px;
}

.coupons .sec-title {
  margin-bottom: 35px;
}

.coupons .coupon-cards {
  max-width: 934px;
  margin: 0 auto;
}

.coupons .coupon-cards .card {
  border: 1px solid #000000;
  border-radius: 6px;
  padding: 13px 26px 37px 19px;
  margin-bottom: 40px;
}

.coupons .coupon-cards .card p {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: #454545;
  text-align: left;
}

.coupons .coupon-cards .card .discount {
  font-size: 20px;
}

.coupons .coupon-cards .card .left-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.coupons .coupon-cards .card .welcome-text {
  margin: 25px 0;
}

.coupons .coupon-cards .card .justify-content-end.position-relative {
  margin-top: 25px;
}

.coupons .coupon-cards .card .accordion .accordion-item {
  border: 0;
  background-color: transparent;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-header .maroon {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-transform: capitalize;
  padding: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-header .maroon::after {
  width: 15px;
  height: 10px;
  margin-left: 8px;
  background-image: url("../../images/arrow-down-maroon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-header .maroon:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-header .maroon:not(.collapsed) {
  color: var(--mainColor);
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-body {
  padding: 40px 0 15px;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-body span {
  font-size: 20px;
}

.coupons .coupon-cards .card .accordion .accordion-item .accordion-body p {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #454545;
}

.coupons .coupon-cards .card:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
  .coupons {
    padding: 30px 15px 50px;
    margin-top: 50px;
  }
  .coupons .sec-title {
    margin-bottom: 25px;
  }
  .coupons .coupon-cards .card p {
    font-size: 14px;
    color: #000000;
  }
  .coupons .coupon-cards .card {
    border: 1px solid #666666;
    padding: 13px 11px 16px 9px;
    margin-bottom: 30px;
  }
  .coupons .coupon-cards .card .discount {
    font-size: 16px;
  }
  .coupons .coupon-cards .card .welcome-text {
    margin: 15px 0;
  }
  .coupons .coupon-cards .card .justify-content-end.position-relative {
    margin-top: 15px;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coupons .coupon-cards .card .left-text {
    position: relative;
    font-weight: normal;
    margin-bottom: 15px;
  }
  .coupons .coupon-cards .card .mbl-weight-normal {
    font-weight: normal;
  }
  .coupons .coupon-cards .card .accordion .accordion-item .accordion-header .maroon {
    font-size: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coupons .coupon-cards .card .accordion .accordion-item .accordion-header .maroon::after {
    width: 12px;
    height: 8px;
  }
  .coupons .coupon-cards .card .accordion .accordion-item .accordion-body {
    padding: 20px 0 0;
    text-align: center;
  }
  .coupons .coupon-cards .card .accordion .accordion-item .accordion-body img {
    margin-bottom: 25px;
  }
  .coupons .coupon-cards .card .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    line-height: 20px;
  }
}

.transaction {
  padding: 40px 15px 162px;
  margin-top: 70px;
}

.transaction .sec-title {
  margin-bottom: 35px;
}

.transaction .form-field {
  width: 356px;
  margin-right: 40px;
  position: relative;
  margin-left: unset;
}

.transaction .form-field input {
  padding-left: 50px;
  padding-top: 10px;
}

.transaction .form-field .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 38px;
  left: 13px;
}

.transaction .form-field .calendar {
  background-image: url("../../images/calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.transaction .form-field:last-child {
  margin-right: 0;
}

.transaction .maroon-btn {
  max-width: 356px;
  margin-bottom: 40px;
}

.transaction .transaction-cards {
  max-width: 934px;
  margin: 0 auto;
}

.transaction .transaction-cards p.fw-bold.black {
  font-size: 18px;
  line-height: 18px;
  text-align: left;
  padding-left: 19px;
  margin-bottom: 40px;
}

.transaction .transaction-cards .card {
  border: 1px solid #000000;
  border-radius: 6px;
  padding: 13px 26px 23px 19px;
  margin-bottom: 40px;
}

.transaction .transaction-cards .card h5.black {
  font-size: 20px;
  line-height: 18px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 34px;
}

.transaction .transaction-cards .card .d-flex.align-items-center.justify-content-between {
  margin-bottom: 30px;
}

.transaction .transaction-cards .card p {
  font-size: 18px;
  line-height: 18px;
  color: #454545;
  text-align: left;
}

.transaction .transaction-cards .card a.maroon {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.transaction .transaction-cards .card a.maroon .icon-arrow {
  width: 15px;
  height: 10px;
  margin-left: 13px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-image: url("../../images/arrow-down-maroon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.transaction .transaction-cards .card:last-child {
  margin-bottom: 0;
}

.datepicker-dropdown {
  top: 250px !important;
  -webkit-box-shadow: 0px 5.30739px 5.30739px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5.30739px 5.30739px rgba(0, 0, 0, 0.25);
}

.datepicker-dropdown .datepicker-days .day,
.datepicker-dropdown .datepicker-days th {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.datepicker-dropdown .datepicker-days .prev:hover,
.datepicker-dropdown .datepicker-days .next:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.datepicker-dropdown .datepicker-days table tr td.day:hover {
  background-color: var(--mainColor);
  background-image: none;
  color: #fff;
}

.datepicker-dropdown .datepicker-days table tr td.active.active,
.datepicker-dropdown .datepicker-days table tr td.active {
  background-color: var(--mainColor);
  background-image: none;
  color: #fff;
}

.datepicker-dropdown .datepicker-days table tr td.today {
  background-color: transparent;
  background-image: none;
}

.datepicker-dropdown .datepicker-months table tr td .month {
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 50%;
}

.datepicker-dropdown .datepicker-months table tr td .month:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.datepicker-dropdown .datepicker-months table tr td .focused {
  background-color: var(--mainColor);
  color: #fff;
}

.datepicker-dropdown .datepicker-years table tr td .year {
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 50%;
}

.datepicker-dropdown .datepicker-years table tr td .year:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.datepicker-dropdown .datepicker-years table tr td .focused {
  background-color: var(--mainColor);
  color: #fff;
}

.datepicker-dropdown .datepicker-switch:hover {
  background-color: transparent;
}

.datepicker-dropdown::before, .datepicker-dropdown::after {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .transaction .form-field {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .transaction .form-field:last-child {
    margin-right: auto;
  }
  .transaction {
    padding: 25px 15px 80px;
    margin-top: 50px;
  }
  .transaction .sec-title {
    margin-bottom: 25px;
  }
  .transaction .d-flex.justify-content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .transaction .form-field .icon {
    left: unset;
    right: 13px;
  }
  .transaction .form-field input {
    padding-left: 16px;
    padding-top: 7px;
  }
  .transaction .d-block {
    text-align: center;
  }
  .transaction .maroon-btn {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .transaction .transaction-cards p.fw-bold.black {
    font-size: 16px;
    padding-left: 9px;
    margin-bottom: 30px;
  }
  .transaction .transaction-cards .card p {
    font-size: 14px;
    color: #000000;
  }
  .transaction .transaction-cards .card {
    border: 1px solid #666666;
    padding: 13px 11px 16px 9px;
    margin-bottom: 30px;
  }
  .transaction .transaction-cards .card h5.black {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .transaction .transaction-cards .card .d-flex.align-items-center.justify-content-between {
    margin-bottom: 20px;
  }
  .transaction .transaction-cards .card a.maroon {
    font-size: 14px;
    margin-top: 15px;
  }
  .transaction .transaction-cards .card .d-flex.justify-content-start,
  .transaction .transaction-cards .card .d-flex.justify-content-end {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .transaction .transaction-cards .card a.maroon .icon-arrow {
    margin-left: 8px;
  }
  .datepicker-dropdown {
    top: 208px !important;
  }
}

@media screen and (max-width: 575.98px) {
  .transaction .form-field {
    width: 100%;
  }
  .datepicker-dropdown .datepicker-days .day,
  .datepicker-dropdown .datepicker-days th {
    width: 40px;
    height: 40px;
  }
}

.transaction-detail {
  padding: 40px 15px 231px;
  margin-top: 70px;
}

.transaction-detail .d-flex.position-relative {
  max-width: 934px;
  margin: 0 auto;
}

.transaction-detail .icon {
  width: 33px;
  height: 24px;
}

.transaction-detail .go-back {
  background-image: url("../../images/arrow-go-back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 3px;
  left: 20px;
}

.transaction-detail .sec-title {
  margin-bottom: 35px;
}

.transaction-detail .transaction-detail-card {
  max-width: 934px;
  margin: 0 auto;
  border: 1px solid #000000;
  border-radius: 6px;
  padding: 13px 26px 5px 19px;
  margin-bottom: 40px;
}

.transaction-detail .transaction-detail-card h5.black {
  font-size: 20px;
  line-height: 18px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 34px;
}

.transaction-detail .transaction-detail-card .d-flex.align-items-center.justify-content-between {
  margin-bottom: 30px;
}

.transaction-detail .transaction-detail-card p {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  text-align: left;
}

.transaction-detail .transaction-detail-card hr {
  margin: 30px auto;
  background-color: #000000;
  opacity: 1;
}

.transaction-detail .transaction-detail-card:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
  .transaction-detail {
    padding: 25px 15px 66px;
    margin-top: 50px;
  }
  .transaction-detail .sec-title {
    margin-bottom: 25px;
    margin-left: 10px;
  }
  .transaction-detail .go-back {
    width: 23px;
    height: 17px;
    position: relative;
    top: 7px;
    left: 0px;
  }
  .transaction-detail .d-flex.justify-content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .transaction-detail .transaction-detail-card p {
    font-size: 14px;
    color: #454545;
  }
  .transaction-detail .transaction-detail-card {
    border: 1px solid #666666;
    padding: 13px 11px 5px 9px;
    margin-bottom: 30px;
  }
  .transaction-detail .transaction-detail-card h5.black {
    font-size: 18px;
    margin-bottom: 20px;
    color: #454545 !important;
  }
  .transaction-detail .transaction-detail-card .d-flex.align-items-center.justify-content-between {
    margin-bottom: 20px;
  }
  .transaction-detail .transaction-detail-card hr {
    margin: 20px auto;
    height: 0.5px;
  }
}

.forgot-password {
  padding: 40px 15px 220px;
  max-width: 356px;
  margin: 0 auto;
  margin-top: 70px;
}

.setup-rewards-account{
  max-width: 700px !important;
}

.forgot-password .sec-title {
  margin-bottom: 40px;
}

.forgot-password .form-container {
  position: relative;
  margin: 0 auto;
  width: 356px;
  overflow: hidden;
}

.forgot-password .form-container .my-form {
  width: 100%;
}

.forgot-password .form-container .my-form .fields {
  position: relative;
}

.forgot-password .form-container .my-form .fields .form-field {
  padding: 0;
}

.forgot-password .form-container .my-form .fields .form-field .icon {
  font-size: 20px;
  width: 22px;
  height: 15px;
  position: absolute;
  top: 36px;
  right: 13px;
  z-index: 1;
  cursor: pointer;
}

#changePassword .form-field{
  position: relative;
}

#changePassword .icon-password-flag{
  font-size: 20px;
  width: 22px;
  height: 15px;
  position: absolute;
  top: 36px;
  right: 13px;
  z-index: 1;
  cursor: pointer;
}

.forgot-password .form-container .my-form .fields .form-field .show-password {
  background-image: url("../../images/hide-password.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.forgot-password .form-container .my-form .fields .email-field {
  position: relative;
  left: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.forgot-password .form-container .my-form .fields .email-field .btn-next {
  margin-top: 0;
}

.forgot-password .form-container .my-form .fields .password-field {
  position: absolute;
  width: 100%;
  right: -1000px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.forgot-password .form-container .my-form .fields .show {
  right: 0;
  display: block;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.forgot-password .form-container .my-form .fields .slide-left {
  left: -2000px;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.forgot-password .d-flex.flex-column a {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: var(--mainColor);
}

.forgot-password .d-flex.flex-column p {
  margin-top: 40px;
  margin-bottom: 35px;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}

@media screen and (max-width: 767.98px) {
  .forgot-password {
    padding: 30px 15px 27vh;
    margin-top: 50px;
  }
  .forgot-password .sec-title {
    margin-bottom: 20px;
  }
  .forgot-password .form-container .my-form .fields .form-field {
    margin-bottom: 30px;
  }
  .forgot-password .d-flex.flex-column {
    text-align: center;
  }
  .forgot-password .d-flex.flex-column a {
    font-size: 14px;
  }
  .forgot-password .d-flex.flex-column p {
    margin-top: 30px;
    margin-bottom: 7px;
    font-size: 14px;
  }
  .forgot-password .form-container {
    width: 100%;
  }
}

/*  Media queries start   */
@media screen and (max-width: 767.98px) {
  .my-form {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-field {
    margin-bottom: 30px;
  }
  .form-field label {
    font-size: 14px;
    line-height: 18px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
  .form-check .form-check-input {
    width: 27px;
    height: 27px;
  }
}

/*  Media queries end   */
/*# sourceMappingURL=custom.css.map */


.select-appearance-auto{
  appearance: auto !important;
}  