/******************************************************************************
 * LSAT Digital
 ******************************************************************************/

.ss-fade-enter-active,
.ss-fade-leave-active {
    transition: all 0.2s;
}
.ss-fade-enter,
.ss-fade-leave-to {
    opacity: 0;
    transform: translateY(-8px);
}

[v-cloak] {
    visibility: hidden
}
.ss-hidden-scrollbars {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}
.ss-hidden-scrollbars::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

@supports (-webkit-overflow-scrolling: touch) {
    .ss-lsat-digital.ss-ios-fix-oscillate {
        background-color: #fffffe;
    }
}
/*
 * Scrollbar
 */
.ss-lsat-digital .ss-scrollable {
    overflow-x: scroll;
    overflow-y: scroll;
    touch-action: pan-y; /* Needed for pointermove to fire */
    -webkit-overflow-scrolling: touch;
}
.ss-lsat-digital ::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.ss-lsat-digital .ss-is-overflow-y::-webkit-scrollbar:vertical {
  width: 6px;
}
.ss-lsat-digital .ss-is-overflow-x::-webkit-scrollbar:horizontal {
  height: 6px;
}
.ss-lsat-digital ::-webkit-scrollbar-track,
.ss-lsat-digital ::-webkit-scrollbar-track-piece {
  background: none;
}
.ss-lsat-digital .ss-is-overflow-y::-webkit-scrollbar-track,
.ss-lsat-digital .ss-is-overflow-y::-webkit-scrollbar-track-piece,
.ss-lsat-digital .ss-is-overflow-x::-webkit-scrollbar-track,
.ss-lsat-digital .ss-is-overflow-x::-webkit-scrollbar-track-piece {
  background: rgba(220,220,220,0.1);
}
.ss-lsat-digital ::-webkit-scrollbar-thumb {
  background: rgba(127,127,127,0.6);;
  border-radius: 10px;
}
.ss-lsat-digital ::-webkit-scrollbar-thumb:hover {
  background: #777;
}
.ss-lsat-digital .ss-hidden-scrollbars.ss-is-overflow-y,
.ss-lsat-digital .ss-hidden-scrollbars .ss-is-overflow-y  {
    margin-right: -6px; /* make space for scrollbar to avoid layout change */
}
/* Prevent rapid flip flopping on iOS and Edge */
@supports (-webkit-overflow-scrolling: touch) or (-ms-ime-align: auto) {
    .ss-lsat-digital .ss-hidden-scrollbars.ss-is-overflow-y,
    .ss-lsat-digital .ss-hidden-scrollbars .ss-is-overflow-y  {
        margin-right: 0;
    }
}

@-moz-document url-prefix() {
    /* Hide scrollbars on Firefox */
    .ss-lsat-digital .ss-hidden-scrollbars.ss-scrollable,
    .ss-lsat-digital .ss-hidden-scrollbars .ss-scrollable {
        scrollbar-width: none;
    }
    /* Prevent rapid flip flopping on Firefox */
    .ss-lsat-digital .ss-hidden-scrollbars.ss-is-overflow-y,
    .ss-lsat-digital .ss-hidden-scrollbars .ss-is-overflow-y  {
        margin-right: 0;
    }
    /* Make scrollbars thin on Firefox */
    .ss-lsat-digital .ss-hidden-scrollbars.ss-scrollable.ss-is-overflow-y,
    .ss-lsat-digital .ss-hidden-scrollbars .ss-scrollable.ss-is-overflow-y,
    .ss-lsat-digital .ss-hidden-scrollbars.ss-scrollable .ss-is-overflow-y,
    .ss-lsat-digital .ss-hidden-scrollbars .ss-scrollable .ss-is-overflow-y {
        scrollbar-width: thin;
    }
}


/*
 * Layout
 */
.ss-lsat-digital-fullscreen-wrapper {
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(85vh - 100px);
    width: 100%;
    position: relative;

    --card-background: #FBFBFB;
    --section-border-color: #ebebeb;
    --input-background: #fff;
    --input-border-color: #e6e6e6;
}

.ss-lsat-digital-fullscreen-wrapper.ss-dark {
    --card-background: #282828;
    --section-border-color: #393939;
    --input-background: transparent;
    --input-border-color: #393939;
}

.ss-lsat-digital-fullscreen-wrapper.ss-is-fullscreen {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 200000;
}
.ss-lsat-digital {
    font-family: var(--7s-fonts-primary);
    max-width: 1440px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.ss-lsat-digital .ss-top {
    flex: 0 0 60px;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: visible;
    overflow: visible; /* iOS safari needs this to show menus above -webkit-overflow-scrolling: touch */
    z-index: 2;

}
.ss-lsat-digital .ss-top .ss-button {
    font-size: 28px;
    padding: 8px;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.2s;
}
.ss-lsat-digital .ss-top .ss-button:hover {
    opacity: 0.6;
}
.ss-lsat-digital .ss-top .ss-button:active {
    opacity: 1;
}
.ss-lsat-digital .ss-top .ss-button.ss-active {
    opacity: 1;
    background: rgba(0,164,227, 0.2);
    border-radius: 2px;
}
.ss-lsat-digital .ss-top .ss-button.ss-active:hover {
    opacity: 0.8;
}
.ss-lsat-digital .ss-top .ss-button.ss-active:active {
    opacity: 0.3;
}
.ss-lsat-digital .ss-main {
    display: flex;
    flex-direction:column;
    flex: 1 1 1px;
}
.ss-lsat-digital .ss-top .ss-directions-button {
    padding: 0;
}

.ss-lsat-digital .ss-top-left {
    flex-grow: 1;
    padding: 5px;
}
.ss-lsat-digital .ss-top-middle {
    display: flex;
    overflow: scroll;
}
.ss-lsat-digital .ss-top-right {
}
.ss-lsat-digital .ss-bottom {
    flex: 0 0 60px;
    font-size: 14px;
    line-height: 19px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    z-index: 1;
}

.ss-lsat-digital .ss-left {
    z-index: 1;
}
.ss-lsat-digital .ss-left,
.ss-lsat-digital .ss-right {
    background: url('/wp-content/themes/diverso/images/logo/7Sage-logo-watermark-hidden.png');
    background-size: 276px 316px;
    flex: 1 1;
    padding: 12px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.ss-lsat-digital .ss-question-source {
    padding: 4px 10px;
    opacity: 0.2;
    font-size: 70%;
}
.ss-lsat-digital.ss-is-lr .ss-question-source {
    position: absolute;
    bottom: 0;
    left: 0;
}
.ss-lsat-digital .ss-right .ss-question-responses{
    flex-grow: 1;
}

.ss-lsat-digital .ss-is-not-online,
.ss-lsat-digital .ss-is-online,
.ss-lsat-digital .ss-is-server-not-responding,
.ss-lsat-digital .ss-is-server-responding {
    position: absolute;
    padding: 0.5em 1.5em;
    box-sizing: border-box;
    z-index: 10;
    width: 100%;
    margin: 0px;
    background: #fee;
    font-size: 77%;
    transition: all 1s !important;
}
.ss-lsat-digital .ss-is-not-online,
.ss-lsat-digital .ss-is-server-not-responding {
    background: #fdd;
}
.ss-lsat-digital .ss-is-online,
.ss-lsat-digital .ss-is-server-responding {
    background: #cfc;
}

.ss-lsat-digital .ss-is-loading {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.2s;
}
.ss-lsat-digital .ss-is-loading div {
    text-align: center;
}
.ss-lsat-digital .ss-is-loading .fal,
.ss-lsat-digital .ss-is-loading .fa {
    font-size: 1.5em;
}

.ss-lsat-digital .ss-is-blocked {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ss-lsat-digital .ss-is-blocked .fal {
    font-size: 7em;
    color: rgba(0,0,0,0.3);
}
.ss-lsat-digital .ss-is-blocked div {
    text-align: center;
}

/*
 * Home
 */
.ss-lsat-digital .ss-home {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120%;
    overflow: scroll;
    margin-bottom: 20px;
}
.ss-lsat-digital .ss-home .ss-title {
    width: 100%;
    box-sizing: border-box;
    font-weight: 200;
    line-height: 100%;
    color: #000;
    margin: 20px 0 10px 0;;
    clear: both;
    font-size: 36px;
    font-family: var(--7s-fonts-primary);
    border: 1px dotted rgba(127, 127, 127, 0.35);
    padding: 10px 14px;
    background: none;
}
.ss-lsat-digital .ss-home .ss-preptest-note-container {
    display: flex;
}
.ss-lsat-digital .ss-home .ss-preptest-note-container .fal {
    transition: all 0.2s;
    margin-top: 0.125em;
}
.ss-lsat-digital .ss-home .ss-preptest-note {
    margin-left: 4px;
    border: none;
    border: 1px dotted rgba(127, 127, 127, 0.35);
    resize: none;
    background: none;
    flex-grow: 1;
    font-style: italic;
}
.ss-lsat-digital .ss-home .ss-time {
    font-size: 70%;
    opacity: 0.5;
}
.ss-lsat-digital .ss-home .ss-home-content {
    height: 100%;
    max-height: 600px;
}
.ss-lsat-digital .ss-home .ss-home-content .big-button {
    width: 100%;
    box-sizing: border-box;
}

.ss-lsat-digital .ss-digital-tester-header {
    display: flex;
    padding: 1rem;
    flex-direction: column;

    gap: 0.5rem;

    border-radius: 0.5rem;
    background: var(--card-background);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.15);

    margin-bottom: 2rem;
}

.ss-lsat-digital .ss-digital-tester-header .test-title-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ss-lsat-digital .ss-digital-tester-header select {
    color: inherit;
    font-size: 1rem;
    padding: 0.5rem 0.5rem;

    background: transparent;
    border-radius: 0.25rem;
    border: 1px solid var(--input-border-color);
}

.ss-lsat-digital .ss-digital-tester-header .ss-preptest-note {
    font-size: 1rem;
    background-color: var(--input-background);
}

.ss-lsat-digital .ss-home .ss-home-content h1 {
    max-width: 500px;
    font-size: 2rem;
    margin: 0;
}

.ss-lsat-digital .ss-session-buttons {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.ss-lsat-digital .ss-session-buttons .subtle-button {
    margin: 0;
    gap: 0.5rem;
    display: flex;
    align-items: center;

    font-size: 16px;
    border: 1px solid transparent;
}

.ss-lsat-digital .ss-session-buttons .subtle-button:not(:hover) {
    background: #fbfbfb;
    border: 1px solid #eee;
}

.ss-session-buttons .buttons-wrapper {
    display: flex;
    justify-content: flex-end;

    gap: 0.5rem;
}

.ss-lsat-digital .ss-sections-wrapper {
    display: flex;
    flex-direction: column;

    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;

    border-radius: 0.5rem;
    background: var(--card-background);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.15);
}

.ss-lsat-digital .ss-section {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 0.5rem;
    padding-block: 0.75rem;

    border-bottom: 1px solid var(--section-border-color);
}

.ss-lsat-digital .ss-section:last-of-type {
    border-bottom: none;
}

.ss-lsat-digital .ss-minutes {
    display: flex;
    align-items: center;

    gap: 0.35rem;
    border-radius: 0.35rem;
    padding: 0.35rem 0.5rem;

    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    background: #00a4e3;
}

.ss-lsat-digital .ss-label {
    flex: 1;
    font-size: 1.25rem;
}

.ss-lsat-digital .ss-go,
.ss-lsat-digital .ss-break {
    white-space: nowrap;
}
.ss-lsat-digital .ss-go .subtle-button,
.ss-lsat-digital .ss-break .subtle-button {
    margin: 0;
    font-size: 16px;
}

.ss-lsat-digital .ss-lsat-session-buttons {
    padding-top: 10px;
}

.ss-lsat-digital .ss-lsat-session-buttons .ss-lsat-copy-session-result {
    font-size: 80%;
}

.ss-lsat-digital .ss-lsat-fresh-copy {
    font-weight: bold;

}

/*
 * Directions
 */
.ss-lsat-digital .ss-directions {
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    display: flex;
    overflow: scroll;
}
.ss-lsat-digital .ss-directions .ss-directions-container {
    border-radius: 10px;
    margin: 50px;
    padding: 20px 35px;
}
.ss-lsat-digital .ss-directions .ss-directions-container .ss-directions-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.ss-lsat-digital .ss-directions .ss-directions-container .ss-directions-text {
    max-height: 300px;
    overflow: scroll;
}
.ss-lsat-digital .ss-directions .ss-directions-go {
    margin: 20px auto;
}
/*
 * Question
 */
.ss-lsat-digital .ss-question {
    display: flex;
    flex: 1 1 1px;
    overflow: hidden;
    position: relative;
}
.ss-lsat-digital .ss-question-stem-container {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}
.ss-lsat-digital .ss-question-stem-container .ss-question-number {
    margin-right: 0.3em;
}
.ss-lsat-digital .ss-question-stem-container .ss-question-stem {
    flex-grow: 1;
    max-height: 200px;
}
.ss-lsat-digital .ss-question-stem-container .ss-question-flag {
    margin-right: 0.6em;
    text-align: right;
    cursor: pointer;
    font-size: 1.2em;
    color: #37a;
}
.ss-lsat-digital .ss-question-stem-container .ss-question-flag .fal,
.ss-lsat-digital .ss-question-stem-container .ss-question-flag .fa {
    transition: all 0.2s;
}
.ss-lsat-digital .ss-question-stem-container .ss-question-flag .fal.fa-bookmark {
    opacity: 0.2;
}
.ss-lsat-digital .ss-question-stem-container .ss-question-flag .fal.fa-bookmark:hover,
.ss-lsat-digital .ss-question-stem-container .ss-question-flag .fa.fa-bookmark:hover {
    opacity: 0.7;
}
.ss-lsat-digital .ss-question-responses {
}
.ss-lsat-digital .ss-question-response-content {
    display: flex;
    padding-top: 0.8em;
    position: relative;
}
.ss-lsat-digital .ss-question-response-title {
    flex: 0 0 2em;
    padding-right: 0.3em;
    transition: all 0.2s;
}
.ss-lsat-digital .ss-question-response-title-selector {
    border: 0.6px solid #777;
    border-radius: 1.5em;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s
}
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-question-response-title-selector.ss-actual-selected,
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-question-response-title-selector.ss-review-selected {
    border-color: #c00;
    border-width: 2px;
}
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-credited-response .ss-question-response-title-selector.ss-actual-selected,
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-credited-response .ss-question-response-title-selector.ss-review-selected {
    border-color: #090;
}
.ss-lsat-digital.ss-is-show-actual .ss-question-response-title-selector.ss-actual-selected {
    background: #777;
    color: #fff;
}
.ss-lsat-digital.ss-is-review .ss-question-response-title-selector.ss-review-selected,
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-question-response-title-selector.ss-review-selected {
    background: #00a4e3;
    color: #fff;
}
.ss-lsat-digital.ss-is-show-actual .ss-question-response-title-selector.ss-actual-selected.ss-review-selected {
    color: #fff;
    background: rgba(119,119,119,1);
    background: -moz-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(119,119,119,1)), color-stop(50%, rgba(119,119,119,1)), color-stop(51%, rgba(0,163,227,1)), color-stop(100%, rgba(0,163,227,1)));
    background: -webkit-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: -o-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: -ms-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: linear-gradient(to right, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#00a3e3', GradientType=1 );
}
.ss-lsat-digital .ss-question-response-buttons {
    flex: 0 0 3em;
    text-align: center;
    z-index: 1; /* to make sure it comes out over long, custom format, tab-stop responses  */
}
.ss-lsat-digital .ss-question-response-eliminate {
    font-size: 115%;
}
.ss-lsat-digital.ss-is-review .ss-question-response-eliminate {
    color: #00a4e3;
}
.ss-lsat-digital .ss-question-response-eliminate .fal,
.ss-lsat-digital .ss-question-response-collapse .fal,
.ss-lsat-digital.ss-is-actual .ss-actual-eliminated .ss-question-response-eliminate .fal:active,
.ss-lsat-digital.ss-is-review .ss-review-eliminated .ss-question-response-eliminate .fal:active,
.ss-lsat-digital .ss-collapsed .ss-question-response-collapse .fal:active {
    transition: all 0.2s;

    opacity: 0.2;
    cursor: pointer;
    transform: rotate(0deg);
}
.ss-lsat-digital .ss-question-response-eliminate .fal:hover,
.ss-lsat-digital .ss-question-response-collapse .fal:hover,
.ss-lsat-digital.ss-is-actual .ss-actual-eliminated .ss-question-response-eliminate .fal:hover,
.ss-lsat-digital.ss-is-review .ss-review-eliminated .ss-question-response-eliminate .fal:hover,
.ss-lsat-digital .ss-collapsed .ss-question-response-collapse .fal:hover {
    opacity: 0.5;
}
.ss-lsat-digital .ss-question-response-eliminate .fal:active,
.ss-lsat-digital .ss-question-response-collapse .fal:active,
.ss-lsat-digital.ss-is-actual .ss-actual-eliminated .ss-question-response-eliminate .fal,
.ss-lsat-digital.ss-is-review .ss-review-eliminated .ss-question-response-eliminate .fal,
.ss-lsat-digital .ss-collapsed .ss-question-response-collapse {
    opacity: 1;
    transform: rotate(180deg);
}
.ss-lsat-digital .ss-question-response-collapse {
    line-height: 0;
}
.ss-lsat-digital .ss-question-response-actual-eliminated {
    color: #777;
    opacity: 0.6;
}
.ss-lsat-digital .ss-question-response-review-eliminated {
    color: #00a4e3;
    opacity: 0.6;
}
.ss-lsat-digital .ss-question-response-body {
    flex-grow: 1;
    transition: all 0.2s;
    overflow: hidden;
}
.ss-lsat-digital .ss-question-response-body.ss-collapsed {
    max-height: 1.5em !important;
}
.ss-lsat-digital .ss-collapsed-placeholder {
    position: absolute;
    right: 2.5em;
    opacity: 0.5;
}
.ss-lsat-digital .ss-collapsed-placeholder:after {
    content: "...";
}

.ss-lsat-digital.ss-is-actual .ss-actual-eliminated .ss-question-response-title,
.ss-lsat-digital.ss-is-review .ss-review-eliminated .ss-question-response-title {
    opacity: 0.2;
}
.ss-lsat-digital.ss-is-actual .ss-actual-eliminated .ss-question-response-body,
.ss-lsat-digital.ss-is-review .ss-review-eliminated .ss-question-response-body {
    opacity: 0.2;
}
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-actual-eliminated .ss-question-response-body,
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-review-eliminated .ss-question-response-body {
    opacity: 0.5;
}
.ss-lsat-digital.ss-is-analysis.ss-is-show-actual .ss-actual-eliminated.ss-review-eliminated .ss-question-response-body {
    opacity: 0.2;
}


.ss-lsat-digital .ss-question .ss-rule {
    text-indent: -1em;
    padding: 0.7em 0 0 3em;
}
.ss-lsat-digital .ss-question blockquote {
    text-indent: -1.8em;
    padding: 0 0 1em 1.8em;
    margin: 0;
    font-style: normal;
}
.ss-lsat-digital .ss-question .ss-subsection-body {
    padding-left: 1.5em;
    position: relative;
}
.ss-lsat-digital .ss-question .ss-subsection-body .ss-passage-preamble {
    padding-bottom: 1em;
    font-style: italic;
}
.ss-lsat-digital .ss-question .ss-subsection-body .ss-passage-heading {
    font-weight: bold;
}
.ss-lsat-digital .ss-question .ss-subsection-body .ss-passage-heading:nth-of-type(2) {
    padding-top: 0.8em;
}
.ss-lsat-digital .ss-question .ss-subsection-body p {
    white-space: normal;
    text-indent: 1.33em;
    margin: 0;
}
.ss-lsat-digital .ss-question .ss-passage-layout-fixed .ss-subsection-body p {
    white-space: pre;
}
.ss-lsat-digital .ss-question .ss-subsection-body .ss-line-number {
    text-align: right;
    position: relative;
    bottom: 0.8em;
    opacity: 0.5;
    font-size: 50%;
    margin-left: -0.4em;
    margin-right: -0.2em;
    opacity: 0.5;
}
.ss-lsat-digital .ss-question .ss-passage-layout-fixed .ss-subsection-body .ss-line-number {
    width: 4em;
    position: absolute;
    left: -2em;
    bottom: auto;
    font-size: 70%;
    line-height: 2.2em;
}
.ss-lsat-digital .ss-question .ss-passage-hide-line-numbers .ss-subsection-body .ss-line-number {
    display: none;
}
.ss-lsat-digital .ss-question .ss-subsection-button {
    width: 96%;
    width: calc(100% - 22px);
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
}


.ss-lsat-digital .ss-question .ss-question-note-container {
    display: flex;
    margin: 1em 0 0.5em 0.3em;
    width: 96%;
    width: calc(100% - 22px);
    box-sizing: border-box;
}
.ss-lsat-digital .ss-question .ss-question-note-container .fal,
.ss-lsat-digital .ss-question .ss-question-note-container .fa {
    transition: all 0.2s;
    margin-top: 0.25em;
    margin-right: 0.25em;
}
.ss-lsat-digital .ss-question .ss-question-note {
    height: auto;
    width: 100%;
    resize: none;
    color: #000;
    clear: both;
    border: 1px dotted rgba(127, 127, 127, 0.35);
    background: none;
    font-style: italic;
    font-size: 0.9em;
}



@media screen and (max-width: 768px) {
    .ss-lsat-digital .ss-question {
        display: block;
        overflow: scroll
    }
}

/*
 * Response Sheet
 */
.ss-lsat-digital .ss-response-sheet {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response {
    flex: 0 0 2.4em;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 4px 4px 0 0
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response.ss-selected {
    font-weight: bold;
    background: rgba(0,164,227, 0.2);
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response.ss-subsection-divider {
    margin-right: 10px;
}
.ss-lsat-digital.ss-is-problem-set.ss-is-lr .ss-response-sheet .ss-response-sheet-response.ss-subsection-divider {
    margin-right: 0;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-flag {
    color: #37a;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-is-flagged {
    flex-basis: 10px;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-selected {
    flex-basis: 10px;

}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-selected-circle {
    width: 13px;
    height: 13px;
    border: 1px solid #777;
    border-radius: 14px;
    margin: 3px auto;
    background: #fff;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-selected-circle.ss-actual-selected {
    background: #777;
    color: #fff;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-selected-circle.ss-review-selected {
    background: #00a4e3;
    color: #fff;
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-selected-circle.ss-actual-selected.ss-review-selected {
    color: #fff;
    background: rgba(119,119,119,1);
    background: -moz-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(119,119,119,1)), color-stop(50%, rgba(119,119,119,1)), color-stop(51%, rgba(0,163,227,1)), color-stop(100%, rgba(0,163,227,1)));
    background: -webkit-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: -o-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: -ms-linear-gradient(left, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    background: linear-gradient(to right, rgba(119,119,119,1) 0%, rgba(119,119,119,1) 50%, rgba(0,163,227,1) 51%, rgba(0,163,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#00a3e3', GradientType=1 );
}
.ss-lsat-digital .ss-response-sheet .ss-response-sheet-response-number {
    flex-basis: 10px;
}
.ss-lsat-digital .ss-response-sheet .ss-selected .ss-response-sheet-response-number {
    font-weight: bold;
}


/*
 * Navigation
 */
.ss-lsat-digital .ss-navigation {
    flex-basis: 200px;
    flex-grow: 0;
    height: 100%;

}
.ss-lsat-digital .ss-navigation .subtle-button {
    position: relative;
    padding: 9px 24px;
    top: -8px;
}
.ss-lsat-digital .ss-navigation .fal {
    font-size: 38px;
    padding: 8px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s
}
.ss-lsat-digital .ss-navigation .fal:hover {
    color: #555;
    opacity: 1 !important;
}
.ss-lsat-digital .ss-navigation .ss-disabled.fal:hover {
    opacity: 0.2 !important;
}
.ss-lsat-digital .ss-navigation .fal:active {
    color: #000;
}

/*
 * All settings
 */
.ss-lsat-digital .ss-button-group {
    padding: 5px 10px;
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    overflow-y: auto;
}
@media screen and (max-width: 1000px)
{
    .ss-lsat-digital .ss-button-group {
        padding: 5px 7px;
    }
}

/*
 * Options
 */
.ss-lsat-digital .ss-options {
    position: absolute;
    top: 55px;
    background: #fff;
    border: 1px solid rgba(127, 127, 127, 0.265);
    border-radius: 3px;
    padding: 3px 8px;
    z-index: 2;
}
.ss-lsat-digital .ss-options-button {
    position: relative;
}
.ss-lsat-digital .ss-options-button:after {
    font-family: var(--7s-fonts-icons);
    content: "\f078";
    position: absolute;
    top: 37px;
    left: 17px;
    font-size: 11px;
    opacity: 0.75;
    transition: all 0.2s;
}
.ss-lsat-digital .ss-options-button.ss-active:after {
    transform: rotate(180deg);
}
.ss-lsat-digital .ss-options-title {
    font-weight: bold;
    opacity: 0.6;
    padding-left: 1.4em;
    border-bottom: 1px solid rgba(127, 127, 127, 0.265);
    margin-bottom: 0.2em;
}
.ss-lsat-digital .ss-option {
    display: block;
}

/*
 * 7Sage settings
 */
.ss-lsat-digital .ss-7sage-settings .fa-fullscreen,
.ss-lsat-digital .ss-7sage-settings .fa-fullscreen-exit {
    font-size: 45px;
    padding: 1px;
}
.ss-lsat-digital .ss-7sage-settings .fa-layout:before {
    font-size: 37px;
    position: relative;
    bottom: 3px;
}
/*
 * Display Settings
 */
.ss-lsat-digital .ss-display-settings .fal {
}

/*
 * Annotate
 */
.ss-lsat-digital .ss-annotation-settings {
    text-shadow:
        0.6px 0.6px 0px rgba(0,0,0,0.1),
        -0.6px 0.6px 0px rgba(0,0,0,0.1),
        0.6px -0.6px 0px rgba(0,0,0,0.1),
        -0.6px -0.6px 0px rgba(0,0,0,0.1);
}
.ss-lsat-digital .ss-annotation-settings .fa-eraser:before {
    position: relative;
    top: 1px;
}
.ss-lsat-digital .ss-annotation {
    display: inline;
    text-decoration: none;
    font-weight: inherit;
}
.ss-lsat-digital .ss-annotation-underline {
    text-decoration: underline;
}
.ss-lsat-digital .ss-annotation-yellow {
    background-color: rgb(240, 240, 0);
}
.ss-lsat-digital .ss-annotation-orange {
    background-color: rgb(255, 200, 70);
}
.ss-lsat-digital .ss-annotation-pink {
    background-color: rgb(255, 190, 190);
}

/*
 * Time Remaining
 */
.ss-lsat-digital .ss-time {
    flex-direction: column !important;
}
.ss-lsat-digital .ss-time-bar {
    width: 100%;
    height: 6px;
    border-radius: 2px;
    background: #eee;
}
.ss-lsat-digital .ss-time-bar-fill {
    background: #777;
    height: 6px;
    border-radius: 2px;
}
.ss-lsat-digital.ss-is-review .ss-time-bar-fill {
    background: #00a4e3;
}
.ss-lsat-digital .ss-warning .ss-time-bar-fill {
    background: #d00;
}


/*
 * Analysis
 */

.ss-subsection-analysis,
.ss-question-analysis,
.ss-question-response-analysis {
    opacity: 0.6;
    font-size: 80%;
}
.ss-subsection-analysis {
    margin: 0.2em 0 0.2em 1.9em;
}
.ss-question-analysis {
    margin: 0.2em 0 0.2em 2.2em;
}
.ss-question-analysis .ss-intervals {
    overflow-x: scroll;
    display: flex;
    direction: row;
}
.ss-question-analysis .ss-interval {
    background: #777;
    height: 1em;
}
.ss-question-response-analysis {
    margin-left: 2.6em;
}
.ss-question-response-analysis .fa-times-circle {
    opacity: 0.4;
}
.ss-is-analysis.ss-is-show-actual .ss-response-sheet-response.ss-incorrect {
    border-bottom: 3px solid #c00;
}
.ss-is-analysis.ss-is-show-actual .ss-response-sheet-response.ss-correct {
    border-bottom: 3px solid #090;
}


/*
 * Fixed styling
 */
.ss-lsat-digital.ss-fixed {
    height: 800px;
    width: 1200px;
    position: absolute;
    font-family: "Arial";
    border: none;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.5)
}
.ss-lsat-digital-fullscreen-wrapper.ss-is-fullscreen .ss-lsat-digital.ss-fixed {
    height: 800px;
    width: 1200px;
}
@media screen and (max-width: 768px) {
    .ss-lsat-digital.ss-fixed .ss-question {
        display: flex;
        overflow: hidden;
    }
}

/*
 * Dark styling
 */

.ss-lsat-digital-fullscreen-wrapper.ss-dark {
    background: #333;
}
.ss-lsat-digital-fullscreen-wrapper.ss-dark .ss-lsat-digital {
    background: #000;
    color: #fff;
}
.ss-lsat-digital-fullscreen-wrapper.ss-dark .ss-lsat-digital h1 {
    color: #fff;
}
.ss-dark .ss-lsat-digital .ss-digital-tester-header select option {
    background: #333;
}
.ss-dark .ss-lsat-digital .ss-timing-custom {
    color: white;
}
.ss-dark .ss-lsat-digital .ss-options {
    background: #000;
}
.ss-dark .ss-lsat-digital .ss-annotation-yellow {
    background-color: rgba(255, 255, 0, 0.4);
}
.ss-dark .ss-lsat-digital .ss-annotation-orange {
    background-color: rgba(255, 127, 0, 0.4);
}
.ss-dark .ss-lsat-digital .ss-annotation-pink {
    background-color: rgba(255, 0, 127, 0.4);
}
.ss-dark .ss-lsat-digital .ss-directions-button {
    background: #888;
}
.ss-dark .ss-lsat-digital .ss-time-bar {
    background: rgba(127,127,127,0.2);
}
.ss-dark .ss-lsat-digital .ss-home .ss-title {
    color: #fff;
}
.ss-dark .ss-lsat-digital .ss-home .ss-title,
.ss-dark .ss-lsat-digital .ss-home .ss-preptest-note,
.ss-dark .ss-lsat-digital .ss-question .ss-question-note {
    color: #fff;
    border-color: rgba(127,127,127,0.7);
}
.ss-dark .ss-lsat-digital #lsat4\.s3\.game-4 table,
.ss-dark .ss-lsat-digital #lsat6\.s4\.game-3 svg,
.ss-dark .ss-lsat-digital #lsat8\.s2\.game-2 table,
.ss-dark .ss-lsat-digital #lsat9\.s3\.game-4 table {
    filter: invert(1);
    color: black;
}

.ss-dark .ss-lsat-digital a.ss-lsat-fresh-copy:hover {
    color: white;
}
/*
 * Passage reference highlighting
 */
.ss-lsat-digital lr.ss-active-reference {
  background: rgba(32,139,157,0.7);
  text-decoration: underline;
}
.ss-lsat-digital .ss-digital-only {
  display: inline;
}
.ss-lsat-digital .ss-paper-only {
  display: none;
}

/*
 * Tab stops for nonconforming questions
 */
.ss-tab-stop {
    position: relative;
    height: 1.3em;
    white-space: pre;
}
.ss-question-stem .ss-tab-stop {
    padding-top: 0.4em;
    left: 0.6em;
}
.ss-question-stem .ss-tab-stop u {
    text-underline-position: auto;
}
.ss-tab-stop span{position: absolute;}
.ss-tab-stop span:nth-of-type(1) { left: 0em; }
.ss-tab-stop span:nth-of-type(2) { left: 4em; }
.ss-tab-stop span:nth-of-type(3) { left: 8em; }
.ss-tab-stop span:nth-of-type(4) { left: 12em; }
.ss-tab-stop span:nth-of-type(5) { left: 16em; }

#lsat5\.s2\.game-3\.question-12 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat5\.s2\.game-3\.question-12 .ss-tab-stop span:nth-of-type(2) { left: 4.4em; }

#lsat7\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat7\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(2) { left: 1.25em; }
#lsat7\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(3) { left: 2.5em; }
#lsat7\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(4) { left: 3.75em; }
#lsat7\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(5) { left: 5em; }

#lsat7\.s2\.game-4\.question-21 .ss-question-stem .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat7\.s2\.game-4\.question-21 .ss-question-stem .ss-tab-stop span:nth-of-type(2) { left: 5.9em; }
#lsat7\.s2\.game-4\.question-21 .ss-tab-stop span:nth-of-type(1) { left: 1.2em; }
#lsat7\.s2\.game-4\.question-21 .ss-tab-stop span:nth-of-type(2) { left: 6.6em; }

#lsat7\.s2\.game-4\.question-24 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat7\.s2\.game-4\.question-24 .ss-tab-stop span:nth-of-type(2) { left: 3.3em; }
#lsat7\.s2\.game-4\.question-24 .ss-tab-stop span:nth-of-type(3) { left: 6.7em; }
#lsat7\.s2\.game-4\.question-24 .ss-tab-stop span:nth-of-type(4) { left: 10.8em; }
#lsat7\.s2\.game-4\.question-24 .ss-tab-stop span:nth-of-type(5) { left: 14.9em; }

#lsat8\.s2\.game-2 table {
    text-align: center;
    vertical-align: middle;
    padding: 1.5em 0 1.5em 1em;
}
#lsat8\.s2\.game-2 table td{
    position: relative;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}
#lsat8\.s2\.game-2 table td.ss-center-box {
    /*border: 1em solid black;*/
    width: 6.8em;
    height: 6.8em;
    position: relative;
}
#lsat8\.s2\.game-2 table .ss-circle {
    background: white;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    z-index: 10;
}

#lsat9\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat9\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 6.2em; }
#lsat9\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(3) { left: 12.4em; }

#lsat9\.s3\.game-4 table {
    border: .1em solid black; border-collapse: collapse;
    text-align: center;
    vertical-align: middle;
    padding: .5em 0 .5em 2em;
}

#lsat9\.s3\.game-4 table td {
    border: .1em solid black;
    width: 7.0em;
    height: 7.2em;
    position: relative;
    vertical-align: middle;
}
#lsat9\.s3\.game-4 table div {
    border: .1em solid black;
    background: white;
    width: 1.1em;
    height: 1.1em;
    position: absolute;
    right: -.7em;
    bottom: -.7em;
    transform: rotate(45deg);
}

#lsat10\.s2\.game-2\.question-12 .ss-tab-stop span { letter-spacing: -0.1em; }
#lsat10\.s2\.game-2\.question-12 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat10\.s2\.game-2\.question-12 .ss-tab-stop span:nth-of-type(2) { left: 4.8em; }
#lsat10\.s2\.game-2\.question-12 .ss-tab-stop span:nth-of-type(3) { left: 10.2em; }
#lsat10\.s2\.game-2\.question-12 .ss-tab-stop span:nth-of-type(4) { left: 14.9em; }

#lsat10\.s2\.game-3\.question-13 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat10\.s2\.game-3\.question-13 .ss-tab-stop span:nth-of-type(2) { left: 3.2em; }
#lsat10\.s2\.game-3\.question-13 .ss-tab-stop span:nth-of-type(3) { left: 6.4em; }
#lsat10\.s2\.game-3\.question-13 .ss-tab-stop span:nth-of-type(4) { left: 9.6em; }
#lsat10\.s2\.game-3\.question-13 .ss-tab-stop span:nth-of-type(5) { left: 12.8em; }

#lsat10\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat10\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(2) { left: 1.7em; }
#lsat10\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(3) { left: 3.4em; }
#lsat10\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(4) { left: 5.1em; }
#lsat10\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(5) { left: 6.8em; }
#lsat10\.s2\.game-4\.question-19 .ss-tab-stop span:nth-of-type(6) { left: 8.5em; }


#lsat11\.s1\.game-4\.question-22 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat11\.s1\.game-4\.question-22 .ss-tab-stop span:nth-of-type(2) { left: 4.5em; }
#lsat11\.s1\.game-4\.question-22 .ss-tab-stop span:nth-of-type(3) { left: 9.8em; }
#lsat11\.s1\.game-4\.question-22 .ss-tab-stop span:nth-of-type(4) { left: 14.1em; }

#lsat11\.s1\.game-4\.question-23 .ss-tab-stop span { letter-spacing: -0.05em; }
#lsat11\.s1\.game-4\.question-23 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat11\.s1\.game-4\.question-23 .ss-tab-stop span:nth-of-type(2) { left: 5.2em; }
#lsat11\.s1\.game-4\.question-23 .ss-tab-stop span:nth-of-type(3) { left: 10.3em; }
#lsat11\.s1\.game-4\.question-23 .ss-tab-stop span:nth-of-type(4) { left: 14.3em; }


#lsat13\.s1\.game-3\.question-12 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat13\.s1\.game-3\.question-12 .ss-tab-stop span:nth-of-type(2) { left: 5em; }


#lsat14\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat14\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 5em; }
#lsat14\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(3) { left: 10em; }

#lsat14\.s1\.game-3 .ss-tab-stop:nth-of-type(1) { padding-top: 0.5em; }
#lsat14\.s1\.game-3 .ss-tab-stop:nth-of-type(4) { padding-bottom: 0.5em; }
#lsat14\.s1\.game-3 .ss-tab-stop span:nth-of-type(1) { left: 2em; }
#lsat14\.s1\.game-3 .ss-tab-stop span:nth-of-type(2) { left: 8em; }
#lsat14\.s1\.game-3 .ss-tab-stop span:nth-of-type(3) { left: 13em; }

#lsat14\.s1\.game-3\.question-13 .ss-question-stem .ss-tab-stop { padding-top: .6em;}
#lsat14\.s1\.game-3\.question-13 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat14\.s1\.game-3\.question-13 .ss-tab-stop span:nth-of-type(2) { left: 7em; }
#lsat14\.s1\.game-3\.question-13 .ss-tab-stop span:nth-of-type(3) { left: 14em; }


#lsat15\.s4\.game-2\.question-07 .ss-tab-stop { letter-spacing: -0.05em; }
#lsat15\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat15\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(2) { left: 4em; }
#lsat15\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(3) { left: 8em; }
#lsat15\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(4) { left: 11.5em; }


#lsat16\.s1\.game-1\.question-01 .ss-question-stem .ss-tab-stop { padding-left: .6em; }
#lsat16\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat16\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 5em; }
#lsat16\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(3) { left: 10em; }

#lsat16\.s1\.game-2 .ss-tab-stop:nth-of-type(1) { padding-top: .6em; }
#lsat16\.s1\.game-2 .ss-tab-stop:nth-of-type(2) { padding-bottom: .6em; }
#lsat16\.s1\.game-2 .ss-tab-stop span:nth-of-type(1) { left: 1em; }
#lsat16\.s1\.game-2 .ss-tab-stop span:nth-of-type(2) { left: 8em; }
#lsat16\.s1\.game-2 .ss-tab-stop span:nth-of-type(3) { left: 9.5em; }
#lsat16\.s1\.game-2 .ss-tab-stop span:nth-of-type(4) { left: 11em; }


#lsat18\.s1\.game-4\.question-20 .ss-question-answer { padding-bottom: .9em; }
#lsat18\.s1\.game-4\.question-20 .ss-tab-stop { letter-spacing: -0.05em; font-size: 90%; }
#lsat18\.s1\.game-4\.question-20 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat18\.s1\.game-4\.question-20 .ss-tab-stop span:nth-of-type(2) { left: 7.2em; }
#lsat18\.s1\.game-4\.question-20 .ss-tab-stop span:nth-of-type(3) { left: 14.4em; }


#lsat22\.s3\.game-3 .ss-tab-stop { padding: 0.6em 0; }
#lsat22\.s3\.game-3 .ss-tab-stop span:nth-of-type(1) { left: 2em; }
#lsat22\.s3\.game-3 .ss-tab-stop span:nth-of-type(2) { left: 6em; }
#lsat22\.s3\.game-3 .ss-tab-stop span:nth-of-type(3) { left: 10em; }


#lsat24\.s4\.game-3\.question-11 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat24\.s4\.game-3\.question-11 .ss-tab-stop span:nth-of-type(2) { left: 5.9em; }


#lsat25\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat25\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 9.2em; }


#lsat39\.s1\.game-1\.question-01 .ss-question-stem .ss-tab-stop { padding-left: .6em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 1.7em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(3) { left: 3.4em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(4) { left: 5.1em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(5) { left: 6.8em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(6) { left: 8.5em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(7) { left: 10.2em; }
#lsat39\.s1\.game-1\.question-01 .ss-tab-stop span:nth-of-type(8) { left: 11.9em; }


#lsat43\.s4\.game-4\.question-18 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsat43\.s4\.game-4\.question-18 .ss-tab-stop span:nth-of-type(2) { left: 1.2em; }
#lsat43\.s4\.game-4\.question-18 .ss-tab-stop span:nth-of-type(3) { left: 2.4em; }


#lsat51\.s4\.game-1\.question-01 .ss-question-stem .ss-tab-stop { padding-left: .6em; }
#lsat51\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat51\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 4em; }


#lsat58\.s3\.game-1\.question-01 .ss-tab-stop span { letter-spacing: -0.05em; }
#lsat58\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: 0em; }
#lsat58\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 4.9em; }
#lsat58\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(3) { left: 9.2em; }
#lsat58\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(4) { left: 12.8em; }
#lsat58\.s3\.game-1\.question-01 .ss-tab-stop span:nth-of-type(5) { left: 16.7em; }


#lsatfebruary-1997\.s4\.game-1\.question-01 .ss-question-stem .ss-tab-stop { padding-left: .6em; }
#lsatfebruary-1997\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsatfebruary-1997\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(2) { left: 3.2em; }
#lsatfebruary-1997\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(3) { left: 6.5em; }
#lsatfebruary-1997\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(4) { left: 9.7em; }
#lsatfebruary-1997\.s4\.game-1\.question-01 .ss-tab-stop span:nth-of-type(5) { left: 13.6em; }

#lsatfebruary-1997\.s4\.game-2\.question-07 .ss-tab-stop { letter-spacing: -0.05em; }
#lsatfebruary-1997\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsatfebruary-1997\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(2) { left: 6.6em; }
#lsatfebruary-1997\.s4\.game-2\.question-07 .ss-tab-stop span:nth-of-type(3) { left: 13.2em; }

#lsatfebruary-1997\.s4\.game-3\.question-14 .ss-tab-stop span:nth-of-type(1) { left: .0em; }
#lsatfebruary-1997\.s4\.game-3\.question-14 .ss-tab-stop span:nth-of-type(2) { left: 8.0em; }
