:root {
  --primary-fantasy-color: #0232ff;
  --secondary-fantasy-color: #00004b;
}

.fRoundCarouselContainer {
  margin: 0 30px 15px;
}

.fantasySquad__lg .fRoundCarouselContainer {
  margin: 0 40px 30px;
}

#joomsport-container .fRoundCarousel {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fRoundCarousel li {
  border: 1px solid #e0e0e0;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.fRoundCarousel li.fRoundActive {
  background-color: #66bb6a;
  border-color: #66bb6a;
  color: #ffffff;
}

.fRoundCarousel_round {
  font-size: 16px;
  font-weight: 700;
}

.fRoundCarousel_points {
  font-size: 16px;
  font-weight: 700;
}

/* Pitch */
.fantasySquad {
  margin-bottom: 30px;
}

.fantasySquadHeader {
  margin-bottom: 30px;
}

.fantasySquadHeaderInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 10px;
}

.fantasySquad__lg .fantasySquadHeaderInfo {
  flex-direction: row;
  gap: 20px;
  max-width: 100%;
  padding: 0 20px;
}

.fantasySquadHeaderWarn {
  display: none;
  margin: 15px 10px 0;
  border-left: 2px solid #f0c100;
  padding: 15px;
  background-color: #fcf9e7;
  color: #757575;
}

.fantasySquad__lg .fantasySquadHeaderWarn {
  margin: 20px 20px 0;
}

.fantasySquadWrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.fantasySquadWrapper::before,
.fantasySquadWrapper::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  width: 50px;
  aspect-ratio: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fantasySquadWrapper::before {
  border-radius: 5px 0 0 5px;
  background-color: #546e7a;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 1;
}

.fantasySquadWrapper::after {
  background: center no-repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" width="20px" height="20px" viewBox="0 0 512 512"><path d="M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"/></svg>');
  z-index: 1;
  animation: hand 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.fantasySquadWrapper.tipsEnabled::before,
.fantasySquadWrapper.tipsEnabled::after {
  opacity: 1;
  visibility: visible;
}

@keyframes hand {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fantasySquadWrapper_inner {
  min-width: 600px;
  padding: 70px 20px 30px;
  background-color: #1b5e20;
  background: linear-gradient(
    90deg,
    rgba(27, 94, 32, 0.85) 0,
    #1b5e20 10%,
    #1b5e20 90%,
    rgba(27, 94, 32, 0.85) 100%
  );
}

.fantasySquad__edit .fantasySquadWrapper_inner {
  padding-top: 30px;
}

.scrollable .fantasySquadWrapper_inner {
  cursor: grab;
}

.scrollable .fantasySquadWrapper_inner:active {
  cursor: grabbing;
}

.fantasySquadWrapper__loading {
  pointer-events: none;
}

.fantasySquadWrapper__loading:before,
.fantasySquadWrapper__loading:after {
  content: "";
  position: absolute;
  opacity: 1;
  visibility: visible;
}

.fantasySquadWrapper__loading:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(117, 117, 117, 0.5);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.fantasySquadWrapper__loading:after {
  top: 50%;
  left: 50%;
  display: block;
  width: 50px;
  aspect-ratio: 1;
  margin-top: -25px;
  margin-left: -25px;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, #fff 94%, #0000) top / 8px 8px no-repeat,
    conic-gradient(#0000 30%, #fff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: spin 1s infinite linear;
  z-index: 3;
}

@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}

.fantasySquadMain {
  margin-bottom: 10px;
}

.fantasySquad__lg .fantasySquadMain {
  margin-bottom: 20px;
}

.fantasySquadBench {
  min-height: 130px;
  margin: 0 -20px;
  padding-top: 10px;
  border-top: 2px dashed rgb(255, 255, 255, 0.15);
  background: url("../img/soccer-bench_seat.svg") center bottom repeat-x;
  background-size: contain;
}

#fantasySquadFormation {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  padding: 25px 0 10px;
  background: url("../img/soccer-pitch.svg") center bottom no-repeat;
  background-size: contain;
}

.fantasySquad__lg #fantasySquadFormation {
  gap: 25px;
  padding: 40px 0 15px;
}

.fantasySquadFormationPosition {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
}

.fantasySquad__lg .fantasySquadFormationPosition {
  gap: 30px;
}

.fantasyChPlayer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  min-width: 95px;
  min-height: 110px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
}

.fantasySquad__lg .fantasyChPlayer {
  width: 100px;
  min-width: 100px;
  min-height: 120px;
}

.fantasyChPlayer:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 2px;
  right: 2px;
  height: 2px;
  border-radius: 25px;
  background: linear-gradient(
    90deg,
    rgba(217, 217, 217, 0) 0,
    #000 35%,
    #000 65%,
    rgba(217, 217, 217, 0) 100%
  );
  filter: blur(2px);
  opacity: 0.3;
  pointer-events: none;
}

.fantasyChPlayer__notSelected {
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  overflow: hidden;
}

.fantasyChPlayer__notSelected:before {
  display: none;
}

.fantasyChPlayer__notSelected:after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: url("../img/player_default.png") center no-repeat;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
}

.fantasyChPlayerInner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.fantasyChPlayerInner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px 8px 0 0;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.fantasyChPlayer__empty .fantasyChPlayerInner:before {
  border-radius: 8px;
}

.fantasyChPlayer .tfItemPhoto {
  position: relative;
  padding: 5px 5px 0;
  text-align: center;
}

.fantasyChPlayer .tfItemPhoto img {
  position: relative;
}

#joomsport-container .tfItemPhoto img {
  max-width: 65px !important;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
}

#joomsport-container .fantasySquad__lg .tfItemPhoto img {
  max-width: 75px !important;
}

.fantasyChPlayer .tfItemInfo {
  position: relative;
}

.fantasyChPlayer .tfItemName {
  padding: 4px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: var(--primary-fantasy-color);
}

.fantasyChPlayer .tfItemTeam {
  padding: 4px;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: var(--secondary-fantasy-color);
}

.fantasyChPlayer .tfItemPrice {
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fdd835;
  background-color: var(--secondary-fantasy-color);
}

.fantasyChPlayer .tfItemPrice:before {
  content: "$ ";
}

.fantasyChPlayer .tfItemPos {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0;
  font-weight: 700;
  text-shadow: 0px 0px 2px rgb(0 0 0);
}

.fantasyChPlayer .tfItemPos:first-letter {
  font-size: 14px;
}

.fantasySquadMain .fantasyChPlayer .tfItemPos {
  display: none;
}

.fantasyChPlayer .tfItemCaptain {
  position: absolute;
  top: -8px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #424242;
  z-index: 1;
}

.fantasyChPlayer .tfItemPoints {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 28px;
  height: 28px;
  border: 2px solid #1e6023;
  border-radius: 50%;
  font-weight: 700;
  line-height: 24px;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
}

/* Menu */
.fantasyChPlayerMenu {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  align-content: space-around;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.fantasyChPlayerMenu__active {
  opacity: 1;
}

.fantasyChPlayerMenu__enable {
  pointer-events: auto;
}

.fantasyChPlayerMenu > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.fantasyChPlayerMenu .tfRemPlayerInner {
  background-color: #e53935;
}

.fantasyChPlayerMenu .tfRemPlayerInner:hover {
  background-color: #ef5350;
}

.fantasyChPlayerMenu .tfCaptainPlayerInner {
  text-transform: uppercase;
  background-color: #616161;
}

.fantasyChPlayerMenu .tfCaptainPlayerInner:hover {
  background-color: #757575;
}

.fantasyChPlayerMenu .tfReplacePlayerInner {
  position: relative;
  font-size: 0;
  background-color: #ffffff;
}

.fantasyChPlayerMenu .tfReplacePlayerInner:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 7px 10px 7px;
  border-color: transparent transparent #f44336 transparent;
  color: #f44336;
  transform: rotate(180deg);
}

.fantasySquadBench .fantasyChPlayerMenu .tfReplacePlayerInner:before {
  border-color: transparent transparent #4caf50 transparent;
  color: #4caf50;
  transform: rotate(0deg);
}

.fantasyChPlayerMenu .tfReplacePlayerInner:hover {
  background-color: #eeeeee;
}

/* Add card */
.fantasyChPlayer__empty {
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.fantasyChPlayer__empty:after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: url("../img/player_default.png") center no-repeat;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}

.fantasyChPlayer__empty:before {
  content: unset;
}

.fantasyChPlayer__empty:hover .fantasyChPlayerInner:before {
  background-color: rgba(255, 255, 255, 0.5);
}

.fantasyChPlayer__empty .fantasyChPlayerMenu {
  display: none;
}

.fantasyChPlayer__empty .ftSpanPlus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 24px;
  z-index: 1;
}

/* Change player */
.fantasyChPlayer__disabled {
  opacity: 0.8;
  filter: grayscale(60%);
  pointer-events: none;
}

.fantasyChPlayer__enabled
  .fantasyChPlayerMenu
  > div:not(.tfReplacePlayerInner) {
  display: none;
}

.fantasyChPlayer__enabled .fantasyChPlayerMenu {
  align-content: flex-start;
  justify-content: flex-end;
  backdrop-filter: none;
  background-color: transparent;
  opacity: 1;
  pointer-events: auto;
}

.fantasyChPlayer__selected .fantasyChPlayerInner:before {
  background-color: rgb(255, 241, 118, 0.7);
}

.fantasyChPlayer__selected .fantasyChPlayerMenu .tfReplacePlayerInner:before {
  content: "−";
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

/* Edit squad */
.fRoundEditBtn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#joomsport-container .fRoundEditBtn input {
  border: 1px solid #6c757d;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  background-color: #6c757d;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.1s ease-in-out;
}

#joomsport-container .fRoundEditBtn input:hover,
#joomsport-container .fRoundEditBtn input:focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.fantasySquad__edit .fantasyChPlayer {
  min-height: 125px;
  cursor: pointer;
}

#joomsport-container .fantasySquad__edit .tfItemPhoto img {
  max-width: 65px !important;
}

.fantasySquadForm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.fantasySquad__lg .fantasySquadForm {
  justify-content: space-evenly;
}

.fantasySquadFormBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.fantasySquad__lg .fantasySquadFormBlock {
  margin-right: auto;
  font-size: 20px;
}

.fantasySquadFormBlock_title {
  font-size: 14px;
  font-weight: 400;
}

.fantasySquad__lg .fantasySquadFormBlock_title {
  font-size: 16px;
}

.fantasySquadFormBlock .curPlayers,
.fantasySquadFormBlock .curBudget {
  font-size: 20px;
  font-weight: 700;
}

.fantasySquad__lg .fantasySquadFormBlock .curPlayers,
.fantasySquad__lg .fantasySquadFormBlock .curBudget {
  font-size: 24px;
}

#joomsport-container .fantasySquadFormBlock select {
  font-size: 16px;
  font-weight: 700;
}

/* Modal */
.fantasySquad-modal.modal {
  padding: 0;
  z-index: 10;
}

.fantasySquad-modal_header {
  border-bottom: 1px solid #eeeeee;
  padding: 20px;
}

.fantasySquad-modal_inner {
  max-height: 500px;
  margin: 15px 0;
  padding-left: 20px;
  padding-right: 5px;
  overflow: auto;
}

.fantasySquad-modal_inner table {
  width: 100%;
  table-layout: auto;
  border-spacing: 0;
  border-collapse: collapse;
  border: none;
}

.fantasySquad-modal_inner table tr:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}

.fantasySquad-modal_inner table td {
  border: none;
  padding: 3px 0;
  line-height: 1.2;
  vertical-align: middle;
}

.fantasySquad-modal_player-photo {
  width: 65px;
}

.fantasySquad-modal_player-photo img {
  max-width: 75px !important;
}

.fantasySquad-modal_player-info > div {
  padding: 0 10px;
}

.fantasySquad-modal_player-name {
  font-size: 16px;
  font-weight: 700;
}

.fantasySquad-modal_player-team {
  font-size: 14px;
  font-style: italic;
  color: #757575;
}

.fantasySquad-modal_player-pos {
  font-size: 14px;
  color: #757575;
}

.fantasySquad-modal_player-add {
  width: 70px;
  text-align: center;
}

.fantasySquad-modal_player-add input {
  width: 100%;
  border: 1px solid var(--secondary-fantasy-color);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  color: #fdd835;
  background-color: var(--secondary-fantasy-color);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.1s ease-in-out;
}

.fantasySquad-modal_player-add input:hover,
.fantasySquad-modal_player-add input:focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

/* Round */
.fantasyRound {
  --score-width: 120px;
  --theme-color: #2e7d32;
}

body #joomsport-container .fantasyRound-link {
  color: #000000;
}

.fantasyRound-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 1px solid #efefef;
  padding: 10px;
  line-height: 1.2;
  background-color: #ffffff;
  transition:
    margin 0.15s ease,
    box-shadow 0.15s ease,
    border 0.15s ease;
}

.fantasyRound-link:first-child {
  border-top: 1px solid #efefef;
}

.fantasyRound__lg .fantasyRound-link {
  flex-direction: row;
  align-items: stretch;
  padding-left: 15px;
  padding-right: 15px;
}

body #joomsport-container .fantasyRound-link:hover {
  border-left-color: var(--theme-color);
  border-right-color: var(--theme-color);
  box-shadow: 0 0.4rem 0.5rem 0 rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.fantasyRound__lg .fantasyRound-link:hover {
  margin-left: -5px;
  margin-right: -5px;
}

.fantasyRound-info {
  flex: 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  transition: color 0.15s ease-in-out;
}

.fantasyRound-link:hover .fantasyRound-info {
  color: var(--theme-color);
}

.fantasyRound-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px 10px;
  flex: 1 0 calc((100% - var(--score-width)) / 2);
  text-align: center;
  overflow: hidden;
}

.fantasyRound__lg .fantasyRound-team {
  flex-direction: row;
}

.fantasyRound__lg .fantasyRound-team:first-child {
  flex-direction: row-reverse;
}

.fantasyRound__lg .fantasyRound-team img {
  flex: 1 0 60px;
}

.fantasyRound-team .js_div_particName {
  display: block;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fantasyRound-score {
  flex: 0 0 var(--score-width);
  max-width: var(--score-width);
  padding: 0 10px;
  text-align: center;
}

.fantasyRound__lg .fantasyRound-score {
  font-size: 20px;
}

.fantasyRound-date {
  font-size: 14px;
  text-align: center;
}

.fantasyRound__lg .fantasyRound-date {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 120px;
  padding-right: 10px;
  text-align: left;
}

.fantasyRound__lg .fantasyRound-date:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #efefef;
}

/* Prediction */
.jsPredUsrTitle {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.jsPredUsrTitle > span {
  margin-left: 10px;
}

.jspred_message_login {
  color: #cc0000;
  border: 1px solid #cc0000;
  margin: 10px 0px;
  padding: 10px;
}

/* Scrollbar */
.fantasySquad .iScrollHorizontalScrollbar {
  position: absolute;
  top: 2px;
  left: 20px;
  width: calc(100% - 40px);
}

.fantasySquad .iScrollIndicator {
  height: 3px;
  border: 1px solid #9e9e9e;
  border-radius: 15px;
  background: #616161;
}

/* Tooltips */
.tippy-tooltip.jssport-theme {
  max-width: 280px;
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.tippy-tooltip.jssport-theme .tippy-content {
  text-align: left;
}

[x-placement="top"] .tippy-tooltip.jssport-theme .tippy-arrow {
  border-top-color: #ffffff;
}

[x-placement="bottom"] .tippy-tooltip.jssport-theme .tippy-arrow {
  border-bottom-color: #ffffff;
}

[x-placement="left"] .tippy-tooltip.jssport-theme .tippy-arrow {
  border-left-color: #ffffff;
}

[x-placement="right"] .tippy-tooltip.jssport-theme .tippy-arrow {
  border-right-color: #ffffff;
}
