/* faster when compiling than including all bootstrap */
.general-gradient {
  background: #39a5eb;
  background: -moz-linear-gradient(-45deg, #fe1e3d 0%, #39a5eb 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fe1e3d), color-stop(100%, #39a5eb));
  background: -webkit-linear-gradient(-45deg, #fe1e3d 0%, #39a5eb 100%);
  background: -o-linear-gradient(-45deg, #fe1e3d 0%, #39a5eb 100%);
  background: linear-gradient(to -45deg, #fe1e3d 0%, #39a5eb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fe1e3d, endColorstr=#39a5eb);
}

.light-blue-gradient {
  background: #0365aa;
  background: -moz-linear-gradient(-45deg, #4fb4f6 0%, #0365aa 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4fb4f6), color-stop(100%, #0365aa));
  background: -webkit-linear-gradient(-45deg, #4fb4f6 0%, #0365aa 100%);
  background: -o-linear-gradient(-45deg, #4fb4f6 0%, #0365aa 100%);
  background: linear-gradient(to -45deg, #4fb4f6 0%, #0365aa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#4fb4f6, endColorstr=#0365aa);
}

.dark-blue-gradient {
  background: #1e1e41;
  background: -moz-linear-gradient(-45deg, #000000 0%, #1e1e41 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #1e1e41));
  background: -webkit-linear-gradient(-45deg, #000000 0%, #1e1e41 100%);
  background: -o-linear-gradient(-45deg, #000000 0%, #1e1e41 100%);
  background: linear-gradient(to -45deg, #000000 0%, #1e1e41 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#000000, endColorstr=#1e1e41);
}

.red-gradient {
  background: #ab315b;
  background: -moz-linear-gradient(-45deg, #fc1d3c 0%, #ab315b 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc1d3c), color-stop(100%, #ab315b));
  background: -webkit-linear-gradient(-45deg, #fc1d3c 0%, #ab315b 100%);
  background: -o-linear-gradient(-45deg, #fc1d3c 0%, #ab315b 100%);
  background: linear-gradient(to -45deg, #fc1d3c 0%, #ab315b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fc1d3c, endColorstr=#ab315b);
}

.player.header {
  min-height: 350px;
}

.player.header .action-image {
  opacity: 0.2;
  position: absolute;
  width: 100%;
  min-height: 350px;
}
.player.header li {
  padding-top: 10px;
}
.player.header .player-details {
  padding: 0 30px;
}
.player.header .player-hold {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.stat-boxes .card-title {
  min-height: 70px;
}

/* =============== MEDIA QUERIES ================ */
@media (min-width: 768px) {
  .player.header {
    min-height: 400px;
  }

  .player.header .action-image {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .player.header {
    min-height: 550px;
  }

  .player.header .action-image {
    min-height: 550px;
  }
  .player.header li {
    padding-top: 20px;
  }
  .player.header .player-hold {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.rlwc-timeline {
  position: relative;
}
.rlwc-timeline::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 5px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.rlwc-timeline h2 {
  font-size: 1.6rem;
  padding: 15px 0 14px 0;
}
.rlwc-timeline p {
  padding-bottom: 10px;
}
.rlwc-timeline .timeline-item {
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.5rem;
}
.rlwc-timeline .timeline-item .timeline-content {
  padding: 20px 30px 10px 30px;
  text-align: right;
}
.rlwc-timeline .timeline-item:nth-child(even) .timeline-content {
  float: right;
  text-align: left;
}
.rlwc-timeline .timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}
.rlwc-timeline .timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 12px;
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
}
.rlwc-timeline .timeline-item.general:nth-child(even) .timeline-content::after {
  border-color: transparent #666 transparent transparent;
}
.rlwc-timeline .timeline-item::after {
  content: "";
  display: block;
  clear: both;
}
.rlwc-timeline .timeline-content {
  position: relative;
  width: 45%;
  padding: 10px 30px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}
.rlwc-timeline .timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 12px;
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
}
.rlwc-timeline .general .timeline-content::after {
  border-color: transparent transparent transparent #666;
}
.rlwc-timeline .timeline-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 7px;
  margin-left: -12px;
}
.rlwc-timeline .general .timeline-img {
  background: #666;
}
.rlwc-timeline a {
  background: #3F51B5;
  color: #FFFFFF;
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
}
.rlwc-timeline a:hover, .rlwc-timeline a:active, .rlwc-timeline a:focus {
  background: #32408f;
  color: #FFFFFF;
  text-decoration: none;
}
.rlwc-timeline .timeline-card {
  padding: 0 !important;
}
.rlwc-timeline .timeline-card p {
  padding: 0 20px;
}
.rlwc-timeline .timeline-card a {
  margin-left: 20px;
}
.rlwc-timeline .timeline-item:nth-child(2) .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://hd.unsplash.com/photo-1458530970867-aaa3700e966d") center center no-repeat;
  background-size: cover;
}
.rlwc-timeline .timeline-item:nth-child(5) .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://hd.unsplash.com/photo-1444093826349-9ce8c622f4f3") center center no-repeat;
  background-size: cover;
}
.rlwc-timeline .timeline-item:nth-child(6) .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://hd.unsplash.com/photo-1471479917193-f00955256257") center center no-repeat;
  background-size: cover;
}
.rlwc-timeline .timeline-item:nth-child(8) .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://hd.unsplash.com/photo-1466840787022-48e0ec048c8a") center center no-repeat;
  background-size: cover;
}
.rlwc-timeline .timeline-item:nth-child(10) .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://hd.unsplash.com/photo-1447639703758-f525f36456bf") center center no-repeat;
  background-size: cover;
}
.rlwc-timeline .timeline-item:nth-child(11) .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://hd.unsplash.com/photo-1469429978400-082eec725ad5") center center no-repeat;
  background-size: cover;
}
.rlwc-timeline .timeline-img-header {
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}
.rlwc-timeline .timeline-img-header h2 {
  color: #FFFFFF;
  position: absolute;
  bottom: 5px;
  left: 20px;
}
.rlwc-timeline blockquote {
  margin-top: 30px;
  color: #757575;
  border-left-color: #3F51B5;
  padding: 0 20px;
}
.rlwc-timeline .date {
  display: inline-block;
  color: #FFFFFF;
  padding-bottom: 0px;
  position: relative;
  top: 0;
  right: 0;
}
.rlwc-timeline .mens .date {
  background: #ac1730;
}
.rlwc-timeline .womens .date {
  background: #ed672b;
}
.rlwc-timeline .wheelchair .date {
  background: #f49928;
}
.rlwc-timeline .general .date {
  background: #666;
}

@media screen and (max-width: 768px) {
  .rlwc-timeline h2 {
    text-align: left;
    font-size: 1.5rem;
  }
  .rlwc-timeline p {
    text-align: left;
  }
  .rlwc-timeline .date {
    left: 0px;
    right: auto;
  }
  .rlwc-timeline::before {
    left: 50px;
  }
  .rlwc-timeline .timeline-img {
    left: 40px;
  }
  .rlwc-timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
  }
  .rlwc-timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  .rlwc-timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 15px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #666 transparent transparent;
  }
  .rlwc-timeline .timeline-item.mens:nth-child(odd) .timeline-content::after {
    border-color: transparent #ac1730 transparent transparent;
  }
  .rlwc-timeline .timeline-item.womens:nth-child(odd) .timeline-content::after {
    border-color: transparent #ed672b transparent transparent;
  }
  .rlwc-timeline .timeline-item.wheelchair:nth-child(odd) .timeline-content::after {
    border-color: transparent #f49928 transparent transparent;
  }
  .rlwc-timeline .timeline-item.general:nth-child(odd) .timeline-content::after {
    border-color: transparent #666 transparent transparent;
  }
}
body {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

/*

Red: #fe1e3d;
Blue: #39a5eb;

*/
/* General Styles */
body {
  font-family: "Lato", sans-serif;
  font-size: 0.9em;
  line-height: 100%;
}

a {
  color: #fe1e3d;
}

a:HOVER {
  color: #39a5eb;
}

p {
  font-size: 17px;
  line-height: 130%;
}

table {
  font-size: 15px;
  line-height: 130%;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0px;
  margin: 0px;
  line-height: 130%;
}

p, h1, h2, h3, h4, h5, h6 {
  color: #000000;
}

.ign-row-content-light p, .ign-row-content-light h1, .ign-row-content-light h2, .ign-row-content-light h3, .ign-row-content-light h4, .ign-row-content-light h5, .ign-row-content-light h6, .ign-row-content-light td, .ign-row-content-light th, .ign-row-content-light th, .ign-row-content-light li {
  color: #ffffff;
}

img {
  display: block;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-left: 5px;
  padding-right: 5px;
}

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

.pt-5 {
  padding-top: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.add-box-shadow {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
}

.progress {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 10px;
}

.progress-bar {
  background-color: #ffffff;
}

.modal-title {
  display: none;
}

.modal-content .cd-main-content {
  padding-top: 0px;
}

/* sl specific styles */
footer {
  background: #ffffff !important;
}

footer p {
  font-size: 11px;
  margin-bottom: 10px;
  color: #666666;
}

footer a {
  color: #fe1e3d;
}

.text-red {
  color: #fe1e3d !important;
}

.text-white {
  color: #ffffff !important;
}

.cd-main-content {
  padding-top: 60px;
}

#cd-top-nav ul {
  padding-top: 16px;
}

#cd-menu-trigger .cd-menu-text {
  line-height: 40px;
}

#cd-menu-trigger .cd-menu-icon {
  width: 30px;
}

#cd-menu-trigger .cd-menu-icon::before {
  bottom: 10px;
}

#cd-menu-trigger .cd-menu-icon::after {
  top: 10px;
}

#cd-lateral-nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900 !important;
}

#cd-lateral-nav a .fab {
  font-size: 20px;
}

#cd-lateral-nav .sub-menu a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400 !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  /* background: -webkit-linear-gradient(left, rgba(254, 30, 61, 1) 0%, rgba(10, 96, 161, 1) 100%); */
  background: -webkit-linear-gradient(left, #132658 0%, #1f3264 100%);
  z-index: 3;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
}

header i {
  color: #fe1e3d !important;
}

header img.logo {
  width: 215px;
  margin: 17px;
}

#cd-menu-trigger {
  border: none;
}

div.border-bottom-gradient {
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
}

div.border-bottom-gradient:after {
  content: "";
  background: #fe1e3d;
  background: -moz-linear-gradient(left, #0a60a1 0%, #fe1e3d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0a60a1), color-stop(100%, #fe1e3d));
  background: -webkit-linear-gradient(left, #0a60a1 0%, #fe1e3d 100%);
  background: -o-linear-gradient(left, #0a60a1 0%, #fe1e3d 100%);
  background: linear-gradient(to left, #0a60a1 0%, #fe1e3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#0a60a1, endColorstr=#fe1e3d);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

div.border-bottom-transparent {
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
}

div.border-bottom-transparent:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

div.border-bottom-gradient-fade {
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
}

div.border-bottom-gradient-fade:after {
  content: "";
  background: -webkit-linear-gradient(left, rgba(254, 30, 61, 0.1) 0%, #fe1e3d 20%, #0a60a1 80%, rgba(10, 96, 161, 0.1) 100%);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.card {
  border-radius: 0px;
  border: 0px;
}

.card-img-top {
  border-radius: 0px;
}

.card-img-top img {
  width: 100%;
}

.card-img {
  border-radius: 0px;
}

.ign-row-content-light .card {
  border: 0px;
}

.card.main-card-style {
  background: #000000;
}

.card.main-card-style .card-img-overlay {
  padding: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0) 65%, black 88%, black 100%);
  position: relative;
}

.card.main-card-style .card-details {
  min-height: 95px;
  bottom: 0px;
  position: absolute;
  width: 100%;
  padding: 30px;
  background-color: transparent !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%, black 50%, black 50%, black 100%);
}

.card.main-card-style .card-details.card-fantasy-sl {
  background-image: linear-gradient(rgba(15, 39, 63, 0) 0%, rgba(15, 39, 63, 0.5) 15%, #0f273f 50%, #0f273f 50%, #0f273f 100%);
}
@media (min-width: 576px) {
  .card.main-card-style .card-details.card-fantasy-sl {
    max-width: 70%;
  }
}

.card.main-card-style .card-details .left-content {
  position: absolute;
  max-width: 100%;
  display: inline-block;
  width: auto;
  left: 0;
  bottom: 15px;
  left: 15px;
  margin-top: 5px;
}
@media (min-width: 576px) {
  .card.main-card-style .card-details .left-content {
    max-width: 70%;
  }
}

.card.main-card-style .card-details .right-content {
  position: absolute;
  right: 10px;
  bottom: 15px;
  display: inline-block;
  width: 50px;
  text-align: right;
}
@media (min-width: 576px) {
  .card.main-card-style .card-details .right-content {
    position: absolute;
    right: 10px;
    bottom: 15px;
    display: inline-block;
    width: 50px;
    text-align: right;
  }
}

.card.main-card-style .card-details .full-content {
  position: absolute;
  width: 100%;
  bottom: 15px;
}

.thead-default th {
  background-color: transparent;
}

.table.no-borders th, .table.no-borders td {
  border-top: 0px !important;
  border-bottom: 0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
}

/* SL Text Styles */
.ign-row-title-holder {
  text-align: center;
}

h1.page-title {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

h1.page-title:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

h2.row-title {
  text-align: center;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

h2.row-title:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

.ign-row-content-light h2.row-title:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.text-plugin h2 {
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.text-plugin h2:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.text-plugin p {
  margin-top: 0px;
  margin-bottom: 20px;
}

.text-plugin p, .match-report-article p {
  margin-bottom: 30px;
}

.ign-row-content-light.dark-row-title h2.row-title {
  color: #0e121e !important;
}

.ign-row-content-light.dark-row-title h2.row-title:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.ign-row-content-dark.light-row-title h2.row-title {
  color: #ffffff !important;
}

.ign-row-content-dark.light-row-title h2.row-title:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.sl-ssu {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.sl-slu {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.sl-nav {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900 !important;
}

.sl-nav-light {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400 !important;
}

.sl-lbu {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 100%;
}

.sl-mbu {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.sl-mbl {
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 576px) {
  .sl-mbl {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .sl-mbl {
    font-size: 18px;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .sl-mbl {
    font-size: 19px;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  .sl-mbl {
    font-size: 22px;
    font-weight: 400;
  }
}

.sl-mlbu {
  font-size: 35px;
  font-weight: 900;
}

.sl-bold {
  font-weight: 700;
}

.sl-x-bold {
  font-weight: 900;
}

.sl-smaller {
  font-size: 12px;
}

.sl-news-card {
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 576px) {
  .sl-news-card {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .sl-news-card {
    font-size: 18px;
    font-weight: 400;
  }
}
@media (min-width: 992px) {
  .sl-news-card {
    font-size: 15px;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  .sl-news-card {
    font-size: 18px;
    font-weight: 400;
  }
}

.btn-primary {
  padding-left: 25px;
  padding-right: 25px;
  color: #ffffff;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0px;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  -moz-border-image: -moz-linear-gradient(right, #fe1e3d 0%, #39a5eb 100%);
  -webkit-border-image: -webkit-linear-gradient(right, #fe1e3d 0%, #39a5eb 100%);
  border-image: linear-gradient(to right, #fe1e3d 0%, #39a5eb 100%);
  border-image-slice: 1;
}

.ign-row-content-dark .btn-primary {
  color: #000000;
}

.btn-primary:hover {
  background-color: #fe1e3d;
  color: #ffffff;
}

.btn-sl-dark {
  color: #000000 !important;
}

.btn-sl-dark:HOVER {
  color: #ffffff !important;
}

.link-hold {
  text-align: right !important;
}

a.linkstyle-a {
  color: #ffffff;
  min-width: auto;
  padding: 0px;
  text-align: center;
  display: inline-block;
}

a:HOVER.linkstyle-a {
  opacity: 0.5;
}

.form .fas {
  font-size: 6px;
}

.form .won, .form .Won {
  color: #4cee41;
}

.form .draw {
  color: #cccccc;
}

.form .lost, .form .loss, .form .Loss {
  color: #b40005;
}

.rugbyleague-leaguetable .table th, .table td {
  padding: 5px;
}
@media (min-width: 576px) {
  .rugbyleague-leaguetable .table th, .table td {
    padding: 0.75rem;
  }
}

.rugbyleague-leaguetable .table th {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .rugbyleague-leaguetable .table th {
    font-size: 10px;
  }
}

.rugbyleague-leaguetable img.logo {
  width: 180px;
}

.ign-news-grid-content p {
  line-height: 120%;
}

.ign-slider h3 {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
@media (min-width: 576px) {
  .ign-slider h3 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .ign-slider h3 {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .ign-slider h3 {
    font-size: 30px;
    font-weight: 900;
  }
}
@media (min-width: 1200px) {
  .ign-slider h3 {
    font-size: 40px;
    font-weight: 900;
  }
}

.ign-slider h3:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

.ign-slider p.sub-text {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .ign-slider p.sub-text {
    font-size: 10px;
  }
}

.ign-slider .btn-primary {
  margin-top: 20px;
}

.ign-slider .slick-prev:before, .ign-slider .slick-next:before {
  display: none;
}
@media (min-width: 768px) {
  .ign-slider .slick-prev:before, .ign-slider .slick-next:before {
    display: block;
  }
}

.slick-dots li.slick-active button:before {
  color: #fe1e3d;
}

.sharethis-inline-share-buttons {
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 100%;
}
@media (min-width: 576px) {
  .hero h2 {
    font-size: 35px !important;
  }
}
@media (min-width: 768px) {
  .hero h2 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .hero h2 {
    font-size: 50px !important;
  }
}
@media (min-width: 1200px) {
  .hero h2 {
    font-size: 60px !important;
  }
}

.hero h2::after {
  content: "";
  background: #0a60a1;
  background: -moz-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fe1e3d), color-stop(100%, #0a60a1));
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  background: -o-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  background: linear-gradient(to left, #fe1e3d 0%, #0a60a1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fe1e3d, endColorstr=#0a60a1);
  display: block;
  height: 3px;
  width: 50%;
  position: relative;
  bottom: 0;
  border-bottom: 0;
}
@media (min-width: 1200px) {
  .hero h2::after {
    width: 20%;
  }
}

.fantasy-sl-table-hold .table th, .fantasy-sl-table-hold .table td {
  border-bottom: rgba(255, 255, 255, 0.2) 1px solid !important;
  border-top: 0px;
}

.fantasy-sl input {
  color: #ffffff;
}

.fantasy-sl .select-wrapper i {
  color: #ffffff;
}

.fantasy-sl .player-name, .fantasy-sl .last-year {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .fantasy-sl .player-name, .fantasy-sl .last-year {
    font-size: 10px;
  }
}

.fantasy-sl .player-score {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .fantasy-sl .player-score {
    font-size: 20px;
  }
}

.man-of-steel .player-name, .man-of-steel .player-score {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .man-of-steel .player-name, .man-of-steel .player-score {
    font-size: 10px;
  }
}

.man-of-steel p.match {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}
@media (min-width: 768px) {
  .man-of-steel p.match {
    font-size: 10px;
  }
}

.man-of-steel p.match:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

.man-of-steel img.mos-logo {
  max-width: 300px;
}

.page-item.active .page-link {
  background-color: #fe1e3d;
  border-color: #fe1e3d;
}

.page-link {
  color: #fe1e3d;
}

/* specific to league table plugin */
.rugbyleague-leaguetable td A:HOVER {
  color: #fe1e3d;
}
.rugbyleague-leaguetable td.position {
  color: #fe1e3d;
}

/* specific to match preview plugin */
.matchpreview.previousform .teambadge {
  max-width: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.matchreport.lineup .pitch .interchange {
  background-image: none;
}

.matchreport.keyperformances .card-title {
  margin-bottom: 0px;
}

.matchreport.keyperformances .card-text {
  margin-top: 7px;
}

.matchreport.lineup img.responsive-lineup {
  max-width: 40px;
  display: inline-block;
}

/* specific to match centre plugin */
.match-centre .fix-res-buttons button.btn-primary {
  background-color: transparent;
  color: #000000;
}

.match-centre .fix-res-buttons button.btn-primary.active {
  background-color: #fe1e3d;
  color: #ffffff;
}

.match-centre .fix-res-buttons button.btn {
  margin-right: 10px;
}

.match-centre .fix-res-buttons button.btn-primary.tables {
  border: 1px solid transparent;
  -moz-border-image: -moz-linear-gradient(right, #fe1e3d 0%, #39a5eb 100%);
  -webkit-border-image: -webkit-linear-gradient(right, #fe1e3d 0%, #39a5eb 100%);
  border-image: linear-gradient(to right, #fe1e3d 0%, #39a5eb 100%);
  border-image-slice: 1;
}

.match-centre .fixture-card .team-name {
  font-size: 14px;
  color: #000000;
  padding: 20px;
  display: none;
}

.match-centre .fixture-card .middle {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fe1e3d;
  padding-top: 40px;
}

.match-centre .fixture-card .fixture-footer {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  padding: 20px;
}

.match-centre .fixture-card .left, .match-centre .fixture-card .right {
  padding-top: 1.5rem;
}

.match-centre .fixture-card .home-score {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 10px;
}
@media (min-width: 576px) {
  .match-centre .fixture-card .home-score {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .match-centre .fixture-card .home-score {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .match-centre .fixture-card .home-score {
    font-size: 30px;
    font-weight: 900;
  }
}
@media (min-width: 1200px) {
  .match-centre .fixture-card .home-score {
    font-size: 40px;
    font-weight: 900;
  }
}

.match-centre .fixture-card .away-score {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-left: 10px;
}
@media (min-width: 576px) {
  .match-centre .fixture-card .away-score {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .match-centre .fixture-card .away-score {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .match-centre .fixture-card .away-score {
    font-size: 30px;
    font-weight: 900;
  }
}
@media (min-width: 1200px) {
  .match-centre .fixture-card .away-score {
    font-size: 40px;
    font-weight: 900;
  }
}

.match-centre .fixture-card .middle span {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .match-centre .fixture-card .middle span {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .match-centre .fixture-card .middle span {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .match-centre .fixture-card .middle span {
    font-size: 30px;
    font-weight: 900;
  }
}
@media (min-width: 1200px) {
  .match-centre .fixture-card .middle span {
    font-size: 40px;
    font-weight: 900;
  }
}

.match-centre .fixture-card .uk-time {
  font-size: 12px !important;
  color: #666;
}

.text-plugin h3 {
  font-size: 19px;
}
@media (min-width: 768px) {
  .text-plugin h3 {
    font-size: 26px;
  }
}

.image-plugin p.card-text {
  margin-bottom: 20px;
}

.image-plugin .btn-primary {
  display: inline-block;
}

.article-sl figure img {
  width: 100%;
}

.article-sl blockquote {
  border-left: 6px solid #f1f1f1;
  padding-left: 30px;
  line-height: 120%;
  font-size: 20px;
  font-weight: 400;
}

.article-sl .article-head-row h1 {
  margin-top: 20px;
}

.article-sl .article-head-row {
  background: #1e1e41;
  background: -moz-linear-gradient(-45deg, #000000 0%, #1e1e41 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #1e1e41));
  background: -webkit-linear-gradient(-45deg, #000000 0%, #1e1e41 100%);
  background: -o-linear-gradient(-45deg, #000000 0%, #1e1e41 100%);
  background: linear-gradient(to -45deg, #000000 0%, #1e1e41 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#000000, endColorstr=#1e1e41);
}

.article-sl .article-head-row h3 {
  color: #ffffff;
  font-size: 22px;
}

.article-sl .article-story-row p {
  margin-bottom: 20px;
}

.article-sl img.lead-image {
  margin: 10px 0px;
}
@media (min-width: 576px) {
  .article-sl img.lead-image {
    margin: 20px 0px;
  }
}
@media (min-width: 768px) {
  .article-sl img.lead-image {
    margin: 30px 0px;
  }
}
@media (min-width: 992px) {
  .article-sl img.lead-image {
    margin: 40px 0px;
  }
}
@media (min-width: 1200px) {
  .article-sl img.lead-image {
    margin: 50px 0px;
  }
}

.article-sl .article-head-row, .article-sl .article-story-row, .article-sl .article-story-row .twitter-tweet, .article-sl figure img, .article-sl blockquote {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 576px) {
  .article-sl .article-head-row, .article-sl .article-story-row, .article-sl .article-story-row .twitter-tweet, .article-sl figure img, .article-sl blockquote {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .article-sl .article-head-row, .article-sl .article-story-row, .article-sl .article-story-row .twitter-tweet, .article-sl figure img, .article-sl blockquote {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .article-sl .article-head-row, .article-sl .article-story-row, .article-sl .article-story-row .twitter-tweet, .article-sl figure img, .article-sl blockquote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .article-sl .article-head-row, .article-sl .article-story-row, .article-sl .article-story-row .twitter-tweet, .article-sl figure img, .article-sl blockquote {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.twitter-tweet {
  margin: 0px auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.instagram-media {
  margin: 0px auto !important;
  padding-top: 50px;
  padding-bottom: 50px;
}

.article-sl .article-sl-related-news {
  background: #f1f1f1;
}

.article-sl .article-story-row h3 {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  display: inline-block;
  height: auto;
  width: auto;
  border: solid 0px #CCC;
  border-bottom: none;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.article-sl .article-story-row h3:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

.news-grid-plugin .card-title, .news-grid-mixed-plugin .card-title {
  margin-bottom: 7px;
}

.news-grid-plugin .btn-primary, .news-grid-mixed-plugin .btn-primary {
  color: #000000;
}

.news-grid-plugin .btn-primary, .news-grid-mixed-plugin A.btn-primary:HOVER {
  color: #ffffff;
}

.news-grid-plugin .video-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px 15px;
  margin: 30px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  z-index: 300;
  border-width: 1px;
  border-style: solid;
  -moz-border-image: -moz-linear-gradient(right, #fe1e3d 0%, #39a5eb 100%);
  -webkit-border-image: -webkit-linear-gradient(right, #fe1e3d 0%, #39a5eb 100%);
  border-image: linear-gradient(to right, #fe1e3d 0%, #39a5eb 100%);
  border-image-slice: 1;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .news-grid-plugin .video-icon {
    font-size: 10px;
  }
}

.news-filters {
  background: #f1f1f1;
  padding-top: 40px;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.news-filters .form-inline {
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
  width: 335px;
}

.news-grid-mixed-plugin {
  background: #f1f1f1;
  padding-bottom: 30px;
}

.news-grid-mixed-plugin .form-group {
  margin-bottom: 0px;
}

.ign-image-standard h3.card-title {
  display: inline-block;
}

.ign-image-standard h3.card-title:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

.ign-news-grid-content .card.main-card-style .card-details, .matchreport .card.main-card-style .card-details {
  min-height: 75px;
  bottom: 0px;
  position: absolute;
  width: 100%;
  padding: 30px;
  background-color: transparent !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%, black 50%, black 50%, black 100%);
}
@media (min-width: 768px) {
  .ign-news-grid-content .card.main-card-style .card-details, .matchreport .card.main-card-style .card-details {
    min-height: 95px;
  }
}

.club-list img.teambadge {
  max-width: 45px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .club-list img.teambadge {
    max-width: 60px;
  }
}

.partners img.partner-item {
  max-width: 100%;
}
@media (min-width: 576px) {
  .partners img.partner-item {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .partners img.partner-item {
    max-width: 90px;
  }
}
@media (min-width: 992px) {
  .partners img.partner-item {
    max-width: 100px;
  }
}
@media (min-width: 1200px) {
  .partners img.partner-item {
    max-width: 110px;
  }
}

.rugby-league-feature-match-slider .home-feature .controls {
  padding-top: 10px;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-feature .controls {
    font-size: 16px;
    padding-top: 10px;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-feature .controls {
    font-size: 28px;
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-feature .controls {
    font-size: 16px;
    padding-top: 20px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-feature .controls {
    font-size: 28px;
    padding-top: 20px;
  }
}

.rugby-league-feature-match-slider .home-feature .controls A span.last-date, .rugby-league-feature-match-slider .home-feature .controls A span.next-date {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  top: 20px;
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-feature .controls A span.last-date, .rugby-league-feature-match-slider .home-feature .controls A span.next-date {
    font-size: 10px;
  }
}

.rugby-league-feature-match-slider .home-feature .controls p.current-date {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-feature .controls p.current-date {
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-feature .controls p.current-date {
    font-size: 9px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-feature .controls p.current-date {
    font-size: 10px;
  }
}

.rugby-league-feature-match-slider p.current-date {
  padding-top: 22px;
}

.rugby-league-feature-match-slider p.home-team, .rugby-league-feature-match-slider p.away-team {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider p.home-team, .rugby-league-feature-match-slider p.away-team {
    font-size: 10px;
  }
}

.rugby-league-feature-match-slider .match-latest {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .match-latest {
    font-size: 16px;
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .match-latest {
    font-size: 28px;
    padding-top: 0px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .match-latest {
    font-size: 24px;
    padding-top: 10px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .match-latest {
    font-size: 28px;
    padding-top: 0px;
  }
}

.rugby-league-feature-match-slider .home-active-panel {
  top: 10px;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-active-panel {
    top: 10px;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-active-panel {
    top: 10px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-active-panel {
    top: 70px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-active-panel {
    top: 80px;
  }
}

@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-feature .main-stories-hold {
    min-height: 67vw;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-feature .main-stories-hold {
    min-height: 386px;
  }
}

.rugby-league-feature-match-slider .home-active-panel .matchreporthome img.teambadge {
  max-width: 45px;
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-active-panel .matchreporthome img.teambadge {
    max-width: 45px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-active-panel .matchreporthome img.teambadge {
    max-width: 45px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-active-panel .matchreporthome img.teambadge {
    max-width: 60px;
  }
}

.rugby-league-feature-match-slider .home-active-panel A.match.one img.teambadge {
  max-width: 148px;
}

.rugby-league-feature-match-slider .home-active-panel A.match {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-active-panel A.match {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-active-panel A.match {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-active-panel A.match {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-active-panel A.match {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.rugby-league-feature-match-slider .fa-4x {
  font-size: 54px;
}

.rugby-league-feature-match-slider .home-feature .main-stories-hold .heading-hold {
  padding-bottom: 20px;
  padding-left: 5vw;
  padding-top: 20px;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-feature .main-stories-hold .heading-hold {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-feature .main-stories-hold .heading-hold {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-feature .main-stories-hold .heading-hold {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-feature .main-stories-hold .heading-hold {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.rugby-league-feature-match-slider p.intro {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider p.intro {
    font-size: 10px;
  }
}

.rugby-league-feature-match-slider .home-active-panel-hold {
  border-top: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-active-panel-hold {
    border-top: 0px;
  }
}

.rugby-league-feature-match-slider .home-feature .heading-hold h2 {
  font-size: 30px;
  padding-top: 10px;
  font-weight: 900;
  line-height: 90%;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-feature .heading-hold h2 {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .rugby-league-feature-match-slider .home-feature .heading-hold h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-feature .heading-hold h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-feature .heading-hold h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-feature .heading-hold h2 {
    width: 35vw;
  }
}

.rugby-league-feature-match-slider .home-feature .slick-dots {
  color: #fe1e3d;
  display: none !important;
}
@media (min-width: 576px) {
  .rugby-league-feature-match-slider .home-feature .slick-dots {
    font-size: 25px;
    display: block !important;
  }
}

.rugby-league-feature-match-slider .home-feature .main-stories-hold .heading-hold {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 30%, black 90%, black 100%);
}

.rugby-league-feature-match-slider .home-active-panel A.match.one {
  padding: 10px 30px;
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-active-panel A.match.one {
    padding: 3vw 30px;
  }
}
@media (min-width: 992px) {
  .rugby-league-feature-match-slider .home-active-panel A.match.one {
    padding: 5vw 30px;
  }
}
@media (min-width: 1200px) {
  .rugby-league-feature-match-slider .home-active-panel A.match.one {
    padding: 100px 30px;
  }
}

.team-profile-squad {
  height: 60vw;
}
@media (min-width: 576px) {
  .team-profile-squad {
    height: 210px;
  }
}
@media (min-width: 768px) {
  .team-profile-squad {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .team-profile-squad {
    height: 240px;
  }
}
@media (min-width: 1200px) {
  .team-profile-squad {
    height: 23vw;
    max-height: 380px;
  }
}

.team-profile.team-form .result-txt {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .team-profile.team-form .result-txt {
    font-size: 10px;
  }
}

.team-profile.team-form .date {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .team-profile.team-form .date {
    font-size: 10px;
  }
}

.team-profile.team-form i.fa-circle {
  font-size: 8px;
}

.team-profile.team-form .teambadge {
  max-width: 50px;
}
@media (min-width: 768px) {
  .team-profile.team-form .teambadge {
    max-width: 60px;
  }
}

.team-profile-squad .slick-prev, .team-profile-squad .slick-next {
  top: -44px;
}

.team-profile-squad .slick-prev:before, .team-profile-squad .slick-next:before {
  font-size: 24px;
}

.team-profile-squad .slick-prev {
  left: 6px;
}

.team-profile-squad .slick-next {
  right: 6px;
}

.team-profile-squad .slick-prev:before, .team-profile-squad .slick-next:before {
  color: #fe1e3d;
}

.team-profile-squad ul.slick-dots li.slick-active button:before {
  color: #fe1e3d;
}

.player.header {
  min-height: 363px;
}
@media (min-width: 576px) {
  .player.header {
    min-height: 297px;
  }
}
@media (min-width: 768px) {
  .player.header {
    min-height: 321px;
  }
}
@media (min-width: 992px) {
  .player.header {
    min-height: 402px;
  }
}

.player.header img.club-badge-sm {
  width: 60px;
  margin-left: 30px;
  margin-bottom: 10px;
}

.player.header .action-image {
  min-height: 363px;
}
@media (min-width: 576px) {
  .player.header .action-image {
    min-height: 297px;
  }
}
@media (min-width: 768px) {
  .player.header .action-image {
    min-height: 321px;
  }
}
@media (min-width: 992px) {
  .player.header .action-image {
    min-height: 402px;
  }
}

.player.header .player-hold {
  min-height: 363px;
}
@media (min-width: 576px) {
  .player.header .player-hold {
    min-height: 297px;
  }
}
@media (min-width: 768px) {
  .player.header .player-hold {
    min-height: 321px;
  }
}
@media (min-width: 1200px) {
  .player.header .player-hold {
    min-height: 402px;
  }
}

.video-header {
  max-height: 400px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .video-header {
    max-height: 600px;
  }
}

.video-header .feature-headline {
  height: 100%;
  position: absolute;
  top: 0px;
  padding-left: 50px;
  z-index: 10;
  width: 100%;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.video-header .feature-headline h2 {
  font-size: 30px;
  padding-top: 10px;
  font-weight: 900;
  line-height: 90%;
}
@media (min-width: 576px) {
  .video-header .feature-headline h2 {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .video-header .feature-headline h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .video-header .feature-headline h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .video-header .feature-headline h2 {
    font-size: 50px;
  }
}

.video-header .feature-headline h3 {
  margin-bottom: 20px;
}

.video-header .feature-links .video-holder {
  height: 33vw;
  overflow: hidden;
}

.video-header .feature-links .video-holder video {
  position: relative;
  top: -100px;
}

.video-header .video-bg {
  z-index: 1;
  opacity: 0.4;
  height: auto;
  width: 100%;
}

.club-shop {
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  text-align: center;
  padding: 30px 0px;
}

.club-shop h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .club-shop h3 {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .club-shop h3 {
    font-size: 30px;
  }
}

.club-shop h3 span {
  font-weight: 300;
}

.player-profile-career-stats .stat-label {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .player-profile-career-stats .stat-label {
    font-size: 10px;
  }
}

.player-profile-career-stats .stat-total {
  font-size: 30px;
  padding-top: 10px;
  font-weight: 900;
  line-height: 90%;
}
@media (min-width: 576px) {
  .player-profile-career-stats .stat-total {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .player-profile-career-stats .stat-total {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .player-profile-career-stats .stat-total {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .player-profile-career-stats .stat-total {
    font-size: 50px;
  }
}

.player-profile-career-stats .stat-note {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .player-profile-career-stats .stat-note {
    font-size: 10px;
  }
}

.headline-player-opta-stats .player-name, .headline-player-opta-stats .player-score {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .headline-player-opta-stats .player-name, .headline-player-opta-stats .player-score {
    font-size: 10px;
  }
}

.headline-player-opta-stats p.title {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}
@media (min-width: 768px) {
  .headline-player-opta-stats p.title {
    font-size: 10px;
  }
}

.headline-player-opta-stats p.title:after {
  content: "";
  background: -webkit-linear-gradient(left, #fe1e3d 0%, #0a60a1 100%);
  display: block;
  margin-top: 3px;
  height: 3px;
  position: relative;
}

.team-match-opta-stats th, .team-match-opta-stats td, .player-match-opta-stats th, .player-match-opta-stats td {
  text-align: center;
  vertical-align: middle;
  border-top: 0px;
  border-bottom: 0px !important;
}

.headline-team-opta-stats .card-title {
  margin-bottom: 0px;
}

.headline-team-opta-stats .card-text {
  margin-top: 7px;
}

.team-match-opta-stats th {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .team-match-opta-stats th {
    font-size: 10px;
  }
}

.team-match-opta-stats th.active a, .player-match-opta-stats th.active a {
  margin-left: auto;
  margin-right: auto;
}

.team-match-opta-stats .match-stats-key P, .player-match-opta-stats .match-stats-key P {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .team-match-opta-stats .match-stats-key P, .player-match-opta-stats .match-stats-key P {
    font-size: 10px;
  }
}

.team-match-opta-stats img.opta, .player-match-opta-stats img.opta {
  margin-top: 20px;
}

.team-match-opta-stats A, .player-match-opta-stats A {
  color: #ffffff;
}

.team-match-opta-stats .select-wrapper input.select-dropdown, .player-match-opta-stats .select-wrapper input.select-dropdown {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .team-match-opta-stats .select-wrapper input.select-dropdown, .player-match-opta-stats .select-wrapper input.select-dropdown {
    font-size: 10px;
  }
}

.stat-graphs .table th, .stat-graphs td {
  text-align: center;
  vertical-align: middle;
  border-top: 0px;
  border-bottom: 0px !important;
}

.stat-graphs .table th {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .stat-graphs .table th {
    font-size: 10px;
  }
}

.stat-graphs .stats-key P {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .stat-graphs .stats-key P {
    font-size: 10px;
  }
}

.stat-graphs img.opta {
  margin-top: 20px;
}

.dropdown-content li > a, .dropdown-content li > span {
  color: #fe1e3d;
}

/* =============== MEDIA QUERIES ================ */
@media (min-width: 768px) {
  .sl-lbu {
    font-size: 40px;
  }

  .pt-5 {
    padding-top: 2rem !important;
  }

  .pb-5 {
    padding-bottom: 2rem !important;
  }

  .match-centre .fixture-card .team-name {
    display: block;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 1em;
  }

  header img.logo {
    width: 285px;
    margin: 12px;
    margin-left: 30px;
  }

  .matchreport.matchreportheader img.teambadge {
    max-width: 150px;
  }

  .btn-primary {
    font-size: 10px;
  }

  h2.row-title {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  a.linkstyle-a {
    min-width: 100px;
  }

  .sl-ssu {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .sl-lbu {
    font-size: 60px;
  }

  .sl-mbu {
    font-size: 20px;
  }

  .leaguetable td.position {
    font-size: 25px;
  }

  .home-active-panel {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .home-feature .main-stories-hold .heading-hold {
    padding-left: 50px;
    padding-bottom: 50px;
  }

  .leaguetable img.logo {
    width: 215px;
  }

  h2.row-title {
    margin-bottom: 40px;
  }

  .pt-5 {
    padding-top: 3rem !important;
  }

  .pb-5 {
    padding-bottom: 3rem !important;
  }

  .sl-smaller {
    font-size: 14px;
  }
}

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