/* Start Common CSS */
* {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a,
a:visited,
a:active,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
}

*::-moz-focus-inner {
  border: 0;
}

/********* Material Design Input CSS ********/

::placeholder {
  color: transparent !important;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: transparent !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: transparent !important;
}

::-webkit-input-placeholder {
  color: transparent !important;
}

.show-placeholder::placeholder {
  color: #aaa !important;
  opacity: 1;
  /* Firefox */
}

.show-placeholder:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa !important;
}

.show-placeholder::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa !important;
}

.show-placeholder::-webkit-input-placeholder {
  color: #aaa !important;
}

.bg-white {
  background: #fff;
}

.col-parts-5 {
  border-right: 5px solid #fff;
  width: 20%;
  float: left;
}

.col-parts-5.last {
  border-right: 0;
}

.col-parts-4 {
  border-right: 5px solid #fff;
  width: 25%;
  float: left;
}

.col-parts-4.last {
  border-right: 0;
}

.counter-amount {
  font-size: 16px !important;
}

.form-group {
  display: flex;
  flex-flow: column-reverse;
  position: relative;
  margin-bottom: 25px;
}

.required-star {
  color: #e74c3c !important;
  margin-left: 2px;
  font-size: 14px;
}

/**
* Add a transition to the label and input.
* I'm not even sure that touch-action: manipulation works on
* inputs, but hey, it's new and cool and could remove the
* pesky delay.
*/
label.input-label,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  transition: all 0.2s;
  touch-action: manipulation;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea {
  appearance: none;
  -webkit-appearance: none;
  cursor: text;
}

label.input-label {
  letter-spacing: 0.05em;
  font-weight: 100 !important;
  margin-bottom: 0;
  color: #aaa;
}

label.input-label.special {
  color: #00f;
}

.form-group.has-error label.input-label {
  color: #e74c3c;
}

/**
* Translate down and scale the label up to cover the placeholder,
* when following an input (with placeholder-shown support).
* Also make sure the label is only on one row, at max 2/3rds of the
* field—to make sure it scales properly and doesn't wrap.
*/
input:placeholder-shown+label.input-label,
input:placeholder-shown+label+label.input-label,
select:placeholder-shown+label.input-label,
select:placeholder-shown+label+label.input-label,
textarea:placeholder-shown+label.input-label,
textarea:placeholder-shown+label+label.input-label {
  padding: 0 6px;
  cursor: text;
  max-width: 84%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 2.4rem) scale(1.2);
  color: #888;
}

/**
* By default, the placeholder should be transparent. Also, it should
* inherit the transition.
*/
::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}

/**
* Show the placeholder when the input is focused.
*/
input:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 1;
}

/**
* When the element is focused, remove the label transform.
* Also, do this when the placeholder is _not_ shown, i.e. when
* there's something in the input at all.
*/
input:not(:placeholder-shown)+label.input-label,
input:not(:placeholder-shown)+label+label.input-label,
input:focus+label.input-label,
input:focus+label+label.input-label,
select:not(:placeholder-shown)+label.input-label,
select:not(:placeholder-shown)+label+label.input-label,
select:focus+label.input-label,
select:focus+label+label.input-label,
textarea:not(:placeholder-shown)+label.input-label,
textarea:not(:placeholder-shown)+label+label.input-label,
textarea:focus+label.input-label,
textarea:focus+label+label.input-label {
  padding: 0;
  transform: translate(0, 0.5rem) scale(1);
  color: #00f;
}

/********* Material Design Input CSS ********/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

textarea {
  resize: none;
  box-sizing: border-box;
  min-height: 31px;
  overflow-x: hidden;
}

button,
.btn {
  border-width: 2px;
}

.form-control {
  padding: 6px 6px 2px 6px;
  border: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0;
  background: transparent;
  height: 30px;
}

.form-control:focus {
  border-bottom: 1px solid #00f !important;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  color: #888 !important;
  background: transparent !important;
}

.table-fixed {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.table-fixed tbody tr {
  background: #fff;
}

.table-fixed tbody tr.header-row {
  background: #fff !important;
}

.table-fixed tbody tr.default-entry {
  background: #fafafa !important;
}

.text-danger {
  color: #e74c3c;
}

.dark-text {
  color: #34495e;
}

.white-text {
  color: #fff;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-borders {
  border: none !important;
}

.double-lined {
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-skip-ink: none;
}

.separator-row {
  height: 5px;
  padding: 0 !important;
  background: transparent !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  outline: none !important;
  color: #000 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.has-error .form-control:focus {
  border-bottom: 1px solid #e74c3c !important;
}

label.error {
  color: #e74c3c;
  font-weight: 100 !important;
  position: absolute;
  bottom: -26px;
  left: 0;
}

.checkbox label.error {
  display: none !important;
}

.checkbox {
  font-size: 14px;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.text-thin {
  font-weight: 100;
}

.text-bold {
  font-weight: bold;
}

.text-link {
  color: #3498db;
}

.form-tip {
  padding: 5px;
}

.inline-block {
  display: inline-block;
}

.table-responsive {
  margin-bottom: 0 !important;
}

.text-limited {
  display: inline-block;
  width: 80px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.no-border-radius {
  border-radius: 10px !important;
}

.container {
  padding-bottom: 20px;
  padding-top: 50px;
}

.special-row {
  margin-left: 0;
  margin-right: 0;
}

.align-middle>* {
  vertical-align: middle;
}

.vertical-top {
  vertical-align: top;
}

.vertical-bottom {
  vertical-align: bottom;
}

.limited-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  width: 100%;
}

.limited-text-header .inv-id {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
}

.margin-auto {
  margin: 0 auto;
}

.theme-label {
  padding: 0;
  color: #000;
  border-radius: 4px;
  font-weight: 100;
}

.theme-label-container {
  margin-top: 30px;
  margin-bottom: 5px;
}

.full-width {
  width: 100%;
}

.fit-content {
  overflow: hidden;
}

.full-label {
  width: 100%;
}

ul.ui-autocomplete {
  z-index: 9;
  max-height: 150px;
  max-width: 300px;
  overflow-y: scroll;
}

ul.ui-autocomplete.modal-auto {
  z-index: 99999;
}

.special-margin {
  margin: 10px 0 0 0 !important;
}

.error-page {
  width: 96%;
  padding: 10px 2%;
  margin: 0 auto;
  text-align: center;
}

.error-page h1 {
  font-size: 48px;
}

.error-page h3 {
  font-size: 16px;
  margin-bottom: 50px;
}

.error-page p {
  width: 100%;
  text-align: center;
}

.error-page p a {
  color: #eee;
  font-size: 13px;
  padding: 10px 15px;
  text-decoration: none;
  -webkit-border-radius: .3em;
  -moz-border-radius: .3em;
  border-radius: .3em;
}

.error-page p a:hover {
  color: #fff;
}

.table.pricing-table,
.table.pricing-table>tbody>tr>td>label {
  font-size: 16px;
}

.table.pricing-table>thead>tr>th>label.label-success,
.table.pricing-table>tbody>tr>td>label.label-success {
  background-color: rgba(46, 204, 113, 0.5) !important;
  color: #000 !important;
}

.table.pricing-table>thead>tr>th>label.label-danger,
.table.pricing-table>tbody>tr>td>label.label-danger {
  background-color: rgba(231, 76, 60, 1.0) !important;
  color: #fff !important;
}

.table.pricing-table>thead>tr>th>label.label-warning,
.table.pricing-table>tbody>tr>td>label.label-warning {
  background-color: rgba(52, 73, 94, 0.5) !important;
  color: #fff !important;
  width: 100%;
  display: block;
  padding: 10px;
}

.table.pricing-table>thead>tr {
  height: 60px;
}

.table.pricing-table>tbody>tr {
  height: 40px;
}

.table.pricing-table>thead>tr>th {
  border-bottom: none;
  border-top: none;
  text-align: center;
  height: 60px;
  line-height: 60px;
  vertical-align: middle;
  padding: 0 10px;
  font-size: 20px;
}

.table.pricing-table>tbody>tr>td {
  border-bottom: none;
  border-top: none;
  text-align: center;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
}

.table.pricing-table>tbody>tr>td.item-col.half-height {
  line-height: 20px;
}

.table.pricing-table>tbody>tr>td.item-col {
  text-align: left;
}

.sm-hidden .table.pricing-table>tbody>tr>td.item-col {
  text-align: center;
  background: #f3f3f3;
}

.table.pricing-table>tbody>tr>td.item-col small {
  font-size: 12px;
  color: #2c3e50;
}

.full-pricing {
  padding: 20px;
  color: #fff;
}

.table.pricing-table>tbody>tr>td.avg-count,
.table.pricing-table>tbody>tr>td.tot-count {
  text-align: right;
}

.table.pricing-table .text-right {
  text-align: right !important;
}

.no-border {
  border: none;
}

.no-margin {
  margin: 0;
}

.no-margin-im {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-padding {
  padding: 0;
}

.no-padding-im {
  padding: 0 !important;
}

.beta-feedback {
  position: fixed;
  bottom: 0;
  right: 15px;
  width: 220px;
}

.feedback-header {
  background: #34495e;
  color: #f2f2f2;
  text-align: center;
}

.feedback-header:hover {
  background: #2c3e50;
  color: #fff;
  cursor: pointer;
}

.feedback-header-title {
  margin: 0;
  padding: 8px 3px;
}

.relative {
  position: relative;
}

/* End Common CSS */

/* Start AJAX Page Loading CSS */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  line-height: 100vh;
  vertical-align: middle;
}

/* End AJAX Page Loading CSS */

/* Start Front End Validation CSS */

.has-error input {
  border-color: #e74c3c !important;
}

.alert-msg-container {
  display: none;
  position: fixed;
  top: 10px;
  z-index: 19;
  background: transparent;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
}

.alert-msg {
  font-size: 16px;
  margin: 0 auto;
  padding: 5px 35px 5px 15px;
  display: inline-block;
}

.success-msg-display {
  width: 100%;
  height: 350px;
  padding: 10px;
}

/* End Front End Validation CSS */

/* Start Font Sizes */

.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-10 {
  font-size: 10px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-28 {
  font-size: 28px;
}

.font-28 {
  font-size: 28px;
}

.font-30 {
  font-size: 30px;
}

.font-36 {
  font-size: 36px;
}

.font-42 {
  font-size: 42px;
}

.font-48 {
  font-size: 48px;
}

.font-56 {
  font-size: 56px;
}

.font-60 {
  font-size: 60px;
}

.font-72 {
  font-size: 72px;
}

.font-80 {
  font-size: 80px;
}

.font-120 {
  font-size: 120px;
}

.font-small {
  font-size: 85%;
}

/* End Font Sizes */

/* Start Top Margins */

.margin-top-0 {
  margin-top: 0;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px;
}

/* End Top Margins */

/* Start Bottom Margins */

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-2 {
  margin-bottom: 2px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

/* End Bottom Margins */

/* Start Left Margins */

.margin-left-0 {
  margin-left: 0;
}

.margin-left-5 {
  margin-left: 5px;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-left-15 {
  margin-left: 15px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-left-23 {
  margin-left: 23px;
}

.margin-left-25 {
  margin-left: 25px;
}

.margin-left-30 {
  margin-left: 30px;
}

.margin-left-35 {
  margin-left: 35px;
}

.margin-left-40 {
  margin-left: 40px;
}

.margin-left-45 {
  margin-left: 45px;
}

.margin-left-50 {
  margin-left: 50px;
}

/* End Left Margins */

/* Start Right Margins */

.margin-right-0 {
  margin-right: 0;
}

.margin-right-5 {
  margin-right: 5px;
}

.margin-right-10 {
  margin-right: 10px;
}

.margin-right-15 {
  margin-right: 15px;
}

.margin-right-20 {
  margin-right: 20px;
}

.margin-right-25 {
  margin-right: 25px;
}

.margin-right-30 {
  margin-right: 30px;
}

.margin-right-35 {
  margin-right: 35px;
}

.margin-right-40 {
  margin-right: 40px;
}

.margin-right-45 {
  margin-right: 45px;
}

.margin-right-50 {
  margin-right: 50px;
}

/* End Right Margins */

/* Start Top Padding */

.padding-top-5 {
  padding-top: 5px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-top-50 {
  padding-top: 50px;
}

/* End Top Padding */

.margin-5 {
  margin: 5px;
}

.margin-10 {
  margin: 10px;
}

.padding-5 {
  padding: 5px;
}

.padding-10 {
  padding: 10px;
}

/* Start hover pointer effect */

.hover-pointer:hover {
  cursor: pointer;
}

/* End hover pointer effect */

/* Start custom button CSS */

/* btn-custom */

.btn {
  background-image: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-danger-alt {
  color: #d9534f;
  background-color: transparent;
  border-color: #d43f3a;
}

.btn-danger-alt:hover {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-success-alt {
  color: #5cb85c;
  background-color: #fff;
  border-color: #4cae4c;
}

.btn-success-alt:hover {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.alert-reg-msg {
  color: #e74c3c;
  letter-spacing: 0.4px;
  line-height: 24px;
}

.display-none {
  display: none;
}

#profile-image {
  position: relative;
  overflow: hidden;
}

#profile-image i {
  position: absolute;
  font-size: 2em;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  line-height: 70px;
  background: rgba(200, 200, 200, 0.5);
  padding: 5px;
  border-radius: 500px;
  color: #555;
}

#profile-image i.fa-edit {
  display: none;
}

#profile-image:hover i.fa-edit {
  display: block;
}

.paper.print-view {
  font-family: Verdana, Helvetica, Arial, sans-serif;
}

.theme-color-picker {
  margin: 25px auto;
  width: 60px;
  height: 60px;
  opacity: 0.4;
  border-radius: 60px;
  position: relative;
}

.overlay-check {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 22px;
  color: #fff;
}

.theme-color-picker.active {
  opacity: 1;
}

.theme-color-picker:hover {
  cursor: pointer;
  opacity: 1;
}

.emerald {
  background: #2ecc71;
}

.alizarin {
  background: #e74c3c;
}

.amethyst {
  background: #9b59b6;
}

.carrot {
  background: #e67e22;
}

.peter_river {
  background: #3498db;
}

.sun_flower {
  background: #f1c40f;
}

.turquoise {
  background: #1abc9c;
}

.concrete {
  background: #95a5a6;
}

.business-logo {
  max-width: 250px;
  margin: 25px auto 0 auto;
}

.business-logo:hover {
  opacity: 0.5;
  cursor: pointer;
}

.input-overlay {
  position: absolute;
  width: calc(100% - 34px);
  top: 27px;
  left: 17px;
  height: 30px;
  background: #fff;
  line-height: 30px;
  padding: 0 5px;
  border-radius: 4px;
  vertical-align: middle;
  display: none;
}

.input-overlay.fixed {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  margin: 5px 0;
}

.input-overlay i.fa-times-circle {
  float: right;
  font-size: 1.2em;
  line-height: 30px;
  color: #95a5a6;
}

.input-overlay i.fa-times-circle:hover {
  cursor: pointer;
  color: #555;
}

.input-overlay span {
  width: calc(100% - 25px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.input-overlay span img {
  margin-top: 5px;
}

.progress-bar-container {
  display: none;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 7;
}

.processing-msg {
  border-radius: 0;
  font-size: 18px;
  width: 400px;
  margin: 250px auto 0 auto;
  display: none;
  text-align: left;
  padding-left: 15px;
}

.per-comp {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  margin: 200px auto 0 auto;
  height: 40px;
  color: #fff;
}

.progress.file-upload {
  height: 8px;
  margin: 50px auto 0 auto;
  width: 400px;
}

.rotate {
  transform: rotate(-90deg);
  /* Legacy vendor prefixes that you probably don't need... */
  /* Safari */
  -webkit-transform: rotate(-90deg);
  /* Firefox */
  -moz-transform: rotate(-90deg);
  /* IE */
  -ms-transform: rotate(-90deg);
  /* Opera */
  -o-transform: rotate(-90deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.with-client-id {
  display: block;
  margin-top: -0.4em;
}

.with-client-id+sub {
  bottom: 0.75em;
}

/* End custom button CSS */

/* Start responsive CSS */

@media only screen and (max-width: 991px) {
  .xs-hidden {
    display: none !important;
  }

  .font-120 {
    font-size: 80px;
  }

  .beta-feedback {
    bottom: 135px;
    right: -95px;
    transform: rotate(90deg);
    /* Safari */
    -webkit-transform: rotate(90deg);
    /* Firefox */
    -moz-transform: rotate(90deg);
    /* IE */
    -ms-transform: rotate(90deg);
    /* Opera */
    -o-transform: rotate(90deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  }

  .feedback-header-title i {
    transform: rotate(90deg);
    /* Safari */
    -webkit-transform: rotate(-90deg);
    /* Firefox */
    -moz-transform: rotate(-90deg);
    /* IE */
    -ms-transform: rotate(-90deg);
    /* Opera */
    -o-transform: rotate(-90deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  }
}

@media only screen and (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }

  .no-borders-xs {
    border: none !important;
  }

  .line-height-20-xs {
    line-height: 20px !important;
  }

  .line-height-30-xs {
    line-height: 30px !important;
  }
}

@media only screen and (min-width: 768px) {
  .sm-hidden {
    display: none;
  }

  .error-page h1 {
    font-size: 100px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .error-page h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  ul.ui-autocomplete {
    max-width: 500px;
  }
}

@media only screen and (min-width: 992px) {
  .theme-label-container {
    text-align: left !important;
  }

  .error-page h1 {
    font-size: 200px;
  }

  .error-page h3 {
    font-size: 48px;
  }

  .more-options {
    border: none !important;
    background: transparent !important;
    color: #aaa !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .more-options i.fa {
    font-size: 19px !important;
    line-height: 38px;
  }

  .more-options:hover {
    color: #777 !important;
  }

}

@media only screen and (max-width: 520px) {
  .font-120 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 499px) {
  .more-options i.fa {
    font-size: 13px !important;
  }

  .global-add .more-options i.fa {
    font-size: 19px !important;
  }
}

@media only screen and (max-width: 480px) {
  .col-xxs-1 {
    width: 8.333333333333333%;
  }

  .col-xxs-2 {
    width: 16.66666666666667%;
  }

  .col-xxs-3 {
    width: 25%;
  }

  .col-xxs-4 {
    width: 33.33333333333333%;
  }

  .col-xxs-5 {
    width: 41.66666666666667%;
  }

  .col-xxs-6 {
    width: 50%;
  }

  .col-xxs-7 {
    width: 58.333333333333333%;
  }

  .col-xxs-8 {
    width: 66.66666666666667%;
  }

  .col-xxs-9 {
    width: 75%;
  }

  .col-xxs-10 {
    width: 83.33333333333333%;
  }

  .col-xxs-11 {
    width: 91.66666666666667%;
  }

  .col-xxs-12 {
    width: 100%;
  }

  .xms-hidden {
    display: none !important;
  }
}

@media only screen and (max-width: 240px) {
  .font-120 {
    font-size: 36px;
  }

  .xxs-hidden {
    display: none !important;
  }
}

/* End responsive CSS */

/* Theme Color Picker CSS */

.btn-data-proc:hover {
  border: 2px solid var(--bg-primary)
}

.breadcumb .current,
.business-logo-container,
.desktop-nav .user-logo-container,
.first-creation i,
.links-tab ul li a,
.main-side-bar ul li a,
.mobile-nav .user-logo-container,
.settings-box .url-link,
a.theme-link,
a.theme-link:active,
a.theme-link:focus,
a.theme-link:visited {
  color: var(--bg-primary)
}

#app-loading,
.bottom-display,
.btn-data-proc:hover,
.business-drop-down ul li.head-item,
.error-page p a,
.links-tab ul li.active a,
.links-tab ul li:hover a,
.more-options-panel ul li:hover,
.multi-select li:hover,
.paper .ui-sortable-helper .inv-line-item-mover,
.theme-background,
.user-drop-down ul li.head-item {
  background: var(--bg-primary) !important
}

.paper .ui-sortable-helper input {
  border-color: var(--bg-primary)
}

.main-side-bar ul li.active a,
.main-side-bar ul li:hover a {
  background: var(--bg-primary)
}

.business-drop-down ul li.head-item {
  border-top: 1px solid var(--bg-primary)
}

@media only screen and (min-height:640px) {
  .main-side-bar ul li a {
    color: var(--bg-primary)
  }
}

a.theme-link:hover {
  color: var(--bg-secondary)
}

#loading,
.theme-text {
  color: var(--bg-primary)
}

.theme-border {
  border-color: var(--bg-primary)
}

.btn-custom,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:visited {
  border: 2px solid var(--bg-primary);
  color: var(--bg-primary);
  background: 0 0;
  transition: .2s all ease
}

.btn-custom a,
.btn-custom:active a,
.btn-custom:focus a,
.btn-custom:visited a {
  color: var(--bg-primary);
}

.btn-custom.clicked,
.btn-custom:hover {
  background: var(--bg-primary);
  border: 2px solid var(--bg-primary);
  color: #fff
}

.btn-custom:hover a {
  color: #fff
}

.btn-custom:hover {
  transition: .2s all ease
}

.btn-custom-alt,
.btn-custom-alt:active,
.btn-custom-alt:focus,
.btn-custom-alt:visited {
  background: var(--bg-primary);
  border: 2px solid var(--bg-primary);
  color: #fff;
  transition: .2s all ease
}

.btn-custom-alt:hover {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-secondary);
  color: #fff;
  transition: .2s all ease
}

.btn-custom-alt.clicked {
  background: var(--bg-secondary);
}

.ui-widget-header {
  border: 1px solid var(--bg-secondary);
  background: var(--bg-primary)
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid var(--bg-secondary) !important;
  background: var(--bg-primary) !important;
}

.wim-modal-header {
  background: var(--bg-primary);
}

.cat-head li.active {
  background: var(--bg-primary);
}

#filter-section {
  border-color: var(--bg-primary);
}

@media only screen and (max-width: 576px) {
  .cat-head li.active {
    color: var(--bg-primary) !important;
    border-bottom: 2px solid var(--bg-primary) !important;
  }
}

@media only print {
  * {
    color: var(--bg-primary) !important;
  }
}

/* End Theme Color Picker CSS */