@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
html {
    min-height: 100%;
    font-size: 62.5%;
    font-family: 'Fira Sans', Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

body {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 60px 0 0 50px;
    min-height: calc(100% - 60px);
    width: calc(100% - 50px);
    background-color: #e2e2e2
}

:root {
    --primary-blue: #1A70F0;
    --primary-purple: #ba4bae;
    --dark-bg: #242424;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #464545;
    --light-text: #8c8c8c;
    --white: #ffffff;
    --light-bg: #f0f0f0
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.header-logo {
    display: flex;
    align-items: center
}

.header-logo svg {
    height: 30px;
    fill: #fff
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.header-right .header-title {
    color: #999;
    font-size: 14px
}

.header-right nav {
    display: flex;
    gap: 30px;
    align-items: center
}

.header-right nav a {
    color: #999;
    text-decoration: none;
    font-size: 14px
}

.navbar-scrollable {
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 50px;
    background-color: var(--dark-secondary);
    overflow: hidden;
    transition: width .3s ease;
    z-index: 999
}

.navbar-scrollable.expanded {
    width: 250px
}

.navbar-item {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #ccc;
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    text-decoration: none
}

.navbar-item:hover {
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
    transform: translateX(5px)
}

.navbar-item.active {
    background-color: rgba(26, 112, 240, .1);
    color: var(--primary-blue)
}

.navbar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-blue)
}

.universe-logo {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0
}

.navbar-item-name {
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s ease
}

.navbar-scrollable.expanded .navbar-item-name {
    opacity: 1
}

.navbar-divider {
    border: none;
    border-top: 1px solid #464545;
    margin: 20px 0
}

.container {
    padding: 20px;
    min-height: calc(100vh - 60px)
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    transition: all .25s ease
}

.content:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.list-container {
    background-color: #fff;
    margin-top: 0
}

.btn {
    padding: 10px 20px;
    background-color: var(--light-bg);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s cubic-bezier(.6, 0, .195, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border: 1px solid #999
}

.btn:hover {
    background-color: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white)
}

.btn-primary:hover {
    background-color: #1560d0
}

.btn-next {
    background-color: #1a70f0;
    color: #fff;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px
}

.btn-new {
    background-color: #1a70f0;
    color: #fff;
    padding: 10px 24px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none
}

.btn-new:hover {
    background-color: #1560d0;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .3)
}

.rfp-form {
    padding: 30px
}

.form-group {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    transition: all .25s cubic-bezier(.6, 0, .195, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.form-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.form-actions {
    display: flex;
    justify-content: flex-end
}

input[type=email],
input[type=password],
input[type=text],
select,
textarea {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .25s ease;
    background-color: #fff !important;
    border: none !important;
    border-bottom: 2px solid #ccc !important;
    color: #242424 !important;
    padding: 12px 0 8px 0 !important;
    outline: 0
}

textarea {
    resize: vertical;
    min-height: 80px
}

input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-bottom-color: var(--primary-blue) !important
}

label {
    display: block;
    margin-bottom: 8px;
    color: #616161;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px
}

.progress-info {
    text-align: center;
    margin-bottom: 20px;
    color: #8c8c8c;
    font-size: 14px
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-blue);
    transition: width .5s ease
}

.form-page-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: calc(100vh - 200px);
    background-color: var(--white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
    transition: all .25s cubic-bezier(.6, 0, .195, 1)
}

.form-page-layout:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
}

.form-page-layout .left-panel {
    background-size: cover;
    background-position: center;
    position: relative
}

.form-bg-forhonor {
    background-image: url(../images_to_use/ForHonor_Virtuosa.jpg)
}

.left-panel .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 112, 240, .8), rgba(68, 20, 109, .9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px
}

.left-panel .panel-content {
    text-align: center;
    color: #fff
}

.left-panel .panel-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff
}

.left-panel .panel-content p {
    font-size: 18px;
    opacity: .9
}

.form-page-layout .right-panel {
    background-color: #f5f5f5;
    overflow-y: auto
}

.hero-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 60px
}

.hero-bg-crew {
    background-image: url(../images_to_use/2.webp)
}

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7));
    display: flex;
    align-items: flex-end;
    padding: 40px
}

.hero-banner .hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #fff
}

.hero-banner .hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff
}

.hero-banner .hero-content p {
    font-size: 16px;
    opacity: .9
}

.detail-container {
    background-color: #fff;
    margin-top: 0
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px
}

.breadcrumb a {
    color: #1a70f0;
    text-decoration: none
}

.breadcrumb span {
    color: #999
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px
}

.submission-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #242424;
    margin: 0
}

.submission-header p {
    color: #616161;
    font-size: 14px;
    margin-top: 5px
}

.tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0
}

.tabs a {
    padding: 15px 0;
    color: #242424;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative
}

.tabs .active-tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #1a70f0
}

.attachments-section,
.details-section,
.reasons-section {
    margin-bottom: 40px
}

.attachments-section h3,
.comments-section h3,
.details-section h3,
.reasons-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 20px
}

.details-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px
}

.details-grid .grid-label {
    color: #616161;
    font-weight: 500
}

.details-grid .grid-value {
    color: #242424
}

.reason-box {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px
}

.reason-box h4 {
    color: #1a70f0;
    font-weight: 600;
    margin-bottom: 10px
}

.reason-box p {
    color: #464545;
    line-height: 1.6
}

.attachment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f5f5f5;
    cursor: pointer
}

.attachment-item .file-icon {
    font-size: 24px;
    color: #dc3545
}

.attachment-item .file-name {
    flex: 1;
    color: #242424
}

.attachment-item .download-icon {
    color: #1a70f0
}

.comments-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f5f5f5
}

.comment-avatar {
    width: 40px;
    height: 40px;
    background-color: #1a70f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600
}

.comment .comment-author {
    font-weight: 600;
    color: #242424;
    margin-bottom: 5px
}

.comment .comment-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px
}

.comment .comment-text {
    color: #464545;
    line-height: 1.6
}

.filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center
}

.filter-group label {
    color: #616161;
    font-size: 14px
}

.filter-group input,
.filter-group select {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 8px 15px
}

.filter-group input {
    width: 200px
}

.rfp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px
}

.rfp-table th {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #242424;
    font-size: 14px;
    border-bottom: 2px solid #e0e0e0
}

.rfp-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #464545;
    font-size: 14px
}

.rfp-table tr {
    transition: background-color .25s ease;
    cursor: pointer
}

.rfp-table tr:hover {
    background-color: #f9f9f9
}

.submission-id {
    color: #1a70f0;
    font-weight: 600;
    text-decoration: none
}

.submission-id:hover {
    text-decoration: underline
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3px
}

.status-badge i {
    font-size: 10px
}

.status-submitted {
    background-color: #e3f2fd;
    color: #1976d2
}

.status-review {
    background-color: #fff3e0;
    color: #f57c00
}

.status-approved {
    background-color: #e8f5e9;
    color: #388e3c
}

.status-rejected {
    background-color: #ffebee;
    color: #d32f2f
}

.site-footer {
    background-color: #2d2d2d;
    padding: 40px;
    color: #fff;
    font-size: 12px
}

.site-footer .footer-logo-container {
    margin-bottom: 20px
}

.site-footer .footer-logo {
    width: 150px;
    height: auto;
    fill: #464545
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px
}

.site-footer .footer-links a {
    color: #919191;
    text-decoration: underline;
    font-size: 12px;
    text-transform: uppercase
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: #999;
    font-size: 11px
}

.powered-by img {
    height: 20px;
    opacity: .6
}

@media (max-width:1024px) {
    .container {
        padding: 15px
    }

    .content {
        padding: 30px
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .details-grid {
        grid-template-columns: 150px 1fr;
        gap: 15px
    }
}

@media (max-width:768px) {
    html {
        font-size: 55%
    }

    body {
        margin: 60px 0 0 0;
        width: 100%;
        font-size: 14px;
        font-size: 1.4rem
    }

    .navbar-scrollable {
        display: none
    }

    .form-page-layout {
        grid-template-columns: 1fr;
        height: auto
    }

    .left-panel {
        height: 200px
    }

    .header {
        padding: 0 15px
    }

    .header-right nav {
        gap: 15px
    }

    .content {
        padding: 20px
    }

    .hero-banner {
        height: 200px
    }

    .hero-banner .hero-content h1 {
        font-size: 28px
    }

    .rfp-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 15px
    }

    .filter-group {
        flex-direction: column
    }

    .filter-group input {
        width: 100%
    }

    .tabs {
        gap: 15px;
        overflow-x: auto
    }

    .site-footer {
        padding: 30px 20px
    }

    .site-footer .footer-links {
        flex-direction: column;
        gap: 10px
    }
}

@media (max-width:480px) {
    html {
        font-size: 50%
    }

    body {
        font-size: 12px;
        font-size: 1.2rem
    }

    .header {
        height: 50px
    }

    .header-logo svg {
        height: 24px
    }

    .header-right {
        gap: 10px
    }

    .header-right nav a {
        font-size: 12px
    }

    .container {
        padding: 10px
    }

    .content {
        padding: 15px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .1)
    }

    h1 {
        font-size: 24px
    }

    h2 {
        font-size: 20px
    }

    h3 {
        font-size: 18px
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px
    }

    .btn-next {
        padding: 10px 30px
    }

    .form-group {
        padding: 10px;
        margin-bottom: 10px
    }

    input[type=email],
    input[type=password],
    input[type=text],
    select,
    textarea {
        font-size: 12px;
        padding: 10px 0 6px 0 !important
    }

    label {
        font-size: 11px;
        margin-bottom: 6px
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .details-grid .grid-label {
        font-weight: 600;
        margin-bottom: 5px
    }

    .rfp-table td,
    .rfp-table th {
        padding: 10px;
        font-size: 12px
    }

    .status-badge {
        font-size: 10px;
        padding: 3px 8px
    }

    .comment {
        padding: 15px;
        gap: 10px
    }

    .comment-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px
    }

    .hero-banner {
        height: 150px;
        margin-top: 50px
    }

    .hero-banner .overlay {
        padding: 20px
    }

    .hero-banner .hero-content h1 {
        font-size: 22px;
        margin-bottom: 5px
    }

    .hero-banner .hero-content p {
        font-size: 14px
    }

    .submission-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .submission-header h2 {
        font-size: 20px
    }

    .tabs {
        gap: 10px;
        font-size: 14px
    }

    .tabs a {
        padding: 10px 0;
        font-size: 14px
    }

    .site-footer {
        padding: 20px 15px;
        font-size: 11px
    }

    .site-footer .footer-logo {
        width: 120px
    }

    .powered-by {
        font-size: 10px;
        margin-top: 20px
    }

    .powered-by img {
        height: 16px
    }
}

@media (max-width:320px) {
    html {
        font-size: 45%
    }

    .container {
        padding: 5px
    }

    .content {
        padding: 10px
    }

    .btn {
        padding: 6px 12px;
        font-size: 11px
    }

    .header-right nav {
        display: none
    }
}

@media print {

    .btn,
    .header,
    .navbar-scrollable,
    .site-footer,
    .tabs {
        display: none !important
    }

    body {
        margin: 0;
        width: 100%;
        background-color: #fff
    }

    .content {
        box-shadow: none;
        padding: 20px
    }

    .hero-banner {
        height: auto;
        background: 0 0
    }

    .hero-banner .overlay {
        position: static;
        background: 0 0
    }

    .hero-banner .hero-content {
        color: #000
    }

    .hero-banner .hero-content h1 {
        color: #000
    }
}

@media (max-width:768px) {
    .login-container {
        width: 90%;
        padding: 30px;
        margin: 20px
    }

    h1 {
        font-size: 20px
    }

    .footer {
        padding: 8px
    }

    .footer a {
        font-size: 11px;
        margin: 0 8px
    }
}

@media (max-width:480px) {
    .login-container {
        width: 95%;
        padding: 20px
    }

    h1 {
        font-size: 18px
    }

    .account-option {
        padding: 12px
    }

    .account-icon {
        width: 40px;
        height: 40px
    }

    .account-email {
        font-size: 14px
    }
}