* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-col1: #f5f5f5;
    --wht-col: #fff;
    --body-col: #444444;
    --body-col2: #333333;
    --bod-col: #DDDDDD;
    --bod-col2: #e0e0e0;
    --col1: #625C63;
    --col2: #6A6A6A;
    --main-bg: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(244, 244, 244, 1) 100%);
    --brd-1: #D4D4D4;
    --brd-2: #202124;
    --drp-bg: rgba(0, 0, 0, 0.07);
}

body {
    width: 100%;
    font-family: -apple-system, 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: var(--body-col);
}

.sch-wdgt {
    background: var(--main-bg);
    border: solid 1px var(--brd-1);
}

.sch-head {
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.sch-head:after {
    background: var(--brd-1);
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 1px;
    content: '';
}

.sch-head>ul {
    display: flex;
    font-size: 15px;
    font-weight: 600;
    color: var(--col1);
    text-transform: uppercase;
    position: relative;
    border-radius: 6px 6px 0 0;
    list-style: none;
    flex: 1;
    line-height: 15px;
    max-width: min-content;
    height: 100%;
}

.sch-head>ul li {
    padding: 0;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.sch-head>ul li span {
    text-transform: none;
}

.sch-head>ul li:last-child {
    margin-right: 0;
}

.sch-head>ul a {
    text-decoration: none;
    color: var(--col1);
    display: block;
    padding: 0 20px;
}


.sch-head>ul li.active {
    background-color: #500793;
    color: #fff;
}

.sch-head>ul li.active a {
    color: #fff;
}

.drpDwn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 500;
    margin-right: 5px;
}

.drpDwn a.drpdwn-cont {
    text-decoration: none;
    padding: 7px 20px 7px 10px;
    border-radius: 0px;
    color: var(--body-col);
    font-weight: 500;
    position: relative;
    background-color: var(--drp-bg);
}

.drpDwn a.drpdwn-cont:after {
    width: 0;
    height: 0;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #555;
    content: '';
}

.drpDwnBx .searchBx input::placeholder {
    color: var(--body-col);
}

.drpDwnBx {
    font-size: 14px;
    background-color: var(--wht-col);
    position: absolute;
    padding: 10px 10px 15px 10px;
    border-radius: 4px;
    right: 0;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.16);
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    transform-origin: top right;
    z-index: 10;
}

.drpDwnBx ul li {
    width: 100%;
    display: flex;
    padding-left: 25px;
    position: relative;
    margin: 10px 0 0;
    font-size: 12px;
}

.drpDwnBx ul li label {
    border-bottom: 1px solid var(--bg-col1);
    width: 100%;
    padding: 0px 0px 10px 0;
}

.drpDwnBx ul li:last-child label {
    padding-bottom: 0;
    border-bottom: none;
}

.drpDwnBx ul li .radioIcn {
    width: 17px;
    height: 17px;
    text-align: center;
    float: right;
    margin-right: 5px;
}

.drpDwnBx ul li .radioIcn svg {
    width: 100%;
    height: 100%;
    fill: #4eb5af;
}

.drpDwnBx .searchBx input {
    background: url(images/search-icon.svg) 95% center no-repeat var(--bg-col1);
    padding: 0px 28px 0 10px;
    height: 32px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--body-col);
    font-family: 'Roboto', sans-serif;
}

.drpDwnBx input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.drpDwnBx input[type="radio"]~i::after {
    content: '';
    width: 17px;
    height: 17px;
    border: 1px solid #979797;
    border-radius: 50%;
    left: 0;
    top: -3px;
    position: absolute;
}

.drpDwnBx input[type="radio"]:checked~i.icn::before {
    content: '';
    background-color: #500793;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 5px;
    top: 2px;
    position: absolute;
}

.drpDwnBx input[type="radio"]:checked~i.icn::after {
    border-color: #500793;
}

.drpDwnBx.animtBx {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.drpDwn a.drpdwn-cont.upArw:after {
    transform: rotate(180deg);
}

.listBx {
    height: 302px;
    overflow: auto;
}

.lstItm {
    /* background: var(--wht-col);
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
    border-radius: 4px; */
    overflow: hidden;
    margin-bottom: 10px;


}

.lstItm:not(:first-child) {
    border-top: solid 1px var(--brd-1);
}

.lstItm-lft {
    width: 25%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 5px;
}

.lstItm-rgt {
    width: 75%;
    flex-shrink: 0;
    padding: 10px;
}

.lstItm-lft .hdBx {
    font-size: 13px;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.lstItm-lft svg {
    display: inline-block;
    fill: currentColor;
    width: 15px;
    height: 15px;
    margin: 0px 5px;
}

.lstItm-lft .icnBx {
    width: 25px;
    height: 25px;
    filter: hue-rotate(286deg);
    background-color: #202124;
    padding: 2px;
    border-radius: 50%;
    margin-bottom: 5px;
    margin-left: auto;
}


.medalicon {
    width: 10px;
    height: 10px;
    color: currentColor;
    fill: #fff;
    margin-left: 5px;
}

.lstItm .lst-cont {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.lstItm .dtBx {
    color: var(--col2);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: right;
    margin-left: auto;
}

.lstItm .dtBx span {
    display: block;
}

.lstItm .lvBx {
    margin-top: 5px;
    line-height: 1.2;
}

.lstItm .nmCnBx {
    display: flex;
    margin-bottom: 5px;
    padding-bottom: 5px;
    position: relative;
}

.lstItm .nmCnBx::after {
    background-color: var(--bod-col2);
    height: 1px;
    width: calc(100% - 25px);
    left: 25px;
    bottom: 0;
    content: '';
    position: absolute;
}

.lstItm .nmCnBx:last-child {
    margin-bottom: 0;
}

.lstItm .nmCnBx:last-child::after {
    display: none;
}

.lstItm .nmCnBx .nmBx {
    margin-bottom: 2px;
}

.lstItm .nmCnBx .md_icnBx {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    margin-top: 3px;
}

.lstItm .nmCnBx .num_rank {
    width: 20px;
    height: 20px;
    color: var(--body-col);
    background-color: var(--bg-col1);
    border-radius: 50%;
    display: flex;
    font-weight: bold;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    margin-top: -2px;
    margin-left: -3px;
}

.lstItm .nmCnBx .md_icnBx svg {
    width: 15px;
    height: 15px;
}

.lstItm .nmCnBx_Cnt {
    width: 100%;
}

.lstItm .nmCnBx_Cnt .nmBx {
    display: flex;
    margin-top: 0;
}

.lstItm .nmCnBx_Cnt .num_scr {
    margin-left: auto;
    flex-shrink: 0;
}

.lstItm .nmCnBx_Cnt .num_scr.wnr::before {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent var(--body-col);
    vertical-align: middle;
    content: '';
    margin-right: 3px;
}

.lstItm .nmCnBx .md_icnBx svg.gold {
    fill: #d1ab15;
}

.lstItm .nmCnBx .md_icnBx svg.silver {
    fill: #aaaaaa;
}

.lstItm .nmCnBx .md_icnBx svg.bronze {
    fill: #cd7f32;
}

.hdBx {
    margin-bottom: 5px;
}

.lstItm .nmBx {
    color: var(--body-col2);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 5px;
}

.lstItm .cnBx {
    color: var(--body-col);
    margin-top: 5px;
}

.lstItm .hdBx .sts_Bx2 {
    color: white;
    background-color: #164c65;
    font-size: 11px;
    text-transform: uppercase;
    padding: 4px 5px;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 25px;
    font-weight: bold;
    line-height: normal;
}

.sch-wdgt .listBxCn {
    text-decoration: none;
    color: var(--body-col);
    height: 302px;
    overflow-y: auto;
    position: relative;
}

svg.hidden {
    display: none;
}

.listBxCn::before {
    content: "";
    height: 70px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.85) 55%, rgba(245, 245, 245, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    display: none;
}

.sch-wdgt {
    position: relative;
}

#lod,
#lod2 {
    display: none;
}

.lod-mre {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 5px 15px;
    font-size: 13x;
    z-index: 19;
    background: #202124;
    white-space: nowrap;
    margin: 8px auto;
    cursor: pointer;
}


div#tab0C {
    width: 100%;
}

#lod:checked~#tab1C,
#lod2:checked~#tab2C {
    padding-bottom: 0;
    overflow: auto;
}

#lod:checked~#tab1C .lod-mre,
#lod2:checked~#tab2C .lod-mre {
    display: none;
}

#lod:checked~#tab1C::before,
#lod2:checked~#tab2C::before {
    display: none;
}

.down-arrow {
    display: inline-block;
    fill: currentColor;
    height: 20px;
    line-height: 20px;
    position: relative;
    width: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin-right: -7px;
}

.down-arrow svg {
    display: block;
    height: 100%;
    width: 100%;
}

.lod-mre.aniMtd .down-arrow svg {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }

    40% {
        -webkit-transform: translateY(-10px) rotate(90deg);
        transform: translateY(-10px) rotate(90deg);
    }

    60% {
        -webkit-transform: translateY(-2px) rotate(90deg);
        transform: translateY(-2px) rotate(90deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0) rotate(90deg);
        -ms-transform: translateY(0) rotate(90deg);
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }

    40% {
        -moz-transform: translateY(-10px) rotate(90deg);
        -ms-transform: translateY(-10px) rotate(90deg);
        -webkit-transform: translateY(-10px) rotate(90deg);
    }
}

.crsIcn {
    display: none;
}

.crsIcn_cnt {
    position: relative
}

.crsIcn_cnt .crsIcn {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crsIcn_cnt .crsIcn:before,
.crsIcn_cnt .crsIcn:after {
    width: 12px;
    height: 1px;
    content: '';
    background: #424242;
    position: absolute;
    transform: rotate(45deg);
}

.crsIcn_cnt .crsIcn:after {
    transform: rotate(-45deg);
}

.drpDwnBx .searchBx.crsIcn_cnt input {
    background-image: none;
}

:root {
    --tly-main-bg: #fff;
    --tly-main-secbg: #fff;
    --tly-black: #000;
    --tly-white: #fff;
    --tly-blck-1: #2b2b2b;
    --tly-gry: #eee;
    --tly-gry-drk: #ccc;
    --tly-gry-lgt: #f5f5f5;
    --tly-blue-th: #ECF7FC;
    --tly-blue-txt: #008BC7;
    --tly-blue-lgt: #f0dfff;
    --tly-gold: #d1ab15;
    --tly-silver: #aaaaaa;
    --tly-bronze: #CD7F32;
    --tly-head-bod: #ddd;
    --tly-head-col: #008BC7;

}



.tally-wrap {
    width: 100%;
    position: relative;
    background-color: var(--tly-main-bg);
}


.tally-wrap_body {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: visible;
    overflow-y: auto;
}

.tally-wrap_body::-webkit-scrollbar {
    width: 6px;
}

.tally-wrap_body::-webkit-scrollbar-track {
    background-color: var(--tly-gry);
    border-radius: 10px;
}

.tally-wrap_body::-webkit-scrollbar-thumb {
    background-color: var(--tly-gry-drk);
    border-radius: 10px;
}

.tally-tbl {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
}


.tally-tbl_tr {
    border-top: 1px solid var(--tly-gry-lgt);
}

.tally-tbl thead .tally-tbl_tr,
.tally-tbl tbody .tally-tbl_tr:first-child {
    border: none;
}


.tally-tbl_th,
.tally-tbl_td {
    padding: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--tly-blck-1);
    white-space: nowrap;
}

.tally-tbl_td {
    height: 40px;
}

.tally-tbl_th {
    position: sticky;
    top: 0;
    z-index: 9;
    font-weight: 700;
    border-bottom: 1px solid var(--brd-2);
    vertical-align: bottom;
}

.medal-icn.total-medal {
    width: 20px;
    top: -5px;
}

.tally-tbl_th>span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.medal-icn {
    width: 12px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: -10px;
    left: 0;
}

.gold-medal {
    fill: var(--tly-gold)
}

.silver-medal {
    fill: var(--tly-silver)
}


.bronze-medal {
    fill: var(--tly-bronze)
}

/* .gold-txt,
.highlighted td.gold-txt {
    color: var(--tly-gold);
}

.silver-txt,
.highlighted td.silver-txt {
    color: var(--tly-silver);
}

.bronze-txt,
.highlighted td.bronze-txt {
    color: var(--tly-bronze);
} */



.tally-tbl_th:nth-child(2),
.tally-tbl_td:nth-child(2) {
    text-align: left;
}

.highlighted td {
    font-weight: 700;
    background-color: var(--tly-blue-lgt);
}


.lod-mre {
    color: #fff;
    text-decoration: none;
}

.down-arrow {
    display: inline-block;
    fill: currentColor;
    height: 18px;
    line-height: 18px;
    position: relative;
    width: 18px;
    cursor: pointer;
    border-radius: 50%;
}

.down-arrow svg {
    display: block;
    height: 100%;
    width: 100%;
}


.tabDta {
    display: none;
}


.sch-wdgt .listBxCn {
    overflow: hidden
}

.listBxCn::before {
    display: block;
}


.lstItm-wrp {
    width: 100%;
    display: flex;
    align-items: flex-start;
}


#noresSchedule .nmBx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    top: 30px;
}



@media screen and (max-width: 767px) {

    .tally-tbl_th,
    .tally-tbl_td {
        padding: 10px 5px 10px 0;
        font-size: 13px;
    }

    .tally-tbl_th:first-child,
    .tally-tbl_td:first-child {
        padding-left: 5px;
    }

    .tally-wrap {
        padding: 10px;
    }

    .tally-wrap_body {
        overflow: hidden;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }

    .tally-wrap_body::before {
        content: "";
        width: 100%;
        height: 30px;
        background-color: var(--tly-main-secbg);
        position: absolute;
        bottom: 0;
    }

    .tally-wrap_body::-webkit-scrollbar {
        width: 4px;
    }

    .tally-head {
        height: auto;
    }

    .cheer-btn {
        width: 185px;
        bottom: 3px;
    }

    .lod-mre {
        width: calc(100% - 30px);
        justify-content: center;

    }

    .cwg-app .sch-wdgt {
        overflow: hidden;
        border-radius: 10px;
    }


}















@media (prefers-color-scheme:dark) {
    :root {
        --bg-col1: #28292b;
        --wht-col: #272727;
        --bod-col: #454545;
        --bod-col2: #686868;
        --body-col: #d5d5d5;
        --body-col2: #e5e5e5;
        --col1: #e5e5e5;
        /*--M_T--*/
        --tly-main-bg: #28292b;
        --tly-main-secbg: #323335;
        --tly-blck-1: #e2e2e2;
        --tly-gry-lgt: #404040;
        --tly-blue-th: #232d3e;
        --tly-blue-txt: #8ab4f8;
        --tly-gold: #d3ba2e;
        --tly-gry: #404040;
        --tly-gry-drk: #555;
        --tly-head-bod: #404040;
        --tly-head-col: #6db8e4;
        --main-bg: linear-gradient(0deg, rgba(45, 45, 45, 1) 0%, rgba(45, 45, 45, 1) 100%);
        --brd-1: #404040;
        --brd-2: #404040;
        --drp-bg: rgba(0, 0, 0, 0.27);
        --col2: #bbb;
        --tly-blue-lgt: #33253e;
    }

    .cheer-btn svg,
    .cheer-btn img {
        opacity: 0.75;
    }

    .lod-mre {
        border-color: #000;
        background-color: #000;
    }

    .listBxCn::before {
        background: linear-gradient(180deg, rgb(40 41 44 / 0%) 0%, rgb(40 41 44 / 55%) 45%, rgb(40 41 44) 100%);
    }

    .crsIcn_cnt .crsIcn:before,
    .crsIcn_cnt .crsIcn:after {
        background-color: #a0a0a0
    }

    .drpDwnBx input[type="radio"]:checked~i.icn::after {
        border-color: #a67fc9;
    }

    .drpDwnBx input[type="radio"]:checked~i.icn::before {
        background-color: #a67fc9;
    }

    .radioIcn img {
        filter: brightness(1) contrast(0.5);
    }
}