@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

@keyframes ukRedBorderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}
@keyframes ukRedGlowPulse {
  0% {
    box-shadow:
      0 0 10px rgba(255, 0, 38, 0.35),
      0 0 22px rgba(255, 0, 38, 0.22),
      0 8px 24px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 0, 38, 0.75),
      0 0 38px rgba(255, 0, 38, 0.45),
      0 8px 24px rgba(0, 0, 0, 0.45);
  }
  100% {
    box-shadow:
      0 0 10px rgba(255, 0, 38, 0.35),
      0 0 22px rgba(255, 0, 38, 0.22),
      0 8px 24px rgba(0, 0, 0, 0.35);
  }
}

:root {
  --main-bg: #081a34;
  --page-content-bg: rgba(8, 26, 52, 0.55);
  --page-bg: transparent;
  --footer: transparent;
  --header: #081a34;
  --main-font: #fff;
  --page-font: rgba(255, 255, 255, 0.9);
  --highlight: #4da3ff;
  --title: #ffd54a;
  --btn: #00c500;
  --btn-hover: #00a804;
  --black: #000;
  --white: #fff;
  --error: #ff2a2a;
}

.offers-page-container {
  margin-top: 1rem;
  padding: 0 1rem;
}
.offers-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 1rem 1.5rem 2rem;
  box-sizing: border-box;
}
.offer-block {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0.75rem auto 0;
  display: flex;
  flex-direction: column;
  padding: 2px;
  box-sizing: border-box;
  border-radius: 4px;
  background: linear-gradient(90deg, #4d0000 0%, #ff1a1a 20%, #7a0000 40%, #ff2b2b 60%, #5c0000 80%, #ff1a1a 100%);
  background-size: 250% 250%;
  animation: ukRedBorderMove 5.5s linear infinite, ukRedGlowPulse 2.2s ease-in-out infinite;
}
.offer-block:first-child {
  margin-top: 0;
}
.offers-page-container .offer-block:nth-child(n+4) {
  display: none;
}
.mobile-link {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.offer-inner-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #081a34 0%, #0e2d5c 35%, #7a001e 70%, #3a000f 100%);
  min-height: 131px;
  color: #fff;
  border-radius: 2px;
}
.offer-left-block,
.offer-right-block {
  width: 50%;
  display: flex;
  align-items: center;
  background: transparent;
}
.offer-left-block {
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0.5rem;
}
.offer-right-block {
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
}
.offer-logo {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem 0;
  margin-top: 0.5rem;
  background-color: transparent;
  border-radius: 0;
  outline: none;
}
.offer-logo:hover {
  opacity: 0.92;
}
.offer-logo img {
  width: 100%;
  max-width: 170px;
  height: auto;
  padding: 0;
}
.rating-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0 0;
  gap: 0.15rem;
}
.offer-votes,
.offer-score {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-votes > span {
  display: none;
}
.stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.stars-container:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '★★★★★';
  color: #d3d3d3;
}
.stars-container:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '★★★★★';
  color: #ffcb0f;
  overflow: hidden;
}
.star-100:after {
  width: 100%;
}
.star-90:after {
  width: 90%;
}
.star-80:after {
  width: 80%;
}
.star-70:after {
  width: 70%;
}
.star-50:after {
  width: 50%;
}
.offer-votes span {
  font-size: 1rem;
  font-weight: 600;
}
.offer-score {
  align-items: center;
  padding-right: 0;
}
.offer-score-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.site-rating {
  margin-bottom: 0.15rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #4da3ff;
}
.site-rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
}
.offer-right-block {
  background-color: transparent;
  border-radius: 0;
}
.offers-page-container .offer-right-block {
  border-radius: 0;
}
.offer-right-block:hover {
  background-color: transparent;
}
.welcome-bonus-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  line-height: 1.45rem;
}
.welcome-bonus-block span.welcome-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.welcome-bonus-block span:first-of-type {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #ffd54a !important;
  text-shadow: 0 1px 10px rgba(255, 213, 74, 0.7);
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-top: 0.35rem;
  margin-bottom: 0.4rem !important;
}
.welcome-bonus-block span:not(:first-of-type) {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.welcome-bonus-block span {
  font-weight: 600;
}
.welcome-bonus-block ul {
  opacity: 0.9;
}
.btn-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.35rem;
}
.offer-btn {
  width: auto;
  min-width: 11rem;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: none;
  background: #00c500 !important;
  border: none;
  box-shadow:
    0 0 15px rgba(0, 255, 120, 0.7),
    0 0 30px rgba(0, 255, 120, 0.4);
  transform: scale(1);
  -webkit-transition: transform 0.15s ease-out, background 0.15s ease-out;
  transition: transform 0.15s ease-out, background 0.15s ease-out;
  text-decoration: none;
}
.offer-btn:hover {
  transform: translateY(-1px);
  background: #00a804 !important;
}
.flag {
  position: absolute;
  top: 0.5rem;
  left: 0;
  z-index: 5;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, #ff2a2a, #c3002f);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 5px;
  box-shadow:
    0 0 8px rgba(255, 42, 42, 0.65),
    0 2px 6px rgba(0, 0, 0, 0.3);
  max-width: calc(100% - 1rem);
  line-height: 1.2;
}
.flag:empty {
  display: none;
}

.payments-block {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: -8px;
}
@media (max-width: 1024px) {
  .payments-block {
    flex-wrap: wrap;
  }
}
.payments-block .img-block {
  width: 15%;
  margin-right: 10px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .payments-block.wrap-condition .img-block {
    width: 23%;
    margin: 0 2px 5px 2px;
    text-align: center;
  }
}
.payments-block .img-block img {
  width: 25px;
}
.payments-block .img-block img:last-child {
  margin-right: 0;
}
.label-container {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .mobile-link {
    display: block;
  }
  .offer-inner-block {
    flex-direction: column;
  }
  .offer-left-block,
  .offer-right-block {
    width: 100%;
  }
  .offer-right-block {
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0.5rem 1rem;
    border-radius: 0;
  }
  .welcome-bonus-block {
    margin-bottom: 0.5rem;
  }
  .btn-block,
  .welcome-bonus-block {
    width: 100%;
  }
  .offer-left-block {
    flex-direction: column;
    padding-top: 1.75rem;
  }
  .offer-logo {
    width: 100%;
    max-width: 170px;
    margin-bottom: 0.25rem;
    background-color: transparent;
    border-radius: 0;
    padding: 0.25rem;
  }
  .rating-container {
    width: 100%;
    justify-content: center;
    padding: 0.25rem 0 0.5rem;
  }
  .offer-votes {
    align-items: center;
  }
  .offer-btn {
    border-radius: 30px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    box-shadow:
      0 0 15px rgba(0, 255, 120, 0.7),
      0 0 30px rgba(0, 255, 120, 0.4);
    -webkit-transition: transform 0.15s ease-out, background 0.15s ease-out;
    transition: transform 0.15s ease-out, background 0.15s ease-out;
  }
  .offer-btn:active,
  .offer-btn:hover {
    transform: translateY(-1px);
    background: #00a804 !important;
  }
}


html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--main-font);
  background: linear-gradient(180deg, #081a34 0%, #3a000f 100%);
  background-color: #081a34;
  min-height: 100vh;
  overflow-x: hidden;
}

.mobile-div-container {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--main-font);
  background: linear-gradient(180deg, #081a34 0%, #3a000f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

footer {
  background: transparent;
}
a {
  color: var(--main-font);
}
.home-page-cover {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  padding: 0 0 16.7rem;
}
.main-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.sub-header-container {
  position: relative;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url("https://i.ibb.co/rf1qJjHz/closeup-union-jack-flag.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-header-text {
  width: 100%;
}
.sub-header-container h1 {
  margin: 0 0 0.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.sub-header-container p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
}
.advertiser-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .2rem 1.3rem;
  text-align: end;
  background-color: rgba(8, 26, 52, 0.85);
}
.advertiser-container p {
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #ffffff25;
}
.content-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
}
.content-container h4 {
  text-transform: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffd54a;
  margin-top: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.content-container h4:first-child {
  margin-top: 0;
}
.content-container h4,
.content-container ul,
.content-container p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
}
.content-container p strong {
  font-weight: 700;
}
.content-container ul {
  list-style-type: disc;
  padding-left: 2.4rem;
}
.adv-footer-container h4 {
  margin-bottom: .5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  text-transform: none;
}
.adv-footer-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.3rem;
}

.view-footer-links>a:not(:last-child) {
  font-size: 0.875rem !important;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #bcbbb6;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .main-container {
    max-width: 520px;
  }
  .sub-header-container {
    background-position: center;
  }
}
@media (max-width: 767px) {
  body {
    background: linear-gradient(180deg, #081a34 0%, #3a000f 100%);
  }
  .main-container {
    max-width: 100%;
  }
  .sub-header-container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
      url("https://i.ibb.co/rf1qJjHz/closeup-union-jack-flag.jpg");
    background-size: cover;
    background-position: center;
    background-color: #081a34;
  }
  .sub-header-text {
    width: 100%;
  }
}
@media (max-width: 400px) {
  /*.sub-header-container {*/
  /*  background-position: -40% 0;*/
  /*}*/
}


/* Exit popup */

.modal_overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .7);
  display: none;
  align-items: center;
  justify-content: center;
}


/* .exit_popup {
  background-image: url("exit_popup_bg.png");
  padding: 10px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 800px;
  height: 400px;
  padding: 20px 60px 20px 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.exit_popup_close_btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.exit_popup_close_btn:hover {
  text-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.exit_popup_img {
  width: 350px;
}

.popup_title {
  font-size: 28px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 15px;
}

.popup_text {
  font-size: 16px;
  margin-bottom: 15px;
}

.popup_text .highlight {
  font-weight: bold;
}

.popup_btn {
  background-color: #00b6cf;
  text-transform: uppercase;
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
  padding: 15px 50px;
  border-radius: 3px;
  width: 100%;
  display: block;
  text-align: center;
  transition: all .2s ease-in-out;
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}

.popup_btn:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #00aac0;
} */

.popWrap {
  width: 700px;
}

.popHeading {
  background: #124da8;
  text-align: center;
}

.popHeading h3 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  padding: 30px 0px 25px;
  font-weight: 500;
}

.popBody {
  background: url(https://www.top10casinositesuk.co.uk/wp-content/plugins/popupmanager/image/popBg.jpeg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 55px 0px 55px;
}

.popItem {
  width: 41%;
  background: #fff;
  border-radius: 25px;
  text-align: center;
  padding: 15px;
  box-shadow: 0px 0px 20px #404040c9;
  margin: 0px 15px 0px;
}

.popItem img {
  max-width: 100%;
}

.popTimer {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 99;
  background: #fff;
  padding: 10px 25px;
  border-radius: 16px;
  margin-left: -114px;
  font-weight: 500;
}
/* 
.popItem .bonus-block {
  min-height: 135px;
} */

.popItem .bonus-block h2 {
  margin-bottom: 5px;
  font-size: 25px;
  margin-top: 10px;
  font-weight: 700;
  color: #000;
}

.popItem .bonus-block h4 {
  font-size: 25px;
  font-weight: 500;
  margin: 2px 0px 15px;
  color: #000;
}

.popItem a {
  background: #004fa5;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  padding: 13px 35px;
  border-radius: 10px;
  transition: none;
  margin-bottom: 20px;
}

.popItem p {
  margin-bottom: 0;
  font-size: 10px;
  color: #808080;
  margin-top: 5px;
}

.ddexitpop {
  border: none !important;
  border-radius: 5px;
  padding: 0 !important;
}

div#news-signup_close {
  right: 0;
  top: 3px;
  font-size: 30px !important;
  color: #ffffff;
  opacity: 0.8;
  width: 35px !important;
  height: 35px !important;
}

@media (max-width: 767px) {
  .popWrap {
      width: 90%;
      position: absolute;
      top: 0;
  }
  .popBody {
      align-items: center;
  }
  .popItem {
      width: 90%;
  }
  .popItem .bonus-block h2 {
      font-size: 21px;
  }
  .popItem .bonus-block h4 {
      font-size: 20px;
  }
  .modal_overlay {
      display: none !important;
  }
}

@media (max-width: 550px) {
  .popBody {
      flex-direction: column;
      padding: 25px 0px;
  }
  .popItem {
      margin: 10px;
      width: 90%;
  }
  .popItem .bonus-block {
      min-height: auto;
  }
}

@media (max-width: 350px) {
  .popHeading h3 {
      font-size: 28px;
  }
  .popItem .bonus-block h2 {
      font-size: 19px;
      line-height: 24px;
  }
  .popItem .bonus-block h4 {
      font-size: 17px;
      line-height: 21px;
  }
  .popItem a {
      font-size: 18px;
      padding: 10px 21px;
  }
}


/* End of Exit popup*/
