@import url('theme.css');


.d-i {
    display: inline-block;
}

.d-f {
    display: flex;
}

.f-1 {
    flex: 1;
}

.f-col {
    flex-direction: column;
}

.jc-center {
    justify-content: center;
}

.jc-start {
    justify-content: flex-start;
}

.jc-end {
    justify-content: flex-end;
}

.jc-space-evenly {
    justify-content: space-evenly;
}

.jc-space-around {
    justify-content: space-around;
}

.jc-space-between {
    justify-content: space-between;
}

.ai-start {
    align-items: flex-start
}

.ai-center {
    align-items: center
}

.ai-end {
    align-items: flex-end
}

.p-xs {
    padding: var(--space-xs)
}

.p-s {
    padding: var(--space-s)
}

.p-m {
    padding: var(--space-m)
}

.p-l {
    padding: var(--space-l)
}

.p-xl {
    padding: var(--space-xl)
}

.p-xxl {
    padding: var(--space-xxl)
}

m-xs {
    margin: var(--space-xs)
}

m-s {
    margin: var(--space-s)
}

m-m {
    margin: var(--space-m)
}

m-l {
    margin: var(--space-l)
}

m-xl {
    margin: var(--space-xl)
}

m-xxl {
    margin: var(--space-xxl)
}

.mt-s {
    margin-top: var(--space-s);
}

.mt-m {
    margin-top: var(--space-m);
}
.mt-l {
    margin-top: var(--space-l);
}
.mt-xl {
    margin-top: var(--space-xl);
}
.gap-s {
    gap: var(--space-s);
}

.gap-m {
    gap: var(--space-m);
}

.gap-l {
    gap: var(--space-l);
}

.ta-c {
    text-align: center;
}

.ta-s {
    text-align: start;
}

.ta-e {
    text-align: end;
}


.bold {
    font-weight: 700;
}


.hidden {
    display: none !important;
}


.full-width {
    width: 100%;
}

.width-mc {
    min-width: max-content
}

.p1 {
    color: #000;
    /* Paragraph 1 */
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
}

.p2 {
    color: #000;
    /* Paragraph 2 */
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.p3 {
    color: #000;
    font-family: var(--font-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 19.5px */
}

.font-primary {
    font-family: var(--font-primary) !important;
}

.font-secondary {
    font-family: var(--font-secondary) !important;
}

.text-color-default {
    color: var(--Almost-Black, #010101) !important;
}

.upperase {
    text-transform: uppercase;
}

.display-1 {
    font-size: var(--font-size-display);
    color: #000;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.sub-text1 {
    color: #000;
    /* Sub text 1 */
    font-family: var(--font-primary);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
}

.nav-link {
    color: var(--Almost-Black, #010101);
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    text-transform: uppercase;
}

.pr-rightsection-ctn {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 100px;
}

.pr-sec-title {
    margin-top: 40px;
    max-width: 850px;
}

.pr-sec-info-main {
    width: 845px;
}

.pr-info-row-item-score {
    color: #000;
    font-family: var(--font-primary);
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 72.8px */
}

.pr-info-row-item-score-sub {
    color: #000;
    font-family: var(--font-primary);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pr-info-row-item-score-text {
    color: #000;
    /* Paragraph 1 */
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
}

/* Navigation*/

.pr-nav-ctn {
    width: 504px;
    height: 240.369px;
    border-radius: 10px;
    border: 0.5px solid var(--Almost-Black, #010101);
    background: var(--Background-white, #FFFEFE);
}

.pr-nav-card {
    box-sizing: border-box;
    padding: 36px 30px 38px 32px;
    display: flex;
    gap: 16px;
    justify-content: start;
    align-items: flex-start
}

.bg-sunny-white {
    background-color: var(--color-primary);
}
/*DONT REMOVE BELOW CSS*/

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
