@charset "utf-8";

/* home page - sportsbook section additional */

#sports-highlight {
    position: unset;
    bottom: 0;
}


/* .sportsbook-section #upcoming-events {
    position: absolute;
    bottom: calc(15% - 24px);
} */


/*Main*/

#main.content {
    overflow: hidden;
}


/*Title*/

.title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding-left: var(--spacing-12);
    padding-right: var(--spacing-12);
    width: 100%;
}

.title-wrap .title-heading {
    position: relative;
    font-size: var(--spacing-16);
}

.title-wrap .title-heading:not(.no-decoration):after {
    content: "";
    background-color: var(--secondary-3);
    display: flex;
    width: 24px;
    height: 2px;
    margin-top: var(--spacing-2);
    /* z-index: 9; */
    /* position: absolute; */
}

.title-wrap a {
    text-decoration: none;
}

.title-wrap a .mask-arrow {
    background-color: var(--secondary-3);
    height: 12px;
    width: 12px;
    margin: auto 0px auto var(--spacing-4);
    -webkit-mask: url('/~/static/images/home-page/upcoming-events/icons/icon-arrow-right.svg') no-repeat center;
    -webkit-mask-size: contain;
}


/*Swiper*/

.swiper-pointer-events {
    touch-action: pan-y;
}

.cards-sets .odds-pattern {
    overflow-y: visible;
    width: 100%;
    margin-bottom: 48px;
    padding: 0 8px;
}

.cards-odds-wrapper .swiper-slide {
    width: 70%;
    margin-right: 10px;
}

.odds-pattern .swiper-button-prev,
.odds-pattern .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgb(183, 189, 198);
    border-radius: 50%;
    top: 50%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: none;
}

.odds-pattern .swiper-button-prev:hover,
.odds-pattern .swiper-button-next:hover {
    background: #BDBFC4;
}

.odds-pattern .swiper-button-prev:focus,
.odds-pattern .swiper-button-next:focus {
    background: #90949C;
}

.odds-pattern .swiper-button-prev {
    left: 0;
}

.odds-pattern .swiper-button-next {
    right: 0;
}

.odds-pattern .swiper-button-next:after {
    content: '';
    width: 12px;
    height: 8px;
    background: url("/~/static/images/home-page/upcoming-events/icons/east.svg") no-repeat center center;
}

.odds-pattern .swiper-button-prev:after {
    content: '';
    width: 12px;
    height: 8px;
    background: url("/~/static/images/home-page/upcoming-events/icons/west.svg") no-repeat center center;
}

.odds-cards-wrap .odds-pattern:hover .swiper-button-prev,
.odds-cards-wrap .odds-pattern:hover .swiper-button-next {
    opacity: 1;
}

.odds-cards-wrap .odds-pattern:hover .swiper-button-prev.swiper-button-disabled,
.odds-cards-wrap .odds-pattern:hover .swiper-button-next.swiper-button-disabled {
    opacity: .35;
}


/*Odds*/

.sports-odd {
    background-color: var(--primary-11);
    box-sizing: border-box;
    padding-top: var(--spacing-24);
    padding-bottom: var(--spacing-24);
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.sports-odd .title-wrap {
    margin-top: var(--spacing-2);
}

.odds-cards-wrap {
    position: relative;
    height: 100%;
    min-height: 150px;
    margin: 0px auto;
    /* padding: 80px 0 40px 24px; */
    background-image: none;
    background-repeat: no-repeat;
    background-color: var(--primary-11);
    max-width: 1360px;
}

.odds-cards-wrap img.bg-cards {
    display: none;
}

.odds-pattern {
    display: flex;
    flex-direction: row;
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
}

.odds-pattern .odds {
    box-shadow: 2px 4px 20px 0 rgb(0 0 0 / 10%);
    border-radius: 16px;
    cursor: pointer;
}


/* .odds-pattern .odds.cards{
    width: 33.33%;

} */


/*cards*/

.cards {
    position: relative;
    -webkit-box-orient: vertical;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--primary-13);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    transition: all 0.5s;
    background-color: #fff;
}

.cards:hover.odds {
    box-shadow: 2px 5px 15px 0 rgb(0 0 0 / 20%);
    transform: scale(1.05);
    z-index: 1;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.cards.odds>.card-body {
    padding: 16px;
    height: 120px;
}

.separator {
    width: 1px;
    height: 20px;
    background-color: rgb(183, 189, 198);
    display: inline-block;
    margin-right: 2px;
}

.card-crest-heading .crest-date {
    width: 54px;
    height: 14px;
    flex-grow: 0;
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: #222939;
}

.card-crest-heading img {
    display: inline-block !important;
    width: 52.6px;
    height: 20px;
    margin: 0 3px 0 0;
}

.card-crest-content {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.crest-matches {
    width: 75%;
}

.crest-matches p {
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    color: #222939;
}

.crest-img {
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 0;
}

.crest-img div {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.crest-img div:first-child {
    position: absolute;
    right: 22px;
    bottom: 12px;
    z-index: 1;
}

.crest-img div:last-child {
    position: relative;
    bottom: -10px;
    right: -7px;
}

.crest-img div>img {
    width: 36px;
    height: 36px;
}

.cards-sets button.bet-now {
    position: absolute;
    right: 20px;
    /* top: calc(15% - 10px); */
    top: 80px;
    padding: 16px 32px;
    /* margin-top: 2.666vw; */
    line-height: 1.5;
    /* display: none; */
    z-index: 10;
}


/*swiper*/


/* .swiper.odds-pattern .swiper-wrapper{
    margin-left: 15px;
} */


/*Dark mode*/


/* responsive */

@media (max-width: 1023px) {
    .cards-sets button.bet-now {
        font-size: 14px;
        padding: 14px 48px;
        top: 42px;
    }
}

@media (max-width: 767px) {
    .cards-sets button.bet-now {
        display: none;
    }
}