/* /Components/AppHeader.razor.rz.scp.css */
.app-header[b-ybtlk3u1pl] {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-lightgrey);
    padding: 24px;
    z-index: 9;
}

.app-header.app-header--with-back-btn[b-ybtlk3u1pl] {
    grid-template-columns: 1fr;
}

.app-header__profile-image[b-ybtlk3u1pl] {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background-color: #C4C4C4;
    overflow: hidden;
}

.app-header__profile-image img[b-ybtlk3u1pl] {
    width: 100%;
}

.app-header__icons[b-ybtlk3u1pl] {
    display: grid;
    grid-template-columns: 48px;
    justify-self: end;
    grid-column-gap: 10px;
}

.app-header__icon[b-ybtlk3u1pl] {
    display: grid;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-items: center;
    font-size: 20px;
}

.app-header__title[b-ybtlk3u1pl] {
    grid-column: 1 / -1;
}

.app-header__title h1[b-ybtlk3u1pl] {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
}

.app-header__title-image[b-ybtlk3u1pl] {
    grid-column: 1 / -1;
    text-align: center;
}

.app-header__title-image img[b-ybtlk3u1pl] {
    width: 50%;
}

.app-header__button-wrapper[b-ybtlk3u1pl] {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.button-wrapper__back-btn[b-ybtlk3u1pl],
.button-wrapper__right-btn[b-ybtlk3u1pl] {
    padding: 12px;
}

.back-btn__inner[b-ybtlk3u1pl],
.right-btn__inner[b-ybtlk3u1pl] {
    width: 24px;
    height: 24px;
    background-color: var(--color-almost-black);
    color: #fff;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 13px;
}

.profile[b-ybtlk3u1pl] {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--app-max-width);
    height: 100%;
    background-color: rgba(0 0 0 / 0);
    transition: background-color .25s ease;
    z-index: -1;
    display: grid;
    align-items: end;
    overflow-y: scroll;
}
.profile.profile--show[b-ybtlk3u1pl] {
    background-color: rgba(0 0 0 / .4);
}

.profile__inner[b-ybtlk3u1pl] {
    background-color: var(--color-lightgrey);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 98px 24px 24px;
    position: relative;
    top: 100%;
    left: 0;
    transition: top .25s ease;
}

.profile.profile--show .profile__inner[b-ybtlk3u1pl] {
    top: 0;
}

.profile__close-btn[b-ybtlk3u1pl] {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
}
.profile__close-btn > div[b-ybtlk3u1pl] {
    width: 200px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}



.profile__content[b-ybtlk3u1pl] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
}

.profile__header[b-ybtlk3u1pl] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    grid-row-gap: 24px;
}

.profile__header-inner[b-ybtlk3u1pl] {
    position: relative;
}

.profile__image-wrapper[b-ybtlk3u1pl] {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    overflow: hidden;
}

.profile__image-wrapper img[b-ybtlk3u1pl] {
    width: 100%;
}

.profile__upload-image-btn[b-ybtlk3u1pl] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 27px;
    height: 27px;
    background-color: var(--color-lightgrey);
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    color: #868686;
    font-size: 15px;
}

.profile__header-details[b-ybtlk3u1pl] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    text-align: center;
}

.profile__user-name[b-ybtlk3u1pl] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.profile__user-email[b-ybtlk3u1pl] {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: rgba(66, 66, 66, 0.6);
    font-family: 'Manrope';
}

.profile__body[b-ybtlk3u1pl] {
    padding: 24px;
    background-color: #fff;
    border-radius: 20px;
}

.profile__menu[b-ybtlk3u1pl] {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 43px) 2px repeat(3, 43px);
    grid-row-gap: 24px;
}

.profile__menu-item[b-ybtlk3u1pl] {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    align-items: center;
}
.profile__menu-item.profile__menu-item--disabled[b-ybtlk3u1pl] {
    opacity: 0.2;
}

.menu__icon-left[b-ybtlk3u1pl] {
    display: grid;
    align-items: center;
    justify-items: center;
    color: #C4C4C4;
    font-size: 22px;
}

.menu__label[b-ybtlk3u1pl] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    padding-left: 30px;
}

.menu__icon-right[b-ybtlk3u1pl] {
    display: grid;
    align-items: center;
    justify-items: center;
    color: #C4C4C4;
    font-size: 16px;
}

.menu__divider[b-ybtlk3u1pl] {
    display: block;
    height: 2px;
    background-color: rgba(0 0 0 / .1);
    border-radius: 10px;
}

.back-btn__inner[b-ybtlk3u1pl][b-ybtlk3u1pl] {
    width: 24px;
    height: 24px;
    background-color: var(--color-almost-black);
    color: #fff;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 13px;
}
/* /Components/AppMenu.razor.rz.scp.css */
nav[b-wdss7d1bfy] {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--app-menu-height);
    background-color: #fff;
    padding-bottom: 50px;
    padding-top: 15px;
    z-index: 9;
}

nav ul[b-wdss7d1bfy] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: calc(var(--app-menu-height) - 50px - 15px);
}

nav ul li[b-wdss7d1bfy] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    grid-row-gap: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #868686;
}

nav ul li.active[b-wdss7d1bfy] {
    color: var(--color-almost-black);
}

nav ul li .nav__icon[b-wdss7d1bfy] {
    font-size: 22px;
}
/* /Components/Button.razor.rz.scp.css */
.button[b-brvg384vq4] {
    display: flex;
    justify-self: center;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    background: linear-gradient(0deg, var(--color-primary), var(--color-primary)), var(--color-primary);
    color: #FEFEFE;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 62px;
    border: 0;
}

.button:disabled[b-brvg384vq4] {
    opacity: 0.3;
    background: #C1C1C1;
}
/* /Components/Modal.razor.rz.scp.css */
/* MODAL STYLING */
.modal[b-rx8kmoe2sw] {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgb(0,0,0,0.6);
    visibility: visible;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

[b-rx8kmoe2sw] .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #EEE;
    border-radius: 0.5rem;
}

[b-rx8kmoe2sw] h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

[b-rx8kmoe2sw] ul {
    list-style: disc;
    margin: 0 24px;
}

[b-rx8kmoe2sw] ul > li {
    margin-bottom: 6px;
    font-size: 18px;
}

[b-rx8kmoe2sw] .modal-body {
    padding: 1rem;
}

[b-rx8kmoe2sw] .modal-body label {
    font-size: 18px;
    padding: 8px 4px;
    display: block;
    font-weight: bold;
}

[b-rx8kmoe2sw] .modal-close-wrapper {
    margin-top: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

[b-rx8kmoe2sw] .modal-close-button {
    border: 2px solid var(--color-primary);
    border-radius: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 8px 20px;
    font-size: inherit;
    font-weight: 500;
    text-align: center;
    -webkit-appearance: none;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    border-radius: 62px;
}
/* /Pages/Accounts/AppFeedback.razor.rz.scp.css */
.app-feedback[b-ou8cn5ikoy] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.app-feedback p[b-ou8cn5ikoy] {
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 18px;
}

.rating[b-ou8cn5ikoy] {
    display: grid;
    grid-template-columns: repeat(5, 45px);
    grid-column-gap: 15px;
    align-items: center;
    justify-items: start;
}

.rating__icon[b-ou8cn5ikoy] {
    font-size: 35px;
    color: var(--color-primary);
}

.divider[b-ou8cn5ikoy] {
    height: 1px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(0 0 0 / .2);
}

[b-ou8cn5ikoy] .button {
    justify-self: stretch;
}

.field__textarea[b-ou8cn5ikoy] {
    font-family: inherit;
    font-size: inherit;
    border: none;
    width: 100%;
    resize: none;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
    border-radius: 20px;
    padding: 20px;
}

[b-ou8cn5ikoy] .modal-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    padding: 40px 24px;
}

.modal__icon[b-ou8cn5ikoy] {
    font-size: 40px;
    width: fit-content;
    margin: 0 auto;
}

.modal-body h3[b-ou8cn5ikoy] {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.modal-body p[b-ou8cn5ikoy] {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.modal-close-wrapper[b-ou8cn5ikoy] {
    margin: 0;
}

[b-ou8cn5ikoy] .button.modal-close-button {
    width: 200px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-color: var(--color-almost-black);
    background: transparent;
    color: var(--color-almost-black);
    font-weight: 600;
    border-width: 3px;
}
/* /Pages/Accounts/AppVersions.razor.rz.scp.css */
.app-versions[b-fim7a5aqo0] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.app-versions__section[b-fim7a5aqo0] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.app-versions__section h2[b-fim7a5aqo0] {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-almost-black);
}

.app-versions__sub-section[b-fim7a5aqo0] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.app-versions__sub-section h3[b-fim7a5aqo0] {
    font-weight: 500;
    font-family: 'Manrope';
    font-size: 16px;
    line-height: 24px;
    color: rgba(var(--color-almost-black-rgb) / .6);
}

.app-versions__sub-section p[b-fim7a5aqo0] {
    font-weight: 500;
    font-family: 'Manrope';
    font-size: 14px;
    line-height: 21px;
    color: var(--color-almost-black);
}

.app-versions__sub-section ul[b-fim7a5aqo0] {
    list-style: disc;
    list-style-position: inside;
    color: var(--color-almost-black);
    font-family: 'Manrope';
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.divider[b-fim7a5aqo0] {
    height: 1px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(0 0 0 /.2);
}
/* /Pages/Accounts/EditProfile.razor.rz.scp.css */
.section__header[b-yus72dl4v1] {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 85px 85px;
    align-items: center;
}

.section__save-btn[b-yus72dl4v1] {
    align-self: end;
    justify-self: end;
    font-size: 26px;
    color: var(--color-almost-black);
}

.section__header h1[b-yus72dl4v1] {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
    color: var(--color-almost-black);
}

.section__form[b-yus72dl4v1] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    align-content: start;
    padding-top: 23px;
}

.form__field[b-yus72dl4v1] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
}

.field__label[b-yus72dl4v1] {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: var(--color-grey-1);
}

.field__wrapper[b-yus72dl4v1] {
    display: grid;
    color: var(--color-grey-1);
    align-items: center;
    grid-column-gap: 15px;
}

.field__wrapper--dob[b-yus72dl4v1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--color-grey-1);
    height: 40px;
    align-items: center;
    border: 2px solid #EAEAEA;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
}

.field__icon[b-yus72dl4v1] {
    font-size: 20px;
}

.field__input[b-yus72dl4v1],
.field__select[b-yus72dl4v1],
.field__textarea[b-yus72dl4v1] {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    border: 2px solid #EAEAEA;
    width: 100%;
    height: 59px;
    padding: 16px;
    border-radius: 8px;
    background-color: #fff;
}

.field__select[b-yus72dl4v1] {
    appearance: none;
    -webkit-appearance: none;
}

.field__wrapper--dob .field__select[b-yus72dl4v1] {
    border: none;
    border-radius: 0;
    border-right: 2px solid #EAEAEA;
}
.field__wrapper--dob .field__select:last-child[b-yus72dl4v1] {
    border-right: none;
}

.field__textarea[b-yus72dl4v1] {
    height: auto;
    resize: none;
}

input[b-yus72dl4v1]::-ms-reveal,
input[b-yus72dl4v1]::-ms-clear {
    display: none;
}

[b-yus72dl4v1] .validation-message {
    color: red;
    font-size: 14px;
    padding-top: 5px;
}

[b-yus72dl4v1] .button {
    min-width: 100%;
}
/* /Pages/Accounts/ForgotPassword.razor.rz.scp.css */
.section__header[b-hcm907rn7z] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    grid-row-gap: 10px;
}

.section__header-icon[b-hcm907rn7z] {
    font-size: 40px;
}

.section__header h1[b-hcm907rn7z] {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
}

.section__header p[b-hcm907rn7z] {
    font-size: 17px;
    line-height: 25.5px;
    font-weight: 500;
}

.section__form[b-hcm907rn7z] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 44px;
    align-content: start;
}

.field__label[b-hcm907rn7z] {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: var(--color-grey-1);
}

.field__wrapper[b-hcm907rn7z] {
    border-bottom: 1px solid var(--color-grey-1);
    display: grid;
    color: var(--color-grey-1);
    height: 40px;
    align-items: center;
    grid-column-gap: 15px;
}

.field__wrapper--2[b-hcm907rn7z] {
    grid-template-columns: auto 1fr;
}

.field__wrapper--3[b-hcm907rn7z] {
    grid-template-columns: auto 1fr auto;
}

.field__icon[b-hcm907rn7z] {
    font-size: 20px;
}

.field__input[b-hcm907rn7z] {
    font-family: inherit;
    font-size: inherit;
    border: none;
    width: 100%;
}

.button.button--primary[b-hcm907rn7z] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 8px;
    width: 234px;
    height: 62px;
    background: linear-gradient(0deg, var(--color-primary), var(--color-primary)), var(--color-primary);
    border-radius: 62px;
    flex: none;
    flex-grow: 0;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FEFEFE;
    justify-self: center;
}

.section__links[b-hcm907rn7z] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.section__link:link[b-hcm907rn7z],
.section__link:focus[b-hcm907rn7z],
.section__link:active[b-hcm907rn7z],
.section__link:hover[b-hcm907rn7z],
.section__link:visited[b-hcm907rn7z] {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    outline: 0;
    color: var(--color-grey-1);
}
/* /Pages/Accounts/Login.razor.rz.scp.css */
.section__header h1[b-mq4pwpu0pm] {
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}

.section__header p[b-mq4pwpu0pm] {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.section__form[b-mq4pwpu0pm] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 44px;
    align-content: start;
}

.field__label[b-mq4pwpu0pm] {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: var(--color-grey-1);
}

.field__wrapper[b-mq4pwpu0pm] {
    border-bottom: 1px solid var(--color-grey-1);
    display: grid;
    color: var(--color-grey-1);
    height: 40px;
    align-items: center;
    grid-column-gap: 15px;
}

.field__wrapper--2[b-mq4pwpu0pm] {
    grid-template-columns: auto 1fr;
}

.field__wrapper--3[b-mq4pwpu0pm] {
    grid-template-columns: auto 1fr auto;
}

.field__icon[b-mq4pwpu0pm] {
    font-size: 20px;
}

.field__input[b-mq4pwpu0pm] {
    font-family: inherit;
    font-size: inherit;
    border: none;
    width: 100%;
}

input[b-mq4pwpu0pm]::-ms-reveal,
input[b-mq4pwpu0pm]::-ms-clear {
    display: none;
}

.button.button--primary[b-mq4pwpu0pm] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 8px;
    width: 234px;
    height: 62px;
    background: linear-gradient(0deg, var(--color-primary), var(--color-primary)), var(--color-primary);
    border-radius: 62px;
    flex: none;
    flex-grow: 0;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FEFEFE;
    justify-self: center;
}

.section__links[b-mq4pwpu0pm] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.section__link:link[b-mq4pwpu0pm],
.section__link:focus[b-mq4pwpu0pm],
.section__link:active[b-mq4pwpu0pm],
.section__link:hover[b-mq4pwpu0pm],
.section__link:visited[b-mq4pwpu0pm] {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    outline: 0;
    color: var(--color-grey-1);
}
/* /Pages/Accounts/PrivacyPolicy.razor.rz.scp.css */
.privacy-policy[b-ct3ufje8vu] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.privacy-policy__section[b-ct3ufje8vu] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.privacy-policy__section h2[b-ct3ufje8vu] {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-almost-black);
}

.privacy-policy__sub-section[b-ct3ufje8vu] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.privacy-policy__sub-section h3[b-ct3ufje8vu] {
    font-weight: 500;
    font-family: 'Manrope';
    font-size: 16px;
    line-height: 24px;
    color: rgba(var(--color-almost-black-rgb) / .6);
}

.privacy-policy__sub-section p[b-ct3ufje8vu] {
    font-weight: 500;
    font-family: 'Manrope';
    font-size: 14px;
    line-height: 21px;
    color: var(--color-almost-black);
}

.divider[b-ct3ufje8vu] {
    height: 1px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(0 0 0 /.2);
}
/* /Pages/Accounts/ResetPassword.razor.rz.scp.css */
/* /Pages/Accounts/Settings.razor.rz.scp.css */
.settings[b-uwkhdlbl1f] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.settings__section[b-uwkhdlbl1f] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
}

.settings__header[b-uwkhdlbl1f] {
    color: rgb(var(--color-almost-black-rgb) / 60%);
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}

.form__field[b-uwkhdlbl1f] {
    background-color: #fff;
    height: 67px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 18px;
    align-content: center;
    grid-column-gap: 13px;
}

.field__label[b-uwkhdlbl1f] {
    font-size: 15px;
    font-weight: 600;
    color: #2A2A2A99;
    line-height: 22.5px;
}

.field__label.field__label--with-left-icon[b-uwkhdlbl1f] {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-column-gap: 10px;
}

.field__wrapper[b-uwkhdlbl1f] {
    display: grid;
    color: var(--color-grey-1);
    height: 40px;
    align-items: center;
    grid-column-gap: 15px;
    justify-items: end;
    position: relative;
}

.field__wrapper.field__wrapper--2[b-uwkhdlbl1f] {
    grid-auto-flow: column;
    grid-template-columns: 1fr auto;
}

.field__input[b-uwkhdlbl1f],
.field__select[b-uwkhdlbl1f] {
    background-color: #fff;
    font-family: inherit;
    font-size: 15px;
    border: none;
    width: fit-content;
    text-align: right;
    font-weight: 600;
    color: var(--color-almost-black);
    justify-self: end;
}

.field__select[b-uwkhdlbl1f] {
    appearance: none;
    -webkit-appearance: none;
}

.field__icon[b-uwkhdlbl1f] {
    width: 16px;
    height: 16px;
    background-color: var(--color-almost-black);
    color: #fff;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 10px;
}





.toggle__b[b-uwkhdlbl1f] {
    display: block;
}

.toggle[b-uwkhdlbl1f] {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 40px;
    border-radius: 100px;
    background-color: #ddd;
    overflow: hidden;
    box-shadow: inset 0 0 2px 1px rgb(0 0 0 / 5%);
    transform: translateY(-50%);
}

.toggle__check[b-uwkhdlbl1f] {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

.toggle__check:checked ~ .toggle__track[b-uwkhdlbl1f] {
    box-shadow: inset 0 0 0 20px var(--color-primary);
}

.toggle__check:checked ~ .toggle__switch[b-uwkhdlbl1f] {
    right: 2px;
    left: 22px;
    transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-property: left, right;
    transition-delay: .05s, 0s;
}

.toggle__switch[b-uwkhdlbl1f] {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 22px;
    background-color: #fff;
    border-radius: 36px;
    z-index: 1;
    transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-property: left, right;
    transition-delay: 0s, .05s;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.toggle__track[b-uwkhdlbl1f] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    box-shadow: inset 0 0 0 2px rgba(0,0,0,.05);
    border-radius: 40px;
}
/* /Pages/Accounts/Shared/AccountsLayout.razor.rz.scp.css */
main[b-lrfyjlkdz5] {
    background-image: url(/images/vector-14.svg), url(/images/vector-15.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center;
    min-width: var(--app-min-width);
    background-size: 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

section[b-lrfyjlkdz5] {
    padding: 50px 45px 160px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: minmax(auto, var(--app-max-width));
    align-content: start;
    justify-content: center;
    grid-row-gap: 50px;
    min-height: 100vh;
}

section .logo[b-lrfyjlkdz5] {
    width: 220px;
    margin: 0 auto;
}
/* /Pages/Accounts/Shared/EditProfileLayout.razor.rz.scp.css */
main[b-rbhdfal3pf] {
    min-width: var(--app-min-width);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: var(--color-lightgrey);
}

section[b-rbhdfal3pf] {
    padding: 0 24px;
    height: 100%;
}
/* /Pages/Accounts/Shared/SettingsLayout.razor.rz.scp.css */
main[b-5p9io0urol] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
}
/* /Pages/Chat/Chat.razor.rz.scp.css */
/* /Pages/Chat/Shared/ChatLayout.razor.rz.scp.css */
main[b-eitfnnm0uf] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
}
/* /Pages/Claims/ClaimDetails.razor.rz.scp.css */
.claim[b-j4gbnib60k] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
}

.claim__image-carousel[b-j4gbnib60k] {
    overflow-y: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
}

.claim__image-carousel__inner[b-j4gbnib60k] {
    display: flex;
    scroll-snap-type: x mandatory;
    column-gap: 12px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.claim__image-carousel__inner[b-j4gbnib60k]::-webkit-scrollbar {
    display: none;
}

.claim__image-carousel__slide[b-j4gbnib60k] {
    scroll-snap-align: center;
    width: 150px;
    flex: 0 0 150px;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    position: relative;
}

.claim__image-carousel__slide.claim__image-carousel__slide--full-screen[b-j4gbnib60k] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    border-radius: 0;
}

.claim__image-carousel__slide img[b-j4gbnib60k] {
    height: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.claim__image-carousel__slide.claim__image-carousel__slide--full-screen img[b-j4gbnib60k] {
    height: 100vh;
}

.slide__header[b-j4gbnib60k] {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1;
    display: none;
    grid-template-columns: 48px 1fr;
    justify-items: end;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 13px 24px;
}

.slide____back-btn[b-j4gbnib60k] {
    padding: 12px;
}

.slide____back-btn__inner[b-j4gbnib60k] {
    width: 24px;
    height: 24px;
    color: #2C2C2C;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 13px;
}

.claim__image-carousel__slide.claim__image-carousel__slide--full-screen .slide__header[b-j4gbnib60k] {
    display: grid;
}

.slide__claim-number[b-j4gbnib60k] {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: #fff;
}

[b-j4gbnib60k] .claim__add-photos-btn {
    width: 100%;
    max-width: 400px;
}

.form__field[b-j4gbnib60k] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
}

.field__label[b-j4gbnib60k] {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: var(--color-grey-1);
}

.field__input[b-j4gbnib60k],
.field__textarea[b-j4gbnib60k],
.field__pre[b-j4gbnib60k] {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    border: 3px solid #F5F5F5;
    width: 100%;
    height: 59px;
    padding: 16px;
    border-radius: 8px;
}

.field__pre[b-j4gbnib60k] {
    height: auto;
    white-space: pre-wrap;
}

.claim__loss-location[b-j4gbnib60k] {
    width: 100%;
    height: 350px;
}
/* /Pages/Claims/ClaimOverview.razor.rz.scp.css */
.claim[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
}

.claim__header[b-tki85luynf] {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
}

.claim__header h2[b-tki85luynf] {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-almost-black);
}

.claim__status-progress[b-tki85luynf] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    background: repeating-linear-gradient( 45deg, var(--color-primary), var(--color-primary) 10px, var(--color-secondary) 10px, var(--color-secondary) 20px);
}

.claim__status-progress-item[b-tki85luynf] {
    height: 18px;
    background-color: #F3F3F3;
}

.claim__status-progress-item.claim__status-progress-item--done[b-tki85luynf] {
    background-color: transparent;
}

.claim__current-status[b-tki85luynf] {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-primary);
}

.claim__policy[b-tki85luynf] {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-column-gap: 15px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
}

.policy__icon[b-tki85luynf] {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
}

.policy__body[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
    position: relative;
}

.policy-number[b-tki85luynf] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.policy-name[b-tki85luynf] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--color-almost-black);
}

.carrier-name[b-tki85luynf] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #BEBEBE;
    padding-right: 40px;
}

.policy__view-icon[b-tki85luynf] {
    position: absolute;
    bottom: -13px;
    right: -5px;
    color: #C4C4C4;
    font-size: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 48px;
    height: 48px;
}

.claim__view-details[b-tki85luynf] {
    background-color: #fff;
    border-radius: 20px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    grid-row-gap: 20px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
    align-content: start;
}

.claim__view-details img[b-tki85luynf] {
    width: 125px;
}

.claim__view-details-content[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 9px;
    max-width: 340px;
}

.claim__view-details-content h2[b-tki85luynf] {
    font-size: 23px;
    font-weight: 600;
    line-height: 35px;
    color: var(--color-almost-black);
}

.claim__view-details-content p[b-tki85luynf] {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-almost-black);
}



.claim__contacts-btn[b-tki85luynf] {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9;
    width: 48px;
    height: 48px;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 23px;
}



.claim__image-carousel[b-tki85luynf] {
    overflow-y: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
}

.claim__image-carousel__inner[b-tki85luynf] {
    display: flex;
    scroll-snap-type: x mandatory;
    column-gap: 12px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.claim__image-carousel__inner[b-tki85luynf]::-webkit-scrollbar {
    display: none;
}

.claim__image-carousel__slide[b-tki85luynf] {
    scroll-snap-align: center;
    width: 150px;
    flex: 0 0 150px;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    position: relative;
}

.claim__image-carousel__slide.claim__image-carousel__slide--full-screen[b-tki85luynf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    border-radius: 0;
}

.claim__image-carousel__slide img[b-tki85luynf] {
    height: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.claim__image-carousel__slide.claim__image-carousel__slide--full-screen img[b-tki85luynf] {
    height: 100vh;
}

.slide__header[b-tki85luynf] {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1;
    display: none;
    grid-template-columns: 48px 1fr;
    justify-items: end;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 13px 24px;
}

.slide____back-btn[b-tki85luynf] {
    padding: 12px;
}

.slide____back-btn__inner[b-tki85luynf] {
    width: 24px;
    height: 24px;
    color: #2C2C2C;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 13px;
}

.claim__image-carousel__slide.claim__image-carousel__slide--full-screen .slide__header[b-tki85luynf] {
    display: grid;
}

.slide__claim-number[b-tki85luynf] {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: #fff;
}

[b-tki85luynf] .claim__add-photos-btn {
    display: none;
    width: 100%;
    max-width: 400px;
}



.popup[b-tki85luynf] {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--app-max-width);
    height: 100%;
    background-color: rgba(0 0 0 / 0);
    transition: background-color .25s ease;
    z-index: -1;
    display: grid;
    align-items: end;
    overflow-y: scroll;
}
.popup.popup--show[b-tki85luynf] {
    background-color: rgba(0 0 0 / .4);
}

.popup__inner[b-tki85luynf] {
    background-color: var(--color-lightgrey);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 98px 24px 24px;
    position: relative;
    top: 100%;
    left: 0;
    transition: top .25s ease;
}

.popup.popup--show .popup__inner[b-tki85luynf] {
    top: 0;
}

.popup__close-btn[b-tki85luynf] {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
}
.popup__close-btn > div[b-tki85luynf] {
    width: 200px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}



.popup__content[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
}

.popup__header[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    grid-row-gap: 24px;
}

.popup__header-inner[b-tki85luynf] {
    position: relative;
}

.popup__image-wrapper[b-tki85luynf] {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    overflow: hidden;
}

.popup__image-wrapper img[b-tki85luynf] {
    width: 100%;
}

.popup__header-details[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    text-align: center;
}

.popup__user-name[b-tki85luynf] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.popup__user-email[b-tki85luynf] {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: rgba(66, 66, 66, 0.6);
    font-family: 'Manrope';
}

.popup__title[b-tki85luynf] {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
}

.popup__subtitle[b-tki85luynf] {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: rgba(66, 66, 66, 0.6);
    font-family: 'Manrope';
}

.popup__body[b-tki85luynf] {
}

.popup__menu[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
}

.popup__menu-item[b-tki85luynf] {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    background-color: #fff;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 15px;
}
.popup__menu-item.popup__menu-item--disabled[b-tki85luynf] {
    opacity: 0.2;
}

.menu__icon-left[b-tki85luynf] {
    display: grid;
    align-items: center;
    justify-items: center;
    color: #C4C4C4;
    font-size: 22px;
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
}

.menu__icon-left img[b-tki85luynf] {
    width: 100%;
}

.menu__label[b-tki85luynf] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
    padding-left: 30px;
}

.menu__label-top[b-tki85luynf] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.menu__label-bottom[b-tki85luynf] {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(var(--color-almost-black-rgb) / 50%);
    word-break: break-all;
}

.menu__label-bottom a[b-tki85luynf],
.menu__label-bottom a:link[b-tki85luynf],
.menu__label-bottom a:visited[b-tki85luynf],
.menu__label-bottom a:focus[b-tki85luynf],
.menu__label-bottom a:active[b-tki85luynf] {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}
/* /Pages/Claims/ClaimProcess.razor.rz.scp.css */
.claim-process[b-1nkvwj1xpm] {

}

.claim-status[b-1nkvwj1xpm] {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: start;
    grid-column-gap: 28px;
    position: relative;
    padding-bottom: 46px;
}

.claim-status:last-child[b-1nkvwj1xpm] {
    padding-bottom: 0;
}

.claim-status:not(:last-child)[b-1nkvwj1xpm]::after {
    content: "";
    width: 6px;
    height: calc(100% - 40px - 28px);
    background-color: #D7D7D7;
    position: absolute;
    top: calc(40px + 14px);
    left: calc(20px - 4px);
    border-radius: 6px;
}

.claim-status.claim-status--done:not(.claim-status--last-done)[b-1nkvwj1xpm]::after {
    background-color: var(--color-primary);
}

.claim-status__indicator[b-1nkvwj1xpm] {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    background-color: transparent;
    border: 3px solid var(--color-primary);
    color: var(--color-primary);
}

.claim-status.claim-status--done .claim-status__indicator[b-1nkvwj1xpm] {
    color: #fff;
    background-color: var(--color-primary);
}

.claim-status__content[b-1nkvwj1xpm] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 6px;
}

.claim-status__content h2[b-1nkvwj1xpm] {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-almost-black);
}

.claim-status__content p[b-1nkvwj1xpm] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--color-almost-black);
}

.claim-status__estimated-duration[b-1nkvwj1xpm] {
    padding: 5px 20px;
    background-color: var(--color-almost-black);
    width: fit-content;
    color: #fff;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    margin-top: 20px;
}
/* /Pages/Claims/MyClaims.razor.rz.scp.css */
.claim__empty[b-0jvqublpwq] {
    display: grid;
    justify-items: center;
    grid-row-gap: 30px;
}

.claim__empty img[b-0jvqublpwq] {
    width: 250px;
}

.claim__empty-content[b-0jvqublpwq] {
    display: grid;
    justify-items: center;
    grid-row-gap: 10px;
    text-align: center;
}

.claim__empty-content h1[b-0jvqublpwq] {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
}

.claim__empty-content p[b-0jvqublpwq] {
    font-size: 15px;
    line-height: 22.5px;
    width: 260px;
}



.claims[b-0jvqublpwq] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
    align-self: start;
}

.claim[b-0jvqublpwq] {
    background: #FFFFFF;
    box-shadow: 0px 12px 23px rgb(167 173 185 / 20%);
    border-radius: 20px;
    overflow: hidden;
}

.claim__header[b-0jvqublpwq] {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.claim__header img[b-0jvqublpwq] {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.claim__body[b-0jvqublpwq] {
    display: grid;
    grid-template-columns: 65% 35%;
}

.claim__body-left[b-0jvqublpwq] {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px;
    grid-row-gap: 11px;
}

.claim__body-left-content[b-0jvqublpwq] {
    display: grid;
    grid-template-columns: 1fr;
}

.claim__body-left-content h2[b-0jvqublpwq] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.claim__claim-number[b-0jvqublpwq] {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-almost-black);
}

.claim__loss-date[b-0jvqublpwq] {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-almost-black);
}

.claim__status[b-0jvqublpwq] {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    padding: 5.5px 20px;
    text-align: center;
    border-radius: 20px;
    width: 185px;
}

.claim__body-right[b-0jvqublpwq] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px;
}

.claim__adjuster[b-0jvqublpwq] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.claim__adjuster-image[b-0jvqublpwq] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.claim__adjuster-image img[b-0jvqublpwq] {
    width: 50px;
}

.claim__adjuster-name[b-0jvqublpwq] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.claim__chat[b-0jvqublpwq] {
    font-size: 25px;
    color: #868686;
    display: grid;
    align-items: center;
}
/* /Pages/Claims/Shared/ClaimsLayout.razor.rz.scp.css */
main[b-cmb90ishyb] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

section[b-cmb90ishyb] {
    align-self: start;
}
/* /Pages/ComingSoon.razor.rz.scp.css */
.coming-soon[b-06s6bx1hgq] {
    display: grid;
    justify-items: center;
    grid-row-gap: 30px;
}

.coming-soon__image[b-06s6bx1hgq] {
    width: 250px;
}

.coming-soon__content[b-06s6bx1hgq] {
    display: grid;
    justify-items: center;
    grid-row-gap: 10px;
}

.coming-soon__content h1[b-06s6bx1hgq] {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
}

.coming-soon__content p[b-06s6bx1hgq] {
    font-size: 15px;
    line-height: 22.5px;
    width: 260px;
}

[b-06s6bx1hgq] .button {
    min-width: 230px;
}
/* /Pages/Dashboard.razor.rz.scp.css */
.carrier[b-7skfqc8psw] {
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
}

.carrier__header[b-7skfqc8psw] {
    display: grid;
    align-items: center;
    justify-items: center;
    position: relative;
    height: 130px;
}

.carrier__header img[b-7skfqc8psw] {
    width: 200px;
}

.carrier__switch-button[b-7skfqc8psw] {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.switch-button__inner[b-7skfqc8psw] {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 10px;
}

.carrier__body[b-7skfqc8psw] {
    overflow-y: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
}

.carrier__coverages[b-7skfqc8psw] {
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    column-gap: 12px;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carrier__coverages[b-7skfqc8psw]::-webkit-scrollbar {
    display: none;
}

.coverage__slide[b-7skfqc8psw] {
    scroll-snap-align: center;
    width: 100%;
    background-color: #fff;
    height: 220px;
    flex: 0 0 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    color: rgb(0 0 0 / 20%);
}

.coverage__slide .coverage[b-7skfqc8psw] {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    grid-row-gap: 25px;
    padding: 0 24px;
}

.coverage__slide .coverage__icon[b-7skfqc8psw] {
    width: 85px;
    height: 85px;
    font-size: 40px;
    border-radius: 16px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.coverage__slide h2[b-7skfqc8psw] {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-almost-black);
}

.coverage__indicators[b-7skfqc8psw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, 8px);
    grid-column-gap: 16px;
    justify-content: center;
    padding-bottom: 24px;
}

.coverage__indicator[b-7skfqc8psw] {
    width: 8px;
    height: 8px;
    background-color: #C4C4C4;
    border-radius: 8px;
    transition: background-color .25s ease;
}

.coverage__indicator.coverage__indicator--active[b-7skfqc8psw] {
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 8px;
}



.slider[b-7skfqc8psw] {
    overflow-y: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
}

.slider__inner[b-7skfqc8psw] {
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    column-gap: 12px;

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider__inner[b-7skfqc8psw]::-webkit-scrollbar {
    display: none;
}

.slider__slide[b-7skfqc8psw] {
    scroll-snap-align: center;
    width: calc(100vw - 48px);
    background-color: #fff;
    height: 200px;
    flex: 0 0 100%;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    color: rgb(0 0 0 / 20%);
    padding: 48px 60px;
    text-align: center;
    grid-row-gap: 8px;
}

.slider__slide h2[b-7skfqc8psw] {
    font-size: 27px;
    font-weight: 600;
}

.slider__slide p[b-7skfqc8psw] {
    font-size: 20px;
    font-weight: 500;
}

.slider__indicators[b-7skfqc8psw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, 8px);
    grid-column-gap: 16px;
    justify-content: center;
}

.slider__indicator[b-7skfqc8psw] {
    width: 8px;
    height: 8px;
    background-color: #C4C4C4;
    border-radius: 8px;
    transition: background-color .25s ease;
}

.slider__indicator.slider__indicator--active[b-7skfqc8psw] {
    width: 8px;
    height: 8px;
    background-color: var(--color-almost-black);
    border-radius: 8px;
}





.coverage-popup[b-7skfqc8psw] {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--app-max-width);
    height: 100%;
    background-color: rgba(0 0 0 / 0);
    transition: background-color .25s ease;
    z-index: -1;
    display: grid;
    align-items: end;
    overflow-y: scroll;
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    overflow-y: scroll;
}

.coverage-popup.coverage-popup--show[b-7skfqc8psw] {
    background-color: rgba(0 0 0 / .4);
}

.coverage-popup__inner[b-7skfqc8psw] {
    background-color: var(--color-lightgrey);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 98px 24px 24px;
    position: relative;
    top: 100%;
    left: 0;
    transition: top .25s ease;
    min-height: 80%;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
    max-height: 100vh;
    overflow-y: scroll;
}

.coverage-popup.coverage-popup--show .coverage-popup__inner[b-7skfqc8psw] {
    top: 0;
}

.coverage-popup__close-btn[b-7skfqc8psw] {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
}

.coverage-popup__close-btn > div[b-7skfqc8psw] {
    width: 200px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.coverage-popup__content[b-7skfqc8psw] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
}

.coverage-popup__content .coverage[b-7skfqc8psw] {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    grid-row-gap: 25px;
    padding: 0 24px;
    align-content: start;
}

.coverage-popup__content .coverage__icon[b-7skfqc8psw] {
    width: 85px;
    height: 85px;
    font-size: 40px;
    border-radius: 16px;
    display: grid;
    align-items: center;
    justify-items: center;
    color: #fff;
    position: relative;
    background: #BDBDBD;
}

.coverage-popup__content .coverage__icon .icon--not-covered[b-7skfqc8psw] {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 32px;
    background-color: var(--color-lightgrey);
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    color: #FF6B6B;
    font-size: 22px;
}

.coverage-popup__content h2[b-7skfqc8psw] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.coverage-popup__content p[b-7skfqc8psw] {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}


.coverage-popup .policy[b-7skfqc8psw] {
    align-self: end;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-column-gap: 15px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
}

.coverage-popup .policy .coverage__icon[b-7skfqc8psw] {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
}

.coverage-popup .policy__body[b-7skfqc8psw] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
    position: relative;
}

.coverage-popup .policy-number[b-7skfqc8psw] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.coverage-popup .policy-name[b-7skfqc8psw] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--color-almost-black);
}

.coverage-popup .carrier-name[b-7skfqc8psw] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #BEBEBE;
    padding-right: 40px;
}

.policy__view-icon[b-7skfqc8psw] {
    position: absolute;
    bottom: -13px;
    right: -5px;
    color: #C4C4C4;
    font-size: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 48px;
    height: 48px;
}

.coverage-popup .not-covered[b-7skfqc8psw] {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    grid-row-gap: 24px;
}

.coverage-popup .not-covered p[b-7skfqc8psw] {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.coverage-popup .not-covered .button.button--primary[b-7skfqc8psw] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 8px;
    width: fit-content;
    background: linear-gradient(0deg, var(--color-primary), var(--color-primary)), var(--color-primary);
    border-radius: 62px;
    flex: none;
    flex-grow: 0;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FEFEFE;
    justify-self: center;
}

.coverage-popup .not-covered .button.button--coverage-requested[b-7skfqc8psw] {
    background: #828282;
}
/* /Pages/Intro/Communicate.razor.rz.scp.css */
/* /Pages/Intro/Shared/IntroLayout.razor.rz.scp.css */
main[b-whxuangmna] {
    background-image: url(/images/vector-14.svg), url(/images/vector-15.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center;
    min-width: var(--app-min-width);
    background-size: 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

section[b-whxuangmna] {
    padding: 50px 45px 160px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: minmax(auto, var(--app-max-width));
    align-content: start;
    justify-content: center;
    min-height: 100vh;
}

[b-whxuangmna] .intro {
    display: grid;
    justify-items: center;
    grid-row-gap: 30px;
}

[b-whxuangmna] .intro__image {
    width: 250px;
}

[b-whxuangmna] .intro__content {
    display: grid;
    justify-items: center;
    grid-row-gap: 10px;
}

[b-whxuangmna] .intro__content h1 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
}

[b-whxuangmna] .intro__content p {
    font-size: 15px;
    line-height: 22.5px;
    width: 260px;
}

[b-whxuangmna] .intro-bullets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
}

[b-whxuangmna] .intro-bullet {
    background-color: #C4C4C4;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

[b-whxuangmna] .intro-bullet.intro-bullet--active {
    background-color: var(--color-primary);
}
/* /Pages/Intro/SubmitClaims.razor.rz.scp.css */
/* /Pages/Intro/TrackClaims.razor.rz.scp.css */
/* /Pages/Intro/ViewYourPolicy.razor.rz.scp.css */
/* /Pages/Notifications.razor.rz.scp.css */
.notifications[b-a732m4zc18] {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.notifications__empty[b-a732m4zc18] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.notifications__image[b-a732m4zc18] {
    width: 250px;
}

.notifications__header[b-a732m4zc18] {
    display: grid;
    justify-items: center;
    grid-row-gap: 10px;
    color: var(--color-almost-black);
}

.notifications__header h1[b-a732m4zc18] {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}

.notifications__header p[b-a732m4zc18] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}
/* /Pages/Offline/Offline.razor.rz.scp.css */
.logo[b-t5ylalu4ge] {
    width: 220px;
    margin: 0 auto;
}

.offline[b-t5ylalu4ge] {
    display: grid;
    justify-items: center;
    grid-row-gap: 20px;
}

.offline__icon[b-t5ylalu4ge] {
    font-size: 55px;
    color: rgb(51 51 51 / 30%);
}

.offline__content[b-t5ylalu4ge] {
    display: grid;
    justify-items: center;
    grid-row-gap: 10px;
}

.offline__content h1[b-t5ylalu4ge] {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
}

.offline__content p[b-t5ylalu4ge] {
    font-size: 15px;
    line-height: 22.5px;
    width: 260px;
}
/* /Pages/Offline/Shared/OfflineLayout.razor.rz.scp.css */
main[b-0dvtamh7tr] {
    background-image: url(/images/vector-14.svg), url(/images/vector-15.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center;
    min-width: var(--app-min-width);
    background-size: 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

section[b-0dvtamh7tr] {
    padding: 50px 45px 160px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: minmax(auto, var(--app-max-width));
    align-content: start;
    justify-content: center;
    min-height: 100vh;
    grid-row-gap: 120px;
}
/* /Pages/Policies/MyPolicies.razor.rz.scp.css */
.policies[b-ey7idv862y] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.policy[b-ey7idv862y] {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-column-gap: 15px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
}

.coverage__icon[b-ey7idv862y] {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
}

.policy__body[b-ey7idv862y] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
    position: relative;
}

.policy-number[b-ey7idv862y] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.policy-name[b-ey7idv862y] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--color-almost-black);
}

.carrier-name[b-ey7idv862y] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #BEBEBE;
    padding-right: 40px;
}

.policy__view-icon[b-ey7idv862y] {
    position: absolute;
    bottom: -13px;
    right: -5px;
    color: #C4C4C4;
    font-size: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 48px;
    height: 48px;
}
/* /Pages/Policies/MyPolicy.razor.rz.scp.css */
.policy[b-r7v7bq653f] {

}

.policy__header[b-r7v7bq653f] {
    display: grid;
    align-items: center;
    justify-items: center;
    position: relative;
    height: 150px;
}

.policy__header img[b-r7v7bq653f] {
    width: 200px;
}

.policy__body[b-r7v7bq653f] {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
}

.policy__body-header[b-r7v7bq653f] {
    text-align: center;
}

.policy__body-header h1[b-r7v7bq653f] {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
}

.policy__body-header .policy-number[b-r7v7bq653f] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #717171;
}

.policy__body-content[b-r7v7bq653f] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
    align-content: start;
}

.form__field[b-r7v7bq653f] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
}

.field__label[b-r7v7bq653f] {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: var(--color-grey-1);
}

.field__wrapper[b-r7v7bq653f] {
    border-bottom: 1px solid var(--color-grey-1);
    display: grid;
    color: var(--color-grey-1);
    height: 40px;
    align-items: center;
    grid-column-gap: 15px;
}

.field__icon[b-r7v7bq653f] {
    font-size: 20px;
}

.field__input[b-r7v7bq653f],
.field__textarea[b-r7v7bq653f] {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    border: 3px solid #F5F5F5;
    width: 100%;
    height: 59px;
    padding: 16px;
    border-radius: 8px;
}

.field__textarea[b-r7v7bq653f] {
    height: auto;
    resize: none;
}

input[b-r7v7bq653f]::-ms-reveal,
input[b-r7v7bq653f]::-ms-clear {
    display: none;
}

.divider[b-r7v7bq653f] {
    height: 2px;
    width: 250px;
    margin: 15px auto;
    background-color: #F5F5F5;
}
/* /Pages/Policies/Shared/PoliciesLayout.razor.rz.scp.css */
main[b-nvpik0jf1t] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
}
/* /Pages/Policies/Shared/PolicyLayout.razor.rz.scp.css */
main[b-le6izlfcjj] {
    flex: 1;
    padding: 0;
    width: 100%;
    background-color: var(--color-lightgrey);
}
/* /Pages/Submit/ClaimQuestionnaire.razor.rz.scp.css */
.screen[b-5h2htohqal] {

}

.screen__form[b-5h2htohqal] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 29px;
    padding-bottom: var(--fnol-buttom-buttons-height);
}

.field[b-5h2htohqal] {

}

.field__wrapper[b-5h2htohqal] {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
    border-radius: 20px;
}
.field__wrapper.field__wrapper--left-icon[b-5h2htohqal] {
    grid-template-columns: 25px 1fr;
}

.field__icon[b-5h2htohqal] {
    font-size: 25px;
}

.field__input[b-5h2htohqal] {
    background-color: #fff;
    font-family: inherit;
    font-size: 20px;
    line-height: 30px;
    border: none;
    width: 100%;
    font-weight: 500;
    color: var(--color-almost-black);
    /*appearance: none;*/
}

.field__textarea[b-5h2htohqal] {
    background-color: #fff;
    font-family: inherit;
    font-size: 20px;
    line-height: 30px;
    border: none;
    width: 100%;
    resize: none;
    font-weight: 500;
    color: var(--color-almost-black);
    appearance: none;
}

input[type="date"][b-5h2htohqal]::-webkit-calendar-picker-indicator,
input[type="time"][b-5h2htohqal]::-webkit-calendar-picker-indicator {
    display: none;
}

#map[b-5h2htohqal] {
    width: 100%;
    height: 350px;
}

.radio[b-5h2htohqal],
.checkbox[b-5h2htohqal] {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-column-gap: 20px;
    align-items: center;
    box-shadow: 0px 12px 23px rgb(167 173 185 / 20%);
    transition: border-width .25s ease,
                background-color .25s ease,
                color .25s ease;
    border: 3px solid #fff;
}

.radio.radio--active[b-5h2htohqal],
.checkbox.checkbox--active[b-5h2htohqal] {
    border: 3px solid var(--color-almost-black);
}

.radio__selector[b-5h2htohqal],
.checkbox__selector[b-5h2htohqal] {
    border: 3px solid var(--color-almost-black);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: border-width .25s ease;
}

.checkbox__selector[b-5h2htohqal] {
    border-radius: 8px;
    display: grid;
    align-items: center;
    justify-items: center;
    color: transparent;
    background-color: transparent;
    display: grid;
    align-items: center;
    justify-items: center;
}

.radio.radio--active .radio__selector[b-5h2htohqal] {
    border-width: 9px;
}

.checkbox.checkbox--active .checkbox__selector[b-5h2htohqal] {
    color: #fff;
    background-color: var(--color-almost-black);
}

.radio__text[b-5h2htohqal],
.checkbox__text[b-5h2htohqal] {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.upload__placeholder[b-5h2htohqal] {
    display: grid;
    grid-template-columns: 1fr;
    width: 170px;
    height: 170px;
    justify-self: center;
    border: 3px dashed var(--color-almost-black);
    border-radius: 20px;
    align-items: center;
    justify-items: center;
    font-size: 48px;
    color: rgba(42, 42, 42, 0.5);
    background-color: rgba(196, 196, 196, 0.1);
}

.upload__placeholder.upload__placeholder--hide[b-5h2htohqal] {
    display: none;
}

.upload__images[b-5h2htohqal] {
    overflow-y: hidden;
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
}

.upload__images.upload__images--show[b-5h2htohqal] {
    display: grid;
}

.upload__images-inner[b-5h2htohqal] {
    display: flex;
    scroll-snap-type: x mandatory;
    column-gap: 12px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.upload__images-inner[b-5h2htohqal]::-webkit-scrollbar {
    display: none;
}

.upload__image[b-5h2htohqal] {
    scroll-snap-align: center;
    width: 250px;
    flex: 0 0 250px;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    position: relative;
    background-color: #f1f1f1;
}

.upload__image-delete-btn[b-5h2htohqal] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 25px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.upload__image img[b-5h2htohqal] {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.upload__add-images-btn[b-5h2htohqal] {
    display: grid;
    grid-template-columns: min-content max-content;
    align-items: center;
    border: 3px solid var(--color-almost-black);
    border-radius: 20px;
    padding: 20px 20px;
    justify-content: center;
    grid-column-gap: 20px;
}

.upload__add-images-btn-icon[b-5h2htohqal] {
    position: relative;
    font-size: 20px;
}

.upload__add-images-btn-icon .plus-icon[b-5h2htohqal] {
    position: absolute;
    bottom: -1px;
    right: -1px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: var(--color-almost-black);
    color: #fff;
    font-size: 13px;
    width: 18px;
    height: 18px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.upload__add-images-btn-text[b-5h2htohqal] {
    font-size: 19px;
    font-weight: 500;
    line-height: 28.5px;
}

.buttons[b-5h2htohqal] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    padding: 29px 24px 36.5px 24px;
    width: 100%;
    max-width: var(--app-max-width);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--app-menu-height);
    background: linear-gradient(360deg, #F9F9F9 57.29%, rgba(249, 249, 249, 0) 100%);
    height: var(--fnol-buttom-buttons-height);
    align-items: center;
}

[b-5h2htohqal] .back-button {
    justify-self: stretch;
    background: none;
    background-color: transparent;
    color: var(--color-almost-black);
    border: 3px solid var(--color-almost-black);
}

[b-5h2htohqal] .next-button {
    justify-self: stretch;
    background: none;
    background-color: var(--color-almost-black);
    color: #fff;
}

[b-5h2htohqal] .next-button.next-button--disabled {
    opacity: 0.1;
}

[b-5h2htohqal] .modal-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    padding: 40px 24px;
}

.modal__icon[b-5h2htohqal] {
    font-size: 40px;
    width: fit-content;
    margin: 0 auto;
}

.modal-body h3[b-5h2htohqal] {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.modal-body p[b-5h2htohqal] {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.modal-close-wrapper[b-5h2htohqal] {
    margin: 0;
    flex-direction: column;
    row-gap: 30px;
}

[b-5h2htohqal] .button.modal-close-button {
    width: 220px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-color: var(--color-almost-black);
    background: transparent;
    color: var(--color-almost-black);
    font-weight: 600;
    border-width: 3px;
}

[b-5h2htohqal] .button.modal-view-claims-button {
    width: 220px;
    padding-top: 16px;
    padding-bottom: 16px;
    background: var(--color-almost-black);
    color: #fff;
    font-weight: 600;
}
/* /Pages/Submit/LossTypes.razor.rz.scp.css */
.loss-types[b-aib97y29w4] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 29px;
    padding-bottom: var(--fnol-buttom-buttons-height);
}

.loss-type[b-aib97y29w4] {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-column-gap: 20px;
    align-items: center;
    box-shadow: 0px 12px 23px rgb(167 173 185 / 20%);
    transition: border-color .25s ease;
    border: 3px solid #fff;
}

.loss-type.loss-type--active[b-aib97y29w4] {
    border: 3px solid var(--color-almost-black);
}

.loss-type__selector[b-aib97y29w4] {
    border: 3px solid var(--color-almost-black);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: border-width .25s ease;
}

.loss-type.loss-type--active .loss-type__selector[b-aib97y29w4] {
    border-width: 9px;
}

loss-type__text[b-aib97y29w4] {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.buttons[b-aib97y29w4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    padding: 29px 24px 36.5px 24px;
    width: 100%;
    max-width: var(--app-max-width);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--app-menu-height);
    background: linear-gradient(360deg, #F9F9F9 57.29%, rgba(249, 249, 249, 0) 100%);
    height: var(--fnol-buttom-buttons-height);
    align-items: center;
}

[b-aib97y29w4] .back-button {
    justify-self: stretch;
    background: none;
    background-color: transparent;
    color: var(--color-almost-black);
    border: 3px solid var(--color-almost-black);
}

[b-aib97y29w4] .next-button {
    justify-self: stretch;
    background: none;
    background-color: var(--color-almost-black);
    color: #fff;
}

[b-aib97y29w4] .next-button.next-button--disabled {
    opacity: 0.1;
}
/* /Pages/Submit/RelatedPolicies.razor.rz.scp.css */
.policies[b-ak0w0oy5d1] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}

.policy[b-ak0w0oy5d1] {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-column-gap: 15px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
}

.coverage__icon[b-ak0w0oy5d1] {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
}

.policy__body[b-ak0w0oy5d1] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
    position: relative;
}

.policy-number[b-ak0w0oy5d1] {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-almost-black);
}

.policy-name[b-ak0w0oy5d1] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--color-almost-black);
}

.carrier-name[b-ak0w0oy5d1] {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #BEBEBE;
    padding-right: 40px;
}

.policy__view-icon[b-ak0w0oy5d1] {
    position: absolute;
    bottom: -13px;
    right: -5px;
    color: #C4C4C4;
    font-size: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 48px;
    height: 48px;
}
/* /Pages/Submit/ReviewClaim.razor.rz.scp.css */
.claim[b-7idixu1ywl] {
    padding-bottom: var(--fnol-buttom-buttons-height);
}

.claim__form[b-7idixu1ywl] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 29px;
}

.form__field[b-7idixu1ywl] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
}

.field__label[b-7idixu1ywl] {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: var(--color-grey-1);
}

.field__input[b-7idixu1ywl],
.field__textarea[b-7idixu1ywl],
.field__pre[b-7idixu1ywl] {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    border: 3px solid #F5F5F5;
    width: 100%;
    height: 59px;
    padding: 16px;
    border-radius: 8px;
}

.field__pre[b-7idixu1ywl] {
    height: auto;
    white-space: pre-wrap;
}

.claim__images[b-7idixu1ywl] {
    overflow-y: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
}

.claim__images-inner[b-7idixu1ywl] {
    display: flex;
    scroll-snap-type: x mandatory;
    column-gap: 12px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.claim__images-inner[b-7idixu1ywl]::-webkit-scrollbar {
    display: none;
}

.claim__image[b-7idixu1ywl] {
    scroll-snap-align: center;
    width: 250px;
    flex: 0 0 250px;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    position: relative;
    background-color: #f1f1f1;
}

.claim__image-delete-btn[b-7idixu1ywl] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 25px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.claim__image img[b-7idixu1ywl] {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}   

#map[b-7idixu1ywl] {
    width: 100%;
    height: 350px;
}

.buttons[b-7idixu1ywl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    padding: 29px 24px 36.5px 24px;
    width: 100%;
    max-width: var(--app-max-width);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--app-menu-height);
    background: linear-gradient(360deg, #F9F9F9 57.29%, rgba(249, 249, 249, 0) 100%);
    height: var(--fnol-buttom-buttons-height);
    align-items: center;
}

[b-7idixu1ywl] .back-button {
    justify-self: stretch;
    background: none;
    background-color: transparent;
    color: var(--color-almost-black);
    border: 3px solid var(--color-almost-black);
}

[b-7idixu1ywl] .next-button {
    justify-self: stretch;
    background: none;
    background-color: var(--color-almost-black);
    color: #fff;
}

[b-7idixu1ywl] .next-button.next-button--disabled {
    opacity: 0.1;
}

[b-7idixu1ywl] .modal-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    padding: 40px 24px;
}

.modal__icon[b-7idixu1ywl] {
    font-size: 40px;
    width: fit-content;
    margin: 0 auto;
}

.modal-body h3[b-7idixu1ywl] {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.modal-body p[b-7idixu1ywl] {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.modal-close-wrapper[b-7idixu1ywl] {
    margin: 0;
    flex-direction: column;
    row-gap: 30px;
}

[b-7idixu1ywl] .button.modal-close-button {
    width: 220px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-color: var(--color-almost-black);
    background: transparent;
    color: var(--color-almost-black);
    font-weight: 600;
    border-width: 3px;
}

[b-7idixu1ywl] .button.modal-view-claims-button {
    width: 220px;
    padding-top: 16px;
    padding-bottom: 16px;
    background: var(--color-almost-black);
    color: #fff;
    font-weight: 600;
}
/* /Pages/Submit/Shared/SubmitLayout.razor.rz.scp.css */
main[b-7nw99ffd7w] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
}
/* /Pages/Submit/Submit.razor.rz.scp.css */
.submit[b-49bd69bhl7] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    align-items: start;
}

.submit__header h1[b-49bd69bhl7] {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
}

.submit__tile[b-49bd69bhl7] {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    grid-row-gap: 20px;
    box-shadow: 0px 12px 23px rgba(167, 173, 185, 0.2);
    align-content: start;
}

.submit__tile.submit__tile--disabled[b-49bd69bhl7] {
    opacity: 0.3;
}

.submit__tile img[b-49bd69bhl7] {
    width: 125px;
}

.submit__tile-content[b-49bd69bhl7] {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 9px;
}

.submit__tile-content h2[b-49bd69bhl7] {
    font-size: 23px;
    font-weight: 600;
    line-height: 35px;
    color: var(--color-almost-black);
}

.submit__tile-content p[b-49bd69bhl7] {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-almost-black);
}
/* /Pages/Support.razor.rz.scp.css */
.support[b-dubwnadzzt] {
    display: grid;
    justify-items: center;
    grid-row-gap: 30px;
}

.support__image[b-dubwnadzzt] {
    width: 250px;
}

.support__content[b-dubwnadzzt] {
    display: grid;
    justify-items: center;
    grid-row-gap: 10px;
}

.support__content h1[b-dubwnadzzt] {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
}

.support__content p[b-dubwnadzzt] {
    font-size: 15px;
    line-height: 22.5px;
    width: 260px;
}

[b-dubwnadzzt] .button {
    min-width: 230px;
}
/* /Shared/ComingSoonLayout.razor.rz.scp.css */
main[b-8p3i9whczz] {
    background-image: url(/images/vector-14.svg), url(/images/vector-15.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center;
    min-width: var(--app-min-width);
    background-size: 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

section[b-8p3i9whczz] {
    padding: 50px 45px 160px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: minmax(auto, var(--app-max-width));
    align-content: center;
    justify-content: center;
    min-height: 100vh;
}
/* /Shared/MainLayout.razor.rz.scp.css */
main[b-g9c9l4d6x5] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    grid-row-gap: 24px;
}
/* /Shared/NotificationsLayout.razor.rz.scp.css */
main[b-vlp4skwe7c] {
    flex: 1;
    padding: 0 24px 24px;
    width: 100%;
    background-color: var(--color-lightgrey);
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    grid-row-gap: 24px;
}
/* /Shared/SupportLayout.razor.rz.scp.css */
main[b-vhje3cfyy9] {
    background-image: url(/images/vector-14.svg), url(/images/vector-15.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center;
    min-width: var(--app-min-width);
    background-size: 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

section[b-vhje3cfyy9] {
    padding: 50px 45px 160px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: minmax(auto, var(--app-max-width));
    align-content: center;
    justify-content: center;
    min-height: 100vh;
}
