﻿:root, :root .unstyled {
    --header-background-colour: #191919;
    --header-background-colour-rgb: 25, 25, 25;
    --header-border-colour: #f4adb3;
    --header-border-colour-rgb: 244, 173, 179;
    --header-text-colour: #ffffff;
    --header-text-colour-rgb: 255, 255, 255;
    --header-border-width: 4px;
    --header-logo: url(../logos/savantalogo.svg);
}

body {
    font-family: 'Roboto', sans-serif !important;
    color: #26292C;
    font-size: 14px;
}

.body-content {
    margin-bottom: 50px;
}

.container {
    position: relative;
    z-index: 9999;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

.navbar-inverse {
    background-color: var(--header-background-colour);
    z-index: 999999;
    position: relative;
    border-bottom: var(--header-border-width) solid var(--header-border-colour);
    padding: 0;
}

.navbar-nav a { color: var(--header-text-colour); }
.navbar-nav a.dropdown-item, .navbar-nav a.dropdown-item i { color: var(--header-text-colour) }

.navbar-nav a.dropdown-item:hover, .navbar-nav a.dropdown-item:hover i {
    color: var(--header-border-colour);
}

.navbar-nav a.dropdown-item:active, .navbar-nav a.dropdown-item:active i {
    color: #191919;
}

.navbar-brand>img {
    height: 100%;
    width: auto;
}
#navbarNav .company-logo {
    vertical-align: text-bottom;
    background-image: var(--header-logo);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 120px;
    height: 36px;
}

#navbarNav {
    padding: 15px 32px 14px 32px;
    max-width: unset;
    max-height: 64px;
}

#navbarNav a{
    font-size: 16px;
    padding-bottom: 0.2em;
}

.navbar-nav .material-icons {
    color: var(--header-text-colour);
    font-size: 24px;
    padding: 2px;
    margin: 0;
}

.account-buttons {
    display: flex;
}

.help-link {
    display: flex;
    align-items: center;
    padding: 0;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: rgba(var(--header-text-colour-rgb), 0.2);
    margin-right: 0.6rem;
    transition: box-shadow 0.2s ease-in-out;
}

.circular-nav-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 14px;
    color: var(--header-text-colour);
    position: relative;
}

.circular-nav-button:hover {
    cursor: pointer;
}

.circular-nav-button:hover:after {
    filter: brightness(95%);
    box-shadow: 0 0 0 2px var(--header-border-colour);
    transform: scale(0.85);
    opacity: 0.6;
}

.circular-nav-button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--header-border-colour);
    transition: all 0.2s ease-in-out;
}

.circle:hover {
    box-shadow: 0 0 0 4px rgba(245, 174, 179, 0.2);
}

.navbar-nav .material-icons:hover {
    filter: brightness(95%);
    color: var(--header-border-colour);
}

.my-account-dropdown {
    font-size: 14px;
    vertical-align: middle;
}

#navbarDropdownMenuLink {
    display: flex;
    min-width: 150px;
    justify-content: flex-end;
    align-items: center;
    padding: 0 !important;
}

a.d-block {
    align-items: center;
    margin-top: 6px
}

a .material-icons {
    margin-right: 5px;
    font-size: 16px;
    color: var(--blueSteel);
    transition: color 175ms ease;
}

.dropdown-menu {
    background-color: var(--header-background-colour);
    border-radius: 0;
    border: 0;
    box-shadow: 0 1px 10px rgba(0,0,0,.6);
    opacity: 0;
}

.dropdown-menu.show {
    transform: scale(1);
    animation: fadeGrow 225ms cubic-bezier(.18,1.25,.4,1);
    opacity: 1;
}

.dropdown-item:hover {
    background-color: rgba(var(--header-border-colour-rgb), 0.15);
}
.dropdown-item:active {
    background-color: var(--header-border-colour);
}

.text-readonly {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: var(--header-background-colour) !important;
    color: var(--header-text-colour) !important;
    width: 230px;
}

.navbarDropdownMenuLink-menu {
    transform: translateX(-50px) !important;
}

.button-container {
    padding: 0 15px 15px 15px;
}

.button-container .hollow-button {
    margin-right: 15px;
}

.submit-button-container {
    margin: 35px 0 45px 0;
    display: flex;
}

.submit-button-container .primary-button {
    margin-right: 16px;
}

.btn-primary {
    color: rgba(0, 0, 0, 0.9);
    background-color: #f4aeb3;
    border: transparent;
    padding: 5px 20px 7px 20px;
}

    .btn-primary:hover {
        background-color: #E98285;
        border-color: transparent;
        color: rgba(0,0,0,0.9);
    }
    .btn-primary:active {
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    }

    .btn-primary:not(:disabled):not(.disabled):active {
        background: #f4aeb3;
        color: rgba(0,0,0,0.9);
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    }

    .btn-primary:focus, .btn-primary.focus {
        border-color: transparent;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    }

    .btn-primary:not(:disabled):not(.disabled):active:focus {
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    }

    .btn {
        border-radius: 20px;
    }

    .btn:focus {
        box-shadow: none;
    }

    .btn-default {
        padding: 5px 20px 7px 20px;
        background-color: #f0f0f0;
        color: black;
    }

    .btn-default:hover {
        background-color: #cbcbcb;
        color: black;
    }

    .btn-default:active {
        background-color: #f0f0f0;
        box-shadow: 0 0 0 0.2rem #dee2e6ad;
    }

    .btn-danger {
        background-color: #e2585c;
    }

    .btn-danger:hover {
        background-color: #da2d32;
    }

    .btn-danger:active {
        background-color: #e2585c !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    }

    .btn-disabled {
        pointer-events: none;
        background: #F2F2F2;
        border: 1px solid #E0E0E0;
        color: #CCCCCC;
    }

    .btn-pagination {
        background: #ffffff;
        border: 1px solid #cccccc;
        color: #333333;
        border-radius: 0px;
    }

    .btn-pagination:hover {
        background: #f2f2f2;
        color: #333333;
    }

.pagination-buttons {
    display: flex;
    align-items: center;
}

.pagination-text {
    color: #6E7881;
    margin-left: 10px;
}

.search-buttons-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-container {
    display: flex;
}

.search {
    height: 34px;
    padding: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #A0A7AE;
    line-height: 2.5;
    margin-right: 15px;
    transition: all 175ms ease;
}

.search:focus-within {
    border-bottom-color: #1376CD;
    box-shadow: 0 0.3rem 0.15rem -0.15rem #E2F1FD;
}

.search:focus-within .search-icon {
    color: #26292C;
}

.search input {
    height: 24px;
    border: none;
    padding: 0;
    font-size: 14px;
    width: 250px !important;
}

.search input:focus {
    box-shadow: none;
    font-weight: 400;
}

.search-icon {
    font-size: 22px !important;
    color: #6E7881;
    align-self: center;
    cursor: default;
    transition: all 175ms ease;
}

dt, dd { line-height: 2; }

.icon {
  position: relative;
  top: -10px;
}

.alert ul { margin-bottom: 0; }

.logged-out iframe {
  display: none;
  width: 0;
  height: 0;
}
.product-logo {
    margin-top: 50px;
    width: 250px;
}
.product-logo > img {
    width: 100%;
    border-radius: 4px;
}

.dropdown-toggle::after {
    vertical-align: middle;
}
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../lib/MaterialIcons-Regular.woff) format('woff');
}
.material-icons {
    vertical-align: middle;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

.env-banner {
    position: fixed;
    width: 260px;
    height: 60px;
    background: rgba(255,195,75,1);
    top: 40px;
    left: -60px;
    text-align: center;
    font-size: 32px;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    line-height: 60px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12), 0 4px 8px 0 rgba(0, 0, 0, 0.24);
    z-index: 999999;
}

.sort_asc:after {
    font-family: 'Material Icons';
    content: "  arrow_downward";
    vertical-align: middle;
    font-style: normal;
}
.sort_desc:after {
    font-family: 'Material Icons';
    content: "  arrow_upward";
    vertical-align: middle;
    font-style: normal;
}

table th {
    font-weight: normal;
    background-color: #F2F2F2;
    color: #6E7881;
}

table th a {
    color: #6E7881;
}

table th a:hover {
    color: #6E7881;
    text-decoration: underline;
}

table tbody {
    color: #1A1A1A;
    background-color: #FFF;
}

.table tbody a {
    color: #1A1A1A;
}

table .table-actions a {
    color: #1376CD;
}

.table-bordered td, .table-bordered th {
    border: none;
}

.table-bordered thead th {
    border-bottom-width: 1px;
}

.table-bordered tr {
    border: 1px solid #dee2e6;
}

.table-bordered tr:hover {
    background-color: #f5fafe;
    transition: background-color 175ms ease;
}

.assigned-column {
    max-width: 60px;
    text-align: center;
}

.assigned-column input[type="checkbox"] {
   margin-right: 0;
}

.product-checkboxes:not(:last-child) {
    margin-bottom: 5px;
}

.pink {
    color: #CBCFD3;
    margin: 0 3px;
}

.home-btn-container {
    padding: 0 15px;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 24px 0;
}

.page-description {
    color: #6E7881;
    margin-bottom: 24px;
}

.checkbox-description {
    color: #6E7881;
    display: block;
    cursor: default;
}

h2 {
    font-size: 18px;
    font-weight: 400;
}

legend {
    color: #42484D;
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0;
}

.url-link {
    color: #1376CD !important;
}

.products-heading {
    margin-top: 30px;
    margin-bottom: -30px;
}

.form-control {
    font-size: 14px;
}

.form-control:focus {
    border-color: #1376CD;
    box-shadow: 0px 0px 2px 2px rgba(182, 216, 247, 0.56);
}

fieldset label {
    margin-bottom: 0;
}

input[type="checkbox"] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    cursor: pointer;
}

input[type="checkbox"] + label {
    cursor: pointer;
}

.delete-details-container {
    border: 1px solid #dee2e6;
    padding: 14px 20px 0 20px;
    background: #FAFAFA;
    border-radius: 4px;
}

@media (max-width: 1600px) {
    .hide-lt-1600 {
        display: none;
    }
}

@keyframes fadeGrow {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

select.form-control[readOnly] {
    pointer-events: none;
}

.vertical-line {
    border-left: solid 1px #ccc;
}

.product-logo {
    text-decoration: none;
}

.product-logo:hover {
    text-decoration: none;
}

.projects-logo-container{
    width: 250px;
    height: 108.1px;
    background-color: var(--header-background-colour);
    border-bottom: var(--header-border-width) solid var(--header-border-colour);
    font-family: 'Georgia', 'Roboto', sans-serif;
    color: var(--header-text-colour);
    border-radius: 4px;
    position: relative;
    padding-left: 23px;
    padding-top: 31px;
    font-size: 28px;
}

.projects-accent-curve{
    position: absolute;
    top: 0;
    left: 0;
    fill: rgba(var(--header-border-colour-rgb), 0.25);
    border-top-right-radius: 4px;
}

.info-icon {
    margin-left: 5px;
    font-size: 16px;
    color: var(--blueSteel);
}

#colour-picker-parent .clr-field {
    display: block;
}