@charset "utf-8";

/****************************************************************************************************************************************
스포츠 공통
*****************************************************************************************************************************************/
.sport-wrap {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 15px;
}

/****************************************************************************************************************************************
sport-left
*****************************************************************************************************************************************/
.sport-left {
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.sportLeft-inner {
    position: relative;
    width: 250px;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    background: #1f262f;
}

ul.type-list {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

ul.type-list>li {
    position: relative;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

ul.type-list>li:nth-child(2n) {
    background: #1d232c;
}

ul.type-list>li.faded {
    background: #0e121b;
}

ul.type-list>li.faded .sport-icon {
    background: #0e121b;
}

ul.type-list>li.faded .sport-icon>img {
    filter: brightness(0.2);
    opacity: 0.5;
}

ul.type-list::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 3px;
}

ul.type-list::-webkit-scrollbar-track {
    background-color: #222a33;
    border-radius: 3px;
}

ul.type-list::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #53647a;
}

ul.type-list::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

.sport-icon {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #1f262f;
}

.sport-icon>img {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    filter: brightness(0.3);
}

.type-label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.type-label>h3 {
    margin: 0 auto;
    padding: 0;
    width: 150px;
    text-align: left;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    text-wrap: nowrap;
    color: #455365;
}

.type-label>p {
    margin: 0 auto;
    width: 30px;
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    color: #59626c;
}

.open-toggle {
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    background: #293340;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, .35);
}

.toggle-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toggle-btn>img {
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
    filter: brightness(2);
    transition: all .3s;
}

/* active */
.sportLeft-inner.active {
    width: 50px;
    background: transparent;
}

.sportLeft-inner.active ul.type-list {
    width: 50px;
}

.sportLeft-inner.active ul.type-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    border-radius: 0;
}

.sportLeft-inner.active ul.type-list::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0;
}

.sportLeft-inner.active ul.type-list::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: transparent;
}

.sportLeft-inner.active ul.type-list::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

.sportLeft-inner.active .type-label {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50px;
    padding: 0 5px;
    width: 200px;
    height: 48px;
    line-height: 48px;
    background: #12161d;
    transition: all 50ms;
}

.sportLeft-inner.active ul.type-list>li:nth-child(2n) {
    background: transparent;
}

.sportLeft-inner.active ul.type-list>li.faded {
    background: transparent;
}

ul.type-list>li.active .sport-icon>img {
    filter: brightness(1);
}

ul.type-list>li.active .type-label>h3 {
    color: #d4d6da;
}

ul.type-list>li.active .type-label>p {
    color: #16bbf7;
}

.sportLeft-inner.active .open-toggle {
    width: 50px;
}

.sportLeft-inner.active .open-toggle .toggle-btn>img {
    transform: rotate(0deg);
}

@media (hover: hover) and (pointer: fine) {
    ul.type-list>li:hover .type-label>h3 {
        color: #d4d6da;
    }

    ul.type-list>li:hover .type-label>p {
        color: #16bbf7;
    }

    ul.type-list>li:hover .sport-icon>img {
        filter: brightness(1);
    }

    ul.type-list>li.faded:hover .sport-icon>img {
        filter: brightness(0.2);
        opacity: 0.5;
    }

    .sportLeft-inner.active:hover {
        margin-right: -250px;
        transition: all 0ms;
        width: 300px;
    }

    .sportLeft-inner.active:hover ul.type-list {
        width: 300px;
    }

    .sportLeft-inner.active:hover ul.type-list>li:hover .type-label {
        width: 200px;
        opacity: 1;
        transition: all .3s;
        transition-delay: .2s;
    }

    .sportLeft-inner.active ul.type-list>li:hover .sport-icon {
        background: #12161d;
    }

    .sportLeft-inner.active ul.type-list>li:hover .sport-icon>img {
        filter: brightness(1);
    }
}

/****************************************************************************************************************************************
sport-con
*****************************************************************************************************************************************/
.sport-con {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sport-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sport-game {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow-y: auto;
}

/* sport-top */
.sport-top {
    position: relative;
    margin: 20px auto 10px auto;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.sport-menu {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
}

ul.sport-menu>li {
    position: relative;
    margin: 0;
    padding: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    color: #6a7f9a;
    cursor: pointer;
}

ul.sport-menu>li>span {
    margin-left: 5px;
    font-size: 18px;
    font-weight: 900;
}

ul.sport-menu>li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

ul.sport-menu>li.active,
ul.sport-menu>li.active>span {
    color: #16bbf7;
}

ul.sport-menu>li.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #16bbf7;
    border-radius: 2px;
}

@media (hover: hover) and (pointer: fine) {

    ul.sport-menu>li:hover,
    ul.sport-menu>li:hover>span {
        color: #16bbf7;
    }

    ul.sport-menu>li:hover::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #16bbf7;
        border-radius: 2px;
    }
}

.sport-search {
    position: relative;
    margin: 0;
    padding: 0;
    width: 350px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b222c;
    border-radius: 5px;
}

.sport-search>i {
    margin: 0;
    padding: 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #6c829d;
}

.sport-search>input {
    margin: 0;
    padding: 0 5px;
    width: 100%;
    line-height: 38px;
    color: #6c829d;
    background: #1b222c;
    border: none;
}

.sport-search>input::placeholder {
    color: #757575;
}

.sport-search>input:focus {
    outline: none;
}

/* sport-bonus */
ul.sport-bonus {
    position: relative;
    margin: 20px 0 0 0;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

ul.sport-bonus>li {
    position: relative;
    margin: 0;
    padding: 0 15px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #6d747b;
    border: 2px solid #1b222c;
}

ul.sport-bonus>li>span {
    font-weight: 600;
}

/* game-group */
.game-group {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.game-match {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* game-league */
ul.game-league {
    position: relative;
    margin: 10px 0 0 0;
    padding: 0 10px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.game-league>li {
    position: relative;
}

ul.game-league>li>img {
    width: 30px;
}

ul.game-league>li>span {
    margin-left: 5px;
    font-weight: 600;
    color: #becdd8;
}

ul.game-league>li.time {
    color: #16bbf7;
}

ul.game-league>li.time>img {
    margin-left: 5px;
    width: 20px;
    filter: invert(49%) sepia(84%) saturate(1516%) hue-rotate(174deg) brightness(102%) contrast(102%);
}

ul.game-league>li>.mo-leagueImg {
    display: none;
}

/* game-choice */
ul.game-choice {
    position: relative;
    margin: 7px 0 0 0;
    padding: 5px 15px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #171d26;
    border: 1px solid #171d26;
    border-radius: 5px;
    overflow: hidden;
    transition: all .1s;
    cursor: pointer;
}

ul.game-choice>li {
    position: relative;
    height: 100%;
    padding: 0 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #ded9e3;
}

ul.game-choice>li>span {
    font-weight: 600;
    color: #ded9e3;
}

ul.game-choice>li:nth-child(1) {
    width: 50px;
}

ul.game-choice>li:nth-child(1)>img {
    width: 30px;
    height: 30px;
}

ul.game-choice>li:nth-child(2) {
    width: 120px;
}

ul.game-choice>li:nth-child(2)>.game-score {
    margin: 0 auto;
    padding: 8px 0;
    width: 100px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #dad5df;
    background: #0c1019;
    border-radius: 5px;
}

ul.game-choice>li:nth-child(4) {
    width: 130px;
}

ul.game-choice>li:nth-child(3),
ul.game-choice>li:nth-child(5) {
    width: calc((100% - 200px) / 2);
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.game-choice>li:nth-child(3) {
    justify-content: flex-end;
}

ul.game-choice>li:nth-child(5) {
    justify-content: flex-start;
}

ul.game-choice>li:nth-child(3) img,
ul.game-choice>li:nth-child(5) img {
    padding: 10px 10px;
    width: 50px;
    height: 50px;
    object-fit: scale-down;
    background-color: #0b0f17;
    border: 1px solid #151a23;
    border-radius: 40px;
    overflow: hidden;
}

.gameIng {
    width: 130px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #becde3;
    background: #0d121b;
    border: 1px solid #0d121b;
    border-radius: 6px;
}

.game-On {
    width: 130px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #61d0ff;
    background: rgba(22, 189, 249, .149);
    border: 1px solid #16bbf7;
    border-radius: 6px;
}

.right-long,
.left-long {
    width: calc(100% - 130px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.right-long {
    display: flex;
    align-items: center;
    justify-content: start;
}

.left-long {
    display: flex;
    align-items: center;
    justify-content: end;
}

@media (hover: hover) and (pointer: fine) {
    ul.game-choice:hover {
        background: #1b222c;
        box-shadow: 0 0 20px rgba(0, 0, 0, .533), 0 0 40px rgba(0, 0, 0, .533);
    }

    .gameIng:hover,
    .game-On:hover {
        color: #61d0ff;
        background: rgba(22, 189, 249, .149);
        border: 1px solid #16bbf7;
    }
}

/* sport-pageNumber */
.sport-pageNumber {
    position: sticky;
    bottom: 0;
    z-index: 30;
    margin-top: 20px;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.sport-pageNumber .pagination {
    padding: 0;
    background: none;
}


/****************************************************************************************************************************************
inplay game
*****************************************************************************************************************************************/
.inplay-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.left-inplay,
.right-inplay {
    position: relative;
    margin: 0;
    padding: 15px 15px;
    width: calc(100% / 2);
    background: #0b0e18;
}

.left-inplay {
    height: calc(100vh - 130px);
}

.left-inplayInner {
    position: relative;
    margin: 0 auto;
    padding-bottom: 90px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow-y: scroll;
}

.right-inplay {
    height: calc(100vh - 130px);
    overflow-y: scroll;
}

.right-inplayInner {
    position: relative;
    margin: 0 auto;
    padding-bottom: 90px;
    width: 100%;
    text-align: center;
}

/* left-inplay */
.inplay-top {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.sort {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

ul.sort>li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

ul.sort>li>span {
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    color: #59626c;
}

ul.sort>li>i {
    margin: 4px 2px 0 0;
    font-size: 26px;
    font-weight: 500;
    color: #59626c;
}

ul.sort>li.active>span,
ul.sort>li.active>i {
    color: #16bbf7;
}

.inplay-search {
    margin: 0;
    padding: 0 10px;
    height: 45px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #1b222c;
}

.inplay-search>i {
    padding: 0 3px;
    font-size: 18px;
    color: #6b819c;
}

.inplay-search>input {
    margin: 0;
    padding: 0 10px;
    width: 100%;
    min-width: 240px;
    text-align: left;
    color: #6c829d;
    background: none;
    border: none;
    outline: none;
}

@media (hover: hover) and (pointer: fine) {

    ul.sort>li:hover>span,
    ul.sort>li:hover>i {
        color: #16bbf7;
    }
}

/* inplay-group */
.inplay-group {
    margin-top: 5px;
    width: 100%;
    background: #1b222c;
    border-radius: 10px;
    transition: all .2s;
    cursor: pointer;
}

/* inplay-league */
ul.inplay-league {
    position: relative;
    margin: 0;
    padding: 10px 10px;
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.inplay-league>li {
    position: relative;
    display: flex;
    align-items: center;
}

ul.inplay-league>li>img {
    margin-right: 3px;
    width: 18px;
}

ul.inplay-league>li>span {
    margin-left: 3px;
    font-weight: 600;
    color: #becdd8;
}

ul.inplay-league>li:nth-child(2) {
    justify-content: flex-end;
}

.playing-none {
    margin-right: 5px;
    padding: 0;
    width: 50px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    color: #abb2be;
    background: #353535;
    border-radius: 5px;
}

.playing-now {
    margin-right: 5px;
    padding: 0;
    width: 50px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: #f00;
    border-radius: 5px;
}

.time {
    margin: 0 auto;
    padding: 0 10px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    color: #77808e;
    background: #0f0f0f;
    border-radius: 5px;
}

/* inplay-choice */
.inplay-choice {
    padding: 0 10px 10px 10px;
    display: flex;
    gap: 5px;
}

.inplay-choice>div {
    padding: 10px 10px;
    height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #131822;
    border-radius: 5px;
}

.inplay-match {
    display: flex;
    flex-grow: 1;
}

.team-home,
.team-away {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.team-icon {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0a0d11;
    border-radius: 12px;
}

.team-icon>img {
    width: 100%;
}

.team-name {
    font-size: 12px;
    color: #becde3;
}

.inplay-count {
    width: 70px;
    text-align: center;
    color: #16bbf7;
    cursor: pointer;
}

.inplay-home,
.inplay-draw,
.inplay-away {
    width: 70px;
    text-align: center;
    cursor: pointer;
}

.inplay-home>p,
.inplay-draw>p,
.inplay-away>p {
    font-size: 12px;
    color: #99a0ab;
}

.inplay-draw.vs {
    color: #16bbf7;
}

.mo-plus {
    display: none;
}

.mo-plus>i {
    font-size: 16px;
    color: #16bbf7;
}

.none {
    color: #818181;
    cursor: text !important;
}

.none>i {
    font-size: 16px;
    color: #818181;
}

@media (hover: hover) and (pointer: fine) {
    .inplay-group:hover {
        filter: brightness(1.3);
    }

    .inplay-count:hover {
        background: rgba(22, 189, 249, .149);
        border: 1px solid #16bbf7;
    }

    .inplay-home:hover,
    .inplay-draw:hover,
    .inplay-away:hover {
        background: #041e28;
        border: 1px solid #16bbf7;
    }

    .inplay-home:hover>p,
    .inplay-draw:hover>p,
    .inplay-away:hover>p {
        color: #16bbf7;
    }

    .none:hover {
        background: #131822;
        border: none;
        cursor: text !important;
    }
}

/****************************************************************************************************************************************
right-inplay
*****************************************************************************************************************************************/
/* mo-backBtn */
.mo-backBtn {
    display: none;
}

/* detail-league */
ul.detail-league {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.detail-league>li {
    position: relative;
    display: flex;
    align-items: center;
}

ul.detail-league>li>img {
    margin-right: 3px;
    width: 30px;
}

ul.detail-league>li>span {
    margin-left: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #becdd8;
}

ul.detail-league>li:nth-child(2) {
    justify-content: flex-end;
}

/* detail-match */
ul.detail-match {
    position: relative;
    margin: 0 0 10px 0;
    padding: 10px 10px;
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    background: #1b222c;
    border-radius: 10px;
}

ul.detail-match>li {
    display: flex;
    gap: 15px;
    align-items: center;
}

ul.detail-match>li:nth-child(1) {
    justify-content: flex-end;
}

ul.detail-match>li:nth-child(2) {
    color: #16bbf7;
}

ul.detail-match>li:nth-child(3) {
    justify-content: flex-start;
}

ul.detail-match>li>span {
    color: #becde3;
}

.detail-icon {
    margin: 0;
    padding: 5px 5px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 0 5px #11151f;
    border-radius: 50%;
}

.detail-icon>img {
    object-fit: contain
}


/* detail-live */
.detail-live {
    position: relative;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    background: #1b222c;
    border-radius: 10px;
}

.detail-info {
    position: relative;
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #becde3;
    border-bottom: 1px #373d46 solid;
}

.detail-info>span {
    line-height: 1;
    font-size: 13px;
    color: #becde3;
}

ul.detail-score {
    position: relative;
    margin: 20px auto 0 auto;
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ul.detail-score>li {
    width: 100%;
    text-align: center;
}

ul.detail-score>li>img {
    width: 60px;
}

ul.detail-score>li>p {
    margin: 2px 0;
    font-size: 13px;
}

/* detail-group */
.detail-group {
    position: relative;
    width: 100%;
}

.detail-result {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
    color: #becde3;
}

ul.detail-choice {
    position: relative;
    margin: 0;
    padding: 5px 5px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    background: #1b222c;
}

ul.detail-choice>li {
    padding: 0 10px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #becde3;
    background: #0d121b;
    border: 1px solid #222a33;
    cursor: pointer;
}

ul.detail-choice>li>span {
    font-size: 12px;
    font-weight: 500;
}

ul.choice-col-3>li {
    width: calc(100% / 3);
}

ul.choice-col-2>li {
    width: calc(100% / 2);
}

@media (hover: hover) and (pointer: fine) {
    ul.detail-choice>li:hover {
        background: #041e28;
        border: 1px solid #16bbf7;
    }

    ul.detail-choice>li:hover>span {
        color: #16bbf7;
    }
}



/****************************************************************************************************************************************
sport-cart
*****************************************************************************************************************************************/
.sport-cart {
    position: relative;
    z-index: 9;
    width: 300px;
    height: calc(100vh - 50px);
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
}

.sport-cart::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    border-radius: 2px;
}

.sport-cart::-webkit-scrollbar-track {
    background-color: #0b0e18;
    border-radius: 2px;
}

.sport-cart::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #0b0e18;
}

.sport-cart::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

.cart-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* cart-menu */
ul.cart-menu {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e252e;
}

ul.cart-menu>li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .1s;
    cursor: pointer;
}

ul.cart-menu>li>img {
    margin: 5px 5px;
    width: 20px;
    filter: grayscale(.8) brightness(.6);
}

ul.cart-menu>li>span {
    font-size: 12px;
    font-weight: 600;
    color: #6a7f9a;
    letter-spacing: -0.5px;
}

ul.cart-menu>li.active>img {
    filter: grayscale(0) brightness(1);
}

ul.cart-menu>li.active>span {
    filter: invert(49%) sepia(84%) saturate(1516%) hue-rotate(174deg) brightness(102%) contrast(102%);
}

@media (hover: hover) and (pointer: fine) {
    ul.cart-menu>li:hover>img {
        filter: grayscale(0) brightness(1);
    }

    ul.cart-menu>li:hover>span {
        filter: invert(49%) sepia(84%) saturate(1516%) hue-rotate(174deg) brightness(102%) contrast(102%);
    }
}

/* cart-count */
ul.cart-count {
    position: relative;
    margin: 2px 0;
    padding: 10px 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e252e;
}

ul.cart-count>li {
    font-size: 13px;
    font-weight: 500;
    color: #6a7f9a;
}

ul.cart-count>li>span {
    font-size: 13px;
    font-weight: 500;
    color: #16bbf7;
}

ul.cart-count>li>img {
    width: 23px;
    filter: grayscale(1);
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    ul.cart-count>li>img:hover {
        filter: brightness(0) saturate(100%) invert(10%) sepia(80%) saturate(7481%) hue-rotate(275deg) brightness(97%) contrast(117%);
    }
}

/* cartList */
.cartList-box {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

.cartList-box::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    border-radius: 2px;
}

.cartList-box::-webkit-scrollbar-track {
    background-color: #000;
    border-radius: 2px;
}

.cartList-box::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #16bbf7;
}

.cartList-box::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

ul.cart-list {
    position: relative;
    margin: 5px auto;
    padding: 10px 10px;
    width: 100%;
    background: #1b222c;
    border: 1px solid transparent;
}

ul.cart-list>li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.cart-list>li span {
    font-size: 12px;
    font-weight: 500;
    color: #cdced1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.left-group>img {
    width: 18px;
    border-radius: 2px;
    overflow: hidden;
}

.left-group>.team-name {
    font-size: 12px;
    font-weight: 600;
    color: #6a7f9a;
}

.left-group>.result-name,
.left-group>.item_odds {
    color: #16bbf7;
}

.cartList-close {
    cursor: pointer;
}

.cartList-close>i {
    font-weight: 600;
    color: #6a7f9a;
}

@media (hover: hover) and (pointer: fine) {
    .cartList-close:hover>i {
        color: #16bbf7;
    }
}

/* cart-box */
.cart-box {
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    padding: 5px 5px;
    width: 100%;
    height: 318px;
    background: #222a33;
}

ul.cartInfo {
    position: relative;
    padding: 0;
    width: 100%;
}

ul.cartInfo>li {
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b222c;
}

ul.cartInfo>li:last-child {
    border: 1px solid #16baf5;
}

ul.cartInfo>li>span {
    font-size: 12px;
    font-weight: 500;
    color: #6a7f9a;
}

ul.cartInfo>li>span:nth-child(2) {
    color: #16bbf7;
}

ul.cartInfo>li>input {
    margin: 0;
    padding: 0;
    width: 50%;
    height: 30px;
    text-align: right;
    font-size: 12px;
    font-weight: 500;
    color: #16bbf7;
    background: #1b222c;
    border: none;
}

ul.cartInfo>li>input:focus {
    outline: none;
}

ul.cart-moneyBox {
    position: relative;
    margin: 10px 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

ul.cart-moneyBox>li {
    margin: 0;
    padding: 8px 0;
    width: calc(100% / 3);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #1b222c;
    border: 2px solid #1b222c;
    cursor: pointer;
}

.btn-betGo {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    color: #000;
    background: #16baf5;
}

@media (hover: hover) and (pointer: fine) {
    ul.cart-moneyBox>li:hover {
        background: #16bbf7;
        border: 2px solid #16bbf7;
    }

    .btn-betGo:hover {
        color: #fff;
        background: #1b222c;
    }
}


/****************************************************************************************************************************************
미디어쿼리문
*****************************************************************************************************************************************/
@media (max-width: 800px) {
    .sport-wrap {
        flex-direction: column;
        gap: 0;
    }

    /* sport-left */
    .sport-left {
        width: 100%;
        z-index: 0;
    }

    .sportLeft-inner {
        padding: 10px 0;
        width: 100%;
        height: auto;
        background: transparent;
    }

    .open-toggle {
        display: none;
    }

    ul.type-list {
        padding: 0 5px;
        flex-direction: row;
        gap: 15px;
    }

    ul.type-list>li {
        flex-direction: column;
        height: unset;
        width: 50px;
    }

    ul.type-list>li:nth-child(2n),
    ul.type-list>li.faded {
        background: transparent;
    }

    .sport-icon,
    ul.type-list>li.faded .sport-icon {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #0a3e51;
        border-radius: 50%;
    }

    ul.type-list>li.faded .sport-icon>img {
        filter: brightness(0.3);
    }

    .type-label {
        flex-direction: column;
    }

    .type-label>h3 {
        margin: 0 auto;
        width: 100%;
        text-align: center;
        font-size: 12px;
        color: #fff;
        overflow: hidden;
        text-overflow: ellipsis;
        text-wrap: nowrap;
    }

    .type-label>p,
    ul.type-list>li.active .type-label>p {
        color: #f2d516;
    }

    ul.type-list>li.active .sport-icon,
    ul.type-list>li.active.faded .sport-icon {
        background: #16bbf7;
    }

    ul.type-list>li.active .sport-icon>img {
        filter: brightness(1);
    }

    /* sport-con */
    .sport-con {
        padding: 0;
        width: 100%;
    }

    .sport-inner {
        padding: 0 5px;
        max-width: 100%;
        height: 100%;
    }

    .sport-top {
        margin: 10px auto;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    ul.sport-menu {
        gap: 10px;
    }

    ul.sport-menu>li {
        height: 45px;
        font-size: 13px;
        font-weight: 500;
    }

    ul.sport-menu>li>span {
        margin-left: 0;
        font-size: 13px;
        font-weight: 500;
    }

    .sport-search {
        width: 100%;
        height: 35px;
    }

    .sport-search>input {
        height: 35px;
    }

    /* sport-bonus */
    ul.sport-bonus {
        gap: 5px;
    }

    ul.sport-bonus>li {
        padding: 0 5px;
        height: 40px;
    }

    ul.sport-bonus>li,
    ul.sport-bonus>li>span {
        font-size: 11px;
        color: #fff;
    }

    /* game-league */
    ul.game-league {
        margin: 0;
        padding: 0 5px;
        height: 40px;
        background: #20294f;
    }

    ul.game-league>li {
        display: flex;
        align-items: center;
    }

    ul.game-league>li>img {
        width: 18px;
    }

    ul.game-league>li>span {
        display: inline-block;
        margin-left: 5px;
        text-align: left;
        font-size: 12px;
        width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        text-wrap: nowrap;
    }

    ul.game-league>li.time {
        font-size: 11px;
        color: #becdd8;
    }

    ul.game-league>li.time>img {
        display: none;
    }

    ul.game-league>li>.mo-leagueImg {
        display: block;
        margin-right: 5px;
        width: 16px;
        height: 16px;
    }

    /* game-choice */
    ul.game-choice {
        padding: 5px 0;
        height: 48px;
    }

    ul.game-choice>li:nth-child(1) {
        display: none;
        width: unset;
    }

    ul.game-choice>li:nth-child(3) {
        order: 1;
    }

    ul.game-choice>li:nth-child(4) {
        order: 2;
        width: 50px;
    }

    ul.game-choice>li:nth-child(5) {
        order: 3;
    }

    ul.game-choice>li:nth-child(2) {
        order: 4;
        width: 50px;
    }

    ul.game-choice>li:nth-child(2)>.game-score {
        font-size: 11px;
        background: #212a3f;
    }

    ul.game-choice>li:nth-child(3),
    ul.game-choice>li:nth-child(5) {
        width: calc((100% - 100px) / 2);
    }

    ul.game-choice>li:nth-child(3) img,
    ul.game-choice>li:nth-child(5) img {
        display: none;
    }

    .right-long {
        text-align: right;
    }

    .left-long {
        text-align: left;
    }

    .right-long,
    .left-long {
        width: calc(100% - 50px);
        font-size: 11px;
    }

    .gameIng {
        width: 50px;
        font-size: 11px;
    }

    .game-On {
        width: 50px;
        font-size: 11px;
    }

    /* inplay */
    .left-inplay {
        padding: 0 5px;
        width: 100%;
        height: 100%;
    }

    .left-inplayInner {
        padding-bottom: 0;
        overflow-y: unset;
    }

    .right-inplay {
        display: none;
        position: fixed;
        top: 49px;
        padding: 0 5px;
        width: 100%;
        height: calc(100% - 49px);
    }

    ul.sort {
        gap: 10px;
    }

    ul.sort>li>span {
        font-size: 13px;
    }

    ul.sort>li>i {
        font-size: 16px;
    }

    .inplay-search {
        padding: 0 5px;
        height: 35px;
    }

    .inplay-search>i {
        padding: 0;
        font-size: 14px;
    }

    .inplay-search>input {
        padding: 0 0 0 5px;
        min-width: unset;
        width: 130px;
    }

    ul.inplay-league {
        padding: 5px 5px;
        height: 35px;
    }

    ul.inplay-league>li>span {
        font-size: 11px;
    }

    ul.inplay-league>li>img {
        margin-right: 2px;
        width: 16px;
    }

    .time {
        font-size: 11px;
        letter-spacing: -1px;
    }

    .playing-now,
    .playing-none {
        width: 40px;
        line-height: 20px;
        font-size: 11px;
    }

    .inplay-choice {
        gap: 3px;
        padding: 0 5px 5px 5px;
    }

    .inplay-count {
        display: none !important;
    }

    .inplay-choice>div {
        padding: 5px 5px;
        width: 45px;
        height: 50px;
    }

    .inplay-home>p,
    .inplay-draw>p,
    .inplay-away>p {
        font-size: 11px;
    }

    .mo-plus {
        display: block;
    }

    .mo-backBtn {
        display: block;
        margin: 0 auto;
        padding: 10px 15px;
        text-align: center;
        font-size: 16px;
        color: #fff;
        background: #353639;
        cursor: pointer;
    }

    ul.detail-league>li>img {
        width: 20px;
    }

    ul.detail-league>li>span {
        font-size: 11px;
    }

    ul.detail-match {
        padding: 5px 5px;
        gap: 5px;
    }

    ul.detail-match>li,
    ul.detail-match>li>span {
        font-size: 11px;
    }

    ul.detail-match>li>span.detail-long {
        width: 100px;
        white-space: nowrap;
        text-overflow: ellipsis;
        word-break: break-all;
        overflow: hidden;
    }

    .detail-icon {
        width: 20px;
        height: 20px;
    }

    .detail-live {
        padding: 10px 10px;
    }

    .detail-info {
        font-size: 11px;
    }

    ul.detail-score {
        margin: 5px 0 0 0;
    }

    ul.detail-score>li>img {
        width: 40px;
    }

    .detail-result {
        font-size: 12px;
    }

    ul.detail-choice {
        padding: 5px 0;
    }

    ul.detail-choice>li>span {
        font-size: 11px;
    }

    /* sport-cart */
    .sport-cart {
        display: none;
    }

    .sport-cart.active {
        display: block;
        position: fixed;
        bottom: 65px;
        z-index: 99;
        margin: 0 auto;
        width: 100%;
        height: calc(100% - 115px);
        background: #1b222c;
        border-top: 5px #16baf5 solid;
    }

    ul.cart-menu {
        display: none;
    }

    ul.cart-count {
        order: 2;
        padding: 5px 10px;
    }

    ul.cart-count>li {
        color: #fff;
    }

    .cartList-box {
        order: 1;
        height: 235px;
    }

    ul.cart-list {
        margin: 2px auto;
        padding: 5px 10px;
        background: #283241;
    }

    .cart-box {
        order: 3;
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    ul.cartInfo {
        order: 2;
        margin: 5px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2px;
    }

    ul.cartInfo>li {
        width: calc(100% / 2 - 2px);
    }

    ul.cart-moneyBox {
        order: 1;
        margin: 0;
    }

    ul.cart-moneyBox>li {
        background: #394558;
    }

    .btn-betGo {
        order: 3;
    }

    .sport-pageNumber {
        position: relative;
    }
}

/* 미디어쿼리문 끝 */

@media (max-width: 639px) {
    .team-name {
        width: 100px;
        text-align: left;
        white-space: nowrap;
        text-overflow: ellipsis;
        word-break: break-all;
        overflow: hidden;
    }
}