.info_window {
    padding: 8px 12px 8px 40px;
    border-radius: 12px;
    background-color: #313133;
    background-image: url('./info-icon.svg');
    background-position: 10px 8px;
    background-repeat: no-repeat;
    color: #f2f5fa;
    font-size: 14px;
    line-height: 20px;
    min-width: max-content;
}

.title {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.description {
    line-height: 20px;
    font-size: 14px;
    margin: 0;
    color: #7b7d85ff;
}

.balloon {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    row-gap: 8px;
    border-radius: 12px;
    padding: 8px 4px;
    height: 100%;
    width: 350px;
    overflow: hidden;
}

.skeleton-title {
    height: 20px;
    width: 45%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 0 8px 0;
}

.description-container {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.skeleton-title,
.skeleton-description {
    background-color: rgba(0, 0, 0, 0.05);
}

.skeleton-description {
    height: 9px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
}

.skeleton-title::after,
.skeleton-description::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    animation: loading 2s infinite;
}

.w40 {
    width: 40%;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.w80 {
    width: 80%;
}

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