/* =========================================================
   OUTBREAK: LAS VEGAS
   INPLAY QUOTES
   ========================================================= */


/* =========================================================
   POPUP
   ========================================================= */

.inplayquotes_popup {
    width: 100%;
    margin: 0 auto;

    padding: 0;

    background: #121212;

    border: 1px solid var(--outbreak-line);

    border-radius: 0;

    box-sizing: border-box;
}


/* =========================================================
   POPUP HEADLINE
   ========================================================= */

.inplayquotes_popup-headline {
    padding: 13px 16px;

    background: #171717;

    border-bottom: 1px solid #303030;

    color: #f1eee8;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-radius: 0;
}


/* =========================================================
   POPUP QUOTE INFO
   ========================================================= */

.inplayquotes_popup-quoteInfo {
    padding: 12px;

    background: #111;

    border: 0;

    color: #aaa;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   POPUP TEXTAREA
   ========================================================= */

.inplayquotes_popup-textarea {
    padding: 12px;

    background: #111;

    border: 0;

    color: #aaa;

    text-align: center;
}


/* =========================================================
   POPUP QUOTE PREVIEW
   ========================================================= */

.inplayquotes_popup-quotepreview {
    padding: 12px;

    background: #0d0d0d;

    border: 1px solid #292929;

    color: #999;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   POPUP SUBLINE
   ========================================================= */

.inplayquotes_popup-subline {
    padding: 8px 12px;

    background: #171717;

    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;

    color: #ddd;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   POPUP REACTIONS
   ========================================================= */

.inplayquotes_popup-reactions {
    padding: 10px;

    background: #111;

    border: 0;

    text-align: center;
}

.inplayquotes_popup-reactions img {
    width: 24px;
    height: 24px;

    padding: 5px;

    cursor: pointer;

    opacity: .75;

    transition: .2s;
}

.inplayquotes_popup-reactions img:hover {
    opacity: 1;
}


/* =========================================================
   POPUP BUTTON
   ========================================================= */

.inplayquotes_popup-button {
    padding: 10px;

    background: #171717;

    border-top: 1px solid #292929;
    border-bottom: 0;

    color: #888;

    text-align: center;

    border-radius: 0;
}

.inplayquotes_popup-button a {
    color: var(--outbreak-red);

    text-decoration: none;
}

.inplayquotes_popup-button a:hover {
    color: var(--outbreak-pink);
}


/* =========================================================
   INPLAY QUOTES OVERVIEW
   ========================================================= */

#inplayquotes_overview {
    box-sizing: border-box;

    width: 100%;

    padding: 0;

    background: #121212;

    border: 1px solid var(--outbreak-line);

    border-radius: 0;
}


/* =========================================================
   OVERVIEW HEADLINE
   ========================================================= */

.inplayquotes-headline {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;

    background: #171717;

    color: #f1eee8;

    border-bottom: 1px solid #303030;

    font-size: 18px;
    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;

    border-radius: 0;
}


/* =========================================================
   FILTER
   ========================================================= */

.inplayquotes-filter {
    background: #111;
}

.inplayquotes-filter-headline {
    padding: 8px 12px;

    background: #171717;

    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;

    color: #ddd;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.inplayquotes-filteroptions {
    display: flex;

    justify-content: space-around;

    width: 90%;

    margin: 10px auto;

    gap: 5px;
}

.inplayquotes_overview_filter_bit {
    width: 100%;

    text-align: center;
}

.inplayquotes-filter-bit-headline {
    padding: 6px;

    background: #171717;

    color: #888;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.inplayquotes-filter-bit-dropbox {
    margin: 5px;
}


/* =========================================================
   OVERVIEW BODY
   ========================================================= */

.inplayquotes-body {
    padding: 20px 40px;

    background: #111;

    color: #aaa;

    text-align: justify;

    line-height: 180%;

    border-radius: 0;
}


/* =========================================================
   OVERVIEW QUOTE
   ========================================================= */

.inplayquotes_overview_bit {
    display: flex;

    align-items: center;

    width: 100%;

    margin: 20px 0;

    flex-wrap: nowrap;

    gap: 15px;
}

.inplayquotes_overview_bit:nth-child(even) {
    flex-direction: row-reverse;
}


/* =========================================================
   OVERVIEW AVATAR
   ========================================================= */

.inplayquotes_overview_bit_avatar {
    width: 10%;

    text-align: center;
}

.inplayquotes_overview_bit_avatar img {
    width: 80px;
    height: 80px;

    object-fit: cover;

    border: 2px solid var(--outbreak-red);

    border-radius: 50%;
}


/* =========================================================
   OVERVIEW CONTAINER
   ========================================================= */

.inplayquotes_overview_bit_container {
    width: 90%;

    min-width: 0;
}


/* =========================================================
   OVERVIEW QUOTE TEXT
   ========================================================= */

.inplayquotes_overview_bit_quote {
    width: 95%;

    margin: 0 auto 10px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.6;

    text-align: justify;
}


/* =========================================================
   OVERVIEW FOOTER
   ========================================================= */

.inplayquotes_overview_bit_footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


/* =========================================================
   REACTION
   ========================================================= */

.inplayquotes_overview_bit_reaction a:link,
.inplayquotes_overview_bit_reaction a:active,
.inplayquotes_overview_bit_reaction a:visited,
.inplayquotes_overview_bit_reaction a:hover {

    padding: 6px 8px;

    background: #171717;

    border: 1px solid #303030;

    border-radius: 0;

    color: var(--outbreak-red);

    font-size: 9px;

    text-transform: uppercase;

    text-decoration: none;
}


/* =========================================================
   REACTION BIT
   ========================================================= */

.inplayquotes_overview_bit_reaction_bit {
    display: flex;

    gap: 5px;
}

.inplayquotes_overview_bit_reaction-reacted {
    margin-top: 5px;
}

.inplayquotes_overview_bit_reaction-reacted img {
    width: 16px;
    height: 16px;
}

.inplayquotes_overview_bit_reaction-reacted a:link,
.inplayquotes_overview_bit_reaction-reacted a:active,
.inplayquotes_overview_bit_reaction-reacted a:visited,
.inplayquotes_overview_bit_reaction-reacted a:hover {

    padding: 0;

    background: none;

    border: 0;

    color: var(--outbreak-pink);

    font-size: 10px;

    text-transform: none;
}


/* =========================================================
   REACTION IMAGES
   ========================================================= */

.inplayquotes_overview_bit_reaction_images {

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: nowrap;

    gap: 5px;

    padding: 3px 6px;

    background: #171717;

    border: 1px solid #292929;

    color: #888;

    font-size: 9px;

    text-transform: uppercase;
}

.inplayquotes_overview_bit_reaction_images img {
    width: 16px;
    height: 16px;
}


/* =========================================================
   REACTION DELETE
   ========================================================= */

.inplayquotes_overview_bit_reactions_delete a:link,
.inplayquotes_overview_bit_reactions_delete a:active,
.inplayquotes_overview_bit_reactions_delete a:visited,
.inplayquotes_overview_bit_reactions_delete a:hover {

    padding: 0;

    background: none;

    border: 0;

    border-radius: 0;

    color: var(--outbreak-red);

    font-size: 9px;

    text-transform: uppercase;
}


/* =========================================================
   OVERVIEW USER
   ========================================================= */

.inplayquotes_overview_bit_user {

    text-align: right;

    line-height: 15px;
}

.inplayquotes_overview_bit_user b {
    color: #d8d2c5;

    font-weight: 900;

    text-transform: uppercase;
}

.inplayquotes_overview_bit_user span {

    color: #777;

    font-size: 11px;

    font-style: italic;
}


/* =========================================================
   INDEX QUOTES BOX
   ========================================================= */

.inplayquotes_index {

    width: 100%;

    margin: 0;

    padding: 0;

    background: #121212;

    border: 1px solid var(--outbreak-line);

    border-radius: 0;

    box-sizing: border-box;
}


/* =========================================================
   INDEX HEADLINE
   ========================================================= */

.inplayquotes_index-headline {

    padding: 13px 16px;

    background: #171717;

    border-bottom: 1px solid #303030;

    color: #f1eee8;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-radius: 0;
}


/* =========================================================
   INDEX ALL QUOTES
   ========================================================= */

.inplayquotes_index-allquotes {

    padding: 10px;

    background: #171717;

    border-top: 1px solid #292929;

    color: #888;

    text-align: right;

    border-radius: 0;
}

.inplayquotes_index-allquotes a {

    color: var(--outbreak-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    text-decoration: none;

    text-transform: uppercase;
}

.inplayquotes_index-allquotes a:hover {
    color: var(--outbreak-pink);
}


/* =========================================================
   INDEX QUOTE BIT
   ========================================================= */

.inplayquotes_index_bit {

    display: flex;

    align-items: center;

    flex-wrap: nowrap;

    gap: 10px;

    padding: 10px;

    background: #111;

    border-bottom: 1px solid #292929;

    box-sizing: border-box;
}

.inplayquotes_index_bit:last-child {
    border-bottom: 0;
}


/* =========================================================
   INDEX AVATAR
   ========================================================= */

.inplayquotes_index_bit_avatar {

    flex: 0 0 55px;

    width: 55px;

    text-align: center;
}

.inplayquotes_index_bit_avatar img {

    display: block;

    width: 50px;
    height: 50px;

    margin: 0 auto;

    object-fit: cover;

    border: 1px solid var(--outbreak-red);

    border-radius: 50%;
}


/* =========================================================
   INDEX CONTAINER
   ========================================================= */

.inplayquotes_index_bit_container {

    flex: 1 1 auto;

    width: auto;

    min-width: 0;
}


/* =========================================================
   INDEX QUOTE
   ========================================================= */

.inplayquotes_index_bit_quote {

    width: 100%;

    margin: 0 0 8px;

    color: #aaa;

    font-size: 11px;

    line-height: 1.55;

    text-align: left;

    overflow-wrap: break-word;
}

.inplayquotes_index_bit_quote::before {

    content: "“";

    margin-right: 3px;

    color: var(--outbreak-red);

    font-size: 17px;

    font-weight: 900;
}


/* =========================================================
   INDEX FOOTER
   ========================================================= */

.inplayquotes_index_bit_footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    padding-top: 7px;

    border-top: 1px solid #242424;
}


/* =========================================================
   INDEX REACTION
   ========================================================= */

.inplayquotes_index_bit_reaction {

    flex: 0 0 auto;

    color: var(--outbreak-pink);

    font-size: 9px;
}


/* =========================================================
   INDEX USER
   ========================================================= */

.inplayquotes_index_bit_user {

    min-width: 0;

    color: #666;

    text-align: right;

    line-height: 14px;
}

.inplayquotes_index_bit_user b {

    display: block;

    color: #d8d2c5;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.inplayquotes_index_bit_user span {

    display: block;

    max-width: 100%;

    overflow: hidden;

    color: #666;

    font-size: 9px;

    font-style: italic;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   MEMBER PROFILE
   ========================================================= */

.inplayquotes_memberprofile {

    margin: 0;

    padding: 0;

    background: #121212;

    border: 1px solid var(--outbreak-line);

    border-radius: 0;

    box-sizing: border-box;
}


/* =========================================================
   MEMBER PROFILE HEADLINE
   ========================================================= */

.inplayquotes_memberprofile-headline {

    padding: 13px 16px;

    background: #171717;

    border-bottom: 1px solid #303030;

    color: #f1eee8;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-radius: 0;
}


/* =========================================================
   MEMBER PROFILE ALL QUOTES
   ========================================================= */

.inplayquotes_memberprofile-allquotes {

    padding: 10px;

    background: #171717;

    border-top: 1px solid #292929;

    color: #888;

    text-align: right;

    border-radius: 0;
}


/* =========================================================
   MEMBER PROFILE QUOTE
   ========================================================= */

.inplayquotes_memberprofile_bit {

    padding: 12px;

    background: #111;

    border-bottom: 1px solid #292929;
}

.inplayquotes_memberprofile_bit_quote {

    width: 95%;

    margin: 0 auto 10px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.6;

    text-align: justify;
}


/* =========================================================
   MEMBER PROFILE FOOTER
   ========================================================= */

.inplayquotes_memberprofile_bit_footer {

    color: #777;

    text-align: right;

    line-height: 15px;
}

.inplayquotes_memberprofile_bit_footer span {

    color: #777;

    font-size: 11px;

    font-style: italic;

    text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .inplayquotes_overview_bit,
    .inplayquotes_overview_bit:nth-child(even) {

        flex-direction: column;

        align-items: stretch;
    }

    .inplayquotes_overview_bit_avatar {

        width: 100%;
    }

    .inplayquotes_overview_bit_container {

        width: 100%;
    }

    .inplayquotes-body {

        padding: 15px;
    }

    .inplayquotes_index_bit {

        align-items: flex-start;
    }

    .inplayquotes_index_bit_avatar {

        flex-basis: 45px;

        width: 45px;
    }

    .inplayquotes_index_bit_avatar img {

        width: 42px;
        height: 42px;
    }

    .inplayquotes_index_bit_footer {

        align-items: flex-start;

        flex-direction: column;
    }

    .inplayquotes_index_bit_user {

        width: 100%;

        text-align: left;
    }

}