@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-VariableFont_wght.otf);
  font-display: swap;
}
:root {
  --bg-dark: #1c1f33;
  --bg-darker: #101016;
  --bg-card: #2f334e;
  --bg-footer-card: #262a40;
  --text-white: #fff;
  --text-muted: #99a5c5;
  --accent-casino: #ff004e;
  --accent-blue: #0091FF;
  --accent-link: #63BCFF;
  --accent-link-hover: #A5D8FF;
  --accent-gold: #ffc63b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-black {
  font-weight: 900;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none;
}

.w-full {
  width: 100%;
}

header#header {
  background-color: #1c1f33;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: none;
}

header#header .header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

header#header .logo-block {
  padding: 15px 0;
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  align-items: center;
}

header#header .logo-block .logo img {
  height: 26px;
  max-height: 80px;
  max-width: 270px;
  min-width: 270px;
  width: 100%;
}

header#header .menu-block {
  flex: 1;
  display: flex;
  align-items: center;
}

header#header .menu-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

header#header .menu-wrapper #primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header#header .menu-wrapper #primary-menu>.menu-item {
  position: relative;
  border: none;
}

header#header .menu-wrapper #primary-menu>.menu-item>a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 6px;
  min-height: 54px;
  max-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  white-space: nowrap;
}

header#header .menu-wrapper #primary-menu>.menu-item>a:hover {
  color: rgba(255, 199, 61, 0.8);
  background: inherit;
}

header#header .menu-wrapper #primary-menu>.menu-item.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}

header#header .menu-wrapper #primary-menu>.menu-item.menu-item-has-children:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 38%;
  width: 9px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 13'%3E%3Cpath fill='none' stroke='white' stroke-width='2' d='M1 1l6 5.5L1 12'/%3E%3C/svg%3E") no-repeat 50%;
  background-size: contain;
  transform: rotate(90deg);
  transition: 0.3s;
}

header#header .menu-wrapper #primary-menu>.menu-item.menu-item-has-children:hover:after {
  transform: rotate(-90deg);
}

header#header .menu-wrapper #primary-menu>.menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  background-color: #434c62;
  border: 1px solid rgba(210, 224, 255, 0.4);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.6);
  padding: 14px;
  min-width: 430px;
  transform: translateX(-30%);
  z-index: 99999;
  border-radius: 5px;
  list-style: none;
  opacity: 0.98;
}

header#header .menu-wrapper #primary-menu>.menu-item .sub-menu:before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: 36%;
  width: 15px;
  height: 15px;
  background-color: #434c62;
  border-left: 1px solid rgba(210, 224, 255, 0.4);
  border-top: 1px solid rgba(210, 224, 255, 0.4);
  transform: rotate(45deg);
}

header#header .menu-wrapper #primary-menu>.menu-item:hover .sub-menu {
  display: flex;
  flex-wrap: wrap;
}

header#header .menu-wrapper #primary-menu>.menu-item .sub-menu .menu-item {
  width: 50%;
  padding: 0;
  margin: 0;
}

header#header .menu-wrapper #primary-menu>.menu-item .sub-menu .menu-item a {
  color: #dedede;
  font-size: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  min-height: auto;
  text-decoration: none;
}

header#header .menu-wrapper #primary-menu>.menu-item .sub-menu .menu-item a:hover {
  color: #ffc63b;
  background: none;
}

header#header .menu-wrapper.casino #primary-menu .menu-item.active>a,
header#header .menu-wrapper.casino #primary-menu .menu-item.current-menu-ancestor>a {
  color: #ff5050;
}

header#header .menu-wrapper.casino #primary-menu .menu-item>a:hover {
  color: #ff5050;
  background: inherit;
}

header#header .notification-btn {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  height: 32px;
  margin-left: auto;
  position: relative;
  width: 32px;
}

header#header .notification-btn img {
  height: 24px;
  width: 21px;
}

header#header .notification-btn span {
  background-color: #d90000;
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  height: 12px;
  line-height: 1;
  padding: 1.5px 0;
  position: absolute;
  right: 9px;
  top: 6px;
  text-align: center;
  width: 12px;
}

.legal-wrapper {
  background: #000;
  margin: 0;
  order: -1;
  padding: 3px 0;
}

.legal-wrapper .page_legal_header {
  color: #fff;
  font-size: 13px;
  margin-top: 0;
  text-align: center;
}

.legal-wrapper .legal-text-small {
  font-size: 13px;
}

.legal-wrapper .learnMore {
  display: inline-block;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.legal-wrapper .learnMore:hover {
  text-decoration: underline;
}

.disclosure-wrapper {
  position: relative;
}

.disclosure-wrapper .trigger {
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.disclosure-wrapper .trigger .disclosure-text {
  background: #fff;
  border: 1px solid rgba(152, 159, 170, 0.49);
  border-radius: 3px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.17);
  color: #555;
  display: none;
  font-size: 11px;
  line-height: 1.5;
  max-width: 430px;
  padding: 22px 19px;
  position: absolute;
  right: 0;
  text-align: left;
  text-transform: none;
  top: 26px;
  width: 95%;
  z-index: 100;
}

.disclosure-wrapper .trigger.has-hover:hover .disclosure-text {
  display: block;
}

.disclosure-wrapper .trigger .disclosure-text .close {
  cursor: pointer;
  height: 14px;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 14px;
}

.disclosure-wrapper .trigger .disclosure-text .after {
  background: #fff;
  border-left: 1px solid rgba(152, 159, 170, 0.49);
  border-top: 1px solid rgba(152, 159, 170, 0.49);
  content: "";
  height: 10px;
  position: absolute;
  right: 50%;
  top: -6px;
  transform: rotate(45deg);
  width: 10px;
}

.content-wrapper {
  position: relative;
  background-color: #000;
  overflow: hidden;
  background: url("../images/bg3.jpeg") no-repeat top center / contain;
  z-index: 1;
}
.content-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: -1;
}

.content-wrapper .background-desktop {
  background-position: top;
  background-repeat: no-repeat;
}

.ppc-list__bg {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ppc-list__header_banner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.ppc-list__header .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
  text-align: left;
  text-transform: capitalize;
  max-width: 262px;
  line-height: 30px;
}

.ppc-list__header .date {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #ff004e;
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
}

.ppc-list__second-title {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
}

.ppc-list__certificates {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3px;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.certificates-new {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  background-color: #1c1f33;
  padding: 4px 12px;
  border: 1px solid #2f334e;
  max-height: 30px;
  width: auto;
}

.certificate-block {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px 17px;
  padding-left: 25px;
  display: flex;
  align-items: center;
}

.certificate-block span {
  color: #fff;
  font-size: 9px;
  white-space: nowrap;
}

.last-bonus {
  border-radius: 1rem;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  background-color: #1c1f33;
  padding: 6px 16px;
  border: 1px solid #2f334e;
  white-space: nowrap;
}

.last-bonus .time {
  font-weight: 700;
}

.ppc-list__body {
  position: relative;
  z-index: 1;
}

.list-items-container {
  position: relative;
}

.ppc-list__item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.ppc-list__item:first-child:after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #ff004e;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: -1;
}

.ppc-list__item_logo {
  background-color: #1c1f33;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  position: relative;
}

.ppc-list__item_logo img {
  height: auto;
  max-height: 65px;
  width: 100%;
  max-width: 100%;
  display: block;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
}

.ppc-list__item_info {
  background-color: #2f334e;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 80%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.ppc-list__item_info .info-row {
  display: flex;
  flex-direction: row;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
}

.bonus-text-wrapper {
  width: 224px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.bonus-text-wrapper p {
  font-family: 'Poppins', sans-serif;
  line-height: 22px;
  margin-bottom: 0;
}

.bonus-text-wrapper p .big-bonus {
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  margin: 4px 0;
}

.divider-v {
  width: 1px;
  background-color: #1c1f33;
  align-self: stretch;
  flex-shrink: 0;
}

.rating-col {
  width: 110px;
  text-align: center;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 6px;
}

.score-stars .star-row {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.score-stars .star-row li {
  margin-right: 2px;
}

.score-stars .star-row li:last-child {
  margin-right: 0;
}

.score-stars .star-row li i.stars {
  display: flex;
  font-style: normal;
  font-size: 21px;
  height: 18px;
  width: 19px;
  line-height: 19px;
  color: #f5c22a;
}

.score-stars .star-row li i.stars:before {
  content: "";
  display: block;
  width: 19px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cpath fill='%23f5c22a' stroke='%23f5c22a' stroke-width='0.5' d='M9.5 0l2.3 6.5h6.8l-5.3 4 2 6.5-5.8-4.2-5.8 4.2 2-6.5-5.3-4h6.8z'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
}

.score-stars .star-row li.half i.stars:before {
  content: "";
  display: block;
  width: 19px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cdefs%3E%3ClinearGradient id='half'%3E%3Cstop offset='50%25' stop-color='%23f5c22a'/%3E%3Cstop offset='50%25' stop-color='%23ddd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23half)' stroke='%23f5c22a' stroke-width='0.5' d='M9.5 0l2.3 6.5h6.8l-5.3 4 2 6.5-5.8-4.2-5.8 4.2 2-6.5-5.3-4h6.8z'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
}

.score-stars .star-row li i.stars-empty:before {
  content: "";
  display: block;
  width: 19px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cpath fill='%23ddd' stroke='%23f5c22a' stroke-width='0.5' d='M9.5 0l2.3 6.5h6.8l-5.3 4 2 6.5-5.8-4.2-5.8 4.2 2-6.5-5.3-4h6.8z'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
}

.review-link {
  color: #63BCFF;
  font-size: 14px;
  margin-top: 8px;
  display: inline-block;
  cursor: pointer;
}

.review-link:hover {
  color: #A5D8FF;
  text-decoration: none;
}

.btn-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-btn-wrapper {
  display: inline-block;
  padding: 6.5px 5px;
  width: 168px;
  height: 44px;
  border-radius: 10px;
  background-color: #ff004e;
  background-image: linear-gradient(90deg, #ff004e, #ff004e);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.bonus-btn-wrapper:hover {
  background-color: #ff1a60;
  background-image: linear-gradient(90deg, #ff1a60, #ff1a60);
}

.bonus-btn-wrapper span.bonus-button {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  display: inline-block;
  position: relative;
  line-height: 2rem;
}

.bonus-btn-wrapper span.bonus-button svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 4px;
}

.visit-site {
  color: #63BCFF;
  font-size: 14px;
  margin-top: 16px;
  display: inline-block;
  position: relative;
}

.visit-site:hover {
  color: #A5D8FF;
  padding-right: 15px;
}

.visit-site:after {
  content: "\00BB";
  font-size: 16px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: -3px;
  transition: 0.5s;
}

.visit-site:hover:after {
  opacity: 1;
  right: -10px;
}

.legaltext__block {
  width: 100%;
  background-color: #262a40;
  position: relative;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 0;
  z-index: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.legaltext__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 0;
}

.legaltext__inner {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 8px 13px;
  width: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.legaltext__inner p {
  font-size: 13px;
  line-height: 10px;
  margin: 0;
}

.legaltext__inner p sup {
  font-family: 'Poppins', sans-serif;
  line-height: 10px;
  top: 0;
}

.toggle__readMore {
  cursor: pointer;
  pointer-events: auto;
  text-decoration: underline;
  color: #fff;
}

.full.tw-hidden {
  display: none;
}

.ribbon-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
}

.ribbon-container .ribbon-style {
  display: block;
  background: #0091FF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1;
  padding: 5px 16px;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 6px;
  white-space: nowrap;
  position: relative;
}

.ribbon-container .ribbon-style i.before,
.ribbon-container .ribbon-style i.after {
  display: none;
}

.cross-banners {
  position: relative;
  z-index: 1;
}

.cross-banner-1,
.cross-banner-2 {
  background: #101016;
  padding-top: 8px;
}

.cross-banner-background {
  position: relative;
  height: 105px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cross-banner-background:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 105px;
  background-repeat: no-repeat;
  background-position: 100% center;
  background-size: contain;
}

.cross-banner-background h2 {
  position: relative;
  font-size: 28px;
  padding: 32px 0 30px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  text-align: left;
  margin: 0;
  line-height: 28px;
}

.main-content {
  background-color: #000;
  display: flex;
  padding: 48px 0;
}

.main-content .col-lg-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
  padding: 48px 40px;
  background: #1c1f33;
  border-radius: 10px;
  margin: 0 auto;
}

.main-content .col-lg-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
  padding-left: 30px;
}

.main-content__title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1.04px;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}

.main-content p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 16px;
  text-align: left;
}

.main-content h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0 10px;
}

.main-content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 15px 0 8px;
}

.main-content ul {
  margin-bottom: 25px;
  padding-left: 16px;
  width: 100%;
  color: #fff;
}

.main-content ul li {
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 28px;
}

.main-content ul li::marker {
  color: #63bcff;
}

.main-content ul li a {
  color: #63bcff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 28px;
}

.seo-list ul {
  list-style: none;
  padding: 0;
}

.seo-list ul li a {
  color: #63bcff;
  text-decoration: underline;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 28px;
}

.brands-bottom-section-wrapper {
  background-color: #2f334e;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.brands-bottom-section-wrapper h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: capitalize;
}

.brands-bottom-section-wrapper h4 span {
  color: #ffc63b;
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 24px;
}

.brands-bottom-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.brand-card {
  background-color: #1c1f33;
  border-radius: 16px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  width: 240px;
}

.brand-card:last-child {
  margin-right: 0;
}

.brand-card__image {
  align-items: center;
  background: #262a40;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  height: 88px;
  justify-content: center;
}

.brand-card__image img {
  height: 30px;
  width: auto;
}

.brand-card__info {
  background-color: #1c1f33;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.brand-card__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.brand-card__title {
  color: #99a5c5;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.brand-card__score {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2%;
  line-height: 0.66666667;
  margin-bottom: 6px;
  text-align: center;
  display: block;
}

.brand-card__score:hover {
  text-decoration: none;
}

.brand-card__stars .star-row {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.brand-card__stars .star-row li {
  margin-bottom: 0;
  margin-right: 3px;
}

.brand-card__stars .star-row li:last-child {
  margin-right: 0;
}

.brand-card__stars .star-row li i {
  color: #ffc63b;
  display: flex;
  font-family: sans-serif !important;
  font-size: 16px;
  font-style: normal;
  height: 14.68px;
  line-height: 14.68px;
  width: 15.5px;
}

.brand-card__stars .star-row li i:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cpath fill='%23f5c22a' d='M9.5 0l2.3 6.5h6.8l-5.3 4 2 6.5-5.8-4.2-5.8 4.2 2-6.5-5.3-4h6.8z'/%3E%3C/svg%3E") 50%/contain no-repeat;
  content: "";
  height: 14.68px;
  position: absolute;
  width: 15.5px;
}

.brand-card__btn {
  background-color: #ff004e;
  border-radius: 8px;
  height: 40px;
  margin: 0 auto;
  max-width: 148px;
  padding: 9.5px 0;
  text-align: center;
  width: 100%;
  display: block;
}

.brand-card__btn:hover {
  text-decoration: none;
}

.brand-card__btn span {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

footer {
  color: #c9caca;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

footer .footer-contact-form {
  background-color: #151724;
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

footer .footer-contact-form .container {
  padding-bottom: 40px;
  position: relative;
}

footer .footer-contact-form .container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background-color: rgba(153, 165, 197, 0.2);
}

footer .footer-contact-form h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 18px;
}

footer .footer-contact-form .footer-menu {
  position: relative;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

footer .footer-contact-form .footer-menu:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(153, 165, 197, 0.2);
}

footer .footer-contact-form .footer-menu #footer-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-contact-form .footer-menu #footer-menu li {
  box-sizing: border-box;
  flex-basis: 50%;
  margin-right: 0;
  padding: 8px 8px 8px 0;
  border-bottom: none;
}

footer .footer-contact-form .footer-menu #footer-menu li a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

footer .footer-contact-form .footer-menu #footer-menu li a:hover {
  color: #f5c22a;
  text-decoration: none;
}

footer .footer-contact-form .footer-form {
  padding-left: 45px;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
  margin: 0 auto;
}

footer .footer-contact-form .text-block {
  font-weight: 300;
  margin-bottom: 0;
  color: #fff;
}

footer .footer-contact-form .message-form {
  margin-top: 20px;
}

footer .footer-contact-form .message-form .form-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

footer .footer-contact-form .message-form .col-xs-12 {
  padding: 0 5px;
}

footer .footer-contact-form .message-form .col-md-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

footer .footer-contact-form .message-form .col-md-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

footer .footer-contact-form .message-form .form-control {
  background-color: #1f212e;
  border: 1px solid #99a5c5;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0 0 0 10px;
  width: 100%;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

footer .footer-contact-form .message-form input.form-control {
  min-height: 42px;
}

footer .footer-contact-form .message-form textarea.form-control {
  min-height: 96px;
  padding-top: 6px;
}

footer .footer-contact-form .message-form .form-control::placeholder {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

footer .footer-contact-form .message-form .privacy-policy {
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.4;
  text-align: left;
}

footer .footer-contact-form .message-form .privacy-policy a {
  color: #63bcff;
  text-decoration: underline;
}

footer .footer-contact-form .message-form .contact-us-btn {
  background-image: linear-gradient(90deg, #ffc63b, #ffc63b);
  border-radius: 8px;
  box-shadow: none;
  padding: 9px 20px 8px;
  width: 100%;
  border: none;
  cursor: pointer;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

footer .footer-contact-form .message-form .contact-us-btn:hover {
  background-image: linear-gradient(90deg, #ffc63b, #ffc63b);
}

footer .footer-contact-form .message-form .button {
  margin: 0;
}

footer .footer-disclaimer-background {
  background-color: #151724;
  padding-top: 40px;
}

footer .footer-disclaimer-background .footer-additional {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 0;
}

footer .footer-disclaimer-background .footer-additional .col-md-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

footer .footer-disclaimer-background .footer-additional .col-md-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
  text-align: right;
}

footer .footer-disclaimer-background .footer-additional .logo-footer {
  max-width: 205px;
  padding: 0;
  width: 205px;
}

footer .footer-disclaimer-background .footer-additional .footer-license-images img {
  max-width: 175px;
  padding: 5px 8px;
}

footer .footer-disclaimer-background .footer-disclaimer {
  margin: 0;
  opacity: 0.7;
}

footer .footer-disclaimer-background .footer-disclaimer p {
  color: #99a5c5;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 10px;
}

footer .footer-disclaimer-background .footer-disclaimer .copyright {
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 2.4;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-static-license-images {
  display: none;
}

.notifications-bar {
  background-color: #fff;
  box-shadow: none;
  height: 100%;
  position: fixed;
  right: -435px;
  top: 0;
  transition: all 0.5s ease;
  width: 400px;
  z-index: 999;
}

.notifications-bar.show {
  box-shadow: -1px 0 6px rgba(0, 0, 0, 0.44);
  right: 0;
}

.notifications-bar:before {
  background: #4b4b4b;
  border-radius: 40px 0 0 42px;
  color: #fff;
  content: "";
  height: 60px;
  left: -33px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  z-index: 1;
}

.notifications-bar .notifications-bar__close {
  background: #222;
  border: 1px solid #323232;
  border-radius: 55px 37px 37px 55px;
  color: #fff;
  cursor: pointer;
  height: 49px;
  left: -28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 37px;
  z-index: 2;
}

.notifications-bar__wrapper {
  height: 100%;
}

.notifications-bar__header {
  background-color: #1c1c1c;
  padding: 25px 65px 30px;
  text-align: center;
}

.notifications-bar__header img {
  display: flex;
  height: 33px;
  margin: 0 auto 8px;
  width: 157px;
}

.notifications-bar__header b {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.31;
  text-align: center;
  text-transform: uppercase;
}

.notifications-bar__body {
  background: #4b4b4b;
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 25px 30px 155px;
}

.notifications-bar__item {
  background-color: #fff;
  border-radius: 6px 6px 30px 30px;
  box-shadow: 0 0 32px 0 #000;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
}

.notifications-bar__item:last-child {
  margin-bottom: 0;
}

.notifications-bar__item .logo {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  padding: 10px;
}

.notifications-bar__item .logo a img {
  max-height: 55px;
  max-width: 50%;
  padding-top: 10px;
}

.notifications-bar__item .wrapper {
  padding: 39px 21px 9px;
}

.notifications-bar__item .wrapper .title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 auto 4px;
  text-align: center;
  text-transform: uppercase;
  width: 95%;
}

.notifications-bar__item .wrapper .title p {
  margin: 0;
  padding: 0;
}

.notifications-bar__item .wrapper .new-get-bonus-button {
  background-color: #83cd00;
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(28, 44, 64, 0.17);
  color: #fff;
  display: flex;
  height: 44px;
  width: 200px;
  margin: 0 auto 8px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.notifications-bar__item .wrapper .new-get-bonus-button span {
  color: #000;
  text-transform: uppercase;
}

.notifications-bar__item .wrapper .visit-site {
  color: #2f75be;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 6px;
  text-align: center;
  text-decoration: none;
}

.notifications-bar__item .wrapper .t-and-c-text {
  color: #c7c7c7;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
  text-decoration: none;
}

.notifications-bar__item .wrapper .t-and-c-text p {
  margin: 0;
}

#cookie-container {
  background-color: #2e2e2e;
  border-top: 1px solid #4f4f4f;
  bottom: 0;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.3);
  display: none;
  left: 0;
  padding: 16px 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}

#cookie-container .flex-container {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
}

#cookie-container .left-part p {
  color: #fff;
  font-size: 12px;
  line-height: 1.18;
  margin-bottom: 0;
}

#cookie-container .left-part a {
  color: #fff;
  text-decoration: underline;
}

#cookie-container .right-part {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

#cookie-container .right-part .instruction {
  color: #fff;
  font-size: 12px;
  margin-right: 40px;
  text-decoration: underline;
  text-transform: capitalize;
}

#cookie-container .right-part #accept {
  align-items: center;
  background: #262626;
  border: 1px solid #ffc73d;
  border-radius: 103px;
  color: #ffc73d;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  height: 35px;
  justify-content: center;
  padding: 0 28px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
}

.smooth_scroller {
  position: fixed;
  right: 25px;
  bottom: 45px;
  cursor: pointer;
  z-index: 25;
  display: block;
  align-items: center;
  background-color: #111;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 5px 13px 0 rgba(0, 0, 0, 0.4);
  display: flex;
  height: 71px;
  justify-content: center;
  width: 71px;
}

.smooth_scroller img {
  width: 35%;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.w-full {
  width: 100%;
}

.p-0 {
  padding: 0;
}

@media (max-width: 991px) {
  header#header .logo-block {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    padding: 18px 0;
  }

  header#header .logo-block .logo img {
    height: 23px;
    width: 156px;
    min-width: 200px;
  }

  header#header .menu-block {
    flex: 0 0 100%;
    max-width: 100%;
  }

  header#header .menu-wrapper {
    display: none;
  }

  .ppc-list__item {
    flex-direction: column;
  }

  .ppc-list__item_logo {
    width: 100%;
    border-radius: 16px 16px 0 0;
    flex-direction: row;
  }

  .ppc-list__item_info {
    width: 100%;
    border-radius: 0 0 16px 16px;
  }

  .ppc-list__item_info .info-row {
    flex-direction: column;
    padding: 10px;
  }

  .bonus-text-wrapper,
  .rating-col,
  .btn-col {
    width: 100%;
    margin-bottom: 10px;
  }

  .divider-v {
    display: none;
  }

  .main-content {
    flex-direction: column;
    padding: 32px 0 48px;
    background-color: #1c1f33;
    background-image: none;
  }

  .main-content .col-lg-8,
  .main-content .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px;
  }

  .certificates-new {
    width: 100%;
    border-radius: 13px;
    justify-content: space-between;
    padding: 4px 12px;
  }

  .last-bonus {
    display: none;
  }

  .brand-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }

  footer .footer-contact-form .footer-menu {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  footer .footer-contact-form .footer-menu:after {
    display: none;
  }

  footer .footer-contact-form .footer-form {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    background-color: #262a40;
    padding: 45px 15px 30px;
  }

  footer .footer-contact-form .message-form .col-md-5,
  footer .footer-contact-form .message-form .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  footer .footer-disclaimer-background .footer-additional .col-md-4,
  footer .footer-disclaimer-background .footer-additional .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer-static-license-images {
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  .footer-static-license-images a {
    margin-right: 10px;
  }

  .footer-license-images {
    display: none;
  }
}

@media (min-width: 992px) {
  .ppc-list__header .title {
    font-size: 32px;
    max-width: 100%;
    display: inline-block;
  }

  .ppc-list__header .date {
    font-size: 30px;
    display: inline-block;
    margin-left: 10px;
  }

  .certificate-block span {
    font-size: 12px;
  }

  .last-bonus {
    display: block;
  }

  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
    .smooth_scroller {
      width: 36px;
      height: 36px;
    }

    .ppc-list__header_banner {
      padding-top: 40px;
    }
    .certificates-new {
      flex-wrap: wrap;
      max-height: 100%;
      gap: 4px;
    }

  .ppc-list__header .title {
    font-size: 24px;
    line-height: 30px;
  }

  .ppc-list__header .date {
    font-size: 18px;
  }

  .ppc-list__second-title {
    display: none;
  }

  .hero-bg-img {
    display: block;
  }

  .brands-bottom-section-wrapper h4 {
    font-size: 22px;
  }

  .brands-bottom-section-wrapper h4 span {
    font-size: 18px;
  }

  .notifications-bar {
    right: -325px;
    width: 325px;
  }

  .notifications-bar:before {
    display: none;
  }

  .notifications-bar .notifications-bar__close {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    border: 0;
    height: 36px;
    left: 280px;
    top: 9px;
    transform: translateY(0);
    width: 36px;
  }
    #cookie-container .flex-container {
      flex-direction: column;
      text-align: center;
      row-gap: 16px;
    }
}