.circle-image {
  border-radius: 50%;
}

.b-modal-overlay {
  position: fixed;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.b-modal {
  background: black;
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 42px 16px 16px 16px;
  border-radius: 6px;
}

.b-modal-close-btn {
  position: absolute;
  background: transparent;
  color: white;
  right: 16px;
  top: 16px;
}

.b-modal-content {
  height: 100%;
  overflow: auto;
  color: white;
}

.b-modal-content p {
  margin: 8px 0;
  font-size: 16px;
  color: inherit;
}

.b-modal-content a {
  color: var(--blue);
}

.b-modal-content h1,
.b-modal-content h2,
.b-modal-content h3,
.b-modal-content h4,
.b-modal-content h5,
.b-modal-content h6 {
  margin: 16px 0 8px 0;
}

.b-modal-content img {
  width: 100%;
}

.hidden {
  display: none;
}

.jsOpenGameDetail {
  cursor: pointer;
}

.about-content p {
  position: relative;
  z-index: 1;
  margin: 8px 0;
}

@media screen and (min-width: 576px) {
  .b-modal {
    width: 70%;
    height: 70%;
  }
}