:root {
  --vip-color: #f2c752;
  --admin-color: #529ef2;
  --fsz-big: 20px;
  --ct-side: linear-gradient(90deg, rgb(33 150 243 / 15%), transparent, transparent);
  --t-side: linear-gradient(90deg, rgb(255 193 7 / 15%), transparent, transparent);
  --badge: var();
  --badge: var(--card);
  --have-slots: #76cb91;
  --have-small-slots: #efa74e;
  --havent-slots: #ff5555;
  --low-ping: #5fde74;
  --middle-ping: #f8c931;
  --hight-ping: #e33d3d;
}

/* filters servers */

.servers_filter {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .servers_filter {
    flex-direction: column;
  }
}

.filter_chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .filter_chips {
    width: 100%;
  }
}

.fake-loader svg {
  width: 21px;
  height: 21px;
  stroke: var(--text-default);
  fill: var(--text-default) !important;
  stroke-linecap: round;
  stroke-dasharray: 100, 150;
  stroke-dashoffset: 0;
}

.spinner {
  display: flex;
  animation: rotate 2s linear infinite;
  z-index: 2;
  width: 20px;
  height: 20px;

  & .path {
    stroke: var(--text-default);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
  }
}

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

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.servers_filter-data {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 2.2rem;
  background-color: transparent;
  padding-inline: 0.7rem 0.1rem;
  border-radius: 22px;
  border: 1px solid var(--transparent-5-w);
}

@media (max-width: 768px) {
  .servers_filter-data {
    width: 100%;
    justify-content: space-between;
  }
}

.online-block {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.online-block-number {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  width: 2.2rem;
}

.online-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.online-block-icon svg {
  width: 1.3em;
  height: 1.3rem;
  fill: var(--green);
}

.servers_filter-update-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button);
  border-radius: 22px;
  height: 2rem;
  width: 2rem;
  color: var(--text-default);
  cursor: pointer;
}

.servers_filter-update-button svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
  rotate: 150deg;
}

/* modal window */

.modal-window-server {
  position: fixed;
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
  transition: all 0.3s;
  pointer-events: auto;
  background: var(--bg-modal);
  opacity: 0;
  justify-content: center;
  align-items: center;
}

.modal-window-server .card {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 2px;
}

@media (max-width: 768.9px) {
  .modal-window-server>div {
    width: 25em;
  }
}

@media (min-width: 769px) {
  .modal-window-server>div {
    width: 59em;
  }
}

.modal-window-server>div {
  position: absolute;
  margin: 0 auto;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--card);
  border-radius: var(--br-32);
  box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
  z-index: 5000;
  pointer-events: none;
}

.modal_players_online {
  visibility: hidden;
}

.modal_players_online.modal_show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.modal_players_online>.modal-card {
  transform: scale(0.98);
  transition: 0.2s;
  /* overflow: hidden; */
}

.modal_players_online.modal_show>.modal-card {
  transform: scale(1);
  transition: 0.2s;
  /* overflow: hidden; */
  pointer-events: all;
}

.modal-card__header {
  display: flex;
  overflow: hidden;
  height: 15rem;
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-32);
}

@media (max-width: 768px) {
  .modal-card__header {
    height: 13rem;
  }
}

.modal-card__header img {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

.modal-card__header-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--card), transparent);
  pointer-events: none;
}

.server-modal__header {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.modal-card__header-content {
  display: flex;
  gap: 1rem;
  z-index: 1;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 3rem;
}

.modal-card__header-content-top img {
  position: relative;
  width: 6rem;
  height: 6rem;
  opacity: 1;
  left: unset;
  top: unset;
  transform: unset;
}

@media (max-width: 768px) {
  .modal-card__header-content-top img {
    width: 3rem;
    height: 3rem;
  }
}

.modal-card__header-content-top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3rem;
  margin-top: -2rem;
}

@media (max-width: 768px) {
  .modal-card__header-content-top {
    gap: 0.3rem;
    flex-direction: column;
    align-items: center;
  }
}

.modal-card__server-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 11rem;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .modal-card__server-details {
    display: none;
  }
}

.modal-card__server-details.right {
  align-items: flex-start;
}

.modal-card__server-details span {
  font-weight: 600;
  opacity: 0.3;
  color: var(--text-default);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-card__server-details span b {
  font-weight: 600;
  color: var(--text-default);
}

.modal-card__server-details span svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.win-team {
  font-size: 13px;
}

.team-score-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: center;
}

.team-score-block img {
  width: 2rem;
  height: 2rem;
  position: unset;
  transform: unset;
  opacity: 1;
}

.team-score-block:before,
.team-score-block:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 35%;
  background-color: var(--transparent-3-w);
}

.team-score-block:before {
  left: 0;
}

.team-score-block:after {
  right: 0;
}

.team-score {
  font-size: 33px;
  font-weight: 700;
}

.modal-card__header-content-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.modal-btn__close,
.modal-btn__refresh,
.modal-btn__settings {
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
  z-index: 2;
  opacity: 0.8;
  background-color: transparent;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-btn__refresh {
  left: 0;
  border: none;
}

.modal-btn__settings {
  top: 8rem;
  left: 0;
}

.modal-btn__close svg,
.modal-btn__refresh svg,
.modal-btn__settings svg {
  width: 24px;
  height: 24px;
  fill: var(--text-default);
  opacity: 0.3;
  transition: 0.25s;
}

.modal-btn__refresh:hover {
  background-color: transparent;
}

.modal-btn__refresh:focus {
  border: none;
}

.modal-btn__close:hover svg,
.modal-btn__refresh:hover svg,
.modal-btn__settings:hover svg {
  opacity: 1;
}

.modal-btn__refresh:disabled {
  background-color: transparent !important;
}

.modal-card__footer {
  display: flex;
  align-items: center;
  background-color: var(--transparent-2-w);
  border-bottom-left-radius: var(--br-32);
  border-bottom-right-radius: var(--br-32);
}

@media (max-width: 768.9px) {
  .hide-mobile {
    display: none !important;
  }

  .modal-btn__settings {
    top: 5.5rem;
  }

  .modal-hide {
    display: none !important;
  }
}

@media (min-width: 768.9px) {
  .hide-mobile {
    display: flex;
  }

  .modal-hide {
    display: table-cell;
  }
}

.btn-clipboard svg {
  width: 17px;
  height: 16px;
  fill: var(--text-default);
  transition: var(--transition);
}

.hide-long-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 10rem;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-text-color);
  opacity: 0.7;
  cursor: pointer;
  padding: 1.5rem 2rem;
  transition: 0.2s;
}

.modal-btn:last-child {
  margin-left: auto;
}

.modal-btn:hover {
  opacity: 1;
}

.modal-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.modal-card__body-table {
  padding-inline: 1rem;
  margin-bottom: 1rem;
}

.modal-card__body-name {
  max-width: 10rem;
  display: block;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-card__body-rang {
  width: 3.5rem;
  height: auto;
}

.modal-card__body-faceit {
  width: 1.5rem;
  height: auto;
}

.modal-card__body-player-info {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.modal-card__body-player-info svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--admin-color);
}

.vip-svg {
  fill: var(--vip-color) !important;
}

.scroll-table-body {
  height: 23rem;
  overflow-x: auto;
  margin-top: 0px;
  scrollbar-width: none;
}

.table-monitoring {
  border-radius: unset;
  overflow: unset;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1;
}

.modal-card__body-empty {
  width: 100%;
  text-align: center;
  font-size: var(--fsz-big);
  font-weight: 600;
  opacity: 0.5;
  margin-block: 3rem;
}

.table-label {
  width: 20px !important;
  padding: 0 !important;
}

.table-checkbox-block {
  width: 21px;
  height: 21px;
  position: relative;
  text-align: center;
}

tr:has(.border-checkbox:checked) {
  background-color: var(--span-middle);
}

.modal-card__body-buttons {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .modal-card__body-buttons {
    width: 100%;
  }
}

.modal-card__body-buttons .btn_delete {
  float: unset;
}

.svg-table {
  width: 1.2rem;
  height: 1.2rem;
}

.prime_enable {
  fill: var(--green) !important;
}

.prime_disable {
  fill: var(--red) !important;
}

.ct-side {
  background-image: var(--ct-side);
}

.t-side {
  background-image: var(--t-side);
}

.servers__card-wrapper,
.servers__card-wrapper-4,
.servers__card-wrapper-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  width: 100%;
  gap: 10px;
}

.servers__card-wrapper-4 {
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}

.servers__card-wrapper-2 {
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
}

.servers__card-block {
  display: flex;
  align-items: center;
  background-color: var(--card);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--transparent-10-w);
}

@media (max-width: 768px) {

  .servers__card-wrapper,
  .servers__card-wrapper-2,
  .servers__card-wrapper-4 {
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  }

  .servers__card-block-empty {
    display: none;
  }
}

.servers__card-info {
  display: grid;
  z-index: 2;
  gap: 0.3rem;
  margin-left: 0.8rem;
}

.servers__card-header {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .servers__card-header {
    max-width: 17rem;
  }
}

.servers__card-body {
  display: flex;
  flex-direction: column;
  width: max-content;
  gap: 0.5rem;
}

.servers__card-details {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.servers__card-badge {
  background: var(--span);
  color: var(--text-default);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 11px;
  font-weight: 600;
  user-select: none;
  transition: 0.2s;
}

.servers__card-map {
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  background-color: var(--transparent-10-w);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: 11px;
  color: var(--text-custom);
}

.servers__card-online {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--transparent-10-w);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: 11px;
  padding-block: 0.3rem;
  cursor: pointer;
  gap: 0.5rem;
  width: max-content;
  padding-inline: 1rem;
}

.servers__card-online-line {
  position: absolute;
  height: 100%;
  width: 0%;
  left: 0;
  background-color: var(--green);
  transition: width 0.7s ease-in-out;
}

.servers__card-online-text {
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
}

.servers__card-online svg {
  width: 0.7rem;
  height: 0.7rem;
  fill: currentColor;
  z-index: 1;
}

.servers__card-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 0.1rem;
  padding: 0.1rem;
  margin-left: auto;
  z-index: 2;
}

.servers__card-buttons button,
.servers__card-buttons a {
  height: 56px;
  width: 56px;
  background-color: var(--transparent-5-w);
  color: var(--text-default);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: 0.2s;
}

.servers__card-buttons button svg,
.servers__card-buttons a svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor !important;
  opacity: 0.3;
  transition: 0.2s;
  background-color: transparent !important;
}

.servers__card-buttons button:hover,
.servers__card-buttons a:hover {
  background-color: var(--transparent-10-w);
}

.servers__card-buttons button:hover svg,
.servers__card-buttons a:hover svg {
  opacity: 1;
}

.servers__card-buttons button {
  border-radius: 4px 14px;
}

.servers__card-buttons a {
  border-radius: 14px 4px;
}

.servers__card-image-map {
  position: absolute;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  width: 100%;
}

.access-dinie {
  pointer-events: none;
}

.low-ping {
  fill: var(--low-ping);
}

.middle-ping {
  fill: var(--middle-ping);
}

.hight-ping {
  fill: var(--hight-ping);
}

.admin-nick {
  background: var(--admin-color);
  padding-inline: 0.3rem;
  border-radius: 4px;
  color: var(--text-default);
}

.mon_selects {
  display: flex;
  gap: 0.3rem;
  width: 100%;
}

@media (max-width: 768px) {
  .mon_selects {
    flex-direction: column;
  }
}

.mon_selects select {
  height: 41px;
  border-radius: 8px;
}

.mon_selects input {
  flex: 2;
  height: 41px;
  border-radius: 8px;
}

.mon_selects input:focus {
  outline: 3px solid transparent;
}

.mon_selects select:not([multiple]) {
  background-position: calc(100% - 1em) 1.1em;
}

.adaptive-select {
  min-width: unset;
}

.mon_action_select_mute_reason,
.mon_action_select_ban_reason {
  flex: 2;
}

.adaptive-select-wrapper {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mon_selects div:first-child {
    width: 100%;
  }
}

.modal-card__body-action {
  width: 41px;
  padding: 0;
  flex: none;
}

.modal-card__body-send {
  width: unset;
  padding-inline: 1rem;
  margin-left: auto;
}

@media (max-width: 768px) {
  .modal-card__body-send {
    width: 100%;
    padding-block: 0.8rem;
  }

  .modal-card__body-action {
    width: 100%;
    flex: 1;
  }
}

.modal-card__body-buttons>.mon_selects {
  transition: 0.2s;
  overflow: hidden;
}

.modal-card__body-send svg {
  width: 21px;
  height: 21px;
  stroke: var(--text-custom);
  stroke-linecap: round;
  stroke-dasharray: 100, 150;
  stroke-dashoffset: 0;
}

.cross-canvas {
  position: absolute;
  display: block;
  width: 100%;
  opacity: 0.5;
}

/* table servers */

.table-mon__servers-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.3rem;
  column-gap: 10px;
}

@media (max-width: 1080px) {
  .table-mon__servers-wrap {
    grid-template-columns: 1fr;
  }
}

.table-mon__servers-wrap-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
}

.table-mon__servers-wrap-single .servers__card-block-empty {
  display: none;
}

.table-mon__server-block {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 12px;
  background-color: var(--card);
  padding-inline: 1rem 0.6rem;
  gap: 1rem;
  transition: 0.2s;
}

.table-mon__server-block:hover:before {
  background: linear-gradient(270deg,
      var(--input-form) 76.7%,
      rgb(23 23 23 / 0%) 157%);
}

.table-mon__server-block img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  width: 25%;
  left: 0;
}

.table-mon__server-block:before {
  background: linear-gradient(270deg,
      var(--card) 76.7%,
      rgb(23 23 23 / 0%) 157%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  transition: 0.2s;
}

.table-mon__server-badge {
  background-color: var(--transparent-10-w);
  color: var(--text-custom);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 11px;
  font-weight: 600;
  user-select: none;
  transition: 0.2s;
  white-space: nowrap;
}

.table-mon__server-badge:hover {
  filter: brightness(120%);
}

.table-mon__server-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 11rem;
  font-size: 14px;
  font-weight: 700;
}

.table-mon__server-online {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--transparent-10-w);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: 11px;
  padding-block: 0.3rem;
  cursor: pointer;
  gap: 0.5rem;
  width: max-content;
  padding-inline: 1rem;
}

.table-mon__server-online-line {
  position: absolute;
  height: 100%;
  width: 0%;
  left: 0;
  background-color: var(--green);
  transition: width 0.7s ease-in-out;
}

.table-mon__server-online-players {
  z-index: 2 !important;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.table-mon__server-online-players svg {
  width: 0.7rem;
  height: 0.7rem;
  fill: currentColor;
}

.table-mon__server-map {
  font-size: 14px;
  color: var(--text-custom);
  margin-left: auto;
  margin-right: 1rem;
}

.table-mon__server-buttons {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.table-mon__server-button {
  height: 2.5rem;
  width: max-content;
  padding-inline: 1rem;
  gap: 0.5rem;
  font-size: 14px;
  background-color: var(--transparent-5-w);
  color: var(--text-default);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.table-mon__server-button span {
  color: var(--text-custom);
  transition: var(--transition-duration);
}

.table-mon__server-button:first-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 2.5rem;
  padding: 0;
}

.table-mon__server-button:last-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.table-mon__server-button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  opacity: 0.7;
  transition: var(--transition-duration);
}

.table-mon__server-button:first-child:hover {
  background-color: var(--transparent-10-w);
}

.table-mon__server-button:first-child:hover svg {
  opacity: 1;
}

.table-mon__server-button:last-child:hover {
  background-color: var(--span);
}

.table-mon__server-button:last-child:hover span {
  color: var(--text-default);
}

.table-mon__server-button:last-child:hover svg {
  opacity: 1;
}

.table-mon__server-badge,
.table-mon__server-name,
.table-mon__server-online,
.table-mon__server-online-players,
.table-mon__server-map,
.table-mon__server-buttons {
  z-index: 1;
}

@media (max-width: 768px) {
  .table-mon__server-button-text {
    display: none;
  }

  .table-mon__server-button {
    height: 2.5rem;
    width: 2.5rem;
    padding: 0;
  }

  .table-mon__server-badge {
    display: none;
  }

  .table-mon__server-name {
    font-size: 12px;
  }
}

.modal-card__body-bottom-wrapper {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .modal-card__body-bottom-wrapper {
    flex-direction: column;
  }
}

.play-access {
  pointer-events: none;
}

.cards-loader,
.table-loader,
.table-list-loader {
  position: relative;
  background: var(--card);
  overflow: hidden;
  border-radius: 12px;
  z-index: 2;
  border: 1px solid var(--transparent-2-w);
}

.cards-loader {
  height: 7.4rem;
  border-radius: 16px;
}

.table-loader {
  height: 60px;
}

.table-list-loader {
  width: 100%;
  height: 23.1rem;
  border-radius: 16px;
}

.cards-loader:before,
.table-loader::before,
.table-list-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      var(--transparent-2-w),
      rgba(255, 255, 255, 0) 100%);
  animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.servers__card-block-empty {
  border: 1px solid var(--transparent-3-w);
}

.servers__card-block-empty:before {
  content: '';
  position: absolute;
  background-size: 3rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/app/modules/module_block_main_servers/assets/img/icons/cs2.svg");
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: .1;
  transition: all 0.5s;
  transform-style: preserve-3d;
}

.servers__card-block-empty:hover:before {
  opacity: .5;
  transform: rotateY(180deg);
}