@import url(https://fonts.googleapis.com/css?family=Roboto:300);
@import url("https://fonts.googleapis.com/css?family=Raleway|Roboto");
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap);

body {
    background: rgb(8 50 89);
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: rgb(8 50 89);
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  opacity: .85;
}
.form .register-form {
  display: none;
}
.invalid-feedback {
    display: block;
    margin-bottom: 10px;
}
#outer {
    width: 350px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.action-form-btn {
    background: none;
}

.button_slide,
.action-form-btn {
    margin: 15px 0;
}
.button_slide a,
.action-form-btn {
    color: #FFF;
    border: 2px solid white;
    border-radius: 0px;
    padding: 18px;
    display: inline-block;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 white;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}
.slide_down:hover a,
.action-form-btn:hover {
    box-shadow: inset 0 100px 0 0 white;
    color: black !important;
    text-decoration: none;
}
.slide_down a,
.action-form-btn {
    color: white !important;
    width: 100%;
}
.multiple {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
    width: 400px !important;
}
.multiple .slide_down a,
.action-form-btn {
    width: fit-content;
}

/* bracket section */

.theme {
  position: absolute;
  width: 100%;
  /*min-height: 100vh;*/
}

.bracket {
  height: fit-content;
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 40px;
  margin: 5px;
}

.column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: space-around;
  align-content: center;
}

.match {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 300px;
  height: 62px;
  margin: 12px 24px 12px 0;
}
.match .match-top {
  border-radius: 2px 2px 0 0;
}
.match .match-bottom {
  border-radius: 0 0 2px 2px;
}
.match .team {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.match .team span {
  padding-left: 8px;
}
.match .team span:last-child {
  padding-right: 8px;
}
.match .team .score {
  margin-left: auto;
}
.match .team:first-child {
  margin-bottom: -1px;
}

.match-lines {
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin-top: 0px;
  right: -1px;
}
.match-lines .line {
  background: #bbb;
  position: absolute;
}
.match-lines .line.one {
  height: 1px;
  width: 12px;
}
.match-lines .line.two {
  height: 44px;
  width: 1px;
  left: 11px;
}
.match-lines.alt {
  left: -12px;
}

.match:nth-child(even) .match-lines .line.two {
  transform: translate(0, -100%);
}

.column:first-child .match-lines.alt {
  display: none;
}

.column:last-child .match-lines {
  display: none;
}
.column:last-child .match-lines.alt {
  display: block;
}

.column:nth-child(2) .match-lines .line.two {
  height: 88px;
}

.column:nth-child(3) .match-lines .line.two {
  height: 175px;
}

.column:nth-child(4) .match-lines .line.two {
  height: 349px;
}

.column:nth-child(5) .match-lines .line.two {
  height: 690px;
}

.column:nth-child(6) .match-lines .line.two {
  height: 1375px;
}
.column:nth-child(7) .match-lines .line.two {
  height: 2755px;
}
.theme-light .match-lines .line {
  background: #dadfe3;
}
.theme-light .team {
  background: #fff;
  border-color: #dadfe3;
  color: #708392;
}
.theme-light .winner-top .match-top,
.theme-light .winner-bottom .match-bottom {
  background: #fff;
  color: black;
  border-color: #dadfe3;
  z-index: 1;
}
.theme-light .match .seed {
  color: #9fafbf;
}
.theme-light .match .score {
  color: #9fafbf;
}
.theme-light .match .seed {
  font-size: 12px;
  min-width: 10px;
}
.theme-light .match .score {
  font-size: 14px;
}

.theme-dark {
  background: #0e1217;
  border-color: #040607;
}
.theme-dark .match-lines .line {
  background: #36404e;
}
.theme-dark .team {
  background: #182026;
  border-color: #232c36;
  color: #6b798c;
}
.theme-dark .winner-top .match-top,
.theme-dark .winner-bottom .match-bottom {
  background: #232c36;
  color: #e3e8ef;
  border-color: #36404e;
  z-index: 1;
}
.theme-dark .winner-top .match-top .score,
.theme-dark .winner-bottom .match-bottom .score {
  color: #03d9ce;
}
.theme-dark .match .seed {
  font-size: 12px;
  min-width: 10px;
}
.theme-dark .match .score {
  font-size: 14px;
}

.theme-dark-trendy {
  background: #2b5876;
  background: -webkit-linear-gradient(to right, #171721, #122b29);
  background: linear-gradient(to right, #171721, #122b29);
  border-color: #040607;
}
.theme-dark-trendy .match-lines .line {
  background: #36404e;
}
.theme-dark-trendy .team {
  background: rgba(50, 54, 65, 0.4);
  color: #6b798c;
  border: 2px solid transparent;
}
.theme-dark-trendy .team:first-child {
  margin-bottom: 2px;
}
.theme-dark-trendy .team:last-child {
  margin-top: 2px;
}
.theme-dark-trendy .winner-top .match-top,
.theme-dark-trendy .winner-bottom .match-bottom {
  background: #323641;
  color: #e3e8ef;
  z-index: 1;
}
.theme-dark-trendy .winner-top .match-top .score,
.theme-dark-trendy .winner-bottom .match-bottom .score {
  color: #03d9ce;
}
.theme-dark-trendy .match {
  margin-right: 48px;
}
.theme-dark-trendy .match .team .name {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.theme-dark-trendy .match .seed {
  display: none;
}
.theme-dark-trendy .match .match-top {
  border-radius: 0;
}
.theme-dark-trendy .match .match-bottom {
  border-radius: 0;
}
.theme-dark-trendy .match-lines {
  opacity: 0.75;
  right: -12px;
}
.theme-dark-trendy .match-lines .line {
  background: #03d9ce;
}
.theme-dark-trendy .match-lines.alt {
  left: -24px;
}
.theme-dark-trendy .team {
  overflow: hidden;
}

.disable-image .image,
.disable-seed .seed,
.disable-name .name,
.disable-score .score {
  display: none !important;
}

.disable-borders {
  border-width: 0px !important;
}
.disable-borders .team {
  border-width: 0px !important;
}

.disable-seperator .match-top {
  border-bottom: 0px !important;
}
.disable-seperator .match-bottom {
  border-top: 0px !important;
}
.disable-seperator .team:first-child {
  margin-bottom: 0px;
}

.match-top .image img {
  width: 25px;
  max-width: 25px;
  min-width: 25px;
}

.match-bottom .image img {
  width: 25px;
  max-width: 25px;
  min-width: 25px;
}

.theme-switcher {
  position: absolute;
  top: -140px;
  right: 20px;
  padding: 24px;
  border: 1px solid #c0cfdd;
  background: #6b798c;
}
.theme-switcher h2 {
  color: #e1e8ef;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px 0;
}
.theme-switcher button {
  line-height: 1em;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 2px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #6b798c;
  color: #ccc;
  border: 1px solid #eee;
}

.theme-light .theme-switcher #theme-light,
.theme-dark .theme-switcher #theme-dark,
.theme-dark-trendy .theme-switcher #theme-dark-trendy,
.theme-none .theme-switcher #theme-none {
  background: #505b69;
  border-color: #4a5461;
}

#theme-none a {
  color: white;
}

#theme-none a:hover {
  text-decoration: none;
}

/* bracket section */

.move,
.remove.added,
.radio.added {
  display: none;
  cursor: pointer;
}

.change-position {
  display: none;
  cursor: pointer;
}

.remove.added,
.radio.added {
  position: absolute;
}

.remove.added {
  left: 0;
}

.radio.added {
  right: 0;
}

.team .name {
  white-space: nowrap;
}

.team.added {
  padding: 0 30px 0 18px;
}

.move.checked {
  display: none !important;
}

.champion .match-lines {
  left: -18px;
}

.champion .name,
.champion .score {
  font-size: 22px !important;
}

.champion .radio.added {
  display: none !important;
}

.champion .match {
  min-width: 400px;
  max-width: 400px;
}

.login-page img {
  width: 130px;
  margin-bottom: 45px;
}

.global-logo {
    display: flex;
    column-gap: 15px;
    justify-content: center;
    align-items: center;
}

.global-logo img {
  width: 150px;
}

.global-logo .primary-logo {
  height: 150px;
}

.champions-podium {
  display: none;
}

/* podium */

.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 75px;
}

.podium__item {
  width: 200px;
}

.podium__rank {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: #fff;
}

.podium__city {
  text-align: center;
  padding: 0 .5rem;
}

.podium__number {
  width: 27px;
  height: 75px;
}

.podium .first {
  min-height: 300px;
  background: #FFD100;
}

.podium .second {
  min-height: 200px;
  background: #003DA5;
}

.podium .third {
  min-height: 100px;
  background: #C8102E;
}

.podium__city {
  color: white;
  font-size: 20px;
}

.show-diagram,
.first-add {
  display: none;
}

.first-entry .change-position {
  display: none;
}

/* podium */

.action-buttons-elements {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.news-element {
  background: #fbfbfb;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px 1px;
}

.news-element img {
  border-radius: 10px;
}

.news-day {
  color: white;
}

/* slider */

.mySwiper {
    padding-bottom: 45px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    max-height: 250px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* slider */

.primary-color {
  color: #FF9232;
}

.section-100 {
  padding: 20px 0px;
}

.btn {
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 50px;
  text-transform: uppercase;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.btn.btn-lg {
  padding-left: 30px;
  padding-right: 30px;
}

.blog-card {
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 0 5px 30px -3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 30px -3px rgba(0, 0, 0, 0.16);
}

.image-container {
    cursor: pointer;
}

.blog-card .blog-container {
  padding: 15px;
  text-align: left;
}

.swiper-button-next::after, .swiper-button-prev::after {
  color: white;
  font-size: 25px;
}

.badge {
  padding: 5px;
}

.badge-info {
  cursor: pointer;
  padding: 10px;
}

.badge-info:hover {
  opacity: .9;
}

.text-muted {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.user-data-table,
.add-people-by-club {
  background: white;
  border-radius: 15px;
  padding: 25px;
}

.add-people-by-club {
  margin-bottom: 40px;
  row-gap: 15px;
  display: flex;
  flex-direction: column;
}

.table-people-img {
  width: 40px;
}

.people-inputs-container {
  display: flex;
  column-gap: 15px;
}

.people-inputs-element,
.people-inputs-element input {
  width: 100%;
}

.buttons-index-actions {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}

.buttons-index-actions #outer {
  width: fit-content;
  margin: 0;
}

.updateBtn {
  display: none;
}

.show-people-victory {
  text-align: center;
}

.show-people-victory img {
  width: 100px;
  margin-bottom: 10px;
}

.button_slide a.female-group {
    border: 2px solid #ff7777;
    color: #ff7777 !important;
}

.initial-page-actions {
    flex-direction: column;
    align-items: center;
    column-gap: unset;
}

.initial-page-actions #outer {
    margin: unset;
    width: 350px;
}

#outer.archive-content {
    width: unset;
}

.global-container {
    display: flex;
    flex-direction: column;
}

.right-info {
    display: flex;
    padding: 40px;
    column-gap: 40px;
}

.right-top-info,
.right-middle-info,
.right-bottom-info {
    border: 1px solid black;
    position: relative;
    background: #fff;
    border-color: #dadfe3;
    padding: 5px 10px;
    font-size: 17px;
    white-space: nowrap;
    border-radius: 2px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-top-info span,
.right-middle-info span,
.right-bottom-info span {
    font-size: 18px;
    font-weight: 600;
}

.right-middle-info,
.right-bottom-info {
    padding: 10px;
    line-height: 2;
}

.champion .match .match-top {
    border-radius: 2px;
}

.theme-light .winner-top .match-top,
.theme-light .team.match-top {
    background: linear-gradient(90deg, rgba(204,51,51,0.35) 0%, rgba(204,51,51,0.15) 50%, rgba(255,255,255,0) 100%);
    border: none;
    color: white;
}

.theme-light .winner-top .match-bottom,
.theme-light .team.match-bottom {
    background: linear-gradient(90deg, rgba(0,129,216,0.35) 0%, rgba(0,129,216,0.15) 50%, rgba(255,255,255,0) 100%);
    border: none;
    color: white;
}

.theme-light .match .score {
    color: #d4d4d4;
}

.champion .team.match-bottom,
.champion .team.match-top {
    background: linear-gradient(90deg, rgba(112,131,146,0.3) 0%, rgba(112,131,146,0.15) 70%, rgba(255,255,255,0) 100%);
}

.champion .match .score {
    color: #9fafbf;
}

.bottom-section-info {
    display: flex;
    flex-direction: column;
}

.left-info h2 {
    padding: 40px 0 0 40px;
    color: white;
    margin: 0;
}

.left-info .bracket {
    padding: 0 40px 40px 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.custom-input-section {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 8px;
}

.custom-input-section label {
    margin: 0;
    color: white;
}

/* notifications */

.notification-section {
	position: fixed;
    top: 20px;
    right: 20px;
    width: fit-content;
    z-index: 10000000;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
	opacity: .97;
}

.notification .status {
	padding: 15px;
	border-radius: 8px;
	display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.notification .status.success {
	background-color: #66CC99;
}

.notification .status.warning {
	background-color: #FFCC33;
}

.notification .status.error {
	background-color: #CC3333;
}

.notification .text-notification {
	color: white;
	font-size: 14px;
}

.text-error {
    display: block;
    padding: 5px 10px;
    background: #CC3333;
    width: fit-content;
    border-radius: 0 15px;
    color: white;
    margin-bottom: 8px;
}

.flex {
	display: flex;
}

.notification i::before{
	color: white;
    font-size: 20px;
}

/* notifications */