:root {
  --color-blue: #2398ff;
  --color-dark-blue: #1272c6;
  --color-green: #59daa4;
  --color-pink: #f07873;
  --color-jet: #363636
}

html {
  scroll-behavior: smooth;
}

button,
a {
  text-decoration: none;
  cursor: pointer;
}

a[disabled=""] {
  cursor: not-allowed;
}

.bm-dashboard h6,
.bm-dashboard h5,
.bm-dashboard h4,
.bm-dashboard h3,
.bm-dashboard h2,
.bm-dashboard h1 {
  margin: 0;
}

.bm-container,
.bm-dashboard main {
  max-width: 1170px !important;
  margin-left: auto;
  margin-right: auto;
}

.bm-dashboard main *:not(.bm-dashboard main .bm-dashboard-wrapper *) {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bm-dashboard-wrapper {
  font-size: 16px;
}

.bm-dashboard-wrapper p {
  margin: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.bm-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.bm-col-1 {
  width: 8.33%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-2 {
  width: 16.66%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-3 {
  width: 25%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-4 {
  width: 33.33%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-5 {
  width: 41.66%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-6 {
  width: 50%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-7 {
  width: 58.33%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-8 {
  width: 66.66%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-9 {
  width: 75%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-10 {
  width: 83.33%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-11 {
  width: 91.66%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.bm-col-12 {
  width: 100%;
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 100%;
}

.text-dark {
  color: #000 !important;
}

.tx-primary {
  color: var(--color-pink) !important;
}

.tx-secondary {
  color: var(--color-green) !important;
}

.tx-tertiary {
  color: var(--color-blue) !important;
}

.bm-top-header {
  background-color: var(--color-blue);
  color: #fff;
}

.bm-panel {
  padding: 15px;
}

.bm-top-header .bm-panel {
  text-align: center;
  padding: 15px 10px;
}

.bm-top-header .bm-panel.active {
  background-color: var(--color-dark-blue);
}

.bm-top-header .bm-col-4:not(:last-child).bm-panel {
  border-right: 1px solid #fff;
}

.bm-top-header a {
  color: #fff;
  font-size: 18px;
  display: block;
}

.bm-top-header a i {
  display: block;
}

.bm-dashboard-wrap {
  margin-top: 30px;
}

.bm-dash-sidebar #bm-navigation {
  background: var(--color-jet);
  height: 100%;
}

.bm-dash-sidebar ul.bm-dashboard-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bm-drawer-toggle,
.bm-drawer-close {
  display: none !important;
}

/* Show toggle button only on mobile */
@media (max-width: 768px) {

  /* Basic drawer styles */
  .bm-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
  }

  .bm-drawer.active {
    left: 0;
  }

  .bm-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

  .bm-drawer-overlay.active {
    display: block;
  }

  .bm-drawer-toggle {
    display: none;
    border: none;
    font-size: 24px;
    z-index: 10000;
  }

  /* Drawer close button */
  .bm-drawer-close {
    display: block !important;
    margin-left: auto;
  }

  .bm-drawer-toggle {
    margin-left: auto;
    display: block !important;
  }

  .bm-drawer {
    display: none;
  }

  .bm-drawer.active {
    display: block;
  }
}

ul.bm-dashboard-menu li a {
  padding: 15px 18px;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
}

ul.bm-dashboard-menu li:not(:last-child, .active)::after {
  content: "";
  background-color: #6f6f6f;
  width: 90%;
  height: 1px;
  display: block;
  margin-left: 5%;
}

ul.bm-dashboard-menu li a i {
  font-size: 20px;
  margin-right: 10px;
}

ul.bm-dashboard-menu li:hover,
ul.bm-dashboard-menu li.active {
  background-color: var(--color-pink);
}

.bm-announcement {
  background-color: var(--color-green);
  padding: 10px 20px;
  margin-bottom: 20px;
  position: relative;
  color: #000;
  border: 2px solid var(--color-green);
}

.bm-announcement::after {
  content: "";
  background: #fff;
  opacity: 0.2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
}

.bm-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
}

.user-avatar .bm-thumbnail {
  display: inherit;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.bm-user-info {
  border-bottom: 2px solid var(--color-jet);
  padding: 10px 0;
  color: #000;
  align-items: center;
  margin: 0;
  margin-bottom: 40px;
}

.bm-user-info .user {
  display: flex;
  align-items: center;
  padding-left: 0;
}

.bm-user-info .user .user-name {
  font-size: 14px;
  display: block;
}

.bm-user-info .user-avatar {
  padding-right: 10px;
}

.bm-user-info .bm-col-6:nth-child(2) {
  padding-right: 0;
}

.price-budge {
  text-align: right;
}

.price-budge>span {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 0px 5px;
  vertical-align: middle;
  border-radius: 5px;
}

.price-budge .coin {
  width: 15px;
}

.bm-dash-full {
  margin-top: 30px;
}

.panel-jet-outline,
.panel-pink-outline,
.panel-green-outline,
.panel-blue-outline {
  color: #fff;
  padding: 0;
}

.panel-blue-outline {
  border: 1px solid var(--color-blue);
}

.panel-pink-outline {
  border: 1px solid var(--color-pink);
}

.panel-green-outline {
  border: 1px solid var(--color-green);
}

.panel-jet-outline {
  border: 1px solid var(--color-jet);
}

.panel-blue-outline .bm-panel-title {
  padding: 10px 15px;
  background: var(--color-blue);
}

.panel-pink-outline .bm-panel-title {
  padding: 10px 15px;
  background: var(--color-pink);
}

.panel-green-outline .bm-panel-title {
  padding: 10px 15px;
  background: var(--color-green);
  text-transform: uppercase;
  font-weight: 700;
}

.panel-jet-outline .bm-panel-title {
  padding: 10px 15px;
  background: var(--color-jet);
}

.bm-panel-title .price-budge span {
  font-size: 15px;
  line-height: 15px;
  padding: 3px 5px;
  font-weight: 500;
}

.bm-panel-body {
  padding: 10px 15px;
  color: #000;
}

.ps-30 {
  padding-left: 30px;
}

.m-0 {
  margin: 0;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mx-height-18 {
  max-height: 18px;
}

.breadcrumb {
  margin-bottom: 40px;
  border-bottom: 1px solid lightgray;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bm-dashboard-content .entry-title {
  font-size: 30px;
  font-weight: 500;
}

.dashboard-content-area .form-row {
  margin-bottom: 20px;
}

.dashboard-content-area label:not(.radio) {
  display: block;
}

.radio {
  cursor: pointer;
}

.dashboard-content-area select,
.dashboard-content-area input[type="tel"],
.dashboard-content-area input[type="email"],
.dashboard-content-area input[type="password"],
.dashboard-content-area input[type="text"] {
  width: 100%;
  border-radius: 0;
  border: 1px solid lightgray;
  padding: 10px;
}

.select2-container--default .select2-selection--single {
  padding: 0 !important;
  border-radius: 0 !important;
  /* height: 38px !important; */
}

.select2-container .select2-selection--single {
  height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
}

.select2-container {
  width: 100% !important;
}

button,
.bm-theme-btn,
input[type="submit"] {
  background: var(--color-pink);
  color: #fff !important;
  border: 0;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
}

.bm-theme-btn2 {
  background: var(--color-green);
}

.bm-file {
  position: relative;
  display: inline-block !important;
  cursor: pointer;
  height: 2.5rem;
  vertical-align: top;
  margin-right: 15px;
}

.bm-file input {
  min-width: 14rem;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0;
}

.bm-file-custom {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  background-color: #fff;
  border: .075rem solid #ddd;
  border-radius: .25rem;
  box-shadow: inset 0 .2rem .4rem rgba(0, 0, 0, .05);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bm-file-custom::before {
  position: absolute;
  top: -.075rem;
  right: -.075rem;
  bottom: -.075rem;
  z-index: 6;
  display: block;
  content: "Browse";
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  background-color: #eee;
  border: .075rem solid #ddd;
  border-radius: 0 .25rem .25rem 0;
}

.bm-file-custom::after {
  content: "Choose file...";
}

.bm-dashboard .woocommerce-error {
  background: #f7f7f7;
  border-top-color: #c10404;
  border-top-style: solid;
  font-size: 14px;
  list-style: none;
}

.bm-dashboard .woocommerce-error::before {
  background-color: #c10404;
  color: #f7f7f7;
}

.error {
  color: red;
}

.bm-dashboard .woocommerce-error li {
  color: #000 !important;
}

.bm-dashboard .woocommerce-message {
  background: #f7f7f7;
  border-top-color: var(--color-blue);
  border-top-style: solid;
  font-size: 14px;
  color: #000 !important;
}

.bm-dashboard .woocommerce-message::before {
  background-color: var(--color-blue);
  color: #f7f7f7;
}

.tx-center {
  text-align: center;
}

.tx-right {
  text-align: right;

}

.tx-left {
  text-align: left;

}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.edit-profile-wrapper {
  padding-bottom: 50px;
}

.wallet-info .bm-panel {
  height: 100%;
}

.wallet-info .bm-panel-body {
  display: flex;
  align-items: center;
  min-height: 71px;
}

.wallet-info .bm-panel-body>.bm-row {
  width: 100%;
}

.bm-table {
  width: 100%;
  border-collapse: collapse;
  border-color: lightgray;
}

.bm-table thead {
  background: #d3d3d363;
}

.bm-table td,
.bm-table th {
  border-color: lightgray;
  text-align: center;
  padding: 10px;
}

.bm-table td {
  font-size: 14px;
}

.bm-pagination {
  list-style: none;
  padding: 0;
  text-align: right;
}

.bm-pagination li {
  display: inline-block;
  line-height: 45px;
}

.bm-pagination li span,
.bm-pagination li a {
  padding: 10px 15px;
  background-color: #d3d3d363;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
}

.bm-pagination li span.current {
  background-color: var(--color-pink);
  color: #fff;
}

i.bm-hide,
.bm-hide {
  display: none;
}

.bm-tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  display: flex;
}

.bm-tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  border-radius: 0 !important;
  color: #000 !important;
  width: 100%;
}

.bm-tab button:not(:last-child) {
  border-right: 1px solid #ccc;
}

.bm-tab button:hover,
.bm-tab button.active {
  background-color: var(--color-pink);
  color: #fff !important;
}

.bm-tabcontent {
  display: none;
  padding: 20px 15px 0;
  border: 1px solid #ccc;
  border-top: none;
}

.bm-tabcontent.active {
  display: block;
}

.bm-tabcontent>.bm-row>[class^='bm-col-'] {
  padding: 0 10px 20px;
}

.bm-image {
  max-width: 100%;
  height: auto;
  display: inherit;
}

.bm-card {
  border: 1px solid lightgrey;
  height: 100%;
}

.bm-card .bm-image {
  display: block;
}

.bm-card-body {
  padding: 15px;
}

.match-type {
  background: var(--color-pink);
  color: #fff !important;
  border: 0;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
}

.match-map {
  background: var(--color-blue);
  color: #fff !important;
  border: 0;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
}

.tournaments-list .progress,
.bm-dashboard-content .progress {
  display: flex;
  height: 10px;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.match-title {
  margin: 12px 0 10px !important;
  font-size: 16px;
}

.match-room {
  display: block;
  background-color: var(--color-green);
  color: #fff !important;
  font-size: 14px;
  border-radius: 5px;
  padding: 1px 10px;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: var(--color-pink);
  transition: width .6s ease;
}

.progress-row {
  align-items: center;
  font-size: 14px;
}

.match-sort-info {
  border: 1px solid lightgray;
  border-left: 0;
  border-right: 0;
  margin: 15px 0px 10px;
  font-size: 14px;
  padding: 12px 0;
}

.bm-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  opacity: 0;
  transition: opacity .15s linear;
  background-color: rgba(0, 0, 0, 0.4);
}

.bm-modal.show {
  display: block;
  opacity: 1;
}

.modal-dialog {
  background-color: #fefefe;
  margin: 15% auto;
  border: 1px solid #888;
  width: 100%;
  max-width: 576px;
}

.modal-header {
  background-color: var(--color-green);
  padding: 15px;
  text-align: center;
  position: relative;
}

.modal-header .btn-close {
  padding: 1px 5px 4px;
  border-radius: 15px;
  font-size: 25px;
  line-height: 20px;
  position: absolute;
  top: -12px;
  right: -12px;
  background: #000;
}

.modal-body {
  text-align: center;
  padding: 15px;
}

.match-description {
  margin-top: 25px;
}

.bm-budge {
  box-shadow: 1px 1px 4px 1px #00000024;
  padding: 6px 5px 5px 8px;
  font-size: 14px;
  margin-right: 15px;
  background: #fff;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
}

.budge-small {
  font-size: 12px;
  padding: 3px 5px 2px 5px;
}

.budge-pink {
  background-color: var(--color-pink);
  color: #fff;
}

.budge-green {
  background-color: var(--color-green);
  color: #fff;
}

.budge-jet {
  background-color: var(--color-jet);
  color: #fff;
}

.join-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 10px 6px;
  margin: 0;
  color: #fff !important;
  line-height: 20px;
}

.join-btn.price-budge>span {
  padding: 0;
  vertical-align: baseline;
}

.match-featured-image {
  position: relative;
}

.room-info {
  position: relative;
}

#room-password,
#room-id {
  cursor: pointer
}

.copied {
  position: absolute;
  left: calc(50% - 88px);
  top: calc(50% - 12px);
  z-index: 10;
  background-color: var(--color-blue);
  color: #fff !important;
  padding: 0 .5rem !important;
  border-radius: .25rem !important;
}

.edit-playername,
[onclick^="copy_to"] {
  cursor: pointer;
}

.match-content p {
  margin-bottom: 10px;
  font-size: 14px;
}

.bg-secondary {
  background: var(--color-green);
  color: #fff !important;
}

.single-lottery .lottery-image,
.single-match .match-image {
  width: 100%;
}

.single-match .breadcrumb {
  margin-bottom: 20px;
  margin-top: 20px;
}

.playername {
  max-width: 300px;
  margin-right: 10px;
}

.position-col {
  border: 1px solid lightgray;
  padding: 20px 5px;
  text-align: center;
}

.team-header {
  background: #d3d3d363;
  border: 1px solid lightgray;
  text-align: center;
  padding: 20px 5px
}

.bm-form-inline .bm-form-group {
  display: inline-block;
}

.bm-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.top-players-tab {
  display: block;
}

.top-players-tab .bm-tablinks {
  width: auto !important;
  border: 1px solid #fff;
}

.bm-dashboard img {
  max-width: 100%;
}

.bm-game-panel {
  position: relative;
}

.bm-game-panel img {
  display: block;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.bm-total-match {
  position: absolute;
  white-space: nowrap;
  z-index: 1;
  right: 10px;
  top: 10px;
  background: var(--color-pink);
  color: #fff;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 500;
}

.bm-game-name {
  background-color: #d3d3d363;
  padding: 10px;
  color: #000;
}

.battlemania-EditPlayName .bm-theme-btn2.bm-cancel {
  margin-left: 10px;
}

img.coin {
  vertical-align: middle;
}

#contract_address {
  cursor: pointer;
}

@media (min-width: 576px) {
  .team_name {
    display: none;
  }
}

.owl-carousel {
  position: relative;
}

.owl-dots {
  position: absolute;
  right: 0;
  top: -40px;
}

.owl-carousel .owl-dots .owl-dot.active span::before,
.owl-carousel .owl-dots .owl-dot:hover span::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  background-color: var(--color-pink);
  border-radius: 20px;
}

.owl-carousel .owl-dots .owl-dot span {
  margin-left: 3px !important;
  margin-right: 3px !important;
  width: 15px !important;
  height: 15px !important;
  border: 2px solid #95a9b3 !important;
  border-radius: 10px !important;
  background: none !important;
  position: relative;
}

.owl-carousel .owl-dots .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span {
  border: 2px solid var(--color-pink) !important;
}

.pin-match {
  position: absolute;
  right: 10px;
  top: 10px;
  color: var(--color-pink);
  z-index: 1;
  font-size: 18px;
}

.p-relative {
  position: relative;
}

.join-lottery {
  position: absolute;
  right: 10px;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 2px 8px 0;
  top: 10px;
}

.refer-and-earn i.tx-primary {
  font-size: 100px;
}

.refer-and-earn i.tx-primary span {
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
}

.refer-and-earn i.tx-secondary {
  font-size: 50px;
}

.refer-and-earn {
  padding: 30px 50px;
}

#refer-code {
  text-transform: inherit;
}

.table-responsive {
  overflow-x: scroll;
}

#paytm-pg-spinner {
  width: 70px;
  text-align: center;
  z-index: 999999;
  position: fixed;
  top: 25%;
  left: 50%;
}

#paytm-pg-spinner>div {
  width: 10px;
  height: 10px;
  background-color: #012b71;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

#paytm-pg-spinner .bounce1 {
  -webkit-animation-delay: -0.64s;
  animation-delay: -0.64s;
}

#paytm-pg-spinner .bounce2 {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}

#paytm-pg-spinner .bounce3 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

#paytm-pg-spinner .bounce4 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

#paytm-pg-spinner .bounce4,
#paytm-pg-spinner .bounce5 {
  background-color: #48baf5;
}

@-webkit-keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0)
  }

  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.paytm-overlay {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  opacity: .3;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.paytm-woopg-loader p {
  font-size: 10px !important;
}

.paytm-woopg-loader a {
  font-size: 15px !important;
}

.refresh-payment {
  display: inline;
  margin-right: 20px;
  width: 100px;
  background: rgb(0, 185, 245);
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}

/* Short-codes css */
.tournaments-list .match-sort-info {
  font-size: 12px;
  font-weight: 600;
}

.tournaments-list .bm-theme-btn {
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
}

.tournaments-list h3 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
}

.tournaments-list>.bm-row {
  padding: 20px 0;
}

.tournaments-list .table-responsive {
  height: calc(100% - 50px);
  border: 1px solid lightgray;
}

.tournaments-list tr {
  border-bottom: 1px solid lightgray;
}

.tournaments-list td {
  padding: 7px;
}

@media (max-width:980px) {

  .bm-col-1:not(.position-col),
  .bm-col-2:not(.position-col),
  .bm-col-3:not(.position-col),
  .bm-col-4:not(.position-col),
  .bm-col-5:not(.position-col),
  .bm-col-6:not(.position-col),
  .bm-col-7:not(.position-col),
  .bm-col-8:not(.position-col),
  .bm-col-9:not(.position-col),
  .bm-col-10:not(.position-col),
  .bm-col-11:not(.position-col) {
    width: 100%;
    margin-bottom: 15px;
  }

  .battlemania-SelectMatchPosition [class^='bm-col-'] {
    margin-bottom: 0;
  }

  .squad .team-header,
  .squad .position-col,
  .Squad .team-header,
  .Squad .position-col {
    width: 20%;
    margin-bottom: 0;
  }

  .duo .team-header,
  .duo .position-col,
  .Duo .team-header,
  .Duo .position-col {
    width: 33.33%;
    margin-bottom: 0;
  }

  .squad5 .team-header,
  .squad5 .position-col,
  .Squad5 .team-header,
  .Squad5 .position-col {
    width: 16.66%;
    margin-bottom: 0;
  }

  .duo .team-header:nth-child(n+4),
  .Duo .team-header:nth-child(n+4) {
    display: none;

  }

  .squad5 .team-header:nth-child(n+7),
  .Squad5 .team-header:nth-child(n+7),
  .squad .team-header:nth-child(n+7),
  .Squad .team-header:nth-child(n+7) {
    display: none;
  }

  .bm-budge {
    margin-bottom: 10px;
  }

  .bm-top-header .bm-col-4 {
    margin-bottom: 0;
  }

  .bm-filter,
  .d-flex-group {
    flex-direction: column;
  }

  .bm-filter>form:not(:last-child),
  .d-flex-group>div {
    margin-bottom: 15px;
  }

  .bm-top-header .bm-col-4:not(:last-child).bm-panel {
    border-bottom: 1px solid #fff;
    border-right: 0;
  }

  .refer-and-earn {
    padding: 10px 20px;
  }

  .modal-dialog {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
  }
}