.dialog-brackets-matches .dialog-fullscreen .dialog-header {
  position: sticky;
  left: 0px;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body {
  width: 100%;
  display: flex;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default {
  display: flex;
  width: auto;
  max-width: unset;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round {
  margin-right: 45px;
  margin-left: 15px;
  width: 200px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match {
  background: #f1f1f1;
  margin: 15px 0px;
  padding: 10px;
  flex: 0 0 auto;
  position: relative;
  border: 1px solid #f1f1f1;
  transition: border 0.3s ease;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match:hover {
  border-color: #a0a0a0;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match-player {
  flex: 1;
  width: 100%;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match-player-devider {
  flex: 0 0 100%;
  width: 100%;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match-url .btn {
  min-height: 42px;
  min-width: 42px;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match-url .btn-light {
  border: 1px solid #e4e7eb;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round-match.flex-v-center {
  flex: 1;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round .bracket-connector {
  display: none;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round:not(:first-child) .bracket-round-match.flex-v-center:before {
  content: "";
  height: 1px;
  width: 31px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateX(-100%);
  background: #a0a0a0;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round:not(:first-child) .bracket-round-match.flex-v-center:after {
  content: "";
  /*50% of the element + half of the offset + 2x1px border size */
  height: calc(50% + 17px);
  width: 1px;
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  background: #a0a0a0;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-round:not(:nth-last-child(2)) .bracket-round-match.flex-v-center .bracket-connector {
  display: block;
  height: 1px;
  width: 31px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(100%, -50%);
  background: #a0a0a0;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-save {
  flex: 0 0 auto;
  align-items: flex-end;
  align-content: flex-end;
  z-index: 2;
  width: 1px;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default .bracket-save .form-group {
  position: fixed;
  bottom: 30px;
  right: 50px;
  width: auto;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default.form-bracket-single {
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default.form-bracket-single .bracket-round {
  margin: 0px 15px;
  width: 100%;
  flex: 0 0 auto;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default.form-bracket-single .bracket-save {
  width: 100%;
}

.dialog-brackets-matches .dialog-fullscreen .dialog-body .form-default.form-bracket-single .bracket-save .form-group {
  position: relative;
  bottom: unset;
  right: unset;
}