.atswins-home-img-container {
    height: 350px;
    background-color: #333;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.atswins-home-image-container {
    height: 350px;
    overflow-clip-margin: content-box;
    overflow-y: clip;
}

.atswins-home-img-container .atswins-home-header-container {
    width: 60vw;
    text-align: center;
}

.atswins-home-img-container .atswins-home-header-container .atswins-call-to-action-buttons-container {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
}

.atswins-home-img-container .atswins-home-header-container .atswins-call-to-action-buttons-container a {
    width: 200px;
    padding: 7px;
}

.atswins-home-img-container .atswins-home-header-container p.atswins-home-header {
    color: #eeeeee;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}

@media only screen and (max-width: 1200px) {
    .atswins-home-img-container .atswins-home-header-container .atswins-call-to-action-buttons-container {
        flex-direction: column;
        row-gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .atswins-home-img-container .atswins-home-header-container {
        width: 95%;
        position: absolute;
        z-index: 1;
        top: -50;
        bottom: -50;
        margin-left: 2.5%;
    }

    .atswins-home-img-container .atswins-home-header-container .atswins-call-to-action-buttons-container a {
        width: 270px;
    }
}

.atswins-home-container-super-header {
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover;

    .atswins-banners,
    .atswins-home-img-container {
        background-color: transparent;
    }
}

.atswins-league-performance-container .atswins-performance-container {
    width: 100%;
    padding: 10px 0;
    display: grid;
    row-gap: 10px;
    column-gap: 10px;
    grid-template-columns: repeat(3, 1fr);

    .atswins-projection-performance-card {
        padding: 15px;
        border-radius: 7px;
        background-color: var(--darkened-bg);
        box-shadow: 0 1px 1px 1px var(--border-color);

        .atswins-card-loader {
            display: flex; 
            align-items: center; 
            justify-content: center; 
            height: 100px;

            .cards-loading {
                width: 2rem;
                height: 2rem;
                margin: auto;
                border-radius: 100%;
                animation: spin 1s infinite linear;
                border: 2px solid var(--primary-loader-bg);
            }
        }

        .atswins-projection-performance-card__header {
            padding: 2px;
            text-align: center;
            color: white;
            background-color: #07b178;
            border-radius: 7px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .atswins-projection-performance-card__info {
            font-weight: 400;
            padding: 7px;
            margin-bottom: 10px;
        }

        .btn {
            width: 100%;
        }
    }    
}

@media only screen and (max-width: 768px) {
    .atswins-home-image-container {
        height: 450px;
    }

    .atswins-home-img-container .atswins-home-header-container p.atswins-home-header {
        font-size: 25px;
        line-height: 25px;
    }

    .atswins-home-container .atswins-league-performance-container .atswins-performance-container {
        grid-template-columns: 1fr;
    }
}

.carousel {
    span.fa-star.checked {
        color: orange;
    }

    .carousel-arrow {
        top: 40%;
        width: 48px;
        border: none;
        font-size: 3rem;
        display: flex;
        position: absolute;
        justify-content: center;
        margin-block: auto;
        height: fit-content;
        color: var(--body-fg);
        background-color: transparent;
        padding: 0;
        cursor: pointer;
        opacity: 0.5;
        transition: opacity 100ms;
    }

    .carousel-arrow:hover,
    .carousel-arrow:focus {
        opacity: 1;
    }

    .carousel-arrow--prev {
        left: 0;
    }

    .carousel-arrow--next {
        right: 0;
    }

    .carousel-indicators {
        color: var(--body-fg);
    }
}

.atswins-home-container .atswins-home-games-table {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border-color); 

    td {
        a {
            color: var(--body-fg);
        }
    }

    tr.free-prediction__row {
        td {
            background-color: #e4e49a;
        }

        td, td a {
            color: #333;
        }
    }
}


.latest-blog-articles-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    column-gap: 10px;
    row-gap: 10px;

    .latest-blog-articles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 10px;
        row-gap: 10px;
    }
    
    .article-card-info__time--clock:before {
        width: 12px;
        height: 12px;
        content: "";
        display: block;
        margin-right: .375rem;
        background-position: 50%;
        background-repeat: no-repeat;
        filter: brightness(0) saturate(100%) invert(24%) sepia(0) saturate(1506%) hue-rotate(241deg) brightness(93%) contrast(100%);
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 3v3l2 1m3-1a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z' stroke='currentColor' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
    
    .article-card-info__footer {
        color: var(--body-quiet-color);
    }
    
    .article-card-info__time {
        display: flex;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .latest-blog-articles-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .latest-blog-articles-container .latest-blog-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 576px) {
    .latest-blog-articles-container .latest-blog-articles {
        grid-template-columns: repeat(1, 1fr);
    }
}

.atswins-news-content {
    min-height: 100%;
    position: relative;

    .atswins-article-card-main,
    .atswins-article-card-main__image-container {
        margin-bottom: 20px;
        position: relative;
    }

    .atswins-article-card-main__image {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }

    .atswins-article-card-main__badges-container {
        bottom: -10px;
        pointer-events: none;
        position: absolute;
    }

    .atswins-article-card-main__headline {
        display: block;
        font-weight: 700;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-decoration: none;
        font-size: 22px;
        margin-bottom: 10px;
        color: var(--body-loud-color);
    }

    .atswins-article-card-main__headline:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        content: "";
        position: absolute;
    }

    .atswins-article-card-main__headline:hover .atswins-article-card-main__headline-hover-inner,
    .atswins-article-card-horizontal__headline:hover .atswins-article-card-horizontal__headline-hover-inner {
        background-size: 100% 100%;
        color: var(--body-loud-color);
    }

    .atswins-article-card-main__headline-hover-inner {
        background-image: linear-gradient(0deg, #BC2848, #c43856 15%, transparent 0, transparent);
        background-repeat: no-repeat;
        background-size: 0 100%;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        transition: background-size .2s;
        width: 100%;
    }

    .atswins-article-card-main__description {
        font-size: 14px;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin-bottom: 10px;
        color: var(--body-quiet-color);
    }

    .atswins-article-card-horizontal {
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 20px;
        position: relative;
    }

    .atswins-article-card-horizontal__image {
        display: block;
        margin-right: 20px;
        width: 100%;
        width: 95px;
    }

    @supports ((-o-object-fit:cover) or (object-fit:cover)) {
        .atswins-article-card-horizontal__image {
            height: 76px;
            -o-object-fit: cover;
            object-fit: cover;
        }
    }

    .atswins-article-card-horizontal__headline {
        display: block;
        font-size: inherit;
        font-weight: 700;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-decoration: none;
        color: var(--body-loud-color);
    }

    .atswins-article-card-horizontal__headline:before {
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }

    .atswins-article-card-horizontal__headline {
        color: var(--body-loud-color);
        font-size: 15px;
        margin-bottom: 5px;
    }

    .atswins-article-card-horizontal__headline-hover-inner {
        background-image: linear-gradient(0deg, #BC2848, #c43856 15%, transparent 0, transparent);
        background-repeat: no-repeat;
        background-size: 0 100%;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        width: 100%;
        transition: background-size .2s;
    }

    .atswins-article-card-horizontal__description {
        color: var(--body-quiet-color);
        font-size: 14px;
    }

    .atswins-hero-section {
        box-sizing: border-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 13px;
        overflow: hidden;
        padding: 0 13px;
        width: 100% !important;
    }

    @media screen and (min-width:570px) {
        .atswins-hero-section {
            -ms-flex-direction: row;
            flex-direction: row;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }
    }

    .atswins-hero-section-column:first-of-type,
    .atswins-hero-section-column:nth-of-type(3) {
        margin-top: 20px;
    }

    .atswins-hero-section-column:nth-of-type(3) {
        -ms-flex-order: 3;
        order: 3;
    }

    @media screen and (min-width:570px) and (max-width:1020px) {

        .atswins-hero-section-column:first-of-type,
        .atswins-hero-section-column:nth-of-type(3) {
            -ms-flex-order: 0;
            order: 0;
            width: calc(50% - 10px);
        }

        .atswins-hero-section-column:first-of-type {
            margin-right: 20px;
        }

        .atswins-hero-section-column:nth-of-type(2),
        .atswins-hero-section-column:nth-of-type(4) {
            -ms-flex-order: 1;
            order: 1;
        }

        .atswins-hero-section-column:nth-of-type(2) {
            width: calc(50% - 20px);
        }
    }

    @media screen and (min-width:1021px) {

        .atswins-hero-section-column:first-of-type,
        .atswins-hero-section-column:nth-of-type(2),
        .atswins-hero-section-column:nth-of-type(3) {
            -ms-flex-order: 0;
            order: 0;
        }

        .atswins-hero-section-column:first-of-type,
        .atswins-hero-section-column:nth-of-type(2) {
            margin-right: 20px;
        }

        .atswins-hero-section-column:first-of-type,
        .atswins-hero-section-column:nth-of-type(3) {
            margin-top: 0;
            width: calc(25% - 10px);
        }

        .atswins-hero-section-column:nth-of-type(2) {
            width: calc(70% - 20px);
        }
    }

    .atswins-hero-section__item:nth-of-type(n+6) {
        display: none;
    }

    @media screen and (min-width:1021px) {
        .atswins-hero-section__item:nth-of-type(n+6) {
            display: block;
        }
    }

    .atswins-section-headline {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: .5px;
        text-align: center;
        text-transform: uppercase;
        color: var(--body-quiet-color);
        box-shadow: inset 0 -11px 0 -1px var(--body-bg), inset 0 -12px;
    }

    .atswins-section-headline__text {
        background-color: var(--body-bg);
        color: inherit;
        padding: 0 20px;
        white-space: nowrap;
    }

    .atswins-news-thumbnail {
        position: relative;
    }

    .atswins-news-thumbnail:before {
        content: "";
        display: block;
        padding-bottom: var(--placeholder-ratio);
        width: 100%;
    }

    .atswins-news-thumbnail__img {
        bottom: 0;
        height: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
    }

    .atswins-news-section-headline {
        margin: 20px 0 20px -20px;
        width: calc(100% + 40px);
    }

    @media screen and (min-width:570px) {
        .atswins-news-section-headline {
            margin-left: 0;
            width: 100%;
        }
    }
}
