.matches__wrapper {

}
.matches__wrapper--hidden {
  display: none;
}
.groups__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.groups__wrapper--hidden {
  display: none;
}
.groups__wrapper--errors {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15px;
  margin-bottom: 15px;
}
.group__wrapper--third-place-table {
  grid-column: 2;
}
@media (max-width: 992px) {
  .groups__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .group__wrapper--third-place-table {
    grid-column: auto;
  }
}
@media (max-width: 767px) {
  .groups__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.group__wrapper {
  background-color: #002C5C;
  border-radius: 8px;
  color: #fff;
}
.group__wrapper--table,
.group__wrapper--third-place-table,
.table-error-wrapper {
  background-color: #fff;
  color: #000;
  border: 1px solid #12121233;
}
.group__heading {
  background-color: #004990;
  color: #fff;
  border-radius: 8px 8px 0px 0px;
  padding: 24px 40px;
  font-family: var(--awb-custom_typography_3-font-family);
  font-weight: 700;
  font-style: var(--awb-custom_typography_3-font-style);
  font-size: 24px;
  letter-spacing: var(--awb-custom_typography_3-letter-spacing);
  text-transform: var(--awb-custom_typography_3-text-transform);
  --fontSize: 18;
  --minFontSize: 18;
  line-height: var(--awb-custom_typography_3-line-height);
}
.group__wrapper--table .group__heading,
.group__wrapper--third-place-table .group__heading,
.table-error-wrapper .group__heading {
  text-align: center;
}
.group__wrapper .teams {
  padding: 32px 40px 34px;
}
@media (max-width: 480px) {
  .group__wrapper .teams {
    padding: 24px;
  }
}
.team__wrapper {
  display: grid;
  width: 100%;
  align-items: center;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.team__wrapper span {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--awb-custom_typography_3-font-family);
}
@media (max-width: 480px) {
  .team__wrapper span {
    font-size: 20px;
  }
}
.team__flag {
  width: 48px;
  height: 48px;
}
.team__flag[data-table-flag] {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
@media (max-width: 480px) {
  .team__flag[data-table-flag] {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }
}
.matches-group__wrapper {
  margin-bottom: 25px;
}
.matches-group__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border-bottom: 1px solid;
}
.matches-group__name {
  font-family: var(--awb-custom_typography_4-font-family);
  font-weight: var(--awb-custom_typography_4-font-weight);
  font-style: var(--awb-custom_typography_4-font-style);
  margin: 0;
  font-size: 28px;
  letter-spacing: var(--awb-custom_typography_4-letter-spacing);
  text-transform: var(--awb-custom_typography_4-text-transform);
  --fontSize: 28;
  --minFontSize: 28;
  line-height: var(--awb-custom_typography_4-line-height);
}
.accordion__trigger {
  cursor: pointer;
}
.accordion__trigger:after {
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('../images/icons/chevron.svg');
  content: "";
  position: relative;
  height: 24px;
  width: 24px;
  transform: rotate(90deg);
  padding: 5px;
  transition: transform 1s ease-in;
}
.accordion__trigger.active:after {
  transform: rotate(-90deg);
}
.accordion__panel {
  overflow: hidden;
  transition: max-height 1s ease-in;
  max-height: 0;
}

.matches-group__matches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .matches-group__matches {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .matches-group__matches {
    grid-template-columns: repeat(1, 1fr);
  }
}
.match__wrapper {
  text-align: center;
  border: 1px solid #12121233;
  border-radius: 8px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.match__heading {
  background-color: #004990;
  color: #fff;
  border-radius: 8px 8px 0px 0px;
  padding: 24px 15px;
  font-family: var(--awb-custom_typography_3-font-family);
  font-weight: 700;
  font-style: var(--awb-custom_typography_3-font-style);
  font-size: 24px;
  letter-spacing: var(--awb-custom_typography_3-letter-spacing);
  text-transform: var(--awb-custom_typography_3-text-transform);
  --fontSize: 18;
  --minFontSize: 18;
  line-height: var(--awb-custom_typography_3-line-height);
}
.match__date {
  font-weight: 400;
  font-size: 16px;
  color: #131313;
  margin-bottom: 15px;
  margin-top: 14px;
}
.match__teams {
  width: 100%;
}
.match__teams td {
  width: 47%;
  padding-bottom: 5px;
  text-align: center;
}
.match__teams td:nth-of-type(2) {
  text-align: center;
  width: 6%;
  font-weight: 700;
}
.match__teams--names {
  font-weight: 700;
  font-size: 24px;
  color: #131313;
}
@media (max-width: 767px) {
  .match__teams--names {
    font-size: 16px;
  }
}
.match__input[type=number] {
  font-size: 36px;
  width: 88px;
  height: 66px;
  padding: 5px;
  text-align: center;
  -moz-appearance: textfield;
  background-color: #EDF3F8;
  color: #000000;
}
.match__input::-webkit-outer-spin-button,
.match__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.match__venue {
  margin-top: 29px;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #131313;
}
.euros-button {
  --button_accent_color: var(--awb-custom_color_33);
  --button_accent_hover_color: var(--awb-custom_color_33);
  --button_border_hover_color: var(--awb-custom_color_33);
  --button_gradient_top_color: var(--awb-custom_color_15);
  --button_gradient_bottom_color: var(--awb-custom_color_15);
  --button_gradient_top_color_hover: var(--awb-custom_color_16);
  --button_gradient_bottom_color_hover: var(--awb-custom_color_16);
  padding: 13px 29px;
  line-height: 17px;
  font-size: 14px;
  background: var(--button_gradient_top_color);
  color: var(--button_accent_color);
  border-color: var(--button_border_color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  font-family: var(--button_typography-font-family);
  font-weight: var(--button_typography-font-weight);
  font-style: var(--button_typography-font-style,normal);
  letter-spacing: var(--button_typography-letter-spacing);
  border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
  border-style: solid;
  border-radius: var(--button-border-radius-top-left,0) var(--button-border-radius-top-right,0) var(--button-border-radius-bottom-right,0) var(--button-border-radius-bottom-left,0);
  text-transform: var(--button_text_transform);
  transition: all .2s;
  margin: var(--button_margin-top) var(--button_margin-right) var(--button_margin-bottom) var(--button_margin-left);
}
.euros-button:hover {
  background: var(--button_gradient_top_color_hover);
  color: var(--button_accent_hover_color,var(--button_accent_color));
  border-color: var(--button_border_hover_color);
}
@media (max-width: 767px) {
  .euros-button {
    width: 100%;
  }
}
.stage__next {
  display: none;
  --button_accent_color: var(--awb-custom_color_33);
  --button_accent_hover_color: var(--awb-custom_color_33);
  --button_border_hover_color: var(--awb-custom_color_33);
  --button_gradient_top_color: var(--awb-custom_color_13);
  --button_gradient_bottom_color: var(--awb-custom_color_13);
  --button_gradient_top_color_hover: var(--awb-custom_color_14);
  --button_gradient_bottom_color_hover: var(--awb-custom_color_14);
  --button_text_transform: var(--awb-custom_typography_1-text-transform);
}
.stage__next--show {
  display: block;
}
@media (max-width: 767px) {
  .stage__progress {
    text-align: center;
  }
}
.matches-group__bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .matches-group__bottom {
    flex-direction: column;
    gap: 15px;
  }
}
.matches-group__bottom--hidden {
  display: none;
}
.matches-group__bottom--single {
  justify-content: flex-end;
}
.table-error-wrapper table,
.group__wrapper table {
  width: 100%;
}
.table-error-wrapper th,
.table-error-wrapper td,
.group__wrapper th,
.group__wrapper td {
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}
.table-error-wrapper td:first-of-type,
.group__wrapper td:first-of-type {
  text-align: left;
}
.group__wrapper--table table,
.group__wrapper--third-place-table table,
.table-error-wrapper table {
  margin-bottom: 8px;
  border-spacing: 0;
}
.group__wrapper--table tr:first-of-type,
.group__wrapper--third-place-table tr:first-of-type,
.table-error-wrapper tr:first-of-type {
  background: #1212120D;
}
.group__wrapper--table tr:first-of-type th,
.group__wrapper--third-place-table tr:first-of-type th,
.table-error-wrapper tr:first-of-type th {
  padding: 12px 0;
}
.group__wrapper th:nth-of-type(2),
.group__wrapper td:nth-of-type(2) {
  width: 50px;
}
.team-pos {
  display: flex;
  align-items: center;
}
.team-pos div:first-of-type {
  margin: 10px 12px;
  width: 4px;
  height: 24px;
  background-color: #0BB04B;
}
@media (max-width: 480px) {
  .team-pos div:first-of-type {
    margin: 10px 4px;
  }
}
.group__wrapper--table tr[data-row="2"] .team-pos div:first-of-type,
.table-error-wrapper:not([data-group="third-place"]) tr[data-row="2"] .team-pos div:first-of-type {
  background-color: #FA972C;
}
.group__wrapper--table tr[data-row="3"] .team-pos div:first-of-type,
.table-error-wrapper:not([data-group="third-place"]) tr[data-row="3"] .team-pos div:first-of-type,
.group__wrapper--third-place-table tr[data-row="4"] .team-pos div:first-of-type,
.group__wrapper--third-place-table tr[data-row="5"] .team-pos div:first-of-type,
.table-error-wrapper[data-group="third-place"] tr[data-row="4"] .team-pos div:first-of-type,
.table-error-wrapper[data-group="third-place"] tr[data-row="5"] .team-pos div:first-of-type {
  background-color: #E31835;
}
.table-padding {
  width: 8px;
}
.group__wrapper--table td:not(.table-padding),
.group__wrapper--third-place-table td:not(.table-padding),
.table-error-wrapper td:not(.table-padding) {
  border-bottom: 1px solid #1212120D;
}
.table-error-wrapper td[data-team-pos] {
  width: 50px;
}
@media (max-width: 480px) {
  .table-error-wrapper td[data-team-pos] {
    width: 28px;
  }
}
th[data-team-name],
td[data-team-name] {
  text-align: left;
  font-weight: 600;
}
td[data-team-p],
td[data-team-gf],
td[data-team-gd],
td[data-team-pts] {
  width: 36px;
}
@media (max-width: 480px) {
  td[data-team-p],
  td[data-team-gf],
  td[data-team-gd],
  td[data-team-pts] {
    width: 22px;
  }
}
td[data-team-pts] {
  font-weight: 600;
}
td[data-team-name] div {
  display: flex;
  align-items: center;
}
td[data-team-name] div span {
  line-height: 1;
  white-space: normal;
}
td[data-team-drag] {
  width: 24px;
}
td[data-team-drag] img {
  pointer-events: none;
}

.group-issue-contain {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  background: #00000080;
  left: 0;
  z-index: 999;
  padding-top: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility .25s ease;
  overflow: scroll;
  display: flex;
  align-items: center;
  padding: 20px;
}
.group-issue-contain--show {
  visibility: visible;
  pointer-events: initial;
}
.group-issue-contain h4 {
  margin: 0 0 12px;
}
.group-issue-contain p {
  font-size: 14px;
  margin-bottom: 12px;
}

.tables-overlay {
  max-width: 750px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  box-shadow: 1px 1px 24px black;
  overflow: scroll;
  max-height: 100%;
}
@media (max-width: 767px) {
  .tables-overlay {
    padding: 15px;
  }
}
.table-error-wrapper {
  display: none;
}
.table-error-wrapper--show {
  display: block;
}
.draggable {
  cursor: move;
  background-color: #fff;
}

.group-tables h3 {
  grid-column: 1 / 4;
  margin-top: 0;
}

.winning-team {
  margin-bottom: 25px;
  font-weight: bold;
}
.winning-team [data-winner-team] {
  font-size: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .winning-team [data-winner-team] {
    font-size: 30px;
  }
}
.winning-team--hidden {
  display: none;
}
.winning-team .team__flag {
  width: 96px;
  height: 96px;
  margin: 32px 0;
}
@media (max-width: 480px) {
  .winning-team .team__flag {
    width: 120px;
    height: 120px;
  }
}
.winning-team .group__wrapper {
  text-align: center;
  width: 100%;
  background-color: transparent;
}
.winner-team__winner {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 50%;
}
.winner-team__wrapper {
  display: flex;
  padding: 30px;
  background-color: #004990;
  border-radius: 15px;
}
.winner-team__wrapper .winner-sub-container {
  background-color: #002C5C;
  border-radius: 15px;
  padding: 20px;
  width: 50%;
}
.winner-intro {
  font-weight: 500;
}
.confetti {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1000;
  top: 0;
}
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 30px;
  background: #ffd300;
  top: 0;
  opacity: 0;
}
.confetti-piece:nth-child(1) {
  left: 7%;
  -webkit-transform: rotate(-40deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 182ms;
  -webkit-animation-duration: 1116ms;
}
.confetti-piece:nth-child(2) {
  left: 14%;
  -webkit-transform: rotate(4deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 161ms;
  -webkit-animation-duration: 1076ms;
}
.confetti-piece:nth-child(3) {
  left: 21%;
  -webkit-transform: rotate(-51deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 481ms;
  -webkit-animation-duration: 1103ms;
}
.confetti-piece:nth-child(4) {
  left: 28%;
  -webkit-transform: rotate(61deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 334ms;
  -webkit-animation-duration: 708ms;
}
.confetti-piece:nth-child(5) {
  left: 35%;
  -webkit-transform: rotate(-52deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 302ms;
  -webkit-animation-duration: 776ms;
}
.confetti-piece:nth-child(6) {
  left: 42%;
  -webkit-transform: rotate(38deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 180ms;
  -webkit-animation-duration: 1168ms;
}
.confetti-piece:nth-child(7) {
  left: 49%;
  -webkit-transform: rotate(11deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 395ms;
  -webkit-animation-duration: 1200ms;
}
.confetti-piece:nth-child(8) {
  left: 56%;
  -webkit-transform: rotate(49deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 14ms;
  -webkit-animation-duration: 887ms;
}
.confetti-piece:nth-child(9) {
  left: 63%;
  -webkit-transform: rotate(-72deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 149ms;
  -webkit-animation-duration: 805ms;
}
.confetti-piece:nth-child(10) {
  left: 70%;
  -webkit-transform: rotate(10deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 351ms;
  -webkit-animation-duration: 1059ms;
}
.confetti-piece:nth-child(11) {
  left: 77%;
  -webkit-transform: rotate(4deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 307ms;
  -webkit-animation-duration: 1132ms;
}
.confetti-piece:nth-child(12) {
  left: 84%;
  -webkit-transform: rotate(42deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 464ms;
  -webkit-animation-duration: 776ms;
}
.confetti-piece:nth-child(13) {
  left: 91%;
  -webkit-transform: rotate(-72deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 429ms;
  -webkit-animation-duration: 818ms;
}
.confetti-piece:nth-child(odd) {
  background: #7431e8;
}
.confetti-piece:nth-child(even) {
  z-index: 1;
}
.confetti-piece:nth-child(4n) {
  width: 5px;
  height: 12px;
  -webkit-animation-duration: 2000ms;
}
.confetti-piece:nth-child(3n) {
  width: 3px;
  height: 10px;
  -webkit-animation-duration: 2500ms;
  -webkit-animation-delay: 1000ms;
}
.confetti-piece:nth-child(4n-7) {
background: red;
}
@-webkit-keyframes makeItRain {
  from {opacity: 0;}
  50% {opacity: 1;}
  to {-webkit-transform: translateY(350px);}
}
@media screen and (max-width: 768px) {
  .winner-team__winner {
    flex-direction: column;
    align-items: center;
  }
  .winner-team__winner > div {
    width: 100%;
  }
}

.match__qualification_card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #002C5C;
  color: #fff;
  transition: bottom .5s ease;
}
.match__qualification_card--hidden {
  bottom: -36%;
}
.match__qualification_heading {
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 16px;
}
.match__qualification_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.match__qualification_buttons div {
  font-size: 14px;
  width: 10%;
}
.match__qualification_buttons button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 15px;
  font-weight: 700;
  cursor: pointer;
  width: 45%;
}

td[data-home-name].ko-winner:before,
td[data-away-name].ko-winner:after {
  content: "W";
  font-size: 10px;
  font-weight: bold;
  padding: 5px;
}

.fusion-fullwidth .fusion-row {
  z-index: auto !important;
}
.matches-group__completion {
  display: none;
}

.tabs__wrapper {
  background-color: #131313;
  padding: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 8px;
}
.tabs__container {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.tabs__wrapper button {
  border-radius: 24px;
  color: #fff;
  background-color: #414141;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  width: 96px;
  align-items: center;
  line-height: 20px;
  cursor: pointer;
  border: 0;
  padding: 6px 0;
  margin: 0 6px;
  outline: none;
  flex: 0 0 auto;
}
.tabs__wrapper button.active {
  border-radius: 24px;
  color: #131313;
  background-color: #fff;
  cursor: default;
}
.tabs__wrapper button[disabled] {
  cursor: default;
  color: #626262;
}
.tabs__wrapper button.arrow {
  background-color: transparent;
  width: 30px;
  margin: 0;
  display: none;
}
.tabs__wrapper button.arrow-next {
  transform: rotate(180deg);
}
.tabs__wrapper button.arrow img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1040px) {
  .tabs__container {
    justify-content: space-between;
  }
  .tabs__wrapper button {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .tabs__container {
    width: 85%;
    justify-content: flex-start;
    overflow: scroll;
  }
  .tabs__wrapper button {
    margin: 0 3px;
  }
  .tabs__wrapper button.arrow {
    display: flex;
  }
}

.tab-content__tab {
  display: none;
  padding: 20px 0;
}
.tab-content__tab.active {
  display: block;
}
.tab-heading__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tab-heading {
  font-family: var(--awb-custom_typography_4-font-family);
  font-weight: var(--awb-custom_typography_4-font-weight);
  font-style: var(--awb-custom_typography_4-font-style);
  margin: 0;
  font-size: 28px;
  letter-spacing: var(--awb-custom_typography_4-letter-spacing);
  text-transform: var(--awb-custom_typography_4-text-transform);
  --fontSize: 28;
  --minFontSize: 28;
  line-height: 43px;
}
.tab-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .tab-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .group__wrapper--third-place-table {
    grid-column: auto;
  }
}
@media (max-width: 767px) {
  .tab-heading__wrapper {
    flex-direction: column;
  }
  .tab-heading {
    margin-bottom: 15px;
  }
  .tab-content__tab[data-stage="tables"] .tab-heading,
  .tab-content__tab[data-stage="winner"] .tab-heading {
    margin-bottom: 0;
  }
  .tab-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tab-content__tab[data-stage="winner"] .tab-content {
  grid-template-columns: repeat(1, 1fr);
}
.tab-bottom {
  display: flex;
  padding: 20px 0;
  justify-content: flex-end;
  align-items: center;
}

.submission-overlay-container {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  background: #00000080;
  left: 0;
  z-index: 999;
  padding-top: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility .25s ease;
  overflow: scroll;
  display: flex;
  align-items: center;
  padding: 20px;
  display: none;
}
.submission-overlay-container--show {
  visibility: visible;
  pointer-events: initial;
  display: flex;
}
.submission-overlay {
  max-width: 856px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background-color: #004990;
  padding: 32px;
  overflow: hidden;
  max-height: 100%;
  position: relative;
  border-radius: 16px;
  text-align: center;
}
@media (max-height: 850px) {
  .submission-overlay {
    overflow-y: scroll;
  }
}
.post-content h4.submission-overlay-heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  margin: 12px 0;
}
.submission-overlay-large-text {
  color: #FFDF00;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  line-height: 52px;
}
.submission-overlay p {
  font-size: 14px;
  line-height: 24px;
  max-width: 600px;
  margin: 0 auto !important;
}
.submission-overlay p span {
  color: #FFDF00;
  font-weight: 700;
}
.submission__content {
  margin-top: 14px;
}
.submission-overlay form {
  background-color: #fff;
  border-radius: 16px;
  max-width: 352px;
  margin: auto;
  padding: 40px 32px 48px;
  margin-bottom: 24px;
}
.submission-overlay form label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  text-align: left;
  width: 100%;
  display: block;
  margin-bottom: 4px;
}
.submission-overlay input.submission-overlay-field {
  font-size: 16px;
  height: 48px;
  width: 100%;
  padding: 12px 16px;
  -moz-appearance: textfield;
  background-color: #fff;
  color: #000000;
  margin-bottom: 24px;
  border-radius: 4px;
}
.submission-overlay input.submission-overlay-field:focus,
.submission-overlay input.submission-overlay-field:focus-within,
.submission-overlay input.submission-overlay-field:focus-visible {
  border: 1px solid #004990;
}
.submission-overlay input.submission-overlay-field:valid {
  border: 2px solid #0BB04B;
}
.submission-overlay input.submission-overlay-field.required:invalid {
  border: 2px solid #E83F58;
}
.submission-overlay .euros-button {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  height: 48px;
}
.submission-overlay .euros-button.green {
  --button_accent_color: var(--awb-custom_color_33);
  --button_accent_hover_color: var(--awb-custom_color_33);
  --button_border_hover_color: var(--awb-custom_color_33);
  --button_gradient_top_color: var(--awb-custom_color_13);
  --button_gradient_bottom_color: var(--awb-custom_color_13);
  --button_gradient_top_color_hover: var(--awb-custom_color_14);
  --button_gradient_bottom_color_hover: var(--awb-custom_color_14);
  --button_text_transform: var(--awb-custom_typography_1-text-transform);
}
.submission-overlay .euros-button span {
  margin-right: 8px;
}
.submission-overlay-options {
  max-width: 352px;
  margin: auto;
  padding: 0 32px;
}
.skip-comp {
  color: #fff;
  font-size: 13px;
  margin-top: 30px;
  display: block;
  cursor: pointer;
  text-decoration: underline;
}
.skip-comp:hover {
  color: #fff;
  text-decoration: underline;
}
.submission__loading {
  text-align: center;
  display: none;
  margin-top: 20px;
}
.overlay-tc {
  font-size: 12px;
  line-height: 24px;
  display: block;
}
.submission-overlay p.submission-welcome-offer {
  margin-top: 20px !important;
}
.submission-overlay p.submission-welcome-tc {
  font-size: 10px !important;
  margin-top: 24px !important;
  line-height: 16px;
}
@media (max-width: 600px) {
  .submission-overlay > img {
    width: 150px;
  }
}
@media (max-width: 400px) {
  .submission-overlay form {
    padding: 30px 16px 48px;
  }
  .submission-overlay-options {
    padding: 0 16px;
  }
  .submission-overlay-large-text {
    font-size: 26px;
  }
}

/* Final Panel */
.winner-sub-title {
  display: block;
  font-size: 14px;
  text-align: start;
}
.winner-sub-text {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px !important;
  text-align: start;
}
.winner-sub-text:first-of-type {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFDF00;
}
.winner-sub-btn {
  background-color: var(--awb-custom_color_13);
  color: var(--awb-custom_color_33);  
  margin-top: 20px;
  width: 100%;
  font-size: 18px;
  padding-block: 20px;
}
.winner-sub-btn:hover {
  background-color: #008D00;
}
.submission-complete {
  background-color: #fff;
  color: #000;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 50px;
  margin: 0 auto 24px;
  display: none;
  position: relative;
}
.submission-complete-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.submission-complete-heading img {
  height: 30px;
  margin-right: 16px;
}
.submission-complete-content {
  font-size: 24px;
}
.submission-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  transform: rotate(45deg);
  cursor: pointer;
}
.submission-overlay-close svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 992px) {
  .winner-team__wrapper {
    flex-direction: column;
  }
  .winner-team__winner {
    padding: 0 20px 20px;
    width: 100%;
  }
  .winner-team__wrapper .winner-sub-container {
    padding: 10px 20px 20px;
    width: 100%;
  }
  .winning-team .team__flag {
    margin: 16px 0;
  }
  .winner-sub-title,
  .winner-sub-text {
    padding-inline: 0;
  }
  .winner-sub-title {
    margin-top: 0;
  }
  .winner-sub-btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .submission-complete {
    padding: 50px 20px;
  }
}