@charset "utf-8";
@import url("normalize.css");

/* global */
:root {
  --black: #000;
  --black-rgb: 0, 0, 0;
  --camelback-mountain: #d4b889;
  --charcoal-grey: #383e4d;
  --cloudy-blue: #c5d3e0;
  --cool-grey: #a7a9b0;
  --cool-grey2: #90949c;
  --dark: #1a202c;
  --dark2: #222939;
  --dark2-rgb: 34, 41, 57;
  --dark3: #2d3443;
  --davys-grey: #585a60;
  --dingy-dungeon: #C9334E;
  --gunmetal: #4e5461;
  --leaf: #7a9c32;
  --light-grey-blue: #8cb2ce;
  --macaroni-and-cheese: #efbb34;
  --metallic-silver: #a7a9b0;
  --mid-blue: #1c6aa3;
  --midnight-express: #192436;
  --midnight-express2: #192437;
  --misty-rose: #F4E5E1;
  --pale-grey: #f4f4f5;
  --raisin-black: #212121;
  --sandstone: #caab72;
  --seaweed-green: #329c69;
  --silver: #d3d4d7;
  --silver-two: #e9eaeb;
  --shuttle-gray: #646974;
  --steel-grey: #7a7f88;
  --twitter: #4ea6ea;
  --warm-purple: #9a329c;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --youtube: #e62703;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* @media
	only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min--moz-device-pixel-ratio: 1.5),
	only screen and (min-device-pixel-ratio: 1.5){

  html,
  body{
    width:100%;
    overflow-x:hidden;
  }

} */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  -ms-overflow-style: none;
}
body {
  min-width: 360px;
}
a {
  font-weight: 900;
  text-decoration: none;
  color: #222939;
}
a[role="button"] {
  cursor: pointer;
}
a:active,
a:link,
a:visited,
a img:active,
a img:link,
a img:visited {
  outline: none;
  color: #222939;
}
.link {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
}
.link:visited {
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h1,
h2 {
  text-transform: uppercase;
}
p {
  margin: 0;
}
ul,
ol,
dl {
  margin: 0;
  padding: 0;
}
ol {
  counter-reset: item;
}

li {
  margin-bottom: 16px;
  list-style: none;
  position: relative;
  line-height: 1.6;
}
ol > li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-right: 2px;
  /* position: absolute;
	left: -24px; */
}
li > ol,
li > ul {
  margin-top: 16px;
  margin-left: 16px;
}
/* li > ol {
	list-style-type: decimal;
} */
li > ul > li {
  list-style-type: disc;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
td,
th {
  border: 1px solid var(--gunmetal);
  text-align: left;
  padding: 12px;
  color: var(--white);
  text-align: center;
}
th {
  background-color: var(--charcoal-grey);
}
tbody tr:nth-child(odd) {
  background-color: var(--dark2);
}
tbody tr:nth-child(even) {
  background-color: var(--dark3);
}
/* ~global */
body {
  background: #383e4d;
  color: #fff;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
}
body[data-lang="vn"] {
  font-family: "Roboto", Arial, sans-serif;
}
.content {
  background-color: #222939;
}
.inner {
  /* max-width: 1360px; */
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
.header {
  padding: 24px 0;
  position: relative;
  z-index: 2;
  width: 62%;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
  justify-content: center;
}
/* center logo for single market */
.header__logo {
  margin: 0 auto;
}
/* ~center logo for single market */

.btn {
  display: block;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 24px;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
.btn--gold {
  background-color: var(--sandstone);
  border: 1px solid var(--sandstone);
  color: var(--dark2);
}
.btn--gold:hover {
  background-color: var(--camelback-mountain);
}
.btn--hollow {
  color: var(--white);
  border: 1px solid var(--white);
  background: transparent;
}
.btn--hollow:hover,
.btn--hollow:focus,
.btn--hollow:active {
  background-color: rgba(var(--white-rgb), 0.1);
}
.header__langs {
  z-index: 1;
  line-height: normal;
  white-space: nowrap;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.header__langs img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.header__langs .sel-lang {
  padding-bottom: 10px;
}
.header__langs .sel-lang span {
  font-size: 0;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icons/icon-arrow-down-white.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 6px;
  width: 6px;
  height: 16px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.header__langs:hover .sel-lang span {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.header__langs .sel-lang .langs {
  margin: 0 0 0 6px;
}
.header__langs ul {
  list-style: none;
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 999;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  margin: 0;
  padding: 12px;
  background: #383e4d;
  border-radius: 8px;
  color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* NEW INSERT PAUL for dropdown CNY */
.black-txt {
  color: #222939;
}
.txt-white {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.sm-font {
  font-size: 18px;
}
.option-hover .spc-sm {
  margin-left: 8px;
}
.option-hover .spc-sm:after {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  content: url("../images/icons/icon-arrow-down-white.svg");
  margin-left: 45px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.gg .spc-sm:after {
  -webkit-transform: translateY(0%) rotate(-180deg);
      -ms-transform: translateY(0%) rotate(-180deg);
          transform: translateY(0%) rotate(-180deg);
}

/* ACTIVE BUTTON */
.option-hover.roll-active + .cn-label {
  display: block;
  -webkit-animation: fade 1s ease-in-out;
          animation: fade 1s ease-in-out;
}
.option-hover.roll-active .spc-sm:after {
  -webkit-transform: translateY(0%) rotate(-180deg);
      -ms-transform: translateY(0%) rotate(-180deg);
          transform: translateY(0%) rotate(-180deg);
}
/* FROM THE TNC */
.sports-btn {
  padding: 12px 10px;
  text-align: center;
  background-color: #caab72;
  width: 200px;
}
.sports-btn:nth-child(odd) {
  margin-bottom: 10px;
}
.sports-btn a {
  color: #fff;
  font-weight: bold;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
/* FROM BUTTON */
.link-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.pad-flex {
  margin: 10px 0 15px 0;
  gap: 20px;
}
/* END */
.header__langs ul li {
  position: relative;
  margin: 0;
  white-space: nowrap;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: left;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header__langs ul li:hover {
  background-color: #4e5461;
}
.header__langs ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__langs .sel-lang {
  cursor: pointer;
}
.header__langs .sel-lang:hover + ul,
.header__langs ul:hover {
  display: block;
}
.header__langs a {
  color: #fff;
  text-decoration: none;
}
.header__langs a span {
  vertical-align: middle;
  margin-left: 8px;
  font-size: 14px;
}
h2.head-line {
  color: var(--dark2);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  position: relative;
  margin-bottom: 48px;
  text-transform: uppercase;
}
h2.head-line:before {
  content: " ";
  width: 32px;
  height: 4px;
  background-color: var(--sandstone);
  position: absolute;
  bottom: -20px;
  left: calc(50% - 16px);
}

/* content */
.content__banner {
  background-image: url("../images/banner-desk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--dark2);
  background-position: top;
  margin: 0 auto;
  height: 908px;
  position: relative;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 56px;
}
.content__banner__texts {
  text-align: center;
  width: 100%;
  padding-right: 5%;
  margin-left: 80px;
}
.content__banner__texts__logo {
  display: block;
  margin: 0 auto 16px;
}
.content__banner__texts__logo > img {
  width: auto;
  height: 64px;
}
.content__banner__texts h1 {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
.content__banner__texts h2 {
  font-weight: 500;
  font-size: 40px;
  color: var(--white);
  line-height: 1.2;
}
.content__banner__texts > .btn {
  margin: 0 auto;
  font-size: 16px;
  padding: 20px 40px;
  border-radius: 36px;
  min-width: 240px;
  display: none;
  margin: 0 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content__banner__tnc a {
  color: var(--sandstone);
}
.content__banner__tnc a:hover {
  text-decoration: underline;
}
.content__banner__tnc__head {
  text-transform: uppercase;
  color: var(--cool-grey);
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding-bottom: 24px;
  display: none;
}
.content__banner__tnc__head:hover {
  text-decoration: underline;
}

/* slider - sports */
.content__slider {
  padding: 64px 0;
  background-color: var(--pale-grey);
}
.swiper {
  overflow: visible;
}
.swiper-holder {
  padding: 20px;
  margin: -20px -16px -20px -20px;
  overflow-x: clip;
}
.swiper--sports {
  width: 100%;
}
.swiper-slide {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.swiper-slide:last-child {
  margin-right: 0;
}
.swiper--sports__card {
  width: 427px;
  height: 249px;
  padding: 20px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
}
.swiper--sports__card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.swiper--sports__card:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.swiper--sports__card__ctas {
  position: absolute;
  bottom: 40px;
  width: 100%;
}
.swiper--sports__card:hover .btn--hollow {
  background: rgba(var(--white-rgb), 0.1);
}
/* ~slider - sports */
/* swiper btns */
.swiper-prev,
.swiper-next {
  width: 48px;
  height: 48px;
  background: var(--gunmetal);
  border-radius: 50%;
  top: calc(50% - 24px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.swiper-prev:hover,
.swiper-next:hover {
  background: var(--steel-grey);
}
.swiper-prev:active,
.swiper-next:active {
  background: var(--metallic-silver);
}
.swiper-prev {
  left: 16px;
}
.swiper-next {
  right: 16px;
}
.swiper-next:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/icons/icon-east.svg") no-repeat center center;
}
.swiper-prev:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/icons/icon-west.svg") no-repeat center center;
}
.swiper:hover .swiper-prev,
.swiper:hover .swiper-next {
  opacity: 1;
}
.swiper:hover .swiper-prev.swiper-button-disabled,
.swiper:hover .swiper-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
/* ~swiper btns */
/* m88 */
.content__m88 {
  padding: 56px 0;
  background-color: var(--white);
}
.content__m88__feats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.content__m88__feats__card {
  text-align: center;
  max-width: 292px;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.content__m88__feats__card__thumb {
  width: 180px;
  height: 160px;
  margin: 0 auto 16px;
  text-align: center;
  vertical-align: middle;
}
.content__m88__feats__card__thumb > img {
  width: auto;
  height: 100%;
}
.content__m88__feats__card h3 {
  color: var(--dark2);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.content__m88__feats__card p {
  color: var(--gunmetal);
  font-size: 16px;
}
/* ~m88 */
/* bottom */
.content__bottom {
  padding: 80px 0 40px;
  background: var(--pale-grey);
}
.content__bottom h3 {
  color: var(--gunmetal);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.content__bottom p {
  color: var(--gunmetal);
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}
/* ~bottom */
/* teaser */
.content__teaser {
  background-color: var(--dark2);
  width: 100%;
  /* height: 180px; */
  position: fixed;
  bottom: 0;
  z-index: 100;
  display: none;
}
.content__teaser__banner {
  background: url("../images/bg-teaser.jpg") no-repeat left top;
  background-size: contain;
  max-width: 1360px;
  width: 100%;
  height: 180px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* padding-top: 20px; */
}
.content__teaser__banner .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 420px;
}
.content__teaser__banner h1 {
  font-size: 32px;
  margin-bottom: 12px;
}
.content__teaser__banner h2 {
  font-weight: 700;
  font-size: 24px;
}
.content__teaser__banner .btn {
  padding: 16px 58px;
  text-align: center;
}
/* ~teaser */
/* footer */
.footer {
  background-color: #383e4d;
  margin-top: -1px;
  margin: auto;
  max-width: 1920px;
}
.footer .inner {
  padding: 0 24px;
}
.tnc {
  padding: 24px 0;
}
.tnc__head {
  padding: 20px 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  background-color: #222939;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.tnc__head:hover {
  background-color: #222939;
}
.tnc__head:after {
  content: " ";
  background: url("../images/icons/icon-arrow-down-white.svg") no-repeat center;
  width: 6px;
  height: 6px;
  position: absolute;
  top: calc(50% - 3px);
  right: 16px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.tnc__head.active:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  opacity: 0.5;
}
.tnc__head.active:after:hover {
  opacity: 0.5;
}
.tnc__head.active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: var(--gunmetal);
}
.tnc__content {
  width: calc(100% - 20px);
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 10px;
  display: none;
}
.tnc__content__table {
  margin-top: 56px;
  margin-left: -10px;
  width: calc(100% + 30px);
}
.tnc__content__table h5 {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.to-top {
  /* background-color: var(--dark2); */
  padding: 0;
}
.to-top .btn {
  margin: 0 auto 24px;
  display: none;
  padding: 14px 74px;
}
.to-top.active {
  padding: 0 0 24px;
  margin-top: -20px;
}
.to-top.active .btn {
  display: block;
}
.to-top hr {
  border: none;
  border-bottom: 1px solid var(--gunmetal);
  margin: 0;
}
.social {
  padding: 32px;
  background: var(--dark);
  display: none; /* hide placeholder of social media */
}
.social > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  gap: 16px;
}
.social__media__icon {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  background-color: var(--cool-grey2);
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.social__media__icon--twitter {
  -webkit-mask: url("../images/social/icon-twitter.svg");
  mask: url("../images/social/icon-twitter.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
}
.social__media__icon--twitter:hover {
  background-color: var(--twitter);
}
.social__media__icon--youtube {
  -webkit-mask: url("../images/social/icon-youtube.svg");
  mask: url("../images/social/icon-youtube.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
}
.social__media__icon--youtube:hover {
  background-color: var(--youtube);
}
.partners {
  background-color: #383e4d;
  position: relative;
}
.partners__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: space-between;
  /* border-top: 1px solid var(--shuttle-gray); */
  padding: 16px 0;
}
.partners__partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  gap: 12px;
}
.partners__partner > img {
  width: 40px;
  height: 40px;
}
.partners__partner__info__name {
  font-weight: 700;
  font-size: 12px;
  color: var(--cool-grey2);
  margin-bottom: 6px;
  white-space: nowrap;
  text-transform: capitalize;
}
.partners__partner__info__year {
  font-size: 12px;
  color: var(--cool-grey2);
}
.partners__partner--laliga p {
  color: var(--white);
}
.content__slider {
  display: none;
}
/* ~hidden sections - phase 2*/

.desk {
  display: block;
}
.mobi {
  display: none;
}

/* NEW FOOTER */
.laliga-logo-footer {
  text-align: left;
  flex-basis: 200px;
}
.laliga-logo-footer > * {
  display: inline-block;
  vertical-align: middle;
}
.laliga-logo-footer img {
  height: 40px;
}
.laliga-logo-footer > p {
  color: var(--cool-grey2);
  font-size: 12px;
  font-weight: 700;
}
.footer-text {
  flex-basis: calc(100% - 200px);
}
.footer-text p {
  color: var(--silver);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}
.footer-text p.copy {
  color: var(--cool-grey2);
  margin-top: 8px;
  /* border-left: 1px solid var(--cool-grey2); */
}
/* NEW FOOTER END */

/* FORM */
.content__banner__form {
  max-width: 720px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  /* margin-top: 124px; */
  margin-right: 80px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.content__banner__form__head {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #000;
  margin-bottom: 24px;
}
.content__banner__form__group {
  width: 100%;
  padding: 8px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #222939;
  border-radius: 8px;
}
.content__banner__form__group > label {
  color: var(--dark2);
  font-size: 14px;
  width: 140px;
  text-align: left;
  font-weight: 400;
  /* padding-left: 8px; */
  color: #222939;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 18px;
}
.input-hidden {
  display: none;
}
::-webkit-input-placeholder {
  color: #bdbfc4;
}
::-moz-placeholder {
  color: #bdbfc4;
}
:-ms-input-placeholder {
  color: #bdbfc4;
}
::-ms-input-placeholder {
  color: #bdbfc4;
}
::placeholder {
  color: #bdbfc4;
}

.content__banner__form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.content__banner__form__submit .btn {
  text-transform: none;
}
.transparent-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #fff;
}
.transparent-btn:hover {
  background-color: #383e4d;
}
.btn--gold {
  background-color: #caab72;
  color: #222939;
  border: none;
  outline: 0;
  text-align: center;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.btn--gold:hover {
  background-color: #d7c095;
  cursor: pointer;
}
.btn--gold:disabled,
.btn--gold.deact {
  border: 1px solid #e4d5b9;
  background-color: #e4d5b9;
  pointer-events: none;
  color: #caab72;
}
/* COUNTRY CODE */
.content__banner__form__group__over {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 520px;
}
.eye{
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/icon-eye-show.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 13px;
  right: 12px;
  cursor: pointer;
}
.eye.act {
  background-image: url("../images/icons/icon-eye-hide.svg");
}
.content__banner__form__group__over > input {
  width: 100%;
  border-radius: 60px;
  border: 0;
  outline: 0;
  padding: 15px 16px;
  border: 1px solid var(--silver);
}
.content__banner__form__group__over > input#mobile {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}
.content__banner__form__group__over > input:active, .content__banner__form__group__over > input:focus {
  font-weight: 700;
}
.content__banner__form__group__over__flag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--silver-two);
  padding: 12px 16px;
  border-radius: 60px;
  border: 1px solid var(--silver);
  width: 100%;
}
.content__banner__form__group--mobile .content__banner__form__group__over__flag {
  /* max-width: 162px; */
  margin-right: 8px;
  -ms-flex-preferred-size: calc(35% - 8px);
      flex-basis: calc(35% - 8px);
}
.country-flag {
  margin-right: 8px;
}
.country-flag > img {
  vertical-align: middle;
}
.content__banner__form__group__over__flag > input {
  color: var(--davys-grey);
  background-color: transparent;
  font-weight: 700;
  outline: 0;
  border: 0;
  width: 100%;
  pointer-events: none;
}
.content__banner__form__group__over__flag > input:disabled {
  -webkit-text-fill-color: var(--davys-grey);
  opacity: 1;
}
.content__banner__form__group__over__flag.locked:after {
  content: "";
  background: url("../images/icons/lock.png") no-repeat;
  width: 17px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
  display: block;
}
.content__banner__form__note {
  color: #a7a9b0;
  font-size: 14px;
  text-align: left;
  width: 100%;
  padding-left: 136px;
}
.content__banner__form__note--register {
  margin-top: 32px;
  margin-bottom: 32px;
  color: var(--dark2);
  text-align: right;
  font-weight: 400;
  padding-left: 0;
}
.content__banner__form__note a {
  font-weight: 700;
  text-decoration: underline;
}
.registered .content__banner__form .content__banner__form__head,
.registered .content__banner__form form {
  display: none;
}
.registered .content__banner__form {
  height: 634px;
}
.content__banner__success {
  display: none;
}
.registered .content__banner__form .content__banner__success {
  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;
  height: 100%;
}
.content__banner__success__group {
  width: 100%;
  max-width: 416px;
  text-align: center;
  color: var(--dark2);
}
.content__banner__success__check {
  margin-bottom: 24px;
}
.content__banner__success__group h4 {
  font-size: 20px;
  margin-bottom: 24px;
}
.content__banner__success__group p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.content__banner__success__group .btn {
  width: 100%;
}
label.error {
 -ms-flex-preferred-size: 100%;
     flex-basis: 100%;
 color: var(--dingy-dungeon);
 padding-left: 16px;
 margin-top: 8px;
}
input.error {
  border-color: var(--dingy-dungeon);
}
.content__banner__form__warn {
  display: none;
  color: var(--dingy-dungeon);
  font-size: 14px;
  font-weight: 700;
  margin: 32px 0;
  padding: 12px;
  background-color: var(--misty-rose);
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content__banner__form__warn.act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content__banner__form__warn > * {
  vertical-align: middle;
}
.content__banner__form__warn > img {
  margin-right: 12px;
}
/* FORM END */
/* footer */
.footer li a {
  color: var(--white);
}
/* ~footer */
@media (min-width: 2400px) {
  .content, .footer {
    zoom: 1.25;
  }
}
@media (min-width: 2800px) {
  .content,.footer {
    zoom: 1.5;
  }
}
@media (min-width: 3800px) {
  .content, .footer {
    zoom: 2;
  }
}

@media (max-width: 2399px) {
  .content {
    zoom: 1;
  }
}
@media (max-width: 1920px) {

}
@media (max-width: 1699px) {
  .content__banner {
    background-position: 25% center;
    background-size: 140%;
  }
  .content__banner__texts {
    margin-left: 32px;
  }
  .content__banner__texts__logo > img {
    height: 56px;
  }
  .content__banner__texts h1 {
    font-size: 56px;
  }
  .content__banner__texts h2 {
    font-size: 32px;
  }
  .content__banner__form {
    max-width: 600px;
    /* margin-top: 94px; */
    margin-right: 32px;
  }
  .content__banner__form__group__over {
    max-width: 385px;
  }
}
@media (max-width: 1289px) {
  .content__banner {
    background-image: url(../images/banner-mobi.jpg);
    background-size: auto 760px;
    background-position: center 30px;
    display: block;
    height: auto;
    padding-bottom: 40px;
  }
  .content__banner__texts {
    height: 720px;
    margin: 0 auto;
  }
  .content__banner__form {
    margin: 0 auto;
    max-width: 928px;
  }
  .content__banner__form__group {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .content__banner__form__group--mobile .content__banner__form__group__over__flag {
    -ms-flex-preferred-size: calc(30% - 8px);
        flex-basis: calc(30% - 8px);
  }
  .content__banner__form__group__over > input#mobile {
    -ms-flex-preferred-size: calc(70%);
        flex-basis: calc(70%);
  }
  .content__banner__form__group__over {
    max-width: 682px;
  }
  .content__banner__form__note {
    padding-left: 21%;
  }
  .footer-text {
    flex-basis: 50%;
  }
}

@media (max-width: 1023px) {
  .content__banner {
    padding: 32px;
    background-size: auto 620px;
    background-position: center top;
  }
  .content__banner__texts {
    height: 560px;
  }
  .content__banner__texts__logo > img {
    height: 48px;
  }
  .content__banner__texts h1 {
    font-size: 40px;
  }
  .content__banner__texts h2 {
    font-size: 22px;
  }
  .content__banner__form {
    padding: 24px 12px;
  }
  .content__banner__form__head {
    text-align: center;
    font-size: 20px;
  }
  .content__banner__form__group {
    display: block;
  }
  .content__banner__form__group > label {
    padding-left: 12px;
    margin-bottom: 8px;
    top: 0;
  }
  .content__banner__form__note {
    text-align: left;
    padding-left: 12px;
  }
  .content__banner__form__submit {
    display: block;
  }
  .content__banner__form__submit .btn {
    width: 100%;
  }
  .content__banner__form__group__over {
    max-width: 100%;
  }
  .content__banner__form__group--mobile .content__banner__form__group__over__flag {
    -ms-flex-preferred-size: calc(25% - 8px);
        flex-basis: calc(25% - 8px);
  }
  .content__banner__form__group__over > input#mobile {
    -ms-flex-preferred-size: calc(75%);
        flex-basis: calc(75%);
  }
  .tnc__head {
    font-size: 12px;
  }
  .tnc__content li {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .content__banner {
    padding: 24px 16px;
    background-size: auto 400px;
    background-position: center 20px;
  }
  .content__banner__texts {
    height: 380px;
  }
  .content__banner__texts__logo {
    margin-bottom: 8px;
  }
  .content__banner__texts__logo > img {
    height: 40px;
  }
  .content__banner__texts h1 {
    font-size: 28px;
  }
  .content__banner__texts h2 {
    font-size: 18px;
  }
  .content__banner__form {
    border-radius: 8px;
  }
  .content__banner__form__group--mobile .content__banner__form__group__over__flag {
    -ms-flex-preferred-size: calc(40% - 8px);
        flex-basis: calc(40% - 8px);
  }
  .content__banner__form__group__over > input#mobile {
    -ms-flex-preferred-size: calc(60%);
        flex-basis: calc(60%);
  }
  .content__banner__form__note--register {
    margin: 24px 0;
  }
  .registered .content__banner__form {
    height: auto;
    padding: 40px 12px 32px;
  }
  .content__banner__success__group h4 {
    font-size: 16px;
  }
  .content__banner__success__group p {
    padding: 0 5%;
  }
  .btn--gold {
    font-size: 14px;
  }
  .partners__group {
    flex-wrap: wrap;
  }
  .laliga-logo-footer {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .laliga-logo-footer > p {
    display: block;
  }
  .footer-text {
    flex-basis: 100%;
  }
  .footer-text p {
    font-size: 10px;
    text-align: center;
  }
  .footer-text p.copy {
    font-size: 12px;
  }
}

@media (max-width: 674px) {

}
@media (max-width: 660px) {

}
@media (max-width: 550px) {
  
}

@media (max-width: 375px) {
}

@media (hover: hover) {

}

/* fonts */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("../fonts/Lato-HairlineItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("../fonts/Lato-Hairline.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ~fonts */