<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: linear-gradient(to right, #f0f4f8, #e0f2ff);
}

.cursor-pointer {
    cursor: pointer;
}

.text-muted2 {
    color: darkgray;
}

#pre-platform {
    min-height: 500px;
    padding: 15px 13rem;

    .role-card {
        height: 100%;
        padding: 18px;
        cursor: pointer;
        position: relative;
        border-radius: 20px;
        background-color: #fff;
        transition: all 0.3s ease;
        border: 1px solid rgb(187, 203, 217);
    }

    .role-card:hover {
        border-color: transparent;
        box-shadow: rgb(0, 102, 189) 0px 0px 0px 2px;
    }

    .role-card input[type="radio"] {
        position: absolute;
        top: 20px;
        right: 15px;
        margin: 0;
        width: 25px;
        height: 25px;
        cursor: pointer;
    }

    h6 {
        color: #333;
    }

    .icon {
        color: darkgray;
        font-size: 20px;
        margin-bottom: 10px;
        display: block;
    }

    .section-panel {
        display: none;
        transform: translateY(50px);
        transition: all 0.4s ease-in-out;
        position: relative;
        width: 100%;
        opacity: 0;
    }

    .section-panel.active {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }

    .back-btn {
        cursor: pointer;
        color: #007bff;
        font-weight: 600;
        margin-bottom: 20px;
        display: inline-block;
    }

    .hidden {
        display: none !important;
    }

    #employee {
        .dropdown-container {
            width: 500px;
            margin-top: 1rem;
            position: relative;
        }

        #issuer-search {
            width: 100%;
            padding: 10px;
            border-radius: 4px;
            box-sizing: border-box;
            border: 3px solid var(--ce-main-color);

            &amp;:focus-visible {
                outline: none;
            }
        }

        .dropdown-list {
            width: 100%;
            z-index: 100;
            display: none;
            overflow-y: auto;
            max-height: 300px;
            position: absolute;
            background: #fff;
            border: 1px solid var(--ce-main-color);
        }

        .dropdown-item {
            display: flex;
            cursor: pointer;
            padding: 12px;
            align-items: center;
            color: var(--ce-main-color);
            border-bottom: 1px solid #eee;
        }

        .dropdown-item:hover {
            background: darkgray;
            color: var(--ce-main-color);
        }

        .dropdown-item img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            object-fit: contain;
        }

        .success-banner {
            gap: 8px;
            padding: 16px;
            display: flex;
            color: #017757;
            border-radius: 16px;
            flex-direction: column;
            background-color: rgb(248, 251, 253);
            border: 1px solid rgb(37, 150, 109);
        }

        .card {
            background: #fff;
            margin-top: 20px;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }
        #continueBtn{
            display: none;
        }
        .g-4 .col-md-6{
            margin-top: 0;
        }
        .input-group .form-control,
        .form-control,
        .form-select {
            background-color: #F8FBFD;
            border: 1px solid #cfd8dc;
            border-radius: 8px;
            height: 48px;
            font-size: 16px;
        }

        .input-group-text {
            background-color: #F8FBFD;
            border: 1px solid #cfd8dc;
            border-left: none;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            color: #5a5a5a;
            font-size: 12px;
            height: 48px;
            padding: 0 16px;
        }

        .input-group .form-control {
            border-right: none;
            border-radius: 8px 0 0 8px;
            padding: 0 16px;
        }

        .input-group .form-control {
            outline: none;
            box-shadow: none;
        }

        label.form-label {
            margin-bottom: 6px;
            font-weight: 600;
            color: #2c3e50;
        }

        small.text-muted {
            display: block;
            margin-top: 6px;
            font-size: 13px;
        }

        hr {
            border-top: 1px solid darkgray;
            margin: 16px 0;
        }


        #companyList .dropdown-item img {
            height: 30px;
            margin-right: 10px;
            vertical-align: middle;
        }

        #companyList {
            position: absolute;
            z-index: 1000;
            width: 100%;
        }

        .dropdown-menu {
            background-color: #fff;
        }

        #companySearchInput {
            width: 100%;
            padding-left: 80px;
            background-size: 60px 25px;
            background-repeat: no-repeat;
            background-position: 6px center;
        }

        .selectedOption,
        .selectedOption span {
            font-size: 24px;
            color: #017757;
            font-weight: 600;
        }
        .search-input-container {
            position: relative;
            display: inline-block;
            width: 50%;
        }
        .search-clear-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #6c757d;
            display: none;
        }
        .search-clear-icon:hover {
            color: #dc3545;
        }
    }
    #investor{
        #investorForm{
            width: 50%;
        }
        .form-control,.form-select{
            border-color: rgb(187, 203, 217);
            background-color: rgb(248, 251, 253);
            padding: 8px 12px;
            color: rgb(75, 101, 121);
            min-height: 42px;
        }
    }
    .role-card p.small{
        font-family: sans-serif;
    }
}
/* pre-platform ends */
@media screen and (max-width: 768px) {
    #pre-platform {
        padding: 0 !important;
    }
    .other_than_home {
        padding-top: 0;
    }
    .wrapper {
        padding: 0 5px!important;
    }
    .role-card {
        margin-bottom: 0px;
        padding: 15px!important;
    }
    .section-panel {
        width: 100%;
    }
    #main-panel{
        margin: 1rem auto 2rem auto;
    }
    #main-panel .text-center.mb-4{
        margin-bottom: 10px!important;
    }
    .boxes{
        .col-md-6.col-lg-6{
            margin-top: 10px!important;
        }        
    }
    h6 {
        font-size: 14px;
    }
    .role-card p.small{
        font-size: 12px;        
    }
    .basic-info{
        h4{
            font-size: 14px;
        }
        h2{
            font-size: 16px;
        }
    }
    .section-panel{
        padding: 15px;

        h3{
            font-size: 14px;
        }
    }
    #pre-platform {
        &amp; #employee {
            .search-input-container {
                width: 100%;
            }
            .selectedOption, .selectedOption span {
                font-size: 14px;
            }
            .card{
                padding: 15px 5px 25px 5px!important;
            }
            .g-4 .col-md-6{
                margin-top: 10px!important;
            }
        }
    }
    #warningModal{
        .modal-body.p-4{
            padding: 15px!important;

            .d-flex{
                flex-direction: column-reverse;

                .btn-primary{
                    width: 100%!important;
                }
                .btn-outline-secondary{
                    border: 0;
                }
            }
        }
        h5.modal-title.mb-3{
            font-size: 14px;
        }
    }
}</pre></body></html>