.main-pane {
  background: #091d2d;
}
.theme-switch {
  display: none;
}
.title_h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timer-title {
  font-size: 18px;
  color: #eaeaeade;
  font-weight: 800;
  margin-bottom: 15px;
}

.timer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  max-width: 100%;
  border-radius: 8px;
  background: var(--main-color);
  overflow: hidden;
}

.progress {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 8px;
  z-index: 1;
}

.timer-text {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: lowercase;
  z-index: 5;
}

.btn-block {
  text-align: center;
  margin-top: 25px;
}

.btn-block .btn.btn-success {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #000;
}

.btn-block .btn.btn-success:hover {
  background: #cfb212;
  border-color: #cfb212;
}

footer {
  background-color: #272734;
}

footer .title {
  color: #ffffff;
  margin-right: 5px;
}

.top-user-container {
  background-color: #272734;
  padding: 25px 15px;
  border: 1px solid #6a668a;
  border-radius: 4px;
}

.page-updated-timer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 25px;
  font-size: 13px;
  color: #eaeaeade;
}

.user-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 450px;
  border: 2px solid #6a668a;
  border-radius: 4px;
  padding: 25px 15px;
  color: #eaeaeade;
}

.order-1 .user-container {
  box-shadow: 0 0 10px 7px rgba(61, 155, 210, 0.15);
}
.order-2 .user-container {
  box-shadow: 0 0 10px 7px rgba(199, 22, 22, 0.15);
}

.order-3 .user-container {
  box-shadow: 0 0 10px 7px rgba(41, 168, 84, 0.15);
}

.top-user-content {
  position: relative;
  z-index: 5;
}

.img-container {
  text-align: center;
  padding: 25px;
  border-radius: 50%;
  background-color: #343547;
}

.info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.name-info {
  font-size: 24px;
  font-weight: 800;
}
.traffic-info {
  font-size: 20px;
  font-weight: 400;
}

.place-number {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 5;
  width: 55px;
}

.table-users-block {
  margin-top: 50px;
}

.table-dark {
  background: #272734;
}

@media (max-width: 767px) {
  .order-1 {
    order: 2;
  }
  .order-2 {
    order: 1;
  }
  .row .col-md-4:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .order-1 .user-container,
  .order-3 .user-container {
    margin-top: 20px;
  }
}
