@import '_content/Multibanking.UI.Components/Multibanking.UI.Components.bundle.scp.css';

/* _content/Creditland.ClientModule/Base/Components/AccordionRequestDetails.razor.rz.scp.css */
.styled-accordion[b-b0udidyr3m] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #981d68;
}

    .styled-accordion .accordion-header[b-b0udidyr3m] {
        cursor: pointer;
        padding: 15px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

        .styled-accordion .accordion-header .angle[b-b0udidyr3m] {
            width: 16px;
            height: 16px;
            min-width: 16px;
            transition: all linear 0.3s;
        }

            .styled-accordion .accordion-header .angle.opened[b-b0udidyr3m] {
                transform: rotate(-180deg);
            }
        .styled-accordion .accordion-header .adornment[b-b0udidyr3m] {
            width: 24px;
            height: 24px;
            min-width: 24px;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
        }

    .styled-accordion .heading[b-b0udidyr3m] {
        font-size: 20px;
        color: #981d68;
        font-weight: bold;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }

    .upload-documents .heading[b-b0udidyr3m] {
        font-size: 16px;
    }

    .styled-accordion .heading .adornment[b-b0udidyr3m] {
        margin-right: 10px;
    }

    .styled-accordion .document-count-wrapper[b-b0udidyr3m] {
        padding: 0 5px;
    }

    .document-count-wrapper .document-count[b-b0udidyr3m] {
        color: red;
    }

    .styled-accordion p[b-b0udidyr3m] {
        font-size: 18px;
    }

    .styled-accordion .value[b-b0udidyr3m] {
        font-size: 22px;
        font-weight: bold;
        line-height: 1;
    }

    .styled-accordion .title[b-b0udidyr3m] {
        font-weight: bold;
    }

    .styled-accordion .accordion-content[b-b0udidyr3m] {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: all linear 0.4s;
        border-top: 1px solid #981d8820;
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        overflow: hidden;
    }

        .styled-accordion .accordion-content.opened[b-b0udidyr3m] {
            opacity: 100;
            visibility: visible;
            max-height: 800px;
            overflow-y: auto;
        }


@media only screen and (max-width: 1200px) {
    .styled-accordion .accordion-header[b-b0udidyr3m] {
        padding: 10px;
    }


    .styled-accordion .heading[b-b0udidyr3m] {
        font-size: 16px;
    }

    .upload-documents .heading[b-b0udidyr3m] {
        font-size: 14px;
    }

    .styled-accordion p[b-b0udidyr3m] {
        font-size: 16px;
    }

    .styled-accordion .value[b-b0udidyr3m] {
        font-size: 20px;
    }

}
/* _content/Creditland.ClientModule/Base/Components/MessageWrapper.razor.rz.scp.css */
.message-body[b-mhyg633y09] {
    width: 100%;
}

.message-details .message-body-title[b-mhyg633y09] {
    padding: 10px;
}

    .message-details .message-body-title .theme-head[b-mhyg633y09] {
        font-weight: bold;
        font-size: 16px;
        color: #616161;
    }

    .message-details .message-body-title .theme-body[b-mhyg633y09] {
        font-size: 16px;
        color: #616161;
    }

.message-details .message-body-text[b-mhyg633y09] {
    padding: 10px 20px;
    background-color: #FFF;
    overflow-y: scroll;
    border-top: 1px solid #616161;
    border-bottom: 1px solid #616161;
    text-align: justify;
    height: 25vh;
}

.message-details .message-body-footer[b-mhyg633y09] {
    background-color: #fff;
    color: #616161;
    font-weight: bold;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.message-details .offers-panel[b-mhyg633y09] {
    display: flex;
    flex-wrap: wrap;
}

.message-details .attachment[b-mhyg633y09] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 20px 10px 0;
}

.attachment a[b-mhyg633y09] {
    color: #2196f3;
    font-weight: 100;
}

@media screen and (max-width: 900px){
    .message-details .offers-panel[b-mhyg633y09] {
        display: block;
    }

    .message-details .attachment[b-mhyg633y09] {
        margin-right: 0;
    }
}
/* _content/Creditland.ClientModule/Base/Components/PhotoCapture.razor.rz.scp.css */
.container[b-jmmcjk2ciz] {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

    .container video[b-jmmcjk2ciz] {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: black;
    }

    .container button[b-jmmcjk2ciz] {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 100%;
        width: 50px;
        height: 50px;
        background-color: gray;
        border: 1px solid #cecece;
    }

    .container .error[b-jmmcjk2ciz] {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        color: #f44437;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        text-align: center;
    }

    .exit[b-jmmcjk2ciz] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
/* _content/Creditland.ClientModule/Base/Components/StyledModal.razor.rz.scp.css */
.modal-background[b-hqicecy77f] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.modal-content[b-hqicecy77f] {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-width: 500px;
    width: 100%;
}

.close-button[b-hqicecy77f] {
    position: absolute;
    top: 10px;
    right: 10px;
}
/* _content/Creditland.ClientModule/Base/Components/UploadConsentDocument.razor.rz.scp.css */


.upload-files-modal .upload-file-name-box[b-c06wcnzj8b] {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
}

    .upload-files-modal .upload-file-name-box h4[b-c06wcnzj8b] {
        margin-left: 10px;
        line-height: 100%;
        display: flex;
        align-items: center;
        color: #981d68;
    }

.upload-files-modal .upload-documents-content .upload-box[b-c06wcnzj8b] {
    border: 1px solid #981d68;
    border-radius: 5px;
    background-color: #f4e7e6;
    padding: 10px 11px;
    margin-bottom: 20px;
}

.upload-documents-content .highlight[b-c06wcnzj8b] {
    font-weight: bold;
}

.upload-documents-content .spacer[b-c06wcnzj8b] {
    margin: 10px 0 20px 0;
}

.upload-files-modal .upload-files-header[b-c06wcnzj8b] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

    .upload-files-modal .upload-files-header .header[b-c06wcnzj8b] {
        color: #981d68;
        line-height: 100%;
        display: flex;
        align-items: center;
    }

.upload-files-modal .upload-documents-content[b-c06wcnzj8b] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-color: white;
    border: none;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 11px;
}

    .upload-files-modal .upload-documents-content .upload-box[b-c06wcnzj8b] {
        border: 1px solid #981d68;
        border-radius: 25px;
        background-color: #f4e7e6;
        padding: 10px 11px;
        margin-bottom: 20px;
    }


.upload-files-modal .required-documents[b-c06wcnzj8b] {
    border: 1px solid #981d68 !important;
    border-radius: 5px;
    width: 100%;
    padding: 10px 11px;
    position: relative;
}

    .upload-files-modal .required-documents:not(:last-child)[b-c06wcnzj8b] {
        margin-bottom: 15px;
    }

    .upload-files-modal .required-documents .title[b-c06wcnzj8b] {
        position: absolute;
        top: -12px;
        left: 20px;
        background-color: #fff;
        padding: 0 5px;
        font-weight: bold;
    }

    .upload-files-modal .required-documents .download-all-btn-container[b-c06wcnzj8b] {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .upload-files-modal .required-documents ul li[b-c06wcnzj8b] {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
    }

        .upload-files-modal .required-documents ul li div[b-c06wcnzj8b] {
            display: flex;
            align-items: center;
        }

            .upload-files-modal .required-documents ul li div[b-c06wcnzj8b] > :first-child:not(:only-child) {
                margin-right: 10px;
            }


.upload-files-modal .upload-documents-content .successful-upload-confirmation-box[b-c06wcnzj8b], .upload-files-modal .upload-documents-content .unsuccessful-upload-confirmation-box[b-c06wcnzj8b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 5px;
}

    .upload-files-modal .upload-documents-content .successful-upload-confirmation-box p[b-c06wcnzj8b] {
        margin: 0;
        padding: 0;
        font-size: 14px !important;
        text-align: center;
    }

    .upload-files-modal .upload-documents-content .successful-upload-confirmation-box span[b-c06wcnzj8b] {
        font-weight: bold;
    }

[b-c06wcnzj8b] input[type=file] {
    display: none !important;
}

.upload-documents-content .upload-box[b-c06wcnzj8b] {
    border: 1px solid #981d68;
    border-radius: 25px;
    background-color: #f4e7e6;
    padding: 10px 11px;
    margin-bottom: 20px;
}

    .upload-documents-content .upload-box div[b-c06wcnzj8b] {
        display: flex;
        justify-content: center;
    }

.upload-box .input-file-box[b-c06wcnzj8b] {
    display: none;
}

.upload-box p[b-c06wcnzj8b] {
    margin-bottom: 10px !important;
    text-align: center;
    font-size: 14px;
}

.upload-box label[b-c06wcnzj8b] {
    cursor: pointer;
    height: 24px;
}

.upload-box .action-icons[b-c06wcnzj8b] {
    margin-bottom: 5px;
}

    .upload-box .action-icons div[b-c06wcnzj8b] {
        width: 100px;
        display: flex;
        justify-content: center;
    }

.upload-files-btn-box[b-c06wcnzj8b] {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hide-on-desktop[b-c06wcnzj8b] {
    display: none !important;
}

.required-documents .doc-name[b-c06wcnzj8b] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    min-width: 60px;
    max-width: 340px;
}


@media only screen and (max-width: 1200px) {
    .details-table td[b-c06wcnzj8b], .details-table-border td[b-c06wcnzj8b] {
        padding: 5px;
        font-size: 14px;
    }

    .offers-panel[b-c06wcnzj8b] {
        padding: 10px;
    }

    .documents-panel .upload-documents-content[b-c06wcnzj8b] {
        padding: 10px 7px;
    }

    .required-documents .doc-name[b-c06wcnzj8b] {
        max-width: 350px;
    }
}

@media only screen and (max-width: 600px) {
    .required-documents .doc-name[b-c06wcnzj8b] {
        max-width: 180px;
    }
}

@media only screen and (max-width: 350px) {
    .required-documents .doc-name[b-c06wcnzj8b] {
        max-width: 60px;
    }
}
/* _content/Creditland.ClientModule/Base/Components/UploadFiles.razor.rz.scp.css */


.upload-files-modal .upload-file-name-box[b-sls5ouk15h] {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
}

    .upload-files-modal .upload-file-name-box h4[b-sls5ouk15h] {
        margin-left: 10px;
        line-height: 100%;
        display: flex;
        align-items: center;
        color: #981d68;
    }

.upload-files-modal .upload-documents-content .upload-box[b-sls5ouk15h] {
    border: 1px solid #981d68;
    border-radius: 5px;
    background-color: #f4e7e6;
    padding: 10px 11px;
    margin-bottom: 20px;
}

.upload-documents-content .highlight[b-sls5ouk15h] {
    font-weight: bold;
}

.upload-documents-content .spacer[b-sls5ouk15h] {
    margin: 10px 0 20px 0;
}

.upload-files-modal .upload-files-header[b-sls5ouk15h] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

    .upload-files-modal .upload-files-header .header[b-sls5ouk15h] {
        color: #981d68;
        line-height: 100%;
        display: flex;
        align-items: center;
    }

.upload-files-modal .upload-documents-content[b-sls5ouk15h] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-color: white;
    border: none;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 11px;
}

    .upload-files-modal .upload-documents-content .upload-box[b-sls5ouk15h] {
        border: 1px solid #981d68;
        border-radius: 25px;
        background-color: #f4e7e6;
        padding: 10px 11px;
        margin-bottom: 20px;
    }


.upload-files-modal .required-documents[b-sls5ouk15h] {
    border: 1px solid #981d68 !important;
    border-radius: 5px;
    width: 100%;
    padding: 10px 11px;
    position: relative;
}

    .upload-files-modal .required-documents:not(:last-child)[b-sls5ouk15h] {
        margin-bottom: 15px;
    }

    .upload-files-modal .required-documents .title[b-sls5ouk15h] {
        position: absolute;
        top: -12px;
        left: 20px;
        background-color: #fff;
        padding: 0 5px;
        font-weight: bold;
    }

    .upload-files-modal .required-documents .download-all-btn-container[b-sls5ouk15h] {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .upload-files-modal .required-documents ul li[b-sls5ouk15h] {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
    }

        .upload-files-modal .required-documents ul li div[b-sls5ouk15h] {
            display: flex;
            align-items: center;
        }

            .upload-files-modal .required-documents ul li div[b-sls5ouk15h] > :first-child:not(:only-child) {
                margin-right: 10px;
            }


.upload-files-modal .upload-documents-content .successful-upload-confirmation-box[b-sls5ouk15h], .upload-files-modal .upload-documents-content .unsuccessful-upload-confirmation-box[b-sls5ouk15h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 5px;
}

    .upload-files-modal .upload-documents-content .successful-upload-confirmation-box p[b-sls5ouk15h] {
        margin: 0;
        padding: 0;
        font-size: 14px !important;
        text-align: center;
    }

    .upload-files-modal .upload-documents-content .successful-upload-confirmation-box span[b-sls5ouk15h] {
        font-weight: bold;
    }

[b-sls5ouk15h] input[type=file] {
    display: none !important;
}

.upload-documents-content .upload-box[b-sls5ouk15h] {
    border: 1px solid #981d68;
    border-radius: 25px;
    background-color: #f4e7e6;
    padding: 10px 11px;
    margin-bottom: 20px;
}

    .upload-documents-content .upload-box div[b-sls5ouk15h] {
        display: flex;
        justify-content: center;
    }

.upload-box .input-file-box[b-sls5ouk15h] {
    display: none;
}

.upload-box p[b-sls5ouk15h] {
    margin-bottom: 10px !important;
    text-align: center;
    font-size: 14px;
}

.upload-box label[b-sls5ouk15h] {
    cursor: pointer;
    height: 24px;
}

.upload-box .action-icons[b-sls5ouk15h] {
    margin-bottom: 5px;
}

    .upload-box .action-icons div[b-sls5ouk15h] {
        width: 100px;
        display: flex;
        justify-content: center;
    }

.upload-files-btn-box[b-sls5ouk15h] {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hide-on-desktop[b-sls5ouk15h] {
    display: none !important;
}

.required-documents .doc-name[b-sls5ouk15h] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    min-width: 60px;
    max-width: 340px;
}


@media only screen and (max-width: 1200px) {
    .details-table td[b-sls5ouk15h], .details-table-border td[b-sls5ouk15h] {
        padding: 5px;
        font-size: 14px;
    }

    .offers-panel[b-sls5ouk15h] {
        padding: 10px;
    }

    .documents-panel .upload-documents-content[b-sls5ouk15h] {
        padding: 10px 7px;
    }

    .required-documents .doc-name[b-sls5ouk15h] {
        max-width: 350px;
    }
}

@media only screen and (max-width: 600px) {
    .required-documents .doc-name[b-sls5ouk15h] {
        max-width: 180px;
    }
}

@media only screen and (max-width: 350px) {
    .required-documents .doc-name[b-sls5ouk15h] {
        max-width: 60px;
    }
}
/* _content/Creditland.ClientModule/Layout/CreditlandLayout.razor.rz.scp.css */
body[b-6h20u3o4yg] {
    margin: 0 !important;
    max-width: 100vw;
}

.creditland-layout[b-6h20u3o4yg] {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    background: repeating-linear-gradient(150deg, white, white, #faeef5, #d5b2c7);
    padding-bottom: 130px;
}

.creditland-layout .header[b-6h20u3o4yg] {
    width: 100%;
    padding: 15px 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

    .creditland-layout .footer[b-6h20u3o4yg] {
        width: 100%;
        padding: 10px;
        justify-content: center;
        display: flex;
        align-items: center;
        background-color: white;
        font-size: 12px;
        min-height: 46px;
        max-height: 46px;
        position: fixed;
        bottom: 0;
    }

.footer .copyright[b-6h20u3o4yg] {
    font-size: 18px;
    margin: 0 2px;
}

.footer .inline-logo[b-6h20u3o4yg] {
    margin-right: 10px;
}

.creditland-layout .wrap[b-6h20u3o4yg] {
    max-width: 1065px;
    padding: 0 15px;
}

.creditland-layout .logo-lines[b-6h20u3o4yg] {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    min-height: 90px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 1035px;
}

.creditland-layout .header img[b-6h20u3o4yg] {
    margin-bottom: 15px;
}

.creditland-layout .header .line-one[b-6h20u3o4yg],
.creditland-layout .header .line-two[b-6h20u3o4yg] {
    width: 100%;
    height: 43px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
}

.creditland-layout .header .line-one[b-6h20u3o4yg] {
    bottom: 11px;
}

.creditland-layout .header .line-two[b-6h20u3o4yg] {
    bottom: 0;
}

.creditland-layout .header .line-one div[b-6h20u3o4yg],
.creditland-layout .header .line-two div[b-6h20u3o4yg] {
    border: 10px solid;
    border-radius: 50%;
    width: 105%;
    height: 95px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    min-width: 600px;
}

.creditland-layout .header .line-one div[b-6h20u3o4yg] {
    border-color: #981d68;
}

.creditland-layout .header .line-two div[b-6h20u3o4yg] {
    border-color: #ced4da;
}

.creditland-layout .menu-user[b-6h20u3o4yg],
.creditland-layout .menu[b-6h20u3o4yg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.creditland-layout .menu[b-6h20u3o4yg] {
    flex-flow: row wrap;
}

    .creditland-layout .menu .menu-item[b-6h20u3o4yg] {
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 5px 15px;
        transition: all linear 0.3s;
        border-radius: 22px;
        font-size: 20px;
        color: #616161;
        font-weight: bold;
        text-align: center;
        flex: 1 10%;
        max-width: 12%;
        text-decoration: none;
        position: relative;
        text-wrap: nowrap;
    }

.creditland-layout .menu .menu-item-tooltip[b-6h20u3o4yg] {
    background-color: #f44336;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    font-size: 14px;
    min-width: 20px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -6px;
    right: 0;
}

.creditland-layout .menu-dropdown .menu-item-tooltip[b-6h20u3o4yg] {
    background-color: #f44336;
    width: 25px;
    height: 25px;
    min-width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff !important;
    font-size: 18px !important;
}

.creditland-layout .menu .menu-item[b-6h20u3o4yg] {
    min-width: 185px;
}

.creditland-layout .menu button[b-6h20u3o4yg] {
    border: 0;
    background-color: transparent;
    padding: 0;
}

.creditland-layout .menu .menu-item:hover[b-6h20u3o4yg],
.creditland-layout .menu button.exit:hover[b-6h20u3o4yg] {
    color: #981d68;
}

.creditland-layout .menu-item.active[b-6h20u3o4yg] {
    background-color: #981d68;
    color: #fff
}

.creditland-layout .menu-item.active:hover[b-6h20u3o4yg] {
    background-color: #981d68;
    color: #fff;
}

.creditland-layout .body .sidebar a.active svg[b-6h20u3o4yg] {
    fill: #fff;
}

.creditland-layout .menu-user[b-6h20u3o4yg] {
    position: relative;
}

.creditland-layout .menu-user .user-exit[b-6h20u3o4yg] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.creditland-layout .menu-user.mobile[b-6h20u3o4yg] {
    display: none;
    position: relative;
}

.creditland-layout .menu-user .user-exit span[b-6h20u3o4yg] {
    color: #981d68;
    font-size: 16px;
    transition: all linear 0.3s;
}

.creditland-layout .menu-user .user-exit *[b-6h20u3o4yg] {
    fill: #981d68;
    transition: all linear 0.3s;
}

.creditland-layout .menu-user .user-exit.visible-tooltip span[b-6h20u3o4yg] {
    color: #616161;
}

.creditland-layout .menu-user .user-exit.visible-tooltip *[b-6h20u3o4yg] {
    fill: #616161
}

.creditland-layout .menu-user .tooltip[b-6h20u3o4yg] {
    position: absolute;
    top: 122%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    background-color: #f5f5f5;
    gap: 5px;
    border-radius: 5px;
    box-shadow: 3px 2px 16px -1px rgba(145,145,145,0.8);
    visibility: hidden;
    opacity: 0;
    transition: all linear 0.3s;
    z-index: 9999;
}

.creditland-layout .menu-user .tooltip.visible-tooltip[b-6h20u3o4yg] {
    opacity: 100;
    visibility: visible;
}

.creditland-layout .menu-user .tooltip .angle[b-6h20u3o4yg] {
    background-color: #f5f5f5;
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
    position: absolute;
    top: -7px;
    right: 8px;
    transform: rotate(45deg);
    transition: all linear 0.3s;
}

.creditland-layout .menu-user .tooltip *[b-6h20u3o4yg] {
    fill: #616161;
    transition: all linear 0.3s;
    min-width: 25px;
}

.creditland-layout .menu-user .tooltip span[b-6h20u3o4yg] {
    color: #616161;
    transition: all linear 0.3s;
    font-size: 18px;
}

.creditland-layout .menu-user .tooltip:hover *[b-6h20u3o4yg] {
    fill: #fff;
}

.creditland-layout .menu-user .tooltip:hover span[b-6h20u3o4yg] {
    color: #fff;
}

.creditland-layout .content[b-6h20u3o4yg] {
    padding: 15px;
    display: flex;
    margin-top: 15px;
    flex: 1;
    flex-direction:column;
    align-items:center;
}

.creditland-layout .menu .user[b-6h20u3o4yg] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.creditland-layout .menu-button[b-6h20u3o4yg] {
    position: relative;
    height: 18px;
    width: 30px;
}

.creditland-layout .menu-button > div[b-6h20u3o4yg] {
    height: 1.5px;
    background-color: #781952;
    width: 25px;
    transition: all linear 0.2s;
    position: absolute;
}

.creditland-layout .menu-button .first[b-6h20u3o4yg] {
    top: 0;
    transform-origin: 95%;
}

.creditland-layout .menu-button .second[b-6h20u3o4yg] {
    top: 8px;
    opacity: 100;
}

.creditland-layout .menu-button .third[b-6h20u3o4yg] {
    bottom: 0;
    transform-origin: 95%;
}

.creditland-layout .menu-button.opened .first[b-6h20u3o4yg] {
    transform: rotate(-45deg);
}
.creditland-layout .menu-button.opened .second[b-6h20u3o4yg] {
    opacity: 0;
}

.creditland-layout .menu-button.opened .third[b-6h20u3o4yg] {
    transform: rotate(45deg);
}

.creditland-layout .menu-dropdown[b-6h20u3o4yg] {
    position: absolute;
    left: 0;
    right: 0;
    top: 160px;
    bottom: 100%;
    overflow: auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    z-index: 999;
    margin-top: 1px;
    background-color: rgba(210,210,210, 0.85);
    transition: all linear 0.3s;
}

.creditland-layout .menu-dropdown > div[b-6h20u3o4yg] {
    border: 1px solid #981d68;
    transition: all linear 0.2s;
    background-color: #f4e7e6;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
    border-radius: 10px;
}

.creditland-layout .menu-dropdown.opened[b-6h20u3o4yg] {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.creditland-layout .menu-dropdown div a[b-6h20u3o4yg] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 8px 15px;
    border-bottom: 1px solid #981d68;
    width: 100%;
}

.creditland-layout .menu-dropdown div .menu-item.active[b-6h20u3o4yg] {
    background-color: #981d68;
}

.creditland-layout .menu-dropdown .title[b-6h20u3o4yg] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.creditland-layout .menu-dropdown div .menu-item.active span[b-6h20u3o4yg] {
    color: #fff;
}

.creditland-layout .menu-dropdown div .menu-item.active svg[b-6h20u3o4yg] {
    fill: #fff;
}

.creditland-layout .menu-dropdown div .menu-item:last-child[b-6h20u3o4yg] {
    border-bottom: 0;
}

.creditland-layout .menu-dropdown div .menu-item span[b-6h20u3o4yg] {
    color: #981d68;
    font-size: 24px;
}

.creditland-layout .menu-dropdown div .menu-item svg[b-6h20u3o4yg] {
    fill: #981d68;
}

.creditland-layout .menu-dropdown div .menu-item:hover span[b-6h20u3o4yg] {
    color: #fff;
}

.creditland-layout .menu-dropdown div .menu-item:hover svg[b-6h20u3o4yg] {
    fill: #fff;
}

.profile-submenu[b-6h20u3o4yg] {
    cursor: pointer;
}

    .profile-submenu:hover[b-6h20u3o4yg] {
        color: #981d68;
    }

.profile-submenu .profile-link[b-6h20u3o4yg] {
    position: relative;
    min-width: 185px;
    padding: 5px;
    font-size: 18px;
    display: flex;
    justify-content: space-evenly;
}

.profile-submenu .profile-link-options[b-6h20u3o4yg] {
    position: absolute;
    top: 35.74px;
    left: 0;
    right: 0;
    border: 1px solid #981d68;
    border-top: 0 none;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: none;
    z-index: 10;
    background-color: white;
}

    .profile-submenu .profile-link:hover .profile-link-options[b-6h20u3o4yg] {
        display: initial;
    }

.profile-submenu .profile-link-options button.exit[b-6h20u3o4yg] {
    max-width: 100%;
    width: 100%;
}
.creditland-layout .consent[b-6h20u3o4yg] {
    margin-top:15px;
    color: #981d68;
    display:inline-block;
}

    .creditland-layout .consent .icon[b-6h20u3o4yg] {
        border-radius: 50%;
        min-width: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .creditland-layout .consent .icon.ok[b-6h20u3o4yg] {
            background-color: #4caf50;
        }

        .creditland-layout .consent .icon.missing[b-6h20u3o4yg] {
            background-color: #f44336;
        }

    .creditland-layout .consent .icon[b-6h20u3o4yg] {
        border-radius: 50%;
        min-width: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .creditland-layout .consent .icon.ok[b-6h20u3o4yg] {
            background-color: #4caf50;
        }

        .creditland-layout .consent .icon.missing[b-6h20u3o4yg] {
            background-color: #f44336;
        }
@media only screen and (max-width: 1400px) {
    .creditland-layout .menu[b-6h20u3o4yg] {
        gap: 10px;
    }

    .creditland-layout .menu .menu-item[b-6h20u3o4yg],
    .creditland-layout .menu button.exit[b-6h20u3o4yg] {
        font-size: 18px;
        padding: 5px;
    }
}

@media only screen and (max-width: 900px) {
    .creditland-layout .header .menu.desktop[b-6h20u3o4yg] {
        display: none;
    }

    .creditland-layout .header .menu-user.mobile[b-6h20u3o4yg] {
        display: flex;
    }

    .inline-logo[b-6h20u3o4yg] {
        display: none;
    }
}

@media only screen and (max-width: 475px) {
    .creditland-layout .logo-lines[b-6h20u3o4yg] {
        min-height: 65px;
    }

    .creditland-layout .header .line-one[b-6h20u3o4yg] {
        bottom: 8px;
    }

    .creditland-layout .header .line-one div[b-6h20u3o4yg],
    .creditland-layout .header .line-two div[b-6h20u3o4yg] {
        border-width: 6px;
    }

    .creditland-layout .logo-lines img[b-6h20u3o4yg] {
        height: 40px;
        width: auto
    }

    .creditland-layout .menu-dropdown[b-6h20u3o4yg] {
        left: 0;
        right: 0;
    }

    .creditland-layout .menu-dropdown[b-6h20u3o4yg] {
        top: 130px;
    }
}
/* _content/Creditland.ClientModule/Layout/CreditlandSimpleLayout.razor.rz.scp.css */
.body[b-9uwbu10cj6] {
    margin: 0 !important;
}

.layout[b-9uwbu10cj6] {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

.layout .header[b-9uwbu10cj6],
.layout .footer[b-9uwbu10cj6] {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout .wrap[b-9uwbu10cj6] {
    width: 100%;
    max-width: 1035px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    min-height: 90px;
}

.layout .header img[b-9uwbu10cj6] {
    margin-bottom: 15px;
}

.layout .header .line-one[b-9uwbu10cj6],
.layout .header .line-two[b-9uwbu10cj6] {
    width: 100%;
    height: 43px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
}

.layout .header .line-one[b-9uwbu10cj6] {
    bottom: 11px;
}

.layout .header .line-two[b-9uwbu10cj6] {
    bottom: 0;
}

.layout .header .line-one div[b-9uwbu10cj6],
.layout .header .line-two div[b-9uwbu10cj6] {
    border: 10px solid;
    border-radius: 50%;
    width: 105%;
    height: 95px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    min-width: 600px;
}

.layout .header .line-one div[b-9uwbu10cj6] {
    border-color: #981d68;
}

.layout .header .line-two div[b-9uwbu10cj6] {
    border-color: #ced4da;
}

.content[b-9uwbu10cj6] {
    max-width: 1035px;
    min-height: calc(100vh - 240px);
    width: 100%;
    padding: 0 15px;
    margin-top: 15px;
}

.layout .footer[b-9uwbu10cj6] {
    height: 52px;
    max-width: 1035px;
    padding: 15px 0;
}

.layout .footer .footer-line[b-9uwbu10cj6] {
    width: 100%;
    height: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.layout .footer .footer-line div[b-9uwbu10cj6] {
    border: 2px solid #981d68;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.layout .footer-two[b-9uwbu10cj6] {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-size: 12px;
    min-height: 46px;
    max-height: 46px;
    position: fixed;
    bottom: 0;
    z-index: 100;
}

.footer-two .copyright[b-9uwbu10cj6] {
    font-size: 18px;
    margin: 0 2px;
}

.footer-two .inline-logo[b-9uwbu10cj6] {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .layout .header .wrap[b-9uwbu10cj6] {
        min-height: 82px;
    }

    .layout .header .line-one[b-9uwbu10cj6],
    .layout .header .line-two[b-9uwbu10cj6] {
        height: 43px;
    }

    .layout .header .line-one[b-9uwbu10cj6] {
        bottom: 6px;
    }

    .layout .header .line-one div[b-9uwbu10cj6],
    .layout .header .line-two div[b-9uwbu10cj6] {
        border-width: 6px;
    }
}
/* _content/Creditland.ClientModule/Pages/CreditlandConsent.razor.rz.scp.css */
.creditland-consent .consent[b-26st1undcz],
.creditland-consent .successful-consent[b-26st1undcz] {
  width: 100%;
  min-width: 1000px;
  display: none;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.creditland-consent .consent.is-visible[b-26st1undcz],
.creditland-consent .successful-consent.is-visible[b-26st1undcz] {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.creditland-consent .consent h2[b-26st1undcz],
.creditland-consent .successful-consent h2[b-26st1undcz] {
  color: #981d68;
  text-align: center;
}
.creditland-consent .consent .consent-buttons[b-26st1undcz],
.creditland-consent .successful-consent .consent-buttons[b-26st1undcz] {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.creditland-consent .consent .text[b-26st1undcz],
.creditland-consent .successful-consent .text[b-26st1undcz] {
  max-height: calc(100vh - 500px);
  min-height: 200px;
  overflow: auto;
  background-color: #fff;
  border: 1px solid #981d68;
  padding: 15px;
}
.creditland-consent .consent .framing[b-26st1undcz],
.creditland-consent .successful-consent .framing[b-26st1undcz] {
  width: 100%;
  height: 600px;
}
.creditland-consent .consent styled-download-anchor[b-26st1undcz],
.creditland-consent .successful-consent styled-download-anchor[b-26st1undcz] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.creditland-consent .box[b-26st1undcz] {
  width: 100%;
  display: none;
  margin: 0 0 15px 0;
  transition: all 0.3s linear;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.creditland-consent .box .form[b-26st1undcz] {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.creditland-consent .box.is-visible[b-26st1undcz] {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.creditland-consent .box .row-wrap[b-26st1undcz] {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .creditland-consent .consent[b-26st1undcz], .creditland-consent .successful-consent[b-26st1undcz] {
    min-width: initial;
  }
}
/* _content/Creditland.ClientModule/Pages/Home.razor.rz.scp.css */
.page-wrapper[b-fj4fs39x8f] {
    width: 100%;
}

.home-page[b-fj4fs39x8f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 600px) {
    .home-page[b-fj4fs39x8f] {
        width: 100%;
    }
}
/* _content/Creditland.ClientModule/Pages/Index.razor.rz.scp.css */
.new-user[b-s6ry2h2teh] {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 30px;
}

.new-user div[b-s6ry2h2teh] {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.new-user .request-button[b-s6ry2h2teh] {
    max-width: 300px;
}

.new-user .banner[b-s6ry2h2teh] {
    width: 600px;
}

@media only screen and (max-width: 600px) {
    .new-user .banner[b-s6ry2h2teh] {
        width: 400px;
    }
}
/* _content/Creditland.ClientModule/Pages/MessageDetails.razor.rz.scp.css */
.message-details[b-ef004ewttf] {
    width: 100%;
    box-sizing:border-box;
}
    .message-details .show-details[b-ef004ewttf] {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .message-details .show-details .details-box[b-ef004ewttf] {
        width: 50%;
    }

        .message-details .show-details .details-box .details-box-head[b-ef004ewttf] {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: bold;
            color: #616161;
        }

        .message-details .show-details .details-box .details-box-body[b-ef004ewttf] {
            font-size: 14px;
            font-style: italic;
        }
    .message-details .history-text[b-ef004ewttf] {
        font-size: 16px;
        font-weight: bold;
        color: #616161;
        display: block;
        padding-bottom: 5px;
    }
.message-body[b-ef004ewttf] {
    width: 100%;
}
    .message-details .message-body-title[b-ef004ewttf] {
        padding: 10px;
    }
        .message-details .message-body-title .theme-head[b-ef004ewttf] {
            font-weight: bold;
            font-size: 16px;
            color: #616161;
        }
        .message-details .message-body-title .theme-body[b-ef004ewttf] {
            font-size: 16px;
            color: #616161;
        }
    .message-details .message-body-text[b-ef004ewttf] {
        padding: 10px 20px;
        background-color: #FFF;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #616161;
        text-align: justify;
    }

    .message-details .message-body-footer[b-ef004ewttf] {
        background-color: #fff;
        color: #616161;
        font-weight: bold;
        padding: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

.message-details .offers-panel[b-ef004ewttf] {
    background-color: #fff;
    width: 100%;
    padding: 10px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}

    .message-details .offers-panel li[b-ef004ewttf] {
        display: flex;
        align-items: center;
        padding: 5px 0;
    }

    .message-details .offers-panel li:not(:last-child)[b-ef004ewttf] {
        margin-right: 30px;
    }

        .message-details .offers-panel li svg[b-ef004ewttf] {
            margin-right: 10px;
        }

    .message-details .offers-panel a[b-ef004ewttf] {
        text-decoration: underline;
        color: #2798f4;
    }

.offset-panel a:visited[b-ef004ewttf] {
    color: #981d68;
}

.message-details .load-more-messages-box[b-ef004ewttf] {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

    .message-details .load-more-messages-box button[b-ef004ewttf] {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 200px;
        cursor: pointer;
    }

    .message-details .load-more-messages-box button.loading[b-ef004ewttf] {
        opacity: 0.5;
        pointer-events: none;
    }
        .message-details .load-more-messages-box button p[b-ef004ewttf] {
            padding-right: 10px;
            color: black;
        }

            .message-details .load-more-messages-box button.loading p[b-ef004ewttf] {
                opacity: 0.5;
            }

        .message-details .load-more-messages-box button div[b-ef004ewttf] {
            display: flex;
            align-items: center;
        }
        .message-details .load-more-messages-box button.loading div[b-ef004ewttf] {
            animation: spinning-b-ef004ewttf 0.5s infinite;
        }
        /*Starts changes of MudSwitch appearance*/
        .message-details[b-ef004ewttf]  .mud-switch {
            margin-inline-end: 0;
        }

            @keyframes spinning-b-ef004ewttf {
                from {
                    transform:rotate(0deg);
                } to {
                      transform:rotate(360deg);
                  }
            }
.message-details[b-ef004ewttf]  .mud-switch-span {
    width: 80px !important;
    height: 50px !important;
}

.message-details[b-ef004ewttf]  .mud-switch-track {
    border-radius: 30px !important;
}

.message-details[b-ef004ewttf]  .mud-switch-base {
    top: 9px;
    left: 10px;
}

    .message-details[b-ef004ewttf]  .mud-switch-base.mud-checked {
        transform: translateX(26px);
    }

.message-details[b-ef004ewttf]  .mud-secondary {
    background-color: #981d68 !important;
    opacity: 1 !important;
}

.message-details[b-ef004ewttf]  .mud-default {
    background-color: #981d68 !important;
    opacity: 0.5 !important;
}

.message-details[b-ef004ewttf]  .mud-switch-thumb-medium {
    background-color: #fff !important;
}

.message-details[b-ef004ewttf]  .mud-switch-button .mud-switch-thumb-medium {
    width: 15px !important;
    height: 15px !important;
}
/*Ends changes of MudSwitch appearance*/


@media only screen and (max-width: 1200px ) {
    .message-details .show-details .details-box[b-ef004ewttf] {
        width: 100%;
    }
}

@media only screen and (max-width: 400px ) {
    .message-details .offers-panel[b-ef004ewttf] {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .message-details .offers-panel li:not(:last-child)[b-ef004ewttf] {
        margin-right: 0;
    }
}
/* _content/Creditland.ClientModule/Pages/Messages.razor.rz.scp.css */
.messages[b-upm57coo20] {
    width: 100%;
}

    .messages .single-message:not(:last-child)[b-upm57coo20] {
        margin-bottom: 10px;
    }

    .messages .single-message[b-upm57coo20] {
        width: 100%;
    }

    .messages .info-message[b-upm57coo20] {
        padding-bottom: 20px;
    }

    .messages .info-message-box[b-upm57coo20] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
/* _content/Creditland.ClientModule/Pages/MyRequests.razor.rz.scp.css */
.page-wrapper[b-lpb2pvnxhi] {
    width: 100%;
}

.my-requests[b-lpb2pvnxhi] {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.my-requests[b-lpb2pvnxhi],
.my-requests .my-requests-table[b-lpb2pvnxhi],
.my-requests .my-requests-table table[b-lpb2pvnxhi],
.my-requests .no-requests[b-lpb2pvnxhi],
.my-requests .no-requests div[b-lpb2pvnxhi] {
    width: 100%;
}

.my-requests .no-requests[b-lpb2pvnxhi],
.my-requests .no-requests div[b-lpb2pvnxhi] {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.my-requests .no-requests div[b-lpb2pvnxhi] {
    gap: 5px;
}

    .my-requests .my-requests-table[b-lpb2pvnxhi], .my-requests .group-waiting[b-lpb2pvnxhi] {
        margin-bottom: 30px;
    }

.my-requests .no-requests .request-button[b-lpb2pvnxhi] {
    max-width: 300px;
}

    .my-requests .my-requests-table table tbody tr[b-lpb2pvnxhi] {
        cursor: pointer;
    }

    .my-requests .my-requests-table table tr th[b-lpb2pvnxhi],
    .my-requests .my-requests-table table tr td[b-lpb2pvnxhi] {
        padding: 10px 30px;
    }

.my-requests .my-requests-table table tr th[b-lpb2pvnxhi],
.my-requests .my-requests-table table tr td:not(:first-of-type)[b-lpb2pvnxhi] {
    text-align: center;
}

.my-requests .my-requests-table table tr:not(:last-of-type) td[b-lpb2pvnxhi] {
    border-bottom: 1px solid #ced4da;
}

.my-requests .my-requests-table table tr th:last-of-type[b-lpb2pvnxhi] {
    width: 50px
}

    .my-requests .my-requests-table[b-lpb2pvnxhi] {
        font-size: 18px;
    }

    .my-requests .my-requests-table table button[b-lpb2pvnxhi] {
        padding: 0;
    }

.accordion-content-wrapper[b-lpb2pvnxhi] {
    width: 100%;
}

.accordion-content-wrapper .details-table td[b-lpb2pvnxhi] {
    padding: 8px;
}

    .accordion-content-wrapper .details-table td.label[b-lpb2pvnxhi] {
        text-align: right;
    }

    .accordion-content-wrapper .details-table td.info[b-lpb2pvnxhi] {
        color: #981d68;
    }

.group-waiting[b-lpb2pvnxhi] {
    padding: 0 10px;
}

.details-table table tr:nth-child(odd)[b-lpb2pvnxhi], .details-table-border tr:nth-child(odd)[b-lpb2pvnxhi] {
    background-color: #f4e7e6;
}

.details-table table tr:nth-child(even)[b-lpb2pvnxhi], .details-table-border tr:nth-child(even)[b-lpb2pvnxhi] {
    background-color: #fff;
}

@media only screen and (max-width: 768px) {
    .my-requests .my-requests-table table tr th[b-lpb2pvnxhi], .my-requests .my-requests-table table tr td[b-lpb2pvnxhi] {
        padding: 10px 2px;
    }

    .my-requests .my-requests-table table tr td:last-of-type[b-lpb2pvnxhi] {
        padding: 10px 0;
    }

    .my-requests .my-requests-table table tr th:last-of-type[b-lpb2pvnxhi] {
        width: 35px
    }
}
/* _content/Creditland.ClientModule/Pages/NewRequest.razor.rz.scp.css */
.apply[b-drfkilrvgi] {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.apply .header-step-one[b-drfkilrvgi] {
    width: 100%;
    transition: all 0.3s linear;
    overflow: hidden;
}

.apply .header-step-one div[b-drfkilrvgi] {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all 0.2s linear;
}

.apply .header-step-one.is-hidden[b-drfkilrvgi] {
    max-height: 0;
}

.apply .header-step-one.is-hidden div[b-drfkilrvgi] {
    visibility: hidden;
    opacity: 0;
}

.apply .header-step-one h3[b-drfkilrvgi],
.apply .header-step-one p[b-drfkilrvgi],
.apply .box-heading[b-drfkilrvgi] {
    font-weight: bold;
    text-align: center;
}

.apply .text[b-drfkilrvgi],
.apply .confirmation-code[b-drfkilrvgi] {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.apply .text p[b-drfkilrvgi] {
    text-align: center;
}

.apply .stepper[b-drfkilrvgi] {
    max-width: 575px;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s linear;
}

.apply .stepper > div[b-drfkilrvgi] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
    font-weight: bold;
    position: relative;
    width: 100%;
    transition: all 0.2s linear;
}

.apply .stepper.is-hidden[b-drfkilrvgi] {
    max-height: 0;
}

.apply .stepper.is-hidden > div[b-drfkilrvgi] {
    opacity: 0;
    visibility: hidden;
}

.apply .stepper .line[b-drfkilrvgi] {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #981d68;
    z-index: 1;
}

.apply .stepper .step[b-drfkilrvgi] {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-width: 34px;
    color: #ced4da;
    border: 3px solid #981d68;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 2;
    transition: all 0.3s linear;
    cursor: pointer;
}

.apply .stepper .step.is-completed[b-drfkilrvgi] {
    background-color: #981d68;
    color: #fff;
}

.apply .stepper .step.disabled[b-drfkilrvgi] {
    pointer-events: none;
}

.apply .stepper .step:hover[b-drfkilrvgi] {
    background-color: #b40e71;
    color: #fff
}

.apply .apply-form[b-drfkilrvgi] {
    max-width: 575px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    min-height: 40vh;
    position: relative;
}

.apply .step-box[b-drfkilrvgi] {
    width: 100%;
    display: none;
    margin: 0 0 15px 0;
    transition: all 0.3s linear;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.apply .step-box .form[b-drfkilrvgi] {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.policy[b-drfkilrvgi] {
    color: #981d68;
}

.apply .step-box.is-visible[b-drfkilrvgi] {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.apply .row-wrap[b-drfkilrvgi] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    width: 100%;
}

.apply .box-heading[b-drfkilrvgi] {
    color: #981d68;
}

.apply .details-table td[b-drfkilrvgi] {
    padding: 8px;
    min-width: 125px;
}

.apply .details-table td.label[b-drfkilrvgi] {
    text-align: right;
}

.apply .details-table td.info[b-drfkilrvgi] {
    color: #981d68;
}

.apply .progress-bar[b-drfkilrvgi] {
    width: 100%;
    max-width: 80%;
    border: 1px solid #616161;
    background-color: #fff;
    height: 25px;
    margin: 30px 0;
    position: relative;
}

.apply .progress-bar .bar[b-drfkilrvgi] {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 15%;
    background-color: #981d68;
}

.apply .step-box.last-step[b-drfkilrvgi] {
    gap: 30px;
}

.apply .contacts[b-drfkilrvgi] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 10px;
}

.apply .contacts a[b-drfkilrvgi] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .apply .modal-title[b-drfkilrvgi] {
        margin-bottom: 20px;
        margin-right: 50px;
        font-size: 16px;
    }
/* _content/Creditland.ClientModule/Pages/Registration.razor.rz.scp.css */
.apply[b-u548cnlo5w] {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.apply .header-step-one[b-u548cnlo5w] {
    width: 100%;
    transition: all 0.3s linear;
    overflow: hidden;
}

.apply .header-step-one div[b-u548cnlo5w] {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    transition: all 0.2s linear;
}

.apply .header-step-one > div[b-u548cnlo5w] {
    gap: 15px;
}

.apply .header-step-one.is-hidden[b-u548cnlo5w] {
    max-height: 0;
}

.apply .header-step-one.is-hidden div[b-u548cnlo5w] {
    visibility: hidden;
    opacity: 0;
}

.apply .header-step-one h3[b-u548cnlo5w],
.apply .header-step-one p[b-u548cnlo5w],
.apply .box-heading[b-u548cnlo5w] {    
    text-align: center;
}

.apply .text[b-u548cnlo5w],
.apply .confirmation-code[b-u548cnlo5w] {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .apply .text p[b-u548cnlo5w] {
        text-align: center;
    }

.apply .stepper[b-u548cnlo5w] {
    max-width: 575px;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s linear;
}

.apply .stepper > div[b-u548cnlo5w] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
    font-weight: bold;
    position: relative;
    width: 100%;
    transition: all 0.2s linear;
}

.apply .stepper.is-hidden[b-u548cnlo5w] {
    max-height: 0;
}

.apply .stepper.is-hidden > div[b-u548cnlo5w] {
    opacity: 0;
    visibility: hidden;
}

.apply .stepper .line[b-u548cnlo5w] {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #981d68;
    z-index: 1;
}

.apply .stepper .step[b-u548cnlo5w] {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-width: 34px;
    color: #ced4da;
    border: 3px solid #981d68;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 2;
    transition: all 0.3s linear;
    cursor: pointer;
}

.apply .stepper .step.is-completed[b-u548cnlo5w] {
    background-color: #981d68;
    color: #fff;
}

.apply .stepper .step.disabled[b-u548cnlo5w] {
    pointer-events: none;
}

.apply .stepper .step:hover[b-u548cnlo5w] {
    background-color: #b40e71;
    color: #fff
}

.apply .apply-form[b-u548cnlo5w] {
    max-width: 575px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    min-height: 40vh;
    position: relative;
}

.apply .step-box[b-u548cnlo5w] {
    width: 100%;
    display: none;
    margin: 0 0 15px 0;
    transition: all 0.3s linear;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.apply .step-box .form[b-u548cnlo5w] {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.policy[b-u548cnlo5w] {
    color: #981d68;
}

.apply .step-box.is-visible[b-u548cnlo5w] {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.apply .row-wrap[b-u548cnlo5w] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    width: 100%;
}

    .apply .row-wrap-form[b-u548cnlo5w] {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

        .apply .row-wrap-form > div[b-u548cnlo5w] {
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            width: 57%;
        }

.apply .box-heading[b-u548cnlo5w] {
    color: #981d68;
}

.apply .details-table td[b-u548cnlo5w] {
    padding: 8px;
    min-width: 125px;
}

.apply .details-table td.label[b-u548cnlo5w] {
    text-align: right;
}

.apply .details-table td.info[b-u548cnlo5w] {
    color: #981d68;
}

.apply .progress-bar[b-u548cnlo5w] {
    width: 100%;
    max-width: 80%;
    border: 1px solid #616161;
    background-color: #fff;
    height: 25px;
    margin: 30px 0;
    position: relative;
}

.apply .progress-bar .bar[b-u548cnlo5w] {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 15%;
    background-color: #981d68;
}

.apply .step-box.last-step[b-u548cnlo5w] {
    gap: 30px;
}

.apply .contacts[b-u548cnlo5w] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 10px;
}

.apply .contacts a[b-u548cnlo5w] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.apply .row-wrap-form.center-btn[b-u548cnlo5w] {
    display: flex;
    justify-content: center;
}

    .apply .row-wrap-form.center-btn > div[b-u548cnlo5w] {
        width: initial;
    }
/* _content/Creditland.ClientModule/Pages/RegistrationConfirmation.razor.rz.scp.css */
.registration-confirmation-box[b-0b6qt1r505] {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.registration-confirmation-box .contacts[b-0b6qt1r505] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .registration-confirmation-box .contacts .row-wrap[b-0b6qt1r505] {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .registration-confirmation-box .contacts .row-wrap a[b-0b6qt1r505] {
        display: flex;
        align-items: center;
        gap: 5px;
    }
/* _content/Creditland.ClientModule/Pages/RequestDetails.razor.rz.scp.css */
.request-details[b-ln1hv7zap3] {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 30px;
}

    .request-details h2[b-ln1hv7zap3] {
        color: #981d68;
    }

    .request-details .consent[b-ln1hv7zap3] {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    

    .request-details[b-ln1hv7zap3]  .mud-divider {
        border-color: #981d68 !important;
        opacity: 0.5;
        margin: 5px 0;
    }

    .request-details .successful-upload-confirmation-box[b-ln1hv7zap3], .request-details .unsuccessful-upload-confirmation-box[b-ln1hv7zap3] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 5px;
    }

        .request-details .successful-upload-confirmation-box p[b-ln1hv7zap3], .request-details .unsuccessful-upload-confirmation-box p[b-ln1hv7zap3] {
            margin: 0;
            padding: 0;
        }

        .request-details .successful-upload-confirmation-box span[b-ln1hv7zap3] {
            font-weight: bold;
        }

.required-documents[b-ln1hv7zap3] {
    border: 1px solid #981d68 !important;
    border-radius: 5px;
    width: 100%;
    padding: 10px 11px;
    position: relative;
}

    .required-documents:not(:last-child)[b-ln1hv7zap3] {
        margin-bottom: 40px;
    }

    .required-documents .title[b-ln1hv7zap3] {
        position: absolute;
        top: -12px;
        left: 20px;
        background-color: #fff;
        padding: 0 5px;
        font-weight: bold;
    }

    .required-documents .download-all-btn-container[b-ln1hv7zap3] {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .required-documents ul li[b-ln1hv7zap3] {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
    }

        .required-documents ul li div[b-ln1hv7zap3] {
            display: flex;
            align-items: center;
        }

            .required-documents ul li div[b-ln1hv7zap3] > :first-child:not(:only-child), .required-documents ul li div[b-ln1hv7zap3] > :nth-child(even) {
                margin-right: 10px;
            }



.offers-panel[b-ln1hv7zap3] {
    background-color: #fff;
    width: 100%;
    padding: 10px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .offers-panel li[b-ln1hv7zap3] {
        display: flex;
        align-items: center;
        padding: 5px 0;
    }

        .offers-panel li svg[b-ln1hv7zap3] {
            margin-right: 10px;
        }

    .offers-panel a[b-ln1hv7zap3] {
        text-decoration: underline;
        color: #2798f4;
    }

.no-offers[b-ln1hv7zap3] {
    padding: 10px;
    width: 100%;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .offset-panel a:visited[b-ln1hv7zap3] {
        color: #981d68;
    }

.documents-panel[b-ln1hv7zap3] {
    padding: 10px 4px;
    width: 100%;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .documents-panel p[b-ln1hv7zap3] {
        text-align: center;
        font-size: 13px;
        padding-bottom: 10px;
    }

    .documents-panel .upload-documents[b-ln1hv7zap3] {
        padding-bottom: 25px;
    }

    .documents-panel .upload-documents-header[b-ln1hv7zap3] {
        display: flex;
        justify-content: center;
        text-transform: uppercase;
        color: #981d68;
        font-weight: bolder;
    }

    .documents-panel .upload-documents-content[b-ln1hv7zap3] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        background-color: white;
        border: 1px solid #981d68;
        border-top: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 10px 11px;
    }


.details-table[b-ln1hv7zap3] {
    border: 0;
    border-collapse: collapse;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.details-table-border[b-ln1hv7zap3] {
    width: 100%;
    border-spacing: 0;
    border-color: #616161;
}

    .details-table-border tr td:not(:first-child)[b-ln1hv7zap3] {
        border-left: 0;
    }

    .details-table-border tr:not(:first-child) td[b-ln1hv7zap3] {
        border-top: 0;
    }

    .details-table-border tr:last-child td:first-child[b-ln1hv7zap3] {
        border-bottom-left-radius: 10px;
    }

    .details-table-border tr:last-child td:last-child[b-ln1hv7zap3] {
        border-bottom-right-radius: 10px;
    }

    .details-table-border td[b-ln1hv7zap3] {
        border: 1px solid #981d68;
    }

    .details-table tr:nth-child(odd)[b-ln1hv7zap3], .details-table-border tr:nth-child(odd)[b-ln1hv7zap3] {
        background-color: #f4e7e6;
    }

    .details-table tr:nth-child(even)[b-ln1hv7zap3], .details-table-border tr:nth-child(even)[b-ln1hv7zap3] {
        background-color: #fff;
    }

    .details-table td[b-ln1hv7zap3], .details-table-border td[b-ln1hv7zap3] {
        padding: 15px;
        font-size: 18px;
    }

        .details-table td:first-child[b-ln1hv7zap3], .details-table-border td:first-child[b-ln1hv7zap3] {
            font-weight: bold;
        }

@media only screen and (max-width: 1200px ) {
    .required-documents[b-ln1hv7zap3] {
        padding: 10px 7px;
    } 

    .details-table td[b-ln1hv7zap3], .details-table-border td[b-ln1hv7zap3] {
        padding: 5px;
        font-size: 14px;
    }

    .offers-panel[b-ln1hv7zap3] {
        padding: 10px;
    }

    .documents-panel .upload-documents-content[b-ln1hv7zap3] {
        padding: 10px 7px;
    }
}

@media only screen and (max-width: 768px) {
    .required-documents:not(:last-child)[b-ln1hv7zap3] {
        margin-bottom: 15px;
    }
}
