<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* claim results page css
 * note: works without ids in the selectors, but now avoiding conflicts with base_face.css
 */
#claim-results-container, #claim-info, #claimResultsDescLbl, #resultsform {
    width: 900px;
    font-family: Montserrat, sans-serif !important;
}
.cr-section-title, .claim-state-glossary-heading {
    font-family: Montserrat, sans-serif !important;
}
    #claim-results-container .cr-container {
        color: white;
    }

  #claim-info .cr-section-title {
        font-size: 22px;
        margin: 36px 0;
        font-weight: normal;
        color: #cccccc;
        text-transform: inherit;
    }
        #claim-results-container .cr-section-title {
        font-size: 22px;
        margin: 36px 0;
        font-weight: normal;
        text-transform: inherit;
    }

/*claim title bars*/

.resultsform
{
    display:flex;
    flex-direction:column;
}
.claim-title-bar {
    position: relative;
    padding: 22px 3.8%; /* 35/900px */
    margin-top: 20px;
    background-color: #1f1f1f;
    color: #cccccc;
    font-weight: bold;
    font-size: 17px;
    text-transform: uppercase;
    cursor: pointer;
}

.claim-title-bar-active {
    background-color: #313131;
    color: white;
    display:flex;
}

.claim-toggle {
    float: right;
    font-size: 3em;
    position: absolute;
    right: 20px;
    top: -10px;
    display:flex;
}

.claim-toggle-active {
    /*font-size: 4em;*/
    right: 25px;
    top: -15px;
    display:flex;
}

.claim-toggle:after {
    content: '\002B';
}
/*plus = 43, minus = 45 in ascii, which is \002B and \002D in hex */
.claim-toggle-active:after {
    content: '\002D';
}

/*claim states */
.claim-body {
    display: none;
}
.claim_flex {
    display:flex !important;
}
.claim-state {
    width: 25%;
    float: left;
    background-color: #1f1f1f;
    font-weight: bold;
    position: relative;
    /*z-index: 1;*/
    display: flex;
    flex-direction: column;
}

    .claim-state .icon {
        position: relative;
        width: 110px;
        height: 110px;
        margin: 2.25em auto 1.75em auto;
        background-color: #888888;
        border-radius: 50%;
        z-index:1;
        background-image: url(../../images/ProductSupport/claim-status-icons.png);
        behavior: url(../../scripts/ProductSupport/PIE.htc);
    }

.claim-state-0 {
    z-index:3;
}
.claim-state-1 {
    z-index: 2;
}
.claim-state-2 {
    z-index: 1;
}
.claim-state-3 {
    z-index: 0;
}
.claim-state-1 .icon {
    background-position: -110px 0;
}

.claim-state-2 .icon {
    background-position: -220px 0;
}

.claim-state-3 .icon {
    background-position: -330px 0;
}

.claim-state-4 .icon {
    background-position: -440px 0;
}

.claim-state-connector {
    position: relative;
    top: 54px;
    right: -120px;
    width: 96px;
    border-bottom: 1px solid white;
    display: block;
    z-index: 1;
}

.claim-state-3 .claim-state-connector {
    display: none;
}

#claim-results-container .claim-state .label {
    text-align: center;
    color: #888888;
    text-transform: uppercase;
    height: 35px;
    font-size: 18px;
    font-weight: bold;
}

#claim-results-container .claim-state .modified {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 1.75em;
}
/*current claim state */
.claim-state-current {
    background-color: #121212;
}

    .claim-state-current .icon {
        background-color: #cc0000;
    }

    .claim-state-current .label {
        color: #cc0000;
    }

    .claim-state-current .modified {
        color: #888888;
    }

/* claim state glossary*/
.claim-state-glossary-item {
   /* color: #cccccc;*/
    font-size: 13px;
}

.claim-state-glossary-icon {
    background-image: url(../../images/ProductSupport/claim-status-icons-small.png);
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 1em;
    background-color: #313131;
}

.claim-state-glossary-item .icon-1 {
    background-position: -60px 0;
}

.claim-state-glossary-item .icon-2 {
    background-position: -120px 0;
}

.claim-state-glossary-item .icon-3 {
    background-position: -180px 0;
}

.claim-state-glossary-item .icon-4 {
    background-position: -240px 0;
}

#claim-info .claim-state-glossary-heading {
    color: #cc0000;
    text-transform: uppercase;
}
h4.claim-state-glossary-heading {
    margin-bottom:0rem;
}
</pre></body></html>