.nav-header {
  background-color: #1D275F;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  position: sticky;
}
.nav-header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 57px;
}
.nav-header .navbar .logo-link img {
  max-width: 200px;
}
.nav-header .navbar .nav-links {
  display: flex;
  align-items: center;
  color: white;
}
.nav-header .navbar .nav-links-link {
  margin: 0 18px;
}
.nav-header .navbar .nav-links a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 19px;
}
.nav-header .navbar .nav-links a:hover {
  text-decoration: underline;
}
.nav-header .dropdown-toggle {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
.nav-header .dropdown-toggle:hover, .nav-header .dropdown-toggle:focus {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
.nav-header .dropdown span {
  font-weight: 500;
  text-decoration: none;
  font-size: 19px;
}
.nav-header .dropdown .dropdown-menu {
  background-color: white;
  padding: 0;
}
.nav-header .dropdown .dropdown-menu li:hover {
  background-color: rgba(60, 191, 149, 0.1);
}
.nav-header .dropdown .dropdown-menu li a {
  display: block;
  padding: 5px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #333;
  white-space: nowrap;
  font-size: 16px;
}
.nav-header .dropdown.show-toggle {
  background-color: transparent;
  border: none;
  outline: none;
}
.nav-header .dropdown.show-toggle:hover, .nav-header .dropdown.show-toggle:focus {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 900px) {
  .nav-header .navbar .logo-link img {
    max-width: 150px;
  }
  .nav-header .navbar .nav-bm {
    width: 28px;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
  }
  .nav-header .navbar .nav-bm span {
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .nav-header .navbar .nav-bm span:nth-child(2) {
    margin: 6px 0;
    width: 75%;
    margin-left: 25%;
    transition: 0.3s ease-in;
  }
  .nav-header .navbar .nav-bm span:nth-child(3) {
    transition: 0.3s ease-in;
  }
  .nav-header .navbar .nav-bm span:nth-child(1) {
    transition: 0.3s ease-in;
  }
  .nav-header .navbar .nav-bm.mb-show span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    transition: 0.3s ease-in;
  }
  .nav-header .navbar .nav-bm.mb-show span:nth-child(2) {
    opacity: 0;
  }
  .nav-header .navbar .nav-bm.mb-show span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    transition: 0.3s ease-in;
  }
  .nav-header .navbar .nav-links {
    color: #1D275F;
    z-index: 100;
    position: fixed;
    min-height: 100vh;
    top: 60px;
    width: 100vw;
    right: -100vw;
    flex-direction: column;
    background-color: white;
    transition: 0.2s linear;
  }
  .nav-header .navbar .nav-links-link {
    display: block;
    padding: 0.875em 1em;
    background-color: #fff;
    color: #0F3166;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 300;
    width: 80%;
  }
  .nav-header .navbar .nav-links-link:not(:last-child) {
    border-bottom: solid 0.7px #E6E6E6;
  }
  .nav-header .navbar .nav-links-link a {
    color: #1D275F;
  }
  .nav-header .navbar .nav-links.mb-show {
    right: 0;
    transition: 0.2s linear;
  }
  .nav-header .navbar .nav-expand-link {
    display: flex;
    align-items: center;
  }
  .nav-header .navbar .nav-expand-link svg {
    margin-left: 15px;
  }
  .nav-header .navbar .nav-expand-content {
    position: absolute;
    left: 120%;
    transition: 0.2s linear;
    width: 100%;
    top: 0;
    background-color: white;
    min-height: 100vh;
    padding: 20px 10%;
  }
  .nav-header .navbar .nav-expand-content .nav-back-link {
    display: flex;
    align-items: center;
  }
  .nav-header .navbar .nav-expand-content .nav-back-link svg {
    margin-right: 15px;
  }
  .nav-header .navbar .nav-expand-content li {
    list-style: none;
    padding: 10px 0;
  }
  .nav-header .navbar .nav-expand-content li:not(:last-child) {
    border-bottom: solid 0.7px #E6E6E6;
  }
  .nav-header .navbar .nav-expand.mb-show .nav-expand-content {
    left: 0;
    transition: 0.2s linear;
  }
}
.nav-header #earnLink {
  text-align: center;
  color: white;
  text-decoration: none;
  margin: auto;
  font-size: 13px;
}
@media only screen and (max-width: 900px) {
  .nav-header nav {
    justify-content: center;
    padding: 6px;
  }
  .nav-header .nav-header .navbar .nav-bm span:nth-child(2) {
    margin-left: 0px;
    margin-right: 25%;
  }
  .nav-header nav > a {
    order: 2;
  }
  .nav-header .offerBtn {
    margin-left: auto;
    font-size: 13px;
  }
}

.hero {
  background-color: #1D275F;
  padding-top: 35px;
  height: 270px;
}
@media only screen and (max-width: 700px) {
  .hero {
    margin-top: -1px;
    padding-top: 24px;
    height: auto;
    padding-bottom: 50px;
  }
}
.hero .orange-text {
  color: #EC5D35;
}
.hero h1 {
  color: white;
  text-align: center;
  font-size: 40px;
}
.hero h2 {
  color: white;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}
@media only screen and (max-width: 700px) {
  .hero h2 {
    font-size: 18px;
  }
}
.hero-filters {
  display: flex;
  padding-bottom: 30px;
  justify-content: center;
  margin-top: 30px;
  gap: 25px;
}
.hero-filters .filter {
  font-size: 18px;
  margin: 10px 0px;
  background-color: #2F3971;
  border-radius: 7px;
  padding: 20px 30px;
  cursor: pointer;
  font-weight: 500;
  color: #FCFCFC;
  border-top: 6px solid transparent;
  text-decoration: none;
}
.hero-filters .filter:hover {
  border-top: 6px solid #EC5D35;
  color: #EC5D35;
  text-decoration: none;
}
.hero-filters .clicked img {
  display: inline;
}
@media only screen and (max-width: 500px) {
  .hero-filters {
    flex-wrap: wrap;
  }
  .hero-filters .filter {
    font-size: 12px;
    padding: 15px 0px;
    width: 45%;
    text-align: center;
  }
}
.hero-bottom {
  color: white;
  opacity: 0.7;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 700px) {
  .hero-bottom {
    display: none;
  }
}

.nlc {
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .nlc {
    width: 92%;
    margin: auto;
    margin-bottom: 40px;
  }
}
.nlc-offer {
  background-color: #EC5D35;
  position: absolute;
  width: 260px;
  left: 1px;
  top: -30px;
  border-radius: 10px 10px 0px 0px;
  padding: 0px 5px;
  margin-bottom: 5px;
  color: #FCFCFC;
  padding-top: 5px;
  text-align: center;
  z-index: 0;
  font-weight: 600;
  padding-bottom: 15px;
}
.nlc-offer p {
  margin: 0;
  font-size: 14px;
}
.nlc-content {
  margin-top: 25px;
  background-color: #FFFFFF;
  border-radius: 2px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 2px solid transparent;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
}
.nlc-content-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 20px 25px 5px 25px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info {
    flex-direction: column;
    padding: 15px;
  }
}
.nlc-content-info-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  margin-right: 2%;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-first {
    width: 100%;
    flex-direction: row;
    margin-bottom: 20px;
  }
}
.nlc-content-info-first-logo {
  max-width: 200px;
  max-height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-first-logo {
    max-width: 130px;
    max-height: 50px;
  }
}
.nlc-content-info-second {
  display: flex;
  flex-direction: column;
  width: 29%;
  margin-right: 1%;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-second {
    width: 100%;
  }
}
.nlc-content-info-second span {
  font-size: 13px;
}
.nlc-content-info-second-highlight {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 0px 12px;
  align-items: flex-end;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-second-highlight {
    padding: 0;
  }
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-second-highlight span {
    margin-left: 12px;
    font-size: 15px;
  }
}
.nlc-content-info-second-highlight b {
  font-size: 15px;
}
.nlc-content-info-second-text {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 0px 12px;
  align-items: flex-end;
  margin-top: 4px;
}
.nlc-content-info-second-text b {
  font-size: 13px;
}
.nlc-content-info-second-box {
  background-color: rgba(60, 191, 149, 0.1);
  padding: 4px 12px;
  margin-top: 5px;
  height: 70px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-second-box {
    height: auto;
  }
}
.nlc-content-info-second-box-text {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin: 6px 0;
  align-items: center;
}
.nlc-content-info-second-box-text b {
  font-size: 13px;
  font-weight: 600;
}
.nlc-content-info-third {
  width: 32%;
  margin-right: 2%;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-third {
    width: 100%;
    text-align: center;
  }
}
.nlc-content-info-third-box {
  background-color: rgba(60, 191, 149, 0.1);
  padding: 4px 12px;
  margin-top: 5px;
  font-size: 13px;
  padding-top: 2px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-third-box {
    background-color: transparent;
  }
}
.nlc-content-info-third-box-text {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 6px 0;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-third-box-text {
    justify-content: center;
  }
}
.nlc-content-info-third-box-text span {
  margin-right: 4px;
}
.nlc-content-info-third-box-text b {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
.nlc-content-info-third-box-text p {
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 24px;
  margin: 0;
}
.nlc-content-info-third-box-text p.blue-highlight {
  color: #0078D7;
  background-color: #E5F0F6;
}
.nlc-content-info-third-box-text p.yellow-highlight {
  color: #DD5129;
  background-color: #fcf3ca;
}
.nlc-content-info-third-list {
  padding: 0;
  margin: 0;
  height: 45px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-third-list {
    width: 100%;
    margin: 0;
    padding-top: 5px;
    height: auto;
  }
}
.nlc-content-info-third-list li {
  list-style: none;
  font-size: 12px;
  margin-bottom: 5px;
}
.nlc-content-info-third-list li::before {
  height: 12px;
  width: 12px;
  content: "";
  background-image: url(/images/checkmark-green.svg);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  margin-right: 10px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-third-list li {
    display: none;
    width: 100%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 10px;
  }
  .nlc-content-info-third-list li::before {
    width: 22px;
    height: 22px;
  }
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-third-list li:nth-child(1) {
    display: flex;
  }
}
.nlc-content-info-fourth {
  width: 18%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-fourth {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-fourth-btn {
    width: 45%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    height: 45px;
    padding: 0px !important;
  }
}
.nlc-content-info-fourth-btn-green {
  background-color: #00B38C;
  border-radius: 16px;
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 12px 0px;
  width: 100%;
  margin: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  margin: 0 auto;
  margin-bottom: 12px;
  padding: 10px 0;
}
.nlc-content-info-fourth-btn-green:hover {
  background-color: #2D8668;
}
.nlc-content-info-fourth-btn-green svg {
  position: relative;
  max-height: 32px;
  width: 16px;
  height: 28px;
  margin-left: 10px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-fourth-btn-green {
    margin-bottom: 0px;
    width: 45%;
  }
}
.nlc-content-info-fourth-btn-white {
  position: relative;
  border: 1px solid #00B38C;
  border-radius: 16px;
  font-size: 12px;
  color: #00B38C;
  text-align: center;
  padding: 12px 0px;
  transition: 0.2s ease-out;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.nlc-content-info-fourth-btn-white svg {
  margin-left: 5px;
  width: 10px;
  height: auto;
}
.nlc-content-info-fourth-btn-white svg path {
  fill: #00B38C;
}
@media only screen and (max-width: 700px) {
  .nlc-content-info-fourth-btn-white {
    font-size: 14px;
    margin-bottom: 0;
    width: 45%;
  }
  .nlc-content-info-fourth-btn-white svg {
    margin-left: 8px;
  }
}
.nlc-content-example {
  padding-top: 15px;
  font-size: 10px;
  line-height: 15px;
  color: #9297A3;
  width: 100%;
  padding: 5px 25px 5px 25px;
}
@media only screen and (max-width: 700px) {
  .nlc-content-example {
    padding-top: 5px;
  }
}
.nlc-rating-info.hidden-height {
  max-height: 0px;
  transition: max-height 0.3s linear;
}
.nlc-rating-info {
  transition: max-height 0.3s linear;
  max-height: 1200px;
  width: 100%;
  overflow: hidden;
}
.nlc-rating-info-table {
  display: flex;
  width: 94%;
  padding: 10px 5px;
  margin: auto;
  margin-top: 25px;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: rgba(222, 222, 222, 0.21);
}
.nlc-rating-info-table-column {
  width: 48%;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-table-column {
    width: 100%;
    margin-bottom: 15px;
  }
}
.nlc-rating-info-table-column b {
  font-size: 18px;
}
.nlc-rating-info-table-column-item {
  display: flex;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  margin: 4px 0;
  border: 1px solid gray;
  font-size: 13px;
}
.nlc-rating-info-table-column-item-left {
  width: 50%;
  background-color: white;
  padding: 15px;
}
.nlc-rating-info-table-column-item-right {
  padding: 15px;
  width: 50%;
  background-color: #E5F0F6;
  display: flex;
  justify-content: flex-end;
}
.nlc-rating-info-table-column-item-right span {
  display: flex;
  align-items: center;
}
.nlc-rating-info-table-column-item-right span svg {
  margin-left: 5px;
}
.nlc-rating-info-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-numbers {
    padding-top: 5px;
    flex-direction: column;
  }
}
.nlc-rating-info-numbers-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
  background-image: url(../images/rating-circle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 45px;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-numbers-highlight {
    margin: auto;
    transform: scale(0.9);
  }
}
.nlc-rating-info-numbers-highlight b {
  font-size: 54px;
  margin-top: -10px;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-numbers-highlight b {
    font-size: 40px;
  }
}
.nlc-rating-info-numbers-highlight .stars {
  margin-left: 0;
}
.nlc-rating-info-numbers-highlight span {
  font-size: 12px;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-numbers-specifics {
    transform: scale(0.9);
  }
}
.nlc-rating-info-numbers-specifics-value {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin: 4px 0;
}
.nlc-rating-info-numbers-specifics-value p {
  margin: 0;
  margin-top: 5px;
}
.nlc-rating-info-numbers-specifics-value .stars {
  margin-bottom: 2px;
}
.nlc-rating-info-procons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-top: 2px solid #E3E3E3;
  padding-top: 20px;
  margin-top: 20px;
  max-width: 94%;
  margin: auto;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-procons {
    display: none;
  }
}
.nlc-rating-info-procons-value b {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.nlc-rating-info-procons-value b svg {
  margin-right: 8px;
  margin-left: -12px;
}
.nlc-rating-info-procons-value ul {
  list-style: none;
  padding-left: 15px;
  margin-bottom: 0;
}
.nlc-rating-info-procons-value ul li {
  margin-top: 15px;
  font-size: 14px;
}
.nlc-rating-info-providerlink {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 15px auto;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-providerlink {
    margin-bottom: 35px;
  }
}
.nlc-rating-info-providerlink a {
  background-color: #00B38C;
  border-radius: 16px;
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 12px 0px;
  width: 100%;
  margin: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  text-decoration: none;
}
.nlc-rating-info-providerlink a:hover {
  background-color: #2D8668;
}
.nlc-rating-info-providerlink a svg {
  position: relative;
  max-height: 32px;
  width: 16px;
  height: 28px;
  margin-left: 10px;
}
.nlc-rating-info-blue {
  background-color: #E5F0F6;
  border-radius: 0px 0px 12px 12px;
  padding: 25px 25px;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-blue {
    padding: 15px;
  }
}
.nlc-rating-info-blue p {
  font-size: 14px;
}
.nlc-rating-info-blue-contact {
  display: flex;
  flex-direction: row;
  padding-top: 15px;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-blue-contact {
    flex-direction: column;
  }
}
.nlc-rating-info-blue-contact div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.nlc-rating-info-blue-contact div a {
  color: #333333;
  text-decoration: none;
  font-size: 13px;
}
.nlc-rating-info-blue-contact div svg {
  margin-right: 10px;
  margin-left: 20px;
}
@media only screen and (max-width: 700px) {
  .nlc-rating-info-blue-contact div svg {
    flex-direction: column;
  }
}

.rating-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .rating-box {
    transform: scale(0.9);
  }
}
.rating-box-circle {
  border-radius: 50%;
  border: 2px solid #00B363;
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background-color: white;
}
.rating-box-circle-span {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}
.rating-box .star-box {
  width: 155px;
  height: 32px;
  background-color: #EAF9F3;
  margin-left: -30px;
  margin-top: 9px;
  border-radius: 16px;
}
.rating-box-info {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 5px;
}

.disclaimer-box {
  box-shadow: 2px 2px 5px 0px #999;
  padding: 20px 30px;
  margin-top: 50px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.disclaimer-box p {
  font-size: 16px;
}
@media only screen and (max-width: 700px) {
  .disclaimer-box p {
    font-size: 14px;
  }
}
.disclaimer-box b, .disclaimer-box strong {
  font-size: 17px;
  position: relative;
  margin-left: 20px;
}
@media only screen and (max-width: 700px) {
  .disclaimer-box b, .disclaimer-box strong {
    font-size: 14px;
  }
}
.disclaimer-box b::before, .disclaimer-box strong::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -25px;
  background-image: url(../images/tld-icon.svg);
  background-size: contain;
  margin-top: auto;
  margin-bottom: auto;
  bottom: 0;
  top: 0;
}

.hide-cards {
  display: none;
}

#more-cards-btn {
  width: 100%;
  padding: 15px;
  border-radius: 24px;
  text-align: center;
  outline: none;
  border: 2px solid #EC5D35;
  background-color: white;
  color: #EC5D35;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
}
#more-cards-btn:hover {
  background-color: #EC5D35;
  color: white;
}

.other-alternatives {
  text-align: center;
  font-size: 24px;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 700px) {
  .stock .nlc-content {
    margin-top: 45px;
  }
}
.stock .nlc-content-info {
  padding: 20px;
}
.stock .nlc-content-info-first {
  justify-content: center;
}
.stock .nlc-content-info-second {
  justify-content: center;
}
.stock .nlc-content-info-second-box {
  padding: 5px 15px;
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 700px) {
  .stock .nlc-content-info-second-box {
    width: 100%;
  }
}
.stock .nlc-content-info-second span {
  font-size: 14px;
}
.stock .nlc-content-info-second b {
  font-size: 16px;
}
.stock .nlc-content-info-third {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stock .nlc-content-info-third-list {
  padding: 0;
  margin: 0;
}
.stock .nlc-content-info-fourth {
  justify-content: center;
}
.stock .nlc-content-info-fourth-btn {
  margin: 0;
}

.cards-container {
  max-width: 1500px;
  margin: auto;
  width: 100%;
}

.container {
  max-width: 1150px;
  margin: auto;
}
@media only screen and (max-width: 900px) {
  .container {
    width: 90%;
  }
}
@media only screen and (max-width: 700px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

h1 {
  font-size: 45px;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  h4 {
    font-size: 25px;
  }
}

p {
  font-size: 16px;
}

* {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

.stars {
  color: #576271;
  font-size: 12px;
  text-align: right;
  position: relative;
  width: 105px;
  margin-left: 35px;
  height: 25px;
}
.stars .rating-upper {
  position: absolute;
  top: 6px;
  left: 0.04em;
  overflow-x: hidden;
}
.stars .rating-upper .inner-rating {
  background-image: url(../images/fill-stars.svg);
  background-repeat: no-repeat;
  height: 25px;
  width: 100%;
  background-size: 105px;
}
.stars .rating-lower {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
}
.stars .rating-lower .inner-rating {
  background-image: url(../images/empty-stars.svg);
  background-repeat: no-repeat;
  height: 25px;
  width: 100%;
  background-size: 105px;
}
.stars.orange .rating-lower .inner-rating {
  background-image: url(../images/orange-empty.svg);
}
.stars.orange .rating-upper .inner-rating {
  background-image: url(../images/orange-fill.svg);
}

#searchresult {
  margin-top: -40px;
}

.redirectmodal-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.caption {
  display: none;
}

.notification {
  background-color: white;
  position: fixed;
  left: 2vw;
  bottom: 5%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  border-top: 2px solid #1D275F;
  border-radius: 4px;
  transition: 0.5s linear;
  font-size: 12px;
}
.notification p {
  font-size: 12px;
}
.notification img {
  max-width: 100%;
  max-height: 55px;
}
.notification-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notification-hide {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s linear;
}

/*progressbar styling*/
.progressBar {
  position: fixed;
  top: 57px;
  left: 0;
  height: 7px;
  background-color: #EC5D35;
  width: 0%;
  z-index: 100;
  transition: width 0.2s ease-out;
}

.offerBtn {
  border: none;
  border-radius: 6px;
  background-color: #EC6541;
  color: rgb(255, 255, 255);
  padding: 8px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration-line: none !important;
  white-space: nowrap;
}
.offerBtn:hover {
  background-color: rgb(255, 139, 106);
}

/* "how we earn mony" - styling*/
.how-we-earn-money {
  position: absolute;
  top: 60px;
  z-index: 5;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .how-we-earn-money {
    top: 70px;
  }
}
.how-we-earn-money a {
  font-size: 13px;
  text-decoration: none;
  color: #1D275F;
  cursor: pointer;
}
.how-we-earn-money a:link {
  text-decoration: none;
}
.how-we-earn-money a:visited {
  text-decoration: none;
}
.how-we-earn-money a:hover {
  text-decoration: none;
}
.how-we-earn-money a:active {
  text-decoration: none;
}

.breadcrumbs {
  display: flex;
  padding: 0;
}
.breadcrumbs a {
  color: white;
  text-decoration: none;
}
.breadcrumbs li {
  list-style: none;
}
.breadcrumbs li:not(:first-child)::before {
  content: ">";
  margin: 0 5px;
}