/*!**************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss ***!
  \**************************************************************************************************************************************************************************************/
:root {
  --belt-grey: #B4B4B4;
  --belt-yellow: #EAD218;
  --belt-orange: #e2871c;
  --belt-green: #67C75A;
  --belt-white: #ffffff;
  --belt-blue: #2650FF;
  --belt-purple: #B03BC2;
  --belt-brown: #6F3519;
  --belt-black: #252525;
  --light-blue: #69A5FF;
}

.bracketView {
  padding-left: 20px;
}

.bracketView .round {
  width: 200px;
}

.bracketView .match-wrapper .match--tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  background: #56575b;
  z-index: 999;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  width: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bracketView .match-wrapper .match--tooltip p {
  margin: 0;
}

.bracketView .match-wrapper .match--tooltip::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #56575b;
  left: -8px;
  top: 33px;
  z-index: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bracketView .match-wrapper:hover .match--tooltip {
  left: calc(100% + 20px);
  opacity: 1;
  visibility: visible;
}

.bracketView .players .player--name {
  font-size: 12px;
}

.bracketView .players .player--team {
  font-size: 10px !important;
}

.scoreboard-mats__task {
  position: relative;
  padding: 6px 8px;
  background: #fff;
  border-radius: 2px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  border: 2px solid transparent;
  z-index: 1;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.scoreboard-mats__task:hover {
  background: rgba(6, 135, 255, 0.0784313725) !important;
}

.scoreboard-mats__task:hover {
  border: 2px solid rgba(6, 135, 255, 0.0784313725);
}

.scoreboard-mats__task.bg-white {
  background: #fff;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  cursor: pointer;
}

.scoreboard-mats__task:first-of-type {
  margin-top: 6px;
}

.scoreboard-mats__task:last-of-type {
  margin-bottom: 6px;
}

.scoreboard-mats__task:focus {
  outline: none;
}

.scoreboard-mats__task.task-hidden {
  display: none;
}

.scoreboard-mats__task .task-title {
  font-size: 12px;
  margin: 0 0 12px;
}

.scoreboard-mats__task .task-tag {
  background: #d0d0d0;
  padding: 1px 10px;
  border-radius: 20px;
  border: 1px solid #c5c5c5;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.scoreboard-mats__task .task-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.scoreboard-mats__task .task-footer span {
  display: block;
  font-size: 12px;
}

.scoreboard-mats__task .task-attention {
  position: relative;
  display: inline-block;
}

.scoreboard-mats__task .task-attention--image {
  width: 20px;
  height: 20px;
  display: block;
}

.scoreboard-mats__task .task-attention--tooltip {
  width: 225px;
  position: absolute;
  top: 27px;
  left: 0;
  background: #1d2327;
  z-index: 1;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.scoreboard-mats__task .task-attention:hover .task-attention--tooltip {
  opacity: 1;
  visibility: visible;
}

.keys-container {
  min-width: 720px;
}

.keys-container .keys-item {
  position: relative;
  margin-bottom: 20px;
}

.keys-container .keys-item--athlete {
  width: 250px;
  min-height: 50px;
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 10px;
  background: #fff;
  z-index: 2;
  position: relative;
}

.keys-container .keys-item--athlete .athlete {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.keys-container .keys-item--athlete .athlete .number {
  background: rgb(0, 46, 93);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
  color: #fff;
  font-size: 8px;
}

.keys-container .keys-item--athlete .team {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  display: block;
  color: #727272;
}

.keys-container .keys-item--divider {
  width: 100px;
  border-color: #0c1924;
  border-style: solid;
  border-width: 2px 2px 2px 0;
  border-radius: 0 10px 10px 0;
  height: 64px;
  position: absolute;
  left: 200px;
  top: calc(50% - 31px);
}

.keys-container .keys-item--divider__second {
  left: 300px;
  height: 138px;
  top: calc(50% - 79px);
}

.keys-container .keys-item--divider__third {
  height: 313px;
  top: calc(50% - 166px);
  left: 400px;
}

.keys-container .keys-item--divider__fourth {
  left: calc(50% - 55px);
  height: 2px;
  border-width: 1px;
  width: 111px;
  top: calc(50% - 15px);
}

.keys-container .keys-col-right .keys-item--athlete .athlete {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
}

.keys-container .keys-col-right .keys-item--athlete .athlete .number {
  margin-right: 0;
  margin-left: 6px;
}

.keys-container .keys-col-right .keys-item--athlete .team {
  text-align: right;
}

.keys-container .keys-col-right .keys-item--divider {
  border-width: 2px 0 2px 2px;
  border-radius: 10px 0 0 10px;
  left: -50px;
}

.keys-container .keys-col-right .keys-item--divider__second {
  left: -150px;
}

.keys-container .keys-col-right .keys-item--divider__third {
  left: 55px;
}

.keys-container .keys-col-right span.status {
  margin-left: 0;
}

@media all and (min-width: 960px) and (max-width: 1139px) {
  .keys-container .keys-item--divider {
    width: 50px;
  }
  .keys-container .keys-item--divider__second {
    left: 250px;
  }
  .keys-container .keys-item--divider__third {
    left: 300px;
  }
  .keys-container .keys-item--divider__fourth {
    left: calc(50% - 115px);
    width: 231px;
  }
  .keys-container .keys-col-right .keys-item--divider {
    left: -50px;
  }
  .keys-container .keys-col-right .keys-item--divider__second {
    left: -100px;
  }
  .keys-container .keys-col-right .keys-item--divider__third {
    left: 115px;
  }
}

@media all and (max-width: 959px) {
  .keys-container .keys-item--athlete {
    width: 200px;
  }
  .keys-container .keys-item--divider {
    width: 30px;
  }
  .keys-container .keys-item--divider__second {
    left: 230px;
  }
  .keys-container .keys-item--divider__third {
    left: 260px;
  }
  .keys-container .keys-item--divider__fourth {
    left: calc(50% - 72px);
    width: 146px;
  }
  .keys-container .keys-col-right .keys-item--divider {
    left: -30px;
  }
  .keys-container .keys-col-right .keys-item--divider__second {
    left: -60px;
  }
  .keys-container .keys-col-right .keys-item--divider__third {
    left: 72px;
  }
}

span.status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: bold;
  color: #3c434a;
  margin-left: 5px;
}

.payment-page .payment-page--card {
  background: #fff;
  max-width: 58%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

@media all and (max-width: 769px) {
  .payment-page .payment-page--card {
    max-width: 90%;
  }
}

.scoreboard-container {
  position: relative;
  height: 100%;
}

.scoreboard-container .scoreboard-mats__header {
  background: #1d2327;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 10px 10px;
}

.scoreboard-container .scoreboard-mats__header--link {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scoreboard-container .scoreboard-mats__header--link h3 {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

.scoreboard-container .scoreboard-mats__header--link img {
  width: 20px;
  margin-left: 10px;
}

.scoreboard-container .scoreboard-mats__list {
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: auto;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  padding: 0 6px;
  min-height: 400px;
}

.scoreboard-container .scoreboard-mats__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #1d2327;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  color: #fff;
}

.scoreboard-container .scoreboard-mats__footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

/* Apenas Firefox */

.custom-checkbox-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

.custom-checkbox-1 .tgl {
  display: none;
}

.custom-checkbox-1 .tgl,
.custom-checkbox-1 .tgl:after,
.custom-checkbox-1 .tgl:before,
.custom-checkbox-1 .tgl *,
.custom-checkbox-1 .tgl *:after,
.custom-checkbox-1 .tgl *:before,
.custom-checkbox-1 .tgl + .tgl-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.custom-checkbox-1 .tgl::-moz-selection,
.custom-checkbox-1 .tgl:after::-moz-selection,
.custom-checkbox-1 .tgl:before::-moz-selection,
.custom-checkbox-1 .tgl *::-moz-selection,
.custom-checkbox-1 .tgl *:after::-moz-selection,
.custom-checkbox-1 .tgl *:before::-moz-selection,
.custom-checkbox-1 .tgl + .tgl-btn::-moz-selection,
.custom-checkbox-1 .tgl::-moz-selection,
.custom-checkbox-1 .tgl:after::-moz-selection,
.custom-checkbox-1 .tgl:before::-moz-selection,
.custom-checkbox-1 .tgl *::-moz-selection,
.custom-checkbox-1 .tgl *:after::-moz-selection,
.custom-checkbox-1 .tgl *:before::-moz-selection,
.custom-checkbox-1 .tgl + .tgl-btn::-moz-selection {
  background: none;
}

.custom-checkbox-1 .tgl::-moz-selection, .custom-checkbox-1 .tgl:after::-moz-selection, .custom-checkbox-1 .tgl:before::-moz-selection, .custom-checkbox-1 .tgl *::-moz-selection, .custom-checkbox-1 .tgl *:after::-moz-selection, .custom-checkbox-1 .tgl *:before::-moz-selection, .custom-checkbox-1 .tgl + .tgl-btn::-moz-selection {
  background: none;
}

.custom-checkbox-1 .tgl::-moz-selection,
.custom-checkbox-1 .tgl:after::-moz-selection,
.custom-checkbox-1 .tgl:before::-moz-selection,
.custom-checkbox-1 .tgl *::-moz-selection,
.custom-checkbox-1 .tgl *:after::-moz-selection,
.custom-checkbox-1 .tgl *:before::-moz-selection,
.custom-checkbox-1 .tgl + .tgl-btn::-moz-selection,
.custom-checkbox-1 .tgl::selection,
.custom-checkbox-1 .tgl:after::selection,
.custom-checkbox-1 .tgl:before::selection,
.custom-checkbox-1 .tgl *::selection,
.custom-checkbox-1 .tgl *:after::selection,
.custom-checkbox-1 .tgl *:before::selection,
.custom-checkbox-1 .tgl + .tgl-btn::selection {
  background: none;
}

.custom-checkbox-1 span {
  margin-left: 10px;
  font-size: 16px;
}

.custom-checkbox-1 .tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox-1 .tgl + .tgl-btn:after,
.custom-checkbox-1 .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}

.custom-checkbox-1 .tgl + .tgl-btn:after {
  left: 0;
}

.custom-checkbox-1 .tgl + .tgl-btn:before {
  display: none;
}

.custom-checkbox-1 .tgl:checked + .tgl-btn:after {
  left: 50%;
}

.custom-checkbox-1 .tgl-flat + .tgl-btn {
  padding: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #c9c9c9;
  border: 4px solid #c9c9c9;
  border-radius: 2em;
  display: inline-block;
}

.custom-checkbox-1 .tgl-flat + .tgl-btn:after {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #f2f2f2;
  content: "";
  border-radius: 1em;
}

.custom-checkbox-1 .tgl-flat:checked + .tgl-btn {
  border: 4px solid #2271b1;
}

.custom-checkbox-1 .tgl-flat:checked + .tgl-btn:after {
  left: 50%;
  background: #2271b1;
}

.event-matches {
  position: relative;
}

.event-matches--header {
  margin-bottom: 20px;
  border-bottom: 2px solid #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-matches--header__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  gap: 7px;
  text-transform: uppercase;
  margin: 10px 0 0;
  border: 0;
  background: transparent;
  color: #135e96;
  cursor: pointer;
}

.event-matches--header__date--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.event-matches--header__date--time {
  font-size: 13px;
  color: #414141;
}

.event-matches--header__date img {
  width: 20px;
}

.event-matches--header__time {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.event-matches--wrap {
  display: grid;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  grid-auto-flow: column;
}

.event-matches--content {
  margin-left: 40px;
}

.event-matches--sidebar {
  visibility: visible;
  opacity: 1;
}

.event-matches--sidebar.active {
  visibility: visible;
  opacity: 1;
}

.event-matches--sidebar::after {
  width: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .event-matches--content {
    margin-left: 0;
  }
  .event-matches .event-matches--sidebar {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 10;
    background: rgb(255, 255, 255);
    width: 80%;
    left: -100%;
    top: 0;
    overflow-y: scroll;
    height: 100vh;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .event-matches .event-matches--sidebar.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  .event-matches .event-matches--sidebar__content {
    padding: 2rem 1rem;
    position: relative;
    background: #fff;
    z-index: 1;
  }
  .event-matches .event-matches--sidebar__overlay {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}

.match-item {
  padding: 0;
  margin-bottom: 20px;
}

.match-item__title {
  margin: 0;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1d2327;
  color: #fff;
  gap: 6px;
  padding: 6px 9px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

@media all and (max-width: 768px) {
  .match-item__title {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}

.match-item__nr {
  background: #1d2327;
  color: #fff;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
}

.match-item__tag {
  font-size: 10px;
  background: #dedede;
  color: #1d2327;
  padding: 2px 15px;
  border-radius: 10px;
  font-weight: 600;
}

.match-item__content {
  background: #fff;
  border: 1px solid #efefef;
  padding: 6px 10px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.match-item__content--athletes {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.match-item__content--athletes .athlete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.match-item__content--athletes .athlete--placement img {
  width: 25px;
}

.match-item__content--athletes .athlete--name {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

@media all and (max-width: 768px) {
  .match-item__content--athletes .athlete--name {
    font-size: 13px;
  }
}

.match-item__content--athletes .athlete--team {
  margin: 0;
  font-size: 13px;
}

@media all and (max-width: 768px) {
  .match-item__content--athletes .athlete--team {
    font-size: 11px;
  }
}

.match-item__content--athletes .athlete--winner {
  width: 12px;
  height: 12px;
  background: #006647;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.match-item__content--status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  width: 60px;
}

.match-item__content--status .status-title {
  font-size: 12px;
  font-weight: 600;
}

.match-item__status {
  width: 20px;
}

.dropdown-mats {
  position: absolute;
  z-index: 99;
  background: #fff;
  padding: 8px 10px;
  border-radius: 0 0 10px 10px;
  border: 2px solid #cecece;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.dropdown-mats--open {
  opacity: 1;
  visibility: visible;
}

.dropdown-mats__day {
  margin-bottom: 20px;
}

.dropdown-mats__day:last-of-type {
  margin-bottom: 0;
}

.dropdown-mats__title {
  margin: 0;
  border-bottom: 2px solid #dedede;
  padding-bottom: 5px;
}

.dropdown-mats__title span {
  font-size: 10px;
  background: #dedede;
  color: #1d2327;
  padding: 2px 15px;
  border-radius: 10px;
  margin-left: 10px;
}

.dropdown-mats__list {
  margin: 10px 0 0;
}

.dropdown-mats__item {
  border-bottom: 1px solid #f1f1f1;
  padding: 4px 0;
}

.dropdown-mats__item:last-of-type {
  border-bottom: 0;
}

.dropdown-mats__item button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #2271b1;
  font-weight: 500;
}

.dropdown-mats__item button span {
  font-size: 10px;
  background: #dedede;
  color: #1d2327;
  padding: 2px 15px;
  border-radius: 10px;
  margin-left: 10px;
}

.dropdown-mats__item button:hover {
  color: #065897;
}

.dropdown-bracket {
  position: fixed;
  top: 0;
  right: 0;
  background: #dedede;
  z-index: 99;
  height: 100%;
  width: 80%;
  max-width: 400px;
}

.dropdown-bracket__header {
  padding: 32px 15px 10px;
}

.dropdown-bracket__header h4 {
  margin-bottom: 0;
  font-size: 16px;
}

.dropdown-bracket__header a {
  background: #2271b1;
  color: #fff;
  display: block;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  padding: 10px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 300;
  margin: 12px 0 5px;
}

.dropdown-bracket__header a:hover {
  background: #095288;
}

.dropdown-bracket__container {
  overflow-y: auto;
  height: 100%;
  padding: 0 15px 130px;
  /* Chrome, Edge e Safari */
}

.dropdown-bracket__container::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.dropdown-bracket__container::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #DFE9EB;
}

.dropdown-bracket__container::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

.dropdown-bracket__container::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

.dropdown-bracket__container::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #433A3B;
}

.dropdown-bracket__container::-webkit-scrollbar-thumb:hover {
  background-color: #0E180B;
}

.dropdown-bracket__container::-webkit-scrollbar-thumb:active {
  background-color: #0E180B;
}

.dropdown-mats__overlay,
.dropdown-bracket__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.5);
  top: 0;
  left: 0;
  z-index: 98;
  cursor: pointer;
}
/*!**************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/select2/dist/css/select2.min.css ***!
  \**************************************************************************************************************************************************************************************************************/
.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/react-tooltip/dist/react-tooltip.min.css ***!
  \**********************************************************************************************************************************************************************************************************************/
:root {
  --rt-color-white:#fff;
  --rt-color-dark:#222;
  --rt-color-success:#8dc572;
  --rt-color-error:#be6464;
  --rt-color-warning:#f0ad4e;
  --rt-color-info:#337ab7;
  --rt-opacity:0.9;
  --rt-transition-show-delay:0.15s;
  --rt-transition-closing-delay:0.15s;
}

.core-styles-module_tooltip__3vRRp {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  will-change: opacity;
}

.core-styles-module_fixed__pcSol {
  position: fixed;
}

.core-styles-module_arrow__cvMwQ {
  background: inherit;
  position: absolute;
}

.core-styles-module_noArrow__xock6 {
  display: none;
}

.core-styles-module_clickable__ZuTTB {
  pointer-events: auto;
}

.core-styles-module_show__Nt9eE {
  opacity: 0.9;
  opacity: var(--rt-opacity);
  transition: opacity 0.15s ease-out;
  transition: opacity var(--rt-transition-show-delay) ease-out;
}

.core-styles-module_closing__sGnxF {
  opacity: 0;
  transition: opacity 0.15s ease-in;
  transition: opacity var(--rt-transition-closing-delay) ease-in;
}

.styles-module_tooltip__mnnfp {
  border-radius: 3px;
  font-size: 90%;
  padding: 8px 16px;
  width: max-content;
}

.styles-module_arrow__K0L3T {
  height: 8px;
  width: 8px;
}

[class*=react-tooltip__place-top] > .styles-module_arrow__K0L3T {
  transform: rotate(45deg);
}

[class*=react-tooltip__place-right] > .styles-module_arrow__K0L3T {
  transform: rotate(135deg);
}

[class*=react-tooltip__place-bottom] > .styles-module_arrow__K0L3T {
  transform: rotate(225deg);
}

[class*=react-tooltip__place-left] > .styles-module_arrow__K0L3T {
  transform: rotate(315deg);
}

.styles-module_dark__xNqje {
  background: #222;
  background: var(--rt-color-dark);
  color: #fff;
  color: var(--rt-color-white);
}

.styles-module_light__Z6W-X {
  background-color: #fff;
  background-color: var(--rt-color-white);
  color: #222;
  color: var(--rt-color-dark);
}

.styles-module_success__A2AKt {
  background-color: #8dc572;
  background-color: var(--rt-color-success);
  color: #fff;
  color: var(--rt-color-white);
}

.styles-module_warning__SCK0X {
  background-color: #f0ad4e;
  background-color: var(--rt-color-warning);
  color: #fff;
  color: var(--rt-color-white);
}

.styles-module_error__JvumD {
  background-color: #be6464;
  background-color: var(--rt-color-error);
  color: #fff;
  color: var(--rt-color-white);
}

.styles-module_info__BWdHW {
  background-color: #337ab7;
  background-color: var(--rt-color-info);
  color: #fff;
  color: var(--rt-color-white);
}
