.article-network-list-wrapper {
  font-family: "Popins", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  width: fit-content;
}

.network-selector-title {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  padding-bottom: 8px;
}

.article-network-pill {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
  gap: 10px;
  text-decoration: none;
  width: 160px;
  z-index: 1;
  overflow: hidden;
}

.article-network-pill.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(154deg, #f23d4c 16.07%, #f99f38 83.87%);
  z-index: -1;
}

.article-network-pill::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #eff0f3;
  border-radius: 8px;
  z-index: -1;
}

.article-network-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.article-network-pill p {
  margin: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}

body.network-popup-active {
  overflow: hidden;
}

.article-network-selector-btn {
  display: none;
}

.article-network-selector-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: white;
  border-radius: 50%;
  padding: 12px;
  border: 2px solid #939dae;
}

.article-network-selector-btn:focus,
.article-network-selector-btn:active,
.article-network-selector-btn:hover {
  background: #fff;
}

.article-network-selector-btn:focus {
  border: 2px solid #f23d4c;
}

.network-selector-overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.48);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 20px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.mobile-network-selector-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  overflow-y: auto;
  height: 75vh;
}

.mobile-network-selector-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .article-network-list-wrapper {
    display: none;
  }

  .article-network-selector-btn {
    display: flex;
  }
}
