/* Universal ==================================================== */
* {
    padding: 0;
    margin: 0;
    font-family: aktiv-grotesk, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #6e6e6e;
}
h1 {
    font-size: 1.875em;
    margin-bottom: 0.125em;
}
h2 {
    font-size: 1.125em;
    color: #9b9b9b;
}
p {
    margin-bottom: 0.25em;
}
a {
    color: #94ba2d;
    text-decoration: none;
    cursor: pointer;
}
ul li {
    list-style: none;
}
ol li {
    margin: 0.25em 15px;
}
i {
    font-size: 1.25em;
}
button {
    cursor: pointer;
}

/* Loading overlay */
#loading-overlay {
    z-index: 10000;

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

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

    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.loading-overlay-spinner {
    width: 96px;
    height: 96px;
    border: 10px solid #fff;
    border-bottom-color: #a1cd3a;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: loading-overlay-spinner-rotation 1s linear infinite;
}

@keyframes loading-overlay-spinner-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Wrapper & Sidebar ==================================================== */
#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    height: 100%;
    justify-content: space-between;
}
#sidebar-left {
    box-sizing: border-box;
    padding: 25px 15px 0;
    width: 18%;
    height: 100%;
    position: relative;
    min-width: 215px;
    background-color: #f5f5f5;
}
#navigation {
    margin-top: 10px;
}
#sidebar-left .link {
    color: #9c9c9c;
    font-size: 1em;
    text-decoration: none;
}
#sidebar-left .link.active {
    color: #94ba2d;
    font-size: 1.5em;
    font-weight: 300;
}
#sidebar-left .link.active-small {
    color: #94ba2d;
    font-size: 1.25em;
    font-weight: 300;
}
#sidebar-left li {
    margin-bottom: 0.5em;
}
#sidebar-left ul ul li {
    margin-bottom: 0.75em;
    font-size: 0.85em;
    padding-left: 15px;
}
#sidebar-left ul ul li .link.active {
    font-size: 1.25em;
}
#header {
    box-sizing: border-box;
    position: absolute;
    bottom: 15px;
}
#header .logo img {
    height: 60px;
}
#header p {
    margin-top: 0.5em;
    font-size: 0.75em;
    color: #9c9c9c;
}
#header p.link {
    margin-top: 0.5em;
    font-size: 0.75em;
    color: #94ba2d;
}
#header p i {
    font-size: 0.8em;
    color: #9c9c9c;
}
.logo {
    width: 100%;
}
.logo img {
    max-height: 57px;
    max-width: 100%;
}
#sidebar-right {
    width: 22%;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 25px 15px 0;
    text-align: right;
    overflow-y: scroll;
}
#order-info h1,
#quote-info h1 {
    font-size: 2.25em;
    color: #bababa;
}
#order-info h2,
#quote-info h2 {
    font-size: 1.5em;
    color: #94ba2d;
}
#order-info h3,
#quote-info h3 {
    color: #bababa;
    font-weight: 300;
    font-size: 1.125;
    margin-top: 0.5em;
}
#customer-service-wrapper {
    overflow-y: scroll;
    box-sizing: border-box;
    padding-bottom: 25px;
    margin-top: 25px;
}
.customer-service {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    margin-top: 25px;
}
.customer-service .link {
    color: #94ba2d;
    cursor: pointer;
}
.customer-service:first-of-type {
    margin-top: 0;
}
.customer-service h2 {
    font-size: 1.5em;
    font-weight: 300;
    color: #bababa;
    margin: 0.25em 0;
}
.customer-service p {
    color: #bababa;
    margin-bottom: 0.25em;
}
.avatar {
    border-radius: 100px;
    border: 2px solid #94ba2d;
    overflow: hidden;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar img {
    height: 100%;
}
.avatar i {
    font-size: 50px;
    color: #808080;
    /* align-self: center;
    justify-self: center; */
}
#content {
    width: 60%;
    position: relative;
    overflow-y: scroll;
    padding-left: 15px;
    box-sizing: border-box;
}
#content-wide {
    width: 82%;
    position: relative;
    overflow-y: scroll;
    padding: 0 15px;
    box-sizing: border-box;
}
#content-full {
    width: 100%;
    position: relative;
    overflow-y: scroll;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Order Header ==================================================== */
#order-header,
#quote-header {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
    margin-bottom: 15px;
}
#order-header h1,
#quote-header h1 {
    color: #9f9f9f;
}
#order-header h2,
#quote-header h2 {
    color: #bababa;
}
#order-contact-info {
    margin-top: 1em;
}
#order-header #customer-name i {
    color: #9f9f9f;
}

/* Timeline ==================================================== */
#timeline-wrapper {
    overflow-y: scroll;
}
#timeline-graphics {
    margin-top: 25px;
    align-items: center;
}
#timeline-items {
    flex-grow: 1;
}
#timeline-items h2 {
    font-weight: 300;
}
#timeline-items i {
    color: #6e6e6e;
}
#timeline-items .item {
    box-sizing: border-box;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    margin-left: 30px;
}
#timeline-items .item:first-of-type {
    border-top: none;
}
#timeline-items .active h1 {
    color: #94ba2d;
}
#timeline-graphics .active i {
    color: #94ba2d;
}
#timeline-graphics .pending i {
    color: #eaeaea;
}
#timeline-graphics .complete i {
    color: #6e6e6e;
}
#timeline-items .pending h1,
.pending h2 {
    color: #bababa;
}
#timeline-graphics .vertical-line {
    width: 1px;
    border-left: 1px solid #ddd;
    margin: 10px 0;
}
#timeline-items p.large-info {
    font-size: 1.75em;
    margin-top: 15px;
    color: #8b8b8b;
}
#timeline-items .device-count-wrapper {
    margin-top: 10px;
    justify-content: flex-start;
}
#timeline-items .device-graphic {
    margin-top: 15px;
}
#timeline-items p.large-date {
    font-size: 1.5em;
    color: #8b8b8b;
}
#timeline-items #pickup-info i {
    font-size: 1.5em;
    color: #9b9b9b;
    margin-top: 2px;
}
#timeline-items #pickup-info p.small {
    font-size: 0.9em;
    color: #808080;
    margin-bottom: 0.75em;
}
#timeline-wrapper p.link {
    color: #94ba2d;
    cursor: pointer;
}
#timeline p.refInfo {
    margin-top: 1em;
    font-size: .85em;
}
#timeline-items #locked-info i {
    margin-top: 1.25em;
    font-size: 1.25em;
    color: #9b9b9b;
}
/* Quote ==================================================== */
#quote-wrapper {
    overflow-y: scroll;
}
#quote-wrapper p.min_value {
    font-size: 1em;
    color: #bababa;
    margin-top: 10px;
}
#quote-wrapper .min_value_large {
    font-size: 1.5em;
    color: #8b8b8b;
    margin-top: 10px;
}
#quote-wrapper p.min_value_terms {
    font-size: 0.85em;
    color: #bababa;
    margin-top: 5px;
}
#quote-wrapper p.terms {
    font-size: 0.75em;
    color: #bababa;
    margin-top: 10px;
}
.quote-item-list {
    margin-bottom: 15px;
}
.quote-item-list .list-col-1 {
    width: 42%;
}
.quote-item-list .list-col-2 {
    width: 10%;
    text-align: right;
}
.quote-item-list .list-col-3 {
    width: 18%;
    text-align: right;
}
.quote-item-list .list-col-4 {
    width: 30%;
    text-align: right;
}
.quote-item-list p.small {
    font-size: 0.875em;
    color: #bababa;
}
#wrapper.hide-pricing #quote-wrapper .quote-item-list .list-col-2 {
    width: 58%;
}
#wrapper.hide-pricing #quote-wrapper .summary {
    justify-content: flex-start;
}
#wrapper.hide-pricing #quote-wrapper .summary > div {
    width: 64%;
}
#wrapper.hide-pricing #quote-wrapper .summary > div:first-child {
    width: 36%;
}
#wrapper.hide-pricing #quote-wrapper .device-count-wrapper {
    justify-content: flex-start;
}
/* Quote List ==================================================== */
#quote-list-wrapper {
    overflow-y: scroll;
}
#quote-list .list-col-1 {
    width: 12%;
}
#quote-list .list-col-2 {
    width: 40%;
}
#quote-list .list-col-3 {
    width: 12%;
}
#quote-list .list-col-4 {
    width: 14%;
}
#quote-list .list-col-5 {
    width: 10%;
}
#quote-list .list-col-6 {
    width: 12%;
    text-align: right;
}
#quote-list p.small {
    font-size: 0.875em;
    color: #bababa;
}

/* Order List ==================================================== */
#order-list-wrapper {
    overflow-y: scroll;
}
#order-list .list-col-1 {
    width: 12%;
}
#order-list .list-col-2 {
    width: 32%;
}
#order-list .list-col-3 {
    width: 12%;
}
#order-list .list-col-4 {
    width: 14%;
}
#order-list .list-col-5 {
    width: 10%;
}
#order-list .list-col-6 {
    width: 20%;
    text-align: right;
}
#order-list p.small {
    font-size: 0.875em;
    color: #bababa;
}

/* Evaluation ==================================================== */
#eval-wrapper {
    overflow-y: scroll;
    padding-bottom: 50px;
}
#eval-wrapper .eval-totals-wrapper {
    margin-top: 10px;
    justify-content: center;
}
#eval-wrapper .eval-totals {
    align-items: flex-end;
    margin-right: 15px;
    color: #bababa;
}
#eval-wrapper .eval-totals-wrapper p {
    font-size: 0.75em;
    color: #6e6e6e;
}
#eval-wrapper .eval-totals p {
    color: #bababa;
}
#device-summary-list .list-col-1 {
    width: 30%;
}
#device-summary-list .list-col-2 {
    width: 10%;
    text-align: right;
}
#device-summary-list .list-col-3 {
    width: 20%;
    text-align: right;
}
#device-summary-list .list-col-4 {
    width: 20%;
    text-align: right;
}
#device-summary-list .list-col-5 {
    width: 20%;
    text-align: right;
}
#device-summary-list p.small {
    font-size: 0.875em;
    color: #bababa;
}
#accessory-list .list-col-1 {
    width: 42%;
}
#accessory-list .list-col-2 {
    width: 10%;
    text-align: right;
}
#accessory-list .list-col-3 {
    width: 22%;
    text-align: right;
}
#accessory-list .list-col-4 {
    width: 26%;
    text-align: right;
}
#credits-deductions-list .list-col-1 {
    width: 25%;
}
#credits-deductions-list .list-col-2 {
    width: 55%;
}
#credits-deductions-list .list-col-3 {
    width: 20%;
    text-align: right;
}
#customer-name {
    align-items: center;
    color: #9f9f9f;
}
#customer-name.inline-items > * {
    margin-right: 10px;
}
#customer-name a i {
    color: #9f9f9f;
}
/* Hide Pricing =================================== */
#wrapper.hide-pricing #eval-wrapper #device-summary-list .list-col-2 {
    width: 70%;
    text-align: right;
}
#wrapper.hide-pricing #eval-wrapper #accessory-list .list-col-1 {
    width: 42%;
}
#wrapper.hide-pricing #eval-wrapper #accessory-list .list-col-2 {
    width: 58%;
    text-align: right;
}
#wrapper.hide-pricing #eval-wrapper .summary {
    justify-content: flex-start;
}
#wrapper.hide-pricing #eval-wrapper .summary > div {
    width: 64%;
}
#wrapper.hide-pricing #eval-wrapper .summary > div:first-child {
    width: 36%;
}
#wrapper.hide-pricing #eval-wrapper .device-count-wrapper,
#wrapper.hide-pricing #eval-wrapper .eval-totals-wrapper {
    justify-content: flex-start;
}
/* Evaluation Detail ==================================================== */
#eval-detail-wrapper .list-title {
    /* justify-content: flex-start; */
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
#eval-detail-wrapper .list-title div.flex-row {
    justify-content: space-between;
    align-items: center;
}
#eval-detail-wrapper .list-title i,
#org-contacts-list .list-header i,
#detail-list .list-header i {
    color: #9f9f9f;
    margin-right: 15px;
}
#eval-detail-wrapper .list-filters {
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 15px;
}
#eval-detail-wrapper a#sort-menu {
    font-size: 1.125em;
    padding: 15px 0;
}
#eval-detail-wrapper .dropdown {
    position: relative;
    display: inline-block;
}
#eval-detail-wrapper .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 15px;
}
#eval-detail-wrapper .dropdown-content p {
    color: #8b8b8b;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
#eval-detail-wrapper .dropdown-content i {
    color: #8b8b8b;
    margin-right: 10px;
}
#eval-detail-wrapper .dropdown-content p:hover {
    background-color: #ddd;
}
#eval-detail-wrapper .dropdown:hover .dropdown-content {
    display: block;
}
#eval-detail-wrapper .dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

#eval-detail-wrapper #sort-menu i {
    color: #94ba2d;
    margin-right: 15px;
}
#eval-detail-wrapper .list-title .search i {
    color: #9f9f9f;
    font-size: 0.75em;
    position: absolute;
    padding: 14px;
}
::-webkit-input-placeholder {
    /* Edge */
    color: #ccc;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ccc;
}

::placeholder {
    color: #ccc;
}
#eval-detail-wrapper {
    padding-bottom: 50px;
}
#eval-detail-wrapper .list-header .list-col-1 {
    width: 18%;
}
#eval-detail-wrapper .list-header .list-col-2 {
    width: 22%;
}
#eval-detail-wrapper .list-header .list-col-3 {
    width: 15%;
    text-align: right;
}
#eval-detail-wrapper .list-header .list-col-4 {
    width: 7%;
    margin-left: 3%;
}
#eval-detail-wrapper .list-header .list-col-5 {
    width: 35%;
    text-align: right;
}
#eval-detail-wrapper .list-item .list-col-1 {
    width: 18%;
}
#eval-detail-wrapper .list-item .list-col-2 {
    width: 22%;
}
#eval-detail-wrapper .list-item .list-col-3 {
    width: 15%;
    text-align: right;
}
#eval-detail-wrapper .list-item .list-col-4 {
    width: 7%;
    margin-left: 3%;
    text-align: center;
}
#eval-detail-wrapper .list-item .list-col-5 {
    width: 4%;
    margin-left: 3%;
}
#eval-detail-wrapper .list-item .list-col-6 {
    width: 7%;
    margin-left: 3%;
}
#eval-detail-wrapper .list-item .list-col-7 {
    width: 18%;
    text-align: right;
}
#eval-detail-wrapper .list-sub-summary-1 .list-col-1,
#eval-detail-wrapper .list-sub-summary-2 .list-col-1 {
    width: 43%;
}
#eval-detail-wrapper .list-sub-summary-1 .list-col-2,
#eval-detail-wrapper .list-sub-summary-2 .list-col-2 {
    width: 37%;
    text-align: right;
}
#eval-detail-wrapper .list-sub-summary-1 .list-col-3,
#eval-detail-wrapper .list-sub-summary-2 .list-col-3 {
    width: 20%;
    text-align: right;
}
#eval-detail-wrapper #asset-list {
    overflow-y: scroll;
}
/* Hide Pricing =================================== */
#wrapper.hide-pricing #eval-detail-wrapper .list-header .list-col-1 {
    width: 30%;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-header .list-col-2 {
    width: 30%;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-header .list-col-3 {
    width: 40%;
    text-align: right;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-item .list-col-1 {
    width: 30%;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-item .list-col-2 {
    width: 30%;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-item .list-col-3 {
    width: 14%;
    margin-left: 3%;
    text-align: right;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-item .list-col-4 {
    width: 10%;
    margin-left: 3%;
    text-align: right;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-item .list-col-5 {
    width: 10%;
    text-align: right;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-sub-summary-1 .list-col-1,
#wrapper.hide-pricing #eval-detail-wrapper .list-sub-summary-2 .list-col-1 {
    width: 63%;
}
#wrapper.hide-pricing #eval-detail-wrapper .list-sub-summary-1 .list-col-2,
#wrapper.hide-pricing #eval-detail-wrapper .list-sub-summary-2 .list-col-2 {
    width: 37%;
    text-align: right;
}

/* Request Quote ==================================================== */
#wrapper.hide-links .hide-links {
    display: none;
}
#req-wrapper {
    overflow-y: scroll;
}
#uploads,
#uploadsAlt,
.attachment {
    background-color: #f8f8f8;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    align-items: center;
    width: fit-content !important;
}
#uploads p,
#uploadsAlt p {
    margin-bottom: 0;
}
#filename,
#filenameAlt,
.filename {
    margin-right: 10px;
}
#docIcon,
#docIconAlt,
.docIcon {
    margin-right: 10px;
}
#req-item-list .list-col-1 {
    width: 63%;
}
#req-item-list .list-col-2 {
    width: 15%;
    text-align: right;
}
#req-item-list .list-col-3 {
    width: 10%;
    text-align: right;
}
#req-item-list .list-col-4 {
    width: 12%;
    text-align: right;
}
#comment-input,
#opp_notes {
    box-sizing: border-box;
    width: 100%;
    height: 250px;
    border: 1px solid #ddd;
    border-radius: 13px;
    margin: 5px 0 20px;
    padding: 10px;
    outline: #9fc72b;
}
#comments {
    margin: 50px 0;
}
#comments button {
    width: 150px;
    height: 50px;
    align-self: center;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
}
#req-item-list p.small {
    font-size: 0.875em;
    color: #bababa;
}
#message-input-wrapper #attachmentButton i {
    font-weight: 700;
    font-size: 1.5em;
}
#message-input-wrapper #uploads .link {
    margin-bottom: 0;
}
#message-input-wrapper #attachmentButton i,
#message-input-wrapper #uploads i {
    font-size: 1.5em;
}

/* Messagess by Contact ==================================================== */
#messages-content {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 100%;
    width: 82%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
#messages-content-da {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
#messages-header {
    height: 60px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 0 25px;
    /* background-color: #F9F9F9; */
    box-sizing: border-box;
}
#messages-header h1 {
    font-size: 1.25em;
    color: #9f9f9f;
}
#messages-header .search i {
    color: #9f9f9f;
    font-size: 0.75em;
    position: absolute;
    padding: 14px;
}
#messages-wrapper {
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
}
#messages-content-da #messages-wrapper {
    top: 0;
}
#messages-wrapper #contact-list {
    width: 135px;
    height: 100%;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    overflow: scroll;
}
#messages-wrapper #contact-list .cs-contact-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.75em;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
#messages-wrapper #contact-list .cs-contact-item .avatar {
    margin-bottom: 10px;
    background-color: #fff;
}
#messages-wrapper #contact-list div.active {
    background-color: #f5f5f5;
}
#messages-wrapper #contact-list .cs-contact-item p.link {
    margin-top: 0.5em;
}
#message-list-wrapper {
    box-sizing: border-box;
    padding: 25px 25px 0;
    position: absolute;
    top: 0;
    bottom: 250px;
    left: 135px;
    right: 0;
    overflow-y: scroll;
}
#message-list {
    overflow-y: hidden;
    flex-direction: column-reverse;
    justify-content: flex-end;
}
#message-list div:first-child {
    box-sizing: border-box;
    margin-bottom: 10px;
    max-width: 75%;
}
#message-list p.message {
    padding: 8px 10px;
    border-radius: 15px;
    box-sizing: border-box;
}
#message-list .sent {
    align-self: flex-end;
}
#message-list .sent p.message {
    color: #fff;
    background-color: #1c8ef9;
    border-bottom-right-radius: 0;
}
#message-list .received {
    align-self: flex-start;
}
#message-list .received #uploadsAlt {
    margin-top: 8px;
}
#message-list .received p.message,
#message-list .received #uploadsAlt {
    color: #6e6e6e;
    background-color: #f4f4f4;
    border-bottom-left-radius: 0;
}
#message-list .date {
    font-size: .65em;
    letter-spacing: .025em;
    margin: 15px 0 5px;
    color: rgb(160, 160, 160);
    text-align: center;
}
#message-input-wrapper {
    position: absolute;
    height: 250px;
    bottom: 0;
    left: 135px;
    right: 0;
    display: flex;
    /* justify-content: space-between; */
    padding: 15px;
    padding-right: 25px;
    /* border-top: 1px solid #DDD; */
    box-sizing: border-box;
    /* align-items: center; */
}
#message-input-wrapper i {
    font-size: 2em;
    margin-right: 15px;
}
#message-input-wrapper .link {
    margin-bottom: 25px;
}
#message-input-wrapper .link {
    height: fit-content;
}
#message-inputs {
    width: 100%;
    margin-right: 25px;
    justify-content: flex-start;
    height: 100%;
}
#message-inputs > * {
    border: 1px solid #ddd;
    border-radius: 13px;
    padding: 10px;
    margin-bottom: 5px;
    /* min-height: 35px; */
}
#message-input {
    box-sizing: border-box;
    flex-grow: 1;
    resize: none;
    outline: #9fc72b;
    margin-bottom: 0;
}
#message-inputs .messageError {
    border: 1px solid red;
}

/* MDM Integration ==================================================== */
#axm-setup h1 {
    font-size: 3.5em;
    font-weight: 700;
}
#axm-setup h2 {
    color: #6e6e6e;
    margin: 1.25em 0 0;
    font-weight: 700;
}
#axm-setup > p,
#full-clarity p {
    margin-top: 0.75em;
}
#axm-setup button {
    margin-top: 40px;
}
#axm-setup #file-error {
    margin-top: 50px;
}
#kandji-setup,
#axm-setup {
    padding: 50px;
    max-width: 650px;
}
#full-clarity {
    padding: 50px;
    width: 835px;
    align-self: center;
    display: flex;
    align-items: center;
}
#kandji-setup #alert-message {
    width: 100%;
}
#kandji-setup .label {
    margin: 20px 0 0;
    justify-content: space-between;
    align-items: center;
    max-width: 525px;
}
#kandji-setup #buttons {
    margin-top: 35px;
}
#kandji-setup .label p {
    margin-bottom: 0;
}
#kandji-setup .label label {
    font-size: 1.25em;
}
#kandji-setup h1 {
    margin-top: 1em;
    /* font-size: 1.25em; */
}
#full-clarity .logo {
    border-bottom: 1px solid #d8d8d8;
    justify-content: center;
    display: flex;
}
#full-clarity .logo img {
    max-height: 100px;
}
#full-clarity .kandji img {
    max-height: 100px;
    margin-top: 24px;
}
#full-clarity div.col {
    max-width: 275px;
    display: flex;
    flex-direction: column;
}
#full-clarity div.col img {
    max-height: 100px;
}
#full-clarity #buttons {
    margin-top: 0px;
}
#mdm-processing {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
#mdm-processing > * {
    margin-bottom: 20px;
}
#mdm-processing .logo {
    max-width: 250px;
}
#mdm-processing .logo img {
    max-height: 285px;
}
#axm-setup .wide > button {
    width: auto;
    padding-left: 18px;
    padding-right: 18px;
}
/* My Account ==================================================== */
#account-info {
    height: 100%;
    position: relative;
    padding: 25px 0;
}

#account-info div,
#kandji-setup div {
    align-items: center;
    margin: 10px 0;
}
#account-info input,
#kandji-setup input {
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 13px;
    padding: 10px;
    outline: #9fc72b;
    margin: 8px 0 20px;
    width: 550px;
}
#kandji-setup button,
#axm-setup button,
#full-clarity button,
#support-form #submitButton {
    width: 150px;
    height: 50px;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
    margin-right: 10px;
}
#kandji-setup button.cancel,
#axm-setup button.cancel {
    border: 1px solid #787878;
    background-color: #fff;
    color: #787878;
}
#account-info button {
    width: 150px;
    height: 50px;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
    position: absolute;
    bottom: 15px;
    right: 15px;
}
#account-info i {
    margin-right: 8px;
    font-size: 1.5em;
}
#account-info p.checked i {
    color: #9fc72b;
}
#alert-message {
    border-radius: 13px;
    padding: 15px;
    font-size: 0.85em;
    font-weight: 500;
    width: 350px;
    box-sizing: border-box;
    text-align: center;
    margin: 1em 0;
}
#alert-message.error {
    background-color: rgba(179, 36, 36, 0.1);
    color: rgba(179, 36, 36, 0.5);
}
#alert-message.success {
    background-color: rgba(141, 179, 36, 0.1);
    color: rgba(67, 87, 14, 0.75);
}
#submit-error {
    border-radius: 13px;
    padding: 15px;
    font-size: 0.85em;
    font-weight: 500;
    width: 350px;
    box-sizing: border-box;
    text-align: center;
    margin: 1em 0;
    background-color: rgba(179, 36, 36, 0.1);
    color: rgba(179, 36, 36, 0.5);
    align-self: center;
}
/* Manage Contacts ==================================================== */
#org-contacts-list-wrapper {
    overflow-y: scroll;
}
#org-contacts-list .list-item {
    align-items: center;
}
#org-contacts-list .list-item i {
    margin-left: 10px;
    color: #9b9b9b;
}
#org-contacts-list .list-col-1 {
    width: 30%;
}
#org-contacts-list .list-col-2 {
    width: 40%;
}
#org-contacts-list .list-col-3 {
    width: 10%;
    justify-content: flex-start;
    align-items: center;
}
#org-contacts-list .list-col-4 {
    width: 12%;
    text-align: right;
}
#org-contacts-list .list-col-5 {
    width: 8%;
    text-align: right;
}
#org-contacts-list .inactive .list-col-4 {
    width: 20%;
}

#org-contacts-list .list-header .list-col-1 {
    width: 40%;
}
#org-contacts-list .list-header div.list-col-2 {
    font-size: 0.75em;
    width: 60%;
    justify-content: flex-end;
}
#org-contacts-list .list-header div.list-col-2 h1 {
    margin-left: 15px;
}
#org-contacts-list .list-header a i {
    margin-right: 15px;
}

/* Login ==================================================== */
#login-content {
    box-sizing: border-box;
    padding: 15px;
    max-width: 523px;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    /* overflow-y: scroll;
    height: 100%; */
}
#login-logo img {
    max-width: 100%;
    margin-top: 50px;
}
.login-inputs {
    width: 300px;
    margin-top: 25px;
}
.login-inputs input {
    box-sizing: border-box;
    border: 1px solid #c7c7c7;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 25px;
    width: 100%;
}
.login-inputs label {
    font-size: 1.125em;
    font-weight: 300;
    padding-left: 10px;
    margin-bottom: 5px;
}
.login-buttons .link {
    box-sizing: border-box;
    padding: 20px 55px;
    text-align: center;
    color: #fff;
    background-color: #94ba2d;
    border-radius: 50px;
    margin-top: 45px;
}
.login-request {
    align-items: center;
    margin-top: 20px;
}
.login-request p {
    font-size: 1.125em;
    margin-bottom: 0.5em;
}
.login-request a.link {
    font-size: 1em;
    margin-bottom: 0.5em;
}
#login-error,
#contact-error,
#alt-error,
#call-error,
#payment-error,
#eval-error {
    margin-top: 20px;
    border-radius: 13px;
    padding: 12px;
    font-size: 0.85em;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(179, 36, 36, 0.1);
    color: rgba(179, 36, 36, 0.75);
}
#file-error {
    margin-bottom: 20px;
    border-radius: 13px;
    padding: 12px;
    font-size: 0.85em;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
#content-wide .success-message {
    background-color: rgba(122, 179, 36, 0.1);
    color: #6e891e;
}
#content-wide .error-message {
    background-color: rgba(179, 36, 36, 0.1);
    color: rgba(179, 36, 36, 0.75);
}
#survey-error {
    margin-bottom: 20px;
    border-radius: 13px;
    padding: 12px;
    font-size: 0.85em;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(179, 36, 36, 0.1);
    color: rgba(179, 36, 36, 0.75);
}
#footer {
    box-sizing: border-box;
    /* position: absolute;
    bottom: 0; */
    justify-self: flex-end;
    align-items: center;
    width: 100%;
    padding: 25px;
    background-color: #f5f5f5;
}
#footer .logo {
    height: 60px;
    width: 178px;
}
#footer .logo img {
    height: 60px;
}
#footer p {
    margin-top: 0.5em;
    font-size: 0.75em;
    color: #9c9c9c;
    margin-right: 15px;
}
#footer p.link {
    margin-top: 0.5em;
    font-size: 0.75em;
    color: #94ba2d;
}
#footer p i {
    font-size: 0.8em;
    color: #9c9c9c;
}
/* Terms Agreement ==================================================== */
#terms-agreement {
    box-sizing: border-box;
    padding: 15px;
    width: 640px;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    overflow-y: scroll;
    height: 100%;
}
#terms-agreement #login-logo img {
    width: 300px;
    margin: 50px 0;
}
.box-shadow {
    box-sizing: border-box;
    padding: 25px;
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.content-box-wrapper {
    width: 100%;
    height: 250px;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 15px;
    box-sizing: border-box;
}
.content-box {
    width: 100%;
    overflow-y: scroll;
    height: 100%;
}
.content-box p {
    margin-bottom: 0.75em;
}
#terms-checkbox,
#schedule-checkbox,
#contact-checkbox {
    margin-right: 8px;
}
#terms-checkbox.checked i,
#schedule-checkbox.checked i,
#contact-checkbox.checked i,
#admin-checkbox.checked i,
#pricing-checkbox.checked i,
#docs-checkbox.checked i,
#images-checkbox.checked i,
#mdm-checkbox.checked i {
    color: #9fc72b;
}
#contact-modal div i {
    margin-right: 5px;
}
#contact-modal p i {
    margin-right: 15px;
}
#terms-agreement button,
#reqModal button {
    width: 150px;
    height: 50px;
    align-self: center;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
    margin-top: 25px;
}
#wrapper button:disabled {
    background-color: #cdcdcd;
    cursor: not-allowed;
}
/* Account Confirmation ==================================================== */
#account-confirmation {
    box-sizing: border-box;
    padding: 15px;
    width: 640px;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    overflow-y: scroll;
    height: 100%;
    text-align: center;
}
#account-confirmation .box-shadow {
    padding: 40px 15px;
}
#account-confirmation #login-logo img {
    width: 300px;
    margin: 50px 0;
}
#account-confirmation p {
    font-size: 1.125em;
    font-weight: 300;
}
#account-confirmation p.large {
    font-size: 2em;
    font-weight: 500;
    margin: 1.25em 0;
}
#account-confirmation button {
    width: 150px;
    height: 50px;
    align-self: center;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
    margin-top: 25px;
}
/* Request Quote - New Contact ==================================================== */
#quote-request-new {
    box-sizing: border-box;
    padding: 15px;
    width: 750px;
    margin: 0 auto;
}
#quote-request-new #page-title {
    width: 100%;
    justify-content: space-between;
}
#quote-request-new #page-title h1 {
    font-size: 2.25em;
    color: #b9bab9;
}
#quote-request-new #page-title img {
    height: 41px;
}
#quote-request-new #page-title img#partner-logo {
    height: 60px;
}

/* Request Quote - New Account ==================================================== */
#quote-request-new #buttons {
    justify-content: space-between;
}
#quote-request-new #buttons button,
.modal-window #buttons button {
    width: 150px;
    height: 50px;
    align-self: center;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
    margin-bottom: 25px;
}
#quote-request-new #buttons .cancel,
.modal-window #buttons .cancel {
    background-color: #cdcdcd;
}
#quote-request-new #account-info,
.modal-window .modal-content {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
}
#quote-request-new #account-info div,
.modal-window .modal-content div {
    align-items: flex-start;
    width: 45%;
}
#quote-request-new #account-info div.wide {
    align-items: flex-start;
    width: 100%;
}
#quote-request-new #account-info input,
.modal-window .modal-content input,
.modal-window .modal-content select {
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
}
#quote-request-new input.invalid,
.modal-window input.invalid,
.modal-window select.invalid {
    border: 1px solid rgba(179, 36, 36, 0.5);
}
#quote-request-new #alert-message,
.modal-window #alert-message {
    border-radius: 13px;
    padding: 15px;
    font-size: 0.85em;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(179, 36, 36, 0.1);
    color: rgba(179, 36, 36, 0.75);
    margin-top: 25px;
}

/* Modal ==================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.modal-window {
    background-color: #fefefe;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    border: 1px solid #888;
    overflow-y: scroll;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 10px;
}
#spinner {
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    width: 150px;
    height: 50px;
}
#comments #spinner {
    align-self: center;
}

.modal-window .page-title {
    width: 100%;
    justify-content: space-between;
}
.modal-window .page-title h1 {
    font-size: 2.25em;
    color: #b9bab9;
}
.modal-window .page-title span {
    font-size: inherit;
    color: inherit;
}
.modal-content {
    padding: 25px 0;
}
.modal-content div.wide {
    width: 100%;
}
.modal-content input,
.modal-content select,
.modal-content textarea,
#account-info select {
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 13px;
    padding: 10px;
    outline: #9fc72b;
    margin: 8px 0 10px !important;
    width: 100%;
}
.modal-content textarea {
    height: 250px;
}
.modal-content .small {
    font-size: 0.875em;
    color: #707070;
    font-weight: 300;
}
.modal-content div {
    margin: 10px 0;
}
.modal-content .desktop,
.modal-content .laptop,
.modal-content .mobile,
.modal-content .tablet {
    display: none;
}
.modal-window #buttons {
    justify-content: space-around;
}
.modal-window #buttons button {
    margin-bottom: 0;
}
#device-modal .modal-window {
    width: 750px;
}
#device-modal .modal-content div {
    width: 30%;
}
#upload-modal .modal-window,
#client-list-modal .modal-content {
    width: 500px;
}
#client-list-modal .modal-content {
    height: 500px;
    padding-top: 0;
}
#client-list {
    overflow-y: scroll;
    width: 100%;
    border-top: 1px solid #ddd;
}
#client-list div {
    width: 100%;
    cursor: pointer;
}
#e-sign-modal .modal-window,
#next-steps-modal .modal-window,
#cs-options-modal .modal-window,
#alteration-modal .modal-window {
    width: 650px;
}
#signature-input {
    justify-content: space-between;
}
#signature-header img {
    height: 50px;
}
#e-sign-logo {
    color: #b9bab9;
    font-size: 1.25em;
    /* align-items: center; */
}
#e-sign-logo h1 {
    color: #b9bab9;
    font-size: 1.25em;
}
#detail-header img {
    height: fit-content;
    width: 200px;
    margin-bottom: 20px;
}
#detail-header #description {
    text-align: right;
     color: #393939
}
#detail-header .right {
   max-width: 300px;
}
#detail-modal .modal-window {
    width: 700px;
}
#detail-modal h1 {
    font-size: 1.75em;
}
#asset-images {
    justify-content: space-between;
}
.asset-image {
    width: 200px;
    /* border: 1px solid #CCC; */
    border-radius: 10px;
}
.right {
    align-items: flex-end;
}
.center {
    align-items: center;
}
#next-steps-modal h2 {
    font-size: 1.25em;
    margin-top: 0.75em;
    color: #707070;
}
#next-steps-modal h2:first-of-type {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0.25em;
}
#cs-options-modal h2,
#cs-schedule-modal h2,
#cs-contact-modal h2,
#eval-schedule-modal h2,
#payment-modal h2 {
    font-size: 1.5em;
    color: #707070;
    margin-bottom: 0.25em;
}
#cs-schedule-modal .modal-window,
#cs-contact-modal .modal-window,
#payment-modal .modal-window,
#eval-schedule-modal .modal-window {
    width: 450px;
}
#cs-schedule-modal .modal-content,
#cs-contact-modal .modal-content,
#payment-modal .modal-content,
#eval-schedule-modal .modal-content {
    padding-top: 0;
}
#payment-type-input,
#echeck-input,
#schedule-input,
#address-input,
#address-input .flex-row {
    justify-content: space-between;
}
#address-input .flex-row div:nth-child(1) {
    width: 53%;
}
#address-input .flex-row div:nth-child(2) {
    width: 15%;
}
#address-input .flex-row div:nth-child(3) {
    width: 22%;
}
#contact-modal .modal-content {
    width: 350px;
}
/* General Use ==================================================== */
strong {
    font-weight: 500;
}
.flex-row {
    display: flex;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.inline-items {
    display: flex;
    margin-top: 0.75em;
    flex-wrap: wrap;
}
.inline-items > * {
    margin-right: 30px;
}
.inline-items i {
    margin-right: 8px;
}
.bold {
    font-weight: 500;
}
.summary {
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 5px 0 15px;
    margin-bottom: 15px;
}
.summary > div {
    max-width: 33%;
}
.list-title {
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 5px;
}
.list-title h1 {
    color: #9f9f9f;
}
.list-header {
    box-sizing: border-box;
    background-color: #f4f4f4;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    /* margin-top: 15px; */
    align-items: center;
}
.list-header h1,
.list-sub-summary-2 h1 {
    font-size: 1em;
    color: #8b8b8b;
}
.group-list-header {
    box-sizing: border-box;
    background-color: #e6e6e6;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    /* margin-top: 15px; */
    align-items: center;
}
.group-list-header h1,
.group-list-footer h1 {
    font-size: 1em;
    color: #525252;
    font-weight: 700;
}
.group-list-footer {
    box-sizing: border-box;
    background-color: #e6e6e6;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.list-sub-summary-1 {
    box-sizing: border-box;
    background-color: #e5e5e5;
    /* height: 50px; */
    padding: 15px 20px;
    width: 100%;
}
.list-sub-summary-2 {
    box-sizing: border-box;
    background-color: #f4f4f4;
    height: 50px;
    padding: 15px 20px;
    width: 100%;
}
.list-sub-summary-1 h1 {
    font-size: 1em;
    color: #535353;
}
.list-item {
    box-sizing: border-box;
    padding: 15px 20px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.large-info h1 {
    font-size: 1em;
    color: #b5b5b5;
}
.large-info p {
    font-size: 2.25em;
    color: #8b8b8b;
}
.device-count-wrapper {
    margin-top: 10px;
    justify-content: center;
}
.device-counts {
    align-items: flex-end;
    margin-right: 15px;
}
.device-count-wrapper p {
    font-size: 1em;
    color: #bababa;
}
img.device-graphic {
    height: 51px;
    width: 129px;
}
p.footer {
    font-size: 0.75em;
    color: #bababa;
    padding: 10px;
}
.search input {
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 20px 8px 30px;
    outline: #9fc72b;
    width: 250px;
}
.clickable {
    cursor: pointer;
}
.link {
    color: #94ba2d;
    cursor: pointer;
}
.link i {
    color: #94ba2d;
}
/* Hide ============================== */
#wrapper.hide-pricing .hide-pricing {
    display: none;
}
#wrapper.hide-docs .hide-docs {
    display: none;
}
#wrapper .hide {
    display: none;
}
input:focus-visible {
    outline: none;
}

#login-content p.small {
    font-size: 0.9em;
    color: #808080;
    margin-top: 1.5em;
    text-align: center;
    font-weight: 300;
    padding: 15px;
    border-radius: 25px;
    background-color: #f1f1f1;
}

/* Spinner ============================== */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 150px;
    height: 50px;
}
.lds-ellipsis div {
    position: absolute;
    top: 18px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #94ba2d;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 43px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 43px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 67px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 91px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
.maintenance {
    /* margin-top: 45px; */
    background-color: rgb(177, 71, 71);
    padding: 0px 25px 15px;
    /* border-radius: 30px; */
    width: 100%;
}
.maintenance h1 {
    text-align: center;
    margin-top: 0.75em;
    color: #FFF;
    font-size: 1em;
 }
.maintenance h2 {
    text-align: center;
    margin: 0.75em 0;
    color: #FFF;
    font-size: 0.85em;
 }
 .maintenance p {
    text-align: center;
    margin: 0;
    color: #FFF;
    font-size: 0.75em;
 }

/* Spinner Circle ============================== */
#loader {
    margin: 100px auto 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#loader h2 {
    margin-bottom: 20px;
    text-align: center;
}
.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #94ba2d;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}
.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}
@keyframes lds-default {
    0%,
    20%,
    80%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/* Progress Bar */
.meter {
    height: 20px;
    width: 300px;
    position: relative;
    background: #eee;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3); */
}
.meter > span {
    display: block;
    height: 100%;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    /* border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; */
    background-color: #94ba2d;
    /* background-image: linear-gradient(
      center bottom,
      rgb(43,194,83) 37%,
      rgb(84,240,84) 69%
    ); */
    /* box-shadow:
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4); */
    position: relative;
    overflow: hidden;
}

/* Pagination */
.pagination {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: .85em;
}
.pagination div {
    padding: 10px 20px;
    border-right: 1px solid #ccc;
}
.pagination div:last-of-type {
    border-right: none;
}

#cs-schedule-modal .modal-window {
    width: 550px;
}
#cs-schedule-modal #schedule-input div {
    width: 35%;
}
#cs-schedule-modal #schedule-input div:last-child {
    width: 20%;
}
/* Quote / Order Details */
#detail-list-items .list-meta {
    font-size: .75em;
    color: #b5b5b5;
    text-transform: uppercase;
    font-weight: 500;
}
#detail-list .list-details {
    margin: 0.5em 0;
}
#detail-list .list-col-1 {
    width: 75%;
}
#detail-list .list-col-2 {
    width: 25%;
    text-align: right;
    justify-content: flex-end;
}
#detail-list .inline-items > * {
    margin-left: 30px;
    margin-right: 0;
}

.surveyContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center !important;
    flex-direction: column;
    width: 100% !important;
    margin: 0 !important;
}

.surveyContainer .Skills {
    display: flex;
    justify-content: center !important;
    padding-right: 10px;
    width: 100% !important;
    margin: 0 !important;
}

.surveyContainer .Skills .rating {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    width: auto !important;
    margin: 0 !important;
}

.surveyContainer .Skills .rating input {
    position: relative;
    width: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    overflow: hidden;
    border: none;
    border-radius: 0;
    padding: 0;
}

.surveyContainer .Skills .rating input::before {
    content: "\f005";
    position: absolute;
    font-family: fontAwesome, sans-serif;
    font-size: 34px;
    left: 4px;
    color: #ccc;
    transition: 0.5s;
}

.surveyContainer .Skills .rating input:nth-child(2n + 1)::before {
    right: 4px;
    left: initial;
}

.surveyContainer .Skills .rating input:hover ~ input::before,
.surveyContainer .Skills .rating input:hover::before,
.surveyContainer .Skills .rating input:checked ~ input::before,
.surveyContainer .Skills .rating input:checked::before {
    color: #92cc4d;
}

#min-req p,
#min-req li {
    font-size: 0.75em;
    color: #9c9c9c;
}

#min-req {
    margin-bottom: 1em;
    text-align: center;
}

/* MDM Device List ==================================================== */
#mdm-device-list #list-wrapper {
    overflow-y: scroll;
}
#mdm-device-list .list-item {
    align-items: center;
}
#mdm-device-list .list-wrapper .list-col-1 {
    width: 9%;
    position: relative;
}
#mdm-device-list .list-wrapper .list-col-1 a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}
#mdm-device-list .list-wrapper .list-col-1 a div {
    display: flex;
    justify-content: center;
    width: 90%;
}
/* #mdm-device-list .list-wrapper .list-col-2 {
    width: 8%;
    text-align: center;
} */
#mdm-device-list .list-wrapper .list-col-3 {
    width: 24%;
    padding-right: 8px;
}
#mdm-device-list .list-wrapper .list-col-4 {
    width: 7%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#mdm-device-list .list-wrapper .list-col-5 {
    width: 15%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#mdm-device-list .list-wrapper .list-col-6 {
    width: 20%;
    text-align: right;
}
#mdm-device-list .list-wrapper .list-col-7 {
    width: 25%;
    text-align: right;
}
#mdm-device-list .list-wrapper img {
    max-height: 25px;
    max-width: 32px;
}
#mdm-device-list .list-header .list-col-1 {
    width: 33%;
}
#mdm-device-list .list-header .list-col-2 {
    width: 7%;
    text-align: right;
}
#mdm-device-list .list-header .list-col-3 {
    width: 15%;
    text-align: right;
}
#mdm-device-list .list-header .list-col-4 {
    width: 20%;
    text-align: right;
}
#mdm-device-list .list-header .list-col-5 {
    width: 25%;
    text-align: right;
}
#mdm-device-list .pending {
    font-style: italic;
}
#mdm-device-list #pending-header .list-col-2 {
    width: 67%;
    text-align: right;
}
#mdm-device-list #pending .list-col-4 {
    width: 67%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
p.device-specs {
    font-size: 0.75em;
}
#mdm-summary-donuts {
    padding-top: 0;
}
#mdm-summary-donuts div {
    width: 225px;
    height: 225px;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}
.chartWrapper {
    height: 127px;
}
#mdm-summary-other img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    margin-top: 5px;
}
#mdm-summary-other p {
    font-size: 0.75em;
}
#mdm-summary-other div#weight-summary {
    max-width: 30%;
}
#mdm-summary-other div#classification-summary {
    max-width: 65%;
    width: 65%;
    justify-content: space-between;
}
#mdm-summary-donuts div {
    position: relative;
}
#mdm-summary-donuts h1 {
    position: absolute;
    top: 82px;
    width: 100%;
    text-align: center;
    font-size: 2em;
    z-index: -1;
}
#mdm-summary-donuts h2 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 120px;
    z-index: -1;
}
#mdm-toolbar {
    height: 80px;
    border-bottom: 1px solid #ddd;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}
#refresh {
    /* align-items: center; */
    width: 450px;
    justify-content: flex-end;
}
#refresh p {
    margin-left: 5px;
    margin-bottom: 0;
    height: 18px;
}
.mdm-toolbar img {
    height: 25px;
    margin-left: 25px;
}
#sortOption {
    border: 1px solid #aaa;
    padding: 5px 20px 5px 5px;
    margin-top: 1px;
    font-size: 13px;
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
}
#loaded-list a#filter-menu {
    padding-bottom: 12px;
}
.mdm-toolbar {
    margin-bottom: 15px;
}
.mdm-toolbar > div {
    width: 200px;
    padding: 8px;
    box-sizing: border-box;
}
.mdm-toolbar > div h1 {
    font-size: 1em;
    margin-bottom: 8px;
}
/* #blueprintFilter {
    width: 400px;
} */
#blueprintList {
    overflow-x: hidden;
    width: 400px;
}
.mdm-toolbar .dropdown-content div {
    min-width: 200px;
}
.mdm-toolbar .ms-options-wrap > .ms-options > ul li.selected label {
    color: #8b8b8b;
    padding: 2px 4px 8px 22px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    background-color: #fff;
}
.mdm-toolbar .dropdown-content h1 {
    font-size: 1.1em;
    color: #525252;
    font-weight: 500;
    margin-bottom: 0.5em;
}
.mdm-toolbar button {
    margin-top: 25px;
    border-radius: 5px;
    border: none;
    background-color: #9fc730;
    color: #fff;
    padding: 3px 5px 1px;
    width: 85px;
}
.mdm-toolbar .dropdown:hover .dropdown-content,
.mdm-toolbar .dropdown-content:hover {
    display: flex;
}
#loaded-list .qteReqOn {
    display: none;
}
/* #loaded-list .qteReqOff {
    display: '';
}  */
#qteReqHeader {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-direction: column;
}
input.qteReqOn {
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 8px 8px 5px;
    outline: #9fc72b;
    width: 70px;
    margin-right: 5px;
    text-align: right;
}

#qteReqFooter {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    padding: 15px 0 50px;
}
#qteReqFooter h1 {
    font-size: 1em;
    font-weight: 500;
}
#finePrint {
    width: 50%;
}
#finePrintWide {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    padding: 15px 0;
}
#finePrint p,
#finePrintWide p {
    font-size: 0.7em;
}
.finePrint {
    margin-top: 0.75em;
    font-size: 0.6em;
    font-style: italic;
}
.pricingUpdate {
    font-size: 0.75em;
    font-style: italic;
    margin-bottom: 1.25em;
    border-top: 1px solid #ddd;
    width: 100%;
    padding: 12px 0;
    text-align: center;
}
#mdm-device-list .list-item:last-child {
    border-bottom: none;
}
#reqTotals {
    justify-content: space-between;
    align-items: flex-end;
    width: 50%;
}
#reqTotals button {
    width: 150px;
    height: 50px;
    border-radius: 35px;
    border: none;
    background-color: #9fc72b;
    color: #fff;
    margin-right: 10px;
}
#reqTotals button.cancel {
    border: 1px solid #787878;
    background-color: #fff;
    color: #787878;
}

#weight-summary h1 {
    font-size: 2.25em;
    color: rgb(0, 121, 63);
}
#weight-summary h2 {
    margin-bottom: 0.25em;
}
#full-clarity h1 {
    font-size: 3.5em;
    font-weight: 700;
}
#full-clarity div div {
    align-items: center;
    margin: 10px 0;
    justify-content: flex-start;
}
#mdm-processing .spinner-border,
#loader .spinner-border {
    width: 150px;
    height: 150px;
}
#loader h1 {
    margin-top: 1em;
}
#loaded-list a {
    cursor: auto;
    padding: 2px;
}

.multiselect-container > li > a > label {
    padding: 4px 20px 3px 20px;
}
.mdm-toolbar .dropdown button {
    width: 125px;
    height: 40px;
    margin-top: -3px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-right: 12px;
}
.mdm-toolbar .dropdown #ageFilterWrapper button {
    width: 150px;
}
.mdm-toolbar .dropdown #blueprintFilter button {
    width: 175px;
}
#reqModal div > * {
    align-self: center;
}
#reqModal h1 {
    margin-bottom: 1em;
}
.mdm-toolbar .dropdown label {
    background-color: #fff;
    margin: 5px;
}
.mdm-toolbar .dropdown label input {
    margin-top: 2px;
}

#loaded-list div.ratingHover {
    display: none;
    position: absolute;
    padding: 10px 10px;
    margin: 0 0 0 0;
    width: 150px;
    left: -15px;
    box-sizing: border-box;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 6px;
    color: #fff;
    font-size: 0.75em;
    font-weight: 500;
}
#loaded-list div.ratingHover::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent rgba(0, 0, 0, 0.75) transparent;
}
#mdm-device-list .list-wrapper .list-col-1:hover div.ratingHover {
    display: block;
}
#mdm-summary-donuts div#valueHover {
    position: absolute;
    width: 150px;
    height: 80px;
    margin-top: 0;
}
#mdm-summary-donuts #value-summary h1 {
    top: 10px;
}
#mdm-summary-donuts #value-summary h2 {
    top: 48px;
}
#mdm-summary-donuts div.gradingScaleHover {
    display: none;
    position: absolute;
    top: 90px;
    padding: 20px 20px;
    margin: 0 0 0 0;
    width: 230px;
    box-sizing: border-box;
    z-index: 2;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 6px;
    height: auto;
}
#loaded-list .gradingScaleHover a {
    font-size: 0.75em;
    font-weight: 500;
    cursor: pointer;
    color: #94ba2d;
}
.gradingScaleHover h3 {
    color: #fff;
    font-size: 0.75em;
    font-weight: 500;
}
.gradingScaleHover p {
    color: #fff;
    font-size: 0.75em;
    font-weight: 500;
}
.gradingScaleHover::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 110px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
}
#valueHover:hover div.gradingScaleHover {
    display: block;
}

#support-form {
    padding: 25px 0;
}
#support-form select,
#support-form textarea,
#support-form input {
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 13px;
    padding: 10px;
    outline: #9fc72b;
    margin: 6px 0 15px;
    width: 450px;
}
#support-form h2 {
    margin-bottom: 25px;
}
#support-form #alert-message {
    width: 450px;
}
#quote-request-new #account-info .centered {
    height: 70px;
    align-items: center;
}

#loaded-list .search i {
    position: absolute;
}

#select-device-list .list-col-1 {
    width: 16%;
}
#select-device-list .list-col-2 {
    width: 16%;
}
#select-device-list .list-col-3 {
    width: 24%;
}
#select-device-list .list-col-4 {
    width: 16%;
}
#select-device-list .list-col-5 {
    width: 8%;
}
#select-device-list .list-col-6 {
    width: 16%;
}
#ds-header {
    width: 100%;
    padding: 25px 0;
}
#ds-select-toolbar {
    padding: 10px 0 0;
}
#ds-select-toolbar p {
    padding: 0 0 10px;
}
#ds-header button {
    /* width: 150px; */
    padding: 0 15px;
    height: 40px;
    border-radius: 15px;
    border: none;
    background-color: #9d9d9d;
    color: #fff;
    margin-right: 10px;
}
#ds-header button.success {
    background-color: #9fc730;
}
#ds-toolbar {
    justify-content: flex-end;
}

#loaded-list #ds-header .search i {
    display: none;
}

#loaded-list #ds-header .search {
    margin-right: 25px;
}
#ds-modal .modal-content {
    border: none;
}
#loaded-list .inactive {
    color: #ccc;
    font-style: italic;
}
#ds-modal i {
    margin-right: 6px;
}
#ds-modal p.checked i {
    color: #c72b2b;
}

#loaded-list #mdmFilter {
    width: 120px;
    border: 1px solid #aaa;
    padding: 5px 20px 5px 5px;
    margin-top: 1px;
    font-size: 13px;
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
}

.jamf-roles {
    font-size: 0.875em;
    color: #868686;
    margin: 8px 0;
}

#full-clarity h2 {
    margin: -10px 0 15px;
    font-size: 1.5em;
    color: rgb(118, 117, 117);
    /* font-weight: bold; */
}
#survey-modal h1 {
    text-align: center;
    color: rgb(118, 118, 118);
}
#survey-modal h2 {
    color: rgb(91, 91, 91);
}
#timeline-items .refInfo {
    margin: 15px 0 15px;
}
#timeline-items #uploads {
    margin: 15px 0 12px;
}
#axm-setup li {
    margin-left: 15px;
}
#axm-setup ul {
    margin: 15px 0;
}
