/* ORGANISM - PLAYER INDEX */

.team__player-block {
    width: 100%;
    float: left;
    position: relative;
}

/** MOLECULE - PLAYER BLOCK **/

.team__player {
    position: relative;
}

.team__player-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
}

.team__player-inner {
    display: flex;
    align-items: center;
    border-bottom: 5px solid #b40808;
    border-radius: 5px 5px 0 0;
    height: 100%;
}

.team__player-headshot {
    width: 80px;
    position: relative;
}

.team__player-headshot .team__player-details {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 100%;
    padding: 0;
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.7) 80%
    );
    flex-wrap: wrap;
    align-content: flex-end;
    display: none;
}

.team__player-headshot .team__player-details > * {
    width: 100%;
    margin: 0 0 0.8rem;
}

.team__player-headshot--alt {
    display: none;
}

.team__player-details {
    width: calc(100% - 80px);
    padding-left: 1.5rem;
}

.team__player-position {
    font-size: 0;
    display: flex;
    align-items: center;
}

.team__player-details--sp_player .team__player-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.1rem;
    text-align: center;
    line-height: 1rem;
    background: rgb(85, 154, 235);
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 100%;
    background: rgb(178, 43, 46);
    background: -moz-linear-gradient(
        top,
        rgba(178, 43, 46, 1) 0%,
        rgba(45, 8, 8, 1) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(178, 43, 46, 1) 0%,
        rgba(45, 8, 8, 1) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(178, 43, 46, 1) 0%,
        rgba(45, 8, 8, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b40808", endColorstr="#2d0808",GradientType=0 );
}

.team__player-details--sp_player .team__player-label::before {
    content: "";
    border-radius: 100%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-51%, -51%);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 1;
}

.team__player-details--sp_player .team__player-label span {
    position: relative;
    z-index: 5;
    margin-top: 0.1rem;
}

.team__player-page {
    display: none;
    width: 100%;
    min-height: 30px;
    margin: -0.3rem 0 1.7rem;
    max-height: 30px;
}

[data-type="staff"] .team__player-page {
    min-height: 100px;
}

.team__player-button {
    display: flex;
    justify-content: center;
}

.team__player-button .button {
    padding: 0 1.5rem;
    line-height: 30px;
    font-size: 0.85rem;
}

.single-sp_player .sub-menu__wrapper {
    margin-top: 50px;
}

.team__player--headshots .team__player-captain {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.team__player--headshots .team__player-captain p { 
    margin: 0;
    padding: 2px;
    font-size: 12px;
}

/* (landscape phones for a 360 - 640px) */
@media (min-width: 40em) {
    .team__player-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .team__title {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .team__player {
        flex: 0 1 49%;
        max-width: 49%;
    }
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .team__player-block:after {
        content: "";
        flex: 0 1 24%;
    }

    .team__player {
        flex: 0 1 23%;
        max-width: 23%;
        margin-bottom: 1.5rem;
    }

    .team__player-inner {
        align-items: baseline;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
        padding: 0.8rem 0.8rem 0;
        border: 0;
        border-radius: 10px;
    }

    [data-type="nets"] .team__player-inner {
        display: block;
    }

    .team__player-inner:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 60%;
        height: 5px;
        background: #b40808;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
    }

    .team__player-headshot,
    .team__player-details {
        width: 100%;
    }

    .team__player-headshot img {
        max-width: 100%;
    }

    .team__player-details {
        padding: 0 0 1rem;
        min-height: 80px;
    }

    [data-type="nets"] .team__player-details {
        padding: 0.5rem 0 1rem;
    }

    [data-type="staff"] .team__player-details {
        min-height: 100px;
    }

    .team__player-details h2 {
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.5rem;
    }

    .team__player-details--staff p {
        text-align: center;
        font-size: 0.9rem;
    }

    .team__player-position,
    .team__player-role {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0.5rem 0;
        text-align: center;
    }

    .team__player--headshots .team__player-captain {
        bottom: 2rem;
    }

    .team__player--headshots .team__player-captain p { 
        padding: 5px 2px;
        font-size: 16px;
    }
}

/* (laptop, 1232px and up) */
@media (min-width: 77em) {
    .team__player-block {
        margin-top: 3rem;
    }

    .team__player-headshot {
        max-height: 290px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .team__player-headshot--alt {
        display: block;
    }

    .team__player--headshots {
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: all 0.3s linear;
        position: relative;
    }

    .team__player-inner[data-flip="true"]:hover .team__player--headshots {
        transform: rotateY(180deg);
    }

    .team__player-inner[data-flip="true"]:hover .team__player--headshots .team__player-captain {
        transform: rotateY(180deg);
    }

    .team__player-headshot .team__player-details {
        display: flex;
        transition: all 0.2s linear;
        z-index: 20;
    }

    .team__player-role {
        font-size: 0.9rem;
    }

    .team__player-headshot--flip {
        backface-visibility: hidden;
    }

    .team__player-headshot--flip.team__player-headshot--alt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .team__player-headshot--flip.team__player-headshot--alt:not(:empty) {
        display: block;
        transform: rotateY(180deg);
    }

    .team__player-page {
        margin: -0.8rem 0 1.7rem;
    }

    .team__player {
        flex: 0 1 18%;
        max-width: 18%;
    }
}

/* ORGANISM - PLAYER PAGE */

.sub-menu__wrapper[data-type="sp_player"]
    .sub-menu__breadcrumb
    li:nth-child(2) {
    margin-left: .7rem;
}

.player__header {
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    height: 50vh;
}

.player__header::after {
    content: '';
    background: url(assets/img/overlay.png) center/100% no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    left: -40rem;
    top: 0;
    z-index: 1;
}

.player__header--image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.player__header--image .celebration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    right: 0;
    object-position: 50% 10%;
}

.player-header__name-position {
    padding: 3.5rem 1rem 0;
    position: relative;
    z-index: 2;
}

.player-header__name-position .team__player-captain p { 
    width: fit-content;
}

.player__header-socials {
    position: absolute;
    bottom: 1rem;
    z-index: 2;
}

.player__header-socials ul {
    list-style: none;
    display: flex;
    padding-inline-start: 0;
}

.player__header-socials ul li {
    margin-right: 1.25rem;
}

.player__header-socials ul li a {
    color: #fff;
    font-size: 1.625rem;
}

.player__header .max__body-width {
    padding-left: 2.5rem;
}
.player__header-socials ul li a:hover {
    text-decoration: none;
}

/*** ATOM - PLAYER SELECT **/

.player__select {
    float: none;
    width: 250px;
    position: absolute;
    z-index: 2;
    margin-left: 1rem;
    top: 55%;
    transform: translateY(-55%);
}

.player__select select {
    width: 100%;
    padding: 0 3rem 0 1rem;
    float: none;
    font-size: 0.9rem;
    border: 2px solid #fff;
    background: transparent url(assets/img/dropdown-bg.png) 95% center / 13px
        8px no-repeat;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-transform: none;
    cursor: pointer;
}

.player__select select option {
    color: #000;
}

.player__name-position--positions span:after {
    content: ",";
}

.player__name-position--positions span:last-of-type:after {
    display: none;
}

.player__pagination-left,
.player__pagination-right {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}

.player__pagination-left i,
.player__pagination-right i {
    font-size: 1.4rem;
}

.player__pagination-left {
    left: 0;
}

.player__pagination-right {
    right: 0;
}

.player__pagination-title .pagination__arrow {
    padding: .5rem .8rem;
    transition: all .3s ease-in-out;
}

.player__pagination-title a:hover .pagination__arrow {
    background: #D3CEC4;
}

@media (min-width: 48em) {
    .player__select {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        padding: 3rem 1rem;
        transform: unset;
        width: 400px;
        float: right;
        margin: 0;
        top: unset;
    }

    .player__name-position--positions {
        margin-top: 2rem;
    }

    .player__header-socials ul li a {
        color: #fff;
        font-size: 2.6rem
    }
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .player__header .max__body-width {
        padding-left: 5rem;
    }
    
    .player__header--image .celebration-img {
        object-position: right;
        object-fit: contain;
        position: relative;
        right: -10rem;
    }

    .player__header::after {
        left: -12rem;
        background-position: 110%;
    }

    .player__name-position--name h1 {
        font-size: 4.063rem;
    }

    .player__select label {
        margin: 0 1rem 0 0;
    }

    .player__select select {
        padding: 0 2.5rem 0 1rem;
        width: 250px;
    }

    .player__pagination-title .pagination__arrow {
        padding: .8rem 1.2rem;
    }

    .player__select {
        margin: 2rem 1rem;
        width: 100%;
    }
}

@media (min-width: 77em) {
    .player__header--image .celebration-img {
        right: 0;
    }
}

/** MOLECULE - PLAYER DETAILS **/

.sub-menu__wrapper[data-type="sp_official"]
    .sub-menu__breadcrumb-inner
    li:last-of-type {
    padding-left: 0.5rem;
}

.player__top,
.player__biog {
    position: relative;
    width: 100%;
    float: left;
}

.player__top:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 145px);
    background: #f7f7f7;
}

.player__details {
    width: 270px;
    margin: 0 auto 3rem;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.player__details .player__details-positions span:last-of-type:after {
    display: none;
}

.player__biog a:hover {
    color: #fff;
}

.player__biog--staff {
    padding-bottom: 3rem;
}

.player__headshot {
    max-width: 270px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.player__details .team__profile {
    display: none;
}

.player__details h1 {
    line-height: 1.6rem;
}

/** MOLECULE - PLAYER PROFILE **/

.player__profile-row {
    display: flex;
    width: 100%;
    align-items: center;
}

.player__profile-row i {
    font-size: 1.375rem;
    width: 20%;
}

.player__profile-row .player__profile-details:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #b40808;
}

.player__profile-details {
    position: relative;
    padding-left: 1rem;
}

.player__profile-row .player__profile-value {
    max-width: 100%;
}

[data-count="2"] .player__profile-value span::after {
    content: ",";
}

[data-count="2"] .player__profile-value span:last-of-type::after {
    content: "";
}

@media (min-width: 48em) {
    .player__header {
        position: relative;
        padding-bottom: 0;
        height: 540px;
    }

    .player-header__name-position {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 2rem 1rem;
    }

    .player__name-position--positions span {
        font-size: 1.563rem;
    }

    .player__name-position--name h1 {
        font-size: 4.063rem;
    }
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .player {
        background: transparent;
    }

    .player__top {
        display: flex;
        position: relative;
        z-index: 5;
        background: #fff;
        width: calc(100% - 2rem);
        margin: 0 auto;
        float: none;
        -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
    }

    .player__top:before {
        display: none;
    }

    .player__headshot {
        margin: 0;
    }

    .player__details {
        align-self: center;
        width: calc(100% - 270px);
        padding: 2rem;
        height: auto;
        background: transparent;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        margin: 0 auto;
    }

    .player__details > * {
        margin: 0;
    }

    .player__details .team__profile {
        display: block;
        max-width: 100%;
        padding: 0.5rem 0;
        background: transparent;
        color: #fff;
    }

    .player__details-profile {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 1.5rem 0 0;
    }

    .player__profile-row {
        font-size: 1rem;
        margin: 0 1rem 2.5rem 0;
        width: calc(33.33% - 1rem);
    }

    .player__profile-title {
        font-size: .9rem;
    }
}

/* (laptop, 1232px and up) */
@media (min-width: 77em) {
    .player__top {
        max-width: 1200px;
    }

    .player__details h1,
    .player__details h1 span {
        line-height: 2.4rem;
    }

    .player__details-profile {
        margin: 2.5rem 0 0;
    }
}

/* (laptop, 1500px and up) */
@media (min-width: 93.75em) {
    .sub-menu__wrapper[data-type="sp_player"],
    .sub-menu__wrapper[data-type="sp_official"] {
        width: 100%;
    }

    .sub-menu__wrapper[data-type="sp_player"] .sub-menu__main,
    .sub-menu__wrapper[data-type="sp_official"] .sub-menu__main {
        width: 1400px;
        margin: 0 auto;
        float: none;
        position: relative;
        display: block;
    }
}

/** MOLECULE - PLAYER BIOGRAPHY **/

.player__biog--box {
    margin: 0 auto;
    max-width: 945px;
    border-bottom: 3px solid #b40808;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.player__biog--box p {
    line-height: 1.75rem;
}

.player__content-toggle {
    margin: 0 1rem 2rem;
    max-width: 945px;
}

/** MOLECULE - PLAYER CONTENT TOGGLE **/

.player__content-toggle .tab {
    width: 50%;
    text-align: center;
    background: none;
    color: #b40808;
    border: solid 2px #b40808;
}

.player__content-toggle .tab.tab-nav-active {
    background: #b40808;
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .player__biog .team__profile {
        display: none;
    }

    .player__biog {
        padding: 3rem 1rem 2rem;
    }

    .player__biog--staff {
        padding: 4rem 1rem 7rem;
    }

    .player__biog h2 {
        font-size: 2rem;
        line-height: 2rem;
        margin: 1rem 0 2rem;
    }

    .player__content-toggle {
        margin: 3rem auto 0;
    }
}

/** MOLECULE - PLAYER NEWS **/

.player__news {
    position: relative;
    width: 100%;
}

/** MOLECULE - PLAYER STATISTICS **/

.player__statistics {
    width: 100%;
    position: relative;
}

.player__stats--block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.player__stat--block {
    flex: 0 1 100%;
    padding-top: 1rem;
    margin: 0.5rem 0 0 0;
}

.player__statistics .tab-navigation--stats {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-stats__contents {
    overflow: hidden;
}

/* Achievements */
.player-achievements__inner-container {
    position: relative;
}

.player-achievements__lists .owl-dots .owl-dot span {
    width: 4rem;
    margin: 0;
    height: 6px;
    background: #EFEFEF;
    border-radius: 0;
}

.player-achievements__lists .owl-dots .owl-dot:first-of-type span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.player-achievements__lists .owl-dots .owl-dot:last-of-type span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #b40808;
}

.player-achievements__lists .owl-prev span, 
.player-achievements__lists .owl-next span,
.player-achievements__lists .owl-prev:hover span, 
.player-achievements__lists .owl-next:hover span {
    color: #b40808;
    font-size: 2.5rem;
}

.player-achievements__lists .owl-prev.disabled span, 
.player-achievements__lists .owl-next.disabled span {
    color: #efefef;
    opacity: 1;
}

.player-achievements__lists .owl-prev:hover, 
.player-achievements__lists .owl-next:hover {
    background: none !important;
}

.player-achievements__lists .owl-prev {
    position: absolute;
    left: 0;
    bottom: 0;
    justify-content: flex-start !important;
}

.player-achievements__lists .owl-next {
    position: absolute;
    right: 0;
    bottom: 0;
    justify-content: flex-end !important;
}

.player-achievements__lists .owl-stage-outer {
    margin-bottom: 4rem;
}

.player-achievements__lists .owl-nav {
    position: absolute;
    width: 100%;
    margin: 0;
}

.player-achievements__lists .owl-dots { 
    margin-top: -1.2rem;
    padding-bottom: 1rem;
}

.player-achievements__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 2px #EFEFEF;
    padding: .5rem 0;
    margin-right: 1rem;
}

.player-achievements {
    margin: 0 1rem;
    overflow: hidden;
    width: 100%;
}

/* (landscape tablet, 768px and up) */
@media (min-width: 48em) {
    .player__stat--block {
        flex: 0 1 33%;
        margin-top: 0.25rem;
    }
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .player__statistics {
        padding: 3rem 1rem 3rem;
    }

    .player__stat--block {
        flex: 0 1 24%;
        margin-top: 1rem;
    }

    .player-achievements.my-3 {
        margin: 0;
    }
}

/* (laptop, 1232px and up) */
@media (min-width: 77em) {
}

/** MOLECULE - STATS TABLE **/

.player__statistics .sp-table-caption {
    display: none;
}

.sp-table-wrapper {
    width: 100%;
    min-height: 0.01%;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.player__statistics table {
    border: 0;
    background: #fff;
}

.player__statistics table > thead > tr > th {
    background: #262626;
    color: #fff;
    border-top: 0;
    text-align: center;
}

.player__statistics table td {
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #e0e0e0;
    min-width: 50px;
    text-align: center;
}

.player__statistics table .data-team {
    min-width: 180px;
    text-align: left;
}

.player__statistics table .data-team a {
    color: #373737;
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .player__statistics .sp-table-wrapper {
        overflow: hidden;
    }
}

/** MOLECULE - PLAYER TWEETS **/

.player__tweets {
    position: relative;
    width: 100%;
}

.player__tweets--profile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player__tweets--profile-photo img {
    border-radius: 50%;
    width: 75px;
    height: 75px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.player__social-box .icon-twitter {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}

.player__social-box {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-bottom: 3px solid #b40808;
}

.player__social-username {
    display: flex;
    align-items: center;
    position: relative;
}

.player__social-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.player__social-username figure {
    overflow: hidden;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

.player__twitter--profilelink {
    width: 100%;
}

/* (landscape phones for a 360 - 640px) */
@media (min-width: 40em) {
    .player__twitter {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .player__social-box {
        flex: 0 1 49%;
    }
}

/* (landscape tablet, 1000px and up) */
@media (min-width: 62.5em) {
    .player__social-box {
        flex: 0 1 24%;
    }

    .player__twitter--profilelink a:hover {
        color: #b40808;
        background: #fff;
        text-decoration: none;
    }
}

/* ORGANISM - PLAYER STATISTICS */

.sp-player-list .data-name .player-photo {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 0.5rem 0 0;
    border-radius: 100%;
    overflow: hidden;
}

.sp-player-list .data-name.has-photo a {
    display: flex;
    align-items: center;
}

.sp-player-list .data-name .player-flag {
    margin-right: 0.5rem;
}

.sp-player-list td,
.sp-player-list th {
    text-align: center;
}

.sp-player-list .data-name {
    text-align: left;
}

/* ORGANISM - HOME FIXTURES */

@keyframes fade-in-from-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: 0;
    }
}

@keyframes fade-in-from-bottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: 0;
    }
}

.fixtures-slide__loader {
    width: 40px;
    animation: fade-in-from-bottom;
    animation-duration: .2s;
}

.fixtures-slide__fixtures-container {
    width: 100%;
    overflow-x: auto;
}

.fixtures-slide__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fade-in-from-left;
    animation-duration: .2s;
}

.fixtures-slide__title a {
    font-size: 12px;
}

.fixtures-slide__title a:hover {
    color: #fff;
}

.fixtures-slide__fixtures {
    display: inline-flex;
    margin: 0 -.5rem;
    animation: fade-in-from-bottom;
    animation-duration: .2s;
}

.fixtures-slide__fixture {
    min-width: 240px;
    max-width: 240px;
    margin: 0 .5rem;
    position: relative;
    transition: .2s;
}

.fixtures-slide__fixture--fixture {
    background: #515151;
}

.fixtures-slide__fixture:hover {
    background: #616161;
}

.fixtures-slide__fixture,
.fixtures-slide__teams {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fixtures-slide__teams {
    min-height: 50px;
    margin-bottom: 1rem;
}

.fixtures-slide__team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.fixtures-slide__logo {
    min-width: 30px;
    max-width: 30px;
    max-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixtures-slide__logo img {
    max-height: 20px;
}

.fixtures-slide__team-name {
    flex: 1;
    margin: 0 1rem;
    font-size: 12px;
    line-height: 1.05rem;
}

.fixtures-slide__team--teamA {
    margin-bottom: .25rem;
}

.fixtures-slide__score {
    width: 24px;
    font-weight: 700;
}

.fixtures-slide__details {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1rem;
    width: 100%;
}

.fixtures-slide__broadcasters {
    display: flex;
    align-items: center;
    width: 100%;
    margin: .5rem -.35rem 0;
}

.fixtures-slide__broadcasters img {
    width: calc(100% / 3 - 1.5rem);
    margin: 0 .35rem;
}

.fixtures-slide__fixtures-container {
    scrollbar-width: auto;
    scrollbar-color: #646464 #fff;
}

.fixtures-slide__fixtures-container::-webkit-scrollbar {
    height: 8px;
}

.fixtures-slide__fixtures-container::-webkit-scrollbar-track {
    background: #ffffff;
}

.fixtures-slide__fixtures-container::-webkit-scrollbar-thumb {
    background-color: #646464;
    border-radius: 10px;
    border: 0px solid #ffffff;
}

.fixtures-slide__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (min-width: 48em) {

    .fixtures-slide__title a {
        font-size: 14px;
    }

    .fixtures-slide__fixtures {
        margin: 0 -.75rem;
    }


    .fixtures-slide__fixture {
        min-width: 260px;
        max-width: 260px;
        margin: 0 .75rem;
    }

    .fixtures-slide__team-name {
        font-size: 13px;
    }


}

@media (min-width: 62.5em) {

    .fixtures-slide__content {
        padding: 1rem 1.5rem;
    }

    .fixtures-slide__fixtures {
        margin: 0 -1rem;
    }


    .fixtures-slide__fixture {
        min-width: 300px;
        max-width: 300px;
        margin: 0 1rem;
    }

    .fixtures-slide__team {
        min-height: 35px;
    }

    .fixtures-slide__team-name {
        font-size: 14px;
    }

    .fixtures-slide__score {
        width: 32px;
        font-size: 26px;
    }

    .fixtures-slide__broadcasters img {
        width: calc(100% / 3 - 2rem);
    }
}
