@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: #fff;
}

article, aside, details, figcaption, figure,
footer, header, main, nav, section {
  display: block;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: 400;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

a img {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

/**
 * Breakpoints
 */
/**
 * Fonts
 */
/**
 * Colours
 */
/**
 * Animation
 */
/**
 * General
 */
/**
 * Applys a breakpoint around the provided content
 * @param  {string} $size size of the breakpoint
 * @return {null}       nothing returned breakpoint code wrapped around content
 */
/**
 * Generates a list of font sizes at specific breakpoints
 */
/**
 * If you have to ask what this does, then ask yourself what you are doing!!!
 */
/**
 * Creates a class for each colour and a second class with each colour applied as background-color
 */
/**
* Allows control over onscreen movement
**/
body {
  font-family: "Helvetica neue", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.15;
}
@media only screen and (min-width: 300px) {
  body {
    font-size: 12px;
  }
}
@media only screen and (min-width: 850px) {
  body {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

/**
 * Headings
 */
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: 400;
  margin-bottom: 0.8em;
  display: block;
}

h1, .h1 {
  font-size: 2em;
  font-weight: 600;
}
@media only screen and (min-width: 550px) {
  h1, .h1 {
    font-size: 3em;
  }
}
h1.lg,
h1 .lg, .h1.lg,
.h1 .lg {
  font-size: 40px;
}
@media only screen and (min-width: 550px) {
  h1.lg,
  h1 .lg, .h1.lg,
  .h1 .lg {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  h1.lg,
  h1 .lg, .h1.lg,
  .h1 .lg {
    font-size: 118px;
  }
}
h1.xl,
h1 .xl, .h1.xl,
.h1 .xl {
  font-size: 50px;
}
@media only screen and (min-width: 550px) {
  h1.xl,
  h1 .xl, .h1.xl,
  .h1 .xl {
    font-size: 98px;
  }
}
@media only screen and (min-width: 1200px) {
  h1.xl,
  h1 .xl, .h1.xl,
  .h1 .xl {
    font-size: 155px;
  }
}

h2, .h2 {
  font-size: 1.8em;
  font-weight: 600;
}
@media only screen and (min-width: 550px) {
  h2, .h2 {
    font-size: 2.75em;
  }
}

h3, .h3 {
  font-size: 2em;
}

h4, .h4 {
  font-size: 1.5em;
}

h5, .h5 {
  font-size: 1.25em;
}

h6, .h6 {
  font-size: 0.875em;
}

/**
 * Heading styles
**/
.subtitle {
  font-weight: 700;
  letter-spacing: 2.66px;
  color: #F89200;
  text-transform: uppercase;
}

.outline {
  display: inline-block;
  border-radius: 30px;
  padding: 5px 25px;
  border: 1px solid #B6B6B6;
}

.stat {
  font-size: 70px;
  font-weight: 400;
}
@media only screen and (min-width: 550px) {
  .stat {
    font-size: 112px;
  }
}

.player-name {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 550px) {
  .player-name {
    width: unset;
  }
}
.player-name:hover {
  cursor: pointer;
}
.player-name:after {
  content: url("../img/icons/circle-plus.svg");
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 550px) {
  .player-name:after {
    right: -80px;
  }
}
.player-name.open:after {
  content: url("../img/icons/circle-minus.svg");
}

/**
 * Paragraphs
 */
p {
  margin-bottom: 1em;
}

/**
 * Links
 */
a {
  color: inherit;
  transition: color 0.3s;
}
a:hover {
  color: #f8aa00;
  transition: color 0.3s;
}

/**
 * Styling
 */
b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

.sub {
  font-size: 0.9em;
  font-style: italic;
  color: #F89200;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s;
}
.sub:hover {
  cursor: pointer;
  opacity: 0.8;
}

.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0;
}

.margin-sm {
  margin-bottom: 0.3em;
}

@media only screen and (min-width: 1800px) {
  .limit-width {
    max-width: 50%;
  }
}

@media only screen and (min-width: 550px) {
  .limit-width-75 {
    max-width: 75%;
  }
}

/**
 * Lists
 */
ul, ol {
  padding-left: 1em;
  margin-bottom: 1em;
}
ul li, ol li {
  padding-bottom: 0.3em;
}

/**
 * Colours
 */
.pale-section {
  color: #000;
}

.primary {
  color: #F89200;
}

.pale {
  color: #fff;
}

.pass {
  color: green;
}

.fail {
  color: red;
}

.desktop-line-break {
  display: none;
}
@media only screen and (min-width: 850px) {
  .desktop-line-break {
    display: block;
  }
}

.btn, input[type=submit], .btn-transparent, nav#sub-navigation ul li a {
  color: #000;
  background-color: #F89200;
  font-size: 1em;
  display: inline-block;
  border: none;
  margin: 0.2em 0;
  padding: 0.5em 2em;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  border-radius: 30px;
}
.btn:hover, input[type=submit]:hover, .btn-transparent:hover, nav#sub-navigation ul li a:hover {
  color: #ffffff;
  background-color: #ff9e13;
}
.btn.lg, input.lg[type=submit], .lg.btn-transparent, nav#sub-navigation ul li a.lg {
  font-size: 1.13em;
  padding: 0.5em 3.2em;
}
.btn.alt, input.alt[type=submit], .alt.btn-transparent, nav#sub-navigation ul li a.alt {
  color: #fff;
}
.btn.alt:hover, input.alt[type=submit]:hover, .alt.btn-transparent:hover, nav#sub-navigation ul li a.alt:hover {
  color: #000;
}
.btn.alt-white, input.alt-white[type=submit], .alt-white.btn-transparent, nav#sub-navigation ul li a.alt-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn.alt-white:hover, input.alt-white[type=submit]:hover, .alt-white.btn-transparent:hover, nav#sub-navigation ul li a.alt-white:hover {
  background-color: #fff;
  color: #F89200;
}
.btn.alt-black, input.alt-black[type=submit], .alt-black.btn-transparent, nav#sub-navigation ul li a.alt-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn.alt-black:hover, input.alt-black[type=submit]:hover, .alt-black.btn-transparent:hover, nav#sub-navigation ul li a.alt-black:hover {
  background-color: #000;
  color: #fff;
}
.btn.alt-solid-black, .news-feed .news-item:nth-child(6n+3) .details .btn, .news-feed .news-item:nth-child(6n) .details .btn, .news-feed .news-item:nth-child(6n+1) .details .btn, .news-feed .news-item:nth-child(6n+4) .details .btn, input.alt-solid-black[type=submit], .news-feed .news-item:nth-child(6n+3) .details input[type=submit], .news-feed .news-item:nth-child(6n) .details input[type=submit], .news-feed .news-item:nth-child(6n+1) .details input[type=submit], .news-feed .news-item:nth-child(6n+4) .details input[type=submit], .alt-solid-black.btn-transparent, .news-feed .news-item:nth-child(6n+3) .details .btn-transparent, .news-feed .news-item:nth-child(6n) .details .btn-transparent, .news-feed .news-item:nth-child(6n+1) .details .btn-transparent, .news-feed .news-item:nth-child(6n+4) .details .btn-transparent, nav#sub-navigation ul li a.alt-solid-black, .news-feed .news-item:nth-child(6n+3) .details nav#sub-navigation ul li a, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n+3) .details a, .news-feed .news-item:nth-child(6n) .details nav#sub-navigation ul li a, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n) .details a, .news-feed .news-item:nth-child(6n+1) .details nav#sub-navigation ul li a, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n+1) .details a, .news-feed .news-item:nth-child(6n+4) .details nav#sub-navigation ul li a, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n+4) .details a {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn.alt-solid-black:hover, .news-feed .news-item:nth-child(6n+3) .details .btn:hover, .news-feed .news-item:nth-child(6n) .details .btn:hover, .news-feed .news-item:nth-child(6n+1) .details .btn:hover, .news-feed .news-item:nth-child(6n+4) .details .btn:hover, input.alt-solid-black[type=submit]:hover, .news-feed .news-item:nth-child(6n+3) .details input[type=submit]:hover, .news-feed .news-item:nth-child(6n) .details input[type=submit]:hover, .news-feed .news-item:nth-child(6n+1) .details input[type=submit]:hover, .news-feed .news-item:nth-child(6n+4) .details input[type=submit]:hover, .alt-solid-black.btn-transparent:hover, .news-feed .news-item:nth-child(6n+3) .details .btn-transparent:hover, .news-feed .news-item:nth-child(6n) .details .btn-transparent:hover, .news-feed .news-item:nth-child(6n+1) .details .btn-transparent:hover, .news-feed .news-item:nth-child(6n+4) .details .btn-transparent:hover, nav#sub-navigation ul li a.alt-solid-black:hover, .news-feed .news-item:nth-child(6n+3) .details nav#sub-navigation ul li a:hover, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n+3) .details a:hover, .news-feed .news-item:nth-child(6n) .details nav#sub-navigation ul li a:hover, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n) .details a:hover, .news-feed .news-item:nth-child(6n+1) .details nav#sub-navigation ul li a:hover, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n+1) .details a:hover, .news-feed .news-item:nth-child(6n+4) .details nav#sub-navigation ul li a:hover, nav#sub-navigation ul li .news-feed .news-item:nth-child(6n+4) .details a:hover {
  background-color: #fff;
  color: #000;
}

.btn-transparent, nav#sub-navigation ul li a {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s;
}
.btn-transparent:hover, nav#sub-navigation ul li a:hover {
  background-color: #F89200;
  border-color: #F89200;
  color: #000;
}

.team-member-add {
  position: relative;
  color: #fff;
  padding-left: 40px;
  margin: 30px 0;
}
.team-member-add:before {
  content: url("../img/icons/plus.svg");
  position: absolute;
  top: -5px;
  left: 0;
}
.team-member-add:hover {
  cursor: pointer;
}

.pagination {
  position: relative;
  display: block;
  width: 100%;
  list-style: none;
  text-align: center;
  margin: 40px 0 0;
  padding: 0;
  font-size: 0;
  line-height: 3;
  overflow: hidden;
}
.pagination li {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
@media only screen and (min-width: 300px) {
  .pagination li {
    font-size: 12px;
  }
}
@media only screen and (min-width: 850px) {
  .pagination li {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .pagination li {
    font-size: 16px;
  }
}
.pagination li a, .pagination li span {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4em 0.5em;
  text-align: center;
}
.pagination li a.current, .pagination li span.current {
  color: #F89200;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.25em;
  overflow-x: scroll;
  display: block;
  margin-bottom: 1em;
}
table tbody {
  display: table;
  border: none;
  min-width: 100%;
}
@media only screen and (min-width: 1200px) {
  table {
    display: table;
    table-layout: fixed;
  }
  table tbody {
    width: 100%;
    min-width: 0;
  }
}
table tr {
  border-bottom: 1px solid #fff;
}
table tr:last-child {
  border-bottom: unset;
}
table th {
  min-width: 12em;
  font-size: 1.13em;
  font-weight: 700;
  padding: 0.5em 0;
  vertical-align: top;
}
@media only screen and (min-width: 1200px) {
  table th {
    min-width: 0;
    padding: 0.45em 0;
  }
}
table .alt th {
  background-color: #004fc0;
}
table td {
  padding: 0.5em 0;
  vertical-align: top;
}
@media only screen and (min-width: 1200px) {
  table td {
    padding: 0.45em 0;
  }
}

.pp-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pp-table .header-row {
  display: flex;
  font-weight: bold;
  border-bottom: 2px solid #000;
}
.pp-table .header-row .item-cell {
  text-transform: uppercase;
  font-size: 12px;
  color: #F89200;
}
.pp-table .item-row {
  display: flex;
}
@media only screen and (min-width: 850px) {
  .pp-table .item-row.first-row {
    width: 104%;
    margin-left: -2%;
  }
}
.pp-table .item-row .item-cell {
  text-align: center;
  transform: skewX(-10deg);
  border: 3px solid #000;
  font-size: 20px;
  font-weight: 700;
  background-size: cover, 100px !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
  background-clip: padding-box;
}
.pp-table .item-row .item-cell .cell-inner {
  transform: skewX(10deg);
  display: block;
}
.pp-table .item-row .item-cell:first-child {
  background-color: #fff;
  color: #000;
}
.pp-table .item-row .item-cell:nth-child(2) {
  text-align: left;
  padding-left: 20px;
}
.pp-table .item-row .item-cell:nth-child(3) {
  background-color: #222121;
}
.pp-table .item-row .item-cell.winner {
  background-color: #F89200;
}
.pp-table .item-cell {
  flex: 1;
  padding: 8px;
}
.pp-table .item-cell.flex-3 {
  flex: 3;
}

.bare-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.bare-table .header-row {
  display: flex;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}
.bare-table .header-row .item-cell {
  font-size: 1.3em;
  color: #fff;
}
.bare-table .item-row {
  display: flex;
}
.bare-table .item-row .item-cell {
  font-size: 1.2em;
}
.bare-table .item-cell {
  flex: 1;
  padding: 8px;
}
.bare-table .item-cell.flex-3 {
  flex: 3;
}

.points-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  font-size: 1.25em;
}
.points-table .header, .points-table .row {
  display: flex;
  width: 100%;
}
.points-table .cell {
  flex: 1 1 auto;
  padding: 12px;
}
.points-table .cell:nth-child(2) {
  color: #F89200;
  text-align: right;
}
.points-table .header .cell {
  background-color: #f4f4f4;
  font-weight: bold;
}
.points-table .row {
  border-bottom: 1px solid #B6B6B6;
}
@media only screen and (min-width: 550px) {
  .points-table .row:last-child {
    border-bottom: none;
  }
}

.player-table {
  display: none;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #F89200;
}
.player-table.open {
  display: block;
}
.player-table .header-row,
.player-table .item-row,
.player-table tr {
  border-bottom: 1px solid #B6B6B6;
}
.player-table .header-row:last-child,
.player-table .item-row:last-child,
.player-table tr:last-child {
  border-bottom: none;
}
.player-table .header-row .item-cell {
  color: #000;
}

input[type=text], input[type=number], input[type=email], input[type=password], input[type=url],
input[type=tel], input[type=search], input[type=date], textarea, select {
  padding: 0.6em 0.65em;
  margin: 0 0 0.5em;
  border: #f1f1f1 solid 1px;
  border-radius: 10px;
  background-color: #ffffff;
  line-height: 1.2;
  color: #000;
  box-shadow: inset 0 2px 2px -1px #f3f3f3;
  max-width: 100%;
  width: 100%;
  transition: border-color 0.3s;
  font-size: 12px;
}
@media only screen and (min-width: 300px) {
  input[type=text], input[type=number], input[type=email], input[type=password], input[type=url],
  input[type=tel], input[type=search], input[type=date], textarea, select {
    font-size: 12px;
  }
}
@media only screen and (min-width: 850px) {
  input[type=text], input[type=number], input[type=email], input[type=password], input[type=url],
  input[type=tel], input[type=search], input[type=date], textarea, select {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  input[type=text], input[type=number], input[type=email], input[type=password], input[type=url],
  input[type=tel], input[type=search], input[type=date], textarea, select {
    font-size: 16px;
  }
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=url]:focus,
input[type=tel]:focus, input[type=search]:focus, input[type=date]:focus, textarea:focus, select:focus {
  transition: border-color 0.3s;
  border-color: #F89200;
}
input[type=text].error, input[type=number].error, input[type=email].error, input[type=password].error, input[type=url].error,
input[type=tel].error, input[type=search].error, input[type=date].error, textarea.error, select.error {
  transition: border-color 0.3s;
  border-color: #D4323E;
}

label {
  margin: 0 0 0.3em;
  display: block;
}

textarea {
  min-height: 120px;
  font-family: "Helvetica neue", sans-serif;
}

input[type=radio] {
  display: none;
}
input[type=radio] + label {
  width: auto;
  cursor: pointer;
  margin: 0 1em 0.4em 0;
  padding: 0 0 0 1.8em;
  display: inline-block;
  position: relative;
}
input[type=radio] + label:before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  position: absolute;
  top: 0.1em;
  left: 0;
  vertical-align: middle;
  border: #B6B6B6 solid 1px;
  border-radius: 1em;
  width: 1em;
  height: 1em;
  margin: 0 0.4em 0 0;
  transition: border-color 0.3s;
}
input[type=radio]:checked + label:before {
  background-color: #fff;
  background: -moz-radial-gradient(center, ellipse cover, #fff 35%, #ffffff 35%);
  background: -webkit-radial-gradient(center, ellipse cover, #fff 35%, #ffffff 35%);
  background: radial-gradient(ellipse at center, #fff 35%, #ffffff 35%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$text_colour", endColorstr="$background_colour",GradientType=1 );
}
input[type=radio] + label:focus:before {
  transition: border-color 0.3s;
  border-color: #F89200;
}
input[type=radio].error + label:before {
  border-color: #D4323E;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  position: relative;
  width: auto;
  cursor: pointer;
  margin-right: 1em;
  margin-bottom: 0.4em;
  padding-left: 1.8em;
  display: inline-block;
}
input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  vertical-align: middle;
  border: #fff solid 1px;
  border-radius: 5px;
  color: #fff;
  width: 1em;
  height: 1em;
  margin: 0;
  transition: border-color 0.3s;
}
input[type=checkbox]:checked + label:before {
  content: "✔";
  line-height: 0.9em;
  text-align: center;
  color: #fff;
}
input[type=checkbox] + label:focus:before {
  transition: border-color 0.3s;
  border-color: #F89200;
}
input[type=checkbox].error + label:before {
  border-color: #D4323E;
}
input[type=checkbox]#rememberme {
  display: inline-block;
}

.sign-in form#loginform {
  gap: 10px;
  width: 300px;
  margin: 0 auto;
  justify-content: center;
}

#popup-container {
  display: none;
}
#popup-container.open {
  display: block;
}
#popup-container.open .overlay {
  background: rgba(0, 0, 0, 0.6); /* Optional: semi-transparent background */
}
#popup-container .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Optional: semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's on top */
  transition: background 0.3s;
}
#popup-container .overlay .inner {
  position: relative;
  width: 500px; /* Adjust size as needed */
  height: auto; /* Same as width for a square */
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  gap: 30px;
  text-align: center;
  flex-wrap: wrap;
  padding: 60px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px; /* Optional: rounded corners */
}
#popup-container .overlay .inner #close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
}
#popup-container .overlay .inner #close-popup:hover {
  cursor: pointer;
}
#popup-container .overlay .inner .screenshot {
  width: 100%;
  height: auto;
}

.alert {
  padding: 0.85em 1em;
  margin: 0.35em 0;
  border-radius: 2px;
  background-color: #f1f1f1;
  color: #B6B6B6;
}
.alert.error {
  background-color: #D4323E;
  color: #ffffff;
}
.alert.success {
  background-color: #7fb905;
  color: #ffffff;
}
.alert.warning {
  background-color: #7fb905;
  color: #ffffff;
}

.animate-on-view {
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  position: relative;
  right: 20px;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.animate-on-view.onScreen {
  opacity: 1;
  right: 0;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1360px;
}

.additional-pad {
  margin: 0 auto;
  padding: 0;
}
@media only screen and (min-width: 550px) {
  .additional-pad {
    padding: 30px;
  }
}
@media only screen and (min-width: 850px) {
  .additional-pad {
    padding: 80px;
  }
}
.additional-pad.alt {
  padding: 0;
}
@media only screen and (min-width: 550px) {
  .additional-pad.alt {
    padding: 30px;
  }
}
@media only screen and (min-width: 1240px) {
  .additional-pad.alt {
    padding: 80px 0 80px 80px;
  }
}

header {
  height: 0;
}
header .page-header .inner {
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  header .page-header .inner {
    display: flex;
    justify-content: space-between;
    padding: 57px 20px 57px 57px;
  }
}
@media only screen and (min-width: 1200px) {
  header .page-header .inner {
    padding: 57px 20px 57px 118px;
  }
}
@media screen and (max-width: 550px) {
  header .page-header .inner .pole-position-logo {
    max-width: 200px;
  }
}
header .page-header .logos {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
header .page-header .logos img {
  max-width: 114px;
}

.homepage {
  height: 100vh;
  background-color: #fff;
  background-image: url("../img/graphics/signup-bg.svg");
  background-size: auto;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 14px;
}
@media only screen and (min-width: 550px) {
  .homepage {
    padding: 28px;
  }
}
.homepage .homepage-inner {
  background-image: url("../img/banners/signup.jpg");
  background-size: cover;
  border-radius: 30px;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  height: 94vh; /* Or set a specific height if needed */
  position: relative;
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .homepage .homepage-inner {
    padding: 70px 70px 30px;
  }
}

@media only screen and (min-width: 550px) {
  .logos {
    margin-top: auto;
  }
}
.logos .inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 550px) {
  .logos .inner img {
    width: 100%;
    height: auto;
    max-width: 40%;
  }
}

.user-actions {
  margin-top: 50px;
  background-color: #000;
  border-radius: 30px;
  color: #fff;
  padding: 30px 0 30px 30px;
}
@media only screen and (min-width: 550px) {
  .user-actions {
    margin-top: 0;
    position: absolute;
    top: 150px;
    right: -20px;
    padding: 250px 70px 80px 70px;
    width: 605px;
  }
}
@media only screen and (min-width: 550px) {
  .user-actions.onScreen {
    right: -11px;
  }
}
@media screen and (max-width: 550px) {
  .user-actions .pole-position-logo {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 550px) {
  .user-actions .pole-position-logo {
    position: absolute;
    top: 50px;
    right: -16px;
  }
}
@media only screen and (min-width: 1200px) {
  .user-actions .pole-position-logo {
    right: -17px;
  }
}
.user-actions .small-arrow-logo {
  width: 79px;
  height: auto;
}
.user-actions .bottom-container {
  margin-top: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 550px) {
  .user-actions .bottom-container {
    padding-right: unset;
    padding-left: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .user-actions .bottom-container {
    padding-left: 17px;
  }
}

.form-page-header .logos {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media only screen and (min-width: 550px) {
  .form-page-header .logos {
    flex-wrap: wrap;
    width: 50%;
  }
}
@media only screen and (min-width: 850px) {
  .form-page-header .logos {
    flex-wrap: unset;
    width: unset;
  }
}
@media screen and (max-width: 550px) {
  .form-page-header .logos img {
    width: 100%;
    height: auto;
  }
}
.form-page-header .pole-position-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-top: 15px;
}
@media only screen and (min-width: 550px) {
  .form-page-header .pole-position-logo {
    position: absolute;
    top: 38px;
    right: 8px;
    width: unset;
    height: unset;
    margin-top: unset;
  }
}

.page-container {
  height: 100vh;
  background-color: #fff;
  padding: 0 14px;
}
@media only screen and (min-width: 550px) {
  .page-container {
    padding: 0 28px;
  }
}
.page-container .inner {
  background-color: #000;
  border-radius: 0 0 30px 30px;
  padding: 30px;
}

.form-page {
  height: 100vh;
  background-color: #fff;
  padding: 14px;
}
@media only screen and (min-width: 550px) {
  .form-page {
    padding: 28px;
  }
}
.form-page .form-page-inner {
  background-color: #000;
  border-radius: 30px;
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner {
    padding: 68px 70px;
  }
}
.form-page .form-page-inner.bg-img {
  background-image: url("../img/banners/thank-you.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.form-page .form-page-inner .form-page-form {
  max-width: 1020px;
  width: 100%;
  margin: 40px auto 0;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-form {
    margin: 100px auto 0;
  }
}
.form-page .form-page-inner .form-page-form.sign-in {
  text-align: center;
}
.form-page .form-page-inner .form-page-form .login-remember {
  width: 100%;
}
.form-page .form-page-inner .form-page-form .form-cols {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-form .form-cols {
    display: grid;
    grid-template-areas: "col1 col3" "col1 col3" "col1 col3";
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.form-page .form-page-inner .form-page-form .form-cols .column-1 {
  order: 1;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-form .form-cols .column-1 {
    grid-area: col1;
  }
}
.form-page .form-page-inner .form-page-form .form-cols .column-2 {
  order: 3;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-form .form-cols .column-2 {
    grid-area: col1;
  }
}
.form-page .form-page-inner .form-page-form .form-cols .column-3 {
  order: 2;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-form .form-cols .column-3 {
    grid-area: col3;
  }
}
.form-page .form-page-inner .form-page-form .flex-col {
  display: flex;
  flex-wrap: wrap;
  align-items: space-between;
}
.form-page .form-page-inner .form-page-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}
.form-page .form-page-inner .form-page-form form .field {
  margin-bottom: 20px;
}
.form-page .form-page-inner .form-page-form form .field label {
  margin-bottom: 10px;
  color: #fff;
}
.form-page .form-page-inner .form-page-form form .col {
  flex: 0 0 47%;
}
.form-page .form-page-inner .form-page-form form .field-group,
.form-page .form-page-inner .form-page-form form .team-group {
  width: 100%;
}
.form-page .form-page-inner .form-page-form form .field-group.align-end {
  align-self: end;
}
.form-page .form-page-inner .form-page-form form .team-group {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #F89200;
  display: none;
}
.form-page .form-page-inner .form-page-form form .team-group.show {
  display: block;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-footer {
    height: 300px;
    padding-top: 300px;
  }
}
.form-page .form-page-inner .form-page-footer .full-width-graphic {
  position: absolute;
  right: 0;
  max-width: 500px;
}
@media only screen and (min-width: 550px) {
  .form-page .form-page-inner .form-page-footer .full-width-graphic {
    max-width: unset;
  }
}

.circle-callout {
  background-color: #F89200;
  border-radius: 50%;
  color: #fff;
  padding: 30px;
  width: 235px;
  height: 235px;
}

.page-content {
  margin-top: 30px;
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .page-content {
    margin-top: 100px;
  }
}
.page-content.remove-margin {
  margin-top: 0;
}
@media only screen and (min-width: 550px) {
  .page-content.large-gap {
    margin-top: 140px;
  }
}
.page-content .inner {
  position: relative;
}
@media only screen and (min-width: 850px) {
  .page-content .inner.two-col {
    display: grid;
    gap: 50px;
    grid-template-columns: 2fr 1fr;
  }
}
.page-content .inner .positioned-btn {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 550px) {
  .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
  }
}

@media only screen and (min-width: 550px) {
  .tables {
    display: flex;
    gap: 50px;
  }
}

.gap {
  height: 30px;
}
@media only screen and (min-width: 850px) {
  .gap {
    height: 150px;
  }
}

.gap-sm {
  height: 40px;
}
@media only screen and (min-width: 550px) {
  .gap-sm {
    height: 100px;
  }
}

.news-feed {
  margin-top: 30px;
}
@media only screen and (min-width: 550px) {
  .news-feed {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 550px) {
  .news-feed .inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
}
.news-feed .inner .news-item {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 550px) {
  .news-feed .inner .news-item {
    margin-bottom: 0;
  }
}
.news-feed .inner .news-item:after {
  content: "";
  position: absolute;
  right: -26px;
  height: 200px;
  width: 1px;
  background-color: #000;
  top: 40px;
}
.news-feed .inner .news-item:last-child:after {
  content: unset;
}
.news-feed .inner .news-item .outline {
  margin-bottom: 20px;
}

footer {
  margin: 8px 8px 0;
}
@media only screen and (min-width: 550px) {
  footer {
    margin: 28px 28px 0;
  }
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: #E3E3E3;
  padding: 67px 96px;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 550px) {
  footer .inner {
    flex-wrap: wrap;
  }
}
footer .inner .footer-text {
  color: #000;
}
footer .inner .logos {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 550px) {
  footer .inner .logos {
    flex-wrap: wrap;
  }
}
footer .inner .logos img {
  width: 100%;
  height: auto;
}

.callout {
  background-color: #F89200;
  padding: 20px 30px;
  border-radius: 30px;
  background-image: url("../img/graphics/callout-bg.svg");
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 550px) {
  .callout {
    padding: 27px 54px;
    flex: 1 0 30%;
    align-self: flex-start;
  }
}

.user-progress .activities-user-table {
  margin-top: 40px;
  border-bottom: 2px solid #F89200;
}
.user-progress .activities-user-table:last-child {
  border-bottom: none;
}

.generic-row {
  padding: 30px;
}
.generic-row.dark-bg {
  background-color: #000;
  color: #fff;
}

.standard-content {
  margin-top: 200px;
}
@media only screen and (min-width: 550px) {
  .standard-content {
    margin-top: unset;
  }
}

.leaderboards-team-ranking {
  margin-top: 30px;
}
@media only screen and (min-width: 550px) {
  .leaderboards-team-ranking {
    margin-top: 0;
  }
}
.leaderboards-team-ranking .bare-table {
  margin-bottom: 30px;
}

.user-progress {
  margin-bottom: 30px;
}
@media only screen and (min-width: 850px) {
  .user-progress {
    margin-bottom: unset;
  }
}

.page-template-sign-in .full-width-graphic {
  z-index: -1;
}

.mobile-menu-icon {
  position: absolute;
  top: 27px;
  right: 20px;
}
@media only screen and (min-width: 550px) {
  .mobile-menu-icon {
    top: 55px;
    right: 55px;
  }
}
@media only screen and (min-width: 850px) {
  .mobile-menu-icon {
    display: none;
  }
}
.mobile-menu-icon.open {
  position: fixed;
  z-index: 505;
}

nav#site-navigation {
  display: none;
}
nav#site-navigation.open {
  display: block;
}
@media screen and (max-width: 850px) {
  nav#site-navigation.open {
    position: fixed;
    background-color: #000;
    color: #fff;
    padding: 80px;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 500;
    font-size: 2em;
  }
  nav#site-navigation.open ul {
    display: block;
  }
}
@media only screen and (min-width: 850px) {
  nav#site-navigation {
    display: block;
  }
}
nav#site-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}
nav#site-navigation ul li:after {
  content: "/";
  color: #F89200;
  position: relative;
  right: -25px;
}
nav#site-navigation ul li:last-child:after {
  content: unset;
}
nav#site-navigation ul li.current-menu-item {
  color: #F89200;
}
nav#site-navigation ul li a {
  text-decoration: none;
}

nav#sub-navigation {
  display: none;
}
@media only screen and (min-width: 850px) {
  nav#sub-navigation {
    display: block;
  }
}
nav#sub-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
.hero {
  background-color: #fff;
  background-image: url("../img/graphics/dashboard-header-bg.svg");
  background-size: auto;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 8px 8px 0;
}
@media only screen and (min-width: 550px) {
  .hero {
    padding: 28px 28px 0;
  }
}
.hero.dashboard .inner {
  background-image: url("../img/banners/dashboard-hero.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 25px;
}
@media only screen and (min-width: 850px) {
  .hero.dashboard .inner {
    padding: 57px 88px;
  }
}
.hero.dashboard .inner .content-inner .col:nth-child(1) {
  margin-bottom: 35px;
}
@media only screen and (min-width: 550px) {
  .hero.dashboard .inner .content-inner .col:nth-child(1) {
    margin-bottom: unset;
  }
}
.hero.dashboard .inner .caption {
  padding-top: 220px;
}
@media only screen and (min-width: 850px) {
  .hero.dashboard .inner .caption {
    padding-top: 400px;
  }
}
@media only screen and (min-width: 850px) {
  .hero.leaderboards .inner {
    padding: 57px 88px;
  }
}
.hero.leaderboards .inner .col:nth-child(2) {
  margin-top: 65px;
}
@media only screen and (min-width: 550px) {
  .hero.leaderboards .inner .col:nth-child(2) {
    margin-top: unset;
  }
}
.hero .inner {
  background-color: #000;
  border-radius: 18px;
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .hero .inner {
    border-radius: 30px;
  }
}

@media only screen and (min-width: 850px) {
  .hero-content .content-inner {
    display: flex;
    gap: 50px;
  }
}
@media only screen and (min-width: 850px) {
  .hero-content .content-inner .col {
    flex: 0 0 50%;
  }
}
.hero-content .pp-table {
  margin-bottom: 30px;
}

.standard-content .simple-content-inner {
  margin-top: 60px;
}
@media only screen and (min-width: 850px) {
  .standard-content .simple-content-inner {
    margin-top: 200px;
  }
}
.standard-content .content-inner {
  margin-top: 60px;
}
@media only screen and (min-width: 550px) {
  .standard-content .content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 200px;
  }
}
@media only screen and (min-width: 850px) {
  .standard-content .content-inner.three-col {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.standard-content .content-inner.single-col {
  grid-template-columns: 1fr;
}

.border-left:before {
  content: "";
  width: 1px;
  height: 100px;
  background-color: #fff;
}

.news-feed .news-item:nth-child(6n+1) .item-inner, .news-feed .news-item:nth-child(6n+4) .item-inner {
  background-color: #F89200;
  background-image: url("../img/graphics/sm-bars-bg.svg");
}
.news-feed .news-item:nth-child(6n+2) .item-inner, .news-feed .news-item:nth-child(6n+5) .item-inner {
  background-color: #B6B6B6;
  background-image: url("../img/graphics/sm-bars-bg-grey.svg");
}
.news-feed .news-item:nth-child(6n+3) .item-inner, .news-feed .news-item:nth-child(6n) .item-inner {
  background-color: #000;
  background-image: url("../img/graphics/sm-bars-bg-black.svg");
}
.news-feed .news-item:nth-child(6n+3):after, .news-feed .news-item:nth-child(6n):after {
  content: unset;
}
.news-feed .news-item .item-inner {
  margin-bottom: 20px;
  padding: 36px 21px;
  border-radius: 15px;
  color: #fff;
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}
.news-feed .news-item .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.resources-feed .inner,
.leads-feed .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media only screen and (min-width: 550px) {
  .resources-feed .inner,
  .leads-feed .inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.resources-feed .inner .resource-item,
.resources-feed .inner .leads-item,
.leads-feed .inner .resource-item,
.leads-feed .inner .leads-item {
  border: 1px solid #B6B6B6;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 550px) {
  .resources-feed .inner .resource-item,
  .resources-feed .inner .leads-item,
  .leads-feed .inner .resource-item,
  .leads-feed .inner .leads-item {
    margin-bottom: 0;
  }
}
.resources-feed .inner .resource-item .item-inner,
.resources-feed .inner .leads-item .item-inner,
.leads-feed .inner .resource-item .item-inner,
.leads-feed .inner .leads-item .item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.resources-feed .inner .resource-item .item-inner .title,
.resources-feed .inner .leads-item .item-inner .title,
.leads-feed .inner .resource-item .item-inner .title,
.leads-feed .inner .leads-item .item-inner .title {
  margin: 0;
}

.available-leads {
  margin-top: 30px;
}

body {
  background-color: #ffffff;
  color: #fff;
}

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