.select_game_day_content {
   position: sticky;
   width: 100%;
   padding: 13px 0px 6px;
   top: 0px;
   border-bottom: 1px solid #252525;
   background-color: #070707;
   box-shadow: 0px 14px 18px #000000;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 8px;
   z-index: 2;
}
.select_game_day_content .button_select_date {
   width: 32px;
   height: 32px;
   padding: 2px;
   margin: 3px 2px 0px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: transparent;
   transition: background-color 0.2s ease;
   cursor: pointer;
}
.select_game_day_content .button_select_date:hover {
   background-color: #ffffff0f;
}

.select_game_day_content .date_content {
   position: relative;
   min-width: calc(10ch + 30px);
   width: max-content;
   padding: 12px 18px 9px;
   background-color: transparent;
   border: 1px solid transparent;
   border-radius: 6px;
   box-shadow: 0px 1px 10px transparent;
   color: var(--color_titles);
   font: normal normal 600 14px/18px Segoe UI;
   font-family: inherit;
   letter-spacing: 0px;
   text-align: center;
   overflow: auto;
   transition: all 0.25s ease;
}
.select_game_day_content .date_content:focus {
   background-color: #0B0B0B;
   border: 1px solid #363636;
   box-shadow: 0px 1px 10px #00000099;
   color: var(--color_main);
}
.select_game_day_content .date_content.invalid,
.select_game_day_content .date_content.invalid:focus {
   color: var(--invalid_color);
}

.select_game_day_content .show_qtd_matchs_date {
   position: relative;
   width: 100%;
   color: var(--color_main);
   font: normal normal 600 13px/18px Segoe UI;
   font-family: inherit;
   letter-spacing: 0px;
   text-align: center;
}