@font-face {
    font-family: "Manrope";
    src: url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800");
    display: block;
    font-display: swap;
}

::-webkit-scrollbar{
    display: none;
}

.primary-color {
    color: #343456;
}

.secondary-color {
    color: #DA9B21;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    background-color: #F6F6F7;
    overflow: hidden;
}

button,
a,
p {
    outline: none;
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
    text-decoration: none;
}

.content-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    flex: 1;
}

.header-container {
    padding: 1em;
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.header-container-image {
    height: 50px;
}

.sidebar-container {
    width: 12%;
    border-right: 1px solid #e1e1e1;
    padding: 1em 0em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.sidebar-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 1em;
    cursor: pointer;
    color: #000000;
}

.sidebar-item:hover {
    background-color: #F1F2F3;
}

.sidebar-svg-icon {
    fill: #343456;
    width: 20px;
    height: 20px;
}

.btn {
    padding: 0.75em 1em;
    width: fit-content;
    border-radius: 4px;
    color: black;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    white-space: nowrap;
}

.primary-btn {
    background-color: #003b6e;
    color: white;
}

.white-bg {
    background-color: #ffffff;
}

.danger-btn {
    border: 1px solid #d82c0d;
    color: #d82c0d;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px white inset;
}

.product-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: scroll;
    padding: 1em 1.5em;
}

.heading-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -.03em;
    color: #201254;
    margin: 0.5em 0;
}

.product-content {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e5ea;
    margin-top: 0.5em;
    box-shadow: 0 0 0.3125rem #1718180d, 0 0.0625rem 0.125rem #00000026;

    overflow: scroll;
    max-height: 60vh;
    padding-bottom: 2em;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75em 1em;
    gap: 1em;
    border-bottom: 1px solid #e5e5ea;
    font-size: 14px;
    font-weight: 650;
    color: #64607D;
    background-color: white;
}

.product-list {
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 1em;
    gap: 1em;
    border-top: 1px solid #e5e5ea;
    cursor: pointer;
    background-color: white;
    color: black;
}

.product-thumbnail-header {
    flex: 1;
}

.category-thumbnail-header {
    flex: 2;
}

.category-thumbnail {
    flex: 2;
    font: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.category-thumbnail>img {
    max-width: 100%;
    max-height: 4em;
}

.product-thumbnail {
    flex: 1;
    font: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 3em;
}

.product-thumbnail>img {
    max-width: 100%;
    max-height: 3em;
}

.info-small {
    flex: 2;
    font: inherit;
}

.info-medium {
    flex: 4;
    font: inherit;
}

.row-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5em;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-between {
    justify-content: space-between !important;
}

.column-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}

.info-large {
    flex: 8;
    font: inherit;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 2px solid #efefef;
    text-align: left;
    padding: 10px;
    text-align: center;
}

th {
    font-weight: 700;
    color: black;
    background-color: white;
}

td {
    font-size: 14px;
}

tr:nth-child(odd) {
    background-color: #e1e1e1;
}