@font-face {
  font-family: 'Robusta Regular';
    src: local("Robusta Regular"), url("/notice/fonts/356EBC_27_0.woff2") format('woff2'), url("/notice/fonts/356EBC_27_0.woff") format('woff');
  font-display: auto;
}

@font-face {
  font-family: 'Robusta Medium';
    src: local("Robusta Medium"), url("/notice/fonts/356EBC_29_0.woff2") format('woff2');
  font-display: auto;
}

@font-face {
  font-family: 'Robusta Bold';
    src: local("Robusta Bold"), url("/notice/fonts/356EBC_2B_0.woff2") format('woff2'),url("/notice/fonts/356EBC_2B_0.woff") format('woff');
  font-display: auto;
}

:root {
  --font-regular: 'Robusta Regular', sans-serif;
  --font-medium: 'Robusta Medium', sans-serif;
  --font-bold: 'Robusta Bold', sans-serif;
}


* {
    font-family: var(--font-regular);
}

.lined-field {
    border-bottom: 1px solid black;
}

.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 10;
}

.heading {
    display: flex;   
    align-items: center;
    min-height: 64px;
}

.heading h1 {
    font-family: var(--font-bold);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2%;
    color: rgba(0, 0, 0, 1);
}

.heading-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    align-items: flex-end;
}

.heading .heading-date {
    margin-left: auto;
    display: flex;
    align-items: center;

    font-family: var(--font-bold);
    font-size: 16px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
}

.heading .heading-date span {
    color: rgba(1, 33, 105, 1);
    margin-left: 8px;
}

.heading .heading-date img {
    margin-left: 12px;
}

.heading-actual-version {
    
}

.sub-heading {
    display: flex;   
    align-items: center;
    min-height: 40px;
}

.sub-heading h2 {
    font-family: var(--font-bold);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2%;
    color: rgba(1, 33, 105, 1);
}

.sub-heading .print {
    margin-left: auto;
    display: flex;
    align-items: center;

    font-size: 10px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.sub-heading .print img {
    margin-right: 6px;
}

.info-block-container {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    margin: 0 0 10px 0;
}

.info-block-item-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.info-block-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;

    max-width: 220px;

    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.info-block-item b {
    font-family: var(--font-medium);
    color: rgba(52, 64, 84, 1);
    font-weight: 700;
}

@media (max-width: 991px) {
    .heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .heading .heading-date {
        margin-left: 0;
    }

    .info-block-item-container {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .info-block-item-container .info-block-item {
        width: calc(33.333% - 8px);
        max-width: none;
        align-items: flex-start;
        text-align: left;
    }
}

.notice-content-controls {
    display: flex;
    flex-direction: column;

    position: sticky;
    top: 10px;
}

.notice-content-controls-column {
    @media (min-width: 992px) {
        max-width: 320px !important;
    }
}

.notice-content-control {
    display: flex;
    flex-direction: row;
    padding: 6px 20px;
    cursor: pointer;
    background: #F2F4F7;
    border: 1px solid #D0D4DE;
    margin-bottom: 10px;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    text-align: left;

    font-size: 16px;
    font-weight: 700;
}

.notice-content-control .number {
    font-family: var(--font-regular);
    display: flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    background: rgba(29, 41, 57, 1);
    color: white;
    border-radius: 100%;
    font-size: 18px;
    position: relative;
}

.notice-content-control .title {
    font-family: var(--font-medium);
    display: none;
}

@media (min-width: 992px) {
    .notice-content-control .title {
        display: flex;
    }
}

.notice-content-control.active {
    background: rgba(0, 51, 102, 1);
    color: white;
}

.notice-content-control.active .number {
    background-color: white;
    color: rgba(0, 51, 102, 1);
}

.notice-content-control:hover {
    background: rgba(0, 51, 102, 1);
    color: white;
}

.notice-content-control:hover .number {
    background-color: white;
    color: rgba(0, 51, 102, 1);
}


/* *** NOTICE STEPS STYLES *** */

.notice-steps {
    
}

.notice-step {
    border: 1px solid rgba(217, 217, 217, 1);
    border-radius: 4px;
    padding: 16px;
    margin: 0 0 16px 0;
}

.notice-step-header {
    font-family: var(--font-regular);
    color: black;
    font-weight: semibold;
    letter-spacing: -2%;
    font-size: 22px;
}

.notice-step-body {

}

.iub-navigation-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;

    padding: 0;
    margin: 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.2)
}

.iub-navigation-tabs .nav-link {
    text-align: left;
    color: rgba(118, 118, 118, 1);
    font-weight: 400;
    background: none;
    border: none;

    padding: 4px 12px;
}

.iub-navigation-tabs .nav-link.active {
    font-weight: 700;
    color: rgba(48, 48, 48, 1);
}

.iub-nav-lots {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.iub-nav-lots .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.iub-nav-lots .nav-item button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.iub-nav-lots--container {
    display: flex;
    flex-direction: row;
    margin: 0 0 16px 0;
    height: 40px;
}

.iub-nav-lots .nav-link {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    padding: 0;

    font-size: 18px;

    color: white !important;
    background: rgba(149, 149, 149, 1) !important
}

.iub-nav-lots .nav-link.active {
    color: white !important;
    background: rgba(1, 33, 105, 1) !important
}

.all-lots-link {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 200px;
    padding: 0 6px;
}

.lot-number-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.lot-number-list .lot-number {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.lot-number-list .lot-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;

    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    padding: 0;

    font-size: 18px;

    color: white !important;
    background: rgba(149, 149, 149, 1) !important
}

@media print {
    .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .col-9 {
        width: 100% !important;
    }

    .fixed-header {
        position: static;
    }

    .notice-step {
        border: none;
        margin: 0;
        padding: 0;
    }

    .iub-navigation-tabs {
        margin: 0;
        padding: 0;
    }

    .info-block-item-container {
        flex-direction: column;
    }

    .info-block-item-container .info-block-item {
        text-align: left;
        flex-direction: column;
        max-width: 100%;
        align-items: start;
        justify-content: start;
    }

    .notice-step-body .nav,
    .iub-nav-lots--container {
        display: none;
    }

    .notice-step-header {
        margin-top: 8px;
    }

    .notice-step-body .tab-content>.tab-pane,
    .notice-step-body .tab-content.tab-pane {
        display: block !important;
    }
}

.grid-two-columns { 
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.grid-two-columns-customer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 0;
}

.grid-two-columns-customer .macros-field:nth-child(odd) {
    padding-right: 8px;
}

.grid-two-columns-customer .macros-field:nth-child(even) {
    padding-left: 8px;
}

.grid-two-columns-customer .macros-field:last-child {
    border-bottom: 1px solid #D0D4DE;
}

