<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ownership-container {
    padding: 2% 4%;
}

.ownership-container-title {
    font-size: 22px;
}

.ownership-container-description {
    font-size: 14px;
    opacity: 0.6;
}

.ownership-container-category-select {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    row-gap: 12px;
    margin-top: 16px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
}

.tile {
    height: 110px;
    width: 120px;
    max-width: 120px;
    position: relative;
}

input[type="radio"] {
    -webkit-appearance: none;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
}

input[type="radio"]:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "â—¯";
    font-size: 16px;
    top: 10px;
    left: 10px;
    color: rgba(0, 0, 0, 0.2);
}

input[type="radio"]:checked {
    border: 3px solid #1E26B4;
}

input[type="radio"]:checked:after {
    font-weight: 900;
    content: "â—";
    font-size: 36px;
    top: -3px;
    left: 6px;
    color: #1E26B4;
}

.checkbox-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 80%;
    width: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    margin-bottom: 6px;
}

.checkbox-label .fas {
    font-size: 60px;
    color: #2c2c51;
}

input[type="radio"]:checked+.checkbox-label .fas {
    animation: grow 0.5s;
}

.checkbox-label h6 {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: black;
}

.ownership-container-category-info {
    font-size: 14px;
}

.ownership-container-category-questions {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.question-box {
    display: flex;
    flex-direction: column;
    /*width: 46%;*/
    padding: 16px 0;
}

.category-questions-label {
    margin-bottom: 6px;
    display: block;
}

.category-questions-input {
    height: 48px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.24);
    background-color: #FBFBFB;
    border-radius: 6px;
    padding-left: 12px;
    padding-right: 10px;
}

.input-select {
    appearance: none;
    background-image: url(/images/categories/icons/icon-select.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 96%;
}

.c-label,
.radio-question-box {
    display: flex;
    flex-direction: row;
}

.radio-question-box {
    position: relative;
    padding: 12px 16px;
    background-color: #ECEEF2;
    border: 1.5px solid #E1E0E3;
    width: max-content;
    border-radius: 6px;
}

.c-label span {
    margin-left: 10px;
}

.cbx {
    appearance: none;
}

.cbx:checked {
    padding-left: 10px;
}

.cbx:checked::after {
    position: absolute;
    left: 16px;
    top: 30%;
    content: 'âœ“';
    font-size: 16px;
    color: #1E26B4;
}


.wrapper {
    width: 430px;
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.05);
}

.wrapper header {
    color: #6990F2;
    font-size: 27px;
    font-weight: 600;
    text-align: center;
}

.wrapper form {
    height: 167px;
    display: flex;
    cursor: pointer;
    margin: 30px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    border: 2px dashed #6990F2;
}

section .row {
    margin-bottom: 10px;
    list-style: none;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .row i {
    color: #6990F2;
    font-size: 30px;
}

section .details span {
    font-size: 14px;
}

.progress-area .row .content {
    width: 100%;
    margin-left: 15px;
}

.progress-area .details {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    justify-content: space-between;
}

.progress-area .content .progress-bar {
    height: 6px;
    width: 100%;
    margin-bottom: 4px;
    background: #fff;
    border-radius: 30px;
}

.content .progress-bar .progress {
    height: 100%;
    width: 0%;
    background: #6990F2;
    border-radius: inherit;
}

.uploaded-area {
    max-height: 232px;
    overflow-y: scroll;
}

.uploaded-area.onprogress {
    max-height: 150px;
}

.uploaded-area::-webkit-scrollbar {
    width: 0px;
}

.uploaded-area .row .content {
    display: flex;
    align-items: center;
}

.uploaded-area .row .details {
    display: flex;
    margin-left: 15px;
    flex-direction: column;
}

.uploaded-area .row .details .size {
    color: #404040;
    font-size: 11px;
}

.uploaded-area i.fa-check {
    font-size: 16px;
}</pre></body></html>