@charset "UTF-8";
:root,
[data-theme=light] {
  --primary-color: #fcfcfc;
  --secondary-color: #767676;
  --secondary-light-color: #818181;
  --blood-color: #880808;
  --green-color: #3b860f;
  --font-size-panel-tab: 13px;
  --font-size-lg: 16px;
  --font-size-sm: 12px;
  --line-bg: #e6e6e6;
  --scrollbar-bg: #b2b2b2;
  --marker-rank: url("../img/icon/marker-rank.png");
  --marker-badge: url("../img/icon/marker-badge.png");
  --marker-bag: url("../img/icon/marker-bag.png");
  --marker-brief: url("../img/icon/marker-brief.png");
  --marker-bumm: url("../img/icon/marker-bumm.png");
  --marker-compass: url("../img/icon/marker-compass.png");
  --marker-drop: url("../img/icon/marker-drop.png");
  --marker-gasmask: url("../img/icon/marker-gasmask.png");
  --marker-helmet: url("../img/icon/marker-helmet.png");
  --marker-plate: url("../img/icon/marker-plate.png");
  --marker-radar: url("../img/icon/marker-radar.png");
  --marker-tent: url("../img/icon/marker-tent.png");
  --marker-truck: url("../img/icon/marker-truck.png");
  --marker-dot: url("../img/icon/marker-dot.png");
  --marker-name-bg: url("../img/icon/marker_name_bg.png");
}

.tabs,
#tabs {
  z-index: 7;
}

.tab-pane,
#tab-pane {
  z-index: 6;
}

.panel,
#panel {
  z-index: 5;
}

.squad_members_list_header,
#squad_members_list_header {
  z-index: 4;
}

.squad_members_list_content-wrapper,
#squad_members_list_content-wrapper {
  z-index: 3;
}

.dayz-map-container,
#dayz-map-container {
  z-index: 2;
}

.body,
#body {
  z-index: 1;
}

@font-face {
  font-family: medium;
  src: url("../fonts/InterTight-Medium.ttf");
}
body {
  -webkit-user-select: none; /* Safari */ /* régebbi Edge/IE */
  -moz-user-select: none;
       user-select: none;
}

.squad_members_list, .panel, .dayz-map-container {
  font-family: medium;
}

.main-container::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* WebKit (Chrome, Edge, Safari) */
.main-container::-webkit-scrollbar {
  width: 8px;
}

.main-container::-webkit-scrollbar-track {
  background: transparent;
}

.main-container::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-bg);
  border-radius: 999px;
  background-clip: content-box;
  height: 8px;
}

/* Firefox */
.main-container {
  scrollbar-width: none;
}

#dayz-map-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#dayz-map-container #dayz-map-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.squad-ui-wrapper {
  height: 53px;
  width: 516px;
  max-width: calc(100vw - 20px);
  position: fixed;
  left: 50%;
  bottom: env(safe-area-inset-bottom, 0);
  transform: translateX(-50%);
  z-index: 99999;
  display: block;
  background-image: url("../img/layout/continent-dayz-map-main-squad-ui-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: auto;
}
.squad-ui-wrapper .squad-ui.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.squad-ui-wrapper .squad-ui.content #btn-squad-members-toggle {
  cursor: pointer;
  height: 24px;
  width: 24px;
  display: block;
  position: relative;
  bottom: -7px;
  background-image: url("../img/layout/grid-menu.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.squad-ui-wrapper .squad-ui.content #btn-squad-panel-toggle {
  cursor: pointer;
  height: 38px;
  width: 55px;
  display: block;
  position: relative;
  bottom: -3px;
  background-image: url("../img/layout/continent-dayz-map-main-panel-collapse.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.squad-ui-wrapper .squad-ui.content #btn-squad-follow-toggle {
  cursor: pointer;
  height: 27px;
  width: 27px;
  display: block;
  position: relative;
  bottom: -7px;
  background-image: url("../img/layout/continent-dayz-map-player-map-indicator-location-follow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 640px) {
  .squad-ui-wrapper {
    width: calc(100vw - 16px);
    height: 44px;
    bottom: calc(env(safe-area-inset-bottom, 0));
    background-size: 100% 100%;
  }
  .squad-ui-wrapper .squad-ui.content {
    gap: 8px;
  }
  .squad-ui-wrapper .squad-ui.content #btn-squad-members-toggle {
    width: 22px;
    height: 22px;
    bottom: 0;
  }
  .squad-ui-wrapper .squad-ui.content #btn-squad-panel-toggle {
    width: 46px;
    height: 30px;
    bottom: 0;
  }
  .squad-ui-wrapper .squad-ui.content #btn-squad-follow-toggle {
    width: 22px;
    height: 22px;
    bottom: 0;
  }
}
.panel {
  transition: 0.3s ease-in-out;
  width: 98%;
  max-width: 808px;
  height: 90svh;
  flex-direction: column;
  position: absolute;
  display: flex;
  left: 48%;
}
.panel:not(.is-open) {
  top: 40%;
  transform: translate(-50%, -40%);
  opacity: 0;
  pointer-events: none;
}
.panel.is-open {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 767px) {
  .panel {
    transition: 0.3s ease-in-out;
    width: 95%;
    max-width: 808px;
    height: 576px;
  }
  .panel:before {
    content: "";
    position: absolute;
    width: 520px;
    height: 61px;
    background-image: url(../img/layout/continent-dayz-map-main-panel-bg-cloud.png);
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    left: 0px;
    top: -19px;
    pointer-events: none !important;
  }
  .panel:after {
    content: "";
    position: absolute;
    width: 269px;
    height: 321px;
    background-image: url(../img/layout/continent-dayz-map-main-panel-bg-blood.png);
    background-repeat: no-repeat;
    background-position: left top;
    display: block;
    left: -100px;
    top: -36px;
    pointer-events: none !important;
  }
}
.tabs {
  display: flex;
}
.tabs button {
  cursor: pointer;
}
.tabs.tabs-main {
  width: calc(100% - 12px);
  position: relative;
  bottom: -3px;
  font-size: var(--font-size-panel-tab);
}
.tabs.tabs-main select {
  border: none;
  background: no-repeat;
  color: #5c8d58;
  top: -35px;
  right: 0px;
  position: absolute;
  height: 30px;
}
.tabs.tabs-main button {
  transition: 0.4s ease-in-out;
}
.tabs.tabs-main button:nth-child(1) {
  margin-left: 12px;
}
.tabs.tabs-main button:nth-child(-n+3) {
  background-image: url("../img/layout/continent-dayz-map-main-tab-inactive.png");
  color: var(--primary-color);
  margin-right: -15px;
  width: 92px;
  height: 30px;
}
.tabs.tabs-main button:nth-child(-n+3).is-active {
  background-image: url("../img/layout/continent-dayz-map-main-tab-active.png");
  color: var(--primary-color);
}
.tabs.tabs-main button:nth-child(4) {
  width: 24px;
  height: 24px;
  margin-left: 20px;
  margin-bottom: -5px;
  background-repeat: no-repeat;
  background-image: url("../img/layout/continent-dayz-map-main-tab-info.png");
}
.tabs.tabs-main button:nth-child(4).active {
  filter: drop-shadow(0 0 1rem green);
}
.tabs.tabs-main span.panel-close {
  transition: 0.3s ease-in-out;
  position: absolute;
  right: -22px;
  top: 5px;
  height: 38px;
  width: 26px;
  display: block;
  background-repeat: no-repeat;
  background-image: url("../img/layout/continent-dayz-map-main-tab-close.png");
  cursor: pointer;
}

@media (min-width: 767px) {
  .tabs {
    display: flex;
  }
  .tabs button {
    cursor: pointer;
  }
  .tabs.tabs-main {
    width: calc(100% - 12px);
    margin-left: 12px;
    position: relative;
    bottom: -3px;
    font-size: var(--font-size-panel-tab);
  }
  .tabs.tabs-main select {
    border: none;
    background: no-repeat;
    color: #5c8d58;
    right: 30px;
    position: absolute;
    height: 30px;
  }
  .tabs.tabs-main button {
    transition: 0.4s ease-in-out;
  }
  .tabs.tabs-main button:nth-child(1) {
    margin-left: 14%;
  }
  .tabs.tabs-main button:nth-child(-n+3) {
    background-image: url("../img/layout/continent-dayz-map-main-tab-inactive.png");
    color: var(--primary-color);
    margin-right: -7px;
    width: 92px;
    height: 30px;
  }
  .tabs.tabs-main button:nth-child(-n+3).is-active {
    background-image: url("../img/layout/continent-dayz-map-main-tab-active.png");
    color: var(--primary-color);
  }
  .tabs.tabs-main button:nth-child(4) {
    width: 24px;
    height: 24px;
    margin-left: 63px;
    background-repeat: no-repeat;
    background-image: url("../img/layout/continent-dayz-map-main-tab-info.png");
  }
  .tabs.tabs-main button:nth-child(4).active {
    filter: drop-shadow(0 0 1rem green);
  }
  .tabs.tabs-main span.panel-close {
    transition: 0.3s ease-in-out;
    position: absolute;
    right: -7px;
    top: 5px;
    height: 38px;
    width: 26px;
    display: block;
    background-repeat: no-repeat;
    background-image: url("../img/layout/continent-dayz-map-main-tab-close.png");
    cursor: pointer;
  }
}
.tab-content {
  flex: 1;
  width: 100%;
  height: 534px;
  background-image: url("../img/layout/continent-dayz-map-main-panel-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
}
.tab-content .tab-pane {
  padding: 0px 0px 0px 15px;
  height: calc(100% - 78px);
  display: flex;
  flex-direction: column;
}
.tab-content .tab-pane .tabs-inner {
  height: 53px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 30px;
}
.tab-content .tab-pane .tabs-inner .tab-title {
  font-size: 0.8rem;
  padding-left: 5px;
  margin-bottom: -5px;
}
.tab-content .tab-pane .tabs-inner .tabs-inner-right {
  display: flex;
  margin-left: auto;
  font-size: 0.7rem;
}
.tab-content .tab-pane .tabs-inner .tabs-inner-right button {
  position: relative;
  padding: 10px;
  margin-bottom: -5px;
  color: var(--secondary-color);
}
.tab-content .tab-pane .tabs-inner .tabs-inner-right button:hover {
  color: var(--green-color);
}
.tab-content .tab-pane .tabs-inner .tabs-inner-right :nth-child(1):after {
  content: "|";
  height: 30px;
  width: 2px;
  position: absolute;
  right: -1px;
  font-size: 15px;
  top: 7px;
}
.tab-content .tab-pane .inner-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 100%;
  overflow: auto;
  border-top: 1px solid var(--line-bg);
}
.tab-content .tab-pane .inner-content .inner-pane {
  height: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tab-content .tab-pane .inner-content .inner-pane .tabs-members {
  flex: 0 0 auto;
  height: 38px;
}
.tab-content .tab-pane .inner-content .inner-pane .members-dyn-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  overflow: auto;
}

@media (min-width: 767px) {
  .tab-content {
    flex: 1;
    width: 100%;
    height: 534px;
    background-image: url("../img/layout/continent-dayz-map-main-panel-bg.png");
    background-repeat: no-repeat;
    background-position: left top;
  }
  .tab-content .tab-pane {
    padding: 0px 0px 0px 15px;
    height: calc(100% - 78px);
    display: flex;
    flex-direction: column;
  }
  .tab-content .tab-pane .tabs-inner {
    height: 53px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    flex: 0 0 auto;
    padding-right: 30px;
  }
  .tab-content .tab-pane .tabs-inner .tab-title {
    padding-left: 110px;
    margin-bottom: -5px;
  }
  .tab-content .tab-pane .tabs-inner .tabs-inner-right {
    display: flex;
    margin-left: auto;
  }
  .tab-content .tab-pane .tabs-inner .tabs-inner-right button {
    position: relative;
    padding: 10px;
    margin-bottom: -5px;
    color: var(--secondary-color);
  }
  .tab-content .tab-pane .tabs-inner .tabs-inner-right button:hover {
    color: var(--green-color);
  }
  .tab-content .tab-pane .tabs-inner .tabs-inner-right :nth-child(1):after {
    content: "|";
    height: 30px;
    width: 2px;
    position: absolute;
    right: -1px;
    font-size: 15px;
    top: 12px;
  }
  .tab-content .tab-pane .inner-content {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    overflow: auto;
    border-top: 1px solid var(--line-bg);
  }
  .tab-content .tab-pane .inner-content .inner-pane {
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .tab-content .tab-pane .inner-content .inner-pane .tabs-members {
    flex: 0 0 auto;
    height: 38px;
  }
  .tab-content .tab-pane .inner-content .inner-pane .members-dyn-content {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow: auto;
  }
}
.tab-pane {
  display: none;
}

.inner-pane {
  display: none;
}

.tab-pane .inner-content .mem-pane {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
}
.tab-pane .inner-content .inner-pane .tabs-members {
  position: sticky;
  top: 0px;
}
.tab-pane .inner-content .inner-pane .tabs-members button {
  flex: 1;
  border-right: 1px solid var(--line-bg);
  padding: 0px 10px;
  color: var(--secondary-color);
  font-size: var(--font-size-lg);
  width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid var(--line-bg);
  background-size: cover;
}
.tab-pane .inner-content .inner-pane .tabs-members button.active {
  background-image: url(../img/layout/continent-dayz-map-members-tab-bg.png);
  color: var(--primary-color);
}
.tab-pane .inner-content .inner-pane .squad-list-item, .tab-pane .inner-content .inner-pane .squad-members-item, .tab-pane .inner-content .inner-pane .view-squad-item, .tab-pane .inner-content .inner-pane .squad-members-header, .tab-pane .inner-content .inner-pane .squad-settings-item {
  border-bottom: 1px solid var(--line-bg);
  padding: 10px;
  color: var(--secondary-color);
  font-size: 0.6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}

@media (min-width: 767px) {
  .tab-pane .inner-content .inner-pane .tabs-members {
    position: sticky;
    top: 0px;
  }
  .tab-pane .inner-content .inner-pane .tabs-members button {
    padding: 0px 10px;
    font-size: var(--font-size-lg);
    width: 25%;
  }
  .tab-pane .inner-content .inner-pane .squad-list-item, .tab-pane .inner-content .inner-pane .squad-members-item, .tab-pane .inner-content .inner-pane .view-squad-item, .tab-pane .inner-content .inner-pane .squad-members-header, .tab-pane .inner-content .inner-pane .squad-settings-item {
    border-bottom: 1px solid var(--line-bg);
    padding: 10px;
    color: var(--secondary-color);
    font-size: 0.7rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
  }
}
.squad-list-item:hover {
  background-color: #ffffff;
}
.squad-list-item > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.squad-list-item .squad-list-item-squad-id {
  width: 25px;
}
.squad-list-item .squad-list-item-squad-name {
  width: 25%;
  max-width: 200px;
  font-weight: bold;
}
.squad-list-item .squad-list-item-squad-member-count {
  width: 25px;
}
.squad-list-item .squad-list-item-squad-owner {
  width: 14%;
  max-width: 100px;
}
.squad-list-item .squad-list-item-squad-release {
  width: 14%;
  max-width: 200px;
  font-style: italic;
}
.squad-list-item .squad-list-item-squad-join-btn {
  margin-left: auto;
}
.squad-list-item .squad-list-item-squad-join-btn span {
  padding-right: 20px;
}
.squad-list-item .squad-list-item-squad-join-btn button {
  width: 63px;
  height: 17px;
  cursor: pointer;
}
.squad-list-item .squad-list-item-squad-join-btn button.leave-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-ban.png);
}
.squad-list-item .squad-list-item-squad-join-btn button.join-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
}
.squad-list-item .squad-list-item-squad-join-btn button.view-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
}

@media (min-width: 767px) {
  .squad-list-item .squad-list-item-squad-id {
    width: 25px;
  }
  .squad-list-item .squad-list-item-squad-name {
    width: 25%;
    max-width: 200px;
  }
  .squad-list-item .squad-list-item-squad-member-count {
    width: 25px;
  }
  .squad-list-item .squad-list-item-squad-owner {
    width: 14%;
    max-width: 100px;
  }
  .squad-list-item .squad-list-item-squad-release {
    width: 10%;
    max-width: 200px;
  }
  .squad-list-item .squad-list-item-squad-join-btn span {
    padding-right: 20px;
  }
}
.squad-members-header > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.squad-members-header {
  font-weight: bold;
}
.squad-members-header .col-status {
  width: 10%;
}
.squad-members-header .col-name {
  width: 20%;
}
.squad-members-header .col-role {
  width: 10%;
}
.squad-members-header .col-joined {
  width: 14%;
}
.squad-members-header .col-actions {
  width: 50%;
  margin-left: auto;
  text-align: right;
}

@media (min-width: 767px) {
  .squad-members-header > * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .squad-members-header {
    font-weight: bold;
  }
  .squad-members-header .col-status {
    width: 10%;
  }
  .squad-members-header .col-name {
    width: 20%;
  }
  .squad-members-header .col-role {
    width: 10%;
  }
  .squad-members-header .col-joined {
    width: 10%;
  }
  .squad-members-header .col-actions {
    width: 50%;
    margin-left: auto;
    text-align: right;
  }
}
.squad-members-item > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.squad-members-item .squad-members-item-member-status {
  width: 10%;
}
.squad-members-item .squad-members-item-member-name {
  width: 20%;
}
.squad-members-item .squad-members-item-member-role {
  width: 10%;
}
.squad-members-item .squad-members-item-member-join-date {
  width: 10%;
}
.squad-members-item .squad-members-item-member-actions {
  width: 50%;
  margin-left: auto;
  text-align: right;
}
.squad-members-item .squad-members-item-member-actions button {
  width: 63px;
  height: 17px;
  cursor: pointer;
}
.squad-members-item .squad-members-item-member-actions button.ban-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-ban.png);
}
.squad-members-item .squad-members-item-member-actions button.accept-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
}
.squad-members-item .squad-members-item-member-actions button.kick-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-kick.png);
}
.squad-members-item .squad-members-item-member-actions button.unban-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
}

@media (min-width: 767px) {
  .squad-members-item > * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .squad-members-item .squad-members-item-member-status {
    width: 10%;
  }
  .squad-members-item .squad-members-item-member-name {
    width: 20%;
  }
  .squad-members-item .squad-members-item-member-role {
    width: 10%;
  }
  .squad-members-item .squad-members-item-member-join-date {
    width: 14%;
  }
  .squad-members-item .squad-members-item-member-actions {
    width: 50%;
    margin-left: auto;
    text-align: right;
  }
  .squad-members-item .squad-members-item-member-actions button {
    width: 63px;
    height: 17px;
    cursor: pointer;
  }
  .squad-members-item .squad-members-item-member-actions button.ban-button {
    color: var(--primary-color);
    background-image: url(../img/layout/continent-dayz-map-main-btn-bg-ban.png);
  }
  .squad-members-item .squad-members-item-member-actions button.accept-button {
    color: var(--primary-color);
    background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
  }
  .squad-members-item .squad-members-item-member-actions button.kick-button {
    color: var(--primary-color);
    background-image: url(../img/layout/continent-dayz-map-main-btn-bg-kick.png);
  }
  .squad-members-item .squad-members-item-member-actions button.unban-button {
    color: var(--primary-color);
    background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
  }
}
.view-squad-item > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-squad-item .view-squad-id {
  width: 25px;
}
.view-squad-item .view-squad-name {
  width: 30%;
  font-weight: bold;
}
.view-squad-item .view-squad-action {
  margin-left: auto;
}
.view-squad-item .view-squad-action button {
  width: 63px;
  height: 17px;
  cursor: pointer;
}
.view-squad-item .view-squad-action button.view-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
}

.squad-settings-item > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.squad-settings-item .squad-settings-squad-id {
  width: 25px;
}
.squad-settings-item .squad-settings-squad-name {
  width: 40%;
  font-weight: bold;
}
.squad-settings-item .squad-settings-squad-input-rename {
  margin-left: auto;
  margin-right: 20px;
}
.squad-settings-item .squad-settings-squad-input-btn-rename button {
  width: 63px;
  height: 17px;
  cursor: pointer;
}
.squad-settings-item .squad-settings-squad-input-btn-rename button.rename-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-accept.png);
}
.squad-settings-item .squad-settings-squad-input-btn-delete button {
  width: 63px;
  height: 17px;
  cursor: pointer;
}
.squad-settings-item .squad-settings-squad-input-btn-delete button.delete-button {
  color: var(--primary-color);
  background-image: url(../img/layout/continent-dayz-map-main-btn-bg-ban.png);
}

.btn-create-squad {
  width: 86px;
  height: 20px;
  font-size: 0.7rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.btn-create-squad.disabled {
  background-image: url(../img/layout/continent-dayz-map-main-tab-new-squad-inactive.png);
  color: var(--secondary-color);
}
.btn-create-squad.available {
  background-image: url(../img/layout/continent-dayz-map-main-tab-new-squad-active.png);
  color: var(--primary-color);
}

@media (min-width: 767px) {
  .btn-create-squad {
    width: 132px;
    height: 29px;
    font-size: 0.9rem;
  }
}
.squad_members_list {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 13px;
  top: 13px;
  width: 160px;
  max-height: 565px;
  transition: 0.3s ease-in-out;
  gap: 8px;
}
.squad_members_list:not(.is-open) {
  height: 76px;
}
.squad_members_list:not(.is-open) .squad_members_list_content-wrapper {
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.squad_members_list.is-open .squad_members_list_content-wrapper {
  transition: 0.3s ease-in-out;
  opacity: 1;
  pointer-events: all;
}
.squad_members_list .squad_members_list_header {
  transform: perspective(800px) rotateY(40deg) scale(0.9) rotateX(14deg);
  margin-left: -30px;
  display: flex;
  width: 300px;
  min-height: 76px;
  background-image: url("../img/layout/continent-dayz-map-large-logo-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  align-items: center;
  line-height: 83px;
}
.squad_members_list .squad_members_list_header .logo-container .logo {
  height: 44px;
  width: 70px;
}
.squad_members_list .squad_members_list_header .logo-container .logo a {
  display: block;
  height: 50px;
  width: 69px;
  background-image: url("../img/layout/continent-dayz-map-small-logo.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.squad_members_list .squad_members_list_header .title-container .main-content-title-text {
  width: 160px;
  color: var(--primary-color);
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.squad_members_list .squad_members_list_content-wrapper {
  flex: 1 1 auto;
  min-height: 0;
}
.squad_members_list .squad_members_list_content-wrapper .squad_members_list_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.squad_members_list .squad_members_list_content-wrapper .squad_members_list_content .main-container {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  width: calc(100% - 11px);
}
.squad_members_list .squad_members_list_content-wrapper .squad_members_list_content .main-container .main-content-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
}

.player-item {
  transform: perspective(800px) rotateY(40deg) scale(0.9) rotateX(14deg);
  transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0.8;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.player-item:hover {
  transform: perspective(800px) rotateY(0deg) scale(1) rotateX(0deg);
  opacity: 1;
}
.player-item {
  cursor: pointer;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 0;
  padding: 6px 12px 6px 12px;
  width: 139px;
  height: 44px;
  background-image: url(../img/layout/player-item-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
.player-item .player-name {
  font-size: 12px;
}
.player-item .player-meta .csm2xStatChipV1 {
  width: 6px;
  height: 6px;
  inline-size: 6px;
  block-size: 6px;
  display: block;
  border-radius: 50%;
  /* alap szín megmarad */
  background-color: var(--chip-color);
  /* gömb hatás (fény + árnyék) */
  background-image: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.28) 22%, rgba(255, 255, 255, 0) 42%), radial-gradient(circle at 68% 72%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.32) 100%);
  /* finom kontúr / glow, nem "belenyomott" */
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.18), 0 0 1px 0 var(--primary-color);
}
.player-item .player-meta .csm2xStatChipV1--darkGreen {
  --chip-color: #94d342;
}
.player-item .player-meta .csm2xStatChipV1--lightGreen {
  --chip-color: #1f7a3d;
}
.player-item .player-meta .csm2xStatChipV1--yellow {
  --chip-color: #e2943b;
}
.player-item .player-meta .csm2xStatChipV1--red {
  --chip-color: #e71c0d;
}
.player-item .player-meta .csm2xStatChipV1--black {
  --chip-color: #000000;
}
.player-item .player-meta .csm2xStatChipV1--blinkRed {
  --chip-color: #e71c0d;
  animation: blinker 1s linear infinite;
}

.player-item .player-name {
  grid-column: 1/-1;
  grid-row: 1;
  min-width: 0;
  width: auto; /* ne 100% */
  height: 17px;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 17px;
  margin-bottom: -4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-item .player-meta {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  width: -moz-max-content;
  width: max-content;
  justify-self: start;
  min-width: 0;
}

.player-item .player-distance {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 15px;
  white-space: nowrap;
  color: var(--secondary-color);
  font-size: 11px;
  font-weight: bold;
}

.player-item .player-distance span {
  font-size: 0.8em;
  color: var(--secondary-color);
  line-height: 1;
  padding-left: 2px;
  opacity: 0.6;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.csm2-toast-stack {
  font-family: medium;
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
  pointer-events: none;
}

.csm2-toast-stack .csm2xToastV3 {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url("../img/layout/continent-dayz-map-player-live-list-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  opacity: 1;
  transform: translateY(0);
  transition: transform 260ms ease, opacity 260ms ease;
}

.csm2-toast-stack .csm2xToastV3.is-enter {
  opacity: 0;
  transform: translateY(8px);
}

.csm2-toast-stack .csm2xToastV3.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.csm2-toast-stack .csm2xToastV3.is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.csm2-toast-stack .csm2xToastV3 .toast-header {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1;
}

.csm2-toast-stack .csm2xToastV3 .toast-header .me-auto {
  font-weight: 700;
}

.csm2-toast-stack .csm2xToastV3 .toast-body {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}

/* Variants */
#continent-live-map-not-logged-in {
  width: 100%;
  height: 100vh;
  background-image: url("../img/login/map2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px !important;
}
#continent-live-map-not-logged-in .alig-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 716px;
  height: 463px;
  align-items: center;
  background-image: url("../img/login/continent-dayz-map-login_modal-bg.png");
}
#continent-live-map-not-logged-in .alig-center .dayz-continent-live-map-logo {
  top: -40px;
  position: relative;
  background-image: url("../img/login/continent-dayz-map-login_logo.png");
  width: 341px;
  height: 158px;
  display: block;
  margin: 0 auto;
}
#continent-live-map-not-logged-in .alig-center h2 {
  font-size: 15px;
  text-transform: uppercase;
  color: #b0b0b0;
  padding: 65px 20px 0px;
  margin: 0px;
  top: -73px;
  position: relative;
}
#continent-live-map-not-logged-in .alig-center p {
  font-style: italic;
  font-size: 10px;
  text-transform: uppercase;
  color: #b0b0b0;
  top: -72px;
  position: relative;
}
#continent-live-map-not-logged-in .alig-center .line-separator {
  width: 246px;
  height: 2px;
  margin: -22px auto 23px;
  background-image: url("../img/login/continent-dayz-map-login_line.png");
  background-repeat: no-repeat;
}
#continent-live-map-not-logged-in .alig-center .steam {
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
#continent-live-map-not-logged-in .alig-center .steam a {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-image: url("../img/login/continent-dayz-map-login_steam-btn.png");
  background-repeat: no-repeat;
  width: 164px;
  height: 48px;
  color: #ffffff;
  position: relative;
}
#continent-live-map-not-logged-in .alig-center .steam a:before {
  content: "";
  position: relative;
  display: block;
  width: 18px;
  height: 15px;
  background-image: url("../img/login/continent-dayz-map-login_steam-btn-icon.png");
  background-repeat: no-repeat;
  margin-right: -17px;
}

.continent-builtin-marker-gas-area .continentBuiltinGasAreaXformV1 {
  position: relative;
  width: 0;
  height: 0;
  transform-origin: 50% 50%;
  overflow: visible;
}
.continent-builtin-marker-gas-area .gas-area-part-head,
.continent-builtin-marker-gas-area .gas-area-part-1,
.continent-builtin-marker-gas-area .gas-area-part-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.continent-builtin-marker-gas-area .gas-area-part-1,
.continent-builtin-marker-gas-area .gas-area-part-2 {
  width: 850px;
  height: 800px;
}
.continent-builtin-marker-gas-area .gas-area-part-head {
  z-index: 2;
  width: 290px;
  height: 367px;
  background-image: url(../img/icon/gas-area-part-head.webp);
  transform: translate3d(-50%, -50%, 0) translate3d(-71px, -98px, 0);
  animation: csm2xGasHeadPulseV1 60s ease-in-out infinite;
}
.continent-builtin-marker-gas-area .gas-area-part-1 {
  z-index: 1;
  background-image: url(../img/icon/gas-area-part-1.webp);
  animation: csm2xGasSpinClockwiseV1 240s linear infinite;
}
.continent-builtin-marker-gas-area .gas-area-part-2 {
  background-image: url(../img/icon/gas-area-part-2.webp);
  animation: csm2xGasSpinCounterOffsetV1 360s linear infinite;
}

@keyframes csm2xGasSpinClockwiseV1 {
  from {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
@keyframes csm2xGasSpinCounterOffsetV1 {
  from {
    transform: translate3d(-50%, -50%, 0) translate3d(-50px, -58px, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-50%, -50%, 0) translate3d(-50px, -58px, 0) rotate(-360deg);
  }
}
@keyframes csm2xGasHeadPulseV1 {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .map-marker.continent-builtin-marker-gas-area .gas-area-part-head,
  .map-marker.continent-builtin-marker-gas-area .gas-area-part-1,
  .map-marker.continent-builtin-marker-gas-area .gas-area-part-2 {
    animation: none !important;
  }
}
.marker-popup {
  position: absolute;
  height: 250px;
  width: 165px;
  background-image: url("../img/layout/continent-dayz-map-markers-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.marker-popup .popup-inner {
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}
.marker-popup .popup-inner .marker-icon-grid {
  display: flex;
  flex-direction: column;
}
.marker-popup .popup-inner .marker-icon-grid .popup-section {
  width: 100%;
  padding: 2px 5px;
  margin-top: auto;
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option {
  cursor: pointer;
  position: relative;
  width: 25%;
  height: 30px;
  float: left;
  box-sizing: border-box;
  background-size: auto 60%;
  background-repeat: no-repeat;
  background-position: center center;
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-rank {
  background-image: var(--marker-rank);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-badge {
  background-image: var(--marker-badge);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-bag {
  background-image: var(--marker-bag);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-brief {
  background-image: var(--marker-brief);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-bumm {
  background-image: var(--marker-bumm);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-compass {
  background-image: var(--marker-compass);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-drop {
  background-image: var(--marker-drop);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-gasmask {
  background-image: var(--marker-gasmask);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-helmet {
  background-image: var(--marker-helmet);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-plate {
  background-image: var(--marker-plate);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-radar {
  background-image: var(--marker-radar);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-tent {
  background-image: var(--marker-tent);
}
.marker-popup .popup-inner .marker-icon-grid .popup-section .icon-option.marker-truck {
  background-image: var(--marker-truck);
}
.marker-popup .popup-inner .popup-buttons {
  padding: 8px 9px;
  display: flex;
}
.marker-popup .popup-inner .popup-buttons #popup-submit {
  cursor: pointer;
  padding: 1px 15px;
  font-size: 11px;
  background: linear-gradient(to bottom, #fefefe, #f7f7f7);
  color: #bababa;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  transition: 0.2s ease-in-out;
}
.marker-popup .popup-inner .popup-buttons #popup-submit:hover {
  color: #ffffff;
  background: #02415a;
  border: 1px solid #c9c9c9;
}
.marker-popup .popup-inner .popup-buttons #popup-delete {
  cursor: pointer;
  background-image: url(../icons/delete-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px;
  margin-left: auto;
}
.marker-popup .popup-inner input[type=text] {
  width: 100%;
  display: block;
  position: relative;
  padding: 3px 6px;
  background: none;
  font-family: "semibold", sans-serif;
  font-size: 13px;
  color: #418078;
}
.marker-popup .popup-inner input[type=text]::-moz-placeholder {
  font-family: "light", sans-serif;
  font-size: 12px;
  color: #cccccc;
  text-transform: uppercase;
}
.marker-popup .popup-inner input[type=text]::placeholder {
  font-family: "light", sans-serif;
  font-size: 12px;
  color: #cccccc;
  text-transform: uppercase;
}

.map-marker {
  height: 0;
  width: 0;
}
.map-marker.marker-location .marker-label {
  background-image: none;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: medium;
  font-size: 1.1rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-shadow: -1px -1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area) .marker-label {
  font-size: 0.7rem;
  position: absolute;
  left: 0px;
  top: -200%;
  transform: translate(20px, -200%);
  padding: 1px 20px;
  background-image: var(--marker-name-bg);
  background-size: 100% 100%;
  display: inline-block;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area) .marker-label:empty {
  display: none !important;
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area):before {
  content: "";
  position: absolute;
  height: 30px;
  width: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  left: 50%;
  top: -140%;
  transform: translate(-50%, -140%);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area):after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: var(--marker-dot);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-rank:before {
  background-image: var(--marker-rank);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-badge:before {
  background-image: var(--marker-badge);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-bag:before {
  background-image: var(--marker-bag);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-brief:before {
  background-image: var(--marker-brief);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-bumm:before {
  background-image: var(--marker-bumm);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-compass:before {
  background-image: var(--marker-compass);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-drop:before {
  background-image: var(--marker-drop);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-gasmask:before {
  background-image: var(--marker-gasmask);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-helmet:before {
  background-image: var(--marker-helmet);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-plate:before {
  background-image: var(--marker-plate);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-radar:before {
  background-image: var(--marker-radar);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-tent:before {
  background-image: var(--marker-tent);
}
.map-marker:not(.marker-location):not(.continent-builtin-marker-gas-area).marker-truck:before {
  background-image: var(--marker-truck);
}

/* csm2x-map-players.css */
.csm2x-playerlayer {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
}

.csm2x-playerlayer.is-hidden {
  display: none;
}

/* Marker root: left/top is the exact screen coordinate */
.csm2x-pmark {
  position: absolute;
  left: 0;
  top: 0;
  transform: none;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  --csm2xLabelJitter: 0px;
}

/* Dot is centered */
.csm2x-pmark__dot {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  pointer-events: auto;
  background-image: url("../img/icon/player_dot.png");
}

/* Name label (positioned relative to dot) */
.csm2x-pmark__name {
  font-family: medium;
  filter: drop-shadow(0 0 0.75rem #3a3a3a);
  height: 34px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/icon/player_name_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 2px 22px 0px 20px;
  color: #242424;
  font-size: 12px;
  line-height: 34px;
  white-space: nowrap;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 3;
}

/* Selected/offline styling */
.csm2x-pmark.is-offline .csm2x-pmark__dir {
  display: none !important;
}

.csm2x-pmark.is-offline .csm2x-pmark__name {
  opacity: 0.5;
}

/* Direction arrow */
.csm2x-pmark__dir {
  position: absolute;
  left: 0;
  top: 0;
  width: 29px;
  height: 27px;
  transform: translate(-50%, -50%) rotate(var(--csm2xDirDeg, 0deg));
  transform-origin: 50% 50%;
  pointer-events: none;
  z-index: 1;
}

.csm2x-pmark__dirhead {
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  width: 22px;
  height: 21px;
  background-image: url("../img/icon/player_dir.png");
}

.csm2x-pmark.is-selected .csm2x-pmark__dirhead {
  border-bottom-color: rgba(0, 0, 0, 0.85);
}

.csm2x-pmark.is-selected .csm2x-pmark__dirline {
  background: rgba(0, 0, 0, 0.85);
}

/* Dynamic label placement (opposite of dir) + anti-overlap jitter */
.csm2x-pmark.is-pmarklabel-right .csm2x-pmark__name {
  left: 14px;
  top: 0;
  transform: translateY(-50%) translateY(var(--csm2xLabelJitter));
  text-align: left;
}

.csm2x-pmark.is-pmarklabel-left .csm2x-pmark__name {
  left: -14px;
  top: 0;
  transform: translate(-100%, -50%) translateY(var(--csm2xLabelJitter));
  text-align: right;
}

.csm2x-pmark.is-pmarklabel-up .csm2x-pmark__name {
  left: 0;
  top: -14px;
  transform: translate(-50%, -100%) translateX(var(--csm2xLabelJitter));
  text-align: center;
}

.csm2x-pmark.is-pmarklabel-down .csm2x-pmark__name {
  left: 0;
  top: 14px;
  transform: translate(-50%, 0) translateX(var(--csm2xLabelJitter));
  text-align: center;
}/*# sourceMappingURL=app.css.map */