@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/*========== GENERAL STYLE =================================*/
:root {
  --color-first: #464acb;
  --color-second: #d83f51;
  --color-content: #2a2d3e;
  --color-dark: #000;
  --color-dark-2: #616161;
  --bg-light: #e8eef0;
  --bg-second-light: #ff92a2;
  --shadow1: 0 0.2rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-light: 0 0 1rem rgba(0, 0, 0, 0.05);
}
*,
::before,
::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: var(--color-dark);
  text-transform: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-gray);
}
a,
a:hover,
a:focus,
a:focus-visible {
  text-decoration: none;
  outline: none;
}
img {
  object-fit: contain;
  object-position: center;
}
ul li {
  list-style: none;
}
ul.list li {
  list-style: disc;
  color: var(--color-content);
}
a {
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
  font-family: sans-serif;
}
ul li {
  list-style: none;
}
.webContent .mainHeading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0px;
  color: var(--color-dark);
  text-transform: capitalize;
}
.webContent .largeHeading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-content);
  text-transform: capitalize;
}
.webContent .subHeading {
  font-size: 1.4rem;
  font-weight: 500;
}
.webContent p,
.webContent ol li,
.webContent ul li {
  font-weight: 400;
  color: var(--color-dark-2);
  font-size: 1rem;
  line-height: 1.6;
}
.fs-09 {
  font-size: 0.9rem !important;
}
.fs-08 {
  font-size: 0.8rem !important;
}
.color-first {
  color: var(--color-first) !important;
}
.color-second {
  color: var(--color-second) !important;
}
.color-dark {
  color: var(--color-dark) !important;
}
.color-dark-2 {
  color: var(--color-dark-2) !important;
}
.bg-light {
  background: var(--bg-light) !important;
}
.bg-first {
  background: var(--color-first) !important;
}
.bg-second {
  background: var(--color-second) !important;
}
.bg-light {
  background: var(--bg-light) !important;
}
.bg-second-light {
  background: var(--bg-second-light) !important;
}
.bg-dark {
  background: var(--color-dark) !important;
}
.bg-dark-2 {
  background: var(--color-dark-2) !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.bg-img-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-1 {
  background-color: #464acb;
  background: -webkit-linear-gradient(120deg, #464acb, #d83f51, #e8eef0);
  background: -moz-linear-gradient(120deg, #464acb, #d83f51, #e8eef0);
  background: -o-linear-gradient(120deg, #464acb, #d83f51, #e8eef0);
  background: linear-gradient(120deg, #464acb, #d83f51, #e8eef0);
  background-size: 300% 300%;
  /* Animation */
  -webkit-animation: gradientShift 12s ease infinite;
  -moz-animation: gradientShift 12s ease infinite;
  animation: gradientShift 12s ease infinite;
}
header .user-login-name {
  max-width: 88px;
}
header .menubar-button .menu-icon {
  font-size: 18px;
}
header #navbarUserProfile i,
.active-submenu .fa-minus {
  font-size: 10px;
}
/* Animation keyframes */
@-webkit-keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.text-limit-1,
.text-limit-2,
.text-limit-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*white-space: nowrap;*/
}
.text-limit-1 {
  -webkit-line-clamp: 1;
}
.text-limit-2 {
  -webkit-line-clamp: 2;
}
.text-limit-3 {
  -webkit-line-clamp: 3;
}
.button,
.buttons,
input[type="submit"].buttons {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  border: 2px solid transparent;
  text-transform: capitalize;
  outline: 0;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.buttons.btn-first,
.button.btn-second:hover {
  background-color: var(--color-first);
  border: 1px solid var(--color-first);
}
.buttons.btn-second,
.buttons.btn-first:hover {
  background-color: var(--color-second);
  border: 1px solid var(--color-second);
}
.buttons.btn-second:focus,
.buttons.btn-first:focus,
input[type="submit"].buttons:focus {
  color: #fff;
}
/*  input.form-control,select.form-select{height: 50px}*/
input.form-control:focus,
select.form-select:focus {
  box-shadow: none;
}
.active > .page-link,
.page-link.active {
  background: var(--color-first);
}
.page-link {
  color: var(--color-dark);
}
.resize-none {
  resize: none;
}
/*............... owl carousel ............*/
.owl-theme .owl-nav {
  position: absolute;
  right: 0px;
  top: -50px;
  margin-top: 0 !important;
}
.owl-carousel .owl-nav button:focus {
  outline: 0 !important;
  border: 0 !important;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  width: 25px;
  height: 25px;
  background: var(--color-first) !important;
  /*position: absolute;*/
  top: 40%;
  right: -12px;
}
.owl-carousel .owl-nav button span {
  opacity: 0;
  width: 0;
  height: 0;
}
.owl-carousel .owl-nav button.owl-next::after,
.owl-carousel .owl-nav button.owl-prev::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 10px;
  right: 5px;
  bottom: 5px;
  left: 20px;
  transform: rotate(45deg);
  border-radius: 0;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  margin-left: -9px;
  margin-bottom: 2px;
}
.owl-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.coupon-section,
.accordion-section {
  width: 100%;
  padding: 40px 20px;
  font-size: 16px;
}
/*========== GENERAL STYLE =================================*/
.coupon-block {
  background: #f8f8f8;
}
.coupon-offers-info {
  background: #f9fafd;
  border-radius: 4px 0 0 4px;
  border-right: 1px solid #e8eef7;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.coupon-details {
  padding: 20px;
  background-color: #f8f8f8;
}
.coupon-merchant-logo {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.coupon-merchant-logo img {
  width: 100%;
  object-fit: scale-down;
}
.offer-text {
  margin: 5px 0;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-first);
}
.offer-text span {
  font-size: 1.2rem;
  vertical-align: middle;
}
.offer-code,
.merchant-logo-name {
  font-size: 0.9rem;
  color: #7f949f;
  margin: 0px;
  line-height: 20px;
  text-transform: uppercase;
}
.coupon-details-block .merchant-logo-name {
  text-transform: capitalize;
}
.coupon-details-block .merchant-details-title {
  font-size: 1.3rem;
  margin: 10px 0;
  color: var(--color-first);
  font-weight: 700;
  line-height: 25px;
}
.top-coupons-section .coupon-details-block .merchant-details-title {
  font-size: 1.5rem;
}
.coupon-details-block .merchant-details-desc {
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 20px;
}
.btn-reveal {
  min-width: 150px;
  max-width: 200px;
  padding-right: 20px;
  position: relative;
  transition: padding 0.1s;
}
.btn-reveal .code,
.btn-reveal .code.small {
  color: #2d3e50;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 32px;
}
.btn-reveal .code {
  align-items: center;
  background-color: #f0faff;
  border: 2px dashed var(--color-first);
  border-radius: 3px;
  display: flex;
  font-size: 22px;
  height: 100%;
  justify-content: flex-end;
  overflow: hidden;
  padding-right: 10px;
  position: absolute;
  white-space: nowrap;
  width: 100%;
}
.btn-reveal .cover {
  background-color: var(--color-first);
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16px;
  padding: 15px 25px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: padding 0.1s;
  white-space: nowrap;
}
.btn-reveal:focus-visible {
  outline: 1px solid #009be1;
}
.btn-reveal:active,
.btn-reveal:focus,
.btn-reveal:hover {
  padding-right: 40px;
}
.btn-reveal:active .cover,
.btn-reveal:focus .cover,
.btn-reveal:hover .cover {
  background-color: var(--color-second);
  padding: 15px 21px;
}
.btn-reveal.revealed {
  padding-right: 0;
}
.btn-reveal.revealed .cover {
  display: none;
}
.btn-reveal.revealed .code {
  display: block;
  justify-content: center;
  padding: 5px;
  position: static;
  text-overflow: ellipsis;
}
.btn-reveal .code.small {
  font-size: 16px;
}
.btn-reveal .code.tiny {
  color: #2d3e50;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 32px;
}
.top-coupons-section
  .card-footer
  .coupon-details-block
  .merchant-details-title {
  font-size: 0.95rem;
  line-height: 1.36 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 4px 0;
}
.top-coupons-section .card-footer {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-to-chrome-section .coupon-merchant-logo {
  margin: initial;
}
.store-list {
  column-count: 5;
}
.store-list li {
  padding: 10px;
}
.store-list li:hover a {
  color: var(--color-first) !important;
  text-decoration: underline;
}
/*================= FAQ =======================*/
.accordion-button:not(.collapsed) {
  background: #fff;
}
.accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
/*================= LOGIN PAGES =======================*/
.horizontal-line span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login-social-icon {
  display: inline-block;
  width: 80px;
  height: auto;
  line-height: 35px;
}
.loginSection1 .button-block .button.btn-first {
  padding: 0.7rem 0rem;
}
.login-social-icon img {
  width: 25px;
  height: 25px;
}
@media only screen and (max-width: 1024px) {
  .btn-reveal {
    min-width: 120px;
  }
}
/*================= COUPONS PAGES =======================*/
.stores-tab li {
  margin: 0 5px;
}
.stores-tab a.nav-link {
  font-size: 14px;
  padding: 0;
  text-transform: capitalize;
  font-weight: 700;
  color: #353535;
  height: 25px;
  width: 25px;
  line-height: 27px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  border-color: #bababa !important;
  border-radius: 4px;
}

.category-side-list .nav-item .nav-link {
  text-align: left;
  padding: 0.5rem 1rem;
  color: var(--color-dark);
  transition: 0.3s linear;
}
.category-side-list .nav-item .nav-link.active,
.category-side-list .nav-item .nav-link:hover {
  background: #f8f8f8;
  border-left: 3px solid var(--color-first);
  font-weight: 600;
}

.stores-category-side-list .nav-item .nav-link {
    text-align: center;
    padding: 0.3rem;
    font-size: 0.90rem;
    color: var(--color-first);
    border: 1px solid var(--color-first);
    /* border-radius: 5px; */
    /* background: var(--bg-light); */
    margin: 0 7px 7px 0;
    transition: 0.3s linear;
}

.stores-category-side-list .nav-item .nav-link.active, .category-side-list .nav-item .nav-link:hover {
    background: var(--color-first);
    color: #fff;
}

.brandLogo {
  padding: 5px 5px;
  box-shadow: 5px 5px 10px #00000014;
  background: #fff;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.brandLogo img {
  width: 100px;
  height: 100px;
  object-fit: scale-down;
}
.brand-all-coupons-section .btn-reveal {
  min-width: 180px;
}
.cashbackImg {
  width: 200px;
}
.popup-coupon-content .code-value {
  background-color: #f0faff;
  border: 2px dashed var(--color-first);
  border-radius: 3px;
  border-right: 0;
}
/*================= BLOG PAGE =======================*/
.blog-card .subHeading {
  font-size: 1.1rem;
  font-weight: 600;
}
.blog-card .card-img-top {
  height: 250px;
}
.search_cloud {
  display: flex;
  flex-wrap: wrap;
}
.search_cloud li {
  border: 1px solid #e6dfff;
  background: var(--bg-light);
  margin: 0 7px 10px 0;
  padding: 5px;
}
.search_cloud li:hover {
  background: var(--color-first) !important;
}
.search_cloud li a {
  color: var(--color-first) !important;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 2px 7px;
  display: block;
}
.search_cloud li:hover a {
  color: #fff !important;
}
.blog-details-section h1,
.blog-details-section h2,
.blog-details-section h3,
.blog-details-section h4,
.blog-details-section h5,
.blog-details-section h6 {
  color: var(--color-first);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.blog-details-section p,
.blog-details-section p span,
.blog-details-section span p,
.blog-details-section p strong,
.blog-details-section span,
.blog-details-section a,
.blog-details-section p a,
.blog-details-section ul li,
.blog-details-section ul li strong,
.blog-details-section ul li a,
.blog-details-section ul li a strong,
.blog-details-section ol li,
.blog-details-section ol li strong,
.blog-details-section ol li a,
.blog-details-section ol li a strong,
.sitemapList ul li {
  color: var(--color-content);
  font-size: 1rem;
  line-height: 1.4;
  /*white-space: pre-line;*/
  margin-bottom: 0.5rem;
  padding-bottom: 0rem;
}
.blog-details-section ol {
  padding-left: 0;
}
.blog-details-section ul {
  padding-left: 15px;
}
.blog-details-section a,
.blog-details-section p a,
.blog-details-section ul li a,
.blog-details-section ol li a,
.blog-details-section span a {
  color: #3557ff;
}
.blog-details-section img {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.9rem;
}
/*** AUTHOR ***/
.author-details {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.author-details .author-img {
  display: inline-block;
  width: 35px;
  height: 35px;
}
.author-details .author-txt {
  margin-left: 10px;
  width: 80%;
}
.author-details .author-img,
.author-details .author-txt {
  clear: both;
}
.author-details .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 0px;
}
.author-details .author-txt span {
  color: #333;
}
.author-details .author-txt a {
  color: #3557ff;
}
.seperatorLine {
  border-right: 1px solid #333;
  padding-right: 5px;
  margin-right: 5px;
}
.author-details-desc img {
  width: 150px;
  height: 150px;
  float: left;
  margin: 0 20px 20px 0px;
  margin-left: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.author-details-desc {
  width: 100%;
}
.nav-tabs {
  position: sticky;
  top: 68px;
  z-index: 1020; /* Keeps it above other content */
  background: #fff; /* Optional to avoid transparency over content */
}
.sticky-card {
  position: sticky;
  top: 84px;
  z-index: 10;
}
.category-side-list {
  position: sticky;
  top: 1rem; /* distance from top when sticking */
  z-index: 100; /* keep it above other elements */
}
/*########## password ###########*/
.login-form-section .toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -32px;
}
.strength-bar {
  width: 30px;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.strength-1 .strength-bar:nth-child(1) {
  background-color: red;
}
.strength-2 .strength-bar:nth-child(-n + 2) {
  background-color: orange;
}
.strength-3 .strength-bar {
  background-color: green;
}
select:disabled,
.form-control:disabled,
.form-select:disabled {
  opacity: 0.5;
}
.was-validated .input-password:valid,
.input-password.is-valid,
.was-validated .input-password:invalid,
.input-password.is-invalid {
  background-image: none !important;
}
/*================= Amazon Coupons =======================*/
.amazon-product_details .nav-tabs .nav-link {
  color: var(--color-black);
  font-weight: 500;
  border: none;
  padding: 0.5rem;
  display: flex;
  width: max-content;
}
.amazon-product_details .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
}
.amazon-product_details .nav-tabs .nav-link.active {
  color: var(--color-first);
  font-weight: 600;
  border: none;
  background: transparent;
}
.border-dashed-top {
  border-top: 1px dashed #d7d7d7;
}
.amazon-product_details .nav-tabs {
  /*border-bottom: none; !* remove line under tabs *!*/
  border: 1px solid #ccc;
  border-radius: 5px;
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
}
.amazon-product-img {
  height: 200px;
  object-fit: contain;
}
.products-carousel .amazon-product-img {
  height: 200px !important;
}
.amazon-product_details .title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-first);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.amazon-product_details .desc {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.amazon-product_details .card .card-body .price {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-first);
  letter-spacing: 0;
  border-top: 1px dashed #d7d7d7;
}
.price-del {
  font-size: 14px;
  color: #747474;
}
.product-details-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.comment-form .form-control,
.comment-form .form-control:focus {
  font-size: 1rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.reviews-nav.nav-pills .nav-link {
  color: #000000;
  background-color: transparent;
}
.reviews-nav.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: var(--color-first);
}
.icon-row {
  display: flex;
  gap: 5px;
}
.icon-row img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.brand-all-coupons-section .nav-pills .nav-link.active {
  background: var(--color-first);
  color: #fff;
}
.brand-all-coupons-section .nav-pills li + li {
  margin-left: 10px;
}
.brand-all-coupons-section .nav-pills .nav-link {
  background: #fff;
  color: var(--color-first);
  border: 1px solid var(--color-first);
}
.btn-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1050;
}
.btn-modal-close:hover,
.btn-modal-close:focus {
  box-shadow: none;
  outline: none;
}
/*================= RESPONSIVE =======================*/
@media only screen and (max-width: 1200px) {
  .logo {
    width: 130px;
  }
  .amazon-product_details .card .card-body .price {
    font-size: 15px;
  }
  .price-del {
    font-size: 12px;
  }
}
@media only screen and (max-width: 992px) {
  .coupon-details-block,
  .coupon-details-button,
  .coupon-left-section,
  .coupon-center-section {
    width: 100%;
    text-align: center;
  }
  .btn-reveal {
    padding-right: 45px;
    margin: 0 auto;
  }
  .coupon-details-button {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .btn-reveal .cover {
    padding: 10px 25px;
  }
  .coupon-details {
    padding: 10px;
  }
  .coupon-details-block .merchant-details-title {
    font-size: 1.3rem;
  }
  .coupon-details-block .merchant-details-desc {
    font-size: 1rem;
  }
  .store-list {
    column-count: 4;
  }
}
@media only screen and (max-width: 768px) {
  .coupon-left-section,
  .coupon-center-section {
    width: 100%;
  }
  .coupon-offers-info,
  .coupon-details {
    width: 100%;
    padding: 10px;
  }
  .offer-text {
    margin: 7px 0;
  }
  .coupon-section,
  .accordion-section {
    padding: 20px 10px;
  }
  .store-list {
    column-count: 3;
  }
  .category-side-list {
    overflow-x: scroll;
  }
  .category-side-list .nav-item .nav-link {
    font-size: 0.8rem;
    white-space: nowrap;
    padding: 0.5rem;
  }
  .category-side-list .nav-item .nav-link.active,
  .category-side-list .nav-item .nav-link:hover {
    border-bottom: 3px solid var(--color-first);
    border-left: initial;
  }
}
@media only screen and (max-width: 600px) {
  .coupon-block {
    padding: 0px;
  }
  .coupon-offers-info {
    border-right: 0;
  }
  .store-list {
    column-count: 2;
  }
}
@media only screen and (max-width: 450px) {
  .store-list {
    column-count: 1;
  }
  .login-social-icon {
    width: 40px;
  }
  .login-social-icon img {
    width: 20px;
    height: 20px;
  }
  .signupwithsocial button span {
    font-size: 0.9rem;
  }
  .products-carousel .amazon-product-img {
    height: 150px !important;
    margin-bottom: 5px;
  }
}
/*.................... @media screen ....................*/
@media screen and (max-width: 1340px) {
  .webContent .mainHeading {
    font-size: 2.7rem;
  }
  .webContent .largeHeading {
    font-size: 1.8rem;
  }
  .webContent .subHeading {
    font-size: 1.3rem;
  }
  .stores-tab a.nav-link {
    font-size: 12px;
    height: 24px;
    width: 24px;
  }
}
@media screen and (max-width: 991px) {
  .webContent .mainHeading {
    font-size: 2.2rem;
  }
  .webContent .largeHeading {
    font-size: 1.6rem;
  }
  .webContent .subHeading {
    font-size: 1.2rem;
  }
  .webContent p {
    font-size: 15px;
    line-height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .webContent .mainHeading {
    font-size: 1.8rem;
  }
  .webContent .largeHeading {
    font-size: 1.4rem;
  }
  .webContent .subHeading {
    font-size: 1.1rem;
  }
  .webContent p {
    font-size: 14px;
    line-height: 20px;
  }
  .nav-tabs {
    top: 100px;
  }
  .stores-tab a.nav-link {
    font-size: 10.4px;
    height: 21px;
    width: 21px;
  }
}
@media screen and (max-width: 450px) {
  .webContent .mainHeading {
    font-size: 1.4rem;
  }
  .webContent .largeHeading {
    font-size: 1.2rem;
  }
  .webContent .subHeading {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .user-login-name {
    width: 80px;
  }
}
@media only screen and (max-width: 992px) {
  #header-bottom {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  header .menubar-button .menu-icon {
    font-size: 16px;
  }
  header .fc-coin {
    width: 22px;
    height: 22px;
  }
  header #navbarUserProfile .user-login-name {
    max-width: 70px;
  }
  header #navbarUserProfile .user-login-name,
  header .fc-coins {
    font-size: 12px !important;
  }
  header .logo {
    width: 100px;
  }
}
.field-icon {
    float: right;
    padding-right: 25px;
    margin-top: -24px;
    position: relative;
    z-index: 10;
  }
  .form-control.is-invalid, .was-validated .form-control:invalid{background-image: none !important;}