:root {
    --preview-dot-size: 27px;
}

.dot-list {
    margin: 0 auto;
    width: 307px;
    @media only screen and (min-width: 1000px) {
        width: 400px;
    }
}

.preview-dot {
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    color: black;
    background-color: white;
    display: inline-flex;
    margin: 1px;
    height: var(--preview-dot-size);
    width: var(--preview-dot-size);
    font-size: 4px;
    line-height: 4px;
    border-radius: 50%;
    vertical-align: middle; /* no matter whats inside */
    overflow: visible;
    @media only screen and (min-width: 1000px) {
        width: 38px;
        height: 38px;
        font-size: 6px;
        line-height: 6px;
    }
}

.preview-text {
    text-align: center;
    white-space: pre;
}

.preview-dot svg {
    width: 70%;
    height: 70%;
    margin: auto;
}

.preview-dot span {
    margin: auto;
}

.preview-dot img {
    overflow: hidden;
    border-radius: 50%;
    width: var(--preview-dot-size);
    height: var(--preview-dot-size);
    margin: auto;
    @media only screen and (min-width: 1000px) {
        width: 38px;
        height: 38px;
    }
}

.preview-dot-border {
    background-color: grey;
    opacity: .2;
}

.preview-dot-logo {
    background: var(--background);
    overflow: hidden;
}
