﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 400 !important;
    letter-spacing: 0.01em;
    line-height: 1.71;
    color: #000;
    background-color: #F3F4F5;
    overflow: hidden;
    overflow-x: auto;
}

/*app-bar*/
header {
    background-color: #ffffff;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1000;
    height: 60px;
    overflow: hidden;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    color: rgba(0,0,0,.9);
}

.header-title {
    font-family: 'Barlow';
    font-weight: 500;
    font-size: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    line-height: 1;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 8px;
    letter-spacing: 0px;
}

.header-trademark {
    font-family: 'Barlow';
    font-size: 12px;
    vertical-align: 72%;
}

/*app-bar - end*/

.mainContainer {
    display: flex;
    /* Misc */
    border: 1px solid #cbd5e0;
    height: 16rem;
    width: 100%;
    height: calc(100% - 125px);
    width: 67.5%;
    position: fixed;
    z-index: 1;
    top: 64px;
    width: 100%;
}

.container_left {
    width: 35%;
    display: flex;
    z-index: 1;
    overflow-x: hidden;
    background-color: #fff;
}

.resizer {
    background-color: #dfe3e6;
    cursor: ew-resize;
    height: 100%;
    width: 4px;
}

.resizer:hover {
    background-color: #d2d6d9 !important;
}

.container_right {
    flex: 1;
    display: flex;
    width: 63%;
    position: relative;
    z-index: 1;
    top: 0px;
    overflow-x: hidden;
}

.transparent{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.resizing {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-container {
    width: 100%;
    position: relative;
    height: calc(100% - 61px);
    overflow: hidden;
}

#productsView {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

#table-container {
    height: calc(100% - 52px);
}

.top {
    top: 0;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.centered iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#products {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin-left: 1px;
}

#products tr {
    color: #000;
    background-color: #fff;
    cursor: pointer;
}

#products tr:hover {
    background-color: rgba(77, 94, 224, 0.08) !important;
}

#products td {
    border: none;
    height: 48px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
}

#products tr td:nth-child(2) {
    padding-right: 1rem;
    width: 15%;
}

a {
    color: #000;
    opacity: 0.9;
}

a:hover {
    color: #4D5EE0;
    opacity: 0.9;
    text-decoration: none;
}

.nav-item-li-selected {
    background-color: rgba(77, 94, 224, 0.12) !important;
    border-left: 4px solid #4d5ee0 !important;
    color: rgba(0,0,0,0.9);
}

#openNew {
    cursor: pointer;
    float: right;
    padding-right: 20px;
}

.menu-link {
    background-color: #FFF;
    color: #0446a6;
    font-size: 16px;
    height: 52px;
    left: 0;
    margin-top: 2px;
    cursor: pointer;
    width: 35%;
    position: absolute;
    bottom: 0px;
    z-index: 1;
    border-right: 1px solid #dfe3e6;
}

.main-menu-link {
    justify-content: space-between;
    margin-left: 1.6rem;
    margin-top: 1.31rem;
    margin-bottom: 0.43rem;
    color: rgba(0,0,0,.6);
    float: left;
    font-family: Roboto,sans-serif;
    transition: opacity 15ms linear,background-color 15ms linear;
    transition-duration: 0.4s;
    font-size: .625rem !important;
    letter-spacing: .0892857143em;
    color: rgba(0,0,0,.6);
}

.collapse-icon, .expand-icon {
    height: 1.5rem;
    width: 1.5rem;
    background-image: url('../css/images/collapse.svg');
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: 15px;
    margin-bottom: 6px;
    margin-right: 34px;
    cursor: pointer;
    color: rgba(0,0,0,.6) !important;
    transition: transform 0.2s ease-in-out;
    position: absolute;
    right: 8px;
}

.expand-icon {
    background-image: url('../css/images/expand.svg') !important;
}

.main-menu-link:hover {
    color: #4D5EE0 !important;
}

.menu-link:hover {
    background-color: rgba(77, 94, 224, 0.08) !important;
}

.collapse-icon:hover {
    background-image: url('../css/images/collapse-blue.svg') !important;
}

.expand-icon:hover {
    background-image: url('../css/images/expand-blue.svg') !important;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    text-align: center;
}
/* load Barlow and Robots fonts per ADS */
/* vietnamese */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Barlow Regular'), local('Barlow-Regular');
    src: url('fonts/Barlow/Barlow-Regular.eot');
    src: url('fonts/Barlow/Barlow-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Barlow/Barlow-Regular.woff') format('woff'), url('fonts/Barlow/Barlow-Regular.woff2') format('woff2'), url('fonts/Barlow/Barlow-Regular.ttf') format('truetype');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Barlow Regular'), local('Barlow-Regular');
    src: url('fonts/Barlow/Barlow-Regular.eot');
    src: url('fonts/Barlow/Barlow-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Barlow/Barlow-Regular.woff') format('woff'), url('fonts/Barlow/Barlow-Regular.woff2') format('woff2'), url('fonts/Barlow/Barlow-Regular.ttf') format('truetype');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Barlow Regular'), local('Barlow-Regular');
    src: url('fonts/Barlow/Barlow-Regular.eot');
    src: url('fonts/Barlow/Barlow-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Barlow/Barlow-Regular.woff') format('woff'), url('fonts/Barlow/Barlow-Regular.woff2') format('woff2'), url('fonts/Barlow/Barlow-Regular.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Barlow Medium'), local('Barlow-Medium');
    src: url('fonts/Barlow/Barlow-Medium.eot');
    src: url('fonts/Barlow/Barlow-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Barlow/Barlow-Medium.woff') format('woff'), url('fonts/Barlow/Barlow-Medium.woff2') format('woff2'), url('fonts/Barlow/Barlow-Medium.ttf') format('truetype');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Barlow Medium'), local('Barlow-Medium');
    src: url('fonts/Barlow/Barlow-Medium.eot');
    src: url('fonts/Barlow/Barlow-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Barlow/Barlow-Medium.woff') format('woff'), url('fonts/Barlow/Barlow-Medium.woff2') format('woff2'), url('fonts/Barlow/Barlow-Medium.ttf') format('truetype');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Barlow Medium'), local('Barlow-Medium');
    src: url('fonts/Barlow/Barlow-Medium.eot');
    src: url('fonts/Barlow/Barlow-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Barlow/Barlow-Medium.woff') format('woff'), url('fonts/Barlow/Barlow-Medium.woff2') format('woff2'), url('fonts/Barlow/Barlow-Medium.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ROBOTO */
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular');
    src: url('fonts/Roboto/Roboto-Regular.eot');
    src: url('fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Regular.woff') format('woff'), url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium');
    src: url('fonts/Roboto/Roboto-Medium.eot');
    src: url('fonts/Roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Roboto/Roboto-Medium.woff') format('woff'), url('fonts/Roboto/Roboto-Medium.woff2') format('woff2'), url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
