#monitoring_card {
  --gradient-color: 97, 255, 113;
  margin-bottom: 1rem;
}
#monitoring_card > .swiper {
  height: 520px;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide {
  width: 260px !important;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 110%;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgba(0, 0, 0, 0.19) 40%, #050025 100%);
  z-index: 3;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(180deg, rgba(103, 119, 245, 0.13) 0%, rgb(var(--gradient-color)) 100%);
  z-index: 1;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item:hover > .hover-layer {
  opacity: 1;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 320px;
  width: auto;
  z-index: 1;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  pointer-events: none;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online > .pulse {
  position: relative;
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
  animation: pulse-shadow 1.5s infinite;
  background-color: rgb(var(--gradient-color));
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online > .pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(var(--gradient-color));
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-wave-animation 1.5s infinite;
  opacity: 0;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online > span {
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
  color: #fff;
  font-size: 18px;
}
#monitoring_card > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-mode {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  pointer-events: none;
}
@keyframes pulse-wave-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.monitoring_card_index > .list_types {
  --gradient-color: 97, 255, 113;
  --background-color: #d5d5d5;
  --font-color: #6e6e6e;
  --border-active: #ababab;
  margin-bottom: 2rem;
}
.monitoring_card_index > .list_types > .swiper {
  height: 53px;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide {
  width: 177px !important;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: 2px solid #262626;
  border-radius: 10px;
  background: #1a1919;
  color: #fff;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online {
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online > .pulse {
  position: relative;
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
  animation: pulse-shadow 1.5s infinite;
  background-color: rgb(var(--gradient-color));
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online > .pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(var(--gradient-color));
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-wave-animation 1.5s infinite;
  opacity: 0;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-online > span {
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
  color: var(--font-color);
  font-size: 18px;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item > .inline-mode {
  font-size: 14px;
  font-weight: 600;
  color: var(--font-color);
  text-transform: uppercase;
  pointer-events: none;
}
.monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide > .item.active {
  border: 2px solid #262626;
  border-radius: 10px;
  background: #1a191994;
  color: #fff;
}
.monitoring_card_index > .place {
  height: 272px;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.monitoring_card_index > .place > .mode-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, #161616de 10%, rgba(22, 22, 22, 0.8) 45%, rgba(22, 22, 22, 0.6) 70%, rgba(22, 22, 22, 0) 100%);
}
.monitoring_card_index > .place > .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 3;
  padding: 42px 32px;
}
.monitoring_card_index > .place > .content > .head {
  font-size: 54px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.monitoring_card_index > .place > .content > .desc {
  color: #b1b1b1;
  font-size: 16px;
}
.monitoring_card_index > .place > .content > .actions > button {
  margin-bottom: 0;
}
.monitoring_card_index > .place > video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 272px;
  object-fit: cover;
}
.monitoring_card_index > .place > button#video_action {
  font-size: 48px;
  position: absolute;
  right: 32px;
  bottom: 42px;
  z-index: 2;
  line-height: normal;
  letter-spacing: normal;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  color: #ffffff4d;
  transition: 0.3s;
  cursor: pointer;
}
.monitoring_card_index > .place > button#video_action:hover {
  color: #ffffffc7;
}
.monitoring_card_index > .servers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.monitoring_card_index > .servers > .item {
  height: 85px;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 12px;
}
.monitoring_card_index > .servers > .item > .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 10px;
  z-index: 1;
}
.monitoring_card_index > .servers > .item > .content > .info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.monitoring_card_index > .servers > .item > .content > .info > .name {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
}
.monitoring_card_index > .servers > .item > .content > .info > .info > .players {
  color: #86ce77;
}
.monitoring_card_index > .servers > .item > .content > .info > .info > .mapname {
  color: #fff;
}
.monitoring_card_index > .servers > .item > .content > .actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.monitoring_card_index > .servers > .item > .content > .actions * {
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #d7d7d7;
  transition: 0.3s;
}
.monitoring_card_index > .servers > .item > .content > .actions *:hover {
  color: #fff;
}
.monitoring_card_index > .servers > .item > .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  filter: brightness(0.5);
  background-position: center right;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #monitoring_card > .swiper > .swiper-wrapper > .swiper-slide {
    width: 50% !important;
  }
  .monitoring_card_index > .list_types > .swiper > .swiper-wrapper > .swiper-slide {
    width: 50% !important;
  }
  .monitoring_card_index > .servers {
    grid-template-columns: repeat(1, 1fr);
  }
  .monitoring_card_index > .servers > .item > .content > .info > .name {
    width: 300px;
  }
  .monitoring_card_index > .place > .content {
    width: 100%;
  }
  .monitoring_card_index > .place > button#video_action {
    display: none;
  }
}
