.battle_pass_progress_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.battle_pass_progress_info h2 {
  font-family: 'Fritz';
  text-transform: uppercase;
  font-size: 25px;
  color: #ffdf00;
  margin: 0;
  text-shadow: 0 0 5px #ffdf00, 0 0 10px #ffdf00;
  animation: glow 1.5s infinite alternate;
}

.battle_pass_progress_info .main_item {
  /* font-family: 'Fritz';
  text-transform: uppercase;
  font-size: 25px;
  color: #ffdf00;
  margin: 0;
  text-shadow: 0 0 5px #ffdf00, 0 0 10px #ffdf00;
  animation: glow 1.5s infinite alternate; */
  color: brown;
  font-size: 18px;
  margin: 0;
  font-family: 'Fritz';
}

.battle_pass_progress_info .exp {
  font-family: 'Fritz';
  opacity: 0.85;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  margin: 5px 0;
  animation: bounce 1.5s infinite;
  display: flex;
  align-items: center;
  gap: 7px;
}

.battle_pass_progress_info .exp img {
  width: 35px;
  height: 35px;
}

.battle_pass_progress_info .bp_tooltip_wrapper {
  background: #ffc107;
  padding: 6px 13px;
  border-radius: 15px;
  display: flex;
  gap: 7px;
  border: 2px solid #ffffff40;
  display: none;
}

.battle_pass_progress_info .bp_tooltip_wrapper img {
  height: 20px;
  width: 20px;
}

.battle_pass_progress_info .bp_tooltip_wrapper span {
  font-weight: bold;
  font-family: 'Fritz';
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.battle_pass_progress_info .event_ending {
  font-family: 'Fritz';
  color: chocolate;
}

.battle_pass_container {
  display: flex;
  gap: 1rem;
}

.battle_pass_panel {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.battle_pass_button {
  font-size: 12px;
  padding: 10px;
  text-transform: uppercase;
  font-family: 'Fritz';
  cursor: pointer;
  border-radius: 3px;
  min-width: unset;
  height: unset;
  background-color: rgb(255 180 50 / 30%);
  color: white;
  border: 1px solid rgb(255 180 50 / 50%);
  transition: 0.25s;
}

.battle_pass_button:hover {
  border-color: #6aecfe;
  color: #ffffffeb;
  border-width: 1px;
  background: #36535d;
}

.battle_pass_button_mini {
  border-radius: 6px;
  padding: 4px 10px;
  text-transform: unset;
}

.battle_pass_section {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.battle_pass_section h2 {
  text-transform: uppercase;
  font-family: 'Fritz';
  letter-spacing: 1px;
  font-size: 13px;
  margin: 0;
}

.basic_pass_image {
  width: 135px;
  height: 135px;
}

.premium_pass_image {
  width: 135px;
  height: 135px;
}

.bp_scrollbar_container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem;
}

.bp_progress_wrapper {
  display: flex;
  gap: 10px;
  height: 36px;
}

.bp_progress_bar_mini {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
}

.bp_progress_bar_text_wrapper {
  padding: 0px 3px;
  padding-bottom: 3px;
  display: flex;
  justify-content: space-between;
}

.bp_progress_bar_text_wrapper .lvl {
  color: #fff;
  font-size: 13px;
  font-family: 'Fritz';
}

.bp_progress_bar_text_wrapper .exp {
  color: brown;
  font-size: 13px;
  font-family: 'Fritz';
}

.bp_progress_bar_line_wrapper {
  border-radius: 10px;
  background: rgb(255 248 220 / 50%);
}

.bp_progress_line {
  width: 100%;
  height: 7px;
  background: #ff9800;
  border-radius: 10px;
  /* border: 1px solid #f44336; */
}

.bp_items_list {
  display: flex;
  gap: 10px;
}

.bp_item {
  position: relative;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgb(255 180 50 / 50%);
  background: url(../../../public/glory/images/slider-bg.jpg) no-repeat center;
  background-size: cover;
}

.bp_item .item_wrapper {
  flex-direction: column;
  gap: 10px;
}

.bp_lock_icon {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 5px;
}

/* Загальна ширина вертикального скролбару */
.bp_scrollbar_container::-webkit-scrollbar {
  width: 8px;
  /* Зменшення ширини скролбару */
}

/* Висота горизонтального скролбару */
.bp_scrollbar_container::-webkit-scrollbar {
  height: 8px;
  /* Зменшення висоти скролбару */
}

.bp_scrollbar_container::-webkit-scrollbar-track {
  background: transparent;
  margin-left: 1rem;
  margin-right: 1rem;
}

.bp_scrollbar_container::-webkit-scrollbar-thumb {
  background-color: rgb(255 180 50 / 50%);
  /* Колір скроллбару */
  border-radius: 4px;
  /* Закруглення */
  border: 2px solid transparent;
  /* Зазор, щоб забезпечити мінімалістичний вигляд */
  background-clip: padding-box;
  /* Забезпечує правильне відображення заокруглень */
}

.bp_scrollbar_container::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255 180 50 / 75%);
}

.bp_item .item_title_name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 130px;
  text-align: center;
}
