/* Preloader */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.preloader {
  position: fixed;
  z-index: 100000000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  background-color: #fff;
  color: #222;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader__icon::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-table-tennis fa-w-16 fa-5x'%3E%3Cpath fill='currentColor' d='M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z' class=''%3E%3C/path%3E%3C/svg%3E");
  animation: spin 1s ease-in-out infinite;
}

.preloader--hidden {
  visibility: hidden;
  opacity: 0;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

@media (max-width: 767px) {
  html {
    background-color: #13192f;
  }
}

/* Angular */
/* ======= */
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

body {
  position: relative;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  background-color: #f2f3f7;
  max-width: 100%;
  overflow: hidden;
  overflow-y: auto;
  display: block;
  flex-wrap: nowrap;
  max-height: 100% !important;
}

body:after {
  position: fixed;
  z-index: -100;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  background: #2b3358;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.2s linear, 0.2s opacity linear;
}

body.open-right {
  overflow: hidden !important;
}

body.open-right:after {
  opacity: 0.5;
  z-index: 100;
  visibility: visible;
  transition: visibility 0.4s linear, 0.4s opacity linear;
}

body.open-right .active-tournaments {
  transform: translateX(0);
  visibility: visible;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12),
    0px 3px 5px rgba(0, 0, 0, 0.2);
}

body.open-right main,
body.open-right .main {
  overflow: hidden !important;
}

body.js-app-device main,
body.js-app-device .main {
  display: flex;
  height: auto;
  max-height: auto;
  overflow: visible;
}

body.js-app-device main.fixed-sidebar,
body.js-app-device .main.fixed-sidebar {
  height: auto;
  max-height: auto;
  overflow: visible;
  display: flex;
}

body.js-app-device .nav-sidebar {
  height: auto;
}

@media (max-height: 450px) {
  body main,
  body .main {
    display: flex;
    height: auto;
    max-height: auto;
    overflow: visible;
  }

  body main.fixed-sidebar,
  body .main.fixed-sidebar {
    height: auto;
    max-height: auto;
    overflow: visible;
    display: flex;
  }

  body .nav-sidebar {
    height: auto;
  }
}

@media (max-width: 767px) {
  body {
    background-color: #13192f;
  }

  body .nav-sidebar {
    transition: all 0.2s linear;
  }

  body .content-blocker {
    transition: visibility 0ms, opacity 0.2s;
    visibility: visible;
  }

  body .content-blocker.hiden {
    visibility: hidden;
    opacity: 0;
  }

  body.open-right-menu {
    overflow: hidden !important;
    background-color: #13192f;
  }

  body.open-right-menu .main-content {
    background-color: #f2f3f7;
  }

  body.open-right-menu .nav-sidebar {
    transform: translateX(0);
    transition: all 0.2s linear;
  }

  body.open-right-menu .main-content {
    transform: translateX(-80vw);
    transition: all 0.2s linear;
  }

  body.open-right-menu .main-content,
  body.open-right-menu main {
    overflow: hidden !important;
  }

  body .main-content {
    background-color: #f2f3f7;
  }

  body .main-content {
    transition: all 0.2s linear;
  }

  body main,
  body .main {
    display: block;
    height: auto;
    max-height: auto;
    overflow: visible;
  }

  body main.fixed-sidebar,
  body .main.fixed-sidebar {
    height: auto;
    max-height: auto;
    overflow: visible;
    display: block;
  }
}

body .red {
  color: #e5211a !important;
}

body .text-blue {
  color: #57618e !important;
}

body .footer-blue {
  color: #8b94c2 !important;
}

@media (max-width: 991px) {
  .container-md-full {
    max-width: 100%;
  }
}

/* Search field. */
/* ============= */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

div.pagination > ul > li.current > span {
  color: #fff;
  background-color: #e5211b;
}

.max-270 {
  max-width: 270px;
}

main,
.main {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
  width: 100%;
}

main.fixed-sidebar,
.main.fixed-sidebar {
  height: 100vh;
  max-height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 30px;
}

.pagination ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  z-index: 99999 !important;
}

.pagination ul li {
  margin-left: 2px;
  margin-right: 2px;
}

@media (max-width: 1200px) {
  .pagination ul li {
    margin-left: 2px;
    margin-right: 2px;
  }
}

@media (max-width: 980px) {
  .pagination ul li {
    margin-left: 2px;
    margin-right: 2px;
  }
}

.pagination ul li a,
.pagination ul li span {
  width: 51px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  background: #fcfcff;
  color: #57618e;
  transition: 0.3s all ease;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer !important;
}

@media (max-width: 1200px) {
  .pagination ul li a,
  .pagination ul li span {
    width: 46px;
    height: 26px;
    border-radius: 6px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .pagination ul li a,
  .pagination ul li span {
    width: 46px;
    height: 20px;
    border-radius: 6px;
    font-size: 12px;
  }
}

.pagination ul li a:hover {
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
}

.pagination ul li.curent a,
.pagination ul li.curent span {
  color: #fff;
  background-color: #3247b6;
  font-size: 12px;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
}

.pagination ul li.prev a,
.pagination ul li.next a {
  font-size: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(../img/prev-pag.svg);
}

.pagination ul li.next a {
  background-image: url(../img/next-pag.svg);
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}

.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}

.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}

.lh-tight {
  line-height: 1.25;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3247b6;
}

h2,
.h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  font-size: 32px;
  line-height: 34px;
}

h3 {
  font-size: 19px;
  line-height: 20px;
}

.subtitle {
  font-size: 18px;
  line-height: 20px;
  color: #8b94c2;
}

.subtitle .date {
  color: #e5211a;
}

.main-content {
  flex: 1 1 auto;
  overflow-x: hidden;
}

.main-content .fixed-sidebar {
  overflow-y: auto;
}

.post-single--main {
  display: block;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 30px;
}

.post-single--main .content {
  padding: 10px 15px 27px 15px;
}

.post-single--date {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #e5211a;
  letter-spacing: 0.4px;
}

.post-single--title {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 19px;
  line-height: 20px;
  color: #3247b6;
}

.post-single--content {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #666d78;
}

.post-single--image {
  padding-bottom: 60%;
  display: block;
  background-position: center;
  background-size: cover;
}

.collapse.navbar-collapse {
  max-width: 100%;
}

.logo {
  display: block;
  width: calc(100% + 30px);
  margin-left: -15px;
  text-align: center;
  padding-bottom: 10px;
}

.logo img {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.nav-sidebar {
  background-color: #13192f;
  overflow-x: auto;
  box-shadow: 2px 0px 7px rgba(64, 70, 122, 0.6);
  width: 208px;
  height: 100vh;
  max-height: 100%;
  margin-right: 0 !important;
}

.nav-sidebar .mCSB_inside > .mCSB_container {
  margin-right: 5px;
}

.nav-sidebar div.dropdown {
  margin-top: 40px;
}

.nav-sidebar-inner {
  padding: 15px;
}

.fixed-sidebar .nav-sidebar-inner {
  padding: 15px 5px 15px 15px;
  min-height: 100vh;
}

@media (max-width: 767px) {
  .fixed-sidebar .nav-sidebar-inner {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .nav-sidebar {
    width: 80px;
  }
}

@media (max-width: 767px) {
  .nav-sidebar {
    position: fixed;
    width: 80vw;
    max-width: 85vw;
    top: 0;
    right: 0;
    transform: translateX(100%);
    z-index: 1500;
    height: auto;
    max-height: 100%;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .nav-sidebar .navbar.navbar-right {
    margin-left: 15px;
    width: 50%;
  }

  .nav-sidebar .navbar.navbar-right .nav-item:nth-child(5) > a svg,
  .nav-sidebar .navbar.navbar-right .nav-item:nth-child(4) > a svg {
    padding-left: 3px;
  }
}

.nav-sidebar .navbar.navbar-right .navbar-nav {
  flex-wrap: wrap;
  max-width: 100%;
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item {
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 5px;
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 7px 10px 20px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #a7b0de;
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link {
    padding: 7px 0;
    font-size: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link svg {
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  .nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link {
    padding: 10px 7px 10px 10px;
    font-size: 11px;
    line-height: 16px;
  }
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link svg {
  color: transparent;
  min-width: 24px;
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background-color: #3247b6;
  border-radius: 12px;
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link.active svg {
  color: transparent;
  filter: brightness(0) invert(1);
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .nav-link:hover:not(.active):not(.dropdown-toggle.show) {
  background: #1e2440;
  border-radius: 12px;
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .nav-link.show {
  border-radius: 12px 12px 0 0;
  background: #1e2440;
  transition: 0.2s all ease;
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item.dropdown.show > a {
  border-radius: 12px 12px 0 0;
  background: #1e2440;
  transition: 0.2s all ease;
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item.dropdown.show
  ul.dropdown-menu {
  display: block;
  top: 100%;
  left: 0;
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item.dropdown
  .dropdown-item.active,
.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item.dropdown
  .dropdown-item:active {
  color: #fff;
  background-color: #3247b6;
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item.dropdown
  .dropdown-item.active
  svg,
.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item.dropdown
  .dropdown-item:active
  svg {
  color: transparent;
  filter: brightness(0) invert(1);
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item.dropdown
  .dropdown-item-text {
  color: #a7b0de;
  padding-left: 0;
}

@media (max-width: 996px) {
  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item.dropdown
    .dropdown-item-text {
    font-size: 0;
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item.dropdown
    .dropdown-item-text {
    font-size: 10px;
    display: inline-block;
    padding: 0.25rem;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }
}

.nav-sidebar .navbar.navbar-right .navbar-nav .nav-item .dropdown-menu {
  position: static;
  min-width: auto;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #1e2440;
  border: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 7px 12px 22px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #a7b0de;
  overflow: hidden;
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item {
    padding: 7px 0;
    font-size: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item
    svg {
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item {
    padding: 10px 7px 10px 10px;
    font-size: 11px;
    line-height: 16px;
  }
}

@media (max-width: 450px) {
  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item {
    font-size: 8px;
  }

  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item
    svg {
    margin-right: 2px !important;
  }
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item
  svg {
  color: transparent;
}

@media (max-width: 767px) {
  .nav-sidebar
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item
    svg {
    min-width: 30px;
  }
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item:hover,
.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item:focus {
  background: #3247b6;
  color: #fff;
}

.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item:hover
  svg,
.nav-sidebar
  .navbar.navbar-right
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item:focus
  svg {
  color: transparent;
  filter: brightness(0) invert(1);
}

.nav-sidebar .navbar-left {
  display: none;
}

@media (max-width: 767px) {
  .nav-sidebar .navbar-left {
    display: block;
    padding-right: 15px;
    border-right: 1px solid #57618e;
  }

  .nav-sidebar .navbar-left .nav-item {
    margin-bottom: 12px;
  }

  .nav-sidebar .navbar-left .nav-item > .nav-link {
    display: block;
    text-align: right;
    position: relative;
    font-weight: 800;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #a7b0de;
  }

  .nav-sidebar .navbar-left .nav-item > .nav-link.active {
    color: #fcfcff;
  }

  .nav-sidebar .navbar-left .nav-item > .nav-link.active:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #57618e;
    border-radius: 3px 0 0 3px;
    width: 4px;
    right: -15px;
  }

  .nav-sidebar .navbar-left .nav-item > .nav-link.disabled {
    color: #57618e;
  }
}

.nav-sidebar .btn {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .nav-sidebar .btn {
    padding-left: 3px;
    padding-right: 3px;
    letter-spacing: 0;
  }
}

@media (min-width: 992px) {
  .nav-sidebar.tab-style {
    width: 80px;
  }

  .nav-sidebar.tab-style .navbar.navbar-right .navbar-nav .nav-item .nav-link {
    padding: 7px 0;
    font-size: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .nav-link
    svg {
    margin: 0 !important;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .dropdown-menu
    .dropdown-item {
    padding: 7px 0;
    font-size: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .dropdown-menu
    .dropdown-item
    .dropdown-item-text {
    display: none;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .dropdown-menu
    .dropdown-item
    svg {
    margin: 0 !important;
  }

  .nav-sidebar.tab-style .btn {
    padding-left: 3px;
    padding-right: 3px;
    letter-spacing: 0;
  }

  .nav-sidebar.tab-style .socials {
    flex-direction: column;
  }

  .nav-sidebar.tab-style .logo .d-lg-block {
    display: none !important;
  }

  .nav-sidebar.tab-style .logo .d-md-block {
    display: block !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .nav-sidebar.tab-style {
    width: 180px;
  }

  .nav-sidebar.tab-style .logo .d-lg-block {
    display: block !important;
  }

  .nav-sidebar.tab-style .logo .d-md-block {
    display: none !important;
  }

  .nav-sidebar.tab-style .socials {
    flex-direction: row;
  }

  .nav-sidebar.tab-style .navbar.navbar-right .navbar-nav .nav-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 5px;
  }

  .nav-sidebar.tab-style .navbar.navbar-right .navbar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 7px 10px 10px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #a7b0de;
    justify-content: start;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .nav-link.active {
    color: #fff;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .nav-link
    svg {
    margin-right: 0.5rem !important;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 7px 8px 10px;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.4px;
    color: #a7b0de;
    overflow: hidden;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item
    .dropdown-item-text {
    color: #a7b0de;
    display: inline-block !important;
    font-size: 12px;
  }

  .nav-sidebar.tab-style
    .navbar.navbar-right
    .navbar-nav
    .nav-item
    .dropdown-menu
    .dropdown-item
    svg {
    color: transparent;
    margin-right: 6px !important;
  }
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .socials {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .socials {
    padding-top: 5px;
    margin-top: 15px;
    border-top: 1px solid #57618e;
  }
}

.socials li {
  margin: 7px 8px;
}

.socials li a {
  transition: 0.2s all ease;
}

.socials li a:hover {
  opacity: 0.8;
}

@media (max-width: 991px) {
  .nav-more-info {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .nav-more-info {
    margin-left: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #57618e;
  }
}

.nav-more-info .btn--menu {
  background-color: #e5211a;
  text-transform: uppercase;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s all ease;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.4),
    -2px -2px 5px rgba(255, 255, 255, 0.8), 1px 1px 4px rgba(60, 68, 98, 0.8);
  margin-top: 0;
}

.nav-more-info .btn--menu svg {
  margin-right: 8px;
}

@media (max-width: 767px) {
  .nav-more-info .btn--menu {
    box-shadow: -3px -3px 5px #222a46, 4px 4px 10px #080f2b;
  }
}

.nav-more-info .btn--menu:hover {
  background-color: #3247b6;
}

@media (max-width: 996px) {
  .nav-more-info .btn--menu {
    font-size: 0;
    padding: 7px 11px;
  }

  .nav-more-info .btn--menu svg {
    margin-right: 0;
  }
}

.nav-more-info button {
  border: none;
  padding: 0;
  margin-left: 20px;
  background-color: transparent;
}

@media (max-width: 1200px) {
  .nav-more-info button {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .nav-more-info button {
    margin-left: 0;
  }
}

.nav-more-info .sing_in {
  color: #57618e;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  padding: 0;
  margin-left: 20px;
  background-color: transparent;
}

@media (max-width: 1460px) {
  .nav-more-info .sing_in {
    font-size: 0;
  }
}

@media (max-width: 991px) {
  .nav-more-info .sing_in {
    margin-left: 5px;
  }
}

@media (max-width: 767px) {
  .nav-more-info .sing_in {
    font-size: 14px;
  }
}

.nav-more-info .sing_in svg {
  margin-left: 2px;
}

.nav-more-info .sing_in:hover {
  color: #3247b6;
}

.nav-more-info .language {
  position: relative;
}

.nav-more-info .language:hover .language-dropdown {
  display: block;
}

.nav-more-info .language .language-dropdown {
  padding: 15px;
  margin: 0;
  top: 100%;
  position: absolute;
  list-style-type: none;
  background-color: #fcfcff;
  border-radius: 12px;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  display: none;
  z-index: 50;
}

@media (max-width: 767px) {
  .nav-more-info .language .language-dropdown {
    padding: 10px;
  }
}

.nav-more-info .language .language-dropdown li {
  margin-bottom: 8px;
}

.nav-more-info .language .language-dropdown li:last-child {
  margin-bottom: 0;
}

.nav-more-info .language .language-dropdown .flag {
  background-size: contain;
  width: 29px;
  height: 17px;
  display: inline-block;
  background-image: url(../img/flags/united-33115.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.nav-more-info .language .language-dropdown .flag:hover {
  cursor: pointer;
  opacity: 0.8;
}

.nav-more-info .language .currentt {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.nav-more-info .language .currentt .flag {
  background-size: contain;
  width: 29px;
  height: 20px;
  display: inline-block;
  margin-right: 12px;
  background-image: url(../img/flags/united-33115.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.nav-more-info .language .currentt .flag:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  background-size: contain;
  background-image: url(../img/next-pag.svg);
  transform: rotate(90deg) translateX(-50%);
  background-repeat: no-repeat;
}

.top-nav {
  border-bottom: 1px solid #e5211a;
  margin-bottom: 15px;
}

.top-nav .navbar {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.top-nav .navbar .container-fluid {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 1200px) {
  .top-nav .navbar .container-fluid .col-auto {
    padding-left: 0 !important;
  }
}

.top-nav .navbar .navbar-nav > .nav-item {
  margin-left: 30px;
}

@media (max-width: 1460px) {
  .top-nav .navbar .navbar-nav > .nav-item {
    margin-left: 15px;
  }
}

@media (max-width: 1200px) {
  .top-nav .navbar .navbar-nav > .nav-item {
    margin-left: 8px;
  }
}

@media (max-width: 900px) {
  .top-nav .navbar .navbar-nav > .nav-item {
    margin-left: 1px;
  }
}

.top-nav .navbar .nav-link {
  position: relative;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #57618e;
  font-weight: 800;
  padding: 20px 4px;
}

@media (max-width: 1200px) {
  .top-nav .navbar .nav-link {
    font-size: 11px;
    line-height: 16px;
  }
}

@media (max-width: 900px) {
  .top-nav .navbar .nav-link {
    font-size: 10px;
    letter-spacing: -0.8px;
  }
}

.top-nav .navbar .nav-link:hover {
  color: #3247b6;
}

.top-nav .navbar .nav-link.active:after {
  position: absolute;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0px;
  background: #e5211a;
  border-radius: 3px 3px 0px 0px;
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  .top-nav .navbar-light .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
    font-weight: 700;
  }

  .top-nav .navbar-light .navbar-toggler:hover,
  .top-nav .navbar-light .navbar-toggler:focus {
    border: none;
    outline: none;
  }
}

@media (max-width: 767px) {
  .navbar-container {
    display: flex;
  }

  .navbar-container > nav {
    flex: 1 1 50%;
  }
}

.btn-back {
  transition: 0.3s all ease;
}

.btn-back.tab-btn {
  transform: rotate(180deg);
}

.footer--partner {
  background: #8b94c2;
  padding-bottom: 55px;
  padding-top: 10px;
}

@media (max-width: 450px) {
  .footer--partner {
    padding-bottom: 30px;
  }
}

.footer--partner h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer .copyright {
  background: #2b3358;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  padding: 15px 0;
}

.footer .copyright p {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  font-weight: 300;
  text-align: right;
  color: #8b94c2;
  margin: 0;
}

@media (max-width: 470px) {
  .footer .copyright p {
    text-align: center;
  }
}

.table-title {
  background: #f2f3f7 !important;
  font-size: 14px;
  line-height: 18px;
  color: #3247b6;
}

.table-title span,
.table-title div {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: block;
}

.table-has-title {
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.table-has-title .table-overflow-auto.mCustomScrollbar {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}

.table {
  background: #f2f3f7;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #57618e;
  --bs-table-striped-bg: #d5daf2;
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
}

.table.table-striped--yellow {
  --bs-table-bg: #ff9300;
  color: #fff;
}

.table-has-title .table {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}

.table > :not(caption) > * > * {
  border-bottom-width: 0;
  padding: 0.7rem 0.25rem;
}

.table b {
  font-weight: 800;
  font-size: 18px;
}

.table b.text-blue {
  color: #3247b6 !important;
}

.table td .circle {
  margin-bottom: -7.5px;
  margin-top: -7.5px;
  margin-right: 25px;
}

.table td a {
  text-decoration: none;
  color: inherit;
}

.table td a:hover {
  color: #3247b6;
}

.table .table-date {
  background-color: #fff;
  --bs-table-accent-bg: #fff;
  font-weight: 600;
}

.table .table-date > * {
  --bs-table-accent-bg: #fff;
  background-color: #fff;
  color: #e5211a;
  font-size: 14px;
  line-height: 18px;
}

.table .bg-grey th {
  background-color: #f3f4f8;
}

.table .text-blue {
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #3247b6;
}

.table > thead {
  color: #2b3358;
  font-size: 14px;
  line-height: 18px;
}

.table > thead th {
  background: #fff;
}

.table small {
  font-size: 9px;
}

.table .bg-white {
  background-color: #fff;
}

.table > :not(caption) > * > * {
  padding: 0.85rem 0.25rem;
}

.table tbody td {
  vertical-align: middle;
}

.table tbody td a {
  vertical-align: middle;
}

.table tbody td .player-photo {
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 2px 2px 10px rgba(188, 193, 218, 0.3);
}

.table tbody td .player-photo + div {
  display: inline-block;
}

.tabs-bottom-banner {
  display: block;
  margin-top: -7px;
}

.tabs-bottom-banner img {
  width: 100%;
}

.banner-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.banner-section a {
  display: block;
  text-align: center;
}

@media (max-width: 1200px) {
  .table-small-size .table > thead {
    font-size: 10px;
  }

  .table-small-size .table {
    font-size: 10px;
  }

  .table-small-size .table > :not(caption) > * > * {
    padding: 0.75rem 2px;
  }

  .table-small-size.table-overflow-auto .table {
    min-width: 320px;
  }
}

.btn {
  text-align: center;
  padding: 7px 25px;
  font-weight: 800;
  font-size: 13px;
  line-height: 16px;
  transition: 0.3s all ease;
}

.btn--full-width {
  width: 100%;
}

.btn--blue {
  background-color: #3247b6;
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: -3px -3px 5px #222a46, 4px 4px 10px #080f2b;
  border-radius: 12px;
}

.btn--blue:hover,
.btn--blue:focus {
  background-color: #fff;
  color: #3247b6;
}

.btn--blue-light {
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  margin-bottom: 30px;
  padding-top: 13.5px;
  padding-bottom: 13.5px;
}

.btn--full-width {
  width: 100%;
}

.btn--white {
  background-color: #f3f4f8;
  color: #e5211a;
  box-shadow: -3px -3px 4px #ffffff, 3px 3px 10px rgba(40, 51, 107, 0.3),
    6px 6px 16px rgba(53, 70, 138, 0.1), -6px -6px 10px #ffffff,
    inset 0px -4px 4px rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  line-height: 18px;
  padding: 6px 20px;
  text-transform: uppercase;
}

.btn--white:hover,
.btn--white:focus {
  background-color: #e5211a;
  color: #ffffff;
  box-shadow: none;
}

.btn--back {
  position: relative;
  padding-left: 40px;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  color: #3247b6;
  background-image: url(../img/prev-blue.svg);
  background-repeat: no-repeat;
  background-size: 8px 12px;
  background-position: 18px 50%;
}

.btn--back:hover,
.btn--back:focus {
  box-shadow: 4px 4px 5px rgba(188, 193, 218, 0.5), -3px -3px 5px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 2px rgba(60, 68, 98, 0.7);
  background-color: #f3f4f8;
  color: #3247b6;
  background-position: 10px 50%;
}

.circle {
  width: 30px;
  height: 30px;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  display: inline-block;
  border: 1px solid #fff;
  margin-right: 12px;
}

.circle--orange {
  background-color: #ff9300;
}

.circle--red {
  background-color: #e5211a;
}

.circle--green {
  background-color: #55b725;
}

.circle--blue {
  background-color: #3247b6;
}

.circle--l-blue {
  background-color: #38b5ea;
}

.circle--grey {
  background-color: #abafba;
}

.tabs-video .tab-pane {
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
}

.tabs-video .nav-tabs .nav-link {
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.4px;
  color: #57618e;
  font-weight: 600;
}

@media (max-width: 992px) {
  .tabs-video .nav-tabs .nav-link {
    letter-spacing: 0;
    font-size: 13px;
  }
}

.tabs-video .nav-tabs .nav-item.show .nav-link,
.tabs-video .nav-tabs .nav-link.active {
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  color: #3247b6;
}

.tabs-video iframe {
  max-width: 100%;
  width: 100% !important;
}

@media (max-width: 480px) {
  .best_players .col-6 {
    width: 100%;
  }
}

.best_players--single {
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: 0.2s all ease;
}

.best_players--single:hover {
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
}

.best_players--single .image {
  background-color: #f2f3f7;
  border: 5px solid #f2f3f7;
  margin-right: 12px;
  width: 80px;
  height: auto;
  overflow: hidden;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 50%;
}

.best_players--single .image span {
  display: block;
  background-size: cover;
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  background-position: 50% 50%;
  box-shadow: inset 2px 2px 4px rgba(92, 112, 139, 0.7),
    inset -2px -2px 5px #ffffff;
}

.best_players--single h4 {
  margin-bottom: 0;
  text-align: center;
  background-color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #3247b6;
}

.best_players--single .info {
  padding: 7px 5px 5px 10px;
}

.best_players--single .info p {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #8b94c2;
}

.best_players--sub {
  margin-bottom: 30px;
}

.best_players--sub .subtitle {
  margin-bottom: 0;
}

.best_players h2 + .best_players--sub {
  margin-top: -10px;
}

.news-block {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .news-block {
    margin-top: 10px;
  }
}

.news-block--single {
  margin-bottom: 30px;
}

.news-block--single a {
  display: block;
  text-decoration: none;
}

.news-block--single a:hover h3 {
  color: #57618e;
}

.news-block--single h3 {
  text-decoration: none;
  font-weight: bold;
  font-size: 19px;
  line-height: 20px;
  margin-bottom: 7px;
  color: #3247b6;
  transition: 0.3s all ease;
}

.news-block--single p.news-date {
  margin-bottom: 7px;
  color: #e5211a;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
}

.news-block--single p:not(.news-date) {
  color: #57618e;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .news-block .btn {
    margin-top: 15px;
  }
}

p.news-date {
  margin-bottom: 7px;
  color: #e5211a;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
}

.news-block-images--single {
  margin-bottom: 30px;
  padding-top: 10px;
}

.news-block-images--single > div {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  background-color: #f2f3f7;
}

.news-block-images--single a {
  display: block;
  text-decoration: none;
}

.news-block-images--single h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.news-block-images--single h3 a {
  color: #3247b6;
}

.news-block-images--single p:not(.news-date) {
  font-weight: 500;
  font-size: 15px;
  color: #666d78;
  margin-bottom: 0;
}

.news-block-images--single-image {
  display: block;
  padding-bottom: 86%;
  background-size: cover;
  background-position: center;
}

.news-block-images--single-content {
  display: block;
  padding: 7px 14px 20px;
}

@media (max-width: 480px) {
  .our_team .col-6 {
    width: 100%;
  }
}

.our_team--vs {
  text-align: center;
}

@media (max-width: 767px) {
  .our_team--vs {
    font-size: 26px;
  }
}

.our_team--vs-contaner {
  width: 15%;
}

.our_team--single {
  background: #f2f3f7;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  padding: 5px 15px 15px;
  margin-bottom: 30px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.our_team--single.heap {
  background: #fff;
  padding-bottom: 35px;
  overflow: visible;
  margin-top: 40px;
}

.our_team--single.heap .our_team--image {
  width: 210px;
  margin-top: -40px;
  margin-bottom: 20px;
}

.our_team--single.heap p {
  font-size: 18px;
  line-height: 26px;
}

.our_team--single .number {
  display: table;
  background: #fcfcff;
  box-shadow: inset 0px 1px 3px rgba(87, 97, 142, 0.39),
    inset 0px 2px 4px rgba(92, 112, 139, 0.1), inset 0px -2px 5px #ffffff;
  border-radius: 12px;
  margin: 10px auto 0;
  min-width: 70px;
  text-align: center;
  line-height: 38px;
  color: #e5211a;
  font-size: 14px;
}

.our_team--single h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 20px;
  color: #3247b6;
  font-weight: 700;
}

@media (max-width: 767px) {
  .our_team--single h3 {
    font-size: 16px;
    line-height: 18px;
  }
}

.our_team--single p {
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #8b94c2;
  margin-left: -15px;
  margin-bottom: -15px;
  width: calc(100% + 30px);
  background-color: #fff;
  padding: 7px 15px 8px;
  margin-top: 5px;
}

.our_team .flag-state {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

.our_team--image {
  overflow: hidden;
  border-radius: 50%;
  border: 6px solid #f2f3f7;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 177px;
  height: auto;
  margin-bottom: 5px;
  max-width: 100%;
}

.our_team--image span {
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  box-shadow: inset 2px 2px 4px rgba(92, 112, 139, 0.7),
    inset -2px -2px 5px #ffffff;
}

.active-tournaments {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  padding: 20px;
  width: 270px;
  background: #f3f4f8;
  overflow-x: auto;
  z-index: 555;
  max-height: 100%;
  transform: translateX(100%);
  visibility: hidden;
  transition: visibility 0.4s linear, transform 0.4s linear;
}

.active-tournaments > h3 {
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #8b94c2;
}

.active-tournaments--single {
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 11px 11px 22px;
  transition: 0.2s all ease;
}

.active-tournaments--single:hover {
  cursor: pointer;
  box-shadow: none;
}

.active-tournaments--single h3 {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.active-tournaments--single p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding-left: 4px;
}

.active-tournaments--single p.info {
  color: #8b94c2;
  margin-bottom: 8px;
}

.active-tournaments--single p.players {
  color: #3247b6;
}

.btn-open-right {
  border: none;
  background: #f3f4f8 url(../img/ic_PLST.svg) 50% 50% no-repeat;
  background-size: 24px 24px;
  padding: 0;
  width: 30px;
  height: 30px;
  box-shadow: -3px -3px 4px #ffffff, 3px 3px 10px rgba(40, 51, 107, 0.3),
    6px 6px 16px rgba(53, 70, 138, 0.1), -6px -6px 10px #ffffff,
    inset 0px -4px 4px rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: 0.2s all ease;
}

.btn-open-right:hover {
  box-shadow: -3px -3px 4px #ffffff, 3px 3px 10px rgba(40, 51, 107, 0.4),
    6px 6px 16px rgba(53, 70, 138, 0.2), -6px -6px 10px #ffffff,
    inset 0px -4px 4px rgba(255, 255, 255, 0.7);
}

.calendar-wrapper {
  margin-bottom: 30px;
}

.calendar-wrapper table {
  width: 100%;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.calendar-wrapper table thead {
  bottom: 100%;
  position: absolute;
  visibility: hidden;
}

.calendar-wrapper table td {
  text-align: center;
  background: #f3f4f8;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #57618e;
  padding-top: 10px;
  padding-bottom: 10px;
}

.calendar-wrapper table td.not-current {
  color: #a7b0de;
}

.calendar-wrapper table td a {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #57618e;
  text-decoration: none;
}

.calendar-wrapper table td.today {
  padding-top: 4px;
  padding-bottom: 4px;
}

.calendar-wrapper table td.today span {
  background: #e5211a;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  font-size: 18px;
  line-height: 20px;
  padding: 4px 8px;
  min-width: 30px;
  color: #ffffff;
  display: inline-block;
}

@media only screen and (min-width: 767px) and (max-width: 900px) {
  .calendar-wrapper table td.today span {
    min-width: auto;
    font-size: 14px;
    padding: 4px 6px;
  }
}

.calendar-wrapper table .days td {
  background: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.calendar-wrapper table .days td a {
  text-decoration: none;
}

@media only screen and (min-width: 767px) and (max-width: 900px) {
  .calendar-wrapper table .days td {
    font-size: 9px;
  }
}

.calendar-wrapper--btn button {
  border: none !important;
  font-size: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 8px 12px;
  width: 31px;
  height: 30px;
  background-color: #fcfcff;
  transition: 0.2s all ease;
}

.calendar-wrapper--btn button:hover {
  box-shadow: none !important;
}

.calendar-wrapper--btn button#btnPrev {
  background-image: url(../img/prev-btn.svg);
  margin-right: 8px;
  box-shadow: -3px -3px 4px #ffffff, 3px 3px 10px rgba(40, 51, 107, 0.3),
    6px 6px 16px rgba(53, 70, 138, 0.1), -6px -6px 10px #ffffff,
    inset 0px -4px 4px rgba(255, 255, 255, 0.5);
  border-radius: 12px 0px 0px 12px;
}

.calendar-wrapper--btn button#btnNext {
  background-image: url(../img/next-btn.svg);
  box-shadow: -3px -3px 4px #ffffff, 3px 3px 10px rgba(40, 51, 107, 0.3),
    6px 6px 16px rgba(53, 70, 138, 0.1), -6px -6px 10px #ffffff,
    inset 0px -4px 4px rgba(255, 255, 255, 0.5);
  border-radius: 0px 12px 12px 0px;
}

.calendar-wrapper-text {
  color: #e5211a;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.tournaments_on--single {
  margin-bottom: 30px;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .tournaments_on--single {
    max-width: 300px;
    padding-right: 12px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .tournaments_on--single-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.tournaments_on--single .content {
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.tournaments_on--single .content h5 {
  margin-bottom: 0;
  color: #3247b6;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

.tournaments_on--single .content p {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 500;
}

.tournaments_on--date {
  line-height: 60px;
  min-width: 60px;
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 32px;
  display: inline-block;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  background-color: #8b94c2;
}

.tournaments_on--date.bg-orange {
  background-color: #ff9300;
}

.tournaments_on--date.bg-green {
  background-color: #55b725;
}

.tournaments_on--date.bg-red {
  background-color: #e5211a;
}

.tournaments_on--date.bg-blue {
  background-color: #3247b6;
}

@media (max-width: 767px) {
  .tournaments-calendar-container {
    display: flex;
  }

  .tournaments-calendar-container .calendar-wrapper {
    flex: 1 1 auto;
  }

  .tournaments-calendar-container .time_frame {
    margin-left: 20px;
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .tournaments-calendar-container {
    display: block;
  }
}

.calendar-wrapper--btn {
  display: flex;
}

.time_frame {
  margin-bottom: 30px;
}

.time_frame--list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.time_frame--list li {
  position: relative;
  padding: 6px 15px;
  font-size: 14px;
  line-height: 18px;
  color: #57618e;
  font-weight: 500;
}

.time_frame--list li a {
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  color: #57618e;
  font-weight: 500;
}

.time_frame--list li.active {
  color: #e5211a;
}

.time_frame--list li.active:after,
.time_frame--list li.active:before {
  background-color: #e5211a;
}

.time_frame--list li:after,
.time_frame--list li:before {
  position: absolute;
  background-color: #c4c4c4;
  content: "";
}

.time_frame--list li:after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 4px;
}

.time_frame--list li:before {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  left: 0;
}

.table-overflow-auto {
  overflow-x: auto;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  margin-bottom: 15px;
  border-radius: 12px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.table-overflow-auto::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  margin-bottom: 5px;
}

.table-overflow-auto::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

.table-overflow-auto::-webkit-scrollbar-thumb {
  background: rgba(136, 136, 136, 0.3);
  border-radius: 4px;
  transition: 0.3s all linear;
}

.table-overflow-auto::-webkit-scrollbar-thumb:hover {
  background: rgba(136, 136, 136, 0.85);
}

.table-overflow-auto.mCustomScrollbar {
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  margin-bottom: 15px;
  border-radius: 12px;
}

.table-overflow-auto.mCustomScrollbar .table {
  box-shadow: none;
  margin-bottom: 0;
}

.table-overflow-auto .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(50, 71, 182, 0.75);
}

.table-overflow-auto .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(50, 71, 182, 0.25);
}

.table-overflow-auto .mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 0;
}

.table-overflow-auto .table {
  margin-bottom: 0;
  min-width: 350px;
  box-shadow: none;
}

@media (max-width: 500px) {
  .table-overflow-auto .table {
    min-width: 350px;
  }
}

.min-500 .table {
  min-width: 500px;
}

@media (max-width: 500px) {
  .compare-players .col-6 {
    width: 100%;
  }
}

.single-players-page h1 {
  font-weight: 700;
}

.filter {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tournaments-calendar-container .filter {
    max-width: 60%;
  }
}

@media (max-width: 480px) {
  .tournaments-calendar-container .filter {
    max-width: 100%;
  }
}

.filter h5 {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 6px;
  color: #e5211a;
}

.btn-style button,
.btn-style a {
  background: #fcfcff;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-style button:hover,
.btn-style a:hover {
  background: #e5211a;
}

.by-alphabet-list,
.by-gender-list {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0 0 15px 0;
}

.by-alphabet-list li.current button,
.by-alphabet-list li.current a,
.by-gender-list li.current button,
.by-gender-list li.current a {
  color: #fff;
  background: #e5211a;
}

.by-alphabet-list li.current button img,
.by-alphabet-list li.current a img,
.by-gender-list li.current button img,
.by-gender-list li.current a img {
  filter: brightness(0) invert(1);
}

.by-alphabet-list li.current button:hover,
.by-alphabet-list li.current a:hover,
.by-gender-list li.current button:hover,
.by-gender-list li.current a:hover {
  color: #fff;
}

.by-alphabet-list li.current button:hover img,
.by-alphabet-list li.current a:hover img,
.by-gender-list li.current button:hover img,
.by-gender-list li.current a:hover img {
  filter: brightness(0) invert(1);
}

.by-alphabet-list li.current #clear-alphabet,
.by-gender-list li.current #clear-alphabet {
  background-image: url(../img/filter/IC-close-hover.svg);
}

.by-alphabet-list {
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  width: calc(100% + 8px);
  position: relative;
}

.by-alphabet-list li {
  margin-bottom: 6px;
  padding-left: 4px;
  padding-right: 4px;
  flex: 0 0 16.66%;
  width: 16.66%;
}

.by-alphabet-list li a {
  height: 40px;
  width: 100%;
  text-transform: uppercase;
  color: #57618e;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
}

.by-alphabet-list li a:hover {
  color: #fff;
}

.by-alphabet-list li a:hover img {
  filter: brightness(0) invert(1);
}

.by-alphabet-list .align-self-end {
  /*
  position: absolute;
  right: 0;
  bottom: 0;
  */
  position: relative;
}

.by-alphabet-list .align-self-end a {
  background-color: #3247b6 !important;
}

.by-alphabet-list .align-self-end a:hover {
  background-color: #e5211a !important;
}

.by-alphabet-list #clear-alphabet {
  font-size: 0 !important;
  background-image: url(../img/filter/IC-close.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.by-alphabet-list #clear-alphabet:hover {
  background-image: url(../img/filter/IC-close-hover.svg);
}

.by-gender-list li {
  margin-left: 5px;
  margin-bottom: 5px;
  width: 100%;
}

.by-gender-list li:first-child {
  margin-left: 0;
}

.by-gender-list li button,
.by-gender-list li a {
  height: 45px;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  color: #8b94c2;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .by-gender-list li button,
  .by-gender-list li a {
    font-size: 0;
  }
}

.by-gender-list li button img,
.by-gender-list li a img {
  margin: 0 5px 0 0;
}

.by-gender-list li button:hover,
.by-gender-list li a:hover {
  color: #fff;
}

.by-gender-list li button:hover img,
.by-gender-list li a:hover img {
  filter: brightness(0) invert(1);
}

.search {
  position: relative;
  margin-bottom: 15px;
}

.search input {
  width: 100%;
  border: none;
  padding: 7px 15px;
  background: #fcfcff;
  box-shadow: inset 0px 1px 3px rgba(87, 97, 142, 0.39),
    inset 0px 2px 4px rgba(92, 112, 139, 0.1), inset 0px -2px 5px #ffffff;
  border-radius: 12px;
  outline: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #8b94c2;
  height: 45px;
}

.search input::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #8b94c2;
}

.search input:-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #8b94c2;
}

.search input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #8b94c2;
}

.search input:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #8b94c2;
}

.search input:hover,
.search input:focus {
  border: none;
  outline: none;
}

.search button {
  position: absolute;
  right: 15px;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  font-size: 0;
  border: none !important;
  background-color: transparent;
  background-image: url(../img/filter/ic_search.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.single-players-info {
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .single-players-info {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .single-players-info--bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.single-players-info--bottom-content p {
  font-size: 18px;
  line-height: 26px;
  color: #8b94c2;
}

@media (max-width: 540px) {
  .single-players-info--bottom-content p {
    font-size: 14px;
  }
}

.single-players-info--bottom-content p:last-child {
  margin-bottom: 0;
}

.single-players-info--bottom-button {
  padding-left: 25px;
}

@media (max-width: 767px) {
  .single-players-info--bottom-button {
    padding-left: 0;
    margin-top: 40px;
  }
}

.single-players-info--bottom-button .statistic {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  width: 173px;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 100%;
}

.single-players-info--top {
  margin-bottom: 15px;
  margin-top: -60px;
}

.single-players-info--top--image {
  overflow: hidden;
  border: 14px solid #f2f3f7;
  border-radius: 50%;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  width: 240px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .single-players-info--top--image {
    margin-left: auto;
    margin-right: auto;
  }
}

.single-players-info--top--image span {
  border-radius: 50%;
  display: block;
  padding-bottom: 100%;
  box-shadow: inset 2px 2px 4px rgba(92, 112, 139, 0.7),
    inset -2px -2px 5px #ffffff;
  background-size: cover;
  background-position: center;
}

.single-players-info--top--content {
  padding-left: 30px;
  padding-top: 60px;
  max-width: 325px;
}

@media (max-width: 767px) {
  .single-players-info--top--content {
    padding-left: 0;
    padding-top: 15px;
  }
}

.single-players-info--top--content p {
  color: #8b94c2;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}

@media (max-width: 540px) {
  .single-players-info--top--content p {
    font-size: 14px;
  }
}

.single-players-info--top--content .sub-info {
  margin-top: 15px;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}

.news-single {
  margin-bottom: 30px;
}

.news-single a {
  display: block;
  text-decoration: none;
}

.news-single a h3 {
  font-weight: 700;
  margin-bottom: 7px;
}

.news-single a img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1);
  margin-bottom: 7px;
}

.news-single a p {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #57618e;
  margin-bottom: 0;
}

.news-single a p.date {
  letter-spacing: 0.4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 7px;
}

.reports {
  padding-bottom: 30px;
}

.reports--single {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  background: #f2f3f7;
  text-decoration: none;
}

.reports--single span {
  display: block;
}

.reports--single .top {
  font-weight: bold;
  font-size: 19px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 10px;
  text-align: center;
}

.reports--single .text {
  text-align: center;
  padding: 30px 15px 20px;
  font-size: 18px;
  color: #8b94c2;
}

.master-container-month {
  margin-bottom: 30px;
}

.master-container-month .year {
  -moz-appearance: textfield;
  border: none;
  outline: none;
  background: #ffffff;
  text-align: center;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #e6211a;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-shadow: 0px 1px 0px #fffbfb;
  padding: 8px 20px;
  width: 100px;
}

.master-container-month .year::-webkit-outer-spin-button,
.master-container-month .year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.master-container-month .year-container {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.master-container-month .year-container > div {
  position: relative;
}

.master-container-month .year-container h4 {
  color: #e5211a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.master-container-month .year-container a {
  position: absolute;
  color: #e5211a;
  font-weight: 800;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  z-index: 20;
  padding-left: 5px;
  padding-right: 5px;
}

.master-container-month .year-container a:hover {
  cursor: pointer;
}

.master-container-month .year-container .master-container-month--prev {
  left: 5px;
}

.master-container-month .year-container .master-container-month--forw {
  right: 5px;
}

.master-container-month table {
  width: 100%;
}

.master-container-month table td {
  padding: 7px 3px;
}

.master-container-month table td span {
  display: block;
  text-align: center;
  background: #fcfcff;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  padding: 14px 4px;
  color: #8b94c2;
  letter-spacing: 0.4px;
  font-size: 14px;
  line-height: 18px;
  transition: 0.3s all ease;
  font-weight: 600;
}

@media (max-width: 1300px) {
  .master-container-month table td span {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .master-container-month table td span {
    font-size: 10px;
    padding: 11px 4px;
  }
}

@media (max-width: 540px) {
  .master-container-month table td span {
    font-size: 10px;
    padding: 11px 4px;
  }
}

.master-container-month table td span:hover {
  cursor: pointer;
  box-shadow: none;
}

.master-container-month table td span.no-active {
  background: #d5daf2;
}

.master-container-month table td span.active {
  color: #fff;
  background-color: #e5211a;
}

.navigation-reports {
  margin: 15px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1250px) {
  .navigation-reports {
    flex-wrap: wrap;
  }
}

.navigation-reports.three-item li {
  width: calc(33.33% - 30px);
}

.navigation-reports.three-item li a {
  padding: 20px 20px;
}

.navigation-reports.half li {
  width: calc(50% - 30px);
}

.navigation-reports.half li a {
  padding: 20px 20px;
}

.navigation-reports li {
  width: calc(25% - 30px);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1250px) {
  .navigation-reports li {
    width: calc(45% - 16px);
  }
}

@media (max-width: 640px) {
  .navigation-reports li {
    width: calc(50% - 16px);
  }
}

.navigation-reports li.active a {
  background-color: #3247b6;
  color: #fff;
}

.navigation-reports li a {
  padding: 12px 20px;
  text-decoration: none;
  transition: 0.3s all ease;
  height: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #8b94c2;
  font-weight: 400;
  box-shadow: 4px 4px 10px rgba(188, 193, 218, 0.5), -3px -3px 10px #ffffff,
    -2px -2px 5px #ffffff, 1px 1px 4px rgba(60, 68, 98, 0.7);
  border-radius: 12px;
  background-color: #fcfcff;
  text-align: center;
  display: block;
  width: 100%;
}

.navigation-reports li a:hover {
  box-shadow: none;
}

.video-archive--iframe {
  overflow: hidden;
  margin-bottom: 5px;
}

.video-archive--iframe iframe {
  width: 100%;
  height: 210px;
  border-radius: 12px;
}

.video-archive--single {
  padding-bottom: 25px;
}

.video-archive--single a {
  display: block;
  text-decoration: none;
  color: #3247b6;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.video-archive--single a span {
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-top: 7px;
}

.video-iframe iframe {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.match-info {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 850px) {
  .match-info {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .match-info {
    display: block !important;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

.match-info li {
  display: flex;
  align-items: center;
  padding: 7.5px 10px;
  background: #d5daf2;
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  margin-left: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}

.match-info li p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .match-info li p {
    min-width: 110px;
  }
}

@media (max-width: 850px) {
  .match-info li {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .match-info li {
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding: 0;
    letter-spacing: 0.4px;
    color: #3247b6;
    font-weight: 600;
    font-size: 13px;
    width: 100%;
  }
}

@media (min-width: 881px) {
  .match-info li:first-child {
    margin-left: 0;
  }
}

.match-info li span {
  color: #e5211a;
  font-size: 14px;
  line-height: 18px;
  padding: 5px 25px;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  display: block;
  margin-left: 20px;
}

@media (max-width: 1100px) {
  .match-info li span {
    font-size: 12px;
    padding: 5px 15px;
  }
}

@media (max-width: 767px) {
  .match-info li span {
    background: transparent;
    text-align: left;
  }
}

.set-single {
  box-shadow: 0px 0px 8px rgba(20, 27, 84, 0.1),
    0px 0px 17px rgba(34, 32, 133, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.set-single--set {
  align-items: center;
  text-align: center;
  color: #3247b6;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 20px;
  background-color: #fff;
  width: 98px;
  font-weight: 600;
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .set-single--set {
    width: 75px;
  }
}

.set-single--info {
  width: 100%;
}

@media (max-width: 767px) {
  .set-single--info > div {
    flex-wrap: wrap;
  }

  .set-single--info h4 {
    width: 100%;
  }
}

.set-single--info ul {
  list-style-type: none;
  display: flex;
  padding: 0 20px 0 0;
  margin: 0;
}

@media (max-width: 767px) {
  .set-single--info ul {
    padding: 0 15px 15px;
  }
}

.set-single--info ul li {
  font-size: 18px;
  line-height: 20px;
  color: #57618e;
  padding: 0 12px;
}

@media (max-width: 992px) {
  .set-single--info ul li {
    padding: 0 5px;
  }
}

@media (max-width: 500px) {
  .set-single--info ul li {
    padding: 0 4px;
    font-size: 14px;
    line-height: 1.1;
  }
}

.set-single--info h4 {
  font-size: 18px;
  line-height: 20px;
  color: #57618e;
  margin-bottom: 0;
  padding: 10px 15px;
}

.set-single--info .player-first {
  background-color: #d5daf2;
}

.set-single--info .player-second {
  background-color: #f3f4f8;
}

@media (max-width: 767px) {
  .set-single--info .player-second ul {
    padding: 15px 15px 0;
  }
}

.courtney-henry-block {
  display: flex;
}

.tournaments_on--single {
  padding-right: 7px;
}

@media (max-width: 767px) {
  .tournaments_on--single {
    max-width: 280px;
    width: calc(50% - 30px);
  }
}

@media (max-width: 640px) {
  .tournaments_on--single {
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
  }

  .tournaments_on--single .tournaments_on--date {
    line-height: 50px;
    min-width: 50px;
    font-size: 24px;
  }

  .tournaments_on--single .content h5 {
    font-size: 12px;
  }

  .tournaments_on--single .content p {
    font-size: 11px;
    line-height: 15px;
  }
}

@media (max-width: 400px) {
  .tournaments_on--single {
    max-width: 280px;
    width: 100%;
    padding-right: 12px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 992px) {
  .video-before-players {
    padding-bottom: 25px;
  }
}

.tabs-video .nav-tabs {
  border-bottom: none;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  opacity: 0 !important;
}

.grid-init .col-lg-4 {
  padding: 0;
}

.grid-init .col-lg-4 a {
  padding-left: 15px;
  padding-right: 15px;
}

.xiom-logo {
  display: block;
  width: auto;
}

@media (min-width: 992px) {
  .xiom-logo {
    float: right;
  }
}

@media (max-width: 991px) {
  .xiom-logo {
    margin-left: auto;
    display: table;
  }
}

@media (max-width: 767px) {
  .xiom-logo {
    display: none;
  }
}

/* Additional design for mobile nav-bar. */
/* ===================================== */
.hide {
  display: none;
}

.content-blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 20vw;
  height: 100vh;
  background: #2b3358;
  z-index: 3;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=38);
  filter: alpha(opacity=38);
}

@media (min-width: 768px) {
  .content-blocker {
    display: none !important;
  }
}

@media (min-width: 991px) {
  .container-md-full {
    width: 95%;
    max-width: 1900px !important;
  }
}

.js-app-device #button-top {
  display: inline-block;
}

@media (min-width: 1200px) {
  .js-app-device #button-top {
    display: none;
  }
}

#button-top {
  display: inline-block !important;
  background-color: #3247b6;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

@media (max-width: 767px) {
  #button-top {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 1200px) {
  #button-top {
    display: none;
  }
}

#button-top::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #fff;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='30' height='30' %3E%3Cpath fill='%23fff' d='M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#button-top:hover {
  cursor: pointer;
  background-color: #4157cb;
}

#button-top:active {
  background-color: #4157cb;
}

#button-top.show {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=custom.css.map */
