body,
html {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #0B1423;
}

p,
ul li,
ol li {
  font-size: 18px;
  line-height: 28px;
  word-break: break-word;
}
@media (max-width: 768px) {
  p,
ul li,
ol li {
    font-size: 16px;
    line-height: 28px;
  }
}

ol,
ul {
  padding-left: 15px;
}

h1 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

h3 {
  font-size: 28px;
  line-height: 32px;
}

.hide {
  display: none;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: calc(100% - 30px);
}
@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1200px;
  }
}

.breadcrumbs {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  padding: 20px 0;
}
.breadcrumbs a {
  color: #0088E9;
  text-decoration: none;
}

.site-header__wrapper {
  background-color: black;
  overflow: hidden;
  padding: 60px 0 20px;
  margin-top: -10px;
}
.site-header__wrapper.no-space {
  padding: 0;
}
@media (min-width: 1200px) {
  .site-header__wrapper {
    padding: 10px 0 0px;
  }
}
.site-header__banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0 0 0;
}
.site-header__banner__text, .site-header__banner__image {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}
.site-header__banner__text {
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .site-header__banner__text > p:first-of-type {
    max-width: 82%;
    line-height: 36px;
  }
}
.site-header__banner__text p {
  color: white;
  font-size: 24px;
  line-height: 33px;
  margin-left: 0;
  margin-right: 0;
}
.site-header__banner__text h1 {
  color: white;
  font-size: 48px;
  line-height: 68px;
  margin: 0 0 24px 0;
  font-weight: 900;
}
.site-header__banner__text h1 span {
  color: #0088E9;
}
.site-header__banner__text form {
  width: 100%;
  margin-top: 40px;
}
.site-header__banner__text form .form__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-header__banner__text form p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 22px;
  opacity: 0.7;
  flex-basis: 100%;
}
.site-header__banner__text form input.email-input,
.site-header__banner__text form input.email-submit {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}
.site-header__banner__text form input.email-input {
  flex: 2;
  background-color: white;
  border: 0;
  color: #0B1423;
  padding: 28px 30px;
  font-size: 18px;
}
.site-header__banner__text form input.email-input:focus {
  border-radius: 0;
  border: 0;
  outline: 0;
}
.site-header__banner__text form input.email-submit {
  flex: 1;
  background-color: #0085EB;
  border: 0;
  color: #0B1423;
  padding: 22px 24px;
  font-size: 18px;
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.site-header__banner__text form label {
  margin-top: 10px;
  color: white;
  position: relative;
}
.site-header__banner__text form label input {
  border-radius: 0;
  border: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0;
  z-index: 2;
}
.site-header__banner__text form label input:checked ~ .checkmark {
  background-color: #0085EB;
}
.site-header__banner__text form label input:checked ~ .checkmark:after {
  display: block;
}
.site-header__banner__text form label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: white;
}
.site-header__banner__text form label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-header__banner__text form label .checktext {
  font-size: 14px;
  opacity: 0.7;
  margin-left: 22px;
}
.site-header__banner__text #signUp-done {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 22px;
  opacity: 0.8;
  flex-basis: 100%;
}
.site-header__banner__text #signUp-done span {
  display: block;
}
.site-header__banner__text #signUp-done span:first-of-type {
  margin-bottom: 8px;
}
.site-header__banner__image {
  flex: 1;
}
.site-header__banner__image img {
  width: 104%;
}
@media (min-width: 1200px) {
  .site-header__banner__image img {
    transform: translate(144px, -15px);
  }
}
@media (max-width: 992px) {
  .site-header__banner__text {
    z-index: 2;
    position: relative;
  }
  .site-header__banner__text p {
    font-size: 18px;
    line-height: 24px;
  }
  .site-header__banner__text h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .site-header__banner__text form p {
    font-size: 16px;
    line-height: 22px;
  }
  .site-header__banner__text form input.email-input {
    padding: 26px 28px;
    font-size: 16px;
  }
  .site-header__banner__text form input.email-input:focus {
    border-radius: 0;
    border: 0;
    outline: 0;
  }
  .site-header__banner__text form input.email-submit {
    padding: 24px 26px;
    font-size: 16px;
  }
  .site-header__banner__text #signUp-done {
    font-size: 16px;
    line-height: 22px;
  }
  .site-header__banner__text, .site-header__banner__image {
    flex: unset;
    display: unset;
    flex-direction: unset;
  }
  .site-header__banner__text img, .site-header__banner__image img {
    position: absolute;
    top: 0;
    right: -380px;
    max-width: unset;
    z-index: 0;
    opacity: 0.4;
  }
}
.site-header__banner.subpages {
  position: relative;
  min-height: 290px;
}
@media (min-width: 769px) {
  .site-header__banner.subpages img {
    position: absolute;
    top: 0;
  }
}
@media (max-width: 768px) {
  .site-header__banner.subpages {
    min-height: 190px;
  }
  .site-header__banner.subpages h1 {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .site-header__banner.subpages img {
    right: -430px;
  }
}

.site-section__first {
  padding: 32px 0;
  background-color: #F7F7F7;
}
.site-section__first__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-section__first__wrap img {
  height: 100%;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  margin-right: 32px;
}
.site-section__first__wrap p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.site-section__first__wrap p a {
  color: #0088E9;
  text-decoration: none;
}
.site-section__second {
  padding: 32px 0;
}
.site-section__second p {
  font-size: 16px;
}
@media (max-width: 768px) {
  .site-section__second p {
    font-size: 14px;
  }
}
.site-section__second p a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}
.site-section__second p span {
  padding: 0 10px;
}
.site-section__second p:last-of-type {
  margin-top: 40px;
}

footer {
  padding: 20px 0 60px;
}
footer .safe-gambling-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .safe-gambling-links {
    justify-content: space-around;
  }
}
footer .safe-gambling-links a, footer .safe-gambling-links > img {
  margin: 0.8% !important;
}
@media (max-width: 768px) {
  footer .safe-gambling-links a, footer .safe-gambling-links > img {
    margin-bottom: 20px !important;
  }
}
footer .safe-gambling-links img {
  height: 30px;
  width: auto;
}

/*# sourceMappingURL=default.css.map */
