/*custom font*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);
/*basic reset*/

* {
    margin: 0;
    padding: 0;
}

html {
    position: relative;
    min-height: 100%;
    background: #253746;
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845);
    /* Chrome 10-25, Safari 5.1-6 */
}

body {
    font-family: Dosis, Open Sans, arial, verdana;
    font-size: 20px;
    background: transparent;
    margin-bottom: 140px;
}

a {
    color: #307FE2;
}

.bg-dark {
    background: #253746 !important;
}

.bg-white {
    background: #EFF0F1 !important;
}

.bg-green {
    background-color: #49C5B1 !important;
    color: #EFF0F1;
}

.nav-link {
    color: #EFF0F1 !important;
}

#login_info, #token_info {
    display: none;
}

/*form styles*/

#frm-reg, #frm-reset {
    text-align: center;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

#frm-reg fieldset, #frm-reset fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/

#frm-reg fieldset:not(:first-of-type), #frm-reset fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/

input, textarea, select {
    border: 1px solid #ccc;
    border-radius: 0px;
    box-sizing: border-box;
    font-family: Dosis, Open Sans;
    color: #2C3E50;
    font-size: 13px;
}

#frm-reg input, #frm-reg textarea, #frm-reg select, #frm-reset input, #frm-reset textarea, #frm-reset select {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}

#frm-reg select {
    height: 40px;
}

/*buttons*/

.action-button {
    padding: 10px 5px;
    margin: 10px 0px;
    background: #DD4343;
    font-weight: bold;
    font-size: 13px;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    width: 100px;
    outline: none !important;
}

#frm-reg .action-button, #frm-reset .action-button {
    width: 100px;
}

.action-button:hover, .action-button:focus, .action-button:hover, .action-button:focus {
    /*box-shadow: 0 0 0 2px white, 0 0 0 2px #DD4343;*/
}

#frm-reg .action-button-previous, #frm-reset .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#frm-reg .action-button-previous:hover, #frm-reg .action-button-previous:focus, #frm-reset .action-button-previous:hover, #frm-reset .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/

.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: flex;
    justify-content: center;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 25%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 14px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps*/

#progressbar li.active:before, #progressbar li.active:after {
    background: #DD4343;
    color: white;
}

/* Not relevant to this form */

.dme_link {
    margin-top: 30px;
    text-align: center;
}

.dme_link a {
    background: #EFF0F1;
    font-weight: bold;
    color: #DD4343;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 14px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
}

select:required:invalid {
    color: gray !important;
}

option[value=""][disabled] {
    display: none;
}

option {
    color: black;
}

#tcs {
    width: 100%;
    height: 480px;
    padding: 12px 48px;
    overflow: scroll;
    border: 1px solid #ccc;
    font-size: 11px;
}

.tcs-col {
    text-align: left !important;
    font-size: 14px;
}

.tcs-accept {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    margin-top: 20px;
}

input[type="checkbox"] {
    width: 20px !important;
    vertical-align: middle;
}

/* .input-error {
    border-color: #f47e7a !important;
    color: #f47e7a !important;
} */

.list-group-item.active {
    background-color: #DD4343;
    border-color: #DD4343;
}

.list-group-item {
    padding: .2rem 2.25rem;
}

.footer-distributed {
    text-align: left;
    font-size: 13px;
    background-color: #EFF0F1;
    color: #253746;
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 140px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: middle;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 33.33%;
}

.footer-distributed .footer-left div {
    line-height: 40px;
}

.footer-distributed .footer-left i {
    font-size: 25px;
    width: 38px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}

.footer-distributed .footer-left i.fa-envelope {
    font-size: 17px;
}

.footer-distributed .footer-center p, .footer-distributed .footer-left p {
    display: inline-block;
    color: #253746;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-left p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-left p a {
    color: #253746;
    text-decoration: none;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 33.33%;
    text-align: center;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 32.33%;
}

.footer-distributed .footer-right div {
    font-weight: bold;
    margin: 0;
    line-height: 40px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {
    .footer-distributed {
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}

#subform .action-button {
    width: 100px;
    line-height: 18px !important;
}

.table-responsive {
    font-size: 14px;
    overflow-x: none;
}

.table-responsive #pricing {
    max-height: 450px;
    overflow-y: scroll;
}

.sublink {
    font-weight: normal;
    font-size: 14px;
}

.form-group {
    margin-bottom: .5rem;
}

/* .form-control {
    border-radius: 0px;
} */

#parts_wrapper {
    padding: 5px;
    margin: 0px;
}

.lh-1 {
    line-height: 1;
}

table.dataTable td, table.table-bordered td {
    vertical-align: middle;
}

.lg-button {
    width: 272px;
}

.md-button {
    width: 182px;
}

/* Login */

#login-dp {
    min-width: 300px;
    width: 300px;
    padding: 14px 14px 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
}

/* Login end */

.alert {
    font-size: 14px;
}

.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.hidden, .text-for-copy {
    display: none;
}

th.width-25, td.width-25 {
    width: 25% !important;
}

th.width-15, td.width-15 {
    width: 15% !important;
}

th.width-35, td.width-35 {
    width: 35% !important;
}

.sub-head {
    color: #DD4343;
    font-weight: bold;
}

.form-control-sm, .col-form-label-sm {
    font-size: 14px;
}

.form-control-sm {
    border: 1px solid rgba(0, 0, 0, .15);
}

.list-group-item {
    font-size: .87rem;
}

.list-group-item:hover {
    background: #253746;
    border-color: #253746;
    color: #EFF0F1 !important;
}

/* Steps */

.steps {
    cursor: pointer;
    display: inline-block;
    font-size: 0px;
    overflow: hidden;
    border: 1px solid #ccc;
    line-height: 1;
    box-sizing: border-box;
    padding-left: 0;
}

.steps.expanded {
    display: block;
}

.steps.vertical {
    overflow: visible;
}

.steps.radius {
    border-radius: 5px;
}

.steps.vertical.radius li:first-child {
    border-radius: 5px 5px 0 0;
}

.steps.vertical.radius li:last-child {
    border-radius: 0 0 5px 5px;
}

.steps.round:not(.vertical) {
    border-radius: 1000px;
}

.steps li {
    display: inline-block;
    position: relative;
    padding: 1em 2em 1em 3em;
    vertical-align: top;
    background-color: #fafafa;
    box-sizing: border-box;
    font-size: .87rem;
}

.steps.even-2 li {
    width: 50%;
}

.steps.even-3 li {
    width: 33.33334%;
}

.steps.even-4 li {
    width: 25%;
}

.steps.even-5 li {
    width: 20%;
}

.steps.even-6 li {
    width: 16.66667%;
}

.steps.vertical li {
    display: block;
}

.steps.vertical li:after {
    display: none;
}

.steps:not(.vertical) li:after {
    display: block;
    position: absolute;
    z-index: 2;
    content: "";
    top: 0.36em;
    right: -1.2em;
    width: 2.3em;
    height: 2.3em;
    background-color: #fafafa;
    transform: rotate(-45deg);
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.steps.vertical li.active:after {
    display: block;
    position: absolute;
    z-index: 2;
    content: "";
    top: 0px;
    right: -1.45em;
    background-color: transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1.5em solid #007295;
    border-top: 1.5em solid transparent;
    width: 0px;
    height: 0px;
    transform: none;
}

.steps:not(.vertical) li:first-child {
    padding-left: 2.5em;
}

.steps:not(.vertical) li:last-child {
    padding-right: 2.5em;
}

.steps li:hover, .steps li:hover:after {
    background-color: #e6f4f9;
}

.steps li.active, .steps li.active:after {
    background-color: #007bff;
    color: #EFF0F1;
}

.steps li.disabled, .steps li.disabled:after {
    background-color: #EFF0F1;
    color: #aaa;
    cursor: default;
}

tr.invalid {
    background-color: #f9a94d;
}

.vx-pink {
    color: #DD4343;
}

.color-legend {
    padding: 0 5px;
    font-size: 14px;
    font-weight: bold;
}

.green, tr.green, tr.green td {
    background-color: #49C5B1;
}

.orange, tr.orange, tr.orange td {
    background-color: #FFC72C;
}

.pink, tr.pink, tr.pink td {
    background-color: #F6989D;
}

.gray, tr.gray, tr.gray td {
    background-color: #e0e0e0;
}

div#bom_wrapper {
    padding-left: 0;
    padding-right: 0;
}

.fa-trash {
    padding-left: 2px;
    color: #DD4343 !important;
    font-size: 1.75em;
}

.fa-shopping-cart {
    padding-left: 2px;
    color: #DD4343 !important;
    font-size: 1.75em;
}

.fa-file {
    padding-left: 2px;
    color: #DD4343 !important;
    font-size: 1.75em;
}

.fa-trash:hover {
    cursor: pointer;
}

ul.note {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
    font-size: 90%;
}

/************************
    MULTISELECT START 
************************/

.ms-parent {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.ms-choice {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: 0;
    text-align: left;
    white-space: nowrap;
    line-height: 24px;
    color: #495057;
    text-decoration: none;
    background-color: #EFF0F1;
}

.ms-choice.disabled {
    background-color: #f4f4f4;
    background-image: none;
    cursor: default;
}

.ms-choice>span {
    /*position: absolute;*/
    top: 0;
    left: 0;
    right: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding-left: 6px;
}

.ms-choice>span.placeholder {
    color: #495057;
}

.ms-choice>div {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 25px;
}

.ms-choice>div.open {
    /*background: url('../multiple-select.png') right top no-repeat;*/
}

.ms-drop {
    width: 100%;
    overflow: hidden;
    display: none;
    margin-top: -1px;
    padding: 0;
    position: absolute;
    z-index: 1000;
    background: #EFF0F1;
    color: #000;
    border: 1px solid rgba(0, 0, 0, .15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ms-search {
    display: inline-block;
    margin: 0;
    min-height: 24px;
    padding: 4px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 10000;
}

.ms-search input {
    width: 100%;
    height: auto !important;
    min-height: 24px;
    padding: 0 20px 0 5px;
    margin: 0;
    outline: 0;
    font-family: Dosis, sans-serif;
    font-size: 1em;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.ms-search, .ms-search input {
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.ms-drop ul {
    overflow: auto;
    margin: 0;
    font-size: 14px;
}

.ms-drop ul>li {
    list-style: none;
    display: list-item;
    background-image: none;
    position: static;
}

.ms-drop ul>li .disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
}

.ms-drop ul>li.multiple {
    display: block;
    float: left;
}

.ms-drop ul>li.group {
    clear: both;
}

.ms-drop ul>li.multiple label {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms-drop ul>li label {
    font-weight: normal;
    display: block;
    white-space: nowrap;
    margin-bottom: .3rem;
}

.ms-drop ul>li label.optgroup {
    font-weight: bold;
}

.ms-drop input[type="checkbox"] {
    vertical-align: middle;
}

.ms-drop .ms-no-results {
    display: none;
}

/************************
    MULTISELECT END 
************************/

.table-sm td, .table-sm th {
    padding: .2rem;
    font-size: .8rem;
}

.vex-total {
    font-weight: bold;
    font-size: .8rem;
}

.grey-input {
    color: #cccccc !important;
}

.input-error {
    /* border-color: #dc3545 !important; */
    border-color: #f47e7a;
    padding-right: calc(1.5em + .75rem) !important;
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem) !important; */
}

.error-feedback {
    font-size: .7rem;
    color: #f47e7a;
}

.btn {
    background-color: #253746;
    color: #EFF0F1;
}

.btn-disabled {
    background-color: #253746;
    color: #EFF0F1;
    opacity: 0.5;
    cursor: not-allowed;
}

.dropdown-menu {
    color: #253746;
    background-color: #EFF0F1;
}

.dropdown-item {
    color: #253746;
    background-color: #EFF0F1;
}

.pwResetModal {
    padding: 5%;
}

.pwResetModal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    padding: 0;
    background-image: url('/static/img/modal_background.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.pwResetModal-content {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.pwResetModal-body {
    height: 100%;
    width: 100%;
    padding-top: 10%;
    padding-right: 3%;
    padding-bottom: 3%;
    padding-left: 3%;
}

.pwResetModal-body-txt {
    width: 40%;
    height: 100%;
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.pwResetModal-body-placeholder {
    height: 100%;
    width: 60%;
}

.pwResetModal-button {
    box-shadow: inset 0px -3px 7px 0px #39b6f0;
    background: linear-gradient(to bottom, #56afe3 5%, #55a2e6 100%);
    background-color: #56afe3;
    border-radius: 7px;
    border: 1px solid #0b0e07;
    display: inline-block;
    cursor: pointer;
    color: #EFF0F1;
    font-family: Dosis, Arial;
    font-size: 24px;
    font-weight: bold;
    padding: 9px 23px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #263666;
}

.pwResetModal-button:hover {
    background: linear-gradient(to bottom, #55a2e6 5%, #56afe3 100%);
    background-color: #55a2e6;
}

.pwResetModal-button:active {
    position: relative;
    top: 1px;
}

.pointer {
    cursor: pointer;
}

.customBadge {
    background-color: #DD4343;
    color: #EFF0F1;
}

.customToastHeader {
    background-color: #DD4343;
    color: #EFF0F1;
    border-bottom-color: gray;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.customToastBody {
    background-color: #DD4343;
    color: #EFF0F1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0 !important;
}

.action-button-force {
    padding: 10px 5px !important;
    margin: 10px 0px !important;
    background: #DD4343 !important;
    font-weight: bold !important;
    font-size: 13px !important;
    color: white !important;
    border: 0 none !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    width: 100px !important;
    outline: none !important;
}

.table {
    width: 100% !important;
}

#error-sales caption {
    caption-side: top;
    font-size: small;
}

.overflow-x-wrapper {
    overflow-x: auto
}

.navbar {
    background-color: #253746 !important
}

.pricebook-accordion-link {
    color: #EFF0F1;
    font-family: 'Dosis';
    font-weight: bold;
    font-size: larger;
}

.pricebook-accordion-link:hover {
    color: #EFF0F1;
    font-family: 'Dosis';
    font-weight: bold;
    font-size: larger;
}

.pricebook-card-header {
    text-align: center;
}

.pricebook-list-group-item {
    color: black;
    font-family: 'Dosis';
    font-weight: bold;
    font-size: larger;
}

.pricebook-list-group-item.active {
    background-color: lightgray;
    border-color: lightgray;
    color: black;
    font-size: larger;
}

.pricebook-list-group-item:hover {
    background-color: lightgray;
    border-color: lightgray;
    color: black !important;
    font-size: larger;
}

.pricebook-list-group {
    text-align: center;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item:hover .nav-link {
    background-color: gray;
    border-radius: 10px;
}

.navbar-nav .nav-link {
    font-weight: bold;
}


.qr-code-link {
    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+ */
}