@charset "UTF-8";
:root {
  --headings-color: $headings-color;
  --circular-track-color: #4c5d6f;
}


#jpreOverlay {
  background-color: #1e2024;
}

#jpreLoader {
  text-align: center;
  width: 260px;
  margin: 0 auto;
}

#jprePercentage {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 16px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #dd163b;
  text-align: center;
  width: 260px;
  margin: 0 auto;
}
#jprePercentage::before {
  content: "Loading...";
  color: #fff;
}
#jprePercentage::after {
  content: "Formula-League";
  display: block;
  font-size: 8px;
  line-height: 1.5em;
  color: #fff;
  letter-spacing: 0;
}

/*
// #Typography
// --------------------------------------------------
*/
/* Headings */
h1, h2, h3, h4, h5, h6 , h7 {
  color: #fff;
  margin: 0 0 0.75em 0;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-style: normal;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  font-style: normal;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-style: normal;
  text-transform: uppercase;
}

h4 {
  font-size: 22px;
  font-style: normal;
  text-transform: uppercase;
}

h5 {
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
}

h6 {
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

h7 {
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

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

.lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
}

/* Links */
a {
  color: #dd163b;
  text-decoration: none;
}
a:hover, a:focus {
  color: #dd163b;
  text-decoration: none;
  outline: none;
}

/* Lists */
ol.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5em;
  counter-reset: counter;
}
ol.list li {
  position: relative;
  padding: 0 0 0.5em 30px;
}
ol.list li::before {
  display: inline-block; /* block would also work */
  position: absolute; /* move this out of the way of the text */
  left: 0; /* move the counter label into the space from the padding */
  content: counter(counter) ". ";
  counter-increment: counter;
  font-weight: bold;
  width: 20px;
  color: #fff;
  font-family: "Formula1-Bold", sans-serif;
  font-size: 13px;
}

ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5em;
}
ul.list li {
  position: relative;
  padding: 0 0 0.5em 30px;
}
ul.list li::before {
  display: inline-block; /* block would also work */
  position: absolute; /* move this out of the way of the text */
  left: 0; /* move the counter label into the space from the padding */
  width: 20px;
  color: #dd163b;
  font-family: "Formula1-Bold", sans-serif;
  font-size: 14px;
  content: "\f00c";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
ul.list.list--circle li::before {
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #dd163b;
  text-align: center;
  font-size: 10px;
  line-height: 16px;
  vertical-align: middle;
  color: #fff;
}

/* Content Title */
.content-title {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .content-title {
    padding: 25px 0;
    margin-bottom: 35px;
  }
}

.content-title__h {
  line-height: 1.2em;
  margin-bottom: 0.75em;
  font-size: 18px;
}
@media (min-width: 768px) {
  .content-title__h {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .content-title__h {
    font-size: 32px;
  }
}

.content-title__subtitle {
  font-style: normal;
  font-size: 11px;
  line-height: 1.2em;
  color: #9a9da2;
}
.content-title__h + .content-title__subtitle {
  margin-top: -1.75em;
  margin-bottom: 3em;
}

/* Blockquotes */
.blockquote--default {
  text-align: center;
  border: none;
  padding: 20px;
  position: relative;
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  .blockquote--default {
    padding: 50px 20px 20px 20px;
  }
}
.blockquote--default::before {
  content: "“";
  display: block;
  position: absolute;
  left: 50%;
  top: -0.17em;
  transform: translateX(-50%);
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  opacity: 0.05;
  font-size: 300px;
  line-height: 1em;
  pointer-events: none;
}
@media (min-width: 992px) {
  .blockquote--default::before {
    font-size: 600px;
  }
}
@media (min-width: 1199px) {
  .blockquote--default::before {
    font-size: 700px;
  }
}
.blockquote--default .blockquote__content {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #fff;
  margin-bottom: 0.75em;
}
@media (min-width: 992px) {
  .blockquote--default .blockquote__content {
    font-size: 24px;
  }
}
.blockquote--default .blockquote__footer::before {
  display: none !important;
}
.blockquote--default .blockquote__cite {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #9a9da2;
  font-style: normal !important;
}
@media (min-width: 992px) {
  .blockquote--default .blockquote__cite {
    font-size: 14px;
  }
}
.blockquote--default .blockquote__author-name {
  display: block;
}
.blockquote--default .blockquote__author-info {
  font-size: 9px;
  display: block;
}
@media (min-width: 992px) {
  .blockquote--default .blockquote__author-info {
    font-size: 10px;
  }
}

.text-success {
  color: #24d9b0 !important;
}

.text-danger {
  color: #f34141 !important;
}

.text-warning {
  color: #ff7e1f !important;
}

.text-info {
  color: #0cb2e2 !important;
}

address strong {
  color: #fff;
  font-weight: 400;
}

dt {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
}

dd {
  margin-bottom: 1.5em;
}

/* Images
/* ------------------------- */
img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
  margin-bottom: 20px;
}
.aligncenter figcaption {
  padding: 14px;
  font-size: 13px;
}

figure {
  margin: 0;
}

/* Tables
/* ------------------------- */
table {
  background-color: transparent;
  color: #9a9da2;
}

caption {
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  color: #9a9da2;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 6.5px;
  vertical-align: top;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Formula1-Bold", sans-serif;
  font-size: 9px;
  line-height: 1.42857143em;
}
@media (min-width: 992px) {
  .table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
    padding: 13px 10px;
    font-size: 11px;
  }
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 700;
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
}
.table > tbody > tr > th {
  color: #fff;
  font-weight: normal;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.table--lg > thead > tr > th,
.table--lg > thead > tr > td,
.table--lg > tbody > tr > th,
.table--lg > tbody > tr > td,
.table--lg > tfoot > tr > th,
.table--lg > tfoot > tr > td {
  padding: 8.5px;
}
@media (min-width: 992px) {
  .table--lg > thead > tr > th,
.table--lg > thead > tr > td,
.table--lg > tbody > tr > th,
.table--lg > tbody > tr > td,
.table--lg > tfoot > tr > th,
.table--lg > tfoot > tr > td {
    padding: 17px 12px;
  }
}

.table-thead-color > thead > tr > th {
  background-color: rgba(255, 255, 255, 0.03);
}

.table-top-border > thead:first-child > tr:first-child > th {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.table > tbody > tr.highlighted {
  background-color: rgba(255, 255, 255, 0.07);
}

td.highlight {
  color: #fff;
}

.table-hover > tbody > tr {
  transition: background-color 0.2s ease;
}
.table-hover > tbody > tr:hover {
  color: #9a9da2;
  background-color: rgba(255, 255, 255, 0.07);
}

.table-bordered {
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 1px;
}

.table-wrap-bordered {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  .table-responsive {
    border: none;
    margin-bottom: 0;
  }
}

.table--no-border > thead > tr > th,
.table--no-border > thead > tr > td,
.table--no-border > tbody > tr > th,
.table--no-border > tbody > tr > td,
.table--no-border > tfoot > tr > th,
.table--no-border > tfoot > tr > td {
  border: none;
}

.table__cell-center {
  text-align: center;
}
.table__cell-center > thead > tr > th {
  text-align: center;
}
.table__cell-center > thead > tr > th:first-child {
  text-align: left;
}

.table-stats > thead > tr > th,
.table-stats > thead > tr > td,
.table-stats > tbody > tr > th,
.table-stats > tbody > tr > td,
.table-stats > tfoot > tr > th,
.table-stats > tfoot > tr > td {
  text-align: center;
  vertical-align: middle;
}
.table-stats > thead > tr > th.text-left,
.table-stats > thead > tr > td.text-left,
.table-stats > tbody > tr > th.text-left,
.table-stats > tbody > tr > td.text-left,
.table-stats > tfoot > tr > th.text-left,
.table-stats > tfoot > tr > td.text-left {
  text-align: left;
}
.table-stats > thead > tr > th.text-right,
.table-stats > thead > tr > td.text-right,
.table-stats > tbody > tr > th.text-right,
.table-stats > tbody > tr > td.text-right,
.table-stats > tfoot > tr > th.text-right,
.table-stats > tfoot > tr > td.text-right {
  text-align: right;
}
@media (min-width: 992px) {
  .table-stats > thead > tr > th:first-child,
.table-stats > tbody > tr > td:first-child {
    padding-left: 24px;
  }
}
@media (min-width: 992px) {
  .table-stats > thead > tr > th:last-child,
.table-stats > tbody > tr > td:last-child {
    padding-right: 24px;
  }
}
.table-stats th.table-stats__subheading {
  text-align: left;
  font-weight: bold;
  font-style: normal;
  padding-left: 24px;
}
.table-stats th.table-stats__subheading--highlight {
  box-shadow: inset 6px 0 0 #dd163b;
}
.table-stats th.table-stats__subheading--highlight-info {
  box-shadow: inset 6px 0 0 #0cb2e2;
}

/* Error 404 */
.error-404 {
  text-align: center;
  padding: 10px 15px 20px 15px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .error-404 {
    padding: 20px 0 40px 0;
  }
}

.error-404__figure {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  max-width: 75%;
}
@media (min-width: 480px) {
  .error-404__figure {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .error-404__figure {
    margin-bottom: 55px;
  }
}
.error-404__figure::before, .error-404__figure::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 25px;
  background-color: #dd163b;
  border-radius: 3px;
}
.error-404__figure::before {
  transform: translate(50px, -70px) rotate(45deg);
}
.error-404__figure::after {
  transform: translate(50px, -70px) rotate(-45deg);
}
.error__header {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .error__header {
    margin-bottom: 40px;
  }
}

.error__title {
  margin-bottom: 0.33em;
  font-size: 24px;
}
@media (min-width: 992px) {
  .error__title {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .error__title {
    font-size: 38px;
  }
}

.error__subtitle {
  font-size: 18px;
}
@media (min-width: 1200px) {
  .error__subtitle {
    font-size: 22px;
  }
}

.error__description {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .error__description {
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .error__cta .btn {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .error__cta .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 5px 0;
  }
}

/* Spacers */
.spacer {
  height: 30px;
  overflow: hidden;
}

.spacer-sm {
  height: 15px;
  overflow: hidden;
}

.spacer-xs {
  height: 10px;
  overflow: hidden;
}

.spacer-lg {
  height: 45px;
  overflow: hidden;
}

.spacer-xlg {
  height: 60px;
  overflow: hidden;
}

.spacer-xxlg {
  height: 90px;
  overflow: hidden;
}

.svg-filters {
  height: 0;
  left: -9999em;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 0;
}

/* Color Pallete */
.df-color-pallete {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .df-color-pallete {
    flex-wrap: wrap;
  }
}

.df-color-pallete__item {
  height: 120px;
  flex-grow: 1;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2em;
  text-align: center;
  line-height: 120px;
}
@media (max-width: 767px) {
  .df-color-pallete__item {
    flex-basis: 25%;
  }
}
@media (max-width: 479px) {
  .df-color-pallete__item {
    flex-basis: 50%;
  }
}
.df-color-pallete__item.color-dark {
  background-color: #1e2024;
}
.df-color-pallete__item.color-dark-lighten {
  background-color: #292c31;
}
.df-color-pallete__item.color-2 {
  background-color: #31404b;
}
.df-color-pallete__item.color-3 {
  background-color: #07e0c4;
}
.df-color-pallete__item.color-4 {
  background-color: #c2ff1f;
}
.df-color-pallete__item.color-gray {
  background-color: #9a9da2;
}
.df-color-pallete__item.color-primary {
  background-color: #dd163b;
}
.df-color-pallete__item.color-primary-darken {
  background-color: #dd163b;
}

.gfont-item {
  margin-bottom: 1rem;
}

.gfont-item__body {
  font-size: 110px;
  line-height: 1em;
  color: #fff;
}

.gfont-item__name {
  color: #fff;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 400 !important;
}
.gfont-item__name::before {
  display: block;
}

.gfont-item__type {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 400 !important;
}
.gfont-item__type::before {
  display: block;
}

.gfont-item--style1 {
  font-family: "Formula1-Bold", sans-serif;
  font-weight: bold;
  font-style: italic;
}
.gfont-item--style1 .gfont-item__name {
  text-transform: uppercase;
}
.gfont-item--style1 .gfont-item__name::before {
  content: "Formula1-Bold, sans-serif";
}
.gfont-item--style1 .gfont-item__type {
  text-transform: uppercase;
}
.gfont-item--style1 .gfont-item__type::before {
  content: "Bold Italic";
}

.gfont-item--style2 {
  font-family: "Formula1-Bold", sans-serif;
  font-weight: bold;
}
.gfont-item--style2 .gfont-item__name {
  text-transform: uppercase;
}
.gfont-item--style2 .gfont-item__name::before {
  content: "Formula1-Bold, sans-serif";
}
.gfont-item--style2 .gfont-item__type {
  text-transform: uppercase;
}
.gfont-item--style2 .gfont-item__type::before {
  content: "Bold";
}

.gfont-item--style3 {
  font-family: "Formula1-Bold", sans-serif;
}
.gfont-item--style3 .gfont-item__name::before {
  content: "Formula1-Bold, sans-serif";
}
.gfont-item--style3 .gfont-item__type::before {
  content: "Regular";
}

.gfont-item--style4 {
  font-family: "Formula1-Regular", sans-serif;
}
.gfont-item--style4 .gfont-item__name::before {
  content: "Formula1-Bold, sans-serif";
}
.gfont-item--style4 .gfont-item__type::before {
  content: "Regular";
}

.team-color--1 {
  color: #00ff5b;
}

.team-color--2 {
  color: #ffe71b;
}

.team-color--3 {
  color: #ff3f5a;
}

.team-color--4 {
  color: #00fff6;
}

.team-color--5 {
  color: #fff7ca;
}

.team-color--6 {
  color: #9979ff;
}

.team-color--7 {
  color: #00deff;
}

/* Alerts
/* ------------------------- */
.alert {
  padding: 17px;
  padding-left: 85px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  font-size: 13px;
  position: relative;
  color: #9a9da2;
}
.alert::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 4px 0 0 4px;
  width: 60px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}
.alert strong {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
}

.alert-dismissible {
  padding-right: 37px;
}
.alert-dismissible .close {
  top: 17px;
  right: 17px;
  color: inherit;
  text-shadow: none;
  padding: 0;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.2;
}

.alert-btn-right {
  position: relative;
  float: right;
  top: 0;
  right: 0;
}

.alert-success {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.alert-success hr {
  border-top-color: rgba(242, 242, 242, 0.05);
}
.alert-success::before {
  background-color: #24d9b0;
}
.alert-success::before {
  background-size: 14px 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath transform='translate(-189.438 -2446.25)' fill='%23fff' d='M201.45,2446.24l2.121,2.13-9.192,9.19-2.122-2.12Zm-4.949,9.2-2.121,2.12-4.95-4.95,2.121-2.12Z'/%3E%3C/svg%3E");
}

.alert-info {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.alert-info hr {
  border-top-color: rgba(242, 242, 242, 0.05);
}
.alert-info::before {
  background-color: #0cb2e2;
}
.alert-info::before {
  background-size: 5px 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 18'%3E%3Cpath transform='translate(-194 -2257)' fill='%23fff' d='M194.714,2257h3.572a0.716,0.716,0,0,1,.714.72l-0.714,11.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72L194,2257.72A0.716,0.716,0,0,1,194.714,2257Zm0.715,14.4h2.142a0.716,0.716,0,0,1,.715.72v2.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72v-2.16A0.716,0.716,0,0,1,195.429,2271.4Z'/%3E%3C/svg%3E");
}

.alert-warning {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.alert-warning hr {
  border-top-color: rgba(242, 242, 242, 0.05);
}
.alert-warning::before {
  background-color: #dd163b;
}
.alert-warning::before {
  background-size: 5px 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 18'%3E%3Cpath transform='translate(-194 -2257)' fill='%23fff' d='M194.714,2257h3.572a0.716,0.716,0,0,1,.714.72l-0.714,11.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72L194,2257.72A0.716,0.716,0,0,1,194.714,2257Zm0.715,14.4h2.142a0.716,0.716,0,0,1,.715.72v2.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72v-2.16A0.716,0.716,0,0,1,195.429,2271.4Z'/%3E%3C/svg%3E");
}

.alert-danger {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.alert-danger hr {
  border-top-color: rgba(242, 242, 242, 0.05);
}
.alert-danger::before {
  background-color: #f34141;
}
.alert-danger::before {
  background-size: 11px 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'%3E%3Cpath transform='translate(-190.844 -2353.84)' fill='%23fff' d='M190.843,2355.96l2.121-2.12,9.193,9.2-2.122,2.12Zm9.192-2.12,2.122,2.12-9.193,9.2-2.121-2.12Z'/%3E%3C/svg%3E");
}

/* Buttons */
.btn {
  font-weight: 700;
  font-style: normal;
  font-family: "Formula1-Bold", sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 18px 42px;
  font-size: 11px;
  line-height: 1.5em;
  border-radius: 2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #fff;
}
.btn:active, .btn.active {
  box-shadow: none;
}

.btn-default {
  color: #fff;
  background-color: #9a9da2;
  border-color: transparent;
}
.btn-default:focus, .btn-default.focus {
  color: #fff;
  background-color: #868a91;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:hover {
  color: #fff;
  background-color: #868a91;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #fff;
  background-color: #868a91;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #6e7177;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #9a9da2;
  border-color: transparent;
}
.btn-default .badge {
  color: #9a9da2;
  background-color: #fff;
}

.btn-primary {
  color: #fff;
  background-color: #31404b;
  border-color: transparent;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #dd163b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover {
  color: #fff;
  background-color: #dd163b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #dd163b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #0f1317;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #31404b;
  border-color: transparent;
}
.btn-primary .badge {
  color: #31404b;
  background-color: #fff;
}

.btn-primary-inverse {
  color: #fff;
  background-color: #dd163b;
  border-color: transparent;
}
.btn-primary-inverse:focus, .btn-primary-inverse.focus {
  color: #fff;
  background-color: #dd163b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:hover {
  color: #fff;
  background-color: #dd163b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active, .btn-primary-inverse.active, .open > .btn-primary-inverse.dropdown-toggle {
  color: #fff;
  background-color: #dd163b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active:hover, .btn-primary-inverse:active:focus, .btn-primary-inverse:active.focus, .btn-primary-inverse.active:hover, .btn-primary-inverse.active:focus, .btn-primary-inverse.active.focus, .open > .btn-primary-inverse.dropdown-toggle:hover, .open > .btn-primary-inverse.dropdown-toggle:focus, .open > .btn-primary-inverse.dropdown-toggle.focus {
  color: #fff;
  background-color: #8e0e26;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active, .btn-primary-inverse.active, .open > .btn-primary-inverse.dropdown-toggle {
  background-image: none;
}
.btn-primary-inverse.disabled:hover, .btn-primary-inverse.disabled:focus, .btn-primary-inverse.disabled.focus, .btn-primary-inverse[disabled]:hover, .btn-primary-inverse[disabled]:focus, .btn-primary-inverse[disabled].focus, fieldset[disabled] .btn-primary-inverse:hover, fieldset[disabled] .btn-primary-inverse:focus, fieldset[disabled] .btn-primary-inverse.focus {
  background-color: #dd163b;
  border-color: transparent;
}
.btn-primary-inverse .badge {
  color: #dd163b;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #9fe900;
  border-color: transparent;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #95da00;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:hover {
  color: #fff;
  background-color: #95da00;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #95da00;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #649200;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #9fe900;
  border-color: transparent;
}
.btn-success .badge {
  color: #9fe900;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #0cb2e2;
  border-color: transparent;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #0ba7d3;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:hover {
  color: #fff;
  background-color: #0ba7d3;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #0ba7d3;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #087190;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #0cb2e2;
  border-color: transparent;
}
.btn-info .badge {
  color: #0cb2e2;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #ff7e1f;
  border-color: transparent;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ff7510;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:hover {
  color: #fff;
  background-color: #ff7510;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ff7510;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #c75500;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #ff7e1f;
  border-color: transparent;
}
.btn-warning .badge {
  color: #ff7e1f;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #f34141;
  border-color: transparent;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #f23333;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:hover {
  color: #fff;
  background-color: #f23333;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #f23333;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #d00d0d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #f34141;
  border-color: transparent;
}
.btn-danger .badge {
  color: #f34141;
  background-color: #fff;
}

.btn-instagram {
  background-color: #1e78dd;
  color: #fff;
}
.btn-instagram:hover, .btn-instagram:active, .btn-instagram:focus {
  background-color: #3185e3;
}
.btn-instagram i {
  font-size: 6px;
  position: relative;
  top: -1px;
}
.btn-instagram.btn-sm {
  padding-left: 24px;
  padding-right: 24px;
}

.btn-facebook {
  color: #fff;
  background-color: #3B5998;
  border-color: transparent;
}
.btn-facebook:focus, .btn-facebook.focus {
  color: #fff;
  background-color: #4264aa;
  border-color: rgba(0, 0, 0, 0);
}
.btn-facebook:hover {
  color: #fff;
  background-color: #4264aa;
  border-color: rgba(0, 0, 0, 0);
}
.btn-facebook:active, .btn-facebook.active, .open > .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #4264aa;
  border-color: rgba(0, 0, 0, 0);
}
.btn-facebook:active:hover, .btn-facebook:active:focus, .btn-facebook:active.focus, .btn-facebook.active:hover, .btn-facebook.active:focus, .btn-facebook.active.focus, .open > .btn-facebook.dropdown-toggle:hover, .open > .btn-facebook.dropdown-toggle:focus, .open > .btn-facebook.dropdown-toggle.focus {
  color: #fff;
  background-color: #23345a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-facebook:active, .btn-facebook.active, .open > .btn-facebook.dropdown-toggle {
  background-image: none;
}
.btn-facebook.disabled:hover, .btn-facebook.disabled:focus, .btn-facebook.disabled.focus, .btn-facebook[disabled]:hover, .btn-facebook[disabled]:focus, .btn-facebook[disabled].focus, fieldset[disabled] .btn-facebook:hover, fieldset[disabled] .btn-facebook:focus, fieldset[disabled] .btn-facebook.focus {
  background-color: #3B5998;
  border-color: transparent;
}
.btn-facebook .badge {
  color: #3B5998;
  background-color: #fff;
}

.btn-twitter {
  color: #fff;
  background-color: #1DA1F2;
  border-color: transparent;
}
.btn-twitter:focus, .btn-twitter.focus {
  color: #fff;
  background-color: #35abf3;
  border-color: rgba(0, 0, 0, 0);
}
.btn-twitter:hover {
  color: #fff;
  background-color: #35abf3;
  border-color: rgba(0, 0, 0, 0);
}
.btn-twitter:active, .btn-twitter.active, .open > .btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #35abf3;
  border-color: rgba(0, 0, 0, 0);
}
.btn-twitter:active:hover, .btn-twitter:active:focus, .btn-twitter:active.focus, .btn-twitter.active:hover, .btn-twitter.active:focus, .btn-twitter.active.focus, .open > .btn-twitter.dropdown-toggle:hover, .open > .btn-twitter.dropdown-toggle:focus, .open > .btn-twitter.dropdown-toggle.focus {
  color: #fff;
  background-color: #0a70ae;
  border-color: rgba(0, 0, 0, 0);
}
.btn-twitter:active, .btn-twitter.active, .open > .btn-twitter.dropdown-toggle {
  background-image: none;
}
.btn-twitter.disabled:hover, .btn-twitter.disabled:focus, .btn-twitter.disabled.focus, .btn-twitter[disabled]:hover, .btn-twitter[disabled]:focus, .btn-twitter[disabled].focus, fieldset[disabled] .btn-twitter:hover, fieldset[disabled] .btn-twitter:focus, fieldset[disabled] .btn-twitter.focus {
  background-color: #1DA1F2;
  border-color: transparent;
}
.btn-twitter .badge {
  color: #1DA1F2;
  background-color: #fff;
}

.btn-gplus {
  color: #fff;
  background-color: #DC4E41;
  border-color: transparent;
}
.btn-gplus:focus, .btn-gplus.focus {
  color: #fff;
  background-color: #e06257;
  border-color: rgba(0, 0, 0, 0);
}
.btn-gplus:hover {
  color: #fff;
  background-color: #e06257;
  border-color: rgba(0, 0, 0, 0);
}
.btn-gplus:active, .btn-gplus.active, .open > .btn-gplus.dropdown-toggle {
  color: #fff;
  background-color: #e06257;
  border-color: rgba(0, 0, 0, 0);
}
.btn-gplus:active:hover, .btn-gplus:active:focus, .btn-gplus:active.focus, .btn-gplus.active:hover, .btn-gplus.active:focus, .btn-gplus.active.focus, .open > .btn-gplus.dropdown-toggle:hover, .open > .btn-gplus.dropdown-toggle:focus, .open > .btn-gplus.dropdown-toggle.focus {
  color: #fff;
  background-color: #a72a1f;
  border-color: rgba(0, 0, 0, 0);
}
.btn-gplus:active, .btn-gplus.active, .open > .btn-gplus.dropdown-toggle {
  background-image: none;
}
.btn-gplus.disabled:hover, .btn-gplus.disabled:focus, .btn-gplus.disabled.focus, .btn-gplus[disabled]:hover, .btn-gplus[disabled]:focus, .btn-gplus[disabled].focus, fieldset[disabled] .btn-gplus:hover, fieldset[disabled] .btn-gplus:focus, fieldset[disabled] .btn-gplus.focus {
  background-color: #DC4E41;
  border-color: transparent;
}
.btn-gplus .badge {
  color: #DC4E41;
  background-color: #fff;
}

.btn-linkedin {
  color: #fff;
  background-color: #0077B5;
  border-color: transparent;
}
.btn-linkedin:focus, .btn-linkedin.focus {
  color: #fff;
  background-color: #0088cf;
  border-color: rgba(0, 0, 0, 0);
}
.btn-linkedin:hover {
  color: #fff;
  background-color: #0088cf;
  border-color: rgba(0, 0, 0, 0);
}
.btn-linkedin:active, .btn-linkedin.active, .open > .btn-linkedin.dropdown-toggle {
  color: #fff;
  background-color: #0088cf;
  border-color: rgba(0, 0, 0, 0);
}
.btn-linkedin:active:hover, .btn-linkedin:active:focus, .btn-linkedin:active.focus, .btn-linkedin.active:hover, .btn-linkedin.active:focus, .btn-linkedin.active.focus, .open > .btn-linkedin.dropdown-toggle:hover, .open > .btn-linkedin.dropdown-toggle:focus, .open > .btn-linkedin.dropdown-toggle.focus {
  color: #fff;
  background-color: #003e5e;
  border-color: rgba(0, 0, 0, 0);
}
.btn-linkedin:active, .btn-linkedin.active, .open > .btn-linkedin.dropdown-toggle {
  background-image: none;
}
.btn-linkedin.disabled:hover, .btn-linkedin.disabled:focus, .btn-linkedin.disabled.focus, .btn-linkedin[disabled]:hover, .btn-linkedin[disabled]:focus, .btn-linkedin[disabled].focus, fieldset[disabled] .btn-linkedin:hover, fieldset[disabled] .btn-linkedin:focus, fieldset[disabled] .btn-linkedin.focus {
  background-color: #0077B5;
  border-color: transparent;
}
.btn-linkedin .badge {
  color: #0077B5;
  background-color: #fff;
}

.btn-vk {
  color: #fff;
  background-color: #6383A8;
  border-color: transparent;
}
.btn-vk:focus, .btn-vk.focus {
  color: #fff;
  background-color: #7390b1;
  border-color: rgba(0, 0, 0, 0);
}
.btn-vk:hover {
  color: #fff;
  background-color: #7390b1;
  border-color: rgba(0, 0, 0, 0);
}
.btn-vk:active, .btn-vk.active, .open > .btn-vk.dropdown-toggle {
  color: #fff;
  background-color: #7390b1;
  border-color: rgba(0, 0, 0, 0);
}
.btn-vk:active:hover, .btn-vk:active:focus, .btn-vk:active.focus, .btn-vk.active:hover, .btn-vk.active:focus, .btn-vk.active.focus, .open > .btn-vk.dropdown-toggle:hover, .open > .btn-vk.dropdown-toggle:focus, .open > .btn-vk.dropdown-toggle.focus {
  color: #fff;
  background-color: #415874;
  border-color: rgba(0, 0, 0, 0);
}
.btn-vk:active, .btn-vk.active, .open > .btn-vk.dropdown-toggle {
  background-image: none;
}
.btn-vk.disabled:hover, .btn-vk.disabled:focus, .btn-vk.disabled.focus, .btn-vk[disabled]:hover, .btn-vk[disabled]:focus, .btn-vk[disabled].focus, fieldset[disabled] .btn-vk:hover, fieldset[disabled] .btn-vk:focus, fieldset[disabled] .btn-vk.focus {
  background-color: #6383A8;
  border-color: transparent;
}
.btn-vk .badge {
  color: #6383A8;
  background-color: #fff;
}

.btn-odnoklassniki {
  color: #fff;
  background-color: #F4731C;
  border-color: transparent;
}
.btn-odnoklassniki:focus, .btn-odnoklassniki.focus {
  color: #fff;
  background-color: #f58234;
  border-color: rgba(0, 0, 0, 0);
}
.btn-odnoklassniki:hover {
  color: #fff;
  background-color: #f58234;
  border-color: rgba(0, 0, 0, 0);
}
.btn-odnoklassniki:active, .btn-odnoklassniki.active, .open > .btn-odnoklassniki.dropdown-toggle {
  color: #fff;
  background-color: #f58234;
  border-color: rgba(0, 0, 0, 0);
}
.btn-odnoklassniki:active:hover, .btn-odnoklassniki:active:focus, .btn-odnoklassniki:active.focus, .btn-odnoklassniki.active:hover, .btn-odnoklassniki.active:focus, .btn-odnoklassniki.active.focus, .open > .btn-odnoklassniki.dropdown-toggle:hover, .open > .btn-odnoklassniki.dropdown-toggle:focus, .open > .btn-odnoklassniki.dropdown-toggle.focus {
  color: #fff;
  background-color: #b14c09;
  border-color: rgba(0, 0, 0, 0);
}
.btn-odnoklassniki:active, .btn-odnoklassniki.active, .open > .btn-odnoklassniki.dropdown-toggle {
  background-image: none;
}
.btn-odnoklassniki.disabled:hover, .btn-odnoklassniki.disabled:focus, .btn-odnoklassniki.disabled.focus, .btn-odnoklassniki[disabled]:hover, .btn-odnoklassniki[disabled]:focus, .btn-odnoklassniki[disabled].focus, fieldset[disabled] .btn-odnoklassniki:hover, fieldset[disabled] .btn-odnoklassniki:focus, fieldset[disabled] .btn-odnoklassniki.focus {
  background-color: #F4731C;
  border-color: transparent;
}
.btn-odnoklassniki .badge {
  color: #F4731C;
  background-color: #fff;
}

.btn-link {
  color: rgba(255, 255, 255, 0.4);
}
.btn-link:hover {
  text-decoration: none;
  color: #fff;
}

.btn-lg {
  padding: 16px 80px;
  font-size: 13px;
  line-height: 1.45em;
  border-radius: 2px;
}

.btn-sm {
  padding: 10px 38px;
  font-size: 11px;
  line-height: 1.5em;
  border-radius: 2px;
}

.btn-xs {
  padding: 5px 13px;
  font-size: 9px;
  line-height: 1.5em;
  border-radius: 2px;
}

.btn-outline {
  background-color: transparent;
}
.btn-outline.btn-default {
  border-color: #dbdfe6;
  color: #9a9da2;
}
.btn-outline.btn-default:hover {
  background-color: #9a9da2;
  border-color: #9a9da2;
  color: #fff;
}
.btn-outline.btn-default:hover.btn-circle {
  background-color: #9a9da2;
}
.btn-outline.btn-primary {
  border-color: #e4e7ed;
  color: #fff;
}
.btn-outline.btn-primary:hover {
  background-color: #dd163b;
  border-color: #dd163b;
  color: #fff;
}
.btn-outline.btn-primary:hover.btn-circle {
  background-color: #dd163b;
}
.btn-outline.btn-inverse {
  border-color: #fff;
  color: #fff;
  border-width: 2px;
}
.btn-outline.btn-inverse:hover {
  background-color: #dd163b;
  border-color: #dd163b;
  color: #fff;
}
.btn-outline.btn-inverse:hover i {
  color: #fff;
}
.btn-outline.btn-inverse:hover.btn-circle {
  background-color: #dd163b;
}
.btn-outline.btn-success {
  border-color: #9fe900;
  color: #9a9da2;
  border-width: 2px;
}
.btn-outline.btn-success:hover {
  background-color: #95da00;
  border-color: #95da00;
  color: #fff;
}
.btn-outline.btn-success:hover i {
  color: #fff;
}
.btn-outline.btn-success:hover.btn-circle {
  background-color: #95da00;
}
.btn-outline.btn-info {
  border-color: #0cb2e2;
  color: #9a9da2;
  border-width: 2px;
}
.btn-outline.btn-info:hover {
  background-color: #0ba7d3;
  border-color: #0ba7d3;
  color: #fff;
}
.btn-outline.btn-info:hover i {
  color: #fff;
}
.btn-outline.btn-info:hover.btn-circle {
  background-color: #0ba7d3;
}
.btn-outline.btn-warning {
  border-color: #ff7e1f;
  color: #9a9da2;
  border-width: 2px;
}
.btn-outline.btn-warning:hover {
  background-color: #ff7510;
  border-color: #ff7510;
  color: #fff;
}
.btn-outline.btn-warning:hover i {
  color: #fff;
}
.btn-outline.btn-warning:hover.btn-circle {
  background-color: #ff7510;
}
.btn-outline.btn-danger {
  border-color: #f34141;
  color: #9a9da2;
  border-width: 2px;
}
.btn-outline.btn-danger:hover {
  background-color: #f23333;
  border-color: #f23333;
  color: #fff;
}
.btn-outline.btn-danger:hover i {
  color: #fff;
}
.btn-outline.btn-danger:hover.btn-circle {
  background-color: #f23333;
}

.btn-icon i {
  font-size: 1em;
  margin-right: 0.5em;
}

.btn-icon-right i {
  margin-right: 0;
  margin-left: 10px;
}

.btn-single-icon {
  padding-left: 0;
  padding-right: 0;
  width: 47px;
  text-align: center;
}
.btn-single-icon i {
  margin: 0;
  font-size: 13px;
  line-height: 1.2em;
}

.btn-circle {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  padding: 0;
  text-align: center;
}
.btn-circle i {
  font-size: 15px;
}
.btn-circle.btn-outline {
  border-width: 2px;
}
.btn-circle.btn-xs {
  width: 24px;
  height: 24px;
  line-height: 22px;
}
.btn-circle.btn-xs i {
  font-size: 9px;
}

.btn-block {
  padding-left: 0;
  padding-right: 0;
}

.btn-condensed.btn-sm {
  padding: 13px 28px;
}
.btn-condensed.btn-sm.btn-icon-right {
  padding-right: 22px;
}

.btn-fab {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background-color: #dd163b;
  border-radius: 50%;
}
.btn-fab::before, .btn-fab::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.25s ease;
}
.btn-fab::before {
  width: 17px;
  height: 3px;
}
.btn-fab::after {
  width: 3px;
  height: 17px;
}
.btn-fab:hover::before, .btn-fab:hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.btn-fab--clean {
  background-color: transparent;
}
.btn-fab--clean::before, .btn-fab--clean::after {
  background-color: #dd163b;
}

.btn-fab--sm {
  width: 30px;
  height: 30px;
}
.btn-fab--sm::before {
  width: 10px;
  height: 2px;
}
.btn-fab--sm::after {
  width: 2px;
  height: 10px;
}

/* Card
/* ------------------------- */
.card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  background-color: #292c31;
  margin-bottom: 15px;
}

.card--row {
  flex-direction: row;
}

.card--block {
  display: block;
}

.card--clean {
  background: none;
  border: none;
}
.card--clean .card__header {
  background-color: #292c31;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.card--clean > .card__content {
  padding: 15px 0 0 0;
}

.card--has-table > .card__content {
  padding: 0;
}
.card--has-table > .card__content .table {
  margin-bottom: 0;
}

.card--no-paddings > .card__content {
  padding: 0;
}

.card--squared-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card__header {
  padding: 17px 23px;
  border-radius: 4px 4px 0 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background-color: transparent;
}
.card__header ~ .card__header {
  border-radius: 0;
}
.card__header ~ .card__header::before {
  border-radius: 0;
}
.card__header::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #dd163b;
  border-radius: 3px 0 0 0;
}
.card__header > h3 {
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-style: normal;
}
.card__header > h4 {
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-style: normal;
}
@media (min-width: 992px) {
  .card__header .card-header__button {
    float: right;
  }
}

.card__header--has-btn {
  padding-top: 24px;
  padding-bottom: 24px;
}
.card__header--has-btn > h4 {
  margin-bottom: 0.5em;
}
@media (min-width: 480px) {
  .card__header--has-btn > h4 {
    display: inline-block;
    margin-bottom: 0;
  }
}

.card__header--has-filter {
  padding-top: 24px;
  padding-bottom: 24px;
}
.card__header--has-filter > h4 {
  display: inline-block;
}
.card__header--has-filter .category-filter {
  padding-top: 5px;
}
@media (min-width: 480px) {
  .card__header--has-filter .category-filter {
    float: right;
    padding-top: 0;
  }
}

.card__header--has-legend {
  padding-top: 24px;
  padding-bottom: 24px;
}
.card__header--has-legend > h4 {
  display: inline-block;
}
.card__header--has-legend .chart-legend {
  padding-top: 5px;
}
@media (min-width: 480px) {
  .card__header--has-legend .chart-legend {
    float: right;
    padding-top: 0;
  }
}

.card__header--has-checkbox {
  padding-top: 24px;
  padding-bottom: 24px;
}
.card__header--has-checkbox > h4 {
  margin-bottom: 0.5em;
}
@media (min-width: 480px) {
  .card__header--has-checkbox > h4 {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 480px) {
  .card__header--has-checkbox .checkbox {
    float: right;
    padding-top: 0;
    font-size: 10px;
    font-weight: bold;
  }
}

.card__header--has-toggle {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
}
.card__header--has-toggle .switch {
  flex-grow: 1;
  text-align: right;
}

.card__header--has-arrows .slick-prev,
.card__header--has-arrows .slick-next {
  top: 25px;
}

.card__header--no-highlight::before {
  display: none;
}

.card__content {
  padding: 24px 24px;
}

.card__content-inner {
  padding: 20px;
}

.card__content--header-bg {
  background-color: transparent;
}

.card__subheader {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 8px 0;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .card__subheader {
    padding: 11px 0;
    margin-bottom: 30px;
  }
}
.card__subheader h5 {
  margin-bottom: 0;
  font-style: normal;
  text-transform: uppercase;
}

.card__subheader--nomargins {
  margin: 0;
}

.card__subheader--sm h5 {
  font-size: 11px;
  line-height: 1.2em;
}

.card__subheader--side {
  text-align: left;
  border-top: 0;
  background-color: transparent;
  padding: 15px 24px;
}
.card__subheader--side h5 {
  font-style: italic;
}

.card__subheader--flex {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.card__subheader--flex :last-child {
  margin-left: auto;
}
.card__subheader--flex h5 {
  font-style: normal;
}

@media (min-width: 992px) {
  .card--lg .card__content {
    padding: 43px 43px;
  }
}

@media (min-width: 992px) {
  .card--xlg .card__content {
    padding: 70px 70px;
  }
}

.card--alt-color .card__header::before {
  background-color: #9fe900;
}

.card__header--shop-filter {
  padding: 0;
}

.card--section {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.card--info .card__content p {
  font-size: 0.86em;
  line-height: 1.83em;
}
.card--info .contact-info {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.card--info .contact-info__item {
  flex-grow: 1;
  max-width: 100%;
  flex-basis: 0;
  margin: -1px 0 0 -1px;
  text-align: center;
  padding: 25px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.card--info .contact-info__icon {
  color: #dd163b;
  font-size: 18px;
  margin-bottom: 20px;
}
.card--info .contact-info__label {
  font-size: 0.86em;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  color: #fff;
}
.card--info .contact-info__label a {
  color: #fff;
}
.card--info .contact-info__label a:hover {
  color: #dd163b;
}

/* Labels
/* ------------------------- */
.label {
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  padding: 0.5em 1.1em;
  font-size: 8px;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

a.label:hover, a.label:focus {
  color: #fff;
}

.label-default {
  background-color: #9a9da2;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #7f838a;
}

.label-primary {
  background-color: #dd163b;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #af112f;
}

.label-success {
  background-color: #24d9b0;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #1dad8d;
}

.label-info {
  background-color: #0cb2e2;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #098cb2;
}

.label-warning {
  background-color: #ff7e1f;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #eb6400;
}

.label-danger {
  background-color: #f34141;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #f01111;
}

/* Forms
/* ------------------------- */
label {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  margin-bottom: 9px;
  font-weight: bold;
}
label .required {
  color: #dd163b;
}

.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px 16px;
  line-height: 1.733333;
  font-size: 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s;
}
.form-control:not(textarea) {
  height: 52px;
}
.form-control:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.03);
  border-color: #dd163b;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: rgba(154, 157, 162, 0.6);
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: rgba(154, 157, 162, 0.6);
}
.form-control::-webkit-input-placeholder {
  color: rgba(154, 157, 162, 0.6);
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.form-control[disabled]::-moz-placeholder, .form-control[readonly]::-moz-placeholder, fieldset[disabled] .form-control::-moz-placeholder {
  color: rgba(154, 157, 162, 0.4);
  opacity: 1;
}
.form-control[disabled]:-ms-input-placeholder, .form-control[readonly]:-ms-input-placeholder, fieldset[disabled] .form-control:-ms-input-placeholder {
  color: rgba(154, 157, 162, 0.4);
}
.form-control[disabled]::-webkit-input-placeholder, .form-control[readonly]::-webkit-input-placeholder, fieldset[disabled] .form-control::-webkit-input-placeholder {
  color: rgba(154, 157, 162, 0.4);
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #fff;
}
.has-success .form-control {
  border-color: #24d9b0;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.has-success .form-control:focus {
  border-color: #24d9b0;
  box-shadow: none;
}
.has-success .input-group-addon {
  color: #24d9b0;
  border-color: #24d9b0;
  background-color: rgba(255, 255, 255, 0.05);
}
.has-success .form-control-feedback {
  color: #24d9b0;
}
.has-success .form-control {
  background-size: 15px 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath transform='translate(-189.438 -2446.25)' fill='%2324d9b0' d='M201.45,2446.24l2.121,2.13-9.192,9.19-2.122-2.12Zm-4.949,9.2-2.121,2.12-4.95-4.95,2.121-2.12Z'/%3E%3C/svg%3E");
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #fff;
}
.has-warning .form-control {
  border-color: #dd163b;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.has-warning .form-control:focus {
  border-color: #dd163b;
  box-shadow: none;
}
.has-warning .input-group-addon {
  color: #dd163b;
  border-color: #dd163b;
  background-color: rgba(255, 255, 255, 0.05);
}
.has-warning .form-control-feedback {
  color: #dd163b;
}
.has-warning .form-control {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ff7e1f' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #fff;
}
.has-error .form-control {
  border-color: #f34141;
  box-shadow: none;
  background-position: center right 0.9em;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  padding-right: 2.2em;
}
.has-error .form-control:focus {
  border-color: #f34141;
  box-shadow: none;
}
.has-error .input-group-addon {
  color: #f34141;
  border-color: #f34141;
  background-color: rgba(255, 255, 255, 0.05);
}
.has-error .form-control-feedback {
  color: #f34141;
}
.has-error .form-control {
  background-size: 11px 11px;
  background-image: url("data:/images/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'%3E%3Cpath transform='translate(-190.844 -2353.84)' fill='%23f34141' d='M190.843,2355.96l2.121-2.12,9.193,9.2-2.122,2.12Zm9.192-2.12,2.122,2.12-9.193,9.2-2.121-2.12Z'/%3E%3C/svg%3E");
}

select.form-control {
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.03);
  background-image: url("data:/images/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  background-position: right 1em center;
  background-repeat: no-repeat;
  padding-right: 2.2em;
  background-size: 6px 4px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
  color: #fff;
}
select.form-control::-ms-expand {
  display: none;
}
select.form-control option {
  background-color: #292c31;
  color: #fff;
}
select.form-control.input-sm {
  height: 45px;
  padding-top: 7px;
  padding-bottom: 7px;
}
select.form-control:not([size]):not([multiple]) {
  height: 52px;
}

select.form-control--clean {
  font-size: 15px;
  height: 28px !important;
  line-height: 1.2em;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 0;
  color: #fff;
  font-family: "Formula1-Bold", sans-serif;
  border: none;
  background-color: transparent;
}

.input-sm {
  padding: 10px 14px;
  font-size: 13px;
}
.input-sm:not([size]):not([multiple]):not(textarea) {
  height: 45px;
}

.form-group {
  background: none;
  margin-bottom: 22px;
}

.form-group--sm {
  margin-bottom: 15px;
}

.form-group--xs {
  margin-bottom: 10px;
}

.form-group--lg {
  margin-bottom: 34px;
}

.form-group--submit {
  margin-bottom: 0;
  padding-top: 12px;
}

.form-group--password-forgot {
  display: flex;
  padding: 6px 0;
}
.form-group--password-forgot label {
  flex-grow: 1;
}
.form-group--password-forgot .password-reminder {
  font-size: 11px;
  text-transform: uppercase;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.form-group--upload {
  overflow: hidden;
}

@media (min-width: 768px) {
  .form-group__avatar {
    float: left;
    width: 240px;
    width: 240px;
  }
}
.form-group__avatar img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
  border-radius: 50%;
}

.form-group__avatar-wrapper {
  font-style: normal;
}
.form-group__avatar-wrapper:hover {
  cursor: pointer;
}
.form-group__avatar-wrapper .form-group__avatar-img {
  position: relative;
  display: inline-block;
}
.form-group__avatar-wrapper .form-group__avatar-img::before {
  content: "\f067";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #31404b;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}

.form-group__avatar--center {
  text-align: center;
}
@media (min-width: 768px) {
  .form-group__avatar--center {
    float: none;
    width: 50%;
    margin: 0 auto;
  }
}
.form-group__avatar--center img {
  margin: 0 0 13px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-group__avatar--center .form-group__label {
  display: block;
  text-align: center;
}
.form-group__avatar--center .form-group__label h6 {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2em;
  margin-bottom: 0.35em;
}
.form-group__avatar--center .form-group__label span {
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Formula1-Bold", sans-serif;
  color: #9a9da2;
}

.form-group__label {
  display: inline-block;
  vertical-align: middle;
}
.form-group__label h6 {
  font-size: 11px;
  line-height: 1.2em;
  margin-bottom: 0.2em;
}
.form-group__label span {
  display: block;
  font-size: 11px;
  line-height: 1.2em;
  color: #c2c4c7;
}

.form-group__upload {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .form-group__upload {
    padding-top: 15px;
  }
}

.checkbox {
  position: relative;
  margin: 0;
  font-weight: bold;
}
.widget--sidebar .checkbox {
  font-size: 10px;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + .checkbox-indicator {
  background-color: #dd163b;
  border-color: #dd163b;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.checkbox .checkbox-indicator {
  content: "";
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 60%;
}
.checkbox.checkbox-inline {
  padding-left: 24px;
}
.checkbox input[type=checkbox]:disabled + .checkbox-indicator {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.checkbox-table {
  display: flex;
  flex-wrap: wrap;
}
.checkbox-table .checkbox--cell {
  margin: 0 0 -1px -1px;
}

.checkbox--cell {
  width: 44px;
  height: 44px;
  position: relative;
}
.checkbox--cell input[type=checkbox]:checked + .checkbox-indicator {
  background-image: none !important;
  background-color: #dd163b;
  background-image: none;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.checkbox--cell .checkbox-indicator {
  content: "";
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 42px;
}

.radio {
  position: relative;
  margin: 0;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked + .radio-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%2338a9ff'/%3E%3C/svg%3E");
}
.radio .radio-indicator {
  content: "";
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px 8px;
}
.radio.radio-inline {
  padding-left: 24px;
}
.radio input[type=radio]:disabled + .radio-indicator {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%239a9da2'/%3E%3C/svg%3E");
}

.radio--word {
  position: relative;
  padding: 0 !important;
}
.radio--word + .radio--word {
  margin-left: 20px;
}
.radio--word input[type=radio]:checked + .radio-label {
  color: #fff;
}
.radio--word .radio-label {
  color: #bfc2c4;
  font-weight: 700;
}

.radio--word-lg {
  font-size: 15px;
  line-height: 1.2em;
}

.inline-form .input-group-prepend .btn,
.inline-form .input-group-append .btn {
  padding-left: 28px;
  padding-right: 28px;
}

abbr.required {
  border-bottom: none;
  color: #dd163b;
  margin-left: 0.2em;
  text-decoration: none;
}

.quantity-control {
  overflow: hidden;
}
.quantity-control .btn {
  display: inline-block;
  height: 30px;
  padding: 0 8px;
  background: none;
  border: none;
  color: #adb3b7;
  vertical-align: middle;
}
.quantity-control .btn:hover, .quantity-control .btn:focus, .quantity-control .btn:active {
  color: #fff;
}
.quantity-control .form-control {
  display: inline-block;
  width: 34px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  border: none;
  text-align: center;
  font-size: 13px;
  font-family: "Formula1-Bold", sans-serif;
  vertical-align: middle;
  background-color: transparent;
  color: #fff;
}
.quantity-control .form-control::-webkit-outer-spin-button, .quantity-control .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity-control {
  width: 80px;
  margin: 0 auto;
}

.form-desc--sm {
  font-size: 14px;
  line-height: 22px;
}

.switch {
  white-space: nowrap;
}

.switch__label-txt {
  display: inline-block;
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  vertical-align: middle;
  margin-right: 0.35em;
  color: #fff;
}
@media (max-width: 479px) {
  .switch__label-txt {
    display: none;
  }
}

.switch-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
  margin: 0;
}
.switch-toggle + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  padding: 2px;
  width: 48px;
  height: 24px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  transition: background 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.switch-toggle + label::before, .switch-toggle + label::after {
  display: block;
  position: absolute;
  content: "";
}
.switch-toggle + label::after {
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 18px;
  background-color: #fff;
  background-image: linear-gradient(to right, #e9e9ed, #e9e9ed 2px, transparent 2px), linear-gradient(to right, #e9e9ed, #e9e9ed 2px, transparent 2px);
  background-size: 2px 8px, 2px 8px;
  background-position: 6px 5px, 10px 5px;
  background-repeat: no-repeat, no-repeat;
  border-radius: 50%;
  transition: margin 0.4s, background 0.4s;
}
.switch-toggle:checked + label {
  background-color: #24d9b0;
}
.switch-toggle:checked + label::after {
  margin-left: 26px;
}

/* Content Navigation
/* ------------------------- */
.btn-nav {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 3px;
  background-color: #9a9da2;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  color: #fff;
  background-color: #31404b;
}

/* Pagination
/* ------------------------- */
.pagination {
  flex-wrap: wrap;
  margin: 20px 0;
}

.page-item span {
  font-weight: 600;
}
.page-item.active .page-link, .page-item.active .page-link:hover, .page-item.active .page-link:focus {
  background-color: #dd163b;
  border-color: #dd163b;
  color: #fff;
}

.page-link {
  margin: 0 4px;
  padding: 0;
  line-height: 36px;
  width: 36px;
  height: 36px;
  text-align: center;
  background-color: #292c31;
  border-radius: 3px;
  border-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: bold;
  transition: all 0.2s ease;
  position: static;
}

.page-link:hover {
  background-color: #dd163b;
  border-color: #dd163b;
  color: #fff;
}

.pagination--condensed .page-item:first-child .page-link, .pagination--condensed .page-item:last-child .page-link {
  border-radius: 0;
}
.pagination--condensed .page-link {
  border-radius: 0;
  margin: 0;
  margin-left: -1px;
}

.pagination--lg .page-link {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.pagination--circle .page-item:first-child .page-link, .pagination--circle .page-item:last-child .page-link {
  border-radius: 50%;
}
.pagination--circle .page-link {
  width: 32px;
  height: 32px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0 2px;
}
@media (min-width: 992px) {
  .pagination--circle .page-link {
    width: 46px;
    height: 46px;
    line-height: 44px;
    margin: 0 5px;
  }
}

/* Progress Bars
/* ------------------------- */
.progress-stats {
  overflow: hidden;
  position: relative;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
}
.progress-stats .progress {
  flex-grow: 1;
  margin-bottom: 0;
}

.progress {
  overflow: hidden;
  height: 12px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  box-shadow: none;
  position: relative;
  top: 2px;
}

.progress__bar {
  float: left;
  width: 0%;
  height: 100%;
  line-height: 6px;
  color: rgba(255, 255, 255, 0.03);
  background-color: #dd163b;
  box-shadow: none;
  border-radius: 3px;
}

.progress__bar-white {
  float: left;
  width: 0%;
  height: 100%;
  line-height: 6px;
  color: rgba(255, 255, 255, 0.03);
  background-color: #ffffff;
  box-shadow: none;
  border-radius: 3px;
}

.progress__label,
.progress__number {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1em;
}

.progress__label {
  color: #fff;
}
.progress__label + .progress {
  margin-left: 10px;
}
.progress__label.progress__label--color-default {
  color: #9a9da2;
}

.progress__number {
  font-weight: normal;
}
.progress__number.progress__number--color-highlight {
  color: #fff;
}
.progress + .progress__number {
  margin-left: 10px;
}

.progress__label-top {
  display: block;
  text-align: right;
}

.progress-double-wrapper + .progress-double-wrapper {
  margin-top: 12px;
}
.progress-double-wrapper .progress--battery {
  margin-bottom: 0;
}

.progress-double-wrapper--fullwidth .progress--battery {
  background-image: none !important;
}

.progress-inner-holder {
  display: table;
  width: 100%;
  padding-bottom: 3px;
}

.progress__digit {
  display: table-cell;
  width: 1%;
  vertical-align: middle;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  font-weight: 400;
}

.progress__digit--40 {
  width: 40px;
}
.progress__digit--40.progress__digit--left {
  padding-right: 0;
}
.progress__digit--40.progress__digit--right {
  text-align: right;
  padding-left: 0;
}

.progress__digit--38 {
  width: 38px;
}
.progress__digit--38.progress__digit--left {
  padding-right: 0;
}
.progress__digit--38.progress__digit--right {
  text-align: right;
  padding-left: 0;
}

.progress__digit--highlight {
  color: #fff;
}

.progress__digit--left {
  padding-right: 20px;
}

.progress__digit--right {
  padding-left: 20px;
}

.progress-title {
  font-size: 10px;
  line-height: 1.2em;
  margin-bottom: 0.6em;
  text-align: center;
}

.progress__double {
  display: table-cell;
}
.progress__double .progress {
  width: 50%;
  float: left;
  margin-bottom: 0;
  top: 3px;
}
.progress__double .progress:first-child {
  border-radius: 3px 0 0 3px;
}
.progress__double .progress:first-child .progress__bar {
  margin-left: auto;
  border-radius: 3px 0 0 3px;
}
.progress__double .progress:last-child {
  border-radius: 0 3px 3px 0;
}
.progress__double .progress:last-child .progress__bar {
  border-radius: 0 3px 3px 0;
}
.progress__double .progress.progress--battery:first-child {
  transform: scale(-1, 1);
  margin-right: 2px;
  width: calc(50% - 2px);
}
.progress__double .progress.progress--battery:first-child .progress__bar {
  margin-left: 0;
}
.progress__double .progress.progress--battery:last-child {
  margin-left: 2px;
  width: calc(50% - 2px);
}

.progress__double--label-center .progress-title {
  float: left;
  width: 38%;
}
.progress__double--label-center .progress {
  width: 31%;
}

.progress-stats--top-labels {
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: visible;
}
.progress-stats--top-labels .progress__label {
  order: 0;
}
.progress-stats--top-labels .progress {
  flex-basis: 100%;
  order: 2;
  margin-left: 0 !important;
  margin-top: 12px;
  margin-bottom: 10px;
}
.progress-stats--top-labels .progress__number {
  order: 1;
  font-weight: 700;
}

.progress--lg {
  height: 9px;
  border-radius: 5px;
}
.progress--lg .progress__bar {
  border-radius: 5px;
}
.progress--lg .progress__double .progress:first-child {
  border-radius: 5px 0 0 5px;
}
.progress--lg .progress__double .progress:first-child .progress__bar {
  border-radius: 5px 0 0 5px;
}
.progress--lg .progress__double .progress:last-child {
  border-radius: 0 5px 5px 0;
}
.progress--lg .progress__double .progress:last-child .progress__bar {
  border-radius: 0 5px 5px 0;
}

/* Slick */
.slick-slide {
  outline: none;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 20px;
  padding: 0;
  border: none;
  outline: none;
  background-color: #999ea6;
  transition: background-color 0.2s ease;
  border-radius: 2px;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background-color: #dd163b;
  color: transparent;
}
.slick-prev:hover::before, .slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
  opacity: 1;
}
.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before {
  opacity: 0.25;
}
.slick-prev::before,
.slick-next::before {
  font-family: "icomoon";
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  right: 50px;
}
[dir=rtl] .slick-prev {
  left: 50px;
  right: auto;
}
.slick-prev::before {
  content: "\e909";
}
[dir=rtl] .slick-prev::before {
  content: "\e90a";
}

.slick-next {
  right: 20px;
}
[dir=rtl] .slick-next {
  left: 20px;
  right: auto;
}
.slick-next::before {
  content: "\e90a";
}
[dir=rtl] .slick-next::before {
  content: "\e909";
}

/* Arrows */
.slick-arrows--rounded .slick-prev,
.slick-arrows--rounded .slick-next {
  border-radius: 50%;
}

.slick-vertical .slick-prev::before {
  content: "\f106";
}
.slick-vertical .slick-next::before {
  content: "\f107";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  padding: 0;
  background: transparent;
  border: none;
  display: block;
  height: 10px;
  width: 10px;
  line-height: 10px;
  overflow: hidden;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  border-radius: 50%;
  background-color: #d7d8da;
  transition: background-color 0.2s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  opacity: 1;
}
.slick-dots li button:hover {
  background-color: #31404b;
}
.slick-dots li.slick-active button {
  background-color: #dd163b;
  opacity: 0.75;
}

/* Featured News */
.slick-featured img {
  border-radius: 4px;
}

/* Featured Slider */
.posts--slider-featured .slick-prev,
.posts--slider-featured .slick-next {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

/* Featured Slider - Center */
.posts-slider--center .slick-prev,
.posts-slider--center .slick-next {
  top: auto;
  bottom: 20px;
}
@media (min-width: 992px) {
  .posts-slider--center .slick-prev,
.posts-slider--center .slick-next {
    bottom: 50px;
  }
}
.posts-slider--center .slick-prev {
  right: 50%;
  margin-right: 4px;
}
.posts-slider--center .slick-next {
  right: auto;
  left: 50%;
  margin-left: 4px;
}

/* Featured Carousel, Team Roster, Awards Slider (change prev/next button) */
.featured-carousel .slick-prev,
.featured-carousel .slick-next,
.team-roster--slider .slick-prev,
.team-roster--slider .slick-next,
.awards--slider .slick-prev,
.awards--slider .slick-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #404650;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -9px;
  transition: all 0.3s ease;
}
.featured-carousel .slick-prev::before,
.featured-carousel .slick-next::before,
.team-roster--slider .slick-prev::before,
.team-roster--slider .slick-next::before,
.awards--slider .slick-prev::before,
.awards--slider .slick-next::before {
  opacity: 1;
}
.featured-carousel .slick-prev:hover, .featured-carousel .slick-prev:focus,
.featured-carousel .slick-next:hover,
.featured-carousel .slick-next:focus,
.team-roster--slider .slick-prev:hover,
.team-roster--slider .slick-prev:focus,
.team-roster--slider .slick-next:hover,
.team-roster--slider .slick-next:focus,
.awards--slider .slick-prev:hover,
.awards--slider .slick-prev:focus,
.awards--slider .slick-next:hover,
.awards--slider .slick-next:focus {
  background-color: transparent;
  border-color: #dd163b;
}
.featured-carousel .slick-prev,
.team-roster--slider .slick-prev,
.awards--slider .slick-prev {
  left: 50%;
  margin-left: -20%;
}
.featured-carousel .slick-prev::before,
.team-roster--slider .slick-prev::before,
.awards--slider .slick-prev::before {
  content: "\f053";
  margin-left: -2px;
}
.featured-carousel .slick-next,
.team-roster--slider .slick-next,
.awards--slider .slick-next {
  right: 50%;
  margin-right: -20%;
}
.featured-carousel .slick-next::before,
.team-roster--slider .slick-next::before,
.awards--slider .slick-next::before {
  content: "\f054";
  margin-left: 2px;
}

/* Featured Carousel */
.featured-carousel .slick-dots,
.player-info .slick-dots {
  bottom: 20px;
}
.featured-carousel .slick-dots li,
.player-info .slick-dots li {
  width: 30px;
  height: 4px;
  margin: 0 3px;
}
.featured-carousel .slick-dots li button,
.player-info .slick-dots li button {
  width: 30px;
  height: 4px;
  padding: 0;
  background-color: #fff;
  border-radius: 0;
}
.featured-carousel .slick-dots li button::before,
.player-info .slick-dots li button::before {
  display: none;
}
.featured-carousel .slick-dots li.slick-active button,
.player-info .slick-dots li.slick-active button {
  background-color: #dd163b;
}

.player-info .slick-dots {
  bottom: -20px;
}

/* Awards Slider */
.awards--slider .slick-prev,
.awards--slider .slick-next {
  border-color: #aeb0b4;
  opacity: 0.2;
  margin-top: 0;
  top: 40%;
}
.awards--slider .slick-prev::before,
.awards--slider .slick-next::before {
  opacity: 1;
  color: #aeb0b4;
}
.awards--slider .slick-prev:hover, .awards--slider .slick-prev:focus,
.awards--slider .slick-next:hover,
.awards--slider .slick-next:focus {
  opacity: 1;
  border-color: #aeb0b4;
}
.awards--slider .slick-prev {
  left: 0;
  margin-left: 0;
}
.awards--slider .slick-next {
  right: 0;
  margin-right: 0;
}
.awards--slider.slick-vertical {
  margin-bottom: 0;
}
.awards--slider.slick-vertical .slick-dots {
  width: 10px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.awards--slider.slick-vertical .slick-dots li {
  height: auto;
}

/* Team Roster - Card Slider */
.team-roster--card-slider,
.js-team-roster--card-compact {
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .team-roster--card-slider,
.js-team-roster--card-compact {
    padding-bottom: 70px;
    margin-bottom: 34px;
  }
}
.team-roster--card-slider .slick-prev,
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-prev,
.js-team-roster--card-compact .slick-next {
  top: auto;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  width: 50px;
  height: 50px;
  background-color: #292c31;
}
@media (max-width: 991px) {
  .team-roster--card-slider .slick-prev,
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-prev,
.js-team-roster--card-compact .slick-next {
    display: none;
  }
}
.team-roster--card-slider .slick-prev::before,
.team-roster--card-slider .slick-next::before,
.js-team-roster--card-compact .slick-prev::before,
.js-team-roster--card-compact .slick-next::before {
  color: #fff;
}
.team-roster--card-slider .slick-prev:hover:not(.slick-disabled),
.team-roster--card-slider .slick-next:hover:not(.slick-disabled),
.js-team-roster--card-compact .slick-prev:hover:not(.slick-disabled),
.js-team-roster--card-compact .slick-next:hover:not(.slick-disabled) {
  background-color: #dd163b;
}
.team-roster--card-slider .slick-prev:hover:not(.slick-disabled)::before,
.team-roster--card-slider .slick-next:hover:not(.slick-disabled)::before,
.js-team-roster--card-compact .slick-prev:hover:not(.slick-disabled)::before,
.js-team-roster--card-compact .slick-next:hover:not(.slick-disabled)::before {
  color: #fff;
}
.team-roster--card-slider .slick-prev.slick-disabled,
.team-roster--card-slider .slick-next.slick-disabled,
.js-team-roster--card-compact .slick-prev.slick-disabled,
.js-team-roster--card-compact .slick-next.slick-disabled {
  cursor: default;
}
.team-roster--card-slider .slick-prev,
.js-team-roster--card-compact .slick-prev {
  right: auto;
  left: 50%;
  margin: 0 0 0 -50px;
}
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-next {
  right: auto;
  left: 50%;
  margin: 0 0 0 -1px;
}

/* Team Roster - with select Players */
.team-roster--slider-with-nav .slick-prev,
.team-roster--slider-with-nav .slick-next {
  top: auto;
  bottom: 6px;
  border-radius: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
}
.team-roster--slider-with-nav .slick-prev::before,
.team-roster--slider-with-nav .slick-next::before {
  color: #fff;
}
.team-roster--slider-with-nav .slick-prev:hover:not(.slick-disabled),
.team-roster--slider-with-nav .slick-next:hover:not(.slick-disabled) {
  background-color: transparent;
}
.team-roster--slider-with-nav .slick-prev:hover:not(.slick-disabled)::before,
.team-roster--slider-with-nav .slick-next:hover:not(.slick-disabled)::before {
  color: #dd163b;
}
.team-roster--slider-with-nav .slick-prev.slick-disabled,
.team-roster--slider-with-nav .slick-next.slick-disabled {
  cursor: default;
}
.team-roster--slider-with-nav .slick-prev {
  right: 55px;
  left: auto;
  margin: 0;
}
.team-roster--slider-with-nav .slick-prev::before {
  content: "\f053";
}
.team-roster--slider-with-nav .slick-next {
  right: 6px;
  left: auto;
  margin: 0;
}
.team-roster--slider-with-nav .slick-next::before {
  content: "\f054";
}

/* Team Roster - case Slider */
.team-roster--case-slider {
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .team-roster--case-slider {
    padding-bottom: 90px;
    margin-bottom: 44px;
  }
}
.team-roster--case-slider .slick-prev,
.team-roster--case-slider .slick-next {
  top: auto;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  width: 46px;
  height: 46px;
  background-color: #292c31;
}
.team-roster--case-slider .slick-prev::before,
.team-roster--case-slider .slick-next::before {
  color: #fff;
}
.team-roster--case-slider .slick-prev:hover,
.team-roster--case-slider .slick-next:hover {
  background-color: #dd163b;
}
.team-roster--case-slider .slick-prev:hover::before,
.team-roster--case-slider .slick-next:hover::before {
  color: #fff;
}
.team-roster--case-slider .slick-prev {
  right: auto;
  left: 50%;
  margin: 0 0 0 -52px;
}
.team-roster--case-slider .slick-next {
  right: auto;
  left: 50%;
  margin: 0 0 0 6px;
}

/* Team Roster - Grid Slider */
.js-team-roster--grid-sm {
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .js-team-roster--grid-sm {
    padding-bottom: 50px;
    margin-bottom: 34px;
  }
}
.js-team-roster--grid-sm .slick-prev,
.js-team-roster--grid-sm .slick-next {
  top: auto;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background-color: #292c31;
}
.js-team-roster--grid-sm .slick-prev::before,
.js-team-roster--grid-sm .slick-next::before {
  color: #fff;
}
.js-team-roster--grid-sm .slick-prev:hover:not(.slick-disabled),
.js-team-roster--grid-sm .slick-next:hover:not(.slick-disabled) {
  background-color: #dd163b;
}
.js-team-roster--grid-sm .slick-prev:hover:not(.slick-disabled)::before,
.js-team-roster--grid-sm .slick-next:hover:not(.slick-disabled)::before {
  color: #fff;
}
.js-team-roster--grid-sm .slick-prev.slick-disabled,
.js-team-roster--grid-sm .slick-next.slick-disabled {
  cursor: default;
}
.js-team-roster--grid-sm .slick-prev {
  right: auto;
  left: 50%;
  margin: 0 0 0 -42px;
}
.js-team-roster--grid-sm .slick-next {
  right: auto;
  left: 50%;
  margin: 0 0 0 6px;
}

/* Featured News - Football */
.posts--slider-var-width .slick-prev,
.posts--slider-var-width .slick-next {
  top: -63px;
}

/* Hero Slider - Football */
.posts--slider-top-news {
  margin-bottom: 0;
}
.posts--slider-top-news .slick-dots {
  position: absolute;
  right: 10px;
  top: 50%;
  bottom: auto;
  width: 15px;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .posts--slider-top-news .slick-dots {
    right: 40px;
  }
}
.posts--slider-top-news .slick-dots li {
  margin: 5px 0;
  counter-increment: step-counter;
}
@media (min-width: 480px) {
  .posts--slider-top-news .slick-dots li {
    margin: 8px 0;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .slick-dots li {
    margin: 13px 0;
  }
}
.posts--slider-top-news .slick-dots li button {
  font-size: 0;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0;
  width: auto;
  height: auto;
  margin: 0;
  color: #fff;
  background-color: transparent;
  border-radius: 0;
  text-align: center;
}
.posts--slider-top-news .slick-dots li button::before {
  font-size: 10px;
  line-height: 1.2em;
  content: counters(step-counter, ".", decimal-leading-zero);
}
.posts--slider-top-news .slick-dots li.slick-active button {
  opacity: 1;
  color: #dd163b;
}

/* Carousel Wrapper */
.slick-carousel-wrapper {
  overflow: hidden;
}
.slick-carousel-wrapper .slick-slider {
  margin: 0 -8px;
  width: calc(100% + 16px);
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #1e2024;
  color: #9a9da2;
  font-size: 15px;
  line-height: 26px;
  font-family: "Formula1-Regular", sans-serif;
  font-weight: 400;
}

/* Font Size on Mobile devices */
@media (max-width: 479px) {
  body {
    font-size: 9px;
    line-height: 22px;
  }
}
.site-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.4s ease-in-out;
  overflow-x: hidden;
}

.site-wrapper--has-overlay {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100vh;
}

.site-overlay {
  left: 0;
  top: 0;
  z-index: 102;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: transparent;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.4s linear;
}
@media (max-width: 991px) {
  .site-wrapper--has-overlay .site-overlay {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
@media (min-width: 992px) {
  .site-wrapper--has-overlay-pushy .site-overlay {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
  }
}

/*
// #Header
// --------------------------------------------------
*/
.header {
  background-color: #1e2024;
  position: relative;
  z-index: 6;
}
@media (max-width: 991px) {
  .header {
    z-index: 103;
  }
}

/* Header Top Bar */
.header__top-bar {
  background-color: #292c31;
  display: none;
}
@media (min-width: 992px) {
  .header__top-bar {
    display: block;
  }
}

.header__top-bar-inner {
  display: flex;
  align-items: center;
}

.nav-account {
  display: none;
}
@media (min-width: 992px) {
  .nav-account {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto;
    width: auto;
  }
  .nav-account .nav-account__item {
    font-size: 12px;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Formula1-Bold", sans-serif;
  }
  .nav-account .nav-account__item::before {
    content: "/";
    display: inline-block;
    color: #6b6d70;
    margin: 0 16px 0 14px;
  }
  .nav-account .nav-account__item > a {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
    height: 48px;
    line-height: 48px;
  }
  .nav-account .nav-account__item > a:hover {
    color: #dd163b;
  }
  .nav-account .nav-account__item > a:focus {
    outline: none;
  }
  .nav-account .nav-account__item > a .highlight {
    color: #dd163b;
  }
  .nav-account .nav-account__item:first-child::before {
    display: none;
  }
  .nav-account .nav-account__item.has-children {
    position: relative;
  }
  .nav-account .nav-account__item.has-children::after {
    content: "";
    display: inline-block;
    margin-left: 9px;
    width: 6px;
    height: 4px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
    background-size: 6px 4px;
    background-repeat: no-repeat;
    background-position: center center;
    top: -2px;
    position: relative;
  }
  .nav-account .nav-account__item.has-children ul {
    list-style: none;
    top: 40px;
    right: 0;
    min-width: 110px;
    padding: 14px 0;
    margin: 0;
    border: 1px solid #e4e7ed;
    box-shadow: none;
    background-color: #fff;
    transform-style: preserve-3d;
    transform: translateX(50%) rotateX(-75deg);
    visibility: hidden;
  }
  .nav-account .nav-account__item.has-children ul li a {
    font-size: 9px;
    padding: 6px 24px;
    border-bottom: none;
    color: #31404b;
    transition: color 0.2s ease;
  }
  .nav-account .nav-account__item.has-children ul li a:hover {
    color: #dd163b;
    background-color: transparent;
  }
  .nav-account .nav-account__item.has-children:hover ul {
    display: block;
    transform: translateX(50%) rotateX(0deg);
    opacity: 1;
    visibility: visible;
  }
  .nav-account .nav-account__item--logout > a {
    color: #6b6d70;
  }
}

/* Header Secondary */
.header__secondary {
  background-color: #000000;
  display: none;
}
@media (min-width: 992px) {
  .header__secondary {
    display: block;
    text-align: right;
  }
}

/* Header Primary */
.header__primary {
  background-color: #000000;
  position: relative;
}
.header--layout-1 .header__primary::after, .header--layout-2 .header__primary::after, .header--layout-3 .header__primary::after, .header--layout-4 .header__primary::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #292c31;
}
.header--layout-1 .header__primary::after {
  width: 50%;
}
.header--layout-2 .header__primary::after, .header--layout-3 .header__primary::after, .header--layout-4 .header__primary::after {
  width: 100%;
}

.header__primary-inner {
  position: relative;
  z-index: 1;
  background-color: #292c31;
}
.header--layout-1 .header__primary-inner::before {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  width: 300px;
  background-color: #000000;
  left: -25px;
  margin-left: 0;
  transform: skew(-25deg);
}
@media (min-width: 768px) {
  .header--layout-1 .header__primary-inner::before {
    display: block;
  }
}
@media (max-width: 991px) {
  .header--layout-1 .header__primary-inner::before {
    width: 80px;
  }
}

@media (max-width: 991px) {
  .main-nav .social-links--main-nav {
    display: none;
  }
}

/* Header Logo */
.header-logo {
  position: absolute;
  z-index: 1001;
  bottom: 0px;
  left: 0;
  display: block;
}
@media (max-width: 991px) {
  .header-logo {
    display: none;
  }
}

.header-logo__img {
  position: relative;
  max-width: 12%;
  left: 50px;
}

/* Header Mobile */
.header-mobile {
  display: none;
  background-color: #1e2024;
}

@media only screen and (max-width: 991px) {

  .header-mobile {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  .header-mobile__inner {
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: 100px;
    background-color: #000;
    transition: all 0.4s ease-in-out;
  }
  /* Header Mobile Logo */
  .header-mobile__logo_base {
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, 0);
    top: 10px;
  }
  .header-mobile__logo {
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, 0);
    top: 10px;
  }
  .header-mobile__logo__nav {
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, 0);
    top: 10px;
  }
  
  .header-mobile .header-mobile__logo__nav {
  	display: none;
  }

	.main-nav .only-mobile {
	    display: none;
	}

  .main-nav .header-mobile__logo__nav {
    top: 0;
  }
  .header-mobile__logo-img {
    width: 80px;
    height: auto;
  }
  /* Header Mobile Burger Icon */
  .header-mobile__menu {
    z-index: 102;
    transition: all 0.4s ease-in-out;
    display: block;
    position: absolute;
    top: 40px;
    left: 34px;
    cursor: pointer;
    width: 26px;
    height: 19px;
    color: #fff;
  }
  .header-mobile__menu__line, .header-mobile__menu__line::before, .header-mobile__menu__line::after {
    content: "";
    cursor: pointer;
    height: 3px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    display: block;
    border-radius: 1px;
  }
  .header-mobile__menu__line::before {
    top: 8px;
  }
  .header-mobile__menu__line::after {
    top: 16px;
  }
  .header-mobile__login {
  	display: block;
    position: absolute;
    right: 34px;
    top: 39px;
    color: #fff;
    text-align: center;
  }
    
    
  /* Mobile Search Icon */
  .header-mobile__login-icon {
    display: block;
    position: absolute;
    right: 34px;
    top: 39px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 22px;
    color: #fff;
    text-align: center;
  }
  .header-mobile__login-icon::before, .header-mobile__login-icon::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
  }
  .header-mobile__login-icon::before {
    content: "\e910";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "icomoon";
    font-weight: 900;
  }
  .header-mobile__login-icon:hover {
    cursor: pointer;
  }
  .header-mobile__newsetup-icon {
    display: block;
    position: absolute;
    right: 34px;
    top: 39px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 22px;
    color: #fff;
    text-align: center;
  }
  .header-mobile__newsetup-icon::before, .header-mobile__newsetup-icon::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
  }
  .header-mobile__newsetup-icon::before {
    content: "\e90f";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "icomoon";
    font-weight: 900;
  }
  .header-mobile__newsetup-icon:hover {
    cursor: pointer;
  }
  /* Mobile Search */
  .header-search-form {
    padding: 0 25px;
    height: 0;
    top: -62px;
  }
  .header-mobile--expanded .header-search-form {
    top: 0;
    height: 63px;
  }
  /* Search Input */
  input.header-mobile__search-control {
    margin-top: 12px;
  }
  /* Submit Button */
}
/* Header Banner */
.header-banner {
  display: inline-block;
  vertical-align: middle;
  margin-left: 38px;
}
@media (min-width: 992px) {
  .header-banner {
    margin-left: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-banner img {
    width: 254px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .header-banner {
    margin-left: 38px;
  }
}

/**
 *
 * Header Layouts
 *
 */
/* Header Layout 3 */
@media (min-width: 992px) {
  .header--layout-3 .header__primary-inner {
    display: flex;
    align-items: center;
  }
}
.header--layout-3 .header__primary-spacer {
  margin-left: auto;
}
@media (min-width: 992px) {
  .header--layout-3 .header-logo {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  .header--layout-3 .header-search-form {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .header--layout-3 .info-block--header .info-block__item {
    padding-top: 10px;
    padding-bottom: 22px;
  }
  .header--layout-3 .info-block--header .info-block__item .df-icon {
    top: 14px;
  }
  .header--layout-3 .info-block--header .info-block__item .info-block__menu-icon {
    top: 11px !important;
  }
}

/* Header Layout 4 */
.header--layout-4 .header__primary::after {
  background-color: #292c31;
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary--center .header__primary-inner {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary--center .main-nav {
    margin-right: 0;
    flex-basis: 100%;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary--center .main-nav__list {
    display: flex;
    justify-content: space-evenly;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .header--layout-4 .header__primary--center .main-nav__list > li:nth-of-type(1) > a {
    padding: 0 34px !important;
  }
}
.header--layout-4 .header__primary-inner {
  background-color: #292c31;
}
@media (min-width: 992px) {
  .header--layout-4 .header__primary-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header-logo {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .main-nav {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .header-search-form {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .header--layout-4 .info-block--header .info-block__item {
    padding-top: 10px;
    padding-bottom: 22px;
  }
  .header--layout-4 .info-block--header .info-block__item .df-icon {
    top: 14px;
  }
  .header--layout-4 .info-block--header .info-block__item .info-block__menu-icon {
    top: 11px !important;
  }
}
.header--layout-4 .header__secondary {
  position: relative;
  z-index: 3;
}
.header--layout-4 .header__secondary-inner {
  position: relative;
  z-index: 1;
}

/*
// #Header Navigation
// --------------------------------------------------
*/
/* Navigation - Desktop */
.main-nav, .alt-nav {
  text-align: right;
}
.main-nav .header-mobile__logo__nav {
  display: none;
}

.main-nav .only-mobile {
    display: none;
}

.main-nav__list, .alt-nav__list {
  display: inline-block;
  text-align: left;
  padding: 0;
  margin: 0;
  list-style: none;
  /* 1st Level */
}

@media (min-width: 992px) {
  .main-nav__list, .alt-nav__list {
    border-left: none;
  }
}
.main-nav__list > li , .alt-nav__list > li {
  text-align: center;
  display: inline-block;
  padding: 0;
}
@media (min-width: 992px) {
  .main-nav__list > li, .alt-nav__list > li  {
    margin-left: -0.25em;
    border-right: none;
  }
  .main-nav__list > li:first-of-type, .alt-nav__list > li:first-of-type {
    margin-left: 0;
  }
}
.main-nav__list > li > a, .alt-nav__list > li > a {
  display: block;
  position: relative;
  color: #fff;
  padding: 0 18px;
  line-height: 62px;
  text-decoration: none;
  position: relative;
  font-family: "Formula1-Bold", sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-family: "Formula1-Bold";
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-nav__list > li > a, .alt-nav__list > li > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .alt-nav__list > li > a {
	font-size: 10px;
  }
}

@media (max-width: 470px) {
  .alt-nav__list > li > a {
	font-size: 9px;
  }
}


.main-nav__list > li > a::before, .alt-nav__list > li > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: -1;
}
.main-nav__list > li > a:hover, .alt-nav__list > li > a:hover {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}
.main-nav__list > li > a:hover::before, .alt-nav__list > li > a:hover::before {
  background-color: #dd163b;
}
.main-nav__list > li.active > a, .alt-nav__list > li.active > a {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}
.main-nav__list > li.active > a::before, .alt-nav__list > li.active > a::before {
  background-color: #dd163b;
}
.main-nav__list > li.has-children > a::after, .alt-nav__list > li.has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 9px;
  width: 6px;
  height: 4px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  background-size: 6px 4px;
  background-repeat: no-repeat;
  background-position: center center;
  top: -2px;
  position: relative;
}

/* Lists inside Megamenu */
.main-nav__ul:not([class*=col-]), .alt-nav__ul:not([class*=col-]) {
  padding-left: 0;
}
.main-nav__ul li, .alt-nav__ul li {
  display: block;
  white-space: nowrap;
  text-align: left;
  text-transform: uppercase;
}
.main-nav__ul li a, .alt-nav__ul li a {
  display: block;
  font-size: 11px;
  line-height: 18px;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-align: left;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}
.main-nav__ul li a:hover, .alt-nav__ul li a:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .main-nav__ul-2cols,
.main-nav__ul-3cols {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
  .main-nav__ul-2cols li,
.main-nav__ul-3cols li {
    padding-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main-nav__ul-2cols li.main-nav__title,
.main-nav__ul-3cols li.main-nav__title {
    flex-basis: 100%;
    align-items: center;
  }
  .main-nav__ul-2cols li a,
.main-nav__ul-3cols li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (min-width: 992px) {
  .main-nav__ul-2cols li {
    flex-basis: 50%;
  }
}

@media (min-width: 992px) {
  .main-nav__ul-3cols li {
    flex-basis: 33.3%;
  }
}

/* Animation for Navigation */
.main-nav__list li > .main-nav__sub,
.main-nav__list li > .main-nav__megamenu,
.main-nav__list li > .main-nav__sub-2,
.main-nav__list li > .main-nav__sub-3 {
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
  visibility: hidden;
}
.main-nav__list li:hover > .main-nav__sub,
.main-nav__list li:hover > .main-nav__megamenu,
.main-nav__list li:hover > .main-nav__sub-2,
.main-nav__list li:hover > .main-nav__sub-3 {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

/* Submenu */
.main-nav__sub {
  position: absolute;
  top: 62px;
  z-index: 1000;
  margin: 0;
  padding: 0;
  min-width: 240px;
  background-color: #1e2024;
  border: solid 1px #292c31;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.3s, opacity 0.3s;
}
.main-nav__sub > li > a {
  text-decoration: none;
}
.main-nav__sub > li.has-children > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -2px;
  width: 6px;
  height: 4px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  background-size: 6px 4px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(-90deg);
}
.main-nav__sub li {
  position: relative;
  margin: 0;
  padding: 0;
}
.main-nav__sub li a {
  display: block;
  font-family: "Formula1-Bold", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #fff;
  text-align: left;
  line-height: 1.5em;
  padding: 16px 30px;
  letter-spacing: normal;
  border-bottom: 1px solid #292c31;
  transition: background-color 0.3s ease;
}
.main-nav__sub li a:hover {
  color: #dd163b;
  background-color: transparent;
}
.main-nav__sub li:last-child > a {
  border-bottom: none;
}
.main-nav__sub > li.active > a {
  color: #c2ff1f;
  background-color: transparent;
}

.main-nav__list li:hover .main-nav__sub {
  display: block;
}

/* Submenu */
.main-nav__sub li {
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
  border-bottom: 1px solid #000000;
}
.main-nav__sub li:hover .main-nav__sub-2 {
  display: block;
  opacity: 1;
  list-style: none;
  padding: 0;
  background-color: #1e2024;
}

/* 2nd Submenu */
.main-nav__sub-2 {
  min-width: 240px;
  border: solid 1px #292c31;
  position: absolute;
  right: 100%;
  top: -1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
}
.main-nav__sub-2 li:hover .main-nav__sub-3 {
  opacity: 1;
  list-style: none;
  padding: 0;
  border: solid 1px #292c31;
  background-color: #1e2024;
}

/* 3rd Submenu */
.main-nav__sub-3 {
  min-width: 240px;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
}

.main-nav__toggle,
.main-nav__toggle-2 {
  display: none;
}

@media only screen and (min-width: 992px) {
  .main-nav__list li:hover > .main-nav__sub,
.main-nav__sub li:hover > .main-nav__sub-2,
.main-nav__sub-2 li:hover > .main-nav__sub-3 {
    display: block;
  }
  .main-nav__list li:hover > .main-nav__megamenu {
    display: flex;
  }
  .main-nav__list .nav-account__item {
    display: none;
  }
  .main-nav__list .social-links__item {
    display: none;
  }
  .main-nav__list .main-nav__item--social-links {
    display: none;
  }
  .main-nav .main-nav__item--shopping-cart {
    display: none;
  }
}
/* Navigation - Mobile */
@media only screen and (max-width: 991px) {
  .main-nav {
    width: 270px;
    left: 0;
    transform: translateX(-270px);
    height: 100vh;
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 103;
    overflow: auto;
    transition: all 0.4s ease-in-out;
    background-color: #1e2024;
  }
  .site-wrapper--has-overlay .main-nav {
    transform: translateX(0);
    transition: all 0.4s ease-in-out;
  }
  .main-nav .only-mobile {
    display: block;
  }
  .main-nav .header-mobile__logo__nav {
    position: relative;
    padding: 5px 0 18px 0;
    display: block;
    border-bottom: 1px solid #292c31;
  }
  .main-nav .main-nav__item--shopping-cart .info-block__link-wrapper {
    overflow: hidden;
    font-size: 11px;
    line-height: 1.5em;
    padding-right: 20px;
  }
  .main-nav .main-nav__item--shopping-cart .df-icon-stack--bag,
.main-nav .main-nav__item--shopping-cart .df-icon--shopping-cart {
    display: none;
  }
  .main-nav .main-nav__item--shopping-cart .info-block__heading {
    margin-bottom: 0;
    float: left;
    font-size: 11px;
    line-height: 1.5em;
  }
  .main-nav .main-nav__item--shopping-cart .info-block__cart-sum {
    float: right;
    font-size: 11px;
    line-height: 1.5em;
    color: #dd163b;
  }
  .main-nav .main-nav__back {
    width: 49px;
    height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Cpath transform='translate(-238.75 -17.75)' fill='%23fff' d='M240,21h12v2H240V21Zm0.171-.415,4.243,4.243L243,26.242,238.757,22Zm4.243-1.414-4.243,4.242L238.757,22,243,17.757Z'/%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 13px 8px;
  }
  .main-nav .main-nav__back:hover {
    cursor: pointer;
  }
  .main-nav .main-nav__list > li > a::before {
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }
  .main-nav .main-nav__list > li > a .highlight {
    color: #dd163b;
  }
  .main-nav .main-nav__list > li.has-children > a::after {
    display: none;
  }
  .main-nav .main-nav__list > li.nav-account__item--logout > a {
    color: #6b6d70;
  }
  .main-nav .main-nav__list > li.nav-account__item--wishlist > a {
    padding-right: 20px;
  }
  .main-nav .main-nav__list > li.nav-account__item--wishlist .highlight {
    float: right;
  }
  .main-nav .main-nav__list > li.main-nav__item--social-links {
    text-align: left;
    padding: 0 15px 20px 15px;
  }
  .main-nav .main-nav__list > li.main-nav__item--social-links > a {
    display: inline-block;
    border-bottom: none;
    padding: 13px;
  }
  .main-nav .main-nav__list > li.main-nav__item--social-links > a::before {
    display: none;
  }
  .main-nav__list li:hover .main-nav__sub {
    display: none;
  }
  .main-nav__list li:hover .main-nav__sub .main-nav__sub-2 {
    display: none;
  }
  .main-nav__list .main-nav__sub li.has-children > a::after {
    display: none;
  }
  .main-nav__list .main-nav__sub .main-nav__sub-2 li:hover .main-nav__sub-3 {
    display: none;
  }
  /* Mobile click to drop arrow */
  .main-nav__toggle {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 8px;
    right: 10px;
    display: block;
    cursor: pointer;
    z-index: 1;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
    background-size: 12px 8px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.4s ease;
  }
  .main-nav__toggle-2 {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    right: 15px;
    display: block;
    cursor: pointer;
    z-index: 1;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
    background-size: 12px 8px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.4s ease;
  }
  .main-nav__toggle--rotate {
    transform: rotate(180deg);
  }
  /* 2nd Level Submenu */
  .main-nav__sub-2 {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0;
    padding: 0 !important;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav__sub-2 li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .main-nav__sub-2 li a {
    display: block;
    padding: 10px 25px 10px 25px;
  }
  .main-nav__sub-2 li:hover > a {
    color: #fff;
  }
  /* 3rd Level Submenu */
  .main-nav__sub-3 {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0;
    padding: 0 !important;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav__sub-3 li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .main-nav__sub-3 li a {
    display: block;
    padding: 10px 25px 10px 25px;
  }
  .main-nav__sub-3 li:hover > a {
    color: #fff;
  }
  .main-nav .main-nav__list {
    border-top: 1px solid #292c31;
    height: 100%;
    overflow-y: auto;
    display: block;
  }
  .main-nav .main-nav__list > li {
    width: 100%;
    display: block;
    float: none;
    border-right: none;
    background-color: transparent;
    position: relative;
    white-space: inherit;
  }
  .main-nav .main-nav__list > li > a {
    padding: 16px 30px;
    font-size: 11px;
    text-align: left;
    border-right: solid 0px;
    background-color: transparent;
    color: #fff;
    line-height: 1.5em;
    border-bottom: 1px solid #292c31;
    position: static;
  }
  .main-nav .main-nav__list li.has-children > a::after {
    transform: none;
    top: 13px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  }
  .main-nav__list .main-nav__sub {
    transform: none;
    opacity: 1;
    display: none;
    position: relative;
    top: 0;
    background-color: #292c31;
    border: none;
    /*padding: 15px 0;*/
    visibility: visible;
  }
  .main-nav__list .main-nav__sub li a {
    line-height: 2.5em;
    font-size: 12px;
    padding: 7px 0 7px 40px;
    color: #9a9da2;
    transition: color 0.3s ease;
    border-bottom: none;
    display: block;
    text-align: left;
    font-family: "Formula1-Bold", sans-serif;
    text-transform: uppercase;
  }
  .main-nav__list .main-nav__sub li a:hover {
    color: #fff;
  }
  .main-nav__list .main-nav__sub li:hover > a {
    background-color: transparent;
    color: #fff;
  }
  .main-nav__list .main-nav__sub li:hover .main-nav__sub-2 {
    background-color: transparent;
  }
  .main-nav__list .main-nav__sub li .main-nav__sub-2 {
    padding: 15px 0;
  }
  .main-nav__list .main-nav__sub li .main-nav__sub-2 li a {
    padding-left: 50px;
  }
  .main-nav__list .main-nav__sub li .main-nav__sub-2 li a:hover {
    background-color: none;
  }
  .main-nav__list .main-nav__sub li .main-nav__sub-2 li .main-nav__sub-3 li a {
    padding-left: 60px;
  }
  .main-nav__list .main-nav__megamenu {
    background-color: #292c31;
    color: #9a9da2;
    display: none;
    position: relative;
    top: 0;
    padding: 15px 0;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav__list .main-nav__megamenu [class^=col-] {
    padding-bottom: 15px;
  }
  .main-nav__list .main-nav__megamenu [class^=col-]:first-child .main-nav-banner {
    margin-top: 0;
  }
  .main-nav__list .main-nav__megamenu div[class^=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .main-nav__list .main-nav__megamenu .row {
    margin: 0;
  }
  .main-nav__list .main-nav__megamenu .main-nav__title {
    color: #fff;
    font-size: 11px;
    padding: 10px 30px;
    margin: 0;
  }
  .main-nav__list .main-nav__megamenu .main-nav-banner {
    margin: 15px;
    padding: 0;
    min-height: 56px;
  }
  .main-nav__list .main-nav__megamenu .main-nav-banner .main-nav-banner__link {
    padding: 15px 20px 15px 56px;
  }
  .main-nav__list .main-nav__megamenu .main-nav-banner .main-nav-banner__subtitle {
    font-size: 11px;
  }
  .main-nav__list .main-nav__megamenu .main-nav-banner .main-nav-banner__title {
    font-size: 18px;
  }
  .main-nav__list .main-nav__megamenu > ul,
.main-nav__list .main-nav__megamenu .main-nav__ul {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
  }
  .main-nav__list .main-nav__megamenu > ul > li > a,
.main-nav__list .main-nav__megamenu .main-nav__ul > li > a {
    padding: 7px 20px 7px 40px;
    line-height: 1.5em;
    font-size: 10px;
    color: #9a9da2;
  }
  .main-nav__list .main-nav__megamenu > ul > li > a:hover,
.main-nav__list .main-nav__megamenu .main-nav__ul > li > a:hover {
    color: #fff;
  }
  .main-nav__list li:hover .main-nav__megamenu {
    display: none;
    position: relative;
    top: 0;
  }
  /* Animation None */
  .main-nav__list li > .main-nav__sub,
.main-nav__list li:hover > .main-nav__sub,
.main-nav__sub li > .main-nav__sub-2,
.main-nav__sub li:hover > .main-nav__sub-2,
.main-nav__sub-2 li > .main-nav__sub-3,
.main-nav__sub-2 li:hover > .main-nav__sub-3,
.main-nav__list li > .main-nav__megamenu,
.main-nav__list li:hover > .main-nav__megamenu {
    transform: none;
    visibility: visible;
  }
  .main-nav__sub li:hover > .main-nav__sub-2,
.main-nav__sub-2 li > .main-nav__sub-3,
.main-nav__sub-2 li:hover > .main-nav__sub-3,
.main-nav__list li > .main-nav__megamenu,
.main-nav__list li:hover > .main-nav__megamenu {
    opacity: 1;
  }
}
/*
// #Page Heading
// --------------------------------------------------
*/
.page-heading {
  background-color: #3f3f3f;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
  position: relative;
  background-image: url(/images/page-heading-pattern.png);
}
.page-heading .breadcrumb {
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0;
}
@media (min-width: 992px) {
  .page-heading .breadcrumb {
    font-size: 11px;
    padding: 3px 0;
  }
}
.page-heading .breadcrumb > li + li::before {
  color: #9a9da2;
  font-weight: normal;
}
.page-heading .breadcrumb > li > a {
  color: #fff;
}
.page-heading .breadcrumb > li > a:hover {
  color: #dd163b;
}
.page-heading::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: auto;
  background-position: 100% 0;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
}
.page-heading.effect-duotone .container {
  position: relative;
  z-index: 3;
}

.page-heading--horizontal {
  text-align: inherit;
}
@media (max-width: 767px) {
  .page-heading--horizontal .row {
    display: block;
    text-align: center;
  }
}

.page-heading__title {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 24px;
  margin-bottom: 0;
  font-style: normal;
}
@media (min-width: 992px) {
  .page-heading__title {
    font-size: 30px;
  }
}
.page-heading__title .highlight {
  color: #000;
}

.page-heading--post-bg {
  background-image: url("../images/_soccer_single-post-img5-9803b434e846c52e61fe00c43ed3f251.jpg");
}

.page-heading--overlay {
  position: relative;
  overflow: hidden;
}
.page-heading--overlay::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.page-heading--duotone {
  position: relative;
  overflow: hidden;
}
.page-heading--duotone::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: none;
  background-color: transparent;
}

.page-heading--simple {
  height: 240px;
}
.page-heading--simple::before {
  display: none;
}
@media (min-width: 768px) {
  .page-heading--simple {
    height: 320px;
  }
}
@media (min-width: 992px) {
  .page-heading--simple {
    height: 360px;
  }
}
@media (min-width: 1200px) {
  .page-heading--simple {
    height: 420px;
  }
}

/*
// #Content
// --------------------------------------------------
*/
.site-content,
.section {
  padding: 15px 0;
}
@media (min-width: 992px) {
  .site-content,
.section {
    padding: 30px 0;
  }
}

.section--bg1 {
  background-color: #292c31;
}

.section--no-paddings {
  padding: 0;
}
@media (min-width: 992px) {
  .section--no-paddings {
    padding: 0;
  }
}

/*
// #Footer
// --------------------------------------------------
*/
.footer {
  font-size: 14px;
  line-height: 22px;
  color: rgba(154, 157, 162, 0.6);
}

/* Footer Widgets */
.footer-widgets {
  background: #191b1e;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
.footer-widgets [class^=col-]:last-child .widget--footer {
  margin-bottom: 0;
}

.footer-widgets__inner {
  padding: 30px 0;
}

.footer-col-inner {
  padding: 0 7px;
}

/* Footer Logo */
.footer-logo {
  padding: 0 0 50px 0;
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer-logo {
    width: auto;
    margin: 0;
    padding: 30px 0;
  }
}

.footer-logo__img {
  max-width: 100%;
  height: auto;
}

.footer-logo--has-txt {
  text-align: left;
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .footer-logo--has-txt {
    padding: 0 0 25px 0;
    margin-top: -25px;
  }
}
.footer-logo--has-txt .footer-logo__img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
}
.footer-logo--has-txt .footer-logo__heading {
  display: inline-block;
  vertical-align: middle;
}
.footer-logo--has-txt .footer-logo__txt {
  margin-bottom: 0;
  color: #fff;
}
.footer-logo--has-txt .footer-logo__tagline {
  display: block;
  color: #9a9da2;
  font-size: 12px;
}

/* Footer Secondary */
.footer-secondary {
  background-color: #191b1e;
}

@media (min-width: 768px) {
  .footer-secondary--has-decor {
    background-color: #dd163b;
  }
}
.footer-secondary--has-decor .footer-secondary__inner {
  background-color: #191b1e;
  padding: 12px 0 26px 0;
}
@media (min-width: 992px) {
  .footer-secondary--has-decor .footer-secondary__inner {
    padding: 12px 0 26px 0;
  }
}
.footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  background-color: #dd163b;
  display: none;
}
@media (min-width: 768px) {
  .footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
    display: block;
  }
}
@media (max-width: 991px) {
  .footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
    width: 80px;
  }
}
.footer-secondary--has-decor .footer-secondary__inner::before {
  left: -20px;
  transform: skew(20deg);
}
.footer-secondary--has-decor .footer-secondary__inner::after {
  right: -20px;
  transform: skew(-20deg);
}

.footer-secondary__inner {
  background-color: #191b1e;
  padding: 24px 0;
  position: relative;
  border-top: 0 solid transparent;
}
@media (min-width: 992px) {
  .footer-secondary__inner {
    padding: 24px 0;
  }
}

.footer-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: "Formula1-Bold", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2em;
  font-weight: bold;
}

.footer-nav--right {
  text-align: center;
}
@media (min-width: 992px) {
  .footer-nav--right {
    text-align: right;
  }
  .footer-nav--right .footer-nav__item {
    padding-right: 0 !important;
  }
}

.footer-nav--sm {
  font-size: 9px;
}

.footer-nav__item {
  display: inline-block;
  padding: 0 2px;
}
@media (max-width: 479px) {
  .footer-nav__item {
    float: left;
    width: 33.3%;
    text-align: left;
    padding: 0.25em 0;
  }
}
@media (min-width: 480px) {
  .footer-nav__item {
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .footer-nav__item {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .footer-nav__item {
    padding: 0 24px;
  }
}
@media (min-width: 1200px) {
  .footer-nav__item {
    padding: 0 32px;
  }
}
.footer-nav__item > a {
  color: #fff;
  display: inline-block;
  padding: 0.5em;
  transition: color 0.2s ease;
}
.footer-nav__item > a:hover {
  color: #dd163b;
}
@media (max-width: 479px) {
  .footer-nav--condensed .footer-nav__item {
    display: inline-block;
    padding: 0;
    text-align: center;
    width: auto;
    float: none;
  }
}
@media (min-width: 480px) {
  .footer-nav--condensed .footer-nav__item {
    padding: 0 8px;
  }
}
@media (min-width: 768px) {
  .footer-nav--condensed .footer-nav__item {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .footer-nav--condensed .footer-nav__item {
    padding: 0 12px;
  }
}
@media (min-width: 1200px) {
  .footer-nav--condensed .footer-nav__item {
    padding: 0 15px;
  }
}

/* Footer Sponsors */
.sponsors {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #2e2f31;
  padding: 24px 0 24px 0;
  margin: 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sponsors {
    margin-top: -16px;
    flex-wrap: nowrap;
    padding: 35px 0 47px 0;
  }
}
@media (min-width: 992px) {
  .sponsors {
    margin-top: -24px;
  }
}

.sponsors-title {
  font-size: 9px;
  line-height: 1.2em;
  color: #fff;
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .sponsors-title {
    margin: 0 25px 0 0;
  }
}

.sponsors-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .sponsors-logos {
    flex-wrap: wrap;
  }
}

.sponsors__item {
  text-align: center;
}
@media (max-width: 1199px) {
  .sponsors__item {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .sponsors__item {
    width: 33.3%;
    padding: 10px;
  }
}
@media (max-width: 479px) {
  .sponsors__item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .sponsors__item {
    margin: 0 12px;
  }
}
@media (min-width: 1200px) {
  .sponsors__item {
    margin: 0 25px;
  }
}
.sponsors__item > a {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.sponsors__item > a:hover {
  opacity: 1;
}

/* Footer Info */
.footer-info {
  background-color: #1e2024;
}
@media (min-width: 992px) {
  .footer-info .footer-logo--has-txt {
    width: auto;
    padding: 0;
    margin-top: 0;
    margin-right: 30px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .footer-info .footer-logo--has-txt {
    margin-right: 58px;
  }
}
.footer-info .footer-logo--has-txt .footer-logo__img {
  margin-right: 8px;
}
.footer-info .footer-logo--has-txt .footer-logo__txt {
  font-size: 16px;
  text-transform: uppercase;
}

.footer-info__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0 solid transparent;
  padding: 20px 15px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .footer-info__inner {
    padding: 44px 0 50px 0;
    flex-wrap: nowrap;
  }
}

/* Footer Copyright */
.footer-copyright {
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #9a9da2;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-copyright {
    text-align: left;
  }
}
.footer-copyright a {
  color: #fff;
  transition: color 0.2s ease;
}
.footer-copyright a:hover {
  color: #dd163b;
}

/*
// #Blog
// --------------------------------------------------
*/
/*
// #Posts
// --------------------------------------------------
*/
ul.posts {
  list-style-type: none;
  padding: 0;
}
ul.posts:not(.post-grid) {
  margin: 0;
}

.posts__item {
  margin-bottom: 1em;
}
.posts__item:last-child {
  margin-bottom: 0;
}

.posts__cat {
  display: block;
  overflow: hidden;
  margin-bottom: 8px;
  padding-right: 5px;
  z-index: 1;
}

.posts__cat-label {
  background-color: #dd163b;
  display: block;
  float: left;
  font-style: normal;
}
.posts__cat-label + .posts__title {
  margin-top: 0.55em;
}

.posts__cat-label + .posts__cat-label {
  margin-left: 0.5em;
}

.posts__item--cards {
  height: 100px;
  background-color: #373a41;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .posts__item--cards {
    height: 120px;
  }
}

.posts__item--category-4 .posts__cat-label,
.posts__item--category-4 .posts__cta {
  background-color: #f34141;
  font-size: 10px;
}
.posts__item--category-4 .posts__title--color-hover > a:hover {
  color: #f34141;
}
.posts__item--category-4 .posts__thumb--hover::before {
  background-color: #f34141;
}

.posts__item .posts__cat-label--category-1 {
  background-color: #dd163b;
}
.posts__item .posts__cat-label--category-2 {
  background-color: #07e0c4;
}
.posts__item .posts__cat-label--category-3 {
  background-color: #9fe900;
}
.posts__item .posts__cat-label--category-4 {
  background-color: #f34141;
}

.posts__thumb {
  float: left;
  margin: 0 10px 0 0;
}

.posts__thumb--hover {
  position: relative;
}
.posts__thumb--hover::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #dd163b;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.posts__thumb--hover > a {
  position: relative;
  display: block;
}
.posts__thumb--hover > a::before, .posts__thumb--hover > a::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  overflow: hidden;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  transition: all 0.3s ease;
}
.posts__thumb--hover > a::before {
  height: 4px;
  width: 18px;
}
.posts__thumb--hover > a::after {
  height: 18px;
  width: 4px;
}
.posts__thumb--hover:hover::before {
  opacity: 0.8;
}
.posts__thumb--hover:hover > a::before, .posts__thumb--hover:hover > a::after {
  transform: translate(-50%, -50%) scale(1);
}

.posts__thumb--video {
  position: relative;
}
.posts__thumb--video::before {
  content: "\f04b";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  margin: -30px 0 0 -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50% !important;
  color: #fff;
  font-size: 28px;
  text-indent: 4px;
  background-color: rgba(0, 0, 0, 0.8);
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.posts__thumb--video:hover::before {
  transform: scale(1.1);
}

.posts__thumb--video-sm::before {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  line-height: 32px;
  font-size: 14px;
  text-indent: 2px;
}

.posts__thumb.h-100 img {
  -o-object-fit: cover;
     object-fit: cover;
}

.posts__title__main {
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-style: normal;
  margin-right: 10px;
}

.posts__title {
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-style: normal;
}
.posts__title + .posts__date {
  margin-top: 0.7em;
}
.posts__title a {
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.posts__title a:hover {
  color: #d9d9d9;
}

.posts__date {
  display: inline-block;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  line-height: 1.2em;
}

/* Simple Posts List */
.posts--simple-list .posts__item {
  overflow: hidden;
  margin-bottom: 18px;
}
.card .posts--simple-list .posts__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.posts--simple-list .posts__item:last-child, .card .posts--simple-list .posts__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item {
  padding-left: 100px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item::before {
  width: 100px;
  text-align: center;
  margin-top: -16px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item:last-child::before {
  margin-top: -4px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item .posts__title {
  font-size: 14px;
}
.posts--simple-list .posts__inner {
  overflow: hidden;
}
.posts--simple-list .posts__cat-label + .posts__title {
  margin-top: 0.55em;
}
.posts--simple-list .posts__title {
  margin-bottom: 0;
  line-height: 1em;
}
.widget--footer .posts--simple-list .posts__title {
  font-size: 12px;
  line-height: 1em;
  font-style: normal;
}
.widget--footer .posts--simple-list .posts__title > a {
  transition: color 0.2s ease;
}
.widget--footer .posts--simple-list .posts__title > a:not(:hover) {
  color: #fff;
}
.widget--footer .posts--simple-list .posts__title:not(.posts__title--color-hover) > a:hover {
  color: #dd163b;
}
.widget--footer .posts--simple-list .posts__title + .posts__date {
  margin-top: 0.25em;
}
.main-nav__megamenu .posts--simple-list .posts__title {
  font-size: 12px;
}
@media (max-width: 991px) {
  .main-nav__megamenu .posts--simple-list .posts__title {
    font-size: 11px;
  }
  .main-nav__megamenu .posts--simple-list .posts__title > a {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .main-nav__megamenu .posts--simple-list .posts__title > a:not(:hover) {
    color: #fff;
  }
}
.posts--simple-list .posts__thumb {
  border-radius: 0;
}
.posts--simple-list .posts__thumb::before {
  border-radius: 0;
}
.posts--simple-list .posts__thumb img {
  border-radius: 0;
}
.posts--simple-list .posts__date,
.posts--simple-list .posts__comments {
  font-size: 10px;
  line-height: 1.2em;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 991px) {
  .main-nav__megamenu .posts--simple-list .posts__date,
.main-nav__megamenu .posts--simple-list .posts__comments {
    font-size: 8px;
  }
}
.widget--footer .posts--simple-list .posts__date,
.widget--footer .posts--simple-list .posts__comments {
  font-size: 9px;
}
.posts--simple-list .posts__comments i {
  font-size: 12px;
  margin-right: 3px;
  margin-left: 1px;
  display: inline-block;
  vertical-align: middle;
}
.widget--footer .posts--simple-list .posts__comments {
  min-width: 57px;
}
.posts--simple-list .posts__excerpt {
  font-size: 14px;
  line-height: 22px;
  margin-top: 6px;
}
@media (max-width: 991px) {
  .main-nav__megamenu .posts--simple-list .posts__excerpt {
    font-size: 11px;
    line-height: 17px;
  }
}
.posts--simple-list .posts__excerpt--space {
  padding: 20px 0;
}
.posts--simple-list .posts__excerpt--space-sm {
  padding-top: 10px;
}
.posts--simple-list .posts__footer {
  padding-top: 17px;
}
.card .posts--simple-list .posts__footer {
  padding: 17px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-left: -24px;
  margin-right: -24px;
}
.posts--simple-list .post-author {
  float: left;
  width: 50%;
}
@media (max-width: 479px) {
  .posts--simple-list .post-author {
    width: 40%;
  }
}
.posts--simple-list .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
}
.posts--simple-list .post-author__avatar img {
  vertical-align: top;
}
@media (max-width: 479px) {
  .posts--simple-list .post-author__avatar {
    display: none;
  }
}
.posts--simple-list .post-author__name {
  font-size: 10px;
  text-transform: uppercase;
  color: #9a9da2;
  font-weight: 400;
}
.posts--simple-list .post__meta {
  width: 50%;
  float: right;
  text-align: right;
}
@media (max-width: 479px) {
  .posts--simple-list .post__meta {
    width: 60%;
  }
}
.posts--simple-list .posts__more {
  padding: 20px 0 0 0;
}

/* Simple Posts List - Condensed */
.card .posts--simple-list-condensed .posts__item {
  padding-bottom: 16px;
  margin-bottom: 18px;
}

/* Simple Post List - Numbered */
.posts--simple-list-numbered {
  counter-reset: list;
}
.posts--simple-list-numbered .posts__item {
  padding-left: 100px;
  position: relative;
  counter-increment: list;
}
.widget--footer .posts--simple-list-numbered .posts__item {
  padding-left: 38px;
}
.posts--simple-list-numbered .posts__item::before {
  content: counter(list, decimal-leading-zero);
  font-family: "Formula1-Bold", sans-serif;
  font-size: 44px;
  line-height: 1em;
  font-style: italic;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
}
.widget--footer .posts--simple-list-numbered .posts__item::before {
  font-size: 24px;
}

/* Simple Posts List - Large */
.widget--side-panel .posts--simple-list--lg .posts__item {
  margin-bottom: 50px;
}
.widget--side-panel .posts--simple-list--lg .posts__item:last-child {
  margin-bottom: 0;
}
.main-nav__megamenu .posts--simple-list--lg .posts__item {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .main-nav__megamenu .posts--simple-list--lg .posts__item {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .main-nav__megamenu .posts--simple-list--lg .posts__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .main-nav__megamenu .posts--simple-list--lg .posts__item .posts__title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .main-nav__megamenu .posts--simple-list--lg .posts__item .posts__title {
    font-size: 22px;
  }
}
.posts--simple-list--lg .posts__cat {
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .posts--simple-list--lg .posts__cat-label {
    font-size: 10px;
  }
}
.posts--simple-list--lg .posts__title {
  margin-bottom: 0.2em;
}
@media (min-width: 992px) {
  .posts--simple-list--lg .posts__title {
    font-size: 18px;
    line-height: 1em;
  }
  .widget--side-panel .posts--simple-list--lg .posts__title {
    font-size: 22px;
  }
}
.posts--simple-list--lg .posts__excerpt {
  font-size: 15px;
  line-height: 26px;
}

/* Simple Posts List - XLarge */
.posts--simple-list--xlg .posts__cat {
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__cat-label {
    font-size: 10px;
  }
}
.posts--simple-list--xlg .posts__title {
  margin-bottom: 0.1em;
}
@media (min-width: 768px) {
  .posts--simple-list--xlg .posts__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .posts--simple-list--xlg .posts__title {
    font-size: 30px;
    line-height: 28px;
  }
}
.posts--simple-list--xlg .posts__date {
  font-size: 9px;
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__date {
    font-size: 11px;
  }
}
.posts--simple-list--xlg .posts__excerpt {
  font-size: 15px;
  line-height: 26px;
}
@media (min-width: 1199px) {
  .posts--simple-list--xlg .posts__excerpt {
    margin-top: 13px;
  }
}
@media (min-width: 992px) {
  .posts--simple-list--xlg .posts__more {
    padding-top: 30px;
  }
}
@media (min-width: 1199px) {
  .posts--simple-list--xlg .posts__more {
    padding-top: 38px;
  }
}

/* Simple Posts List - Search Result */
/* Posts List - Horizontal */
.posts-layout-horizontal {
  display: flex;
}
@media (max-width: 991px) {
  .posts-layout-horizontal {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .main-nav__megamenu .posts-layout-horizontal {
    padding-bottom: 22px;
    margin-bottom: 30px !important;
    margin-left: -55px !important;
    margin-right: -55px !important;
    padding-left: 47px;
    padding-right: 47px;
    border-bottom: 1px solid #292c31;
  }
}
.posts-layout-horizontal .posts__item {
  padding-right: 8px;
  padding-left: 8px;
}
@media (max-width: 991px) {
  .posts-layout-horizontal .posts__item {
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav__megamenu .posts-layout-horizontal .posts__item .posts__thumb {
    max-width: 35%;
  }
}
@media (min-width: 992px) {
  .posts-layout-horizontal .posts__item {
    padding-right: 20px;
  }
}
@media (min-width: 1199px) {
  .posts-layout-horizontal .posts__item {
    padding-right: 30px;
  }
}

.posts-layout-horizontal--3cols .posts__item {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .posts-layout-horizontal--3cols .posts__item {
    flex-basis: 33.3%;
  }
}

/* Post: Cards */
.posts__item--card-row {
  flex-direction: row;
}

.posts__item--card, .posts__item--card:last-child {
  margin-bottom: 15px;
}
.posts__item--card .posts__thumb {
  float: none;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);

  display: flex;
  justify-content: center;
  align-items: center;
}
.posts__item--card .posts__thumb:first-child {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.posts__item--card .posts__thumb:last-child {
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.posts__item--card .posts__thumb img {
  width: 100%;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.posts__item--card.posts__item--card-condensed {
  margin-bottom: 0;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.posts__item--card .posts__cta {
  display: block;
  position: absolute;
  top: 0;
  right: 23px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  transform: translateY(-50%);
}
.posts__item--card .posts__cta::before, .posts__item--card .posts__cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.25s ease;
}
.posts__item--card .posts__cta::before {
  width: 17px;
  height: 3px;
}
.posts__item--card .posts__cta::after {
  width: 3px;
  height: 17px;
}
.posts__item--card .posts__cta:hover::before, .posts__item--card .posts__cta:hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.posts__item--card .posts__cat {
  display: block;
  position: absolute;
  left: 23px;
  top: 23px;
}
.posts__item--card .posts__inner .posts__cat {
  position: static;
  margin-bottom: 18px;
}
.posts__item--card .posts__cat-label {
  font-size: 10px;
  padding-top: 0.6em;
}
.posts__item--card .posts__date {
  font-size: 10px;
  line-height: 1.2em;
}
.posts__item--card .posts__date + .posts__title {
  margin-top: 5px;
}
@media (min-width: 992px) {
  .posts__item--card .posts__date + .posts__title {
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  .posts__item--card .posts__date {
    font-size: 11px;
  }
}
.posts__item--card .posts__title {
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 0.2em;
}
@media (min-width: 992px) {
  .posts__item--card .posts__title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .posts__item--card .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .posts__item--card .posts__title--sm {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .posts__item--card .posts__title--sm + .posts__excerpt {
    padding: 10px 0 0 0;
  }
}
.posts__item--card .posts__excerpt {
  padding: 13px 0 0 0;
}
@media (min-width: 992px) {
  .posts__item--card .posts__excerpt {
    padding: 23px 0 8px 0;
  }
}
.posts__item--card .posts__inner {
  padding-top: 18px;
  position: relative;
}
.posts__item--card .posts__footer {
  padding: 17px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: table;
  width: 100%;
  height: 100%;
}
.posts__item--card .post-author {
  display: table-cell;
  width: 50%;
  text-align: left;
}
@media (max-width: 479px) {
  .posts__item--card .post-author {
    width: 40%;
  }
}
.posts__item--card .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
}
.posts__item--card .post-author__avatar img {
  vertical-align: top;
}
@media (max-width: 479px) {
  .posts__item--card .post-author__avatar {
    display: none;
  }
}
.posts__item--card .post-author__name {
  font-size: 10px;
  text-transform: uppercase;
  color: #9a9da2;
  font-weight: 400;
  font-style: normal;
}
.posts__item--card .post__meta {
  display: table-cell;
  width: 50%;
  text-align: right;
}

/* Posts: Cards Compact (video) */
.posts--card-compact .posts__item, .posts--card-compact .posts__item:last-child {
  margin-bottom: 15px;
}
.posts--card-compact .posts__item .posts__thumb {
  float: none;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.posts--card-compact .posts__item .posts__thumb:first-child {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.posts--card-compact .posts__item .posts__thumb:last-child {
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.posts--card-compact .posts__item .posts__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.posts--card-compact .posts__item .posts__cat {
  margin-bottom: 12px;
}
.posts--card-compact .posts__item .posts__title {
  font-size: 18px;
  line-height: 1.11em;
  margin-bottom: 0.4em;
}
.posts--card-compact .posts__item--lg .posts__cat-label {
  font-size: 10px;
}
@media (min-width: 992px) {
  .posts--card-compact .posts__item--lg .posts__title {
    font-size: 26px;
    line-height: 1em;
  }
}

/* Post: Tile */
.main-nav__megamenu .posts--tile {
  margin: -44px -65px -44px 0;
}
@media only screen and (max-width: 991px) {
  .main-nav__megamenu .posts--tile {
    margin: 0;
  }
  .main-nav__megamenu .posts--tile .posts__footer,
.main-nav__megamenu .posts--tile .posts__cta {
    display: none;
  }
}
.main-nav__megamenu .posts--tile .posts__item--tile {
  margin-bottom: 0 !important;
  border-radius: 0;
}
.main-nav__megamenu .posts--tile .posts__thumb img {
  border-radius: 0;
}

.posts__item--tile {
  position: relative;
  margin-bottom: 15px !important;
}
.posts__item--tile .posts__thumb {
  margin: 0;
  float: none;
  position: relative;
}
.posts__item--tile .posts__thumb img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}
.posts__item--tile .posts__thumb::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.posts__item--tile .posts__inner {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.posts__item--tile .posts__inner--centered {
  top: 50%;
  transform: translateY(-50%);
}
.posts__item--tile .posts__cat .posts__cat-label {
  float: none;
  display: inline-block;
  font-size: 10px;
}
.posts__item--tile .posts__title {
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 0.5em;
  line-height: 1em;
}
@media (min-width: 992px) {
  .posts__item--tile .posts__title {
    font-size: 24px;
    line-height: 1.0833em;
  }
}
.posts__item--tile .posts__cta {
  display: block;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 4;
}
.posts__item--tile .posts__cta::before, .posts__item--tile .posts__cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.25s ease;
}
.posts__item--tile .posts__cta::before {
  width: 17px;
  height: 3px;
}
.posts__item--tile .posts__cta::after {
  width: 3px;
  height: 17px;
}
.posts__item--tile .posts__cta:hover::before, .posts__item--tile .posts__cta:hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.posts__item--tile .posts__date {
  font-size: 11px;
  color: #fff;
  margin-bottom: 2.5em;
}
.posts__item--tile .posts__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}
.posts__item--tile .post-author {
  display: inline-block;
  margin-right: 14px;
  position: relative;
  top: -2px;
}
.posts__item--tile .post-author__avatar {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
  width: 24px;
  height: 24px;
  float: none;
  margin-right: 5px;
}
.posts__item--tile .post-author__name {
  margin: 0;
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #9a9da2;
}
.posts__item--tile .post__meta {
  display: inline-block;
}

.posts--tile-alt .posts__thumb img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.posts--tile-alt .posts__thumb::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 20%;
  opacity: 0.6;
  background-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
.posts--tile-alt .posts__inner {
  text-align: left;
  padding: 12px 24px;
}
.posts--tile-alt .posts__cat {
  margin-bottom: 10px;
}
.posts--tile-alt .posts__title {
  padding-left: 0;
  padding-right: 0;
  line-height: 1em;
  margin-bottom: 0.15em;
  font-size: 20px;
}
@media (min-width: 992px) {
  .posts--tile-alt .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-alt .posts__title {
    font-size: 30px;
  }
}
.posts--tile-alt .posts__date {
  margin-bottom: 0;
  font-weight: bold;
}
.posts--tile-alt .posts__footer {
  text-align: left;
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 991px) {
  .posts--tile-alt .posts__footer {
    flex-wrap: wrap;
  }
}
.posts--tile-alt .post__meta {
  margin-left: auto;
}

@media (min-width: 992px) {
  .posts__item--tile-sm .posts__title {
    font-size: 22px;
  }
}

.posts--tile-alt-nopaddings {
  margin-left: 0;
  margin-right: 0;
}
.posts--tile-alt-nopaddings .post-grid__item {
  padding-left: 0;
  padding-right: 0;
}
.posts--tile-alt-nopaddings .posts__item {
  margin-bottom: 0 !important;
}
.posts--tile-alt-nopaddings .posts__thumb img {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.posts--tile-meta-position .posts__title + .posts__date {
  margin-top: 0;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .posts--tile-meta-position .meta__item + .meta__item {
    margin-left: 8px;
  }
}

.posts--tile-thumb-bordered .posts__thumb {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.posts--tile-hero-post-grid {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .posts--tile-hero-post-grid {
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-hero-post-grid {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .posts--tile-hero-post-grid .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-hero-post-grid .posts__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .posts--tile-hero-post-grid .posts__title--lg {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .posts__item--tile-lg .posts__title {
    font-size: 34px;
  }
}

.posts--tile-alt-noborder .posts__item--tile {
  border: 0;
  border-radius: 0;
  margin-bottom: 0 !important;
}
.posts--tile-alt-noborder .posts__thumb {
  border-radius: 0;
}
.posts--tile-alt-noborder .posts__thumb img {
  border-radius: 0;
}
@media (min-width: 1200px) {
  .posts--tile-alt-noborder .posts__title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .posts--tile-alt-noborder .posts__inner {
    padding: 40px;
  }
}

/* Post Tile - Event */
.posts__item--tile-event .posts__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 12.855px;
  line-height: 1.833em;
  color: #fff;
}
@media (min-width: 992px) {
  .posts__item--tile-event .posts__inner {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .posts__item--tile-event .posts__inner {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.posts__item--tile-event .posts__thumb::after {
  top: 0;
  background-image: linear-gradient(120deg, #31404b 0%, #07e0c4 100%);
  opacity: 0.4;
  z-index: 3;
}
.posts__item--tile-event .posts__excerpt {
  padding: 10px 0;
}
@media (min-width: 992px) {
  .posts__item--tile-event .posts__excerpt {
    padding: 10px 20px;
  }
}
.posts__item--tile-event .posts__countdown {
  margin-top: auto;
  margin-bottom: auto;
}
.posts__item--tile-event .posts__logo img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
.posts__item--tile-event .countdown-counter__label {
  color: #fff;
}

/* Post Grid */
@media (max-width: 479px) {
  .post-grid--2cols .post-grid__item {
    width: 100%;
  }
}

.post-grid--featured {
  padding-top: 15px;
}

/* Post: Cards Thumb Left */
.posts--cards-thumb-left .posts__item--card {
  overflow: hidden;
}
.posts--cards-thumb-left .posts__thumb {
  width: 100%;
  float: none;
  overflow: hidden;
  height: 200px;
}
@media (min-width: 375px) {
  .posts--cards-thumb-left .posts__thumb {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .posts--cards-thumb-left .posts__thumb {
    float: left;
    margin: 0;
    max-width: 325px;
    height: auto;
  }
  .posts--cards-thumb-left .posts__thumb:first-child {
    border-radius: 4px 0 0 4px;
  }
}
@media (min-width: 992px) {
  .posts--cards-thumb-left .posts__thumb {
    max-width: 220px;
  }
}
@media (min-width: 1199px) {
  .posts--cards-thumb-left .posts__thumb {
    max-width: 380px;
  }
}
.posts--cards-thumb-left .posts__inner {
  overflow: hidden;
  padding-top: 0;
}
@media (min-width: 992px) {
  .posts--cards-thumb-left .posts__inner {
    padding-top: 8px;
  }
}
.posts--cards-thumb-left .posts__cta {
  position: absolute;
  left: 20px;
  top: 20px;
  transform: none;
}
.posts--cards-thumb-left .posts__cta:hover {
  transform: rotate(90deg);
}

/* Post: Cards Thumb Large */
@media (min-width: 992px) {
  .posts--cards-thumb-lg .posts__inner {
    padding-top: 30px;
  }
}
.posts--cards-thumb-lg .posts__cat {
  position: static;
}
@media (min-width: 992px) {
  .posts--cards-thumb-lg .posts__cat {
    margin-bottom: 17px;
  }
}
@media (min-width: 992px) {
  .posts--cards-thumb-lg .posts__title {
    font-size: 28px;
    line-height: 1.07em;
  }
}

/* Post: Blockquote */
.posts__item--quote {
  background-color: #194676;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-width: 304px;
}
@media (min-width: 992px) {
  .posts__item--quote {
    min-height: 482px;
  }
}
@media (min-width: 1199px) {
  .posts__item--quote {
    min-height: 488px;
  }
}
.posts__item--quote::before {
  content: "“";
  display: block;
  position: absolute;
  left: -0.09em;
  top: -0.18em;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  opacity: 0.1;
  font-size: 300px;
  line-height: 1em;
  pointer-events: none;
}
@media (min-width: 992px) {
  .posts__item--quote::before {
    font-size: 600px;
  }
}
@media (min-width: 1199px) {
  .posts__item--quote::before {
    font-size: 700px;
  }
}

.blockquote--card {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.blockquote--card .blockquote__content {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1em;
  color: #fff;
  font-style: normal;
  margin: 0;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__content {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .blockquote--card .blockquote__content {
    font-size: 36px;
  }
}
.blockquote--card .blockquote-stress {
  display: block;
  color: #c2ff1f;
}
.blockquote--card .blockquote__footer {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2em;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.blockquote--card .blockquote__footer::before {
  display: none;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__footer {
    text-align: right;
  }
}
.blockquote--card .blockquote__cite {
  font-style: normal;
}
.blockquote--card .blockquote__author-name {
  display: block;
  font-size: 11px;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__author-name {
    font-size: 14px;
  }
}
.blockquote--card .blockquote__author-info {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}
@media (min-width: 992px) {
  .blockquote--card .blockquote__author-info {
    font-size: 10px;
  }
}

/* Posts: Featured Slider */
.posts--slider-featured:hover .posts__thumb img {
  transform: scale(1.1);
}
.posts--slider-featured .posts__item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.posts--slider-featured .posts__thumb {
  margin: 0;
}
.posts--slider-featured .posts__thumb img {
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.posts--slider-featured .posts__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-image: linear-gradient(to bottom, transparent, #000);
  border-radius: 0 0 4px 4px;
  transform: translate3d(0, 0, 0);
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__inner {
    padding: 30px 23% 30px 40px;
  }
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__cat {
    margin-bottom: 13px;
  }
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__cat-label {
    font-size: 10px;
  }
}
.posts--slider-featured .posts__title {
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 0.4em;
  color: #fff;
}
@media (min-width: 768px) {
  .posts--slider-featured .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .posts--slider-featured .posts__title {
    font-size: 32px;
  }
}
@media (min-width: 1199px) {
  .posts--slider-featured .posts__title {
    font-size: 38px;
    line-height: 34px;
  }
}
.posts--slider-featured .posts__title .text-primary {
  display: block;
}
.posts--slider-featured .posts__title-higlight {
  color: #9fe900;
}
.posts--slider-featured .post-author {
  color: #fff;
}
.posts--slider-featured .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
@media (min-width: 768px) {
  .posts--slider-featured .post-author__avatar {
    margin-right: 8px;
  }
}
.posts--slider-featured .post-author__name,
.posts--slider-featured .posts__date {
  font-size: 9px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .posts--slider-featured .post-author__name,
.posts--slider-featured .posts__date {
    font-size: 11px;
  }
}
.posts--slider-featured .posts__date::before {
  content: "–";
  margin-right: 0.25em;
}

/* Featured Slider - Center */
.posts-slider--center .posts__thumb {
  float: none;
  position: relative;
}
.posts-slider--center .posts__thumb::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}
.posts-slider--center .posts__inner {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  right: auto;
  background: none;
  text-align: center;
  width: 80%;
  padding: 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .posts-slider--center .posts__inner {
    padding: 0;
    width: 60%;
  }
}
.posts-slider--center .posts__cat-label {
  float: none;
  display: inline-block;
}
.posts-slider--center .posts__title {
  font-size: 14px;
}
@media (min-width: 768px) {
  .posts-slider--center .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .posts-slider--center .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .posts-slider--center .posts__title {
    font-size: 32px;
    line-height: 32px;
  }
}

/* Featured Carousel */
.posts--carousel-featured .posts__item {
  position: relative;
}
.posts--carousel-featured .posts__title {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 15px;
}
@media (min-width: 480px) {
  .posts--carousel-featured .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .posts--carousel-featured .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__title {
    font-size: 15px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel-featured .posts__title {
    font-size: 18px;
    line-height: 1.11em;
  }
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__cat {
    margin-bottom: 10px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel-featured .posts__cat {
    margin-bottom: 17px;
  }
}
.posts--carousel-featured .posts__cat-label {
  float: none;
  display: inline-block;
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__cat-label {
    font-size: 10px;
  }
}
.posts--carousel-featured .posts__thumb {
  float: none;
  position: relative;
  margin: 0;
}
.posts--carousel-featured .posts__thumb img {
  width: 100%;
  vertical-align: top;
}
.posts--carousel-featured .posts__inner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15%;
  text-align: center;
}
@media (max-width: 768px) and (min-width: 992px) {
  .posts--carousel-featured .posts__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.posts--carousel-featured .posts__date {
  color: #9a9da2;
  font-size: 9px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .posts--carousel-featured .posts__date {
    font-size: 11px;
  }
}
.posts--carousel-featured .post__meta {
  padding-top: 5px;
}
@media (min-width: 992px) {
  .posts--carousel-featured .post__meta {
    padding-top: 10px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel-featured .post__meta {
    padding-top: 22px;
  }
}
.posts--carousel-featured .meta__item {
  color: #fff;
}

/* Posts - Horizontal */
.posts--horizontal {
  display: flex;
}
@media (max-width: 767px) {
  .posts--horizontal {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .posts--horizontal .posts__item, .card .posts--horizontal .posts__item {
    padding-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    margin: -24px 0 !important;
  }
  .posts--horizontal .posts__item:first-child, .card .posts--horizontal .posts__item:first-child {
    border-left: none;
    padding-left: 0;
  }
  .posts--horizontal .posts__item:first-child .posts__inner, .card .posts--horizontal .posts__item:first-child .posts__inner {
    padding-left: 0;
  }
  .posts--horizontal .posts__item:last-child, .card .posts--horizontal .posts__item:last-child {
    padding-right: 0;
  }
  .posts--horizontal .posts__item:last-child .posts__inner, .card .posts--horizontal .posts__item:last-child .posts__inner {
    padding-right: 0;
  }
  .posts--horizontal .posts__item .posts__inner, .card .posts--horizontal .posts__item .posts__inner {
    padding: 24px 0;
  }
}

/* Posts - Carousel Video Slideshow */
.posts--carousel .posts__item {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0;
}
.posts--carousel .posts__link-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 8px;
  text-align: left;
}
.posts--carousel .posts__link-wrapper:hover .posts__inner {
  transform: translateY(0);
}
.posts--carousel .posts__link-wrapper:hover::before {
  transform: translateY(-100%);
}
.posts--carousel .posts__link-wrapper::before {
  content: "\f04b";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background-color: rgba(23, 29, 33, 0.6);
  border-radius: 50%;
  border: 4px solid #dd163b;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 32px;
  text-indent: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.posts--carousel .posts__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 15px 18px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  pointer-events: none;
}
.posts--carousel .posts__title {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 12px;
  line-height: 1em;
}
@media (min-width: 480px) {
  .posts--carousel .posts__title {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .posts--carousel .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 1199px) {
  .posts--carousel .posts__title {
    font-size: 14px;
  }
}
.posts--carousel .posts__thumb {
  float: none;
  margin: 0;
  background-color: #171d21;
  border-radius: 4px;
}
.posts--carousel .posts__thumb img {
  border-radius: 4px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0.6;
  height: 400px !important;
}
.posts--carousel .posts__thumb:hover img {
  opacity: 0.3;
}
.posts--carousel .posts__date {
  color: #9a9da2;
  font-size: 9px;
  font-weight: 700;
  display: block;
  line-height: 1em;
}
@media (min-width: 992px) {
  .posts--carousel .posts__date {
    font-size: 10px;
  }
}
.posts--carousel .slick-prev,
.posts--carousel .slick-next {
  top: -62px;
}
.posts--carousel .slick-prev:hover,
.posts--carousel .slick-next:hover {
  background-color: #31404b;
}

/* Posts: Inline (marquee) */
.posts--inline {
  margin: 0;
}
.posts--inline .posts__item,
.posts--inline .posts__title,
.posts--inline .posts__cat,
.posts--inline .posts__excerpt {
  display: inline-block;
  margin: 0;
  font-size: 12px;
}
.posts--inline .posts__title {
  margin-right: 0.5em;
}
.posts--inline .posts__cat {
  position: relative;
  top: 3px;
}
.posts--inline .posts__cat-label {
  margin-bottom: 0;
}
.posts--inline .posts__excerpt {
  margin-right: 1em;
}

/* Featured News - Football */
.posts--slider-var-width .row {
  display: block;
}
.posts--slider-var-width .row [class*=col-] {
  float: left;
}

.posts__item--desc-center .posts__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  right: auto;
  background: none;
  text-align: center;
  width: 80%;
  padding: 0;
  z-index: 2;
  transition: transform 0.25s ease;
}
@media (min-width: 992px) {
  .posts__item--desc-center .posts__inner {
    padding: 0;
    width: 60%;
  }
}
.posts__item--desc-center .posts__thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  float: none;
  margin: 0 0 15px 0;
  transform: translate3d(0, 0, 0);
}
.posts__item--desc-center .posts__thumb img {
  width: 100%;
  height: auto;
}
.posts__item--desc-center .posts__cat {
  overflow: visible;
}
.posts__item--desc-center .posts__cat-label {
  float: none;
  display: inline-block;
  font-size: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-center .posts__title {
  font-size: 14px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .posts__item--desc-center .posts__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .posts__item--desc-center .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 1199px) {
  .posts__item--desc-center .posts__title {
    font-size: 34px;
    line-height: 1em;
  }
}
.posts__item--desc-center .post-author__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.posts__item--desc-center .posts__date {
  font-size: 11px;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-center .posts__title-higlight {
  color: #dd163b;
}
.posts__item--desc-center:hover .posts__inner {
  transform: translate3d(-50%, -58%, 0);
}

.posts__item--desc-left {
  position: relative;
}
.posts__item--desc-left .posts__inner {
  position: absolute;
  bottom: 16px;
  left: 24px;
  background: none;
  width: 80%;
  padding: 0;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}
.posts__item--desc-left .posts__inner__image {
  margin-right: 20px;
}

@media (min-width: 992px) {
  .posts__item--desc-left .posts__inner {
    padding: 0;
    width: 85%;
  }
}
@media (min-width: 1186px) {
  .posts__item--desc-left .posts__inner {
    width: 60%;
  }
}
.posts__item--desc-left .posts__thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  float: none;
  margin: 0 0 14px 0;
  transform: translate3d(0, 0, 0);
}
.posts__item--desc-left .posts__thumb img {
  width: 100%;
  height: auto;
}
.posts__item--desc-left .posts__cat {
  overflow: visible;
}
.posts__item--desc-left .posts__cat-label {
  display: inline-block;
  float: none;
  font-size: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-left .posts__title {
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 0.1em;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1199px) {
  .posts__item--desc-left .posts__title {
    font-size: 20px;
    line-height: 1em;
  }
}
.posts__item--desc-left .posts__date {
  font-size: 10px;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-left .posts__title-higlight {
  color: #dd163b;
}
.posts__item--desc-left:hover .posts__inner {
  transform: translateY(-12px);
}

/* Slider Featured */
.posts--slider-top-news {
  margin-bottom: 0 !important;
}
.posts--slider-top-news .slick-list,
.posts--slider-top-news .slick__slide {
  max-height: 660px !important;
}
.posts--slider-top-news .posts__thumb {
  float: none;
  margin: 0;
}
.posts--slider-top-news .posts__thumb img {
  width: 100%;
  height: auto;
}
.posts--slider-top-news .posts__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  z-index: 4;
}
@media (min-width: 480px) {
  .posts--slider-top-news .posts__inner {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .posts--slider-top-news .posts__inner {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__inner {
    width: 620px;
  }
}
.posts--slider-top-news .posts__cat {
  visibility: visible;
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__cat {
    margin-bottom: 13px;
  }
}
.posts--slider-top-news .posts__cat-label {
  display: inline-block;
  float: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__cat-label {
    font-size: 10px;
  }
}
.posts--slider-top-news .posts__title {
  font-size: 18px;
  line-height: 1em;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .posts--slider-top-news .posts__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .posts--slider-top-news .posts__title {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .posts--slider-top-news .posts__title {
    font-size: 42px;
  }
}
.posts--slider-top-news .posts__title > a:hover {
  color: #fff !important;
}
.posts--slider-top-news .posts__title-higlight {
  color: #9fe900;
}
@media (max-width: 479px) {
  .posts--slider-top-news .posts__footer {
    display: none;
  }
}
.posts--slider-top-news .post-author {
  display: inline-block;
}
.posts--slider-top-news .post-author__avatar {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .posts--slider-top-news .post-author__avatar {
    margin-right: 8px;
  }
}
.posts--slider-top-news .posts__date {
  color: #fff;
  font-size: 11px;
}
.posts--slider-top-news .post__meta {
  display: inline-block;
  margin-left: 1em;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .posts--slider-top-news .post__meta {
    margin-left: 2.5em;
  }
}
.posts--slider-top-news .meta__item a {
  color: #fff;
}
@media (min-width: 768px) {
  .posts--slider-top-news .posts__item-has-img .posts__inner {
    text-align: left;
    transform: translate(-50%, -50%) translateX(35%);
  }
}
.posts--slider-top-news .posts__item-has-img .posts__img-player {
  position: absolute;
  top: 0;
  bottom: 0;
  max-width: 45%;
  z-index: 4;
}
@media (max-width: 767px) {
  .posts--slider-top-news .posts__item-has-img .posts__img-player {
    display: none;
  }
}
@media (min-width: 1200px) {
  .posts--slider-top-news .posts__item-has-img .posts__img-player {
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translate(-585px, 0);
  }
}
/* Posts - Video Grid */
.posts--video-grid .posts__item {
  position: relative;
  z-index: 4;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.posts--video-grid .posts__item.posts__item--category-1 .posts__link-wrapper::before {
  border-color: #dd163b;
}
.posts--video-grid .posts__item.posts__item--category-2 .posts__link-wrapper::before {
  border-color: #07e0c4;
}
.posts--video-grid .posts__item.posts__item--category-3 .posts__link-wrapper::before {
  border-color: #9fe900;
}
@media (min-width: 992px) {
  .posts--video-grid .posts__item--lg .posts__link-wrapper::before {
    width: 80px;
    height: 80px;
    border-width: 6px;
    line-height: 68px;
    font-size: 32px;
  }
  .posts--video-grid .posts__item--lg .posts__title {
    font-size: 24px;
    line-height: 1.08333em;
  }
  .posts--video-grid .posts__item--lg .posts__cat-label {
    font-size: 10px;
  }
}
.posts--video-grid .posts__link-wrapper {
  display: block;
  position: relative;
  text-align: left;
}
.posts--video-grid .posts__link-wrapper:hover .posts__inner {
  transform: translateY(0);
}
.posts--video-grid .posts__link-wrapper:hover::before {
  transform: translateY(-100%);
}
.posts--video-grid .posts__link-wrapper::before {
  content: "\f04b";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-color: rgba(23, 29, 33, 0.6);
  border-radius: 50%;
  border: 4px solid #dd163b;
  z-index: 4;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 52px;
  text-indent: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.posts--video-grid .posts__inner {
  position: absolute;
  left: 0;
  width: 75%;
  bottom: 0;
  padding: 0 24px 18px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  pointer-events: none;
  z-index: 4;
}
.posts--video-grid .posts__title {
  color: #fff;
  margin-bottom: 0.25em;
  font-size: 12px;
  line-height: 1em;
}
@media (min-width: 480px) {
  .posts--video-grid .posts__title {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .posts--video-grid .posts__title {
    font-size: 13px;
  }
}
@media (min-width: 1199px) {
  .posts--video-grid .posts__title {
    font-size: 14px;
  }
}
.posts--video-grid .posts__thumb {
  float: none;
  margin: 0;
  background-color: #171d21;
  border-radius: 4px;
}
.posts--video-grid .posts__thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
.posts--video-grid .posts__date {
  color: #9a9da2;
  font-size: 9px;
  font-weight: 700;
  display: block;
  line-height: 1em;
}
@media (min-width: 992px) {
  .posts--video-grid .posts__date {
    font-size: 10px;
  }
}

.grid-layout {
  display: grid;
  justify-content: stretch;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.grid-layout--1-2-1 {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
}
@media (min-width: 480px) {
  .grid-layout--1-2-1 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-layout--1-2-1 {
    grid-template-columns: 43% 1fr 1fr;
    grid-template-rows: 360px 260px;
  }
}
@media (min-width: 992px) {
  .grid-layout--1-2-1 .post-grid__item:nth-child(1) {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (min-width: 992px) {
  .grid-layout--1-2-1 .post-grid__item:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}

/* Single Post
/* ------------------------- */
.post--single .post__thumbnail {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.post--single .post__thumbnail--square {
  border-radius: 0;
}
.post--single .post__category {
  overflow: hidden;
  margin-bottom: 15px;
}
.post--single .post__title {
  font-size: 18px;
  line-height: 1.0625em;
  margin-bottom: 0.55em;
}
@media (min-width: 992px) {
  .post--single .post__title {
    font-size: 32px;
  }
}
.post--single .post__meta {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .post--single .post__meta {
    margin-bottom: 34px;
  }
}
.post--single .post__content-wrapper {
  position: relative;
}
@media (min-width: 992px) {
  .post--single .post__content--inner-left {
    padding-left: 80px;
  }
  .post--single .post__content--inner-left .alignleft {
    margin-left: -80px;
  }
}
@media (min-width: 1200px) {
  .post--single .post__content--inner-left {
    padding-left: 100px;
  }
  .post--single .post__content--inner-left .alignleft {
    margin-left: -100px;
  }
}
.post--single .post__footer {
  padding: 30px 0 10px 0;
}
.post--single .post__tags .btn {
  margin: 0 5px 8px 0;
}
.post--single .post__tags--simple a {
  display: inline-block;
  color: #fff;
  font-family: "Formula1-Bold", sans-serif;
  margin-right: 0.35em;
}
.post--single .post__tags--simple a::before {
  content: "#";
  color: #dd163b;
}
.post--single .post__tags--simple a:hover {
  color: #dd163b;
}
@media (min-width: 992px) {
  .post--single .posts__cat-label {
    font-size: 10px;
  }
}

.post--single-sm .post__title {
  margin-bottom: 0.35em;
}
@media (min-width: 992px) {
  .post--single-sm .post__title {
    font-size: 26px;
  }
}
.post--single-sm .post__meta {
  margin-bottom: 0;
}
.post--single-sm .post__meta .meta__item--date {
  color: #fff;
}
@media (min-width: 992px) {
  .post--single-sm .post__meta {
    margin-bottom: 0;
  }
}

.post-sharing {
  margin-bottom: 10px;
  display: flex;
}
.post-sharing .btn {
  margin: 0 8px 5px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 15px;
}
.post-sharing .btn:first-child {
  margin-left: 0;
}
.post-sharing .btn:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .post-sharing .btn {
    padding-left: 0;
    padding-right: 0;
  }
  .post-sharing .btn .fa {
    margin-right: 0;
  }
}

.post-sharing-compact {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .post-sharing-compact {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .post-sharing-compact {
    padding-top: 70px;
  }
}
.post-sharing-compact .btn {
  margin: 0 10px;
  padding: 5px 0;
  width: 80px;
  text-align: center;
}
.post-sharing-compact .btn .fa {
  margin: 0;
}
.post-sharing-compact.stacked {
  justify-content: left;
  padding: 0 0 20px 0;
}
@media (min-width: 992px) {
  .post-sharing-compact.stacked {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    flex-direction: column;
  }
  .post-sharing-compact.stacked .btn {
    margin: 0 0 10px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .post-sharing-compact.stacked .btn {
    width: 60px;
  }
}
@media (min-width: 1200px) {
  .post-sharing-compact.stacked {
    padding-top: 0;
  }
}

.post-sharing-compact--footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 0;
}
@media (min-width: 992px) {
  .post-sharing-compact--footer {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .post-sharing-compact--footer {
    padding-top: 0;
  }
}
.post-sharing-compact--footer .btn {
  margin-left: 0;
  margin-right: 20px;
}
.post-sharing-compact--footer .btn:last-child {
  margin-right: 0;
}

.post--extra-top {
  margin-top: -100px;
  z-index: 4;
}
@media (min-width: 992px) {
  .post--extra-top {
    margin-top: -160px;
  }
}

/* Post Meta */
.meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta__item {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.2em;
  display: inline-block;
  vertical-align: middle;
}
.meta__item + .meta__item {
  margin-left: 8px;
}
@media (min-width: 992px) {
  .meta__item + .meta__item {
    margin-left: 15px;
  }
}
.meta__item::before {
  font-size: 13px;
  line-height: 1em;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-family: "simple-line-icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  position: relative;
  top: -1px;
}
@media (min-width: 992px) {
  .meta__item::before {
    margin-right: 8px;
  }
}
.meta__item a {
  color: #9a9da2;
  transition: color 0.2s ease;
}
.meta__item a:hover {
  color: #fff;
}

.meta__item--date::before {
  display: none;
}

.meta__item--views::before {
  content: "\e087";
}

.meta__item--likes::before {
  display: none;
}
.meta__item--likes .meta-like {
  vertical-align: middle;
  margin-right: 6px;
  font-size: 12px;
}
.meta__item--likes .meta-like--active {
  color: #f1365e;
}

.meta__item--comments::before {
  content: "\e07d";
  font-size: 12px;
}

.meta__item--author img {
  border-radius: 50%;
  margin-right: 6px;
}

/* Side Meta Block */
.post__meta-block--side {
  padding: 24px;
}
.post__meta-block--side .post-author__name {
  font-size: 13px;
}
.post__meta-block--side .social-links--btn {
  margin-left: 74px;
}
.post__meta-block--side .post__meta {
  display: none;
}
@media (min-width: 992px) {
  .post__meta-block--side {
    padding: 0;
    float: left;
    width: 60px;
    margin: 43px 0 0 24px;
  }
  .post__meta-block--side + .card__content {
    overflow: hidden;
    padding-left: 24px;
  }
  .post__meta-block--side .post-author {
    text-align: center;
    padding-bottom: 34px;
  }
  .post__meta-block--side .post-author__avatar {
    float: none;
    margin: 0 auto 8px auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .post__meta-block--side .post-author__name {
    font-size: 10px;
    line-height: 1.2em;
    margin-bottom: 0.75em;
  }
  .post__meta-block--side .post-author__slogan {
    font-size: 9px;
  }
  .post__meta-block--side .post__meta {
    display: block;
  }
  .post__meta-block--side .meta__item {
    display: block;
    text-align: center;
    margin: 0 0 21px 0;
  }
  .post__meta-block--side .meta__item::before {
    display: block;
    margin: 0 auto 6px auto;
  }
  .post__meta-block--side .meta__item--likes .meta-like {
    display: block;
    margin: 0 auto 6px auto;
  }
  .post__meta-block--side .social-links--btn {
    text-align: center;
    padding-bottom: 20px;
    margin-left: 0;
  }
  .post__meta-block--side .social-links--btn .social-links__item {
    display: block;
    margin: 0 auto 12px auto;
  }
}

.post__meta-block--top {
  padding-bottom: 65px;
}
.post__meta-block--top .post__category {
  margin-bottom: 22px;
}
.post__meta-block--top .posts__cat-label {
  display: inline-block;
  float: none;
  font-size: 10px;
}
.post__meta-block--top .page-heading__title {
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 0.475em;
}
@media (min-width: 992px) {
  .post__meta-block--top .page-heading__title {
    font-size: 42px;
  }
}
.post__meta-block--top .page-heading__title > a {
  color: #fff;
}
.post__meta-block--top .post__meta {
  color: #fff;
  margin-bottom: 22px;
}
.post__meta-block--top .meta__item a {
  color: #fff;
}
.post__meta-block--top .post-author {
  text-align: center;
}
.post__meta-block--top .post-author__avatar {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
}
.post__meta-block--top .post-author__name {
  font-size: 13px;
  color: #fff;
}
.post__meta-block--top .post-author__slogan {
  font-size: 10px;
  font-weight: 400;
}

.post__meta-block-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .post__meta-block-wrapper {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .post__meta-block-wrapper {
    height: 545px;
  }
}
.post__meta-block-wrapper .post__meta-block--top {
  padding-bottom: 0;
}

/* Side Meta Block - Wide */
.post__meta-block--side-wide {
  padding: 24px;
}
.post__meta-block--side-wide .post__title {
  font-size: 18px;
  line-height: 1.0833em;
}
@media (min-width: 992px) {
  .post__meta-block--side-wide .post__title {
    font-size: 24px;
  }
}
.post__meta-block--side-wide .post__meta {
  margin-bottom: 20px;
}
.post__meta-block--side-wide .post-author {
  margin-bottom: 18px;
}
.post__meta-block--side-wide .post-author__avatar {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin-right: 5px;
}
.post__meta-block--side-wide .post-author__name {
  font-size: 10px;
  line-height: 1.2em;
  color: #9a9da2;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 992px) {
  .post__meta-block--side-wide {
    padding: 0;
    float: left;
    width: 190px;
    margin: 43px 0 0 24px;
  }
  .post__meta-block--side-wide + .card__content {
    overflow: hidden;
    padding-left: 60px;
  }
  .post__meta-block--side-wide .social-links--btn-block {
    padding-right: 20px;
  }
}

/*
// #Widgets
// --------------------------------------------------
*/
/* Base Widget */
.widget__title {
  text-transform: uppercase;
}

.widget__content-inner {
  padding: 24px 24px;
}

.widget__content--bottom-decor {
  padding-bottom: 30px;
  background-image: linear-gradient(to right, rgba(236, 240, 246, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(236, 240, 246, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(236, 240, 246, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(236, 240, 246, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(236, 240, 246, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(236, 240, 246, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(255, 255, 255, 0.05) 8px, transparent 8px), linear-gradient(to right, rgba(255, 255, 255, 0.06) 8px, transparent 8px);
  background-repeat: repeat-x;
  background-size: 72px 24px, 72px 30px, 72px 34px, 72px 40px, 72px 37px, 72px 29px, 144px 30px, 216px 37px;
  background-position: 0 100%, 12px 100%, 24px 100%, 36px 100%, 48px 100%, 60px 100%, 12px 100%, 48px 100%;
}

/* Pushy Panel Widget */
.widget--side-panel {
  margin-bottom: 62px;
}
.widget--side-panel .widget__title {
  margin-bottom: 30px;
}
.widget--side-panel .widget__title > h4 {
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* Sidebar Widget */
.widget--sidebar {
  margin-bottom: 15px;
}
.widget--sidebar .widget__content {
  font-size: 14px;
  line-height: 22px;
}

/* Footer Widget */
.widget--footer {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .widget--footer {
    margin-bottom: 0;
  }
}
.widget--footer .widget__title {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  margin-bottom: 3.5em;
}
.widget--footer + .widget--footer {
  margin-top: 30px;
}

/*
// #Widget - Contact Info
// --------------------------------------------------
*/
.widget-contact-info__desc {
  margin-bottom: 32px;
}

/* Widget: Quick Contact */
.footer-widgets .widget-contact .form-control {
  background-color: #2b2e33;
  color: #fff;
}
.footer-widgets .widget-contact .form-control:not(:focus) {
  border-color: #2b2e33;
}

/* Widget: Featured Player */
.widget-player .widget__content {
  background-color: #27313b;
  color: #fff;
  height: 160px;
  overflow: hidden;
  position: relative;
  padding: 0 20px 0 0px;
  background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 4px;
}
.widget-player .widget__title + .widget__content {
  border-radius: 0;
  border-top: none;
}

.widget-player__team-logo {
  display: block;
  position: absolute;
  left: -25%;
  top: -25%;
  width: 80%;
  height: auto;
  opacity: 0.1;
  filter: grayscale(1);
  z-index: 1;
}
.widget-player__team-logo img {
  width: 100%;
  height: auto;
}

.widget-player__photo {
  position: absolute;
  left: 5px;
  bottom: 0;
  max-width: 130px;
  z-index: 4;
}

.widget-player__header {
  padding-top: 40px;
  margin-bottom: 8px;
  position: relative;
  z-index: 4;
}
@media (min-width: 992px) {
  .widget-player__header {
    padding-top: 40px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .widget-player__header {
    padding-top: 40px;
    margin-bottom: 10px;
  }
}

.widget-player__number {
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1em;
  float: left;
  margin-right: 0.1em;
  margin-left: -0.5em;
}
@media (min-width: 992px) {
  .widget-player__number {
    font-size: 42px;
    margin-left: -0.8em;
  }
}
@media (min-width: 1200px) {
  .widget-player__number {
    font-size: 56px;
  }
}

.widget-player__name {
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  top: 4px;
  z-index: 1;
  white-space: unset;
  text-align: right;
}
@media (min-width: 992px) {
  .widget-player__name {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .widget-player__name {
    font-size: 20px;
    top: 6px;
  }
}

.widget-player__first-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1em;
  font-family: "Formula1-Bold";
}

.widget-player__last-name {
  display: block;
  color: #dd163b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: unset;
  font-size: 24px;
  line-height: 1em;
  font-family: "Formula1-Bold";
}

.widget-player__car-last-name {
  display: block;
  color: #dd163b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: unset;
  text-align: right;
  font-family: "Formula1-Bold";
}

.widget-player__circuit-name {
  display: block;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: unset;
  text-align: right;
  font-family: "Formula1-Regular";
  font-size: 18px;
}

.widget-player__circuit-long-name {
  display: block;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: unset;
  text-align: right;
  font-family: "Formula1-Regular";
  font-size: 12px;
  line-height: 1em;
  margin-top: 5px;
}

.widget-player__game-name {
  display: block;
  color: #cccccc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: unset;
  text-align: right;
  font-family: "Formula1-Regular";
  font-size: 16px;
}

.widget-player--soccer .widget-car__game-name {
  font-size: 12px;
  line-height: 1em;
}
@media (min-width: 1200px) {
  .widget-player--soccer .widget-car__game-name .widget-player--soccer .widget-car__game-name {
    font-size: 14px;
  }
}

.widget-player__content {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  padding: 12px 0;
}

.widget-player__content-inner {
  width: 100%;
  padding-left: 140px;
  padding-right: 0px;
}
@media (min-width: 375px) {
  .widget-player__content-inner {
    padding-left: 160px;
  }
}
@media (min-width: 992px) {
  .widget-player__content-inner {
    padding-left: 50%;
  }
}

.widget-player__stat {
  float: left;
  width: 33.3%;
  text-align: center;
}
@media (min-width: 376px) and (max-width: 991px) {
  .widget-player__stat {
    width: 60px;
  }
}

.widget-player__stat-label {
  font-size: 8px;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 992px) {
  .widget-player__stat-label {
    font-size: 8px;
    margin-bottom: 1em;
  }
}
@media (min-width: 1200px) {
  .widget-player__stat-label {
    font-weight: 700;
    font-size: 10px;
  }
}

.widget-player__stat-number {
  font-size: 12px;
  line-height: 1.2em;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 992px) {
  .widget-player__stat-number {
    font-size: 18px;
  }
}

.widget-player__stat-legend {
  font-size: 7px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #9a9da2;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .widget-player__stat-legend {
    font-size: 8px;
  }
}

.widget-player__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #182027;
  z-index: 1;
  line-height: 10px;
  display: flex;
  justify-content: space-between;
  height: 28px;
}

.widget-player__footer-laptime {
  color: #fff;
  padding: 0 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  background-color: #182027;
}
.widget-player__footer-laptime .fa {
  font-size: 18px;
  margin-right: 0.5em;
}

.widget-player__footer-txt {
  display: inline-block;
  position: relative;
  background-color: #182027;
  color: #fff;
  padding: 0px 20px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 992px) {
  .widget-player__footer-txt {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .widget-player__footer-txt {
    font-size: 12px;
    line-height: 30px;
  }
}
.widget-player__footer-txt i {
  font-size: 16px;
  margin-right: 0.5em;
  color: #fff;
}

.widget-player__details {
  display: flex;
  flex-wrap: wrap;
  border-style: solid;
  border-width: 1px 0 0 1px;
  border-color: rgba(255, 255, 255, 0.05);
  margin: -1px;
}

.widget-player__details__item {
  flex: 0 1 50%;
  max-width: 50%;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
}
@media (min-width: 992px) {
  .widget-player__details__item {
    padding: 6px 12px;
  }
}
@media (min-width: 1200px) {
  .widget-player__details__item {
    padding: 12px 24px;
  }
}
.widget-player__details__item:first-child {
  border-left: none;
}
.widget-player__details__item:last-child {
  border-right: none;
}

.widget-player__details-desc-wrapper {
  display: table;
  width: 100%;
}

.widget-player__details-holder {
  display: table-cell;
  vertical-align: middle;
  width: 70%;
}

.widget-player__details-label {
  display: block;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  font-size: 10px;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .widget-player__details-label {
    font-size: 12px;
  }
}

.widget-player__details-desc {
  display: block;
  line-height: 1.2em;
  font-family: "Formula1-Bold", sans-serif;
  font-size: 8px;
}
@media (min-width: 992px) {
  .widget-player__details-desc {
    font-size: 9px;
  }
}

.widget-player__details-value {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  width: 30%;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  font-size: 10px;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .widget-player__details-value {
    font-size: 11px;
  }
}

/* Widget: Featured Player Alternative Styling */
.widget-player--alt .widget__content {
  background-color: #dd163b;
  background-image: linear-gradient(to bottom, #dd163b, #f29400);
}
.widget-player--alt .widget-player__photo {
  filter: grayscale(1);
}
.widget-player--alt .widget-player__last-name {
  color: #31404b;
}
.widget-player--alt .widget-player__content {
  background-color: #27313b;
}
.widget-player--alt .widget-player__stat-number {
  color: #dd163b;
}
.widget-player--alt .widget-player__stat-legend {
  color: #fff;
}
.widget-player--alt .widget-player__footer-txt {
  background-color: #27313b;
}

/* Widget: Featured Player - Small (eSports) */
.widget-player--sm .widget__content {
  background-color: transparent;
  background-image: none;
  height: 106px;
  padding: 0 20px 0 120px;
  display: flex;
  align-items: center;
}
@media (min-width: 375px) {
  .widget-player--sm .widget__content {
    padding-left: 120px;
  }
}
@media (min-width: 992px) {
  .widget-player--sm .widget__content {
    height: 106px;
    padding-left: 120px;
  }
}
@media (min-width: 1200px) {
  .widget-player--sm .widget__content {
    height: 106px;
  }
}
.widget-player--sm .widget-player__overlay {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 1px;
}
.widget-player--sm .widget-player__header {
  padding-top: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .widget-player--sm .widget-player__header {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .widget-player--sm .widget-player__header {
    padding-top: 0;
    margin-bottom: 0;
  }
}
.widget-player--sm .widget-player__name {
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 0.1em;
  position: static;
  text-transform: uppercase;
  flex: 1;
}
@media (min-width: 992px) {
  .widget-player--sm .widget-player__name {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .widget-player--sm .widget-player__name {
    font-size: 26px;
  }
}
.widget-player--sm .widget-player__first-name {
  display: inline-block;
  overflow: visible;
}
.widget-player--sm .widget-player__last-name {
  display: inline-block;
  overflow: visible;
}
.widget-player--sm .widget-player__content {
  position: static;
  padding: 0;
}
.widget-player--sm .widget-player__content-inner {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 375px) {
  .widget-player--sm .widget-player__content-inner {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .widget-player--sm .widget-player__content-inner {
    padding-left: 0;
  }
}
.widget-player--sm .widget-player__info {
  font-family: "Formula1-Bold", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2em;
  font-style: italic;
  font-weight: 700;
  color: #9a9da2;
}
.widget-player--sm .widget-player__info + .widget-player__rating {
  margin-left: 0.3em;
}
.widget-player--sm .widget-player__rating {
  display: inline-block;
  font-size: 9px;
  line-height: 1.2em;
  vertical-align: middle;
}

/* Widget: Featured Player - Soccer */
.widget-player--soccer {
  position: relative;
  background-color: #1d2024;
}
.widget-player--soccer .widget-player__ribbon {
  content: "\f005";
  display: block;
  position: absolute;
  width: 26px;
  height: 28px;
  background-color: #ffcf11;
  top: 0;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.widget-player--soccer .widget-player__ribbon::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  border-top: 6px solid #ffcf11;
  border-right: 13px solid transparent;
}
.widget-player--soccer .widget-player__ribbon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  right: 0;
  border-top: 6px solid #ffcf11;
  border-left: 13px solid transparent;
}
.widget-player--soccer .widget__content {
  background-color: #373a41;
  background-image: none;
  color: #9a9da2;
  height: 168px;
}
@media (min-width: 992px) {
  .widget-player--soccer .widget__content {
    height: 160px;
  }
}
@media (min-width: 1200px) {
  .widget-player--soccer .widget__content {
    height: 198px;
  }
}
.widget-player--soccer .widget-player__header {
  position: static;
}
.widget-player--soccer .widget-player__number {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin-left: 0;
  text-indent: -0.15em;
  width: 36%;
  background-color: #dd163b;
  color: rgba(255, 255, 255, 0.1);
  font-size: 150px;
  line-height: 1em;
  overflow: hidden;
}
.widget-player--soccer .widget-player__number::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 200px solid #373a41;
  border-left: 30px solid transparent;
}
.widget-player--soccer .widget-player__name {
  color: #ccc;
}
@media (min-width: 1200px) {
  .widget-player--soccer .widget-player__name {
    margin-left: -35px;
  }
}
.widget-player--soccer .widget-player__first-name {
  font-size: 14px;
  line-height: 1em;
}
@media (min-width: 999px) {
  .widget-player--soccer .widget-player__first-name {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .widget-player--soccer .widget-player__first-name {
    font-size: 18px;
  }
}
.widget-player--soccer .widget-player__last-name {
  font-size: 22px;
  line-height: 1em;
}
@media (min-width: 999px) {
  .widget-player--soccer .widget-player__last-name {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .widget-player--soccer .widget-player__last-name {
    font-size: 27px;
  }
}
.widget-player--soccer .widget-player__content-inner {
  overflow: hidden;
  margin-bottom: 15px;
}
.widget-player--soccer .widget-player__stat {
  width: 50%;
}
.widget-player--soccer .widget-player__stat-number {
  font-size: 18px;
  color: #31404b;
}
.widget-player--soccer .widget-player__stat-label {
  color: #9a9da2;
  font-size: 8px;
}
.widget-player--soccer .widget-player__content-alt {
  padding: 0 24px 0 50%;
}
@media (min-width: 375px) {
  .widget-player--soccer .widget-player__content-alt {
    padding-left: 160px;
  }
}
@media (min-width: 992px) {
  .widget-player--soccer .widget-player__content-alt {
    padding-left: 50%;
  }
}
.widget-player--soccer .widget-player__content-alt .progress {
  margin-bottom: 3px;
}
.widget-player--soccer .widget-player__content-alt .progress__label {
  font-size: 8px;
  color: #9a9da2;
}
.widget-player--soccer .widget-player__content-alt .progress__number {
  font-size: 8px;
  font-weight: 700;
  color: #31404b;
}

.widget-player__stats--center {
  display: flex;
  justify-content: center;
}

.widget-player__stat-item {
  text-align: center;
}

.widget-player__stat--value {
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  margin-bottom: 0.25em;
  color: #dd163b;
}

.widget-player__stat--value-primary {
  color: #dd163b;
}

.widget-player__stat--label {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.2em;
  color: #fff;
  margin-bottom: 0.1em;
}

.widget-player__stat--desc {
  font-size: 9px;
  line-height: 1.2em;
}

.widget-player__stat-item--number-side {
  display: flex;
  text-align: left;
  align-items: center;
}
.widget-player__stat-item--number-side .widget-player__stat--value {
  margin-right: 8px;
  font-size: 28px;
  margin-bottom: 0;
}
.widget-player__stat-item--number-side .widget-player__stat-inner {
  flex: 1;
}

/* Widget: Team Info */
.team-info-list {
  margin: 0;
}

.team-info__item {
  padding: 12px 24px;
  display: flex;
}
.team-info__item + .team-info__item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-info__label,
.team-info__value {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.team-info__value {
  margin-left: auto;
}
.team-info__value i {
  font-size: 18px;
}

.team-info__value--active {
  color: #dd163b;
}

.team-info__item--desc {
  display: block;
  padding-top: 24px;
  padding-bottom: 24px;
}
.team-info__item--desc .team-info__label {
  display: inline-block;
  margin: 0;
}

.search-bar--container {
  margin: 1em 0;
}
.search-bar--container .search-bar-custom {
  position: relative;
  background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.3), transparent);
  background-color: #27313b;
  border: 1px solid #4b3b60;
  border-radius: 4px;
}
.search-bar--container .search-bar-custom .search-bar--select {
  display: grid;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
@media (min-width: 999px) {
  .search-bar--container .search-bar-custom .search-bar--select {
    grid-template-columns: 35% 25% 15% 15% 10%;
  }
}
.search-bar--container .search-bar-custom .search-bar--select select {
  border: 0;
}
.search-bar--container .search-bar-custom .search-bar--select .input-btn {
  background-color: #dd163b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 10px;
  margin: 0;
  border-radius: 0 0 4px 4px;
}
@media (min-width: 999px) {
  .search-bar--container .search-bar-custom .search-bar--select .input-btn {
    border-radius: 0 4px 4px 0;
  }
}
.search-bar--container .search-bar-custom .search-bar--select .input-btn span {
  margin-left: 5px;
  display: none;
}
.search-bar--container .search-bar-custom .search-bar-circuit--select {
  display: grid;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
@media (min-width: 999px) {
  .search-bar--container .search-bar-custom .search-bar-circuit--select {
    grid-template-columns: 25% 25% 25% 25%;
  }
}
.search-bar--container .search-bar-custom .search-bar-circuit--select select {
  border: 0;
}
.search-bar--container .search-bar-custom .search-bar-circuit--select .input-btn {
  background-color: #dd163b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 10px;
  margin: 0;
  border-radius: 0 0 4px 4px;
}
@media (min-width: 999px) {
  .search-bar--container .search-bar-custom .search-bar-circuit--select .input-btn {
    border-radius: 0 4px 4px 0;
  }
}
.search-bar--container .search-bar-custom .search-bar-circuit--select .input-btn span {
  margin-left: 5px;
  display: none;
}
.search-bar--container .search-bar-custom .search-bar--input {
  display: grid;
  grid-template-columns: 80% 20%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.search-bar--container .search-bar-custom .search-bar--input input {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  background-color: transparent;
  font-size: 16px;
  border: 0;
  font-style: italic;
  color: white;
}
.search-bar--container .search-bar-custom .search-bar--input ::-moz-placeholder {
  font-style: italic;
  color: #ccc;
}
.search-bar--container .search-bar-custom .search-bar--input :-ms-input-placeholder {
  font-style: italic;
  color: #ccc;
}
.search-bar--container .search-bar-custom .search-bar--input ::placeholder {
  font-style: italic;
  color: #ccc;
}
.search-bar--container .search-bar-custom .search-bar--input .input-btn {
  background-color: #dd163b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin: 3px;
  border: 0;
}
.search-bar--container .search-bar-custom .search-bar--input .input-btn span {
  margin-left: 5px;
  display: none;
}

/* Team Results */
.team-result > thead > tr > th {
  vertical-align: middle;
  text-align: center;
}
.team-result > thead > tr > th:first-child {
  text-align: left;
  padding-left: 24px;
}
.team-result > thead > tr > th:last-child {
  padding-right: 24px;
}
.team-result > tbody > tr > td {
  vertical-align: middle;
  color: #fff;
  color: #9a9da2;
  text-align: center;
}
.team-result > tbody > tr > td:first-child {
  padding-left: 24px;
}
.team-result > tbody > tr > td:last-child {
  padding-right: 24px;
}
.team-result .team-result__date,
.team-result .team-result__vs {
  text-align: left;
}

.team-result__game {
  color: #fff;
}

/* Team Result Filter */
.team-result-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .team-result-filter {
    float: right;
  }
}

.team-result-filter__item {
  padding-left: 22px;
  float: left;
}
@media (max-width: 479px) {
  .team-result-filter__item {
    padding: 5px 0 5px 0;
  }
}
.team-result-filter__item select.form-control {
  border: none;
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  height: 24px !important;
  padding: 4px 18px 4px 10px;
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  background-position: 100% 50%;
  background-size: 6px 4px;
  color: #fff;
}
@media (max-width: 479px) {
  .team-result-filter__item:last-child {
    float: none;
    clear: both;
  }
}

@media (min-width: 1200px) {
  .team-result .team-result__game-overview {
    padding-right: 23px;
  }
}
.team-result .team-result__ball-posession,
.team-result .team-result__shots,
.team-result .team-result__fouls,
.team-result .team-result__game-overview {
  text-align: center;
  vertical-align: middle;
}

.team-result__teams-wrapper {
  display: flex;
  align-items: center;
}
@media (min-width: 1199px) {
  .team-result__teams-wrapper {
    padding-right: 30px;
  }
}
.team-result__teams-wrapper .team-result__teams-score {
  padding: 0 14px;
  margin: 0 25px;
  color: #fff;
  font-weight: 700;
}
.team-result__teams-wrapper .team-result__teams-score .team-result__score {
  display: inline-block;
  color: #9a9da2;
  position: relative;
}
.team-result__teams-wrapper .team-result__teams-score .team-result__score::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%);
}
.team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win {
  color: #fff;
}
.team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win::before {
  display: block;
}
.team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win:first-of-type::before {
  border-left: 4px solid #dd163b;
  left: -10px;
}
@media (min-width: 992px) {
  .team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win:first-of-type::before {
    left: -10px;
  }
}
@media (min-width: 1199px) {
  .team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win:first-of-type::before {
    left: -14px;
  }
}
.team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win:last-of-type::before {
  border-right: 4px solid #dd163b;
  right: -10px;
}
@media (min-width: 992px) {
  .team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win:last-of-type::before {
    right: -10px;
  }
}
@media (min-width: 1199px) {
  .team-result__teams-wrapper .team-result__teams-score .team-result__score.team-result__score--win:last-of-type::before {
    right: -14px;
  }
}
.team-result__teams-wrapper .team-meta {
  display: flex;
  align-items: center;
  flex-basis: 0;
  flex-grow: 1;
}
.team-result__teams-wrapper .team-meta--second .team-meta__logo {
  order: 2;
}
.team-result__teams-wrapper .team-meta--second .team-meta__info {
  order: 1;
  text-align: right;
}
.team-result__teams-wrapper .team-meta--second .team-meta__logo {
  margin-right: 0;
  margin-left: 5px;
}
.team-result__teams-wrapper .team-meta__info {
  flex: 1;
}
.team-result__teams-wrapper .team-meta__logo {
  margin-right: 5px;
}

/* Circuit Heading */
.circuit-heading {
  background-color: #1e2024;
  background: #27313b url("https://www.f1gamesetup.com/img/circuit-page-heading.jpg") 50% 0 no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}
.circuit-heading::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background-image: linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.1) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.11) 4px, transparent 4px);
  background-repeat: repeat-x;
  background-size: 36px 12px, 36px 15px, 36px 17px, 36px 20px, 36px 18px, 36px 15px, 72px 15px, 108px 18px;
  background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}
.circuit-heading::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-size: auto;
  background-position: 100% 0;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.circuit-heading .container {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 30px 10px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.circuit-heading .container .circuit-heading__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.circuit-heading .container .circuit-heading__info .circuit-info__title {
  margin-bottom: 17px;
}
.circuit-heading .container .circuit-heading__info .circuit-info__title--mobile {
  padding: 35px 0 0 0;
  text-align: center;
  display: none;
}
@media (max-width: 991px) {
  .circuit-heading .container .circuit-heading__info .circuit-info__title--mobile {
    display: block;
  }
}
.circuit-heading .container .circuit-heading__info .circuit-info__title--mobile .player-info__first-name {
  text-align: left;
}
.circuit-heading .container .circuit-heading__info .circuit-info__title--desktop {
  display: none;
}
@media (min-width: 992px) {
  .circuit-heading .container .circuit-heading__info .circuit-info__title--desktop {
    flex-direction: row;
    display: flex;
  }
}
.circuit-heading .container .circuit-heading__info .circuit-flag__img {
  line-height: 1em;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .circuit-heading .container .circuit-heading__info .circuit-flag__img {
    margin-right: 10px;
  }
}
.circuit-heading .container .circuit-heading__info .circuit-info__name {
  display: inline-block;
  vertical-align: middle;
  font-size: 32px;
  line-height: 0.25em;
  color: #fff;
  margin: 0;
}
@media (min-width: 992px) {
  .circuit-heading .container .circuit-heading__info .circuit-info__name {
    font-size: 32px;
    margin-left: 10px;
    line-height: 1em;
  }
}
@media (min-width: 1200px) {
  .circuit-heading .container .circuit-heading__info .circuit-info__name {
    font-size: 40px;
    line-height: 36px;
  }
}
.circuit-heading .container .circuit-heading__info .circuit-info__first-name {
  display: block;
  font-size: 16px;
  line-height: 1em;
}
@media (min-width: 992px) {
  .circuit-heading .container .circuit-heading__info .circuit-info__first-name {
    font-size: 18px;
  }
}
.circuit-heading .container .circuit-heading__info .circuit-info__last-name {
  color: #dd163b;
}
@media (max-width: 768px) {
  .circuit-heading .container .circuit-heading__info .circuit-info__last-name {
    font-size: 20px;
    line-height: 1em;
  }
}
.circuit-heading .container .circuit-heading__image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.circuit-heading .container .circuit-heading__image .circuit-info__image .circuit-img {
  max-height: 220px;
}

.player-info__team-logo {
  position: absolute;
  left: -45%;
  top: -5%;
  opacity: 0.05;
  z-index: -1;
}
@media (min-width: 992px) {
  .player-info__team-logo {
    left: -10%;
    opacity: 0.1;
  }
}

.player-info {
  color: #fff;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .player-info {
    display: flex;
  }
}

@media (max-width: 991px) {
  .player-info__item--photo img {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .player-info__item--photo {
    flex-basis: 33%;
    width: 312px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--photo {
    width: 400px;
  }
}

.player-info__item--details {
  width: 400px;
}
@media (min-width: 992px) {
  .player-info__item--details {
    flex-basis: 38%;
    padding: 48px 0;
    width: 352px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--details {
    flex-basis: 45%;
    padding: 25px 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--details {
    width: 460px;
  }
}

.player-info-details {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .player-info-details {
    padding: 0 17px;
  }
}

.player-info-details__item {
  padding: 10px 0;
}

.player-info-details__item--height {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--height {
    flex-basis: 19%;
  }
}

.player-info-details__item--weight {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--weight {
    flex-basis: 24%;
  }
}

.player-info-details__item--age {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--age {
    flex-basis: 15%;
  }
}

.player-info-details__item--college {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--college {
    flex-basis: 42%;
  }
}

.player-info-details__item--born {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--born {
    flex-basis: 58%;
  }
}

.player-info-details__item--position {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 42%;
  }
}

.player-info-details__item--position {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 22%;
  }
}

.player-info-details__item--foot {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--foot {
    flex-basis: 20%;
  }
}

.player-info-details__item--goals {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--goals {
    flex-basis: 50%;
  }
}

.player-info-details__item--assists {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--assists {
    flex-basis: 50%;
  }
}

.player-info-details__item--games {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--games {
    flex-basis: 100%;
  }
}

.player-info-details__title {
  font-size: 10px;
  color: #f06982;
  line-height: 1.2em;
  margin-bottom: 0.1em;
  font-weight: 400;
}

.player-info-details__value {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-details__value {
    font-size: 12px;
  }
}

.player-info-stats {
  overflow: hidden;
}
@media (min-width: 992px) {
  .player-info-stats {
    padding: 25px 0 0 0;
  }
}

.player-info-stats__item {
  float: left;
  width: 33.3%;
}
.player-info-stats__item .circular .circular__bar {
  width: 62px;
  height: 62px;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__bar {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar {
    width: 44px;
    height: 44px;
  }
}
.player-info-stats__item .circular .circular__bar .circular__percents {
  color: #fff;
  font-size: 15px;
}
.player-info-stats__item .circular .circular__bar .circular__percents small {
  display: block;
  font-size: 8px;
  line-height: 1.2em;
  color: #f06982;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar .circular__percents {
    font-size: 12px;
  }
}
.player-info-stats__item .circular .circular__label {
  color: #f06982;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__label {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin: 0;
  }
}
.player-info-stats__item .circular .circular__label strong {
  color: #fff;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__label {
    font-size: 9px;
  }
}

@media (min-width: 992px) {
  .player-info-stats__item--top-padding {
    padding: 25px 0 0 0;
  }
}

@media (min-width: 992px) {
  .player-info__item--stats {
    flex-basis: 29%;
    width: 297px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--stats {
    flex-basis: 36%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats {
    width: 310px;
  }
}
@media (max-width: 991px) {
  .player-info__item--stats {
    height: 200px !important;
  }
  .player-info__item--stats .player-info-chart {
    width: 100%;
    height: auto;
  }
}
.player-info__item--stats .progress-stats {
  margin-bottom: 20px;
}
.player-info__item--stats .progress__label {
  color: #fff;
}
.player-info__item--stats .progress:not(.progress--battery) {
  background-color: rgba(255, 255, 255, 0.2);
}

.player-info__item--stats-inner {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .player-info__item--stats-inner {
    padding-top: 40px;
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats-inner {
    padding-top: 70px;
    max-width: 100%;
  }
}

.player-info-chart {
  margin: 35px 0 0 0;
}
@media (min-width: 992px) {
  .player-info-chart {
    margin: 30px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .player-info-chart {
    margin: 60px 0 0 0;
  }
}

/* Carsetup Heading */
.carsetup-heading-acc {
  background-color: #1e2024;
  background: #27313b url("https://www.f1gamesetup.com/img/circuit-page-heading.jpg") 50% 0 no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  height: 250px !important;
}
.carsetup-heading-acc::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background-image: linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.1) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.11) 4px, transparent 4px);
  background-repeat: repeat-x;
  background-size: 36px 12px, 36px 15px, 36px 17px, 36px 20px, 36px 18px, 36px 15px, 72px 15px, 108px 18px;
  background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}
.carsetup-heading-acc::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-size: auto;
  background-position: 100% 0;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.carsetup-heading-acc .carsetup-heading__car {
  position: absolute;
  bottom: 0;
  height: 250px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  .carsetup-heading-acc .carsetup-heading__car {
    justify-content: flex-start;
    padding: 0 60px;
  }
  .carsetup-heading-acc .carsetup-heading__car img {
    max-height: 150px;
  }
}
@media (min-width: 1400px) {
  .carsetup-heading-acc .carsetup-heading__car {
    padding: 0 15%;
  }
}
.carsetup-heading-acc .container {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 30px 10px 60px 10px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 990px) {
  .carsetup-heading-acc .container {
    padding: 30px 10px;
  }
}
.carsetup-heading-acc .container .carsetup-heading__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__title {
  margin-bottom: 17px;
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__title--mobile {
  padding: 35px 0 0 0;
  text-align: center;
  display: none;
}
@media (max-width: 991px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__title--mobile {
    display: block;
  }
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__title--mobile .carsetup-info__first-name {
  text-align: left;
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__title--desktop {
  display: none;
}
@media (min-width: 992px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__title--desktop {
    flex-direction: row;
    display: flex;
  }
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-flag__img {
  line-height: 1em;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-flag__img {
    margin-right: 10px;
  }
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__name {
  display: inline-block;
  vertical-align: middle;
  font-size: 32px;
  line-height: 0.25em;
  color: #fff;
  margin: 0;
}
@media (min-width: 576px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__name {
    line-height: 0.75em;
  }
}
@media (min-width: 992px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__name {
    font-size: 32px;
    margin-left: 10px;
    line-height: 1em;
  }
}
@media (min-width: 1200px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__name {
    font-size: 40px;
    line-height: 36px;
  }
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__first-name {
  display: block;
  font-size: 16px;
  line-height: 1em;
}
@media (min-width: 992px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__first-name {
    font-size: 18px;
  }
}
.carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__last-name {
  color: #dd163b;
}
@media (max-width: 768px) {
  .carsetup-heading-acc .container .carsetup-heading__info .carsetup-info__last-name {
    font-size: 20px;
    line-height: 1em;
  }
}
.carsetup-heading-acc .container .carsetup-heading__image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.carsetup-heading-acc .container .carsetup-heading__image .carsetup-info__image .circuit-img {
  max-height: 150px;
}

.player-info__team-logo {
  position: absolute;
  left: -45%;
  top: -5%;
  opacity: 0.05;
  z-index: -1;
}
@media (min-width: 992px) {
  .player-info__team-logo {
    left: -10%;
    opacity: 0.1;
  }
}

.player-info {
  color: #fff;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .player-info {
    display: flex;
  }
}

@media (max-width: 991px) {
  .player-info__item--photo img {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .player-info__item--photo {
    flex-basis: 33%;
    width: 312px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--photo {
    width: 400px;
  }
}

.player-info__item--details {
  width: 400px;
}
@media (min-width: 992px) {
  .player-info__item--details {
    flex-basis: 38%;
    padding: 48px 0;
    width: 352px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--details {
    flex-basis: 45%;
    padding: 25px 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--details {
    width: 460px;
  }
}

.player-info-details {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .player-info-details {
    padding: 0 17px;
  }
}

.player-info-details__item {
  padding: 10px 0;
}

.player-info-details__item--height {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--height {
    flex-basis: 19%;
  }
}

.player-info-details__item--weight {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--weight {
    flex-basis: 24%;
  }
}

.player-info-details__item--age {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--age {
    flex-basis: 15%;
  }
}

.player-info-details__item--college {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--college {
    flex-basis: 42%;
  }
}

.player-info-details__item--born {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--born {
    flex-basis: 58%;
  }
}

.player-info-details__item--position {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 42%;
  }
}

.player-info-details__item--position {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 22%;
  }
}

.player-info-details__item--foot {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--foot {
    flex-basis: 20%;
  }
}

.player-info-details__item--goals {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--goals {
    flex-basis: 50%;
  }
}

.player-info-details__item--assists {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--assists {
    flex-basis: 50%;
  }
}

.player-info-details__item--games {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--games {
    flex-basis: 100%;
  }
}

.player-info-details__title {
  font-size: 10px;
  color: #f06982;
  line-height: 1.2em;
  margin-bottom: 0.1em;
  font-weight: 400;
}

.player-info-details__value {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-details__value {
    font-size: 12px;
  }
}

.player-info-stats {
  overflow: hidden;
}
@media (min-width: 992px) {
  .player-info-stats {
    padding: 25px 0 0 0;
  }
}

.player-info-stats__item {
  float: left;
  width: 33.3%;
}
.player-info-stats__item .circular .circular__bar {
  width: 62px;
  height: 62px;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__bar {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar {
    width: 44px;
    height: 44px;
  }
}
.player-info-stats__item .circular .circular__bar .circular__percents {
  color: #fff;
  font-size: 15px;
}
.player-info-stats__item .circular .circular__bar .circular__percents small {
  display: block;
  font-size: 8px;
  line-height: 1.2em;
  color: #f06982;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar .circular__percents {
    font-size: 12px;
  }
}
.player-info-stats__item .circular .circular__label {
  color: #f06982;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__label {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin: 0;
  }
}
.player-info-stats__item .circular .circular__label strong {
  color: #fff;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__label {
    font-size: 9px;
  }
}

@media (min-width: 992px) {
  .player-info-stats__item--top-padding {
    padding: 25px 0 0 0;
  }
}

@media (min-width: 992px) {
  .player-info__item--stats {
    flex-basis: 29%;
    width: 297px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--stats {
    flex-basis: 36%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats {
    width: 310px;
  }
}
@media (max-width: 991px) {
  .player-info__item--stats {
    height: 200px !important;
  }
  .player-info__item--stats .player-info-chart {
    width: 100%;
    height: auto;
  }
}
.player-info__item--stats .progress-stats {
  margin-bottom: 20px;
}
.player-info__item--stats .progress__label {
  color: #fff;
}
.player-info__item--stats .progress:not(.progress--battery) {
  background-color: rgba(255, 255, 255, 0.2);
}

.player-info__item--stats-inner {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .player-info__item--stats-inner {
    padding-top: 40px;
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats-inner {
    padding-top: 70px;
    max-width: 100%;
  }
}

.player-info-chart {
  margin: 35px 0 0 0;
}
@media (min-width: 992px) {
  .player-info-chart {
    margin: 30px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .player-info-chart {
    margin: 60px 0 0 0;
  }
}

/* Carsetup Heading */
.carsetup-heading-gtsport {
  background-color: #4d4d4d;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  height: 250px !important;
  background-position: 0% 100% !important;
  background-size: contain !important;
  background-position: 50% 50% !important;
}
.carsetup-heading-gtsport::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  z-index: 2;
  background-image: linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.1) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.11) 4px, transparent 4px);
  background-repeat: repeat-x;
  background-size: 36px 12px, 36px 15px, 36px 17px, 36px 20px, 36px 18px, 36px 15px, 72px 15px, 108px 18px;
  background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}
.carsetup-heading-gtsport::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-size: auto;
  background-position: 100% 0;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.carsetup-heading-gtsport .carsetup-heading__car {
  position: absolute;
  bottom: 0;
  height: 250px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  .carsetup-heading-gtsport .carsetup-heading__car {
    justify-content: flex-start;
    padding: 0 60px;
  }
  .carsetup-heading-gtsport .carsetup-heading__car img {
    max-height: 150px;
  }
}
@media (min-width: 1400px) {
  .carsetup-heading-gtsport .carsetup-heading__car {
    padding: 0 15%;
  }
}
.carsetup-heading-gtsport .container {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 30px 10px 60px 10px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 990px) {
  .carsetup-heading-gtsport .container {
    padding: 30px 10px;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__title {
  margin-bottom: 17px;
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__title--mobile {
  padding: 15px 0 0 0;
  text-align: center;
  display: none;
}
@media (max-width: 991px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__title--mobile {
    display: block;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__title--mobile .carsetup-info__first-name {
  text-align: left;
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__title--desktop {
  display: none;
}
@media (min-width: 992px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__title--desktop {
    flex-direction: row;
    display: flex;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-flag__img {
  line-height: 1em;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-flag__img {
    margin-right: 10px;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__name {
  display: inline-block;
  vertical-align: middle;
  font-size: 32px;
  line-height: 0.25em;
  color: #fff;
  margin: 0;
}
@media (min-width: 576px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__name {
    line-height: 0.75em;
  }
}
@media (min-width: 992px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__name {
    font-size: 32px;
    margin-left: 10px;
    line-height: 1em;
  }
}
@media (min-width: 1200px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__name {
    line-height: 36px;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__first-name {
  display: block;
  font-size: 16px;
  line-height: 1em;
}
@media (min-width: 992px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__first-name {
    font-size: 18px;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__last-name {
  color: #dd163b;
}
@media (max-width: 768px) {
  .carsetup-heading-gtsport .container .carsetup-heading__info .carsetup-info__last-name {
    font-size: 20px;
    line-height: 1em;
  }
}
.carsetup-heading-gtsport .container .carsetup-heading__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.carsetup-heading-gtsport .container .carsetup-heading__image .carsetup-info__image .circuit-img {
  max-height: 150px;
}

.player-info__team-logo {
  position: absolute;
  left: -45%;
  top: -5%;
  opacity: 0.05;
  z-index: -1;
}
@media (min-width: 992px) {
  .player-info__team-logo {
    left: -10%;
    opacity: 0.1;
  }
}

.player-info {
  color: #fff;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .player-info {
    display: flex;
  }
}

@media (max-width: 991px) {
  .player-info__item--photo img {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .player-info__item--photo {
    flex-basis: 33%;
    width: 312px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--photo {
    width: 400px;
  }
}

.player-info__item--details {
  width: 400px;
}
@media (min-width: 992px) {
  .player-info__item--details {
    flex-basis: 38%;
    padding: 48px 0;
    width: 352px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--details {
    flex-basis: 45%;
    padding: 25px 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--details {
    width: 460px;
  }
}

.player-info-details {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .player-info-details {
    padding: 0 17px;
  }
}

.player-info-details__item {
  padding: 10px 0;
}

.player-info-details__item--height {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--height {
    flex-basis: 19%;
  }
}

.player-info-details__item--weight {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--weight {
    flex-basis: 24%;
  }
}

.player-info-details__item--age {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--age {
    flex-basis: 15%;
  }
}

.player-info-details__item--college {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--college {
    flex-basis: 42%;
  }
}

.player-info-details__item--born {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--born {
    flex-basis: 58%;
  }
}

.player-info-details__item--position {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 42%;
  }
}

.player-info-details__item--position {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 22%;
  }
}

.player-info-details__item--foot {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--foot {
    flex-basis: 20%;
  }
}

.player-info-details__item--goals {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--goals {
    flex-basis: 50%;
  }
}

.player-info-details__item--assists {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--assists {
    flex-basis: 50%;
  }
}

.player-info-details__item--games {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--games {
    flex-basis: 100%;
  }
}

.player-info-details__title {
  font-size: 10px;
  color: #f06982;
  line-height: 1.2em;
  margin-bottom: 0.1em;
  font-weight: 400;
}

.player-info-details__value {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-details__value {
    font-size: 12px;
  }
}

.player-info-stats {
  overflow: hidden;
}
@media (min-width: 992px) {
  .player-info-stats {
    padding: 25px 0 0 0;
  }
}

.player-info-stats__item {
  float: left;
  width: 33.3%;
}
.player-info-stats__item .circular .circular__bar {
  width: 62px;
  height: 62px;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__bar {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar {
    width: 44px;
    height: 44px;
  }
}
.player-info-stats__item .circular .circular__bar .circular__percents {
  color: #fff;
  font-size: 15px;
}
.player-info-stats__item .circular .circular__bar .circular__percents small {
  display: block;
  font-size: 8px;
  line-height: 1.2em;
  color: #f06982;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar .circular__percents {
    font-size: 12px;
  }
}
.player-info-stats__item .circular .circular__label {
  color: #f06982;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__label {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin: 0;
  }
}
.player-info-stats__item .circular .circular__label strong {
  color: #fff;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__label {
    font-size: 9px;
  }
}

@media (min-width: 992px) {
  .player-info-stats__item--top-padding {
    padding: 25px 0 0 0;
  }
}

@media (min-width: 992px) {
  .player-info__item--stats {
    flex-basis: 29%;
    width: 297px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--stats {
    flex-basis: 36%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats {
    width: 310px;
  }
}
@media (max-width: 991px) {
  .player-info__item--stats {
    height: 200px !important;
  }
  .player-info__item--stats .player-info-chart {
    width: 100%;
    height: auto;
  }
}
.player-info__item--stats .progress-stats {
  margin-bottom: 20px;
}
.player-info__item--stats .progress__label {
  color: #fff;
}
.player-info__item--stats .progress:not(.progress--battery) {
  background-color: rgba(255, 255, 255, 0.2);
}

.player-info__item--stats-inner {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .player-info__item--stats-inner {
    padding-top: 40px;
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats-inner {
    padding-top: 70px;
    max-width: 100%;
  }
}

.player-info-chart {
  margin: 35px 0 0 0;
}
@media (min-width: 992px) {
  .player-info-chart {
    margin: 30px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .player-info-chart {
    margin: 60px 0 0 0;
  }
}

/* Player Heading */
.player-heading {
  background-color: #1e2024;
  background-image: url("../images/page-heading-d94764c35e73f04003dd113590cb899b.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}
.player-heading::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background-image: linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.1) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.11) 4px, transparent 4px);
  background-repeat: repeat-x;
  background-size: 36px 12px, 36px 15px, 36px 17px, 36px 20px, 36px 18px, 36px 15px, 72px 15px, 108px 18px;
  background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}
.player-heading::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-size: auto;
  background-position: 100% 0;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.player-heading .container {
  position: relative;
  z-index: 2;
}

.player-info__team-logo {
  position: absolute;
  left: -45%;
  top: -5%;
  opacity: 0.05;
  z-index: -1;
}
@media (min-width: 992px) {
  .player-info__team-logo {
    left: -10%;
    opacity: 0.1;
  }
}

.player-info {
  color: #fff;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .player-info {
    display: flex;
  }
}

@media (max-width: 991px) {
  .player-info__item--photo img {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .player-info__item--photo {
    flex-basis: 33%;
    width: 312px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--photo {
    width: 400px;
  }
}

.player-info__item--details {
  width: 400px;
}
@media (min-width: 992px) {
  .player-info__item--details {
    flex-basis: 38%;
    padding: 48px 0;
    width: 352px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--details {
    flex-basis: 45%;
    padding: 25px 0;
  }
}
@media (min-width: 1200px) {
  .player-info__item--details {
    width: 460px;
  }
}

.player-info__title {
  margin-bottom: 17px;
}

.player-info__title--mobile {
  padding: 35px 0 0 0;
  text-align: center;
  display: none;
}
@media (max-width: 991px) {
  .player-info__title--mobile {
    display: block;
  }
}
.player-info__title--mobile .player-info__first-name {
  text-align: left;
}

.player-info__title--desktop {
  display: none;
}
@media (min-width: 992px) {
  .player-info__title--desktop {
    display: block;
  }
}

.player-info__number {
  font-size: 54px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1em;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .player-info__number {
    font-size: 64px;
    margin-left: -80px;
  }
}
@media (min-width: 1200px) {
  .player-info__number {
    font-size: 92px;
    margin-left: -123px;
    margin-right: 5px;
  }
}

.player-info__name {
  display: inline-block;
  vertical-align: middle;
  font-size: 32px;
  line-height: 1em;
  color: #fff;
  margin: 0;
}
@media (min-width: 992px) {
  .player-info__name {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .player-info__name {
    font-size: 54px;
    line-height: 46px;
  }
}

.player-info__first-name {
  display: block;
  font-size: 16px;
  line-height: 1em;
}
@media (min-width: 992px) {
  .player-info__first-name {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .player-info__first-name {
    font-size: 26px;
  }
}

.player-info__last-name {
  color: #c2ff1f;
}

.player-info-details {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .player-info-details {
    padding: 0 17px;
  }
}

.player-info-details__item {
  padding: 10px 0;
}

.player-info-details__item--height {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--height {
    flex-basis: 19%;
  }
}

.player-info-details__item--weight {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--weight {
    flex-basis: 24%;
  }
}

.player-info-details__item--age {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--age {
    flex-basis: 15%;
  }
}

.player-info-details__item--college {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--college {
    flex-basis: 42%;
  }
}

.player-info-details__item--born {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--born {
    flex-basis: 58%;
  }
}

.player-info-details__item--position {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 42%;
  }
}

.player-info-details__item--position {
  flex-basis: 33%;
}
@media (min-width: 992px) {
  .player-info-details__item--position {
    flex-basis: 22%;
  }
}

.player-info-details__item--foot {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--foot {
    flex-basis: 20%;
  }
}

.player-info-details__item--goals {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--goals {
    flex-basis: 50%;
  }
}

.player-info-details__item--assists {
  flex-basis: 50%;
}
@media (min-width: 992px) {
  .player-info-details__item--assists {
    flex-basis: 50%;
  }
}

.player-info-details__item--games {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .player-info-details__item--games {
    flex-basis: 100%;
  }
}

.player-info-details__title {
  font-size: 10px;
  color: #f06982;
  line-height: 1.2em;
  margin-bottom: 0.1em;
  font-weight: 400;
}

.player-info-details__value {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-details__value {
    font-size: 12px;
  }
}

.player-info-stats {
  overflow: hidden;
}
@media (min-width: 992px) {
  .player-info-stats {
    padding: 25px 0 0 0;
  }
}

.player-info-stats__item {
  float: left;
  width: 33.3%;
}
.player-info-stats__item .circular .circular__bar {
  width: 62px;
  height: 62px;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__bar {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar {
    width: 44px;
    height: 44px;
  }
}
.player-info-stats__item .circular .circular__bar .circular__percents {
  color: #fff;
  font-size: 15px;
}
.player-info-stats__item .circular .circular__bar .circular__percents small {
  display: block;
  font-size: 8px;
  line-height: 1.2em;
  color: #f06982;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__bar .circular__percents {
    font-size: 12px;
  }
}
.player-info-stats__item .circular .circular__label {
  color: #f06982;
}
@media (min-width: 992px) {
  .player-info-stats__item .circular .circular__label {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin: 0;
  }
}
.player-info-stats__item .circular .circular__label strong {
  color: #fff;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info-stats__item .circular .circular__label {
    font-size: 9px;
  }
}

@media (min-width: 992px) {
  .player-info-stats__item--top-padding {
    padding: 25px 0 0 0;
  }
}

@media (min-width: 992px) {
  .player-info__item--stats {
    flex-basis: 29%;
    width: 297px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .player-info__item--stats {
    flex-basis: 36%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats {
    width: 310px;
  }
}
@media (max-width: 991px) {
  .player-info__item--stats {
    height: 200px !important;
  }
  .player-info__item--stats .player-info-chart {
    width: 100%;
    height: auto;
  }
}
.player-info__item--stats .progress-stats {
  margin-bottom: 20px;
}
.player-info__item--stats .progress__label {
  color: #fff;
}
.player-info__item--stats .progress:not(.progress--battery) {
  background-color: rgba(255, 255, 255, 0.2);
}

.player-info__item--stats-inner {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .player-info__item--stats-inner {
    padding-top: 40px;
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .player-info__item--stats-inner {
    padding-top: 70px;
    max-width: 100%;
  }
}

.player-info-chart {
  margin: 35px 0 0 0;
}
@media (min-width: 992px) {
  .player-info-chart {
    margin: 30px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .player-info-chart {
    margin: 60px 0 0 0;
  }
}

/* Products */
.products {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product__item {
  overflow: hidden;
}

@media (min-width: 992px) {
  .product__content {
    padding: 35px 36px 30px 36px;
  }
}

.product__category {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 0.75em;
}

.product__title {
  margin-bottom: 0;
  line-height: 1.2em;
  font-size: 16px;
}
@media (min-width: 992px) {
  .product__title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .product__title {
    font-size: 22px;
  }
}
.product__title > a {
  color: #fff;
  transition: color 0.3s ease;
}
.product__title > a:hover {
  color: #dd163b;
}

.product__ratings {
  font-size: 10px;
  line-height: 1.2em;
}
.product__title + .product__ratings {
  margin-top: 10px;
}
.product__ratings .fa {
  color: #ffdc11;
  margin-right: 3px;
}
.product__ratings .empty {
  color: #dbdfe6;
}

.product__price del {
  opacity: 0.4;
  font-size: 0.75em;
}
.product__price ins {
  text-decoration: none;
}

.product__excerpt {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .product__excerpt {
    margin-bottom: 46px;
  }
}

.product__excerpt--sm {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .product__excerpt--sm {
    margin-bottom: 26px;
  }
}

.product__footer .btn + .btn {
  margin-left: 7px;
}

.product__add-to-cart .icon-bag {
  font-size: 15px;
  line-height: 1.2em;
  vertical-align: middle;
}

.product__params {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .product__params {
    margin-bottom: 56px;
  }
}
.product__params h6 {
  font-size: 11px;
  line-height: 1.2em;
  margin-bottom: 1em;
}

.product__param-item--color {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .product__param-item--color {
    width: 40%;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .product__param-item--color-lg {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .product__param-item--size {
    width: 25%;
    padding-right: 7%;
  }
}

@media (min-width: 1200px) {
  .product__param-item--size-lg {
    width: 75%;
    padding-right: 7%;
  }
}

@media (min-width: 1200px) {
  .product__param-item--quantity {
    width: 18%;
  }
}

.product__params--alt {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .product__params--alt {
    margin-bottom: 46px;
  }
}
.product__params--alt .product__param-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.product__params--alt .product__param-item label {
  margin: 0 20px 0 0;
  white-space: nowrap;
}
.product__params--alt .product__param-item .filter-color__item {
  margin-bottom: 4px;
}
.product__params--alt .product__param-item .form-control {
  margin-right: 30px;
}
.product__params--alt .product__param-item--color {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .product__params--alt .product__param-item--color {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product__params--alt .product__param-item--size {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .product__params--alt .product__param-item--size {
    width: auto;
    padding-right: 0;
    margin-bottom: 0;
  }
}
.product__params--alt .product__param-item--quantity {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .product__params--alt .product__param-item--quantity {
    width: auto;
    margin-bottom: 0;
  }
}

.product__bg-letters {
  display: block;
  position: absolute;
  left: -0.35em;
  top: -0.2em;
  font-family: "Formula1-Bold", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0.1;
  font-size: 230px;
  pointer-events: none;
}

.onsale {
  display: block;
  position: absolute;
  z-index: 3;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  right: 0;
}
.onsale::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 76px solid transparent;
  border-top: 76px solid #dd163b;
  z-index: 1;
}
.onsale .onsale__inner {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Product Slider */
.product__slider.slick-slider {
  margin-bottom: 0;
}
.product__slider .product__slide {
  position: relative;
  height: 330px;
}
.product__slider .slick-dots {
  bottom: 13px;
}
.product__slider .slick-dots li {
  height: 6px;
  width: 6px;
  margin: 0 3px;
}
.product__slider .slick-dots li button {
  height: 6px;
  width: 6px;
  line-height: 6px;
  background-color: #fff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.product__slider .slick-dots li button:hover, .product__slider .slick-dots li button:focus {
  opacity: 1;
}
.product__slider .slick-dots li button:hover {
  background-color: #fff;
}
.product__slider .slick-dots li.slick-active button {
  background-color: #fff;
  opacity: 1;
}

.product__slide-img {
  position: relative;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 10px;
}
.product__slide-img img {
  margin: 0 auto;
}
.product__slide-img::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;
  height: 10px;
  background: transparent;
  border-radius: 100px/50px;
  box-shadow: 0 40px 10px rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
}

/* Product Slider - Soccer */
.product__slider-soccer-wrapper {
  padding: 60px 0 0 40px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .product__slider-soccer-wrapper {
    margin-bottom: 36px;
  }
}

.product__slider-soccer {
  text-align: center;
  width: 250px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .product__slider-soccer {
    float: left;
  }
}
.product__slider-soccer img {
  display: inline-block;
}

/* Product Slider - Thumbs */
.product__slider-thumbs {
  margin-right: 20px;
  width: 62px;
  float: left;
  display: none;
}
@media (min-width: 992px) {
  .product__slider-thumbs {
    display: block;
  }
}

.product__slide-thumb {
  width: 60px;
  height: 60px;
  margin-bottom: 2px;
}
.product__slide-thumb:hover {
  cursor: pointer;
}
.product__slide-thumb img {
  vertical-align: top;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.product__slide-thumb.slick-current img {
  opacity: 1;
}

.product__slide-thumb-holder {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Products List */
.products--list .product__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .products--list .product__item {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.products--list .product__header {
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .products--list .product__header {
    margin-bottom: 24px;
  }
}
.products--list .product__header:not(.product__header--block) {
  display: flex;
  align-items: center;
}
.products--list .product__img {
  text-align: center;
}
@media (max-width: 991px) {
  .products--list .product__img {
    width: 100%;
  }
}
.products--list .product__price {
  margin-left: auto;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .products--list .product__price {
    font-size: 22px;
  }
}
.products--list .product__item--color-1 .product__img {
  background-image: linear-gradient(to left top, #fe2b00, #f7d500);
}
.products--list .product__item--color-2 .product__img {
  background-image: linear-gradient(to left top, #003e78, #33fff3);
}
.products--list .product__item--color-3 .product__img {
  background-image: linear-gradient(to left top, #00adbd, #7cffd0);
}
.products--list .product__item--color-4 .product__img {
  background-image: linear-gradient(to left top, #3f1464, #dd2f8d);
}
.products--list .product__item--color-5 .product__img {
  background-image: linear-gradient(to left top, #140078, #4dcbff);
}
.products--list .product__item--color-6 .product__img {
  background-image: linear-gradient(to left top, #006f3f, #bdff3d);
}
.products--list .product__img-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .products--list .product__img-holder {
    width: 250px;
  }
}
@media (min-width: 1200px) {
  .products--list .product__img-holder {
    width: 278px;
  }
}
.products--list .product__slide-img img {
  max-width: 64%;
}
@media (max-width: 479px) {
  .products--list .product__footer .btn {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
  }
  .products--list .product__footer .product__wish {
    float: left;
    width: 48%;
  }
  .products--list .product__footer .product__view {
    width: 48%;
    float: right;
  }
  .products--list .product__footer .btn + .btn {
    margin-top: 7px;
  }
}
.products--list .onsale {
  top: 0;
}

/* Product List - Small */
.products--list-sm .product__content {
  display: flex;
  padding: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  .products--list-sm .product__content {
    flex-wrap: nowrap;
  }
}
.products--list-sm .product__slider .product__slide {
  height: 240px;
}
@media (min-width: 768px) {
  .products--list-sm .product__slider .product__slide {
    height: 138px;
  }
}
@media (min-width: 992px) {
  .products--list-sm .product__img-holder {
    width: 130px;
  }
}
@media (min-width: 1200px) {
  .products--list-sm .product__img-holder {
    width: 140px;
  }
}
.products--list-sm .product__bg-letters {
  font-size: 106px;
}
.products--list-sm .product__header {
  display: block;
  margin-bottom: 0;
  padding-right: 10px;
}
@media (min-width: 480px) {
  .products--list-sm .product__header {
    min-width: 29%;
  }
}
.products--list-sm .product__title {
  font-size: 16px;
  margin-bottom: 0.25em;
}
.products--list-sm .product__ratings {
  padding-top: 7px;
  margin-bottom: 14px;
}
.products--list-sm .product__price {
  font-size: 16px;
}
.products--list-sm .product__excerpt {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 22px;
  padding: 20px 0;
}
@media (min-width: 480px) {
  .products--list-sm .product__excerpt {
    padding: 0 0 0 0;
    min-width: 45%;
  }
}
.products--list-sm .product__footer {
  width: 100%;
}
@media (min-width: 480px) {
  .products--list-sm .product__footer {
    min-width: 23%;
    text-align: center;
  }
}
.products--list-sm .product__footer .btn {
  float: none;
  width: 38px;
  display: inline-block;
  margin: 0 2px;
}
.products--list-sm .product__footer .btn + .btn {
  margin: 0 2px;
}
@media (min-width: 480px) {
  .products--list-sm .product__footer .btn {
    margin: 0 8px;
  }
  .products--list-sm .product__footer .btn + .btn {
    margin: 0 8px;
  }
}

/* Products List - Large */
@media (min-width: 992px) {
  .products--list-lg .product__content {
    padding: 60px 50px 54px 50px;
  }
}
.products--list-lg .product__header {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .products--list-lg .product__header {
    margin-bottom: 44px;
  }
}
.products--list-lg .product__category {
  font-size: 11px;
}
@media (min-width: 992px) {
  .products--list-lg .product__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .products--list-lg .product__title {
    font-size: 30px;
  }
}
.products--list-lg .product__ratings {
  font-size: 13px;
}
.product__title + .products--list-lg .product__ratings {
  margin-top: 10px;
}
.products--list-lg .product__ratings .fa {
  margin-right: 3px;
}
.products--list-lg .product__ratings--sm {
  font-size: 10px;
}
.product__title + .products--list-lg .product__ratings--sm {
  margin-top: 13px;
}
.products--list-lg .product__ratings-label {
  font-family: "Formula1-Bold", sans-serif;
  font-size: 10px;
  line-height: 1.2em;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-left: 1em;
}
.products--list-lg .product__ratings-value {
  color: #dd163b;
}
@media (min-width: 992px) {
  .products--list-lg .product__price {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .products--list-lg .product__price {
    font-size: 30px;
  }
}
.products--list-lg .product__header--block .product__price {
  margin-top: 0.5em;
  margin-top: 0.5em;
}
@media (min-width: 1200px) {
  .products--list-lg .product__header--block .product__price {
    font-size: 26px;
  }
}
.products--list-lg .product__excerpt h6 {
  font-size: 11px;
  line-height: 1.2em;
  margin-bottom: 1.75em;
}
@media (max-width: 479px) {
  .products--list-lg .product__footer .product__wish {
    float: none;
    width: 100%;
  }
}
.products--list-lg .product__wish-fab {
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 38px !important;
  height: 38px;
  float: none;
}
@media (max-width: 479px) {
  .products--list-lg .product__wish-fab {
    width: 38px;
    height: 38px;
    right: 10px;
    top: 5px;
  }
}
.products--list-lg .product__bg-letters {
  font-size: 320px;
}
@media (min-width: 992px) {
  .products--list-lg .product__img-holder {
    width: 420px;
  }
}
@media (min-width: 1200px) {
  .products--list-lg .product__img-holder {
    width: 500px;
  }
}
.products--list-lg .product__slider .product__slide {
  height: 360px;
}
@media (min-width: 992px) {
  .products--list-lg .product__slider .product__slide {
    height: 578px;
  }
}
.products--list-lg .product__slider .slick-dots {
  bottom: 13px;
}
.products--list-lg .product__slider .slick-dots li {
  height: 8px;
  width: 8px;
  margin: 0 6px;
}
.products--list-lg .product__slider .slick-dots li button {
  height: 8px;
  width: 8px;
  line-height: 8px;
}

/* Products List - Condensed */
.products--list-condensed .product__item {
  margin-bottom: -1px;
  border-radius: 0;
  position: relative;
}

/* Products List - Alt (eSports) */
.products--list-alt .product__slide-img {
  position: static;
  transform: none;
  padding-bottom: 0;
}
.products--list-alt .product__slide-img img {
  max-width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .products--list-alt .product__slide-img img {
    margin: 0 auto;
  }
}
.products--list-alt .product__slider .product__slide {
  height: auto;
}
@media (min-width: 992px) {
  .products--list-alt .product__slider .product__slide {
    height: auto;
  }
}
.products--list-alt .product__img-holder {
  position: relative;
}
.products--list-alt .product__slider-nav {
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: 100px;
  height: 24px;
  background-color: rgba(43, 34, 54, 0.8);
  border-radius: 12px;
  text-align: center;
  transform: translate(-50%, 0);
}
.products--list-alt .product__slider-paging {
  font-size: 10px;
  line-height: 1.2em;
  color: #fff;
  font-family: "Formula1-Bold", sans-serif;
  font-style: italic;
  font-weight: 700;
  padding: 7px 0;
}
.products--list-alt .product__slider-arrows .slick-prev,
.products--list-alt .product__slider-arrows .slick-next {
  top: 2px;
  background-color: transparent;
}
.products--list-alt .product__slider-arrows .slick-prev:hover::before,
.products--list-alt .product__slider-arrows .slick-next:hover::before {
  color: #dd163b;
}
.products--list-alt .product__slider-arrows .slick-prev {
  left: 0;
}
.products--list-alt .product__slider-arrows .slick-next {
  right: 0;
}
.products--list-alt .product__excerpt {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .products--list-alt .product__excerpt {
    margin-bottom: 32px;
  }
}

/* Products Grid */
.products--grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-top: -8px;
}
.products--grid .product__item {
  position: relative;
  flex-basis: 100%;
  margin: 8px;
}
@media (min-width: 480px) {
  .products--grid .product__item {
    flex-basis: calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media (min-width: 768px) {
  .products--grid .product__item {
    flex-basis: calc(33.3% - 16px);
    max-width: calc(33.3% - 16px);
  }
}
@media (min-width: 768px) {
  .products--grid.products--grid-4 .product__item {
    flex-basis: calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media (min-width: 992px) {
  .products--grid.products--grid-4 .product__item {
    flex-basis: calc(25% - 16px);
    max-width: calc(25% - 16px);
  }
}
.products--grid .product__item--color-1 {
  background-image: linear-gradient(to left top, #fe2b00, #f7d500);
}
.products--grid .product__item--color-2 {
  background-image: linear-gradient(to left top, #003e78, #33fff3);
}
.products--grid .product__item--color-3 {
  background-image: linear-gradient(to left top, #00adbd, #7cffd0);
}
.products--grid .product__item--color-4 {
  background-image: linear-gradient(to left top, #3f1464, #dd2f8d);
}
.products--grid .product__item--color-5 {
  background-image: linear-gradient(to left top, #140078, #4dcbff);
}
.products--grid .product__item--color-6 {
  background-image: linear-gradient(to left top, #006f3f, #bdff3d);
}
.products--grid .product__header {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .products--grid .product__header {
    margin-bottom: 36px;
  }
}
.products--grid .product__category {
  color: #fff;
}
.products--grid .product__title {
  color: #fff;
  font-size: 14px;
}
.products--grid .product__title > a {
  color: #fff;
}
.products--grid .product__ratings .empty {
  color: #fff;
  opacity: 0.3;
}
.products--grid .product__price {
  position: absolute;
  right: 23px;
  top: 20px;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 700;
}
.products--grid .product__content {
  padding: 23px;
}
.products--grid .product__footer {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products--grid .product__footer {
    flex-wrap: wrap;
  }
}
.products--grid-overlay .products--grid .product__footer {
  justify-content: center;
  background-color: #292c31;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.products--grid .product__footer .product__add-to-cart {
  flex-grow: 1;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products--grid .product__footer .product__add-to-cart {
    flex-basis: 100%;
    margin-bottom: 7px;
  }
}
.products--grid .product__footer .btn {
  padding-left: 0;
  padding-right: 0;
}
.products--grid .product__footer .btn-single-icon {
  flex-basis: 47px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products--grid .product__footer .btn-single-icon {
    flex-basis: 48%;
    margin: 0;
  }
}
.products--grid .product__footer .btn-single-icon.btn-circle {
  flex-basis: 38px;
  margin: 0 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products--grid .product__footer .btn-single-icon.btn-circle {
    flex-basis: 38px;
    margin: 0 11px;
  }
}
@media (min-width: 1200px) {
  .products--grid .product__footer .btn-single-icon.btn-circle {
    flex-basis: 38px;
    margin: 0 11px;
  }
}
.products--grid .product__slider .product__slide {
  height: 283px;
}
.products--grid .product__slider .slick-dots {
  text-align: left;
  bottom: auto;
  top: 10px;
  left: 23px;
}
.products--grid .product__slider .product__slide-img {
  transform: translate(-50%, -40%);
  padding-bottom: 0;
}

/* Products - Grid (Football) */
.products--grid-overlay .product__item .product__content {
  background-color: #292c31;
  margin-bottom: 0;
  position: relative;
  padding: 21px 0 17px 0;
}
.products--grid-overlay .product__item .product__content .product__header {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .products--grid-overlay .product__item .product__content .product__header {
    margin-bottom: 0;
  }
}
.products--grid-overlay .product__item .product__content .product__price {
  position: static;
  display: inline-block;
}
.products--grid-overlay .product__item .product__content .product__ratings {
  display: inline-block;
  margin-right: 0.5em;
}
.products--grid-overlay .product__item .product__content .product__title {
  margin-bottom: 0.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
}
.products--grid-overlay .product__item .product__content .product__category {
  color: #9a9da2;
  margin-bottom: 0.25em;
}
.products--grid-overlay .product__item .product__content:hover .product__footer {
  transform: translateY(0%);
}
.products--grid-overlay .product__item .product__footer {
  justify-content: center;
  background-color: #292c31;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.products--grid-overlay .product__item .product__slider .product__slide {
  height: 283px;
}
.products--grid-overlay .product__item .product__slider .slick-dots {
  padding-bottom: 10px;
  text-align: center;
  position: static;
}
.products--grid-overlay .product__item .product__btn-add-remove {
  position: absolute;
  right: 17px;
  top: 17px;
  z-index: 2;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.products--grid-overlay .product__item .product__btn-add-remove:hover {
  background-color: #dd163b;
}
.products--grid-overlay .product__item .product__btn-add-remove:hover .product__close-icon {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.products--grid-overlay .product__item .product__btn-add-remove:hover .icon-heart {
  opacity: 0;
  transform: translate(-50%, 100%);
}
.products--grid-overlay .product__item .product__btn-add-remove i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.products--grid-overlay .product__item .product__btn-add-remove .icon-heart {
  opacity: 1;
}
.products--grid-overlay .product__item .product__btn-add-remove .product__close-icon {
  width: 10px;
  height: 10px;
  display: block;
  opacity: 0;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  transform: translate(-50%, -30px);
  background-position: 0 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath transform='translate(-701.062 -492.062)' fill='%23fff' d='M709.536,492.05l1.414,1.414-8.485,8.485-1.415-1.414Zm1.414,8.485-1.414,1.414-8.486-8.485,1.415-1.414Z'/%3E%3C/svg%3E");
}

/* Products - Grid (eSports) */
.products--grid-simple .product__img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.products--grid-simple .product__img:hover .product__overlay {
  visibility: visible;
  opacity: 1;
}
.products--grid-simple .product__thumb {
  text-align: center;
}
.products--grid-simple .product__thumb img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.products--grid-simple .product__price {
  display: inline-block;
  position: static;
}
.products--grid-simple .product__ratings {
  display: inline-block;
  margin: 0 10px 0 0;
}
.products--grid-simple .product__overlay {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);
}
.products--grid-simple .product__btns {
  width: 100%;
  padding: 0 14%;
}
.products--grid-simple .product__btns .btn + .btn {
  margin-top: 16px;
}
.products--grid-simple .product__content {
  padding: 30px 15px 22px 15px;
}
.products--grid-simple .product__header {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .products--grid-simple .product__header {
    margin-bottom: 0;
  }
}
.products--grid-simple .product__title {
  font-size: 14px;
  font-style: normal;
  margin-bottom: 0.25em;
}
.products--grid-simple .product__title > a:hover {
  color: #dd163b;
}

/* Products Grid - Condensed */
.products--grid-condensed {
  margin: 0;
}
.products--grid-condensed .product__item {
  position: relative;
  flex-basis: 100%;
  margin: 0 -1px -1px 0;
  border-radius: 0;
}
@media (min-width: 480px) {
  .products--grid-condensed .product__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .products--grid-condensed .product__item {
    flex-basis: 33.3%;
    max-width: 33.3%;
  }
}
.products--grid-condensed .product__img {
  text-align: center;
}
@media (min-width: 768px) {
  .products--grid-condensed.products--grid-4 .product__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .products--grid-condensed.products--grid-4 .product__item {
    flex-basis: 25%;
    max-width: 25%;
  }
}
.products--grid-condensed .product__header {
  text-align: left;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .products--grid-condensed .product__header {
    margin-bottom: 10px;
  }
}
.products--grid-condensed .product__header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.products--grid-condensed .product__category,
.products--grid-condensed .product__ratings {
  flex-basis: 50%;
  max-width: 50%;
}
.products--grid-condensed .product__ratings {
  text-align: right;
}
.products--grid-condensed .product__price {
  text-align: right;
}

/* Products Grid - Light */
.products--grid-light .product__category {
  color: #9a9da2;
}
.products--grid-light .product__title {
  color: #fff;
  font-size: 12px;
}
.products--grid-light .product__title > a {
  color: #fff;
}
.products--grid-light .product__title > a:hover {
  color: #dd163b;
}
.products--grid-light .product__ratings .empty {
  color: #dce0e7;
  opacity: 1;
}
.products--grid-light .product__price {
  position: static;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  font-size: 12px;
}

.alc-products-wishlist {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px;
  width: calc(100% + 22px);
}

.alc-product-wishlist__item {
  margin: 0 11px 24px 11px;
  width: 120px;
}
@media (max-width: 479px) {
  .alc-product-wishlist__item {
    width: 115px;
  }
}

.alc-product-wishlist__thumb {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  background-color: transparent;
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 479px) {
  .alc-product-wishlist__thumb {
    width: 95px;
    height: 95px;
  }
}
.alc-product-wishlist__thumb::before {
  content: "\e08a";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "simple-line-icons";
  font-size: 20px;
  line-height: 1.2em;
  color: #9a9da2;
  opacity: 0.1;
}
.alc-product-wishlist__thumb img {
  border-radius: 3px;
}

.alc-product-wishlist__close {
  position: absolute;
  right: -8px;
  top: -8px;
}

.alc-product-wishlist__title {
  font-size: 10px;
  line-height: 1.4em;
  font-style: normal;
  margin-bottom: 0.6em;
}
.alc-product-wishlist__title > a {
  color: #fff;
}
.alc-product-wishlist__title > a:hover {
  color: #dd163b;
}

.alc-product-wishlist__ratings {
  font-size: 10px;
  line-height: 1.2em;
  margin-bottom: 18px;
}
.alc-product-wishlist__ratings .fa {
  color: #ffdc11;
  margin-right: 2px;
}
.alc-product-wishlist__ratings .empty {
  color: #dbdfe6;
}

@media (min-width: 992px) {
  .alc-inventory__side {
    flex-basis: 29%;
    max-width: 29%;
  }
}

.alc-inventory__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  width: calc(100% + 20px);
}

.alc-inventory__item {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 10px 20px 10px;
  background-image: url("../images/placeholder-cart-sm-d8c05577a6d4389888e175dbf95824d7.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 479px) {
  .alc-inventory__item {
    width: 72px;
    height: 72px;
  }
}

.alc-inventory__item--active {
  border: none;
}
.alc-inventory__item--active .alc-inventory__item-thumb {
  border-width: 4px;
  border: 4px solid #dd163b;
}

.alc-inventory__item-thumb {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
}

.alc-inventory__item-badges {
  display: block;
  position: absolute;
  top: -6px;
  right: -6px;
}
.alc-inventory__item-badges .badge {
  vertical-align: top;
  min-width: 22px;
  min-height: 22px;
  line-height: 22px;
  border-radius: 50%;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 10px;
}
.alc-inventory__item-badges .badge.badge-close:hover {
  cursor: pointer;
}

.alc-inventory__main {
  text-align: center;
}
@media (min-width: 992px) {
  .alc-inventory__main {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-basis: 71%;
    max-width: 71%;
  }
}

@media (max-width: 991px) {
  .alc-inventory__main-thumb {
    padding-bottom: 20px;
  }
}
.alc-inventory__main-thumb img {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.alc-inventory__main-header {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .alc-inventory__main-header {
    padding-bottom: 34px;
  }
}

.alc-inventory__main-title {
  font-style: normal;
  margin-bottom: 0.4em;
  font-size: 24px;
}
@media (min-width: 992px) {
  .alc-inventory__main-title {
    font-size: 32px;
  }
}

.alc-inventory__main-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alc-inventory__main-ratings {
  font-size: 10px;
  line-height: 1.2em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
}
.alc-inventory__main-ratings .fa {
  color: #ffdc11;
  margin-right: 3px;
}
.alc-inventory__main-ratings .empty {
  color: #dbdfe6;
}

.alc-inventory__main-price {
  display: inline-block;
  font-size: 20px;
  line-height: 1.2em;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  color: #fff;
}

.alc-inventory__main-excerpt {
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  padding-bottom: 35px;
}

.alc-inventory__main-quantity {
  padding-bottom: 30px;
}
.alc-inventory__main-quantity .product-quantity-control {
  text-align: center;
}

.alc-inventory__main-meta {
  padding-bottom: 30px;
  display: flex;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.2em;
  font-style: italic;
  text-transform: uppercase;
}

.alc-inventory__main-meta-item {
  padding: 0 7px;
}

.alc-inventory__main-meta-value {
  color: #fff;
}

/*
// #Info Block
// --------------------------------------------------
*/
.info-block {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-block__item {
  position: relative;
  min-height: 26px;
  padding: 2px 0 0 40px;
  margin-bottom: 34px;
  list-style: none;
  text-align: left;
}
.info-block__item:last-child {
  margin-bottom: 0;
}
.info-block__item .df-icon,
.info-block__item .df-icon-stack {
  position: absolute;
  left: 0;
  top: 0;
}
.info-block__item .df-icon--custom {
  height: auto;
  font-size: 28px;
  line-height: 1.2em;
  color: #c2ff1f;
}
.info-block__item .df-icon--custom img {
  vertical-align: top;
}
@media (max-width: 991px) {
  .header__primary .info-block__item {
    text-align: left;
    margin: 20px 0;
    padding: 2px 30px 16px 70px;
  }
  .header__primary .info-block__item.info-block__item--contact-primary {
    margin-top: 36px;
  }
  .header__primary .info-block__item.info-block__item--contact-secondary {
    margin-bottom: 0;
  }
  .header__primary .info-block__item .df-icon {
    left: 30px;
  }
  .header__primary .info-block__item .info-block__link {
    padding: 0;
    font-size: 9px;
    line-height: 1.2em;
    color: #6b6d70;
    border: none;
  }
  .header__primary .info-block__item .info-block__link::before {
    display: none;
  }
  .header__primary .info-block__item .info-block__link:hover {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .header__primary .info-block__item {
    display: none;
  }
}

.info-block__item--nopadding {
  padding-left: 0;
}

.info-block__heading {
  font-size: 9px;
  line-height: 1.2em;
  margin-bottom: 5px;
  color: #fff;
  text-transform: uppercase;
}

.info-block__link {
  display: block;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-size: 9px;
  line-height: 1.2em;
  color: #6b6d70;
  transition: color 0.25s cubic-bezier(0.3, 0.1, 0.55, 1);
}
.info-block__link:hover {
  color: #fff;
}

.info-block__link-wrapper {
  display: block;
}

.info-block--header {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .info-block--header {
    display: none;
  }
}
.info-block--header .info-block__item {
  display: inline-block;
  margin: 7px 0 0 26px;
}
@media (min-width: 992px) {
  .info-block--header .info-block__item {
    padding-top: 20px;
    padding-bottom: 32px;
  }
  .info-block--header .info-block__item .df-icon {
    top: 24px;
    stroke: #c2ff1f;
  }
  .info-block--header .info-block__item .df-icon-stack--bag {
    top: 3px;
  }
  .info-block--header .info-block__item .df-icon-stack--bag .df-icon--bag-handle {
    top: 19px;
  }
  .info-block--header .info-block__item .info-block__heading {
    margin-top: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-block--header .info-block__item {
    margin-left: 20px;
  }
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover > .info-block__link-wrapper {
  padding-right: 16px;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover > .info-block__link-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 29px;
  width: 6px;
  height: 4px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%23fff' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
  background-size: 6px 4px;
  background-repeat: no-repeat;
  background-position: center center;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover:hover .header-cart {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick {
  padding-right: 0;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon {
  display: block;
  position: absolute;
  right: 0;
  top: 21px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 7'%3E%3Cpath fill='%23fff' d='M-0.000,6.998 L-0.000,5.998 L8.000,5.998 L8.000,6.998 L-0.000,6.998 ZM-0.000,2.998 L8.000,2.998 L8.000,3.999 L-0.000,3.999 L-0.000,2.998 ZM-0.000,-0.002 L8.000,-0.002 L8.000,0.998 L-0.000,0.998 L-0.000,-0.002 Z'/%3E%3C/svg%3E");
  background-size: 8px 7px;
  background-repeat: no-repeat;
  background-position: right center;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon:hover {
  cursor: pointer;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon.active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9'%3E%3Cpath fill='%23fff' d='M8.037,1.673 L5.209,4.500 L8.036,7.327 L7.329,8.034 L4.502,5.207 L1.673,8.036 L0.966,7.329 L3.795,4.500 L0.965,1.670 L1.672,0.963 L4.502,3.793 L7.329,0.965 L8.037,1.673 Z'/%3E%3C/svg%3E");
  background-size: 9px 9px;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon.active ~ .header-cart {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick > .info-block__link-wrapper {
  margin-right: 20px;
}
.info-block--header .info-block__item--shopping-cart .info-block__heading {
  margin-bottom: 3px;
}
.info-block--header .info-block__cart-sum {
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  line-height: 1.2em;
  display: block;
  color: #c2ff1f;
}
.info-block--header .header-cart {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99;
  width: 360px;
  background-color: #fff;
  opacity: 0;
  transform-origin: 0% 0%;
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s;
}
.info-block--header .header-cart__item {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 19px 24px;
  border-top: 1px solid #e4e7ed;
}
.info-block--header .header-cart__inner {
  overflow: hidden;
  padding: 5px 0 0 0;
}
.info-block--header .header-cart__product-thumb {
  float: left;
  margin: 0 12px 0 0;
  border-radius: 0;
}
.info-block--header .header-cart__product-thumb img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
  border-radius: 0;
}
.info-block--header .header-cart__product-thumb img:hover {
  opacity: 0.7;
}
.info-block--header .header-cart__product-cat {
  display: block;
  font-size: 8px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  margin-bottom: 0.2em;
}
.info-block--header .header-cart__product-name {
  font-size: 12px;
  line-height: 1.2em;
  margin-bottom: 0.5em;
  font-family: "Formula1-Bold", sans-serif;
  text-transform: uppercase;
  font-style: normal;
}
.info-block--header .header-cart__product-name > a {
  color: #31404b;
  transition: color 0.3s ease;
}
.info-block--header .header-cart__product-name > a:hover {
  color: #dd163b;
}
.info-block--header .header-cart__product-ratings {
  font-size: 10px;
  line-height: 10px;
  margin-bottom: 2px;
}
.info-block--header .header-cart__product-ratings .fa {
  margin-right: 2px;
  color: #ffdc11;
}
.info-block--header .header-cart__product-ratings .fa.empty {
  color: #dbdfe6;
}
.info-block--header .header-cart__product-sum {
  font-size: 12px;
  font-weight: 700;
  font-family: "Formula1-Bold", sans-serif;
  color: #31404b;
}
.info-block--header .header-cart__close {
  display: block;
  position: absolute;
  right: 18px;
  top: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #31404b;
  opacity: 0.4;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
.info-block--header .header-cart__close:hover {
  opacity: 1;
  cursor: pointer;
}
.info-block--header .header-cart__item--subtotal {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.3em;
  padding-top: 21px;
  padding-bottom: 21px;
  text-transform: uppercase;
  color: #31404b;
  font-weight: 700;
  font-family: "Formula1-Bold", sans-serif;
}
.info-block--header .header-cart__subtotal {
  float: left;
}
.info-block--header .header-cart__subtotal-sum {
  float: right;
  color: #31404b;
}
.info-block--header .header-cart__item--action {
  padding-top: 16px;
  padding-bottom: 16px;
}
.info-block--header .header-cart__item--action .btn {
  width: 48%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  margin-top: 0;
  transition: background-color 0.3s ease;
}
.info-block--header .header-cart__item--action .btn:first-child {
  float: left;
}
.info-block--header .header-cart__item--action .btn:last-child {
  float: right;
}
.info-block--header .header-cart--inventory {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 30px 60px 50px;
}
.info-block--header .header-cart--inventory .header-cart__item {
  width: 80px;
  height: 80px;
  margin: 0 20px 20px 0;
  padding: 0;
  border: 1px solid #e4e7ed;
  background-color: #1e2024;
  background-image: url("../images/placeholder-cart-sm-d8c05577a6d4389888e175dbf95824d7.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: visible;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--title {
  width: 100%;
  height: auto;
  border: none;
  margin-bottom: 0;
  padding-bottom: 37px;
  background: none;
  border: none;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--title h5 {
  margin-bottom: 0;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--subtotal {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 0;
  background: none;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: 22px 0;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--action {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  background: none;
  border: none;
  padding-top: 24px;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--action .btn {
  width: 100%;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--action .btn:first-child, .info-block--header .header-cart--inventory .header-cart__item.header-cart__item--action .btn:last-child {
  float: none;
}
.info-block--header .header-cart--inventory .header-cart__item.header-cart__item--action .btn + .btn {
  margin-top: 16px;
}
.info-block--header .header-cart--inventory .header-cart__product-thumb {
  margin: 0;
}
.info-block--header .header-cart--inventory .header-cart__badges {
  display: block;
  position: absolute;
  top: -6px;
  right: -6px;
}
.info-block--header .header-cart--inventory .header-cart__badges .badge {
  vertical-align: top;
  min-width: 22px;
  min-height: 22px;
  line-height: 22px;
  border-radius: 50%;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 10px;
}
.info-block--header .header-cart--inventory .header-cart__badges .badge.badge-close {
  background-color: #31404b;
}
.info-block--header .header-cart--inventory .header-cart__badges .badge.badge-close:hover {
  cursor: pointer;
}

.footer-widgets .info-block__item .df-icon {
  stroke: #c2ff1f;
}

.info-block--horizontal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 992px) {
  .info-block--horizontal {
    flex-wrap: nowrap;
    width: auto;
  }
}
.info-block--horizontal .info-block__item {
  width: 100%;
  padding-left: 50px;
}
@media (min-width: 768px) {
  .info-block--horizontal .info-block__item {
    width: 33.3%;
  }
}
@media (min-width: 992px) {
  .info-block--horizontal .info-block__item {
    width: auto;
    margin: 0 20px;
  }
}
@media (min-width: 1200px) {
  .info-block--horizontal .info-block__item {
    margin: 0 43px;
  }
}
@media (max-width: 991px) {
  .info-block--horizontal .info-block__item:last-child {
    margin-bottom: 34px;
  }
}
.info-block--horizontal .info-block__item--social {
  padding-left: 0;
}

/*
// #Social Links
// --------------------------------------------------
*/
.social-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-links__item {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
}
.social-links__item i {
  font-size: 12px;
  margin-right: 5px;
  color: #fff;
  transition: color 0.2s ease;
}
.social-links__item:last-child {
  margin-right: 0;
}

.social-links__link {
  display: inline-block;
  color: #6b6d70;
  transition: color 0.2s ease;
}
.social-links__link:hover {
  color: #fff;
}
.social-links__link:hover i {
  color: #dd163b;
}

.social-links--main-nav {
  display: inline-block;
  padding-left: 30px;
}
.social-links--main-nav .social-links__item {
  margin-right: 19px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social-links--main-nav .social-links__item {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social-links--main-nav {
    padding-left: 30px;
  }
}

.social-links--top-bar {
  padding-left: 0;
}
.social-links--top-bar .social-links__item {
  margin-right: 20px;
}
.social-links--top-bar .social-links__item i {
  font-size: 16px;
  opacity: 0.6;
}
.social-links--top-bar .social-links__link i {
  color: #9a9da2;
}
.social-links--top-bar .social-links__link:hover i {
  opacity: 1;
  color: #dd163b;
}

.social-links--btn .social-links__item {
  margin: 0 0 0 0;
}
.social-links--btn .social-links__link {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  font-size: 12px;
  margin: 0 2px;
  transition: opacity 0.2s ease-in-out;
}
.social-links--btn .social-links__link:hover {
  opacity: 0.8;
}
.social-links--btn .social-links__link:hover i {
  color: #fff;
}
.social-links--btn .social-links__link i {
  margin: 0;
}
.social-links--btn .social-links__link--lg {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 6px;
}
.social-links--btn .social-links__link--fb {
  background-color: #4d6baa;
}
.social-links--btn .social-links__link--twitter {
  background-color: #3fcef2;
}
.social-links--btn .social-links__link--gplus {
  background-color: #e34d39;
}
.social-links--btn.social-links--btn-block .social-links__item {
  display: inline;
}
.social-links--btn.social-links--btn-block .social-links__link {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 12px;
  font-size: 9px;
  height: 24px;
  line-height: 24px;
}

.social-links--circle .social-links__item {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .social-links--circle .social-links__item {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .social-links--circle .social-links__item {
    margin-right: 24px;
  }
}
.social-links--circle .social-links__item:last-child {
  margin-right: 0;
}
.social-links--circle .social-links__link {
  border: 2px solid rgba(154, 157, 162, 0.4);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.social-links--circle .social-links__link i {
  margin-right: 0;
  font-size: 14px;
  line-height: 30px;
}
.social-links--circle .social-links__link:hover {
  border-color: #c2ff1f;
}
.social-links--circle .social-links__link:hover i {
  color: #fff;
}

.social-links--circle-filled .social-links__item {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .social-links--circle-filled .social-links__item {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .social-links--circle-filled .social-links__item {
    margin-right: 18px;
  }
}
.social-links--circle-filled .social-links__item:last-child {
  margin-right: 0;
}
.social-links--circle-filled .social-links__link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.social-links--circle-filled .social-links__link i {
  margin-right: 0;
  font-size: 14px;
  line-height: 40px;
}
.social-links--circle-filled .social-links__link:hover {
  opacity: 0.8;
}
.social-links--circle-filled .social-links__link:hover i {
  color: #fff;
}
.social-links--circle-filled .social-links__link--facebook {
  background-color: #3B5998;
}
.social-links--circle-filled .social-links__link--twitter {
  background-color: #1DA1F2;
}
.social-links--circle-filled .social-links__link--gplus {
  background-color: #DC4E41;
}
.social-links--circle-filled .social-links__link--twitch {
  background-color: #6441A4;
}

/* Main News Banner
/* ------------------------- */
.main-news-banner {
  background-color: #27313b;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 15px;
  min-height: 120px;
}
@media (min-width: 480px) {
  .main-news-banner {
    min-height: 170px;
  }
}
.main-news-banner .posts__title > a {
  color: #fff;
}
.main-news-banner .main-news-banner__highlight {
  color: #9fe900;
}

.main-news-banner__inner {
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .main-news-banner__inner {
    padding: 35px 30px 35px 30px;
  }
}
@media (min-width: 1199px) {
  .main-news-banner__inner {
    padding: 55px 37px 55px 55px;
  }
}

/* With Image at the Left */
.main-news-banner--img-left {
  will-change: opacity;
}
.main-news-banner--img-left::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: no-repeat;
  background-position: 0 0;
  mix-blend-mode: overlay;
}
@media (min-width: 992px) {
  .main-news-banner--img-left::before {
    background-image: radial-gradient(at 180px 0%, rgba(255, 255, 255, 0.8), transparent);
  }
}
.main-news-banner--img-left .main-news-banner__img {
  float: left;
  max-width: 50%;
  z-index: 2;
  position: absolute;
  bottom: 0;
}
/*
@media (min-width: 992px) {
  .main-news-banner--img-left .main-news-banner__img {
    left: 10%;
  }
}
*/
.main-news-banner--img-left .main-news-banner__img img {
  position: relative;
  z-index: 2;
  max-height: 170px;
}
.main-news-banner--img-left .posts__excerpt {
  display: none;
}
.main-news-banner--img-left .posts__excerpt.posts__incerpt {
  display: block;
}
@media (min-width: 992px) {
  .main-news-banner--img-left .posts__excerpt {
    display: block;
  }
  .main-news-banner--img-left .posts__excerpt.posts__incerpt {
    display: none;
  }
}
.main-news-banner--img-left .posts__date {
  display: none;
}
@media (min-width: 768px) {
  .main-news-banner--img-left .posts__date {
    display: block;
  }
}
@media (max-width: 479px) {
  .main-news-banner--img-left .posts__more {
    padding-top: 10px;
  }
}
@media (max-width: 479px) {
  .main-news-banner--img-left .posts__more .btn {
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 10px;
    border-width: 1px;
  }
}

/* With Background */
.main-news-banner--bg {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border: 2px solid #dd163b;
  border-radius: 8px;
}
.main-news-banner--bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}
@media (min-width: 992px) {
  .main-news-banner--bg::before {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
  }
}
.main-news-banner--bg .main-news-banner__inner {
  padding: 30px 10px 30px 10px;
}
.main-news-banner--bg .main-news-banner__inner h1 {
  font-size: 22px;
  text-align: right;
}
@media (min-width: 768px) {
  .main-news-banner--bg .main-news-banner__inner h1 {
    font-size: 30px;
  }
}
@media (min-width: 1199px) {
  .main-news-banner--bg .main-news-banner__inner h1 {
    font-size: 34px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .main-news-banner--bg .main-news-banner__inner {
    padding: 30px 30px 30px 48%;
  }
}
@media (min-width: 1199px) {
  .main-news-banner--bg .main-news-banner__inner {
    padding: 41px 40px 41px 48%;
  }
}
.main-news-banner--bg .posts__date {
  color: rgba(255, 255, 255, 0.8);
}

/* Main News Banner
/* ------------------------- */
.main-mobileapp-banner {
  background-color: #292c31;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 15px;
}
.main-mobileapp-banner .posts__title > a {
  color: #fff;
}
.main-mobileapp-banner .main-mobileapp-banner__highlight {
  color: #9fe900;
}

.main-mobileapp-banner__inner {
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .main-mobileapp-banner__inner {
    padding: 20px 15px 20px 15px;
  }
}

/* With Image at the Left */
.main-mobileapp-banner--img-left {
  will-change: opacity;
}
.main-mobileapp-banner--img-left::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: no-repeat;
  background-position: 0 0;
  mix-blend-mode: overlay;
}
@media (min-width: 992px) {
  .main-mobileapp-banner--img-left::before {
    background-image: radial-gradient(at 180px 0%, rgba(255, 255, 255, 0.8), transparent);
  }
}
.main-mobileapp-banner--img-left .main-mobileapp-banner__img {
  float: left;
  max-width: 50%;
  position: relative;
  z-index: 2;
}
.main-mobileapp-banner--img-left .main-mobileapp-banner__img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 23%;
  background-color: #dd163b;
  width: 50%;
}
.main-mobileapp-banner--img-left .main-mobileapp-banner__img img {
  position: relative;
  z-index: 2;
}
.main-mobileapp-banner--img-left .posts__excerpt {
  display: none;
}
@media (min-width: 768px) {
  .main-mobileapp-banner--img-left .posts__excerpt {
    display: block;
  }
}
.main-mobileapp-banner--img-left .posts__date {
  display: none;
}
@media (min-width: 768px) {
  .main-mobileapp-banner--img-left .posts__date {
    display: block;
  }
}
@media (max-width: 479px) {
  .main-mobileapp-banner--img-left .posts__more {
    padding-top: 10px;
  }
}
@media (max-width: 479px) {
  .main-mobileapp-banner--img-left .posts__more .btn {
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 10px;
    border-width: 1px;
  }
}

/* With Background */
.main-mobileapp-banner--bg {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.main-mobileapp-banner--bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}
@media (min-width: 992px) {
  .main-mobileapp-banner--bg::before {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
  }
}
.main-mobileapp-banner--bg .main-mobileapp-banner__inner {
  padding: 30px;
}
@media (min-width: 992px) {
  .main-mobileapp-banner--bg .main-mobileapp-banner__inner {
    padding: 30px 30px 30px 48%;
  }
}
@media (min-width: 1199px) {
  .main-mobileapp-banner--bg .main-mobileapp-banner__inner {
    padding: 41px 40px 41px 48%;
  }
}
.main-mobileapp-banner--bg .posts__date {
  color: rgba(255, 255, 255, 0.8);
}

/* Team Filter */
.content-filter {
  background-color: #292c31;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .content-filter {
    border-bottom: 1px solid #35383f;
  }
}
@media (max-width: 991px) {
  .content-filter .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.content-filter__inner {
  margin: 1em 0;
}

.content-filter__toggle {
  display: none;
}
@media (max-width: 991px) {
  .content-filter__toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
  }
}
.content-filter__toggle::before {
  content: "\f141";
  line-height: 40px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.content-filter__toggle--active::before {
  content: "\f00d";
}

.content-filter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .content-filter__list {
    flex-direction: row;
    border-left: 1px solid #35383f;
    border-right: 1px solid #35383f;
  }
}

.content-filter__item {
  flex-grow: 1;
  text-align: center;
  border-bottom: 1px solid #35383f;
  background-color: #292c31;
}
@media (min-width: 992px) {
  .content-filter__item {
    border-bottom: none;
  }
  .content-filter__item + .content-filter__item {
    border-left: 1px solid #35383f;
  }
}
@media (max-width: 991px) {
  .content-filter__item:not(.content-filter__item--active) {
    display: none;
  }
}

@media (max-width: 991px) {
  .content-filter__list--expanded .content-filter__item {
    display: block;
  }
}

.content-filter__link {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  color: #9a9da2;
  padding: 18px 20px 18px 20px;
  transition: color 0.3s ease-out;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .content-filter__link {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
.content-filter__link small {
  display: block;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2em;
  color: #9a9da2;
}
.content-filter__link:hover {
  color: #fff;
}
.content-filter__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  opacity: 0;
  background-color: #dd163b;
  transition: opacity height 0.2s ease-out;
}

.content-filter__item--active {
  background-color: #292c31;
}
@media (max-width: 991px) {
  .content-filter__item--active {
    order: -1;
  }
}
.content-filter__item--active .content-filter__link {
  color: #fff;
}
.content-filter__item--active .content-filter__link::before {
  height: 4px;
  opacity: 1;
}
.content-filter__item--active .content-filter__link:hover {
  cursor: default;
}

.content-filter--boxed {
  background-color: transparent;
  border-bottom: 0;
  margin-top: 15px;
}
@media (max-width: 575px) {
  .content-filter--boxed {
    margin-left: 8px;
    margin-right: 8px;
  }
}
@media (min-width: 992px) {
  .content-filter--boxed {
    margin-top: 30px;
    margin-bottom: -20px;
  }
}
.content-filter--boxed .content-filter__inner {
  position: relative;
  background-color: #292c31;
  border: 1px solid #35383f;
  border-radius: 4px;
}
.content-filter--boxed .content-filter__list {
  border-left: 0;
  border-right: 0;
}
.content-filter--boxed .content-filter__item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.content-filter--highlight-side .content-filter__link::before {
  content: "";
  left: 0;
  right: auto;
  bottom: 0;
  top: 0;
  height: auto;
  transition: opacity width 0.2s ease-out;
}
.content-filter--highlight-side .content-filter__item--active .content-filter__link::before {
  width: 6px;
}
.content-filter--highlight-side.content-filter--boxed .content-filter__item:first-child .content-filter__link::before {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

@media (min-width: 992px) {
  .content-filter--label-left .content-filter__item {
    text-align: left;
  }
}

/**
 *
 * Sponsors
 *
 */
/* Sponsors Grid */
.sponsor-card {
  height: calc(100% - 16px);
}

.sponsor-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 172px;
}
.sponsor-card__header::before {
  display: none;
}

.sponsor-card__content {
  flex-grow: 1;
}

.sponsor-card__excerpt {
  font-size: 0.86em;
  line-height: 1.83em;
  text-align: center;
}

.sponsor-card__social {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 4px;
}
.sponsor-card__social .social-links__item {
  margin: 0 14px;
}
.sponsor-card__social .social-links__item:last-child {
  margin-right: 14px;
}
.sponsor-card__social .social-links__item .fa {
  color: #9a9da2;
  font-size: 16px;
  margin-right: 0;
  opacity: 0.6;
}
.sponsor-card__social .social-links__link:hover .fa {
  color: #dd163b;
  opacity: 1;
}

.sponsor-card__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
  padding: 18px 10px;
  text-align: center;
}

.sponsor-card__link {
  font-size: 10px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: "Formula1-Bold", sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-primary,
.text-color-primary {
  color: #dd163b !important;
}

.text-transform-normal {
  text-transform: none !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.icon-svg {
  vertical-align: middle;
}

.footer-supp-part {
  display: none;
  position: fixed;
  padding: 0 0 0 0 !important;
  top: 0;
  /* border-top: 1px solid #e5e5e5; */
  z-index: 50;
  width: 100%;
}
@media (min-width: 576px) {
  .footer-supp-part {
    display: none !important;
  }
}
.footer-supp-part img {
  width: 100%;
}

.supp-sidebar-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}
.supp-sidebar-box img {
  border-radius: 8px;
}

.supp-header-banner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  height: 90px;
}
.supp-header-banner img {
  border-radius: 8px;
  height: 72px;
}

.supp-subheader-banner {
  justify-content: center;
  align-items: center;
  margin: 10px 10px;
}
.supp-subheader-banner img {
  border-radius: 6px;
  width: 100%;
}
@media (min-width: 576px) {
  .supp-subheader-banner {
    display: none !important;
  }
}

.supp-footer-banner {
  margin: 0 auto;
  text-align: center;
  position: fixed;
  bottom: 0px !important;
  z-index: 50;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .supp-footer-banner {
    display: block !important;
  }
}
.supp-footer-banner img {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
  border-radius: 8px 8px 0 0;
}

.supp-sense-desk-large {
  display: none;
}
@media (min-width: 768px) {
  .supp-sense-desk-large {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
  }
}

.supp-sense-mobile-bn-large {
  height: 105px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .supp-sense-mobile-bn-large {
    display: none;
  }
}

.supp-sense-mobile-box-large {
  height: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .supp-sense-mobile-box-large {
    display: none;
  }
}

.supp-sense-sidebar-box-large {
  display: none;
}
@media (min-width: 768px) {
  .supp-sense-sidebar-box-large {
    height: 270px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
  }
}

/*
File Name: 		custom.css
Description:  You can add your custom CSS here and it will overwrite template styles
*/
@font-face {
  font-family: "Formula1-Bold";
  src: url("../webfonts/Formula1-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "Formula1-Regular";
  src: url("../webfonts/Formula1-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("../webfonts/icomoon-2dc4fe2f611c2f74bbca8f5239ad3142.eot");
  src: url("../webfonts/icomoon-2dc4fe2f611c2f74bbca8f5239ad3142.eot#iefix") format("embedded-opentype"), url("../fonts/icomoon-3dfc19ba41585db1b30d261a86f8d504.ttf") format("truetype"), url("../fonts/icomoon-40a9accca916e80799c78c0202e2217a.woff") format("woff"), url("../fonts/icomoon-830cbd6d09dc1f4186098afdaa513650.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
  font-display: swap;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak-as: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus-circle-solid:before {
  content: "\e90f";
}

.icon-user-solid:before {
  content: "\e910";
}

.icon-discord-brands:before {
  content: "\e907";
}

.icon-flag-checkered-solid:before {
  content: "\e908";
}

.icon-chevron-left-solid:before {
  content: "\e909";
}

.icon-chevron-right-solid:before {
  content: "\e90a";
}

.icon-chevron-up-solid:before {
  content: "\e90b";
}

.icon-facebook-square-brands:before {
  content: "\e90c";
}

.icon-instagram-brands:before {
  content: "\e90d";
}

.icon-twitter-square-brands:before {
  content: "\e90e";
}

.icon-cloud-showers-heavy-solid:before {
  content: "\e901";
}

.icon-gamepad-solid:before {
  content: "\e902";
}

.icon-star-regular:before {
  content: "\e903";
}

.icon-star-solid:before {
  content: "\e904";
}

.icon-stopwatch-solid:before {
  content: "\e905";
}

.icon-sun-solid:before {
  content: "\e906";
}

.icon-search-solid:before {
  content: "\e900";
}

.card-btn:hover {
  box-shadow: 0 0 11px #dd163b;
}

.card-btn.active {
  box-shadow: 0 0 11px #dd163b;
}

.card-game-panel {
  background-color: #292c32;
}

#goTopBtn {
  position: fixed;
  bottom: 130px;
  right: 0px;
  background: #dd163b;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  border-radius: 5px 0px 0px 5px;
  display: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

#goTopBtn i {
  color: #1e2025;
  margin: 0;
  position: relative;
  left: 15px;
  top: 11px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.widget-circuit__photo {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 50%;
  z-index: 4;
}

.flag-country-dsk {
  width: 73px;
  height: 38px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .flag-country-dsk {
    width: 60px;
    height: 35px;
  }
}

.flag-country-mobile {
  width: 40px;
  height: 24px;
  border-radius: 2px;
}

.flag-country-mobile-small {
  width: 24px;
  height: 18px;
  border-radius: 2px;
}

.flag-country-driver {
  width: 40px;
  height: 24px;
  border-radius: 2px;
  margin: 3px 0;
}

.margin-row-10 {
  margin: 10px 0;
}

.carsetup-create .form-control:not(textarea) {
  height: 30px;
}

.sidebar-carsetup-img {
  width: 100px;
}

.posts__item--category-1 {
  padding: 0 3px;
}

/******** SLICK ********/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.game-panel-cards .post-grid__item {
  margin-bottom: 10px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .game-panel-cards .post-grid__item {
    margin-bottom: 20px;
  }
}

:focus {
  outline: none !important;
}

input:focus, textarea:focus, select:focus, button:focus {
  outline: none;
}

#chart-container {
  width: 800px;
  height: 300px;
  margin: 35px auto;
  padding-top: 20px;
  padding-left: 10px;
  background: #fff;
  display: inline-block;
  border: 1px solid #ddd;
  box-shadow: 0 22px 35px -16px rgba(0, 0, 0, 0.1);
}

.profile-icon {
  display: grid;
  justify-content: center;
}
.profile-icon img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  padding: 5px;
}

.widget-player__photo {
  left: 15px;
}
.widget-player__photo .profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  padding: 5px;
}

.card-driver {
  height: 120px !important;
}

.card-driver-small {
  height: 150px !important;
}
@media (min-width: 990px) {
  .card-driver-small {
    height: 170px !important;
  }
}

.password-reminder {
  text-align: right;
}

.carsetup-rating-container {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  padding: 15px;
  background-color: #292c31;
  border-radius: 4px;
  margin: 0 0 1em 0;
  width: 100%;
}

.br-theme-fontawesome-stars-o .br-widget {
  height: 28px;
  white-space: nowrap;
}

.br-theme-fontawesome-stars-o .br-widget a {
  font: normal normal normal 20px/1 "icomoon";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: 2px;
  font-size: 28px;
}

.br-theme-fontawesome-stars-o .br-widget a:after {
  content: "\e903";
  color: #dd163b;
  font-size: 28px;
}

.br-theme-fontawesome-stars-o .br-widget a.br-active:after {
  content: "\e904";
  color: #dd163b;
  font-weight: 600;
  font-size: 28px;
}

.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
  content: "\e904";
  color: #dd163b;
  font-weight: 600;
  font-size: 28px;
}

.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
  content: "\e903";
  color: #dd163b;
  font-size: 28px;
}

.br-theme-fontawesome-stars-o .br-widget .br-current-rating {
  display: none;
}

.br-theme-fontawesome-stars-o .br-readonly a {
  cursor: default;
}

.br-theme-fontawesome-stars-o .br-reverse a.br-fractional {
  display: inline-block;
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

@media print {
  .br-theme-fontawesome-stars-o .br-widget a:after {
    content: "\f005";
    color: black;
  }
  .br-theme-fontawesome-stars-o .br-widget a.br-active:after,
.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
    content: "\f005";
    color: black;
  }
  .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
    content: "\f005";
    color: black;
  }
}
.widget-player__header .br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
  font-size: 16px;
  color: #ccc;
}
.widget-player__header .br-theme-fontawesome-stars-o .br-widget a:after {
  font-size: 16px;
  color: #ccc;
}

@media (min-width: 990px) {
  .widget-player__name-small {
    font-size: 16px !important;
  }
}

.overlay-share-active {
  opacity: 1 !important;
  pointer-events: all !important;
}

.overlay-share-helmets {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  position: fixed;
  opacity: 0;
  transition: 300ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.overlay-share-helmets .active {
  transform: translate(-50%, -50%) !important;
}
.overlay-share-helmets .social-share-box-helmets {
  min-width: 300px;
  max-width: 450px;
  padding: 1em;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 200ms;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 500px;
  max-width: 80%;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container {
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  position: relative;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--title p {
  font-size: 20px;
  color: black;
  text-transform: uppercase;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--title span {
  position: absolute;
  right: 20px;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box .helmet-box-icon {
  border-radius: 50%;
  height: 70px;
  width: 70px;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box .helmet-box-icon {
    height: 100px;
    width: 100px;
  }
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box .helmet-box-icon:hover {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box .helmet-box-icon .helmet-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box .helmet-box-icon .helmet-hover span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .overlay-share-helmets .social-share-box-helmets .social-share-helmets--container .social-share-helmets--body .helmets-box .helmet-box-icon .helmet-hover span {
    font-size: 14px;
  }
}

.error {
  color: #dd163b;
}

hr {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.sponsor-card__excerpt h3 {
  font-size: 18px;
}
.sponsor-card__excerpt h4 {
  font-size: 18px;
}
.sponsor-card__excerpt h5 {
  font-size: 14px;
  color: #ccc;
}

.body-left, .body-right {
  display: none;
  position: fixed;
}
@media (min-width: 1500px) {
  .body-left, .body-right {
    display: block;
  }
  .body-left .supp-side-desk, .body-right .supp-side-desk {
    width: 120px;
    height: 600px;
  }
}

.body-left {
  left: 0;
}

.body-right {
  right: 0px;
}

.post__content p {
  margin-bottom: 1em;
}

.widget-car__photo {
  position: absolute;
  left: 10px;
  bottom: 0px;
  max-width: 75%;
  z-index: 2;
}
@media (min-width: 768px) {
  .widget-car__photo {
    max-width: 50%;
  }
}

.widget-car__photo-card {
  position: absolute;
  left: 10px;
  bottom: 28px;
  max-width: 70%;
  z-index: 2;
}

.carsetup-sub-section {
  display: flex;
  justify-content: space-between;
}

.carsetup-sub-section__title, .carsetup-sub-section__value {
  margin-bottom: 1em;
  color: #ccc;
}

.font-regular {
  font-family: "Formula1-Regular";
}

.padding-heading {
  padding: 20px 0;
}

.carsetup-img-sidebar {
  overflow-x: hidden;
  background-size: 150%;
  background-position-x: 100%;
  background-position-y: 50%;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.card-game {
  height: 100px;
  margin: 0.5em 0;
  background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 4px;
}

.range-wrap {
  width: 100%;
  position: relative;
  margin-top: 1em;
}

.range-value {
  position: absolute;
  top: -50%;
}

.range-value span {
  width: 50px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #dd163b;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}

.range-value span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #dd163b;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}

input[type=range] {
  -webkit-appearance: none;
  margin: 20px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  -webkit-animation: 0.2s;
          animation: 0.2s;
  background: #dd163b;
  border-radius: 25px;
}

input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgb(0, 0, 0);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

.range-value-label {
  color: #ccc;
}

.range-value-txt {
  color: white;
  font-family: "Formula1-Bold";
}

.team-info__label {
  font-family: "Formula1-Regular";
}

.player-name {
  color: #ccc;
  font-size: 16px !important;
}
@media (min-width: 999px) {
  .player-name {
    font-size: 14px !important;
  }
}
@media (min-width: 1200px) {
  .player-name {
    font-size: 18px !important;
  }
}

.profile-img-rank {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  padding: 5px;
}

.team- .br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
  content: "\f005";
  color: #dd163b;
  font-weight: 600;
  font-size: 12px;
}
.team- .br-theme-fontawesome-stars-o .br-widget a:after {
  content: "\f005";
  color: #dd163b;
  font-size: 12px;
}

.posts__item--card .posts__cta {
  display: block;
  position: absolute;
  top: 0;
  right: 23px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  transform: translateY(-50%);
}

.posts__item--category-1 .posts__cat-label, .posts__item--category-1 .posts__cta {
  background-color: #de7333;
}

.game-panel-cards .posts__title {
  font-size: 20px;
}
@media (min-width: 1200px) {
  .game-panel-cards .posts__title {
    font-size: 24px !important;
  }
}

.footer-spacer {
  height: 90px;
}

.no-border {
  border: 0 !important;
  border-radius: 0 !important;
}

.driver-card-top15 {
  padding-top: 20px !important;
}

.role_OWNER {
	color: red;
	
}

.role_DIRECTOR {
	color: orange;
	
}

.role_PLAYER {
	color: blue;
	
}

.role_SUPPORT {
	color: green
	
}

.role_SERVICE {
	color: cyan;
	
}

.role_JUDGE {
	color: white;
	
}

.role_STREAMER {
	color: yellow;
	
}

.role_GRAPHIC {
	color: purple;
	
}

.main-alert-banner {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 15px;
  min-height: 80px;
}

.main-alert-banner--bg {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border: 2px solid #6b5e61;
  border-radius: 8px;
}

.tag_disabled {
    pointer-events:none;
    opacity:0.6;
}

.tag_editable {
    pointer-events:unset !important;
}

.tag_editable:hover {
    pointer-events:unset !important;
    opacity:1;
}

.Stat_bar {
    color: rgb(250 250 250);
    padding-block-end:8px;position: relative;
}

.Stat_bar:after,.Stat_bar:before {
    background: rgb(75 75 75);
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    inset: 0;
    margin-block-start:auto;position: absolute
}

.Stat_bar:after {
    background-color: var(--color);
    width: var(--width)
}
