@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.blink {
  font-weight: bold;
}

.blink::before {
  content: '`';
  animation: blinker 2.5s linear infinite;
}

@keyframes blink2 {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.blink_text {animation: blink2 0.7s infinite; }

.text-red {color: red !important;}

.oddsUp {
    color: green;
    background: url('./odds_up.gif');
    background-repeat: no-repeat;
    background-position: 90%;
}

.oddsDown {
    color: red;
    background: yellow url('./odds_down.gif');
    background-repeat: no-repeat;
    background-position: 90%;
}

.soccer_score {
    font-weight: bold;
    color: red;
    background: yellow
}

.switchScore {
    width: 100%;
}

.scoretb {
    width: 100%;
}

/* 3개 열 */
.scoretb-3 {
    display: grid;
    grid-template-columns: repeat(4, 25%);
}

/* 6개 열 */
.scoretb-6 {
    display: grid;
    grid-template-columns: repeat(7, 14.29%);
}

/* 7개 열 */
.scoretb-7 {
    display: grid;
    grid-template-columns: repeat(8, 12.5%);
}

/* 10개 열 */
.scoretb-10 {
    display: grid;
    grid-template-columns: repeat(11, 9.09%);
}

.scoretb .row {
    display: contents;
    font-size: 11px;
}

.cell {
    text-align: center;
    padding: 4px 0 9px;
    min-height: 10px;
}

.m_menu {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%; 
  padding: 0 10px;
  gap: 10px; 
  align-items: center; 
  overflow-x: hidden;
}

/* 각 아이템 스타일 */
.m_menu .item {
  flex: 0 0 auto;
  width: 66px; 
  height: 66px; 
  background-color: #f0f0f0;
  display: flex; 
  justify-content: center; 
  align-items: center;
  font-size: 20px;
  font-weight: bold; 
}
#score_data_list {  font-family: "Noto Sans KR",sans-serif; font-size:10pt;}
#score_data_list .gamedate { width: 100%;  clear: both;  background: #f1f2f3;  position: relative;  overflow: hidden;  height: 40px;  margin: 9px 0px;  text-align: center;  font-size: 13px;  color: #666;  vertical-align: middle;}
#score_data_list .gameresulttit { cursor: pointer;}
#score_data_list .game {    width: 100%;    left: 0;    top: 0;    background-color: #f8f8f8;    color: #666;    font-weight: bold;    line-height: 30px;    text-align: left;    padding-left: 5px;    font-size: 11px;    border-bottom: 1px solid #f1f2f3;}
#score_data_list .homeName,
#score_data_list .awayName {margin-top: 3px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size: 12px;}
#score_data_list .score b{color: red;}
#score_data_list .leagueData {}
#score_data_list .at_img img, #score_data_list .ht_img img {  max-height: 19px;  margin-right: 10px;}
#score_data_list .flag {display: block;}
#score_data_list .flag img {  max-height: 35px; max-width: 47px;  vertical-align: middle; float: left; margin: 5px 10px 0 0;}
#score_data_list .country {  display: block;}
#score_data_list .league {  display: block;}
.score_content {font-site: 8pt}
.btn_tda {margin: 10px;}
.gameTime { flex: 0 0 56px; width: 47px;float: left;}
.teamName {  display: flex;  align-items: center; font-size: 9pt;}
.game_contents {width: calc(100% - 47px);}

#score_result {  font-family: "Noto Sans KR",sans-serif; font-size:10pt;}
#score_result .gamedate {  width: 100%;  clear: both;  background: #f1f2f3;  position: relative;  overflow: hidden;  height: 40px;  margin: 9px 0px;  text-align: center;  font-size: 13px;  color: #666;  vertical-align: middle;}
#score_result .game {    width: 100%;    left: 0;    top: 0;    background-color: #f8f8f8;    color: #666;    font-weight: bold;    line-height: 30px;    text-align: left;    padding-left: 5px;    font-size: 11px;    border-bottom: 1px solid #f1f2f3;}
#score_result .homeName,
#score_result .awayName {margin-top: 3px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size: 12px;}
#score_result .score b{color: red;}
#score_result .leagueData {}
#score_result .at_img img, #score_result .ht_img img {  max-height: 19px;  margin-right: 10px;}
#score_result .flag {display: block;}
#score_result .flag img {  max-height: 35px; max-width: 47px;  vertical-align: middle; float: left; margin-right: 10px;}
#score_result .country {  display: block;}
#score_result .league {  display: block;}

.switch-box .checkbox {
  position: relative;
  display: inline-block;
}

.switch-box .checkbox:after, .checkbox:before {
  font-family: FontAwesome;
  font-feature-settings: normal;
  -webkit-font-kerning: auto;
  font-kerning: auto;
  font-language-override: normal;
  font-stretch: normal;
  font-style: normal;
  font-synthesis: weight style;
  font-variant: normal;
  font-weight: normal;
  text-rendering: auto;
}

.switch-box .checkbox label {
  width: 60px;
  height: 30px;
  background: #ccc;
  position: relative;
  display: inline-block;
  border-radius: 30px;
  transition: 0.4s;
}

.switch-box .checkbox label:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  left: 0;
  top: -3px;
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.switch-box .checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.switch-box .checkbox input:hover + label:after {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

.switch-box .checkbox input:checked + label:after {
  left: 25px;
}

.switch-box .checkbox label {
  background: #bbb;
  height: 15px;
  width: 45px;
}

.switch-box .checkbox label:after {
  background: #fff;
  top: -4px;
  width: 22px;
  height: 22px;
}

.switch-box .checkbox input:checked + label {
  background: #bbb;
}

.switch-box .checkbox input:checked + label:after {
  background: #3498db;
  left: 25px;
}

tbody, tfoot, th, thead, tr {
    text-align: center !important;
    vertical-align: middle;
}
