/* page loading */
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s .2s ease-in-out;
  transition: all .4s .2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

.dark-mode .page-loading {
  background-color: #0b0f19;
}

.page-loading.active {
  opacity: 1;
  visibility: visible;
}

.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}

.page-loading.active>.page-loading-inner {
  opacity: 1;
}

.page-loading-inner>span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #9397ad;
}

.dark-mode .page-loading-inner>span {
  color: #fff;
  opacity: .6;
}

.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: .75rem;
  vertical-align: text-bottom;
  border: .15em solid #b4b7c9;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner .75s linear infinite;
  animation: spinner .75s linear infinite;
}

.dark-mode .page-spinner {
  border-color: rgba(255, 255, 255, .4);
  border-right-color: transparent;
}

@-webkit-keyframes spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* end */
.side-bar-nav-mb{
  height: calc(100% - 150px);
}
.side-bar-nav-mb a.list-group-item {
  padding: 15px 0;
}
.fc-header-toolbar.fc-toolbar.fc-toolbar-ltr {
  flex-wrap: wrap;
}
/* areena table css */
.schedule-table table thead tr {
  background: #6366F1;
}

.schedule-table table thead th {
  padding: 25px 50px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  position: relative;
  border: 0;
}

.schedule-table table thead th:before {
  content: "";
  width: 3px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
}

.schedule-table table thead th.last:before {
  content: none;
}

.schedule-table table tbody td {
  vertical-align: middle;
  border: 1px solid #e2edf8;
  font-weight: 500;
  padding: 30px;
  text-align: center;
}

.schedule-table table tbody td.day {
  font-size: 22px;
  font-weight: 600;
  background: #f0f1f3;
  border: 1px solid #e4e4e4;
  position: relative;
  transition: all 0.3s linear 0s;
  min-width: 165px;
}

.schedule-table table tbody td.active {
  position: relative;
  z-index: 10;
  transition: all 0.3s linear 0s;
  min-width: 165px;
}

.schedule-table table tbody td.active h4 {
  font-weight: 700;
  color: #000;
  font-size: 20px;
  margin-bottom: 5px;
}

.schedule-table table tbody td.active p {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 0;
}

.schedule-table table tbody td .hover h4 {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}

.schedule-table table tbody td .hover p {
  font-size: 16px;
  margin-bottom: 5px;
  color: #ffffff;
  line-height: normal;
}

.schedule-table table tbody td .hover span {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

.schedule-table table tbody td.active::before {
  position: absolute;
  content: "";
  min-width: 100%;
  min-height: 100%;
  transform: scale(0);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.25rem;
  transition: all 0.3s linear 0s;
}

.schedule-table table tbody td .hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 99;
  background: #6366F1;
  border-radius: 0.25rem;
  padding: 25px 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear 0s;
}

.schedule-table table tbody td.active:hover .hover {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.schedule-table table tbody td.day:hover {
  background: #6366F1;
  color: #fff;
  border: 1px solid #6366F1;
}

@media screen and (max-width: 1199px) {
  .schedule-table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .schedule-table table thead th {
    padding: 25px 40px;
  }

  .schedule-table table tbody td {
    padding: 20px;
  }

  .schedule-table table tbody td.active h4 {
    font-size: 18px;
  }

  .schedule-table table tbody td.active p {
    font-size: 15px;
  }

  .schedule-table table tbody td.day {
    font-size: 20px;
  }

  .schedule-table table tbody td .hover {
    padding: 15px 0;
  }

  .schedule-table table tbody td .hover span {
    font-size: 17px;
  }
}

@media screen and (max-width: 991px) {
  .schedule-table table thead th {
    font-size: 18px;
    padding: 20px;
  }

  .schedule-table table tbody td.day {
    font-size: 18px;
  }

  .schedule-table table tbody td.active h4 {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  .schedule-table table thead th {
    padding: 15px;
  }

  .schedule-table table tbody td {
    padding: 15px;
  }

  .schedule-table table tbody td.active h4 {
    font-size: 16px;
  }

  .schedule-table table tbody td.active p {
    font-size: 14px;
  }

  .schedule-table table tbody td .hover {
    padding: 10px 0;
  }

  .schedule-table table tbody td.day {
    font-size: 18px;
  }

  .schedule-table table tbody td .hover span {
    font-size: 15px;
  }
}

@media screen and (max-width: 575px) {
  .schedule-table table tbody td.day {
    min-width: 135px;
  }
}

/* end arena table css */
/* custom css */
.custom-bgg {
  background: radial-gradient(116.18% 118% at 50% 100%, rgba(99, 102, 241, 0.1) 0%, rgba(218, 70, 239, 0.05) 41.83%, rgba(241, 244, 253, 0.07) 82.52%);
}

/* home page css */
.card .h-clubs-logo {
  right: 35px;
  top: -20px;
  width: 100px;
  height: 100px;
}

/* faqs */
.home-faqs .accordion-item .accordion-button {
  background-color: #00000000;
  box-shadow: none;
}

/* end home page css */
/* arena page css */
.h-arenas-logo {
  right: 25px;
  top: 32px;
}

/* dashboard css */
.top-30px {
  top: 30px;
}

.dark-mode .form-select option {
  background-color: #0b0f19;
}

.dashboard-main {
  padding-top: 7rem;
}

i.bx.bx-x-circle,
i.bx.bxs-edit {
  color: #B6B7BA;
}

.club-table-logo {
  width: 40px;
}

.pwd-icon-center .bxs-show,
.pwd-icon-center .bxs-hide {
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.dark-mode input.form-control:-internal-autofill-selected {
  background-color: #10141e !important;
    color: #ffffff !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url(../img/calendar-b.png) no-repeat;
  width: 20px;
  height: 20px;
  border-width: thin;
}

input.form-control[type="time"] {
  position: relative;
}

input[type="time"]::before {
  content: '';
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url(../img/time-b.png) no-repeat;
  width: 24px;
  height: 24px;
  border-width: thin;
  position: absolute;
  right: 24px;
  pointer-events: none;
}
.dark-mode .gallery-img-preview .gallery-delete-btn {
  right: 12px;
  top: 4px;
  background-color: #ffffff;
  filter: unset;
  opacity: 1;
}
.dark-mode .gallery-img-preview:hover .gallery-delete-btn {
  opacity: 1;
}


/* data table css */
.dark-mode table.dataTable.no-footer {
  border-bottom: 1px solid #ffffff24;
}

.dark-mode table.dataTable tbody tr {
  background-color: #ffffff00;
}

.dark-mode .dataTables_wrapper .dark-mode .dataTables_length,
.dark-mode .dataTables_wrapper .dataTables_filter,
.dark-mode .dataTables_wrapper .dataTables_info,
.dark-mode .dataTables_wrapper .dataTables_processing,
.dark-mode .dataTables_wrapper .dataTables_paginate {
  color: #ffffffb3;
}

.dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #ffffffb3 !important;
  border: 1px solid #ffffffb3;
  border-radius: 5px;
  background-color: transparent;
  background: transparent;
}

.dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #ffffffb3 !important;
}

.dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: transparent;
  color: #ffffffb3 !important;
}

.dark-mode .dataTables_wrapper .dataTables_length,
.dark-mode .dataTables_wrapper .dataTables_filter,
.dark-mode .dataTables_wrapper .dataTables_info,
.dark-mode .dataTables_wrapper .dataTables_processing,
.dark-mode .dataTables_wrapper .dataTables_paginate {
  color: #ffffffb3;
}

.dark-mode .dataTables_length select option,
.dark-mode .dataTables_length select {
  background-color: transparent;
  color: #ffffffb3;
  border-radius: 5px;
}

.dark-mode .dataTables_length select option {
  background-color: #0b0f19;
}

.dark-mode .dataTables_wrapper .dataTables_filter input {
  background: transparent;
  outline: none;
  border: 1px solid #ffffffb3;
  color: #ffffffb3;
  border-radius: 5px;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
}

#container {
  min-width: 310px;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
}

.buttons {
  min-width: 310px;
  text-align: center;
  margin: 1rem 0;
  font-size: 0;
}

.buttons button {
  cursor: pointer;
  border: 1px solid silver;
  border-right-width: 0;
  background-color: #f8f8f8;
  font-size: 1rem;
  padding: 0.5rem;
  transition-duration: 0.3s;
  margin: 0;
}

.buttons button:first-child {
  border-top-left-radius: 0.3em;
  border-bottom-left-radius: 0.3em;
}

.buttons button:last-child {
  border-top-right-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
  border-right-width: 1px;
}

.buttons button:hover {
  color: white;
  background-color: rgb(158 159 163);
  outline: none;
}

.buttons button.active {
  background-color: #0051b4;
  color: white;
}


/* resposnisve css start */
/* tablet css */
@media (max-width: 768px) {}

/* mobile css */
@media (max-width: 500px) {}

/* end of responsive css */