.line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    gap: 8px;
}

.line-text {
    font-size: 14px;
}

@media (min-width: 640px) {
    .line-text {
        font-size: 16px;
    }
}

.mobile-note {
    display: inline-block;
}

@media (min-width: 768px) {
    .mobile-note {
        display: none;
    }
}

.line-badge-wrapper {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .line-badge-wrapper {
        display: flex;
    }
}

.js-api-label {
    white-space: nowrap;
}

.tick-circle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: var(--tangerine-100);
    color: var(--gray-20);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 32px;
}

.tick-icon {
    width: 16px;
}
