.nysis_quotes_wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.nysis_quotes {
    display: flex;
    position: relative;
    top: 0;
    width: 10000px;
}

.nysis_quotes.shifting {
    transition: left .2s ease-out;
}

.nysis_quote {
    cursor: grab;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    transition: all 1s;
    position: relative;
    border-radius: 2px;
    padding: 20px;
    overflow: hidden;
}

.nysis_quote.solo {
    cursor: auto;
}

.nysis_quote_start,
.nysis_quote_end {
    font-size: 50px;
    font-weight: 600;
}

.nysis_quote_content {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nysis_quote_text {
    text-align: center;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
}

.nysis_quote_meta {
    display: flex;
    flex-direction: row;
    align-self: center;
}

.nysis_quote_author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    margin-left: 10px;
    justify-content: center;
}

.nysis_quote_name {
    font-weight: 600;
}

.nysis_quote_picture {
    width:74px;
    height:74px;
    overflow: hidden;
}

.nysis_quote_picture img {
    width:74px;
    height:74px;
    object-fit: cover;
}

.nysis_quote_bullets {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 60px;
}

.nysis_quote_bullet:active {
    transform: scale(1.1);
}

.nysis_quote_bullet {
    height: 11px;
    width: 11px;
    margin: 0 10px;
    border-radius: 6px;
    background-color: var(--e-global-color-primary);
    opacity: 0.5;
    cursor: pointer;
}

html.dark .nysis_quote_bullet {
    background-color: white;
}

.nysis_quote_bullet.selected {
    opacity: 1;
}

.nysis_quote_bullet:active {
    transform: scale(.5);
}