:root {
  --font-family: 'Poppins', sans-serif;
  --content-width: 1240px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --mb-0-5: 5px;
  --mb-1: 10px;
  --mb-1-5: 15px;
  --mb-2: 20px;
  --mb-3: 30px;
  --mb-4: 40px;
  --mb-5: 50px;
  --transition: 0.2s ease-in-out;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Light.woff2) format('woff2');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Regular.woff2) format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Medium.woff2) format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-SemiBold.woff2) format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Bold.woff2) format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}
.page {
  overflow-x: hidden;
  height: 100%;
}
.page__body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-family: var(--font-family);
  font-size: 16px;
}
img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
a {
  text-decoration: none;
}
.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  background: #eee;
}
.main {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.is-hidden {
  display: none !important;
}
.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}
.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}
.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}
.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grid {
  display: -ms-grid;
  display: grid;
}
.centered {
  text-align: center;
}
.page--ios .dis-scroll {
  position: relative;
}
.privacy {
  padding: 100px 0 40px;
}
.privacy__col {
  padding: 20px;
  border-radius: 20px;
  background: rgba(37, 123, 13, 0.1);
}
.privacy__col:not(:last-child) {
  margin-bottom: 16px;
}
.privacy__title {
  margin-bottom: 16px;
  text-align: left;
  font-size: 24px;
  font-style: normal;
  font-weight: var(--bold-font);
  line-height: normal;
}
.privacy__subtitle {
  margin-bottom: 16px;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold-font);
  line-height: normal;
}
.privacy__text {
  font-size: clamp(0.875rem, 0.832rem + 0.22vw, 1rem);
  line-height: 150%;
}
.privacy__text:not(:last-child) {
  margin-bottom: 16px;
}
.privacy ul {
  list-style: square;
  padding-left: 40px;
  margin-bottom: 10px;
}
.privacy li:not(:last-child) {
  margin-bottom: 10px;
}
.privacy a {
  color: var(--white-color);
  text-decoration: underline;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
}
.popup {
  width: 90%;
  max-width: 400px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a1819),
    to(#000)
  );
  background: -o-linear-gradient(top, #1a1819 0, #000 100%);
  background: linear-gradient(180deg, #1a1819 0, #000 100%);
  -webkit-box-shadow: 0 0 20px 0 rgba(234, 46, 70, 0.5);
  box-shadow: 0 0 20px 0 rgba(234, 46, 70, 0.5);
}
.popup__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.popup__row span {
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.popup__row h2 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.popup p {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section__btn {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #eb697a;
  background: #000;
  padding: 20px 10px;
  color: #fff;
  font-size: clamp(1.125rem, 1.082rem + 0.22vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section__btn span {
  position: relative;
  z-index: 2;
}
.section__btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ea2e46;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.section__btn:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(198, 88, 88, 0.3);
  box-shadow: 0 0 20px 0 rgba(198, 88, 88, 0.3);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.section__btn:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .popup {
    padding: 16px;
  }
  .section__title {
    margin-bottom: 24px;
  }
  .section__text:not(:last-child) {
    margin-bottom: 16px;
  }
  .section__btn {
    padding: 10px 20px;
  }
}

.casinolicence-header__logo {
  text-decoration: none;
  display: inline-block;
}

.casinolicence-header__logo-bg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0038ff;
  color: #fff;
  padding: 5px 20px 5px 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.casinolicence-header__logo-img {
  width: 14px;
  height: auto;
  display: block;
}

.casinolicence-header__logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
