.y-map{
  width: 100%;
  height: 500px;
  max-width: 100%;
  display: grid;
}
.marker-container {
  display: flex;
  gap: 30px;
  position: relative;
  top: -24px;
}

.marker-tip-container {
  padding: 16px;
  padding-bottom: 40px;
  box-shadow: 0px 2px 2px 1px rgba(30, 41, 59, 0.04),
    0px 2px 8px -1px rgba(30, 41, 59, 0.12);
  min-height: 160px;
  position: absolute;
  left: -350px;
  background-color: var(--color-white);
  max-width: 330px;
  z-index: 101;
  border-radius: 10px;
  opacity: 1;
  transition: all var(--transition);
}
.marker-tip-container .tip_close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 20px;
  cursor: pointer;
}
.marker-tip-container .marker-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: start;
}

.marker-tip-container .marker-content .marker-title {
  font-size: 16px;
  font-weight: 400;
}

.marker-tip-container .marker-content .marker-text-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: start;
}

.marker-tip-container
  .marker-content
  .marker-text-item
  .marker-text-item-title {
  font-size: 14px;
  font-weight: 400;
}

.marker-tip-container .marker-content .marker-text-item .marker-text-item-text {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 300;
}
.marker-tip-container
  .marker-content
  .marker-text-item
  .marker-text-item-text
  p {
  margin: 0;
}

.marker-tip-container._hide {
  opacity: 0;
  pointer-events: none;
}

.marker-tip-container._modal {
  max-width: max-content;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
}
.ymap-circle {
  background-color: var(--color-white);
  border-radius: 100%;
  border: 10px solid #5b7fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  width: 64px;
  height: 64px;
  position: relative;
  left: -32px;
  top: -64px;
  cursor: pointer;
}

.ymap-tip{
  width: 24px;
  height: 24px;
  position: relative;
  left: -12px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .ymap-circle {
    width: 32px;
    height: 32px;
    left: -16px;
    top: -32px;
    font-size: 16px;
    border: 5px solid #5b7fff;
  }
  .y-map{
    height: 400px;
  }
}