html, body {
    font-family: 'Roboto', sans-serif;
    background-color: #E9F0F5;
}

body {
    font-size: 14px;
}

hr {
    max-width: 100%;
}

.page-pad {
    padding: 40px 0;
}

.table-scroll table.table-full {
    width: 100%;
}

.reveal button.close-button {
    color: rgb(10,10,10);
    font-size: 35px;
    font-weight: bold;
}

#logo {
    height: 40px;
}

#dasboard-search {
    padding-left: 0;
}

#dash-left-nav {
    height: 100%;
    width: 250px;
    position: fixed;
    font-size: 12px;
    top: 0;
    bottom: 0;
    z-index: 1001;
    background-color: #3C4455;
    transition: all .3s;
    overflow-x: visible;
    overflow-y: hidden;
    color: #A6AFBC;
    margin-left: -250px;
    transition: all .3s;
}

#dash-left-nav.active {
    margin-left: 0;
}

#dash-left-nav .fa:hover {
    cursor: pointer;
    color: #F2B225;
}

#dash-date {
    height: 61px;
    padding: 10px 5px;
    border-bottom: 1px solid #4E5765;

    display: flex;
    align-items: center;
    justify-content: center;
}

#date-changer {
    padding: 6px 5px;
    border-bottom: 1px solid #4E5765;
}

#date-changer .fa {
    padding: 0 6px;
}

.reveal {
    border-radius: 20px;
    overflow: visible !important;
}

#dash-date .cell {
    flex: 1;
}

#dash-date .fa {
    padding: 0 8px;
}

#dash-content {
    margin-left: 250px;
    transition: .3s all;
    margin-bottom: 25px;
}

#dash-content.sidebar-hidden {
    margin-left: 0;
}

#nav-pad {
    padding: calc(48.69px + .46875rem);
}

.search-bars {
    border-radius: 20px;
}

#dashboard-search-form {
    max-width: 800px;
}

.icon-inside {
    cursor: pointer;
    margin-left: -50px;
    background: none;
    border: none;
}

table thead {
    font-family: 'Roboto', sans-serif;
    background: #fefefe;
    color: #333333;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #c1c1c1;
    border-top: 1px solid #c1c1c1;
}

.logged-in-pad {
    padding: 10.5px 0;
}

a {
    color: #f2b225;
}

a:active, a:hover {
    color: #636b6f;
    outline-width: 0;
}

h2.title {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 3rem;
}

.listing-box {
    height: 250px;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    margin-bottom: 1rem;
    display: flex;
}

.listing-box:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #333333;
    opacity: 0.25;
    z-index: 1;
    transition: opacity .5s ease;
}

.listing-box:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #333333;
    opacity: 0.75;
    z-index: 1;
    transition: opacity 1s ease;
}

.listing-box-content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: #FFF;
    background: rgba(0,0,0,.5);
}

.listing-box h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: calc(50% - 25%);
    transition: margin-top 1s ease;
    max-width: 425px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

.listing-box:hover h2 {
    margin-top: 0rem;
    transition: margin-top 1s ease;
}

p.listing-box-cta {
    font-family: 'Roboto', sans-serif;
    opacity: 0;
    padding: 0.5rem 1rem;
    transition: opacity .5s ease;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #f2b225;
    border: 1px solid #f2b225;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.listing-box:hover p.listing-box-cta {
    opacity: 1;
    transition: opacity .5s ease;
    display: block;
    height: 40px;
}

.top-bar {
    margin-bottom: 20px;
}

#logo-link {
    padding: 0;
}

.top-bar, .top-bar ul {
    background-color: white;
}

.button[disabled].primary {
    opacity: .50;
}

.listing.button {
    background-color: #f2b225;
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.listing.button:hover, .listing.button:active  {
    background-color: #eaa100;
}

/* -------------------
--     Nav Style    --
------------------- */
#dash-header {
    position: fixed;
    top: 0;
    /* left: 0; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    transition: all 0.3s;
    height: auto;
    z-index: 1000;
    background: #fefefe;
    box-shadow: 0px -5px 18px 0px #333333;
    padding-left: 250px;
}

#dash-header.sidebar-hidden {
    padding-left: 0;
}

.sub-nav {
    top: 62px;
    background: #4E5765;
    width: 100%;
    z-index: 999;
}

.sub-nav a {
    color: #8894A9;
    transition: all 0.5s ease-in-out;
    font-weight: bold;
}

.sub-nav a.is-active, .sub-nav a:hover  {
    color: #f2b225;
}

#history-dropdown,
#inventory-dropdown {
    width: auto;
}

.no-header-pad {
    padding: 0;
}

.shrink-large .nav {
    padding-left: 80px;
}

.mobile {
    color: #fefefe
}

.menu-link {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
}

a .menu-link:hover {
    border:none;
    color: #9bce6e;
}

.dropdown.menu>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
}

/* -- Responsive Nav -- */
@media only screen and (min-width: 985px) {
    .mobile {
        display: none;
    }
}

@media only screen and (max-width: 985px) {
    .desktop {
        display: none;
    }
}
/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #282c33;
}

/* Overlay closing cross */
.overlay .overlay-close {
    position: absolute;
    right: 15px;
    top: 0.25rem;
    overflow: hidden;
    border: none;
    color: #9bce6e;
    outline: none;
    z-index: 5001;
    font-size: 2rem;
    padding: 1rem;
    margin-right: 0.9375rem;
}

/* Menu style */
.overlay nav {
    position: relative;
    top: 40%;
    height: 55%;
    font-size: 2.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
}

.overlay ul li {
    display: block;
    padding: 0 0 1.5rem;
}

.overlay ul li a {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
    color: #aab1c1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    line-height: 1;
    text-align: center;
}

.overlay ul li a.phone {
    color: #fefefe;
    font-size: 2rem;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #9bce6e;
}

.overlay ul li a.phone:hover,
.overlay ul li a.phone:focus {
    color: #fefefe;
}

/* Effects */
.overlay-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: 5000;
}

.overlay-hugeinc nav {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.overlay-hugeinc nav ul {
    opacity: 0.4;
    -webkit-transform: translateY(-25%) rotateX(35deg);
    transform: translateY(-25%) rotateX(35deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    width: 100%;
}

.overlay-hugeinc.close nav ul {
    -webkit-transform: translateY(25%) rotateX(-35deg);
    transform: translateY(25%) rotateX(-35deg);
}

#trigger-overlay {
    color: #333333;
    padding: 1rem;
}

.card-divider {
    position: relative;
}

.menu .button.options-button {
    padding: .4rem .7rem;
}

.button.primary {
    background-color: #f2b225;
    color: #ffffff;
    border: solid 1px #f2b225;
    padding: 8px 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.primary:hover {
    background-color: #ffc74b;
    color: #2f3848;
    box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.1);
}

.button.secondary {
    border: solid 1px #5E6576;
    background-color: #676f81;
    border-radius: 5px;
    font-weight: bold;
    padding: 8px 18px;
    color: #ffffff;
}

.button.secondary:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.1);
}

.button.alert {
    border: solid 1px #a53b2a;
    border-radius: 5px;
    font-weight: bold;
    padding: 8px 18px;
}

.button.inverted {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    text-transform: none;
    color: #2F3848;
    background-color: transparent;
    border: solid 1px #2F3848;
    border-radius: 5px;
    padding: 8px 18px;
    cursor: pointer;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.inverted:hover {
    color: #fefefe;
    background-color: #3c4454;
    box-shadow: 0 0 8px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.36);
}

.button.inverted.active {
    color: #fefefe;
    background-color: #3c4454;
}

.button.inverted2 {
    color: #676f81;
    background-color: #FFFFFF;
    border: solid 1px #676f81;
    border-radius: 5px;
    padding: 8px 18px;
    font-weight: bold;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.inverted2:hover {
    color: #fefefe;
    background-color: #676f81;
    box-shadow: 0 0 8px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.36);
}

.button.inverted3 {
    color: #ffffff;
    background-color: #3C4455;
    border: solid 1px #ffffff;
    border-radius: 5px;
    padding: 8px 18px;
    font-weight: bold;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.inverted3:hover {
    color: #fefefe;
    background-color: #676f81;
    box-shadow: 0 0 8px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.36);
}

.button[disabled].primary {
    background-color: #f2b225;
}

.button[disabled].primary:hover {
    background-color: #f2b225;
}

.listing-thumbnail {
    position: relative;
    margin: 8px;
    width: 100%;
    border: 1px solid black;
}

.listing-image-primary {
    height: 350px;
}

.listing-image, .listing-video {
    height: 200px;
}

.preformatted {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.cell-breadcrumbs {
    padding: 0 0 .625rem;
}

.cell-breadcrumbs .breadcrumbs {
    margin: 0;
}

.listing-filters {
    padding: 14px;
}

.listing-divider {
    border-bottom: 1px solid #eee;
}

.listing-label {
    color: #fefefe;
    font-weight: 900;
    font-size: 16px;
}

h5.listing-label {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
    padding-bottom: 2px;
}

.listing-items {
    padding-left: 20px;
}

.sort-spec {
    cursor: move;
}

.delete-spec {
    cursor: pointer;
    margin-left: 10px;
}

.spec-options {
    margin-right: .9375rem;
}

.listing-machine-count {
    position: absolute;
    top: 5px;
    right: 0;
    color: #707070;
    font-size: 12px;
}

.listing-image-random {
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

pre.small {
    font-size: small;
}

.fieldset legend {
    padding: 3px 5px;
    border-radius: 2px;
    background-color: rgba(242, 178, 37, 0.5);
    border-bottom: 2px solid rgb(242, 178, 37);
}

[data-click]:hover tr {
    background-color: #f9f9f9;
}

[data-click] {
    cursor: pointer;
}

table tbody .machine-img-box {
    /* padding: 0rem 0rem 0rem;
     padding: 2px;*/
}

.company-page .machine-img {
    width: 100%;
    max-width: 120px;
    height: 55px;
    display: block;
}

.company-logo.company-pg {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.profile-image-preview {
    position: relative;
}

.profile-image-preview img {
    display: block;
    height: 100px;
    max-width: 190px;
}

.company-logo-preview {
    display: inline-block;
    max-height: 100px;
    margin-bottom: 10px;
}

.company-user-roles-table select {
    margin-bottom: 0;
}

.company-invite-table div.button {
    margin-bottom: 0;
}

.small-text {
    font-size: smaller;
}

.medium-text{
    font-size: medium;
}

.extra-small-text {
    font-size: x-small;
}

.green {
    color: green;
}

.assigned-lead {
    background-color: rgba(0, 255, 0, 0.1) !important;
}

.add-video-url-button {
    margin-bottom: 0;
}

#edit-listing.reveal .button.alert, #new-listing .button.alert, #new-machine-auction .button.alert, #edit-machine-auction .button.alert {
    margin-top: 13px;
}

.reveal textarea {
    height: 150px;
}

.menu-active {
    background-color: rgba(242, 178, 37, 0.2);
    border-bottom: 2px solid rgb(242, 178, 37);
}

.ms-drop input[type="checkbox"], .ms-drop input[type="radio"] {
    margin: 0 5px 0 0;
}

.ms-drop.bottom label {
    color: rgb(10,10,10);
}

.ms-parent {
    margin: 0 0 1rem;
}

.ms-parent button {
    height: 2.4375rem;
    border-radius: 0;
}

.ms-parent button div {
    height: 2.4375rem;
    margin-top: 0.3rem;
}

.ms-parent span {
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem;
}

.ui-autocomplete {
    z-index: 1006;
}

.no-autocomplete-results {
    padding: 10px 0;
    background-color: rgba(255, 0, 0, 0.2);
}

.ui-text {
    margin-top: -5px;
    padding: 2px 1em 5px 2em !important;
}

#loading {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#loading-body {
    z-index: 999999;
    color: rgb(242, 178, 37);
    font-size: 40px;
    font-weight: 900;
    position: relative;
    top: 50%;
    text-align: center;
}

.display-inline {
    display: inline-block;
}

.display-inline a {
    text-align: left;
}

.logged-in-header {
    font-weight: bold;
    background-color: black;
    color: white;
}

.log-header {
    display: inline-block;
    font-weight: 900;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.02);
    color: rgb(242, 178, 37);
    border-bottom: 2px solid rgb(242, 178, 37);
    padding: 3px 5px;
}

#loading-spinner {
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.import-listing-button {
    color: white !important;
    padding: 50px;
    font-size: large;
    font-weight: 900;
    border: 2px solid #000000;
    border-right: 4px solid #000000;
    border-left: 4px solid #000000;
}

.download-warning-listings-button {
    margin-top: -5px;
}

.td-sortable:hover {
    color: #f2b225;
    cursor: pointer;
}

.td-sortable::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f0dc";
}

.td-sortable:hover::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f0dc";
}

.td-sorted {
    color: #f2b225;
}

.td-sorted::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f0dc";
}

/* --- JD Style Updates --- */
#listings-body, .dashboard-body {
    background: #E9F0F5;
}

#listing-button-group a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

#listing-button-group .button {
    background-color: #0A0A0B;
    color: #fefefe;
    transition: all 0.15s ease-out;
}

#listing-button-group .button:hover, #listing-button-group .button:focus, #listing-button-group .button:active {
    background-color: #f2b225;
    color: #0A0A0B;
    transition: all 0.5s ease-out;
}

#listing-button-group .button.alert {
    background-color: #cc4b37;
    color: #fefefe;
    transition: all 0.15s ease-out;
}

#listing-button-group .button.alert:focus, #listing-button-group  .button.alert:hover {
    background-color: #a53b2a;
    color: #fefefe;
}

.dashboard-body table.hover thead tr:hover {
    background-color: inherit;
}

table.hover thead tr:hover {
    background-color: #333333;
}

table tfoot td, table tfoot th, table thead td, table thead th {
    font-size: 12px;
}

table.unstriped tbody tr {
    border-bottom: 1px solid #d4d4d4;
}

#listings-body table a {
    color: #101010;
    font-weight: 900;
    text-decoration: underline;
}

.status-public {
    cursor: pointer;
    color: #3adb76;
    transition: all .3s;
}

.status-public:hover {
    color: #cc4b37;
}

.status-unlisted {
    cursor: pointer;
    color: #cc4b37;
    transition: all .3s;
}

.status-unlisted:hover {
    color: #3adb76;
}

.aggregate-group {
    margin-bottom: 0;
}

.aggregate-group .input-group-label {
    background-color: #0A0A0B;
    color: #fefefe;
}

i[data-open="contact-todo-item"] {
    cursor: pointer;
    color: #f2b225;
}

i[data-open="contact-todo-item"]:hover {
    color: #636b6f;
    outline-width: 0;
}

.mhub-calendar-square {
    position: relative;
    width: 14.2%;
    height: 100px;
    white-space: nowrap;
    vertical-align: top;
    padding: 0 2px;
}

.mhub-date {
    color: #3C4455;
    font-size: 12px;
    text-align: center;
    pointer-events: none;
    padding: 3px 0;
}

.mhub-calendar-square.today .mhub-date .cal-day-number {
    color: #ffffff;
    background-color: #5580E0;
    border-radius: 10px;
    padding: 3px;
}

#mhub-todo-table {
    table-layout: fixed;
}

#mhub-todo-table thead {
    border-bottom: 0;
}

#mhub-todo-table thead tr td {
    border-bottom: 0;
    padding-bottom: 0;
}

#mhub-todo-table tbody tr:first-child td{
    border-top: 0;
}

#mhub-todo-table thead td {
    color: #A6AFBC;
    text-align: center;
}

#mhub-todo-table td {
    border: 1px solid #A6AFBC;
}


#mhub-todo-table .label {
    transition: background-color .3s;
}

.calendar-label-hover {
    background-color: #eeeeee !important;
}

.no-margin {
    margin: 0;
}

.listing-header {
    color: #888888;
}

.showcase-image {
    display: block;
    height: 200px;
    margin: 5px auto;
    border: 1px solid #f2b225;
}

.preview-image {
    display: inline-block;
    width: 100px;
    margin: 5px;
    border: 1px solid #f2b225;
}

.prospect-divider {
    border-bottom: 1px dotted rgba(0,0,0,0.5);
    margin: 10px 0;
}

.deal-cell {
    position: relative;
    display: inline-block;
    width: 350px;
    padding: 10px;
    border: 1px solid black;
    background-color: #eeeeee;
    margin: 10px;
}

.status-change-button {
    padding: 5px 3px;
    cursor: pointer;
}

.status-change-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.status-change-button:hover::before {
    content: "→ ";
}

.deals-content {
    background-color: #888888;
}

.th-button {
    margin: 0;
    padding: 3px 5px;
}

.reveal .maintenance-row .button {
    font-size: .8571em;
}

.calendar-header tr th {
    background-color: #d2d2d2;
}

#calendar {
    margin-bottom: 0;
    position: relative;
}

.calendar-day {
    height: 60px;
    position: relative;
    cursor: pointer;
}

.calendar-day:hover {
    background-color: #e6e6e6;
}

.calendar-day-today {
    border-bottom: 3px solid rgb(242, 178, 37);
}

.day-number {
    position: absolute;
    top: .2rem;
    left: .5rem;
    opacity: 0.5;
    font-size: smaller;
}

.event-count {
    pointer-events: none;
    font-weight: bold;
    border-radius: 2px;
}

#calendar td.selected {
    background-color: rgba(0, 255, 0, 0.1);
}

.pointer {
    cursor: pointer;
}

.introjs-bullets a.active {
    box-shadow: none;
}

.introjs-helperNumberLayer {
    background: #f2b225;
    background: -webkit-linear-gradient(top,#f2b225 0,#c1870b 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f2b225),color-stop(100%,#c1870b));
    background: -moz-linear-gradient(top,#f2b225 0,#c1870b 100%);
    background: -ms-linear-gradient(top,#f2b225 0,#c1870b 100%);
    background: -o-linear-gradient(top,#f2b225 0,#c1870b 100%);
    background: linear-gradient(to bottom,#f2b225 0,#c1870b 100%);
}

.introjs-donebutton, .introjs-donebutton:active, .introjs-donebutton:focus {
    background-color: rgb(252, 238, 207);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fceecf), to(#f9dd9f));
    background-image: -moz-linear-gradient(#fceecf, #f9dd9f);
    background-image: -o-linear-gradient(#fceecf, #f9dd9f);
    background-image: linear-gradient(#fceecf, #f9dd9f);
}

.expand-deal-button {
    margin-top: 10px;
}

.deal-cell .deal-card-content div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-sub-menu {
    font-weight: 400;
    color: #f2b225;
}

.cog-button {
    padding: 0;
}

.cog-menu {
    padding: .75rem 1rem !important;
}

.cog-menu::after {
    content: none !important;
}

.cog-button li.is-submenu-item {
    text-align: left !important;
}

#test-j {
    width: 200px;
    margin: 20px auto;
    position: relative;
}

#test-j:before {
    position: absolute;
    left: -50px;
    opacity: 0.3;
    content: attr(data-step);
    background-color: yellow;
    color: black;
    border-radius: 2px;
    display: inline-block;
    padding: 2px 1px;
    border: 1px solid black;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.options-column a {
    text-decoration: none !important;
}

.listing-autocomplete-label, .contact-autocomplete-label {
    position: relative;
}

.listing-string-name, .contact-string-name {
    pointer-events: none;
    position: absolute;
    left: 5px;
    top: 33px;
    max-width: 98%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400;
    color: rgb(10,10,10);
}

.search-prospects, .search-deals {
    height: 40px;
    margin-bottom: 5px;
}

.search-prospects input, .search-deals input {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.search-prospects .input-group-label, .search-deals .input-group-label {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.global-search-container {
    float: right;
}

.search-global {
    margin-bottom: 0;
}

.global-selector [type=radio] {
    margin: 0 0 0.25rem;
}

.search-prospects input, .search-deals input {
    padding: 3px 5px;
}

.listing-title {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    margin-bottom: 12px;
    text-decoration: underline;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listing-title:hover {
    color: #F2B225;
}

.listing-container {
    padding: 5px 25px;
    position: relative;
}

.listing-container a {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.listing-title-label, .contact-title-label {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
    cursor: pointer;
}

.listing-title-label:hover, .listing-title-label.active, .contact-title-label:hover, .contact-title-label.active {
    background-color: rgba(242, 178, 37, 0.2);
}

.listing-title-label input, .contact-title-label input {
    margin: 0;
    height: 20px;
    width: 20px;
    padding: 0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    *overflow: hidden;
}

.listing-header-2 {
    font-size: 14px;
    color: #A6AFBC;
    font-weight: bold;
}

.listing-row {
    border: 1px solid #A6AFBC;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.listing-row:hover .listing-internal-id,
.contact-row:hover .listing-internal-id {
    opacity: 0.8;
}

.listing-id-container {
    position: relative;
}

.listing-internal-id {
    font-size: smaller;
    opacity: 0.0;
    position: absolute;
    bottom: 0;
    right: 1px;
    transition: all .3s;
}

/* DASHBOARD */
.app-dashboard {
    /*height: 100vh;*/
    /*display: -webkit-flex;*/
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    /*-webkit-flex-direction: column;*/
    /*-ms-flex-direction: column;*/
    /*flex-direction: column;*/
}

.app-dashboard-body {
    padding-top: 98px;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.app-dashboard-top-nav-bar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #2c3840;
    height: 55px;
    width: 100%;
    -webkit-flex: 0 0 55px;
    -ms-flex: 0 0 55px;
    flex: 0 0 55px;
}

.app-dashboard-top-nav-bar .menu-icon {
    vertical-align: text-bottom;
}

.app-dashboard-logo {
    color: #fefefe;
    text-transform: uppercase;
    font-weight: bold;
}

.app-dashboard-search-bar-container {
    position: relative;
}

.app-dashboard-search {
    background: #41525e;
    border: 0;
    margin-bottom: 0;
    color: #fefefe;
}

.app-dashboard-search:active, .app-dashboard-search:focus {
    background: #222b31;
}

.app-dashboard-search-icon {
    position: absolute;
    color: #fefefe;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app-dashboard-top-bar-actions {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.app-dashboard-top-bar-actions button {
    margin-bottom: 0;
    margin-right: 2rem;
}

.app-dashboard-top-bar-actions button.hollow {
    border-color: #fefefe;
    color: #fefefe;
}

.app-dashboard-top-bar-actions button.hollow:hover {
    background: #fefefe;
    color: #1779ba;
}

.app-dashboard-top-bar-actions .fa-info-circle {
    color: #fefefe;
    font-size: 1.5rem;
}

.app-dashboard-sidebar {
    background-color: #2F3848;
    height: 100%;
    overflow-x: visible;
    overflow-y: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    position: fixed;
}

.app-dashboard-sidebar a {
    font-size: x-large;
    display: flex;
    align-content: center;
    color: #8894A9;
    transition: all 300ms ease-in;
}

.app-dashboard-sidebar a:hover {
    color: #f2b225;
    background: #3c4454;
}

#close-sidebar a, #open-sidebar a {
    color: white;
}

.app-dashboard-sidebar .app-dashboard-open-sidebar, .app-dashboard-sidebar .app-dashboard-close-sidebar {
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem 0.5rem;
    background: #4e5765;
    height: 62px;
}

.app-dashboard-sidebar .app-dashboard-open-sidebar a, .app-dashboard-sidebar .app-dashboard-close-sidebar a {
    color: #2f3848;
}


.app-dashboard-sidebar .app-dashboard-sidebar-close-button {
    font-size: 14px;
}

.app-dashboard-sidebar .app-dashboard-sidebar-inner {
    position: relative;
    height: 100%;
}

.app-dashboard-sidebar .app-dashboard-sidebar-inner .menu > li > a {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.app-dashboard-sidebar .app-dashboard-sidebar-inner .menu > li > a.is-active {
    color: #f2b225;
}

.app-dashboard-sidebar .fa.large {
    font-size: 1.5rem;
    width: 40px;
}

.reveal-for-medium .app-dashboard-open-sidebar {
    display: none;
}

.app-dashboard-sidebar-footer {
    background: rgba(42, 57, 79, 0.8);
    bottom: 0;
    left: 0;
    padding: 1rem;
    position: absolute;
    width: 100%;
}

.app-dashboard-open-sidebar {
    text-align: center;
}

.app-dashboard-body-content {
    transition: all 0.5s ease;
    overflow-y: auto;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    padding: 20px;
    background-color: #E9F0F5;
}

.position-left.is-transition-push {
    box-shadow: none;
}

.app-dashboard-sidebar-text {
    padding-left: 10px;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .app-dashboard.shrink-medium .app-dashboard-close-sidebar, .app-dashboard.shrink-medium .app-dashboard-sidebar-text {
    }
    .app-dashboard.shrink-medium .app-dashboard-open-sidebar {
        display: block;
    }
    .app-dashboard.shrink-medium .app-dashboard-sidebar {
        width: 80px;
    }
    .app-dashboard.shrink-medium .app-dashboard-sidebar .fa.large {
        width: auto;
    }
    .app-dashboard.shrink-medium .off-canvas-content {
        margin-left: 80px;
        width: calc(100% - 80px);
    }
    .app-dashboard.shrink-medium .navigation {
        margin-top: 2rem;
        text-align: center;
    }
    .app-dashboard.shrink-medium .menu.vertical > li > a {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .app-dashboard.shrink-medium .menu li::after {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    .app-dashboard.shrink-medium .menu li a {
        padding: 0.75rem;
    }
    .app-dashboard.shrink-medium .menu li a svg {
        margin: 0;
    }
    .app-dashboard.shrink-medium .menu li a span {
        transition: opacity 0.5s ease-in-out;
    }
}

@media print, screen and (min-width: 64em) {

    .app-dashboard.shrink-large .app-dashboard-close-sidebar {
        display: none;
    }
    .app-dashboard.shrink-large .app-dashboard-open-sidebar {
        display: block;
    }
    .app-dashboard.shrink-large .app-dashboard-sidebar {
        width: 80px;
    }
    .app-dashboard.shrink-large .app-dashboard-sidebar .fa.large {
        width: auto;
    }
    .app-dashboard.shrink-large .off-canvas-content {
        margin-left: 80px;
        width: calc(100% - 80px);
    }

    .app-dashboard.shrink-large .navigation {
        margin-top: 2rem;
        text-align: center;
    }
    .app-dashboard.shrink-large .menu.vertical > li > a {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .app-dashboard.shrink-large .menu li::after {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    .app-dashboard.shrink-large .app-dashboard-sidebar .menu li a {
        padding: 0.75rem;
    }
    .app-dashboard.shrink-large .app-dashboard-sidebar .menu li a svg {
        margin: 0;
    }
    .app-dashboard.shrink-large .app-dashboard-sidebar .menu li a span {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
}

/* TABLE */
table.unstriped tbody {
    background-color: #fefefe;
}

table.unstriped tbody tr {
    border-bottom: 1px solid #d4d4d4;
}

table thead, table tbody, table tfoot {
    border: none;
    background-color: #fefefe;
}

table thead {
    border-bottom: 2px solid #d4d4d4;
}

.listing-header {
    color: #888888;
}

/* BUTTON */
.button.primary {
    background-color: #f2b225;
}

.button {
    border-width: 2px;
    font-weight: 400;
    font-size: .8571em;
    line-height: 1.35em;
    border: none;
    border-radius: .1875rem;
    padding: 11px 22px;
    cursor: pointer;
    background-color: #888;
    color: #fefefe;
    transition: all 0.5s ease-out;
}

/* CALLOUT */

.callout {
    border: 0;
    border-radius: .55rem;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.callout.success {
    background-color: #46904d;
    color: #fefefe;
}

.callout.warning {
    background-color: #676f81;
    color: #fefefe;
}

.callout.alert {
    background-color: #cc4b37;
    color: #fefefe;
}

.callout p {
    margin-bottom: 0;
}

.close-button {
    position: absolute;
    color: #fefefe;
    cursor: pointer;
}

/* BORDERLESS TABS */
.tabs.borderless {
    border: none;
}

.borderless .tabs-title > a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #2f3848;
    border-radius: 2rem;
    border: 1px solid #2f3848;
    transition: all 0.5s ease-out;
}

.borderless .tabs-title {
    float: left;
    margin-right: 8px;
}

.borderless .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
    background: #2f3848;
    color: #fefefe;
    transition: all 0.5s ease-out;
}

.tabs-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.tabs-content.borderless {
    border: none;
}

.borderless .tabs-panel {
    padding: 0;
}

/* CARDS */

.card {
    background: #fefefe;
    margin-bottom: 30px;
    transition: .5s;
    border: 0;
    border-radius: .55rem;
    position: relative;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    padding: 1.5rem 1.5rem;
    overflow: unset;
}

/* AGENDA */

.agenda-list {
    padding-left: 0;
    list-style: none;
    margin-left: 0;
}

.agenda-list li {
    padding: 11px 15px;
    border-radius: .1875rem;
    border: 1px solid #eee;
    margin: 4px 0;
    position: relative;
}

.agenda-item.upcoming {
    border-left: 4px solid #eee;
}

.agenda-item.late {
    border-left: 4px solid red;
}

.agenda-item.today {
    border-left: 4px solid #1779ba;
}

.agenda-item p {
    margin-bottom: 0;
}

.agenda-list li:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* CALENDAR */

thead.calendar {
    background: #2f3848;
    color: #fefefe;
    border-bottom: none;
}

.calendar-container {
    padding: 0 0;

}

/* LEADS */

.leads-list {
    padding-left: 0;
    list-style: none;
    margin-left: 0;
    position: absolute;
}

.leads-list li {
    padding: 11px 15px;
    border-radius: 4px;
    margin-bottom: 5px;
    border: 1px solid #A6AFBC;
    opacity: 0.65;
    transition: all 0.2s ease-in;
}

.leads-list li:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1;
}

.leads-list li.active {
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.08);
}

.leads-item {
    position: relative;
}

.leads-item p {
    margin-bottom: 0;
}

.lead-time {
    opacity: 0.65;
    font-size: 0.85rem;
}

.lead-actions {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 11px 15px;
    display: flex;
    align-items: center;
}

.lead-actions .button {
    margin-bottom: 0;
    margin-right: 15px;
}

.leads-card, .deals-card {
    padding: 9px 15px;
    border-radius: 4px;
    border: 1px solid #A6AFBC;
    /* margin: 4px 0; */
    overflow: auto;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.1); */
}

div#app-dashboard-sidebar {
}

h1.section-title {
    font-size: 1.25rem;
    margin-bottom: 0px;
}

.small-text {
    font-size: 0.75rem;
    opacity: 0.75;
}

.button-group {
    margin-bottom: 0;
}

.button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    letter-spacing: 0;
}

.card.leads {
    max-height: 745px;
}

.leads-list-container {
    overflow: auto;
    position: relative;
}

.leads-list-container ul {
    margin-bottom: 0;
}

/* BORDERLESS TABS */
.tabs.borderless {
    border: none;
    margin-bottom: 20px;
}

.borderless .tabs-title > a {
    display: block;
    padding: 5px 18px;
    font-size: 0.75rem;
    line-height: 1;
    color: #2f3848;
    border-radius: 2rem;
    border: 1px solid #2f3848;
    transition: all 0.5s ease-out;
}

.deals-tab.is-active a, .prospects-tab.is-active a {
    background-color: #3C4455;
    color: #F2B225 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.deals-tab:hover a, .prospects-tab:hover a {
    color: #ffffff !important;
    background-color: #3C4455;
}

.borderless .tabs-title {
    float: left;
    margin-right: 8px;
}

.borderless .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
    background: #2f3848;
    color: #fefefe;
    transition: all 0.5s ease-out;
}

.tabs-content.borderless {
    border: none;
}

.borderless .tabs-panel {
    padding: 0;
}

.reveal.inline-pdf {
    padding: 0;
    min-height: 800px;
}

.reveal.inline-pdf iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
}

#deals-switch .switch-paddle {
    width: 120px;
}

#deals-switch input:checked~.switch-paddle::after {
    left: 90px;
}

#deals-switch .switch-inactive {
    right: 4px;
}

.hidden, .deal-row-hidden, .lead-row-hidden {
    display: none;
}

#search-switch {
    margin: 0 10px 0 0;
    border-radius: 20px;
    width: 120px;
    background-color: #f2b225;
    color: #3C4455;
    font-weight: bold;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2860, 68, 85%29'></polygon></svg>");
}

#search-switch option {
    background-color: #ffffff;
    color: #3C4455;
    cursor: pointer;
}

fieldset {
    background-color: #fefefe;
}

.prospect-name {
    font-weight: bold;
}

#lead-filter-select {
    height: 2rem;
    padding-top: .2rem;
}

.calendar-body td {
    padding: 0;
}

.label.primary {
    background: #f2b324;
    color: #fefefe;
    border-radius: 1rem;
}
.label.danger{
    background: #E23A3A;
    border-radius: 1rem;
}
.label.success{
    border-radius: 1rem;
}

.label.primary.needs-action {
    background: #E23A3A;
}

.action-count, .deal-count {
    font-weight: bold;
}

.action-count.needs-action {
    color: #E23A3A;
}

.action-count:before, .deal-count:before {
    content: "(";
}

.action-count:after, .deal-count:after {
    content: ")";
}

.tabs-content {
    border: none;
}


/* FRONTEND */

.frontend .hero, .header {
    background: url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
}

.hero, .header {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
}

.header {
    min-height: 175px;
}

.machine-floor-bg {
    background: url(../images/machine-floor.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.login-pad {
    padding-top: 40px;
}

.hero:before, .header:before, .machine-floor-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero:after, .header:after, .machine-floor-bg:after, .machine-floor-bg:after {
    background-color: rgba(254, 254, 254, 0.5);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.frontend .hero:after, .frontend .header:after, .machine-floor-bg:after {
    background-color: rgba(47, 56, 72, 0.85);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 3;
}

.hero-height {
    height: 500px;
}

.header-height {
    height: 175px;
}

.front-end h1 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 600;
    font-size: 1.75rem;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.hero-search-filter-form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #fefefe;
    padding: 25px;
    border-radius: 0;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .1s;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.hero-search-filter-form [type=text] {
    margin: 0;
}

.hero-search-filter-form label {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
    color: #8a8a8a;
    font-weight: bold;
}

.hero-search-filter-form .button {
    background-color: #333333;
    color: #fefefe;
    margin: 0 0 0 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0;
    padding: 8px 30px;
}

@media screen and (max-width: 39.9375em) {
    .hero-search-filter-form {
        width: 100%;
    }
}

@media only screen and (max-width: 585px) {

    .hero-search-filter-form {
        display: block;
    }

    .hero-search-filter-form .button {
        width: 100%;
        margin: 12px 0 0 0;
    }
}

.front-end h2 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.front-end .top-pad {
    padding-top: 75px;
}

.front-end .bottom-pad {
    padding-bottom: 150px;
}

.front-end .small-pad {
    padding: 75px 0;
}

.front-end .normal-pad {
    padding: 150px 0;
}

h3.recent-post {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 1.1rem;
    text-decoration: none;
    margin-bottom: 0;
}

p.posting-timestamp {
    font-size: 0.75rem;
    color: #333333;
    opacity: 0.75;
}

.recent-posting {
    transition: all 0.25s ease-in;
    margin-top: 0;
    background: #fefefe;
    padding: 15px;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.2);
}
.recent-posting h3 {
    padding-top: 15px;
}

.recent-posting:hover {
    margin-top: 10px;
}

.selling {
    background-image: url(../images/logos.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.selling:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.selling:before {
    background: -webkit-radial-gradient(at bottom left, rgba(47, 56, 72, 0.5), rgba(47, 56, 72, 0.75), rgba(47, 56, 72, 1));
    background: radial-gradient(at bottom left, rgba(47, 56, 72, 0.9), rgba(47, 56, 72, 0.98), rgba(47, 56, 72, 1));
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.selling .content {
    position: relative;
    z-index: 3;
}

.front-end .white-text {
    color: #fefefe;
}

.export-icon {
    color: #fefefe;
}

.mhub-screen {
    position: relative;
    width: 70vw;
    overflow-x: hidden;
    margin-left: -30vw;
    z-index: 10;
    transition: all 0.5s ease-in;
    box-shadow: 0 35px 55px rgba(0,0,0,0.15), 0 25px 63px rgba(0,0,0,0.15);
}

@media only screen and (max-width: 1023px) {
    .mhub-screen {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.mhub-screen img {
    width: 100%;
}


.front-end h3 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 0;
}

.ims {
    overflow: hidden;
}

.ims-perks svg {
    width: 36px;
    height: 36px;
    color: #f2b226;
}

.ims-perks h3 {
    font-family: 'Roboto', sans-serif;
    color: #2f3848;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer {
    background: #E9F0F5;
}

.stage-dropdown-pane {
    padding: 5px;
}

.footer p {
    margin-bottom: 0;
}

.front-end .menu a {
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2f3848;
    text-transform: uppercase;
}

.front-end .menu a:hover {
    color: #f2b324;
}

.machine-listing-autocomplete, .contact-autocomplete {
    text-align: right;
    color: rgba(0,0,0,0.0);
}

.force-text-left {
    text-align: left;
    color: rgba(0,0,0,1.0);
}

input.machine-listing-autocomplete[data-current-id=""], input.contact-autocomplete[data-current-id=""] {
    text-align: left;
}

.string-name-right {
    left: unset;
    right: 5px;
}

#no-deals-card, #no-leads-card, #no-specs-for-chosen-machine-type, #no-prospects-for-stage, #no-deals-for-stage {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid #d4d4d4;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.6);
}

#task-archive {
    height: 30px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #F2B225;
    color: #4E5765;
    text-align: center;
    font-weight: bold;
    line-height: 30px;
}

.today .day-week {
    color: rgba(255, 255, 255, 0.8);
    margin: 1em 0 2em;
}

.today .day-num {
    font-size: 8em;
}

#side-calendar-container {
    position: absolute;
    z-index: 1002;
    box-shadow: 0px 5px 18px 0px #333333;
    transition: .3s all;
}

#side-calendar-container.inactive {
    display: none;
}

.side-calendar {
    width: 100%;
    background: #FFFFFF;
    padding: 5px;
}

.side-calendar .month .fas:hover {
    cursor: pointer;
    color: #f2b324;
}

.side-calendar ul {
    list-style-type: none;
    margin: 0;
}

.side-calendar ul li {
    text-align: center;
}

.side-calendar .month {
    color: #3C4455;
    font-weight: 700;
    margin-bottom: 5px;
}

.side-calendar .weekday {
    color: #A6AFBC;
    font-weight: 700;
    font-size: 10px;
}

.side-calendar .day {
    font-size: 0.8em;
    font-weight: 700;
    color: #8894a9;
    cursor: pointer;
}

.side-calendar .weekday, .side-calendar .day {
    display: inline-block;
    width: 12%;
    padding: 0.25em 1%;
    line-height: 1.5em;
    vertical-align: middle;
    font-size: 10px;
}

.side-calendar .day {
    font-weight: 500;
    font-size: 12px;
    color: #3C4455;
}

.side-calendar .day:hover {
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.side-calendar .weekday.now:before, .side-calendar .day span.selected {
    border-radius: 100%;
    background-color: #f2b324;
    padding: 3px 5px;
    font-weight: bold;
}

.side-calendar .weekday.now:before, .side-calendar .day span.now {
    border-radius: 100%;
    background-color: #A6AFBC;
    padding: 3px 5px;
    font-weight: bold;
}

.mute {
    color: rgba(136, 148, 169, 0.4);
}

@media (max-width: 38em) {
    .container {
        max-width: 100%;
    }

    .today, .side-calendar {
        width: 75%;
        float: none;
        margin: 0 auto;
        min-height: 0;
    }

    .side-calendar .weekday, .side-calendar .day {
        display: none;
    }
}

.button.small {
    font-size: 11px;
}

.profile-photo-container {
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 25px;
    border: 2px solid #2f3848;
    display: inline-block;
    line-height: 33px;
    font-weight: bold;
    text-align: center;
    background-size: cover;
}

.profile-photo-container.drop {
    width: 50px;
    height: 50px;
    line-height: 47px;
}

.btn-search svg {
    margin-bottom: -8px;
}

button.button.account {
    background-color: transparent;
    color: #2f3848;
    align-items: center;
    margin-bottom: 0;
    margin: 11px 10px;
    padding: 0;
}

button.button.account svg {
    padding-bottom: 5px;
}

button.button.add {
    background-color: transparent;
    color: #2f3848;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin: 11px 10px;
    padding: 0;
}

.calendar-link{
    background-color: transparent;
    color: #2f3848 !important;
}

.search-container {
    display: none;
    padding-left: 250px;
    width: 100%;
    background-color: rgb(34, 41, 51);
    box-shadow: 0px -5px 18px 0px #333333;
    position: fixed;
    z-index: 999;
}

.shrink-large .search-container {
    padding-left: 80px;
}

form.s {
    color: #fefefe;
    padding: 1.5rem 1.5rem;
    width: 100%;
}

form.s fieldset {
    background-color: transparent;
}

form.s label {
    color: #fefefe;
}

a.btn-search {
    color: #2f3848;
}

a.profile-settings {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d4d4d4;
}

.profile-text {
    padding-left: 7px;
}

.dropdown-pane {
    position: absolute;
    z-index: 10;
    width: 250px;
    padding: 0;
    visibility: hidden;
    display: none;
    border: 1px solid #cacaca;
    border-radius: 10px;
    background-color: #fefefe;
    font-size: 1rem;
}

.dropdown-pane:before {
    content: '';
    position: absolute;
    top: -21px;
    right: 20px;
    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #cacaca;
}

.dropdown-pane:after {
    content: '';
    position: absolute;
    top: -18px;
    right: 20px;
    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #fefefe;
}

.dropdown-pane.top:before {
    border-top: 10px solid #cacaca;
    border-bottom: 10px solid transparent;
    top: auto;
    bottom: -21px;
}

.dropdown-pane.top:after {
    border-top: 10px solid #fefefe;
    border-bottom: 10px solid transparent;
    top: auto;
    bottom: -18px;
}

#main-header-menu, .dropdown-pane .vertical.menu {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 10px;
}

#main-header-menu li a i {
    width: 25px;
    margin-right: 15px;
}

#main-header-menu li:first-child, .dropdown-pane .vertical.menu li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#main-header-menu li:last-child, .dropdown-pane .vertical.menu li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#main-header-menu li a, .prospect-more-actions > li > a {
    color: rgb(47, 56, 72);
    outline: none;
    display: flex;
    align-items: center;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.prospect-more-actions li:hover {
    background-color: #eaeaea;
}

.prospect-more-actions li a {
    color: rgb(47, 56, 72);
    text-transform: none;
    font-weight: 400;
}

#main-header-menu li a svg {
    padding-right: 7px;
}

#main-header-menu li.last {
    border-top: 1px solid #d4d4d4;
}

.quick-add {
    text-align: left;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: .7rem 1.2rem;
    opacity: 0.5;
}

span.sub-text {
    font-size: 12px;
    color: grey;
}

#main-header-menu li:hover {
    background-color: #eaeaea;
}

.position-left.reveal-for-medium {
    z-index: 1001;
}

.ac-sold-listing {
    font-weight: bold;
    background-color: #46904d;
    color: #fefefe;
    padding: 2px 4px;
    margin-right: 2px;
    border-radius: 2px;
}

.ac-not-for-sale-listing {
    font-weight: bold;
    background-color: #676f81;
    color: #fefefe;
    padding: 2px 4px;
    margin-right: 2px;
    border-radius: 2px;
}

.no-date-dismiss-button {
    font-weight: bold;
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 3px 5px;
}

.day-item-preview {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #EFEFEF;
    background-color: #4E5765;
    padding: 3px;
    border-radius: 2px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.2s all;
    margin-bottom: 2px;
}

.day-item-preview.completed {
    color: #4E5765;
    background-color: #ffffff;
    border: 1px solid #4E5765;
    text-decoration: line-through;
}

.more-cal-items {
    color: #4E5765;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.day-item-preview:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

.report-table {
    max-height: 310px;
    overflow-y: scroll;
}

span.sidebar-day {
    font-size: 16px;
    display: block;
    color: #F2B225;
    font-weight: bold;
    cursor: pointer;
}

span.sidebar-day.active .fa-caret-down {
    display: none;
}

span.sidebar-day .fa-caret-up {
    display: none;
}

span.sidebar-day.active .fa-caret-up {
    display: inline-block;
}

h3.app-dashboard-sidebar-block-title {
    font-size: 24px;
    line-height: 1;
    color: #fefefe;
}

ul.agenda-list-container {
    margin-left: 0;
    height: calc(100% - 125px);
    display: block;
    list-style-type: none;
    overflow-y: auto;
}

.shrink-large ul.agenda-list-container {
    display: none;
}

#calendar-tasks {
    height: auto;
}

li.todo {
    border: 1px solid #2F3848;
    width: 95%;
    border-radius: 5px;
    margin-top: 3px;
    margin-left: auto;
    margin-right: auto;
    padding: 7px;
    font-size: 12px;
    position: relative;
}

#calendar-tasks li.todo {
    border: 1px solid #BCC2CC;
}

#calendar-tasks li.todo label {
    color: #2F3848;
}

#calendar-tasks .todo-more {
    color: #2F3848;
}

.todo label {
    line-height: 1.2;
    /*color: #fefefe;*/
}

.todo input[type=checkbox] {
    display: none;
    width: 0;
    margin: 0 0 0;
}

.todo label {
    /* outline: 1px solid red; */
    width: 100%;
    display: block;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 25px;
    position: relative;
    color: #fefefe;
    transition: color 0.2s linear;
    color: #A6AFBC;
}

.todo-row {
    color: black !important;
}

.todo label .line-through {
    position: absolute;
    display: block;
    height: 1px;
    background-color: #34bf6e;
    top: 60%;
    right: 100%;
    left: 42px;
    transition: right 0.2s linear;
}

.todo label:before,
.todo label:after {
    content: "";
    display: block;
    position: absolute;
}

.todo label:before {
    top: -3px;
    left: -10px;
    width: 19px;
    height: 19px;
    border: 2px solid #8a9a9b;
    border-radius: 50%;
}

.todo label:after {
    top: 1px;
    left: -2px;
    width: 5px;
    height: 9px;
    border: 2px solid #8a9a9b;
    border-top: transparent;
    border-left: transparent;
    -webkit-transform: scale(2) rotate(45deg);
    transform: scale(2) rotate(45deg);
    opacity: 0;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
}

.todo input[type=checkbox]:checked + label {
    color: #8a9a9b;
    text-decoration: line-through;
}

.todo input[type=checkbox]:checked + label .line-through {
    right: 0;
}

.todo input[type=checkbox]:checked + label:before {
    border-color: #34bf6e;
}

.todo input[type=checkbox]:checked + label:after {
    -webkit-transform: scale(1) rotate(45deg);
    transform: scale(1) rotate(45deg);
    opacity: 1;
}

.todo-details {
    display: block;
    font-size: 10px;
    color: #A6AFBC;
}

.todo-more {
    position: absolute;
    top: 0;
    right: 4px;
    font-size: 16px;
}

.red-span {
    background-color: #D93D3D;
    border-radius: 6px;
    padding: 4px 8px;
    color: #FEFEFE;
}

.todo-overdue {
    font-size: 10px;
    background-color: #D93D3D;
    border-radius: 6px;
    padding: 0 4px;
    position: absolute;
    right: 2px;
    bottom: 2px;
    color: #FEFEFE;
}

li.event {
    border: 1px solid #222933;
    width: 95%;
    background-color: #3c4454;
    border-radius: 5px;
    margin-top: 3px;
    margin-left: auto;
    margin-right: auto;
    padding: 7px;
    align-items: center;
    position: relative;
}

li.event button.button.add, li.todo button.button.add {
    background-color: transparent;
    color: #fefefe;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin: 0;
    padding: 0;
}

.event-time {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #fefefe;
    font-size: 18px;
    line-height: 1.2;
    display: inline-block;
}

.event-details {
    color: #fefefe;
    line-height: 1.2;
    display: block;
}

.event-options {
    display: inline-block;
    position: absolute;
    right: 10px;
}

.card-options .button {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: none;
    border-radius: 5px;
    padding: 8px 16px;
    cursor: pointer;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-group.card-options .button {
    margin-left: 7px;
}

.card {
    background: #fefefe;
    margin-bottom: 30px;
    transition: .5s;
    border: 0;
    border-radius: .55rem;
    position: relative;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    padding: 1.5rem 1.5rem;
    overflow: unset;
}

.dropdown-pane.options {
    padding: 0;
}

.card-title-block h2 {
    font-family: 'Roboto', sans-serif;
    color: #3C4455;
    font-size: 16px;
    font-weight: 800;
    padding: 10px 0px;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0;
    pointer-events: none;
}

.card-title-block {
    border-bottom: 1px solid #A6AFBC;
    margin-bottom: 10px;
}

.card-title-block i, .notes-history i {
    color: #676F81;
    font-size: 14px;
    margin-left: 6px;
    cursor: pointer;
}

#single-inventory-tabs-container .card-title-block i.far,
#single-inventory-tabs-container .card-title-block i.fas,
#single-contact-tabs-container .card-title-block i.far,
#single-contact-tabs-container .card-title-block i.fas,
.single-tabs-container .card-title-block i.far,
.single-tabs-container .card-title-block i.fas {
    font-size: 18px;
    font-weight: bold;
    color: #676F81;
}

p.contact-name {
    display: block;
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 10px;
}

p.contact-company {
    display: block;
    font-size: 14px;
    margin-left: 10px;
}

.card-label span {
    display: flex;
}

.contact-block svg {
    display: inline-block;
    margin-right: 8px;
    max-width: 20px;
    max-height: 20px;
    min-width: 20px;
    min-height: 20px;
}

p.card-label {
    margin-bottom: 15px;
}

p.card-label a {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

ul.card-label a {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

select.user-type {
    border: 1px solid #DDDDDD;
    padding: 0px 1.5rem 0px 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.leads-list li.leads-item.action-required-for-lead.active {
    background-color: rgba(0, 0, 0, 0.08);
}

.contact-card-info ul.fa-ul {
    margin-left: 1.25rem;
}

.contact-card-info ul.fa-ul li {
    margin-bottom: 4px;
}

.contact-card-info a, .machine-card-info a {
    color: #676F81;
    font-weight: bold;
    text-decoration: underline;
}

.lead-need-action-alert {
    display: none;
}

.no-quote-alert {
    display: inline-block;
    color: #FF5722 !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.action-required-for-lead .lead-need-action-alert {
    display: inline-block;
    color: #ffffff !important;
    background-color: #27953C;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 9px;
    padding: 1px 12px;
    border-radius: 10px;
}

.lead-has-assignment {
    display: inline-block;
    color: #ffffff !important;
    background-color: #676F81;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 10px;
}

.card-label span {
    font-size: 14px;
    font-weight: bold;
    color: #A6AFBC;
}

span[id^='deals-for-prospect-'] {
    color: rgb(10,10,10);
    font-weight: 400;
}

.dropdown-buttons {
    cursor: pointer;
}

.dropdown-buttons:hover svg {
    border-radius: 4px;
    color: #fefefe;
    background-color: #3c4454;
    box-shadow: 0 0 8px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.36);
}

span[id^='count-deal-stage'], span[id^='action-count'] {
    pointer-events: none;
}

ul.machine-listing-cats {
    margin-left: 0;
    list-style-type: none;
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
}

@media only screen and (max-width: 985px) {
    ul.machine-listing-cats {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }

    #dasboard-search {
        padding-right: 0;
    }

    #search-switch {
        font-size: 12px;
        border-radius: 0;
        margin-right: 0;
        width: unset;
    }

    #machine-keyword {
        font-size: 12px;
        border-radius: 0;
    }

    .ui-autocomplete {
        left: 0 !important;
        max-width: 100vw;
    }
}

@media only screen and (max-width: 550px) {
    ul.machine-listing-cats {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

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

.front-end-header-pad {
    margin-top: 75px;
}

.accordion-title {
    position: relative;
    display: block;
    padding: 0;
    border: none;
    border-bottom: 0;
    font-size: .75rem;
    line-height: 1;
    color: #1779ba;
    text-align: right;
    padding-right: 27px;
}

.accordion-content {
    display: none;
    padding: 0;
    border: none;
    border-bottom: 0;
    background-color: #fefefe;
    color: #0a0a0a;
}

:last-child:not(.is-active)>.accordion-title {
    border-bottom: none;
    border-radius: 0;
}

.accordion-title:focus, .accordion-title:hover {
    background-color: transparent;
}

.card.machine-listings a {
    color: #636b6f;
}

.card.machine-listings a:active, .card.machine-listings a:hover {
    color: #262b2d;
    outline-width: 0;
}

/* Useful Classes */
.xy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.transition {
    transition: all 350ms ease-in-out;
}

.r-3-2 {
    width: 100%;
    padding-bottom: 66.667%;
    background-color: #ddd;
}

.image-holder {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* Main Styles */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery {
    position: relative;
    white-space: nowrap;
    font-size: 0;
    transition: all .3s ease-out;
    margin-bottom: 20px;
}

.item-wrapper {
    position: relative;
    cursor: pointer;
    width: 25%; /* arbitrary value */
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.2);
    border: solid 1px #fefefe;
    height: 150px;
}

.gallery-item { opacity: 0.5; }
.gallery-item.active { opacity: 1; }

.controls {
    font-size: 0;
    border-top: none;
}

.move-btn {
    display: inline-block;
    width: 50%;
    border: none;
    color: #ccc;
    background-color: transparent;
    padding: 0.2em 1.5em;
}

.move-btn:first-child {border-right: none;}
.move-btn.left  { cursor: w-resize; }
.move-btn.right { cursor: e-resize; }

.tabs.machine-listing {
    margin: 0;
    border: none;
    background: #fefefe;
    list-style-type: none;
    margin-top: 15px;
}

.tabs.machine-listing .borderless .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
    background: none;
    transition: all 0.5s ease-out;
    border-bottom: 4px solid;
}

img.hero-02 {
    margin-left: 23px;
}

img.hero-01 {
    margin-top: 23px;
}

.doc-nav {
    border-right: 1px solid #f0f2f1;
    padding-right: 35px;
}

.doc-nav h2 {
    color: #525252;
    margin-bottom: 0;
    margin-right: 1rem;
    font-size: 14px;
    border-bottom: 1px dashed rgba(0, 0, 0, .1);
    padding: .75rem 1.75rem .75rem 0;
}

.doc-nav ul {
    list-style: none;
    margin: .5rem 0 0;
    padding: 0 0 0 .75rem;
    font-size: 13px;
}

.doc-nav ul li {
    line-height: 30px;
}

.doc-section {
    letter-spacing: .8px;
}

.doc-section h1 {
    color: #525252;
    margin: 0 0 1.5rem 0;
    padding: 0 0 .1rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, .1);
}

.doc-section h2 {
    color: #525252;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.doc-section h3 {
    color: #525252;
    font-size: 1.4rem;
    margin-top: 2rem;
}

.doc-section h3::before {
    content: "# ";
    margin-right: .1em;
    font-weight: bold;
    color: rgb(242, 178, 37);
    opacity: .3;
}

.doc-section ul {
    margin-left: 3.0rem;
}

.doc-section p {
    margin-left: 1.5rem;
    color: #525252;
}

.doc-section h2::before {
    content: "# ";
    margin-right: .1em;
    font-weight: bold;
    color: rgb(242, 178, 37);
    opacity: .3;
}

.doc-section i {
    color: rgb(242, 178, 37);
}

.doc-section .callout {
    margin-left: 1.5rem;
}

.doc-section pre {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    max-height: 350px;
    overflow-y: auto;
}

.doc-section table {
    margin-left: 1.5rem;
}

.yellow-bg {
    background: #f2b324;
}

.gray-bg {
    background: #E7EAEA;
}

.blue-bg {
    background: #2f3848;
}

.blue-text {
    color: #2f3848;
}

h2.sub-text {
    font-size: 14px;
    color: #f2b324;
}

p.why {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: .1rem;
    text-decoration: none;
}

h2.new-arrivals {
    background: #fefefe;
    display: inline-block;
    padding: 15px;
    margin-left: -15px;
}

.arrivals-box {
    z-index: 5;
    position: relative;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.2);
}

.new-arrivals-container {
    margin-top: -240px;
    z-index: 5;
    position: relative;
}

.button.black {
    font-family: 'Roboto', sans-serif;
    border: 1px solid #333333;
    color: #333333;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 400;
}

.download-as-pdf-doc {
    position: absolute;
    top: 20px;
    right: 20px;
}

.image-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    color: #FFFFFF;
    background-color: #676F81;
    box-shadow: 0 2px 5px rgba(0,0,0,0.16), 0 2px 10px rgba(0,0,0,0.12);
    padding: 8px 16px;
}

/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #333333;;
    z-index: 1001;
}

/* Overlay closing cross */
.overlay .overlay-close {
    position: absolute;
    right: 15px;
    top: 0.25rem;
    overflow: hidden;
    border: none;
    color: #fbc03e;
    outline: none;
    z-index: 5001;
    font-size: 2rem;
    padding: 1rem;
    margin-right: 0.9375rem;
}

/* Menu style */
.overlay nav {
    position: relative;
    top: 40%;
    height: 55%;
    font-size: 2.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}

.overlay ul li {
    display: block;
    padding: 0 0 1.5rem;
}

.overlay ul li a {
    display: block;
    -webkit-transition: color 1s;
    transition: color 1s;
    line-height: 1;
    text-align: center;
    color: #fefefe;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;

}

.overlay ul li .is-accordion-submenu-item {
    font-family: "mr-eaves-xl-modern",sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    color: #fefefe;
    -webkit-transition: color 1s;
    transition: color 1s;
    line-height: 1;
    text-align: center;
}

.overlay ul li .is-accordion-submenu-item {
    font-family: "mr-eaves-xl-modern",sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    color: #fefefe;
    -webkit-transition: color 1s;
    transition: color 1s;
    line-height: 1;
    text-align: center;
    padding: 0.1rem 0;
    font-size: 75%;
}

.overlay ul li a.phone {
    color: #fefefe;
    font-size: 2rem;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #fbc03e;
}


/* Effects */
.overlay-slidedown {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
    transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}

#trigger-overlay {
    color: #333333;
    padding: 1rem;
}

.logo img {
    max-width: 275px;
    min-width: 275px;
    height: auto;
}

.listing-card {
    padding: 1rem;
    background: #fefefe;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.2);
}

.listing-info {
    padding: 12px 12px 24px 12px;
}

.listing-info h2 {
    text-transform: none;
    font-size: 18px;
    font-weight: 800;
}

.listing-info label {
    font-size: 12px;
    line-height: 1;
}

p.listing-brand, p.listing-condition-year {
    font-size: 14px;
    color: #737272;
    margin-bottom: 10px;
}

.front-end .card {
    border-radius: 0;
}


.listing-specs-for-filters {
    font-size: smaller;
    border-top: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(215, 236, 250, 0.4);
    padding: 5px;
    border-radius: 4px;
}

.listing-title-line, .contact-title-line {
    border-bottom: 2px solid rgba(0, 0, 0, 0) !important;
}

.contact-title-line td {
    padding-bottom: 0;
}

.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;   /* prevent horizontal scrollbar */
    overflow-x: hidden; /* add padding to account for vertical scrollbar */
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-state-active.ui-button:hover
{
    border: 1px solid #000;
    background: #3C4455;
}

#specs-for-filter-machine-type {
}

#specs-for-filter-machine-type-add {
    margin-bottom: 1rem;
    text-align: right;
}

#specs-for-filter-machine-type .accordion-title {
    border-width: 2px;
    font-weight: 400;
    font-size: .8571em;
    line-height: 1.35em;
    border: none;
    border-radius: .1875rem;
    padding: 11px 22px;
    cursor: pointer;
    border: 1px solid #1779ba;
    color: #1779ba;
    text-align: center;
    transition: all 0.5s ease-out;
    margin: 0 0 1rem;
}

.light-box-gallery {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    height: 200px;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.2);
}

.inventory-thumbnail {
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

#main-inventory-container {
    background-color: rgba(0, 0, 0, 0.2);
    border: solid 4px #fefefe;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
}

.inventory-thumb {
    width: auto;
    max-height: 75px;
    /* padding: 0 10px 0 0; */
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all .3s ease-in;
    border: solid 4px #fefefe;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
    display: inline-block;
    line-height: 0;
    /* max-width: 100%; */
    /* transition: box-shadow 200ms ease-out; */
    border-radius: 0;
    margin-bottom: 1rem;
    padding: 0 0px 0 0;
    margin-top: 15px;
}

.spec-divider {
    font-weight: bold;
    color: #1779ba;
    margin: 0 5px;
}

#listings-selected, #contacts-selected, #contact-companies-selected {
    background-color: #2F3848;
    color: #fefefe;
    position: fixed;
    right: 0;
    bottom: 0;
    border-top: 1px solid #f2b225;
    border-right: 1px solid #f2b225;
    border-left: 1px solid #f2b225;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    border-top-left-radius: 8px;
    margin-bottom: -96px;
    transition: all .3s;
    padding: 8px 5px;
}

.selected-header {
    font-size: 18px;
    font-weight: bold;
}

#listings-selected.has-listings, #contacts-selected.has-contacts, #contact-companies-selected.has-contacts {
    margin-bottom: 0;
}

.gallery-arrow {
    position: absolute;
    top: 40%;
    z-index: 10;
    color: #f2b225;
    margin-bottom: -28px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: all .3s ease-out;
}

.gallery-arrow:hover {
    color: #1779ba;
}

.gallery-arrow.fa-arrow-alt-circle-left {
    left: 5px;
}

.gallery-arrow.fa-arrow-alt-circle-right {
    right: 5px;
}

.thumbnail-td {
    padding: 0 0 0 .625rem;
}

#submit-edit-listing, #submit-new-listing {
    position: fixed;
    bottom: 10px;
    left: 0;
}

#filter-machine-listings input[type="submit"] {
    position: fixed;
    bottom: 10px;
    margin: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.16), 0 2px 10px rgba(0,0,0,0.12);
    width: 100%;
    margin-left: -16px;
    max-width: 75rem;
}

#new-listing .close-button, #edit-listing .close-button {
    position: fixed;
    top: 10px;
    right: 20px;
}

.listing-title-label .has-tip {
    display: initial;
    border-bottom: none;
}

.featured-listing {
    background-color: #f2b324;
    color: #fefefe;
    font-weight: bold;
    padding: 3px 5px;
}

.show-listing-on-site {
    background-color: #3adb76;
    color: #fefefe;
    font-weight: bold;
    padding: 3px 5px;
}

.show-on-mhub-marketplace {
    background-color: #cc4b37;
    color: #fefefe;
    font-weight: bold;
    padding: 3px 5px;
}

.no-border-radius {
    border-radius: 0 !important;
}

#filter-bubbles {
    margin-top: 15px;
    padding-bottom: 10px;
}

#error-content .tabs-title > a[aria-selected='true']{
    color: #f2b324;
}

.multiple-quoted {
    cursor: pointer;
    transition: all .2s ease-in;
}

.multiple-quoted:hover {
    background-color: #2e2e2e;
    color:white;
}

#notes.reveal #body {
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.machine-icon {
    color: #676F81;
    margin-right: 6px;
}

.iframe-sent-quote {
    width: 100%;
    height: 700px;
    display: none;
}

.iframe-sent-quote.active {
    display: block;
}

#shipping-to-label[aria-selected='true'], #shipping-from-label[aria-selected='true'] {
    color: #f2b324;
}

.dns-code {
    width: 100%;
    overflow-x: scroll;
    padding: 20px;
    border: 1px solid black;
}

#listed-price {
    position: absolute;
    display: none;
    right: 40px;
    top: 13px;
    font-weight: 400;
}

*[data-custom-toggle] {
    pointer-events: all;
    cursor: pointer;
}

*[data-custom-toggle] i {
    margin-right: 6px;
}

*[data-custom-toggle].is-active i::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f0fe";
}

.displayed-notes {
    border: 1px solid #cacaca;
    height: 200px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
    color:#000;
    white-space: pre-wrap;
    box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: rgb(238, 238, 238);
}

.editable-notes {
    height: 300px !important;
}

#email-activity-table .badge {
    border-radius: 0;
}

#alert-header-menu {
    text-align: left;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    font-size: 12px;
    max-height: 300px;
    border-radius: .55rem;
    margin-bottom: 15px;
    overflow: auto;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

#alert-header-menu a {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

#alert-header-menu svg {
    padding-right: 8px;
}

.alert-container {
    margin: 15px;
    position: relative;
    border-bottom: solid 1px rgba(12, 84, 96, 0.37);
}

#alert-header-menu hr {
    margin-bottom: 0;
    margin-top: 0;
}

.alert-time {
    position: absolute;
    right: 0;
    top: 0;
}

#alert-button {
    position: relative;
}

#alert-exclamation {
    position: absolute;
    font-weight: 900;
    top: -5px;
    right: -5px;
    font-size: 24px;
    color: red;
    background-color: white;
    border-radius: 10px;
}

.deals-item {
    position: relative;
}

.deal-type {
    font-weight: bold;
    border-radius: 0 !important;
    position: absolute;
    bottom: 3px;
    right: 3px;
}

.label-button {
    cursor: pointer;
    margin-bottom: 3px;
}

.admin-report-totals .cell{
    margin-bottom: 10px;

}

.selected-listing {
    margin-bottom: 3px;
}

.selected-listing .label {
    max-width: 550px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.modal-header {
    color: #3C4455;
    font-size: 24px;
}

.tabs {
    background: #3C4455;
}

.tabs-title>a {
    font-size: 16px;
    font-weight: 400;
    color: #A6AFBC;
}

.tabs-title > a[aria-selected='true'] {
    color: #F2B225;
}

#lead-tabs, #deals-tabs {
    background: transparent;
}

#lead-tabs a, #deals-tabs a {
    padding: 8px 18px;
    font-size: 14px;
}

#lead-tabs li.is-active a, #deals-tabs li.is-active a {
    font-weight: bold;
}

#needs-action-filter, #deal-switch {
    max-width: 200px;
    border-radius: 4px;
}

#leads-info {
    font-size: 14px;
}

#leads-select, #deals-select {
    padding-right: 10px;
}

#deals-select .options-column .button {
    display: block;
}

#deals-select .options-column .button:not(:last-of-type) {
    margin-bottom: 0.5rem;
}

#deals-select .options-column .button:last-of-type {
    margin-bottom: 0;
}

#sales-dashboard-tabs a, .top-level-tabs a {
    font-weight: bold;
}

.text-white {
    color: #ffffff !important;
}

.reveal h1 {
    font-size: 24px;
    font-weight: bold;
}

.reveal .button {
    font-size: 16px;
    padding: 12px 18px;
    text-decoration: none;
}

.reveal .button.small {
    font-size: 12px;
    padding: 6px 18px;
}

.reveal a {
    font-weight: bold;
    color: #676F81;
    text-decoration: underline;
}

.reveal form label,
.reveal form legend,
form.rework label {
    color: #A6AFBC;
    font-weight: bold;
}

.reveal form label.default,
form.rework label.default {
    color: rgb(10,10,10);
    font-weight: 400;
    cursor: pointer;
}

.reveal input,
.reveal textarea,
.reveal select,
.reveal div.ms-parent button,
form.rework input,
form.rework textarea,
form.rework select,
form.rework div.ms-parent button {
    border: 1px solid #DDDDDD;
    border-radius: 4px;
}

li#single-todo {
    width: 100%;
    margin: 0;
    padding: 12px 10px;
    border: 1px solid #A6AFBC;
}


li#single-todo label {
    font-weight: bold;
}

li#single-todo .todo-details {
    margin-top: 10px;
    font-weight: 400;
}

li#single-todo .todo-overdue {
    top: 3px;
    right: 3px;
    bottom: auto;
}

.order-filter {
    display: inline-block;
    vertical-align: top;
    width: 150px;
    border-radius: 4px;
    border: 1px solid #A6AFBC;
    font-size: 12px;
    height: 34px;
    margin: 0 0 1rem 0;
}

.order-filter:before {
    content: 'test';
}

#listing-view-toggle {
    padding: 7px 12px;
    font-size: 14px;
}

.listing-row .listing-show-on-list-view {
    display: none;
}

.listing-list-view .listing-hide-on-list-view {
    display: none;
}

.select-listing-container {
    padding-left: 10px;
}

.listing-list-view .listing-show-on-list-view {
    display: block;
}

.listing-row.selectable a,
.contact-row.selectable a {
    pointer-events: none;
}

.listing-row.selectable:hover,
.contact-row.selectable:hover
{
    border: 2px solid #3C4455;
    background-color: rgba(166, 175, 188, 0.6);
    cursor: pointer;
}

.listing-row.selectable:hover .listing-header-2,
.listing-row.selected .listing-header-2
{
    color: #FEFEFE;
}

.listing-row.selected,
.contact-row.selected
{
    border: 2px solid #3C4455;
    background-color: #A6AFBC;
}

.link-muted {
    color: #A6AFBC;
}

.contact-row a, .lead-row a, .quote-row a,
.deal-row a, .email-blast-row a, .a-link {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.pg-footer {
    margin-top: 20px;
}

.reveal .fa {
    color: #2F3848;
}

#listing-title-bar, #contact-title-bar, #company-description-title {
    background-color: #3C4455;
    color: #FEFEFE;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

#single-inventory-tabs,
#single-contact-tabs,
#single-company-tabs,
#single-new-inventory-tabs,
#single-new-part-tabs,
#single-new-auction-tabs,
.single-tabs {
    background-color: #2F3848;
    border: none;
}

#single-company-machine-tabs {
    background-color: #1f2a3c;
    border: none;
}

#listing-description-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.places-listed span {
    color: #676F81;
    font-weight: bold;
}

.places-listed a {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.places-listed span:after {
    content: ',';
}

.places-listed span:last-child:after {
    content: '';
}

@media print {

    #dash-left-nav, #dash-header, #nav-pad, .no-print {
        display: none;
    }

    #dash-content {
        margin: 0;
    }

    ul.top-level-tabs {
        display: none;
    }
}

.image-manager, .file-manager {
    display: inline-block;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.2);
    border: solid 4px #fefefe;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
    position: relative;
}

.image-manager img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.image-manager select {
    border-radius: 0 !important;
}

.file-manager .file-name {
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.image-visibility {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 50%;
    z-index: 10;
}

.file-visibility {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
}

.image-category-select {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 50%;
    z-index: 10;
}

.rotate-handle-left {
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(242, 178, 37, 1.0);
    background-color: #3C4455;
    font-size: 25px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
    z-index: 5;
}

.rotate-handle-right {
    position: absolute;
    top: 2px;
    left: 35px;
    color: rgba(242, 178, 37, 1.0);
    background-color: #3C4455;
    font-size: 25px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
    z-index: 5;
}

.rotate-handle-right:hover, .rotate-handle-left:hover, .expand-handle:hover {
    background-color: rgba(242, 178, 37, 1.0);
    color: #3C4455;
}

.expand-handle {
    position: absolute;
    top: 2px;
    left: 70px;
    color: rgba(242, 178, 37, 1.0);
    background-color: #3C4455;
    font-size: 25px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
    z-index: 5;
}

.delete-handle {
    position: absolute;
    top: 2px;
    right: 2px;
    color: rgba(255,54,54,0.8);
    background-color: #3C4455;
    font-size: 16px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
    z-index: 5;
}

.delete-handle:hover {
    background-color: rgba(255,54,54,0.8);
    color: #3C4455;
}

.image-manager:hover::before {
    content: "Drag to Re-order";
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom: 0;
    background: #222;
    color: #f2b225;
    z-index: 5;
    opacity: 0.8;
    cursor: move;
    font-weight: 800;
    text-align: center;
    line-height: 250px;
}

.sort-handle:hover, .download-handle:hover {
    color: #3C4455;
    background-color: #f2b225;
}

.download-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    padding: 2px;
    border-radius: 2px;
    font-size: 16px;
    color: #f2b225;
    background-color: #3C4455;
    transition: all .3s;
    cursor: pointer;
}

form.dropzone.dz-clickable {
    background-color: rgba(60,68,85, 0.1);
    border: 2px dashed rgba(0,0,0,0.5);
}


.remove-line-item {
    position: absolute;
    top: 0;
    right: .9375rem;
    color: red !important;
}

.p-relative {
    position: relative;
}

.go-to-company-link {
    color: #676F81;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.go-to-company-link:hover {
    color: #F2B225 !important;
}

.go-to-company-link:hover::after {
    font-family: "Font Awesome 5 Pro";
    content: ' \f33b';
}

.contact-select-box {
    cursor: pointer;
    margin: 0;
    height: 20px;
    width: 20px;
}

.google-address {
    pointer-events: all;
}

.google-address i {
    color: #f2b225;
    margin-left: 0;
}

.google-address i:hover {
    color: #636b6f;
}

.selectize-control.multi .selectize-input [data-value] {
    text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #2F3848;
    background-image: -moz-linear-gradient(top, #3c485d, #3C4455);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c485d), to(#3C4455));
    background-image: -webkit-linear-gradient(top, #3c485d, #3C4455);
    background-image: -o-linear-gradient(top, #3c485d, #3C4455);
    background-image: linear-gradient(to bottom, #3c485d, #3C4455);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2), inset 0 1px rgba(255,255,255,0.03);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2), inset 0 1px rgba(255,255,255,0.03);
    font-size: 16px;
}

.selectize-control.plugin-remove_button [data-value] .remove {
    border-left-color: transparent;
    color: white !important;
    font-size: 28px;
    text-decoration: none !important;
    border-bottom: none;
    top: 5px;
    right: 2px;
}

.selectize-control.multi .selectize-input > div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 7px 10px;
    background: #2F3848;
    color: #fff;
    border: 1px solid #2F3848;
}

.list-on-label {
    display: inline-block;
    margin-right: 25px;
    cursor: pointer;
}

.list-on-label input {
    cursor: pointer;
    margin-right: 2px;
}

.check-stock-number {
    position: absolute;
    bottom: -24px;
    right: 0;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 400;
    padding: 3px 10px;
}

.latest-stock-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 400;
    background-color: #3C4455;
    padding: 3px 10px;
}

.latest-invoice-number {
    position: absolute;
    bottom: -23px;
    left: 0;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 400;
    background-color: #3C4455;
    padding: 3px 10px;
}

#stock-chooser {
    position: relative;
}

input[type='text'].ui-autocomplete-loading {
    background: url('/img/gear-loading.gif') no-repeat right center;
    background-size: 30px 30px;
}

.file-item,
.video-item {
    margin-bottom: 8px;
}

.file-item input,
.video-item input {
    padding: 8px;
    width: 300px;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
}

.file-item a,
.video-item a {
    text-decoration: none;
}

.no-decoration {
    text-decoration: none !important;
}

.listing-no-download:hover {
    cursor: not-allowed;
    color: rgba(255,54,54,0.8);
}

.file-visibility-checkbox {
    display:none;
}

.file-visibility-checkbox + label:before {
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    content: "\f070";
    color: rgb(100,100,100);
}

.file-visibility-checkbox:checked + label:before {
    content: "\f06e";
    color: rgb(10,10,10);
}

.eye-label {
    margin-right: 0 !important;
}

.select-group-container {
    display: inline-block;
    max-width: 250px;
}

.select-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: auto;
}

.select-prepend {
    margin-right: -1px;
    display: flex;
}

.select-prepend-text {
    font-size: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem;
}

.select-group select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.button-row .button {
    margin-bottom: 0;
}

#new-machine-type-error,
#new-brand-error,
#email-error,
#new-part-category-error {
    color: #ffffff;
    background-color: #cc4b37;
    padding: 2px 5px;
    border-radius: 4px;
}

.ui-menu-item > div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 800px;
}

.max-selected {
    background-color: #D93D3D;
    border-radius: 6px;
    padding: 0 4px;
    color: #FEFEFE;
}

.cost-override {
    position: absolute;
    top: 0;
    right: 0;
}

.find-contact-label {
    position: relative;
}

.find-contact {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

i.default, span.default {
    color: black;
}

.not-in-month .cal-day-number {
    opacity: 0.2;
}

.exact-match-ac {
    background-color: rgba(0, 255, 0, 0.25);
}

#email-blast-show #filter-bubbles {
    margin-top: 0;
}

#filters-applied-to-blast {
    margin-top: 15px;
    margin-bottom: 15px;
}

#billing-steps {
    padding: 0 !important;
}

.billing-step {
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    margin-bottom: .9375rem;
    background-color: #cc4b37;
    color: white;
    font-weight: bold;
}

.billing-step.completed-step {
    background-color: #3adb76;
}

.billing-step a {
    color: white;
    border-bottom: 2px solid #3C4455;
}

.billing-step a:hover {
    color: #3C4455;
}

.billing-step::after {
    content: "→";
}

.bulk-edit-card {
    padding: 0;
    margin-bottom: 10px;
}

.bulk-edit-card .card-divider {
    font-weight: bold;
    padding: .5rem;
    border-top-right-radius: .55rem;
    border-top-left-radius: .55rem;
}

.bulk-edit-card label {
    color: black !important;
    cursor: pointer;
}

.bulk-edit-card .ms-parent.clear-ms-select {
    margin-bottom: 0;
}

.bulk-edit-card label.is-selected {
    background-color: #badebe;
}

.bulk-edit-card label input[type="checkbox"] {
    margin-top: 6px;
    margin-bottom: 0;
}

#email-plugin-container {
    height: 800px;
    border: 1px solid black;
}

.company-options {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.red {
    color: red;
}

.tag-switch {
    margin-bottom: 5px;
    display: inline-block;
}

.tag-switch .switch-paddle {
    width: 6.5rem !important;
    background-color: #f2b225 !important;
    color: #3C4455 !important;
}

.tag-switch input:checked~.switch-paddle::after {
    left: 5rem !important;
}

.tag-switch .switch-inactive {
    right: 7% !important;
}

.tag-switch .fa-question-circle {
    position: absolute;
    top: 8px;
    right: -23px;
}


.package-select {
    display: inline-block;
    width: 360px;
    height: 175px;
    border: 1px solid grey;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    transition: 0.3s all;
    position: relative;
}

.package-select i {
    position: absolute;
    bottom: 3px;
    right: 3px;
    display: none;
    color: green;
    font-size: 20px;
}

.package-select.active i {
    display: block;
}

.package-select.addon {
    cursor: pointer;
}

.package-select.active, .package-select.addon:hover {
    background-color: rgba(0, 255, 0, 0.2);
}

.package-select li {
    margin-bottom: 10px;
}

ul.no_bullet {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.no_bullet li {
    padding-left: 50px;
    padding-top: 8px;
    margin-bottom: 0;
}

.no_bullet h5 {
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 800;
}

.no_bullet p {
    opacity: 0.75;
}

li.ims {
    overflow: hidden;
    background: url('/img/icons/01-ims.png') no-repeat left top;
    background-size: 40px 40px;
}

li.webhost {
    overflow: hidden;
    background: url('/img/icons/06-maintenance.png') no-repeat left top;
    background-size: 40px 40px;
}

li.listings-plan {
    overflow: hidden;
    background: url('/img/icons/03-marketplace.png') no-repeat left top;
    background-size: 40px 40px;
}

.toggle-component-button {
    position: absolute;
    top: 3px;
    right: 3px;
    margin: 0;
    padding: 2px 4px !important;
}

.payment-source {
    border: 1px solid #dee2e6!important;
    border-radius: .25rem!important;
    margin-bottom: 1rem;
}

.payment-header {
    padding: 12px;
    background-color: #f8f9fa !important;
}

.payment-body {
    padding: 12px;
}

.payment-body .label.secondary,
.payment-header .label.alert
{
    border-radius: 1rem;
}

.d-inline {
    display: inline-block;
}

.payment-body button.label,
.payment-header button.label
{
    cursor: pointer;
    transition: 0.3s;
}

.payment-body button.label:hover {
    background-color: black;
    color: #f2b324;
}

.payment-body button.label:hover {
    background-color: black;
    color: #cc4b37;
}

.l-created-at {
    color: #A6AFBC;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 10px;
}

.l-updated-at {
    color: #A6AFBC;
    position: absolute;
    bottom: 12px;
    right: 0;
    font-size: 10px;
}

#saved-template-label {
    position: relative;
}

#manage-saved-templates {
    position: absolute;
    top: 0;
    right: 0;
}

.template-image {
    height: 10rem;
    display: flex;
    justify-content: center;
}

#email-plugin-header {
    height: 55px;
    background-color: #515658;
    display: flex;
    align-items: center;
    font-size: 12px;
}

#email-plugin-header > .dropdown {
    width: 100%;
}

#email-plugin-header > .dropdown > li {
    padding-left: 1rem;
    padding-right: 1rem;
}

#email-plugin-header button {
    height: 55px;
    background-color: #515658;
}

#email-plugin-header a {
    color: white;
}

#email-plugin-header a:after {
    border-color: white transparent transparent;
}

/* overwriting another app.css rule */
#email-plugin-header .dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
}

#email-plugin-header .submenu {
    border: unset;
    font-size: 11px;
}

#email-plugin-header .submenu li {
    background-color: #33373A;
}

#email-plugin-header .submenu li:hover {
    background-color: black;
}

#email-plugin-header .submenu li:not(:last-child) {
    border-bottom: 1px solid #555555;
}

#template-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    flex-grow: 1;
    text-align: center;
    font-weight: bold;
}

#smart-list-label {
    display: inline-block;
    height: 40px;
    line-height: 35px;
    font-size: 16px;
    font-weight: bold;
    color: #676F81;
    margin-right: 80px;
}

#smart-list-switch-container {
    display: inline-block;
    margin: 0;
    position: absolute;
    right: 30px;
}

#smart-list-switch-container label {
    border-radius: 4px;
}

#smart-list-switch-container input:checked~.switch-paddle {
    background: #f2b225;
}

#email-list-contact-count {
    font-size: 18px;
    font-weight: bold;
    color: #676F81
}


.auction-line-item-image {
    display: inline-block;
    width: 80px;
    height: 80px;
}

#new-auction-line-item > div:nth-child(even) {
    background-color: rgba(0,0,0,0.03);
}

#new-auction-line-item > :nth-child(odd) {

}

.remove-partner {
    position: absolute;
    top: 3px;
    right: 3px;
    color: red;
    font-weight: bold;
    cursor: pointer;
}

.auction-line-item .fa-arrows-alt {
    cursor: pointer;
}

.company-checkboxes .cell {
    display: flex;
    align-items: center;
}

.company-checkboxes label {
    line-height: 1;
    margin: 9px 5px;
}

.company-checkboxes .cell input[type="checkbox"] {
    margin-bottom: 0;
}

#email-blast-templates .card {
    height: 300px;
}

.overview {
    background-color: white;
    border: 1px solid #E4E6EA;
}

#auctions-overview .auction-status {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.auction-status .active {
    color: #27953C;
}

#manager-dashboard .overview > div {
    height: unset;
}

#leads-overview > .grid-x, #deals-overview > .grid-x {
    height: 12rem;
}

.overview-spacing {
    padding: 0.5rem 1rem;
}

#team-overview table, #email-overview table, #activity-overview table {
    margin-bottom: 0;
}

#inventory-overview > div > div, #sales-overview > div > div, #auctions-overview > div > div {
    position: relative;
}

#inventory-overview .new-listings-count.has-new {
    color: #27953C;
}

#activity-overview select {
    margin-bottom: 0;
    font-size: 12px;
    height: unset;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    border-radius: 0.25rem;
}

.title-bar .flatpickr-input {
    margin-bottom: 0;
    font-size: 12px;
    height: unset;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border-radius: 0.25rem;
    background-color: white;
}

#inventory-overview > div > div:not(:last-child):after,
#sales-overview > div > div:not(:last-child):after,
#auctions-overview > div > div:not(:last-child):after {
    height: 1px;
    width: 100%;
    background-color: #3C4455;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    content: '';
    display: block;
}

#auctions-overview > div > div:not(:last-child):after {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.overview {
    margin-bottom: 1rem;
}

#sales-dashboard .overview-number, #manager-dashboard .overview-number, #listings-dashboard .overview-number {
    font-size: 32px;
    color: #4E5765;
    font-weight: bold;
}

#listings-dashboard{
    background-color: #EDEDED;
}
.listings-only-table{
    text-align: left;
}

.overview-number a{
    color: #4E5765;
}

#sales-dashboard .overview-label, #manager-dashboard .overview-label {
    font-size: 14px;
    letter-spacing: 1px;
    color: #363636;
    text-transform: uppercase;
}

#manager-dashboard .overview-number {
    font-size: 28px;
}

#manager-dashboard .overview-label {
    font-size: 12px;
}

.overview .title-bar {
    background-color: #3C4455;
    color: #A6AFBC;
    padding: 1rem;
    position: relative;
    white-space: nowrap;
}

.overview .title-bar h2 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
}

.overview h2 span {
    color: white;
    font-size: 11px;
    font-weight: normal;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

#mobile-menu {
    background-color: #3C4455;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100vw;
    width: 100vw;
    z-index: 99999;
    transition: all 0.4s ease-in-out;
}

#mobile-menu.is-active {
    left: 0;
}

#mobile-menu .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

#mobile-menu ul {
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: 100%;
}

#mobile-menu li {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.deal-tabs {
    margin: 0;
    list-style-type: none;
}

.deal-tabs .tabs-title {
    padding-left: 0.5rem;
}

.deal-tabs .tabs-title:not(:last-child) {
    padding-right: 0.5rem;
    border-right: 1px solid #676F81;
}

.deal-tabs .tabs-title a {
    padding: unset;
    font-size: 14px;
}

.deal-tabs .tabs-title > a {
    color: #676F81;
    font-weight: bold;
    text-decoration: underline;
    border: none;
}

.deal-tabs .tabs-title > a[aria-selected="true"] {
    color: black;
    text-decoration: unset;
}

#deal-details .deals-card {
    border: unset;
    padding: 0;
}

.back-link {
    color: #676F81;
    font-weight: bold;
}

.negotiation-title {
    font-size: 14px;
    font-weight: bold;
    color: #A6AFBC;
}

.negotiation-date {
    text-align: right;
    vertical-align: bottom;
    color: #A6AFBC;
    font-style: italic;
}

.negotiations-table, .documents-table {
    border: 1px solid #676F81;
    margin-bottom: 1rem;
}

.negotiations-table .grid-x, .documents-table .grid-x {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.negotiations-table .grid-x:not(:last-child), .documents-table .grid-x:not(:last-child) {
    border-bottom: 1px solid #676F81;
}

@media only screen and (max-width: 985px) {
    .deal-tabs .tabs-title > a {
        color: #676F81;
        font-weight: bold;
        text-decoration: underline;
        border: none;
        margin-bottom: 0.5rem;
    }

    .deal-tabs .tabs-title:not(:last-child) {
        border-right: unset;
    }
}

.listing-container .listing-section-bottom-margin {
    margin-bottom: 12px;
}

#deals-table .button-row .select-group-container {
    margin-left: 5px;
}

#deals-tabs a.active {
    color: black;
    text-decoration: unset;
}

.document-link {
    color: #676F81;
    font-weight: bold;
    white-space: nowrap;
}

.activity-items .accordion-title {
    font-size: 14px;
    text-align: left;
}

.activity-items .accordion-title:before {
    position: relative;
    top: unset;
    right: unset;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
}

.rounded{
    border-radius: 10px;
}

@media only screen and (max-width: 985px) {
    .overview .title-bar h2 {
        font-size: 14px;
    }

    .overview .title-bar {
        padding: 0.5rem;
    }

    .title-bar .flatpickr-input {
        color: #f2b225;
        font-weight: bold;
        background-color: transparent;
        border-color: transparent;
        text-align: right;
    }

    #leads-select, #deals-select {
        padding-right: unset;
        margin-bottom: 1rem;
    }

    .light-box-gallery {
        width: 70px;
        height: 70px;
    }

    .listing-container {
        padding: 5px 10px;
        font-size: 12px;
    }

    .listing-title {
        margin-bottom: 0;
        white-space: unset;
        max-height: 2.5rem;
    }

    .listing-selected-checkbox {
        margin: 0;
    }

    .listing-container .listing-section-bottom-margin {
        margin-bottom: 0;
    }

    .pagination li.pagination-next {
        display: inline-block;
    }

    .tabs-title > a {
        padding: 0.75rem 1.5rem;
    }

    #listings-selected, #contacts-selected, #contact-companies-selected {
        margin-bottom: -196px;
    }

    #listings-selected .button {
        font-size: 18px;
    }

    .button {
        transition: unset;
    }

    #deals-select table {
        table-layout: fixed;
    }

    #deals-select table tfoot td, table tfoot th, table thead td, table thead th {
        width: 10rem;
    }

    #deals-table .select-group-container {
        display: unset;
        max-width: unset;
    }

    #deals-table .button-row .button {
        margin-bottom: 5px;
    }

    #deals-table .button-row .select-group-container {
        margin-left: unset;
    }

    .leads-list-container {
        max-height: 50vh;
    }

    .leads-list {
        position: relative;
    }
}

.custom-message{
    background-color: #f5af02;
}

.sort-asc:after {
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
    content: "\f0d8";
    padding-left: 0.25rem;
}

.sort-desc:after {
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
    content: "\f0d7";
    padding-left: 0.25rem;
}

.public{
    border-color: #90ee90;
}
.private{
    border-color: #FF7F7F;
}

.template-type{
    position: absolute;
    right:45px;
    width: 150px;
    background-color: #f2b225;
}
.template-type option{
    background-color: #f2b225;
}
.template-type option:focus{
    background-color: #f2b225 !important;
}
.template-type select:focus{
    background-color: #f2b225 !important;
}

.template-type option:checked{
    background-color: #f2b225 !important;
}

.search-area{
    position: relative;
}

.range-filter{
    margin-top: -25px;
    text-align: right;
}

#tags-container{
    list-style: none;
    margin-left: 0 !important;
    cursor: pointer;
}

.tag{
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    display: flex;
    justify-content: space-between;
}

.delete{
    cursor: pointer;
}

.actions{
    cursor: pointer;
}

.calendar-buttons{
    width: 100%;
    text-align: left;
    height: 2.5rem;
    align-items: center;
    display: flex;
    color: white !important;
}

.calendar-buttons > i{
    padding-right: 5px;
}

#month-dropdown {
    width: 150px !important;
}

.edit-icon{
    font-size: 18px;
    font-weight: bold;
    color: #676F81;
    cursor: pointer;
}

.task-section{
    font-size: 1.05rem;
    color: #3c4455;
}

.warehouse-tabs{
    display: flex;
}

.warehouse-tabs > :last-child{
    margin-left: auto;
    display: flex;
}

.display-mode-toggle{
    color:#3C4455 !important;
    background-color: white;
    align-items: center;
    margin-bottom: auto;
    margin-top: auto;
    margin-right: 20px;
    font-weight: 400 !important;
    font-size: .8571em !important;
    padding: 11px  22px !important;
    cursor: pointer !important;
}

#logo-container {
    height: 99px;
}
#generate-machine-qr-code > h3{

}

.warehouse-message {
    background-color: #f2b225;
    border-radius: 0;
    padding: 12px;
    margin: 12px 0;
}

.warehouse-message h3 {
    font-size: 1.75em;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0;
}

.warehouse-message i{
    float:right;
    cursor: pointer;
}

.warehouse-tab{
    min-height: 65vh;

}

.calendar-filter{
    padding-left: 10px;
    overflow: auto;
    max-height: 53.5vh;
}

.display-mode-logos{
    height: 250px;
    margin-bottom: 0;
}

#contact-keyword{
    color:black;
    text-align: left;
}

.translation-label span {
    font-size: 14px;
    font-weight: bold;
    color: #A6AFBC;
    margin-bottom: 3px !important;
}
.translation-label {
    margin-bottom: 3px !important;
}
.translation-vaue {
    margin-bottom: 1rem;
}
.blast-icon{
    width:50%;
}
.blast-modal a{
    text-decoration: none;
}
.blast-modal .cell{
    cursor: pointer;
}
.blast-modal a{
    cusror: pointer;
}
.blast-padding{
    padding: 10%;
}
.blast-type{
    height: 3rem;
}
.blast-type img{
    height: 100%;
}
.blast-label{
    color: white !important;
}
.disabled-blast{
    width: 100%;
    height: 100%;
    background-color: #F5F5F5 ;
    opacity: .75;
    cursor: help;
}
.disabled-blast img { opacity: 0.75 }
.disabled-option{
    opacity: 0.75;
    pointer-events: none;
}
.not-approved{
    background: #A6AFBC !important;
}
.rejected{
    background: #FC3838 !important;
}
.approved{
    background: #75B581 !important;
}
.pending-client-approval{
    background: #FEB308 !important;
}
.in-queue{
    background:  #FE8C08 !important;
}
.sent{
    background:  #27953C !important;
}
#latest-system-notification{
    right: -35%;
    max-height: 50vh;
    height: 100%;
}
.whats-new{
    border-top-left-radius: 15px 15px;
    border-top-right-radius: 15px 15px;
    background-color: #3c4455;
    color:white;
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
}
.whats-new p{
    padding-top: 1rem;
    padding-left: 1rem;
}
.close-button-override{
    color: white !important;
}
.close-button-override span{
    display: none;
    color: white;
}
.system-message{
    background-color: #f2b224;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.system-message i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #424753;
}
.notification-content{
   margin-top: 15%;
    overflow-y:scroll !important;
    overflow-x: hidden !important;
    height: 80%;
}
.copy-hide-defaults i:before{
    cursor: default !important;
}
.copy-hide-defaults span{
    cursor: default !important;
}
.copy-hide-defaults i.fa-edit{
    display: none !important;
}
.tags-label {
    white-space: normal;
}
#man-on-the-hub-container {
    position: relative;
    min-height: 300px;
}

#man-on-the-hub {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/man-on-the-hub.png');
    background-size: cover;
    background-position: 50% 15%;
}

#revolutionize {
    background-color: #363636;
    color: #FEFEFE;
    padding: 50px;
}

#revolutionize h2 {
    color: #FEFEFE;
    line-height: 1.1;
    margin-bottom: 20px;
}

#revolutionize p {
    margin-bottom: 40px;
    font-size: 14px;
    font-size: 14px;
    line-height: 24px;
    text-rendering: optimizeLegibility;
    letter-spacing: 1px;
}
.recent-listings{
    padding: 1rem;
}
.listing-card {
    border: 1px solid #C7C7C7;
    padding: 8px;
    color: #252525;
    margin: 8px;
}

.listing-card .img-container {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 300px;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.2);
}

.listing-card img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.listing-card h4, .listing-card h5 {
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.listing-card h5 {
    margin-top: 10px;
    font-size: 14px;
}


.listing-card.search-result .img-container {
    width: 600px;
}

.listing-result-card {
    position: relative;
    border: 1px solid #C7C7C7;
    margin-bottom: 10px;
    color: #252525;
    height: auto;
}

.listing-info {
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-card .listing-title {
    display: block;
    font-size: 18px;
    color: #252525;
    font-weight: bold;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listings-only-sidebar li{
    list-style: none;
    font-size: 14px;
    padding: 0.25rem 0.5rem;
}

.listings-only-sidebar li a{
    list-style: none;
    font-size: 14px;
    color: #363636;
    letter-spacing: 1.1px;
}

.listings-only-sidebar-selected{
    background-color: #ededed;
    font-weight: bold;
    font-size: 18px;
    color: #363636;
}
.listings-only-sidebar-selected-leads{
    background-color: #EDEDED;
    font-weight: normal;
}
.card-title{
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.card-text{
    text-align: center;
    text-transform: uppercase;
}
.card-button{
    text-align: center;
    width: 100%;
    background-color: transparent;
    color: #4578E5;
    border-color: #4578E5;
    border: 1px solid #4578E5;
    text-transform: uppercase;
    font-weight: bold;
}
.back-to-marketplace{
    color:#4578E5;
    text-transform: uppercase;
}
.listings-only-top a{
    color:#4578E5;
    text-transform: uppercase;
    font-weight: bold;
}
.listings-only-top h1{
    color: #363636;
}
.listings-only-image-container{
    width: 100% !important;
}
.listing-type-with-favorite{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FBBC05FF;
    padding: 10px;
    text-align: center;
    z-index: 1000; /* Ensure it stays on top */
}
.cookie-consent-bar .button{
    margin-bottom: 0px;
}

.cookie-consent-bar {
    background-color: #f5f5f5; /* Light grey background */
    color: #333; /* Dark text for contrast */
    padding: 15px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
    z-index: 1000; /* Ensure it's above other elements */
}

.cookie-consent-bar p {
    margin: 0;
    line-height: 1.5;
}

.cookie-settings-link {
    color: #0078d4; /* Blue link color */
    margin-left: 0px;
    margin-right: 0px;
    text-decoration: underline;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus {
    color: #0056b3; /* Darker blue on hover/focus */
    text-decoration: none;
}

.button.small.success {
    background-color: #FBAF33; /* Green button for 'agree' action */
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
}

.button.small.success:hover {
    background-color: #E09F2B; /* Darker green on hover */
}

.cookie-consent-form .switch{
    color: black !important;
}

.cookie-consent-form #saveSettingsButton{
    margin-left: 0px;
}
.additional-field-link{
    display: inline-block; /* or block */
    width: 200px; /* adjust the width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.listing-only-tip .cell h2,
.listing-only-tip .cell span {
    display: inline-block;
}
