/*!
 * Voxelcare theme  style_theme v2.0 (http://www.voxelcare.com/)
 * Extends Bootstrap 3.3.6 framework
 * Copyright 2016 Voxelcare
 * Designer: Alexis Reina
 */

/* ---------------------------------------------------------- */
/*                          Base                              */
/* ---------------------------------------------------------- */

/* vh units fix: --vh var fallback */
:root {
  --vh: 1vh;
  --color-primary: #00af32;
  --color-error: #a94442;
}

/* Webfonts - Open Sans */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/opensans/OpenSans-Light-webfont.eot');
  src: url('/fonts/opensans/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/opensans/OpenSans-Light-webfont.woff') format('woff'),
    url('/fonts/opensans/OpenSans-Light-webfont.ttf') format('truetype'),
    url('/fonts/opensans/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/opensans/OpenSans-Regular-webfont.eot');
  src: url('/fonts/opensans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/opensans/OpenSans-Regular-webfont.woff') format('woff'),
    url('/fonts/opensans/OpenSans-Regular-webfont.ttf') format('truetype'),
    url('/fonts/opensans/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/opensans/OpenSans-Semibold-webfont.eot');
  src: url('/fonts/opensans/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/opensans/OpenSans-Semibold-webfont.woff') format('woff'),
    url('/fonts/opensans/OpenSans-Semibold-webfont.ttf') format('truetype'),
    url('/fonts/opensans/OpenSans-Semibold-webfont.svg#open_sansbold') format('svg');
  font-weight: 600;
  font-style: normal;
}

/* animations */
@-webkit-keyframes animate {
  0% {
    -webkit-transform: perspective(160px);
  }

  50% {
    -webkit-transform: perspective(160px) rotateY(-180deg);
  }

  100% {
    -webkit-transform: perspective(160px) rotateY(-180deg) rotateX(-180deg);
  }
}

@keyframes animate {
  0% {
    transform: perspective(160px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(160px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(160px) rotateX(-180deg) rotateY(0deg);
    -webkit-transform: perspective(160px) rotateX(-180deg) rotateY(0deg);
  }

  100% {
    transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
    -webkit-transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
  }
}

@keyframes focusfade {
  0% {
    opacity: 0.5;
    background: #fff;
  }

  30% {
    opacity: 0.5;
    background: #ccc;
  }

  60% {
    opacity: 0;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
    background: #fff;
  }
}

html,
body {
  width: 100%;
  height: 100%;
}

/* 1: Declaramos la fuente y su tamaño en el html para utilizar unidades rem */
/* 2: Hacemos que el body herede la declaración de font de html para sobreescribir Bootstrap */

html {
  font: normal 12px/1.5 'Open Sans', sans-serif;
  /*1*/
}

body {
  font: inherit;
  /*2*/
  background-color: #f9f9f9;
}

/* ios notch fix */
@supports (padding: max(0px)) {
  body {
    padding-left: min(0vmin, env(safe-area-inset-left));
    padding-right: min(0vmin, env(safe-area-inset-right));
  }

  .container-fluid {
    padding-left: max(15px, env(safe-area-inset-left));
    padding-right: max(15px, env(safe-area-inset-right));
  }

  .intake-plugins-container {
    padding-left: max(0, env(safe-area-inset-left)) !important;
    padding-right: max(0, env(safe-area-inset-right)) !important;
  }

  .vx-status-bar-readonly,
  .page-mypanel,
  .page-useroptions,
  .page-overview .navbar-fixed-bottom {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .vx-status-bar-order {
    margin-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .canvas-control-right {
    margin-right: max(0px, env(safe-area-inset-right));
  }

  .canvas-control-toolbar {
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .webplugin .webplugin-sidebar-body,
  .webplugin .webplugin-sidebar-footer {
    padding-bottom: max(15px, env(safe-area-inset-bottom));
    padding-left: max(15px, env(safe-area-inset-left));
  }
}

hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p,
ul,
ol {
  margin-bottom: 1.5rem;
}

a,
.nav a,
.pagination a,
.carousel,
.panel-title a {
  cursor: pointer;
}

.lead {
  font-size: 1.33rem;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar:vertical {
  width: 10px;
}

::-webkit-scrollbar:horizontal {
  height: 8px;
}

::-webkit-scrollbar-track {
  -webkit-appearance: none;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.36);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.36);
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

/* Hacer El container más grande en pantallas grandes*/
@media (min-width: 1280px) {
  .container {
    width: 1250px;
  }
}

/* hacer la fuente más grande en pantallas grandes */
@media (min-width: 1440px) {
  html {
    font-size: 14px;
  }

  .container {
    width: 1410px;
  }
}

/* Print styles para la directiva vxprint */
@media only screen {
  #printSection {
    display: none;
  }
}

/* Imprimir colores e imagenes de fondo */
@media print and (color) {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

@media print {
  @page {
    size: A4 portrait;
  }

  body {
    font-size: 12px;
    margin: 0 0 0 0;
  }

  #ng-app {
    display: none;
    visibility: hidden;
  }

  #cconsent-bar {
    display: none;
    visibility: hidden;
  }

  .modal-dialog {
    display: none;
    visibility: hidden;
  }

  #printSection,
  #printSection * {
    visibility: visible;
  }

  #printSection {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

  button {
    display: none !important;
  }

  .printBlock {
    display: table;
    width: 100%;
  }

  img,
  .vx-widget-print,
  .design-option-print,
  .design-option-print-wrapper,
  .printBlock {
    break-before: auto;
    break-after: auto;
    break-inside: avoid;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    break-after: avoid;
    break-inside: avoid;
  }

  .container {
    width: 100%;
  }

  .well {
    background: transparent;
    box-shadow: none;
  }

  .response {
    display: none;
  }

  .modal-display {
    border: none;
    max-height: none;
    overflow: hidden;
  }

  #orderInfoContainer {
    overflow: hidden;
    display: block;
  }
}

/* Soft Modal and preloader */
.soft {
  background-color: rgba(255, 255, 255, 0.2) !important;
  height: 100% !important;
  width: 100% !important;
  position: fixed !important;
  z-index: 1030 !important;
  margin-top: 0px !important;
  top: 0px !important;
}

.form-modal-responsive {
  max-height: calc(100vh - 378px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.preload-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
}

.object {
  width: 60px;
  height: 60px;
  background-color: #666;
  -webkit-animation: animate 1s infinite ease-in-out;
  animation: animate 1s infinite ease-in-out;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}

.preloader-chasing-squares {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 19px;
}

.preloader-chasing-squares .square {
  display: inline-block;
  width: 15px;
  height: 15px;
  opacity: 1;
  background: #ccc;
}

.preloader-chasing-squares .square {
  animation: focusfade 2.8s infinite;
}

/* .preloader-chasing-squares .square:nth-child(1) {} */

.preloader-chasing-squares .square:nth-child(2) {
  animation-delay: 0.7s;
}

.preloader-chasing-squares .square:nth-child(3) {
  animation-delay: 2.1s;
}

.preloader-chasing-squares .square:nth-child(4) {
  animation-delay: 1.4s;
}

/* ---------------------------------------------------------- */
/*                        Forms                               */
/* ---------------------------------------------------------- */
input,
textarea {
  -webkit-text-size-adjust: none;
  -webkit-user-select: text;
  user-select: text;
}

textarea {
  resize: vertical;
}

input[type='date'] {
  -webkit-appearance: textfield;
  color-scheme: dark;
}

.form-control-light input[type='date'] {
  color-scheme: light;
}

.form-group {
  margin-bottom: 0.375rem;
}

.form-group.row label.control-label {
  padding-top: 0.375rem;
}

.form-group.row label.sr-only {
  padding-top: 0;
}

.form-control {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  padding: 0.375rem 0.75rem !important;
  /* height: auto; */
  border-color: #333;
  border-radius: 0;
  background: #333;
  color: #eee;
  box-shadow: none;
}

.form-control-sm {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  width: 30%;
  /* height: auto; */
  border-color: #333;
  border-radius: 0;
  background: #333;
  color: #eee;
  box-shadow: none;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  background-color: #777;
  border-color: #777;
  color: #eee;
}

.form-control[readonly],
.form-control[readonly]:focus {
  outline: 0;
  border-color: #333;
  background: #333;
  color: #eee;
}

.form-control:focus {
  background-color: #111;
  /*border-color: #00AF32;*/
  /*box-shadow: none;*/
}

.form-control-light {
  background-color: #eee;
  border-color: #eee;
  border-width: 2px;
  color: #666;
}

.form-control-light:focus {
  background-color: #fff;
  color: #333;
  border-color: #eee;
  outline: 0;
  box-shadow: none;
}

.form-control-light[readonly],
.form-control-light[readonly]:focus {
  outline: 0;
  border-color: #ccc;
  background: #ccc;
  color: #666;
}

/* ios safari scrolling fix */
@supports (-webkit-overflow-scrolling: touch) {
  .form-control,
  .form-control-sm {
    font-size: 16px !important;
  }
}

form:focus {
  outline: none;
}

/* radios and checkboxes */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.text-label {
  font-weight: 400;
  font-size: 13px;
}

.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox'] {
  border: 1px solid #333;
  background: #fff;
}

/* copy Insole checkbox */
.checkbox-inline #copyIntake {
  vertical-align: middle;
  position: relative;
}

.radio label,
.radio-inline label,
.checkbox label,
.checkbox-inline label {
  padding-left: 20px;
}

.radio label.vx-label-disabled,
.radio-inline label.vx-label-disabled,
.checkbox label.vx-label-disabled,
.checkbox-inline label.vx-label-disabled {
  cursor: not-allowed;
}

.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='radio'],
.checkbox-inline input[type='radio'],
.radio input[type='checkbox'],
.checkbox input[type='checkbox'] {
  margin-left: -20px;
}

input[type='radio'],
.radio input[type='radio'],
.radio-inline input[type='radio'] {
  position: relative;
  margin-top: 6px;
  margin-right: 4px;
  vertical-align: top;
  border: none;
  background-color: transparent;
  /* -webkit-appearance: none;
  appearance: none; */
  clear: both;
  cursor: pointer;
  accent-color: #333;
}

/*
input[type="checkbox"]:focus,
.checkbox input[type="checkbox"]:focus,
.checkbox-inline input[type="checkbox"]:focus,
input[type="radio"]:focus,
.radio input[type="radio"]:focus,
.radio-inline input[type="radio"]:focus {
  outline: none;
}
*/

input[type='radio']:before,
.radio input[type='radio']:before,
.radio-inline input[type='radio']:before {
  position: absolute;
  background-color: #333;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

input[type='radio']:checked:before,
.radio input[type='radio']:checked:before,
.radio-inline input[type='radio']:checked:before {
  background-color: #333;
}

input[type='radio']:checked:after,
.radio input[type='radio']:checked:after,
.radio-inline input[type='radio']:checked:after {
  border-color: #333;
}

input[type='checkbox'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox'] {
  position: relative;
  border: none;
  margin-bottom: -4px;
  margin-right: 5px;
  width: 17px;

  cursor: pointer;
}

input[type='radio']:before,
.radio-light.radio input[type='radio']:before,
.radio-light.radio-inline input[type='radio']:before {
  background-color: #333;
}

input[type='radio']:after,
.radio-light.radio input[type='radio']:after,
.radio-light.radio-inline input[type='radio']:after {
  border: 1px solid #333;
}

.radio-light.radio input[type='radio']:checked:after,
.radio-light.radio-inline input[type='radio']:checked:after {
  background-color: #333;
}

input[type='checkbox']:focus:after,
.checkbox input[type='checkbox']:focus:after,
.checkbox-inline input[type='checkbox']:focus:after {
  border-color: #333;
}

input[type='checkbox']:after,
.checkbox input[type='checkbox']:after,
.checkbox-inline input[type='checkbox']:after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  margin-top: -1px;
  margin-right: 5px;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 0;
  -webkit-transition: 240ms;
  -o-transition: 240ms;
  transition: 240ms;
}

input[type='checkbox']:checked:before,
.checkbox input[type='checkbox']:checked:before,
.checkbox-inline input[type='checkbox']:checked:before {
  content: '';
  position: absolute;
  /*top: -2px;*/
  top: 0;
  left: 5px;
  display: table;
  width: 7px;
  height: 11px;
  border: 2px solid #fff;
  border-top-width: 0;
  border-left-width: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type='checkbox']:checked:after,
.checkbox input[type='checkbox']:checked:after,
.checkbox-inline input[type='checkbox']:checked:after {
  background-color: #333;
  border-color: #333;
}

input[type='checkbox']:disabled:after,
.checkbox input[type='checkbox']:disabled:after,
.checkbox-inline input[type='checkbox']:disabled:after {
  border-color: #ccc;
  cursor: not-allowed;
}

input[type='checkbox']:disabled:checked:after,
.checkbox input[type='checkbox']:disabled:checked:after,
.checkbox-inline input[type='checkbox']:disabled:checked:after {
  background-color: #ccc;
  border-color: transparent;
}

input[type='checkbox']:disabled:before,
.checkbox input[type='checkbox']:disabled:before,
.checkbox-inline input[type='checkbox']:disabled:before {
  cursor: not-allowed;
}

input.form-control-light[type='radio']:after,
.radio input.form-control-light[type='radio']:after,
.radio-inline input.form-control-light[type='radio']:after,
input.form-control-light[type='checkbox']:after,
.radio input.form-control-light[type='checkbox']:after,
.radio-inline input.form-control-light[type='checkbox']:after {
  background-color: #ddd;
  border-color: #ccc;
}

input.form-control-light[type='radio']:checked:after,
.radio input.form-control-light[type='radio']:checked:after,
.radio-inline input.form-control-light[type='radio']:checked:after,
input.form-control-light[type='checkbox']:checked:after,
.radio input.form-control-light[type='checkbox']:checked:after,
.radio-inline input.form-control-light[type='checkbox']:checked:after {
  background-color: #0a0;
  border-color: #0a0;
}

input.checkbox-highlight[type='checkbox'],
input.checkbox-highlight[type='checkbox']:after,
input.checkbox-highlight[type='checkbox']:checked:after {
  background-color: red;
  border-color: red;
  border-radius: 2px;
}

/* Range inputs crossbrowser styling */
input[type='range'] {
  -webkit-appearance: none;
  min-height: 16px;
  background-color: transparent;
  border: 1px solid transparent;
  width: 100%;
}

input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background-color: currentColor;
  opacity: 0.8;
  border: none;
  border-radius: 9999em;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  transform: translateY(-6px);
  background-color: #389c70;
}

input[type='range'].compact::-webkit-slider-runnable-track {
  height: 3px;
}

input.compact[type='range'].compact::-webkit-slider-thumb {
  height: 12px;
  width: 12px;
  transform: translateY(-5px);
}

input[type='range'].invalid::-webkit-slider-runnable-track {
  /*box-shadow: inset 0 0 0 1px rgba(255,25,25,0.5);*/
  outline: 1px solid rgba(255, 25, 25, 0.5);
  border-color: rgba(255, 25, 25, 0.5);
}

input[type='range']:focus {
  outline: 1px solid #2fddac;
}

input[type='range']:focus::-webkit-slider-runnable-track {
  opacity: 1;
  background-color: currentColor;
}

input[type='range']:disabled {
  pointer-events: none;
}

input[type='range']:disabled::-webkit-slider-runnable-track {
  background-color: #999;
  opacity: 1;
}

input[type='range']:disabled::-webkit-slider-thumb {
  background-color: #555;
}

input[type='range']::-moz-range-track {
  width: 100%;
  height: 16px;
  background: #ddd;
  border: none;
  border-radius: 0;
}

input[type='range']::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 0;
  background: #aaa;
}

input[type='range']:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

input.invalid[type='range']::-moz-range-track,
input.invalid[type='range']::-moz-range-thumb {
  outline: 1px solid rgba(255, 25, 25, 0.5);
  border-color: rgba(255, 25, 25, 0.5);
}

input[type='range']::-ms-track {
  width: 100%;
  height: 16px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
}

input[type='range']::-ms-fill-lower {
  background: #ddd;
  border-radius: 0;
}

input[type='range']::-ms-fill-upper {
  background: #ddd;
  border-radius: 0;
}

input[type='range']::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 0;
  background: #aaa;
}

input[type='range']::-ms-tooltip {
  display: none;
}

input[type='range']:focus::-ms-fill-lower {
  background: #ddd;
}

input[type='range']:focus::-ms-fill-upper {
  background: #ddd;
}

input.invalid[type='range']::-ms-track,
input.invalid[type='range']::-ms-thumb {
  outline: 1px solid rgba(255, 25, 25, 0.5);
  border-color: rgba(255, 25, 25, 0.5);
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='%23ccc' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 24px !important;
}

select[multiple].form-control {
  background-image: none !important;
}

.vx-legend {
  width: auto;
  padding: 0 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: -1.33333rem;
  font-size: 1.25rem;
  border: 0;
  color: #888;
}

.vx-legend > .vx-legend-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vx-legend > .vx-legend-title > .vx-legend-chip {
  font-size: 1rem;
  padding: 2px;
  color: rgba(66, 66, 66, 0.55);
  background-color: #dfdfdf;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  position: absolute;
  right: calc(2rem + 10px);
}

.vx-legend.with-error {
  color: var(--color-error);
}

.groupsLegend {
  margin-left: 33.4%;
}

.vx-fieldset {
  padding: 1rem 2rem 3rem;
  border: 1px solid #ccc;
}

.vx-fieldset-wide {
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.vx-fieldset-rounded {
  border-radius: 5px;
}

.vx-fieldset.with-error {
  border-color: var(--color-error);
}

.printer-display {
  position: relative;
}
/* angularjs-datepicker css */
/* https://github.com/720kb/angular-datepicker */

datepicker a,
[datepicker] a,
.datepicker a {
  color: inherit;
  text-decoration: none;
}

datepicker a:hover,
[datepicker] a:hover,
.datepicker a:hover {
  text-decoration: none;
}

datepicker select,
datepicker select:focus,
datepicker select:hover,
.datepicker select,
.datepicker select:focus,
.datepicker select:hover,
[datepicker] select,
[datepicker] select:focus,
[datepicker] select:hover {
  width: 100%;
  overflow: hidden;
  background: none;
  color: black;
  background-color: white;
  border-radius: 2px;
  border: 0;
  margin-top: 5px;
}

datepicker,
.datepicker,
[datepicker],
._720kb-datepicker-calendar-header,
._720kb-datepicker-calendar-body,
._720kb-datepicker-calendar-days-header,
._720kb-datepicker-calendar-years-pagination-pages {
  font-family: inherit;
  font-size: 13.5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  float: left;
  clear: right;
  position: relative;
}

._720kb-datepicker-calendar {
  background: white;
  color: #333;
  position: absolute;
  z-index: 999;
  min-width: 220px;
  margin: 0 auto;
  width: 101%;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  visibility: hidden;
  overflow: hidden;
  margin-left: -0.5%;
  padding: 0 0 2% 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

._720kb-datepicker-calendar._720kb-datepicker-open,
._720kb-datepicker-calendar._720kb-datepicker-forced-to-open {
  visibility: visible;
}

._720kb-datepicker-calendar-header {
  text-align: center;
  font-size: 15px;
  line-height: 40px;
}

._720kb-datepicker-calendar-header:nth-child(odd) {
  background: white;
}

._720kb-datepicker-calendar-header:nth-child(even) {
  background: white;
}

._720kb-datepicker-calendar-header-left,
._720kb-datepicker-calendar-header-middle,
._720kb-datepicker-calendar-header-right {
  width: 15%;
  float: left;
}

._720kb-datepicker-calendar-header-middle {
  width: 70%;
}

._720kb-datepicker-calendar-header-closed-pagination::after {
  content: ' \25BE';
}

._720kb-datepicker-calendar-header-opened-pagination::after {
  content: ' \25BE';
  margin-left: 4px;
  position: relative;
  bottom: -3px;
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

._720kb-datepicker-calendar-body {
  width: 96%;
  margin: 2%;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
}

._720kb-datepicker-calendar-day {
  cursor: pointer;
  font-size: 12.5px;
  width: 12.2%;
  margin: 5px 1%;
  padding: 1.5% 0;
  float: left;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

._720kb-datepicker-calendar-day:hover {
  background: #eee;
}

._720kb-datepicker-calendar-day._720kb-datepicker-active {
  background: #ccc;
  color: white;
}

._720kb-datepicker-calendar-header a,
._720kb-datepicker-calendar-header a:hover {
  text-decoration: none;
  padding: 3% 9% 4% 9%;
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: bold;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

._720kb-datepicker-calendar-header a:hover {
  color: rgba(0, 0, 0, 0.9);
  background: #eee;
}

._720kb-datepicker-calendar-month {
  color: black;
}

._720kb-datepicker-calendar-month span {
  font-size: 13px;
  color: black;
}

._720kb-datepicker-calendar-month a span i {
  font-style: normal;
  font-size: 15px;
}

._720kb-datepicker-calendar-month a,
._720kb-datepicker-calendar-month a:hover {
  padding: 3px;
  margin-left: 1%;
}

._720kb-datepicker-calendar-years-pagination {
  padding: 2% 0 0 0;
  float: left;
  clear: right;
  width: 100%;
}

._720kb-datepicker-calendar-years-pagination a,
._720kb-datepicker-calendar-years-pagination a:hover {
  font-size: 12px;
  padding: 0 7px;
  font-weight: normal;
  margin: 3px 1% 0 1%;
  line-height: 20px;
  display: inline-block;
}

._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-active {
  color: white;
  font-weight: 500;
  background: #ccc;
}

._720kb-datepicker-calendar-years-pagination-pages a,
._720kb-datepicker-calendar-years-pagination-pages a:hover {
  padding: 5px 10px;
}

._720kb-datepicker-calendar-days-header {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2% 0 2%;
  background: #eee;
  border-bottom: 1px solid #ddd;
}

._720kb-datepicker-calendar-days-header div {
  width: 14.18%;
  font-weight: 500;
  font-size: 11.5px;
  padding: 10px 0;
  float: left;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

._720kb-datepicker-calendar-days._720kb-datepicker-default-button {
  font-size: 18.5px;
  position: relative;
  bottom: -0.5px;
}

._720kb-datepicker-default-button {
  padding: 0 4.5px;
}

._720kb-datepicker-calendar-header-middle._720kb-datepicker-mobile-item {
  width: 95%;
  float: none;
  margin: 0 auto;
}

._720kb-datepicker-item-hidden {
  visibility: hidden;
}

._720kb-datepicker-calendar-day._720kb-datepicker-disabled,
._720kb-datepicker-calendar-day._720kb-datepicker-disabled:hover,
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-disabled,
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-disabled:hover,
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-active._720kb-datepicker-disabled,
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-active._720kb-datepicker-disabled:hover {
  color: rgba(0, 0, 0, 0.2);
  background: rgba(25, 2, 0, 0.02);
  cursor: default;
}

._720kb-datepicker-calendar-day._720kb-datepicker-today {
  background: #ccc;
  color: white;
}

/* ************************************** */
/* Mandatory CSS required for ng-sortable */
/* ************************************** */

.as-sortable-item,
.as-sortable-placeholder {
  display: block;
}

.as-sortable-item {
  -ms-touch-action: none;
  touch-action: none;
  /* to disable context menu on iOS devices */
  -webkit-touch-callout: none;
}

.as-sortable-item-handle {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
}

.as-sortable-drag {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}

.as-sortable-hidden {
  display: none !important;
}

.as-sortable-un-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ******************************************* */
/* Optional CSS, default style for ng-sortable */
/* ******************************************* */

.as-sortable-placeholder {
  border: 1px dashed darkgrey;
  box-sizing: border-box;
  background-color: #dbdbdb;
}

.as-sortable-drag {
  opacity: 0.8;
}

/* ---------------------------------------------------------- */
/*                        Table                               */
/* ---------------------------------------------------------- */

.table {
  word-break: break-word;
}

th {
  word-break: keep-all;
}

table h5 {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.05);
  margin: 0;
}

.table .caret.asc {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.table.borderless > tbody > *,
.table.borderless > tfoot > *,
.table.borderless > thead > * {
  border: none;
}

/* ---------------------------------------------------------- */
/*                      Objects                               */
/* ---------------------------------------------------------- */

/*---------------------- Gutter ----------------------------- */

/* Modificador para el ancho de las columnas de BS. se aplica a .row */
.row.gutter-sm {
  margin-left: -0.325rem;
  margin-right: -0.325rem;
}

.gutter-sm2 {
  padding-left: 3.33rem !important;
}

.row.gutter-sm > [class*='col-'] {
  padding-left: 0.325rem;
  padding-right: 0.325rem;
}

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutter > [class*='col-'] {
  padding-left: 0;
  padding-right: 0;
}

/* five cols */
.col-xs-1of5,
.col-sm-1of5,
.col-md-1of5,
.col-lg-1of5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1of5 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1of5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-1of5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-1of5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1400px) {
  .col-xl-1of5 {
    width: 20%;
    float: left;
  }
}

.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1400px) {
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    float: left;
  }

  .col-xl-12 {
    width: 100%;
  }

  .col-xl-11 {
    width: 91.66666667%;
  }

  .col-xl-10 {
    width: 83.33333333%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-8 {
    width: 66.66666667%;
  }

  .col-xl-7 {
    width: 58.33333333%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-5 {
    width: 41.66666667%;
  }

  .col-xl-4 {
    width: 33.33333333%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-2 {
    width: 16.66666667%;
  }

  .col-xl-1 {
    width: 8.33333333%;
  }

  .col-xl-pull-12 {
    right: 100%;
  }

  .col-xl-pull-11 {
    right: 91.66666667%;
  }

  .col-xl-pull-10 {
    right: 83.33333333%;
  }

  .col-xl-pull-9 {
    right: 75%;
  }

  .col-xl-pull-8 {
    right: 66.66666667%;
  }

  .col-xl-pull-7 {
    right: 58.33333333%;
  }

  .col-xl-pull-6 {
    right: 50%;
  }

  .col-xl-pull-5 {
    right: 41.66666667%;
  }

  .col-xl-pull-4 {
    right: 33.33333333%;
  }

  .col-xl-pull-3 {
    right: 25%;
  }

  .col-xl-pull-2 {
    right: 16.66666667%;
  }

  .col-xl-pull-1 {
    right: 8.33333333%;
  }

  .col-xl-pull-0 {
    right: auto;
  }

  .col-xl-push-12 {
    left: 100%;
  }

  .col-xl-push-11 {
    left: 91.66666667%;
  }

  .col-xl-push-10 {
    left: 83.33333333%;
  }

  .col-xl-push-9 {
    left: 75%;
  }

  .col-xl-push-8 {
    left: 66.66666667%;
  }

  .col-xl-push-7 {
    left: 58.33333333%;
  }

  .col-xl-push-6 {
    left: 50%;
  }

  .col-xl-push-5 {
    left: 41.66666667%;
  }

  .col-xl-push-4 {
    left: 33.33333333%;
  }

  .col-xl-push-3 {
    left: 25%;
  }

  .col-xl-push-2 {
    left: 16.66666667%;
  }

  .col-xl-push-1 {
    left: 8.33333333%;
  }

  .col-xl-push-0 {
    left: auto;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xl-offset-0 {
    margin-left: 0;
  }
}

/*---------------------- Grid ------------------------------- */
.grid {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -1.5rem;
}

.grid-item {
  display: inline-block;
  padding-left: 1.5rem;
  width: 100%;
}

.grid.no-gutter {
  margin-left: 0;
}

.grid.no-gutter > .grid-item {
  padding-left: 0;
}

.grid.gutter-sm {
  margin-left: -0.75rem;
}

.grid.gutter-sm > .grid-item {
  padding-left: 0.75rem;
}

.grid.gutter-lg {
  margin-left: -3rem;
}

.grid.gutter-lg > .grid-item {
  padding-left: 3rem;
}

/* ---------------------- Sizes ----------------------------- */
.size-5 {
  width: 5%;
}

.size-10 {
  width: 10%;
}

.size-15 {
  width: 15%;
}

.size-20 {
  width: 20%;
}

.size-25 {
  width: 25%;
}

.size-30 {
  width: 30%;
}

.size-35 {
  width: 35%;
}

.size-40 {
  width: 40%;
}

.size-45 {
  width: 45%;
}

.size-50 {
  width: 50%;
}

.size-55 {
  width: 55%;
}

.size-60 {
  width: 60%;
}

.size-65 {
  width: 65%;
}

.size-70 {
  width: 70%;
}

.size-75 {
  width: 75%;
}

.size-80 {
  width: 80%;
}

.size-85 {
  width: 85%;
}

.size-90 {
  width: 90%;
}

.size-95 {
  width: 95%;
}

.size-100 {
  width: 100%;
}

/* Tercios */

.size-16 {
  width: 16.6666666667%;
}

.size-33 {
  width: 33.3333333334%;
}

.size-66 {
  width: 66.6666666667%;
}

@media (min-width: 768px) {
  .size-sm-5 {
    width: 5%;
  }

  .size-sm-10 {
    width: 10%;
  }

  .size-sm-15 {
    width: 15%;
  }

  .size-sm-20 {
    width: 20%;
  }

  .size-sm-25 {
    width: 25%;
  }

  .size-sm-30 {
    width: 30%;
  }

  .size-sm-35 {
    width: 35%;
  }

  .size-sm-40 {
    width: 40%;
  }

  .size-sm-45 {
    width: 45%;
  }

  .size-sm-50 {
    width: 50%;
  }

  .size-sm-55 {
    width: 55%;
  }

  .size-sm-60 {
    width: 60%;
  }

  .size-sm-65 {
    width: 65%;
  }

  .size-sm-70 {
    width: 70%;
  }

  .size-sm-75 {
    width: 75%;
  }

  .size-sm-80 {
    width: 80%;
  }

  .size-sm-85 {
    width: 85%;
  }

  .size-sm-90 {
    width: 90%;
  }

  .size-sm-95 {
    width: 95%;
  }

  .size-sm-100 {
    width: 100%;
  }

  /* Tercios */
  .size-sm-16 {
    width: 16.6666666667%;
  }

  .size-sm-33 {
    width: 33.3333333334%;
  }

  .size-sm-66 {
    width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .size-md-5 {
    width: 5%;
  }

  .size-md-10 {
    width: 10%;
  }

  .size-md-15 {
    width: 15%;
  }

  .size-md-20 {
    width: 20%;
  }

  .size-md-25 {
    width: 25%;
  }

  .size-md-30 {
    width: 30%;
  }

  .size-md-35 {
    width: 35%;
  }

  .size-md-40 {
    width: 40%;
  }

  .size-md-45 {
    width: 45%;
  }

  .size-md-50 {
    width: 50%;
  }

  .size-md-55 {
    width: 55%;
  }

  .size-md-60 {
    width: 60%;
  }

  .size-md-65 {
    width: 65%;
  }

  .size-md-70 {
    width: 70%;
  }

  .size-md-75 {
    width: 75%;
  }

  .size-md-80 {
    width: 80%;
  }

  .size-md-85 {
    width: 85%;
  }

  .size-md-90 {
    width: 90%;
  }

  .size-md-95 {
    width: 95%;
  }

  .size-md-100 {
    width: 100%;
  }

  /* Tercios */
  .size-md-16 {
    width: 16.6666666667%;
  }

  .size-md-33 {
    width: 33.3333333334%;
  }

  .size-md-66 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1200px) {
  .size-lg-5 {
    width: 5%;
  }

  .size-lg-10 {
    width: 10%;
  }

  .size-lg-15 {
    width: 15%;
  }

  .size-lg-20 {
    width: 20%;
  }

  .size-lg-25 {
    width: 25%;
  }

  .size-lg-30 {
    width: 30%;
  }

  .size-lg-35 {
    width: 35%;
  }

  .size-lg-40 {
    width: 40%;
  }

  .size-lg-45 {
    width: 45%;
  }

  .size-lg-50 {
    width: 50%;
  }

  .size-lg-55 {
    width: 55%;
  }

  .size-lg-60 {
    width: 60%;
  }

  .size-lg-65 {
    width: 65%;
  }

  .size-lg-70 {
    width: 70%;
  }

  .size-lg-75 {
    width: 75%;
  }

  .size-lg-80 {
    width: 80%;
  }

  .size-lg-85 {
    width: 85%;
  }

  .size-lg-90 {
    width: 90%;
  }

  .size-lg-95 {
    width: 95%;
  }

  .size-lg-100 {
    width: 100%;
  }

  /* Tercios */
  .size-lg-16 {
    width: 16.6666666667%;
  }

  .size-lg-33 {
    width: 33.3333333334%;
  }

  .size-lg-66 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1441px) {
  .size-xl-5 {
    width: 5%;
  }

  .size-xl-10 {
    width: 10%;
  }

  .size-xl-15 {
    width: 15%;
  }

  .size-xl-20 {
    width: 20%;
  }

  .size-xl-25 {
    width: 25%;
  }

  .size-xl-30 {
    width: 30%;
  }

  .size-xl-35 {
    width: 35%;
  }

  .size-xl-40 {
    width: 40%;
  }

  .size-xl-45 {
    width: 45%;
  }

  .size-xl-50 {
    width: 50%;
  }

  .size-xl-55 {
    width: 55%;
  }

  .size-xl-60 {
    width: 60%;
  }

  .size-xl-65 {
    width: 65%;
  }

  .size-xl-70 {
    width: 70%;
  }

  .size-xl-75 {
    width: 75%;
  }

  .size-xl-80 {
    width: 80%;
  }

  .size-xl-85 {
    width: 85%;
  }

  .size-xl-90 {
    width: 90%;
  }

  .size-xl-95 {
    width: 95%;
  }

  .size-xl-100 {
    width: 100%;
  }

  /* Tercios */
  .size-xl-16 {
    width: 16.6666666667%;
  }

  .size-xl-33 {
    width: 33.3333333334%;
  }

  .size-xl-66 {
    width: 66.6666666667%;
  }
}

/* ---------------------- Page ------------------------------ */

/*
.page-content {
  height: 100%;
  height: calc(100vh - 70px);
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translatez(0)
}
*/

.page-header {
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-bottom: 0;
}

/* .page-title {} */

/* -------------------- Iconos ------------------------------ */

/* Clase Base */
.icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}

/* Modificadores */

.icon-anamnesisArch {
  width: 5rem;
  height: 4rem;
  &.invisible-placeholder {
    visibility: hidden;
  }
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  &.invisible-placeholder {
    visibility: hidden;
  }
}

.icon-xl {
  width: 6rem;
  height: 6rem;
  &.invisible-placeholder {
    visibility: hidden;
  }
}

.icon-xxl {
  width: 9rem;
  height: 9rem;
  &.invisible-placeholder {
    visibility: hidden;
  }
}

/* -------------------- Botones ----------------------------- */

/* BS Overrides */
.btn {
  /*font-size: 1rem;*/
  border-radius: 0;
}

/* Dark Btns used in the Plugins and the commercial web */
.btn-dark {
  background-color: #303030;
  color: #fff !important;
  /*border-color: #202020;*/
}

.btn-dark:hover {
  background-color: #404040;
  border-color: #404040;
  /*border-color: #292929;*/
}

.btn-gray {
  background-color: #7f7f7f;
  color: #fff !important;
  border-color: #7f7f7f;
}

.btn-gray.btn-gray-selected,
.btn-gray.btn-gray-selected:hover {
  background-color: #3a3939;
}

.btn-gray:hover {
  background-color: #777;
  border-color: #777;
}

.btn-gray:active,
.btn-gray.active,
.btn-dark:active,
.btn-dark.active {
  background-color: #3bc;
  border-color: #3bc;
}

/* Btn transparent */
.btn-transparent {
  background: transparent !important;
}

/* Metro Buttons */
.btn-theme {
  display: inline-flex;
  width: 9.40541667rem;
  height: 7.5rem;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 4rem;
  margin-bottom: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: normal;
  letter-spacing: 0.095em;
  vertical-align: top;
  color: white;
  background-size: 3rem;
  background-position: center 0.95rem;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  -webkit-transition-duration: 250ms;
  transition-duration: 250ms;
  align-items: center;
  justify-content: center;
  overflow-wrap: anywhere;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme.focus {
  opacity: 0.8;
  color: #fff;
}

.btn-theme.disabled,
.btn-theme[disabled],
.btn-theme[disabled]:hover {
  background-color: #ccc !important;
  opacity: 0.75;
  color: #fff;
}

.btn-theme > a {
  color: white;
}

.btn-theme > a:hover {
  text-decoration: none;
}

.btn-theme-lg {
  width: 10.96874936421rem;
  /* ~131px */
  height: 9.75rem;
  padding-top: 5.5rem;
}

.btn-theme-sm {
  width: 6.96874936421rem;
  height: 5.75rem;
  padding-top: 3.75rem;
  background-position: center 0.3rem;
}

.btn.btn-primary {
  background-color: #00af32;
  border-color: #00af32;
}

.btn.btn-primary:hover {
  background-color: #00af32dc;
  border-color: #00af32c2;
}

.btn.btn-primary.vc-btn-sm {
  background-color: #00af32;
  border-color: #00af32;
  border-radius: 3px;
}

/* button play speed for APD */
.btn.btn-primary.vc-btn-pl {
  background-color: #00af32;
  border-color: #00af32;
  border-radius: 0px;
  width: 60px;
  height: 35px;
  font-size: 12px;
}

.btn-primary.rm-selected,
.btn-primary.rm-selected:focus,
.btn-primary.rm-selected:hover {
  background-color: #204d74 !important;
  border-color: #204d74 !important;
}

select.selector-apd-speed-mofifier:hover {
  color: white;
}

select.selector-apd-speed-mofifier option {
  background: grey;
}

.btn.btn-primary.vc-btn-sm-cancel {
  background-color: #b50b0b;
  border-color: #b50b0b;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .btn-theme {
    margin-bottom: 0;
  }
}

/* Switch */
.vx-switch {
  background: #fff;
  border: 1px solid #dfdfdf;
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  overflow: visible;
  width: 52px;
  height: 30px;
  padding: 0px;
  margin: 0px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  top: -1px;
}

/* dropdown */
.vx-dropdown-menu {
  background-color: #333;
  border-color: #333;
}

.vx-dropdown-menu > li > a {
  color: #fff;
}

.vx-dropdown-menu > li > a:focus,
.vx-dropdown-menu > li > a:hover {
  color: #fff;
  background-color: #444;
}

/* adding a wide width for larger switch text */
.vx-switch.wide {
  width: 80px;
}

.vx-switch small {
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
}

.vx-switch.dark {
  background-color: #555;
  border-color: #494949;
}

.vx-switch.dark small {
  background: #666;
}

.vx-switch.checked {
  background: rgb(100, 189, 99);
  border-color: rgb(100, 189, 99);
}

.vx-switch.checked small {
  left: 22px;
}

/*wider switch text moves small further to the right*/
.vx-switch.wide.checked small {
  left: 52px;
}

/* styles for switch-text */
.vx-switch .vx-switch-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.vx-switch .off {
  position: absolute;
  top: 25%;
  right: 10%;
  z-index: 0;
  color: #a9a9a9;
}

.vx-switch .on {
  position: absolute;
  top: 25%;
  left: 9%;
  z-index: 0;
  color: #fff;
}

/* Intake Plugin Button */
.intakePlugin {
  position: relative;
  display: inline-block;
  width: 10.96874936421rem;
  /* ~131px */
  /*height: 10rem; */
  /* 120px */
  padding: 0;
  margin-bottom: 0.325rem;
  white-space: normal;
  vertical-align: bottom;
}

/* range input controls */
.vx-range-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  height: 34px;
  width: 34px;
  margin: 0 2px;
}

.vx-range-compact .vx-range-btn {
  font-size: 14px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  border-radius: 50%;
}

.vx-range-compact .vx-range-units {
  font-size: 9px;
}

@media screen and (min-width: 1025px) {
  .intakePlugin {
    width: 10rem;
  }

  .intakePlugin-Anamnesis {
    width: 11rem;
    height: auto;
  }
}

@media (max-width: 450px) {
  .intakePlugin-Anamnesis {
    width: 8rem;
    height: auto;
    text-align: center;
  }
}

@media (min-width: 451px) {
  .intakePlugin-Anamnesis {
    width: 10rem;
    height: auto;
    text-align: center;
  }
}

/* Estados */
.intakePlugin:hover {
  opacity: 0.8;
}

.intakePlugin.active,
.intakePlugin:active {
  background: #299da6 !important;
}

.intakePlugin.readonly {
  cursor: not-allowed;
}

/* Info */
.intakePlugin-info {
  position: absolute;
  top: 0;
  color: #fff;
  height: 3.5rem;
  opacity: 0.6;
  transition-duration: 250ms;
  transform-origin: 0 0;
}

/* Thumbnails*/
.intakePlugin-thumbnail {
  max-height: 3.5rem;
}

.intakePlugin-info:hover {
  transform: scale(2, 2);
  opacity: 1;
}

/* Title */
.intakePlugin-title {
  font-size: 1rem;
  height: 1.2em;
}

@media (max-width: 450px) {
  .intakePlugin-title-anamnesis {
    font-size: 0.7rem !important;
  }
}

/*
  Extiende .list-inline
  Listado de posibles acciones
*/

.intakePlugin-actions {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

/*
  Extiende la clase Base .icon
  Base para extender .icon-intake-*
  1. Declaramos las propiedades bg por separado para asignar el bg-image con las clases Objeto
*/
.intakePlugin-icon {
  background-size: cover;
  /*1*/
  background-repeat: no-repeat;
  /*1*/
  background-position: center;
  /*1*/
}

/* Clases Objeto */
.icon-intake-delete {
  background-image: url('/images/erase.png');
}

.icon-intake-a3 {
  background-image: url('/images/a3.png');
}

.icon-intake-a4 {
  background-image: url('/images/a4.png');
}

.icon-intake-download {
  background-image: url('/images/download_mini_icon.png');
}

.icon-intake-stl {
  background-image: url('/images/STL.png');
}

.icon-intake-legal {
  background-image: url('/images/legal.png');
}

.intake-plugins-container {
  padding-left: 0;
  padding-right: 0;
}

.vxfileupload-wrapper {
  display: inline;
}

.vxfileupload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------- Canvas --------------------------------------*/
.canvas-wrapper {
  position: relative;
  padding-top: 100vh;
  /* override */
  padding-top: calc(var(--vh) * 100);
  /* override */
  background-color: #7f7f7f;
}

.canvas-wrapper > canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.canvas-legend {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-bottom: 3rem;
  margin-right: 3rem;
}

.canvas-control {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
  z-index: 2;
  white-space: nowrap;
  overflow-x: auto;
  opacity: 0.5;
}

.canvas-control.multi-buttons button,
.canvas-control.multi-buttons .btn {
  opacity: 0.5;
  transition-duration: 400ms;
}

.canvas-control.multi-buttons button:hover,
.canvas-control.multi-buttons .btn:hover {
  opacity: 1;
}

.canvas-control.canvas-control-bottom {
  top: auto;
  bottom: 0;
}

.canvas-control.canvas-control-right {
  left: auto;
  right: 0;
}

.canvas-control.canvas-control-center-x {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.canvas-control.canvas-control-Q1-x {
  left: 25%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.canvas-control.canvas-control-Q3-x {
  left: 75%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.canvas-control.canvas-control-bottom.iOS {
  top: auto;
  bottom: 20px;
}

.canvas-control .vxfileupload-wrapper {
  display: block;
}

@media (hover: hover) {
  .canvas-wrapper.has-controls .canvas-control {
    opacity: 0.2;
    transition-duration: 400ms;
  }

  .canvas-wrapper.has-controls:hover .canvas-control {
    opacity: 0.5;
  }

  .canvas-wrapper.has-controls .canvas-control:hover {
    opacity: 1;
  }
}

.touchscreen .canvas-wrapper.has-controls .canvas-control {
  opacity: 1;
}

.touchscreen .canvas-wrapper.has-controls .canvas-control button {
  opacity: 1;
}

/* ----------------------------------- Well & Panel BS Override -------------------*/
.well,
.panel {
  border-radius: 0;
}

.panel-heading {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading-small {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0px;
  border-bottom: 1px solid;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

/* --------------------------------- Tooltip ---------------------------------------*/
.tooltip.right,
.tooltip.left {
  margin-top: -5px;
}

.tooltip-inner {
  max-width: 210px;
  padding: 5px 9px;
  border-radius: 0;
}

/* --------------------------------- Product ---------------------------------------*/
/* .product {} */

.subproduct-btn.active,
.product.active {
  background-color: #b12e2e !important;
}

.btn.product {
  background-color: #00af32;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.product-img {
  max-width: 80%;
}

.subproduct-modal .modal-header {
  border-bottom: 1px solid #444 !important;
}

.subproduct-modal .modal-body {
  max-height: 72.5vh;
  max-height: calc(var(--vh) * 72.5);
  overflow-y: auto;
}

.subproduct-btn {
  max-width: 16.4285714286rem;
  color: #fff !important;
  margin: 6px;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .subproduct-modal {
    text-align: center;
  }

  .subproduct-modal .modal-dialog {
    width: auto;
    display: inline-block;
    text-align: left;
    max-width: 90%;
    margin: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .subproduct-modal .modal-dialog {
    max-width: 90rem;
  }
}

/* --------------------------------- Webplugin ---------------------------------------*/
.webplugin.modal {
  overflow: hidden;
}

.webplugin .modal-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
}

.webplugin .modal-content,
.webplugin .modal-template,
.webplugin .modal-body {
  padding: 0;
  width: 100%;
  height: 100%;
}

.webplugin-wrapper {
  display: flex;
  height: 100%;
}

.webplugin-logo {
  max-width: 270px;
}

.webplugin-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 30%;
  min-width: 225px;
  max-width: 385px;
  background-color: #222;
}

.webplugin-sidebar-body {
  flex: 1;
  padding: 15px;
  padding-top: 40px;
  overflow-y: auto;
}

.webplugin-sidebar-row {
  display: flex;
  flex-direction: column;
}

.webplugin-sidebar-footer {
  padding: 15px;
  border-top: 1px solid #444;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.webplugin-main {
  flex: 1;
}

.webplugin-help {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  text-align: right;
  background-color: #222;
  z-index: 2;
}

.modalMessagePictureContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.webplugin .canvas-wrapper {
  padding-top: 0;
  height: 100%;
}

@media (max-width: 990px) {
  .webplugin-logo {
    display: none;
  }
}

/* Adjust importer view buttons icons size */
@media (max-width: 767px) and (orientation: portrait) {
  span[type*='stl-view-'] svg {
    width: 40px !important;
    height: 40px !important;
  }

  .canvas-control .btn-dark {
    font-size: 12px;
  }
}

@media (max-width: 990px) and (orientation: landscape) {
  span[type*='stl-view-'] svg {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .webplugin-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .webplugin-main,
  .webplugin-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .webplugin-sidebar {
    max-height: 40%;
    flex-direction: column-reverse;
  }

  .webplugin-sidebar-body {
    padding-top: 15px;
  }

  .webplugin-sidebar-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .webplugin-sidebar-col {
    flex: 1;
    margin-right: 15px;
  }

  .webplugin-sidebar-col:last-child {
    margin-right: 0;
  }

  .webplugin-sidebar-col-full {
    flex-basis: 100%;
    margin-right: 0;
  }

  .webplugin-sidebar-footer {
    flex-direction: row;
    border-bottom: 1px solid #444;
    padding-bottom: 15px !important;
  }

  .webplugin-sidebar-footer .btn {
    margin-top: 0;
    margin-right: 10px;
  }

  .webplugin-sidebar-footer .btn:last-child {
    margin-right: 0;
  }

  .webplugin-help {
    width: auto;
    position: static;
    float: right;
    margin-top: -12px;
    margin-right: -14px;
  }
}

.btn-lfs-type {
  height: 50px;
  white-space: normal;
  word-wrap: normal;
}

.orderinfo-modal .page-header {
  border-color: #999;
  margin-bottom: 0.75rem;
}

.orderinfo-modal .modal-body {
  padding: 0;
  background-color: #fff;
  color: #333;
  font-size: 12px !important;
}

.orderinfo-modal hr {
  border-color: #ccc !important;
}

@media only screen {
  .orderinfo-modal .modal-display {
    border: 1px solid #eee;
    max-height: 45vh;
    max-height: calc(var(--vh) * 45);
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.preview-modal .modal-logo {
  margin-bottom: 0;
}

.preview-modal .modal-body {
  padding: 0;
}

.preview-modal .canvas-wrapper {
  padding-top: 60vh;
}

/* --------------------------------- Progress ---------------------------------------*/
/* Indeterminate styles */
progress:not([value]),
.progress-bar:not([aria-valuenow]) {
  visibility: hidden;
}

.vx-progress-bar .progress,
progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Get rid of default border in Firefox. */
  border: none;
  /* reset BS·3 Defaults */
  border-radius: 0;
  box-shadow: none;
  /* Dimensions */
  width: 100%;
  height: 20px;
  /* For IE10 */
  color: #3399ff;
  background-color: #eee;
}

.vx-progress-bar[value]::-webkit-progress-bar {
  background-color: #eee;
}

.vx-progress-bar[value]::-webkit-progress-value {
  background: #01bd37;
  box-shadow: -1px 0 0 black inset;
}

.vx-progress-bar[value]::-moz-progress-bar {
  background: #01bd37;
  box-shadow: -1px 0 0 black inset;
}

.vx-progress-bar .progress-bar {
  background: #01bd37;
  box-shadow: -1px 0 0 black inset;
}

.completed.vx-progress-bar .progress,
progress[value] {
  /* For IE10 */
  color: #00af32;
}

.completed.vx-progress-bar[value]::-webkit-progress-value {
  background: #00af32;
  -webkit-transition-duration: 250ms;
  transition-duration: 250ms;
}

.completed.vx-progress-bar[value]::-moz-progress-bar {
  background: #00af32;
  -moz-transition-duration: 250ms;
  transition-duration: 250ms;
}

.completed.vx-progress-bar .progress-bar {
  background: #00af32;
}

/* cookies bar */
.cookies-banner {
  position: fixed;
  width: 100%;
  background-color: #333;
  margin: 0;
  left: 0;
  bottom: 0;
  z-index: 1001;
  text-align: center;
  padding: 10px 0;
  font-family: roboto, sans-serif;
}

.cookies-banner-inner {
  position: relative;
  width: initial;
  margin: 0;
  left: 0;
  top: 0;
}

.cookies-banner-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.4;
  font-size: 12px;
  margin: 10px 20px;
  color: #ddd;
  max-width: 800px;
  text-align: left;
}

.cookies-banner-text a {
  color: #00af32;
  font-weight: bolder;
}

/* ---------------------------------------------------------- */
/*                      Components                            */
/* ---------------------------------------------------------- */

/* ------------------------ Navbar ----------------------------- */
.navbar.navbar-theme {
  background: #333;
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: 0 0 4px;
}

.navbar.navbar-default {
  background-color: #fff;
  padding: 3px 0;
}

.navbar-theme .dropdown-menu > li > a,
.navbar-theme .navbar-nav > li > a {
  color: #ccc;
}

.navbar-theme .navbar-nav > .disabled > a,
.navbar-theme .navbar-nav > .disabled > a:hover,
.navbar-theme .navbar-nav > .disabled > a:focus {
  color: #9d9d9d;
}

.navbar-theme .navbar-brand {
  height: 70px;
  width: 240px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar-theme .navbar-brand > img {
  max-height: 50px;
}

.navbar-brand-logo {
  display: block;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 60px;
}

.navbar-theme .navbar-toggle {
  margin-bottom: 18px;
  margin-top: 18px;
  margin-left: 15px;
}

.navbar-theme .navbar-text {
  margin: 0;
  color: #bfbfbf;
  max-width: 200px;
}

.navbar-theme .dropdown-menu {
  background-color: #333;
  border: 1px solid #333;
  border-radius: 0;
  font-size: 1rem;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

.navbar-theme .dropdown-menu > li > a {
  color: #fff;
}

.navbar-theme .dropdown-menu .divider {
  background-color: #101010;
}

.navbar-theme .navbar-nav > li > a:hover,
.navbar-theme .navbar-nav > li > a:focus,
.navbar-theme .navbar-nav > .open > a,
.navbar-theme .navbar-nav > .open > a:hover,
.navbar-theme .navbar-nav > .open > a:focus,
.navbar-theme .dropdown-menu > li > a:hover,
.navbar-theme .dropdown-menu > li > a:focus,
.navbar-theme .navbar-nav > .active > a,
.navbar-theme .navbar-nav > .active > a:hover,
.navbar-theme .navbar-nav > .active > a:focus {
  background-color: #444;
  color: #fff;
}

.navbar-theme .navbar-separator {
  border-top: 1px solid #101010;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-theme .navbar-separator-bottom {
  border-bottom: 1px solid #101010;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-theme .dropdown-text {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #ccc;
  white-space: nowrap;
}

.navbar-theme.is-readonly {
  box-shadow: inset 0 3px 2px #d9534f;
}

.navbar-theme.is-legacy {
  box-shadow: inset 0 3px 2px #ca8f2f;
}

.navbar-user {
  max-width: 65px;
}

#vx-navbar-collapse {
  display: flex !important;
  overflow: auto;
}

#vx-navbar-collapse .navbar-steps {
  display: flex;
  justify-content: center;
  order: 2;
  flex: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  #vx-navbar-collapse .navbar-steps {
    position: relative;
    transform: none;
    left: auto;
  }
}

#vx-navbar-collapse .navbar-right {
  order: 3;
  margin-left: auto;
}

@media (min-width: 1400px) {
  #vx-navbar-collapse .visible-xl {
    display: block !important;
  }
}

@media (max-width: 1520px) {
  .navbar-theme .navbar-text.navbar-patient-localid {
    display: none !important;
  }
}

@media (max-width: 1870px) {
  .navbar-theme .navbar-text.navbar-patient-name {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .navbar-theme .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 40px;
    text-align: center;
  }

  .navbar-theme .navbar-nav > .active > a,
  .navbar-theme .navbar-nav > .active > a:hover,
  .navbar-theme .navbar-nav > .active > a:focus {
    box-shadow: inset 0 -3px 0 #0c0, 0 3px 0 -1px rgba(0, 240, 0, 0.15);
  }

  .navbar-theme .navbar-nav.navbar-right > li {
    border-left: 1px solid #222;
    min-width: 69px;
  }

  .navbar-theme .navbar-info {
    background: #333;
    position: fixed;
    bottom: 0;
  }

  .navbar-theme .navbar-info-right {
    background: #333;
    position: fixed;
    bottom: 0;
    right: 0;
  }

  .navbar-theme .navbar-text {
    border: 0;
    box-shadow: none;
    padding: 15px;
    max-height: 70px;
    /* navbar height */
    float: right;
  }

  .navbar-theme .navbar-separator {
    border-top: 0;
    box-shadow: none;
  }
}

@media screen and (min-width: 1920px) {
  .navbar-user {
    max-width: 125px;
  }
}

/* -------------------- Status Bar ------------------------ */

.vx-status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.vx-status-bar-order,
.vx-status-bar-user {
  padding: 4px 15px;
  line-height: 2;
  font-size: 8px;
}

.vx-status-bar-order {
  background: #2a2a2a;
  color: #eee;
}

@media screen and (min-width: 768px) {
  .vx-status-bar-order,
  .vx-status-bar-user {
    font-size: 11px;
  }

  .vx-status-bar-user {
    float: right;
  }

  .vx-status-bar-order {
    float: left;
  }
}

/* ---------------------- Tabs ---------------------------- */
.tabs-light.nav-tabs {
  border-bottom: 1px solid #999;
}

.tabs-light.nav-tabs > li > a {
  color: #666;
  border-bottom-color: #999;
}

.tabs-light.nav-tabs > li > a:hover,
.tabs-light.nav-tabs > li > a:focus {
  color: #00af32;
}

.tabs-light.nav-tabs > li.active > a,
.tabs-light.nav-tabs > li.active > a:hover,
.tabs-light.nav-tabs > li.active > a:focus {
  background-color: #f9f9f9;
  color: #333;
  border-color: #999;
  font-weight: 600;
  border-bottom-color: #f9f9f9;
}

/* Dark theme for tabs */
.tabs-dark.nav-tabs {
  border-bottom: 0;
}

.tabs-dark.nav-tabs > li > a {
  padding: 0.5rem 1.5rem;
  margin-right: 1px;
  /*border: 0;*/
  border-radius: 0;
  border-color: #303030;
  background-color: #303030;
  color: #fff;
}

.tabs-dark.nav-tabs > li.active > a,
.tabs-dark.nav-tabs > li.active > a:hover,
.tabs-dark.nav-tabs > li.active > a:focus {
  background-color: #7f7f7f;
  color: #fff;
  /*border: 0;*/
  border-color: #7f7f7f;
}

/* ---------------------- Modales ---------------------------- */
/* overlay */

.modal-theme.modal {
  background: rgba(0, 0, 0, 0.3);
}

.modal-theme .modal-content {
  color: #fff;
  font-size: 1rem;
  border-radius: 0;
  background: #222;
}

.modal-theme .modal-footer,
.modal-theme .modal-header,
.modal-theme .modal-content {
  border: 0;
}

.modal-theme hr,
.modal-theme .bordered {
  border-color: #444;
}

.modal-theme .modal-header .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
  opacity: 0.4;
}

.modal-theme .modal-sm {
  width: 302px;
}

.modal-logo {
  max-width: 270px;
}

.modal-theme .modal-footer:focus {
  outline: none;
}

/* ---------------- Design Modal (former Order Design Modal) ------------------------------------- */
.design-modal {
  color: #fff;
  z-index: 1049;
}

.design-modal .modal-content {
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 0;
}

.design-modal .modal-footer,
.design-modal .modal-header {
  padding: 0.75rem 1rem;
  border: 0;
}

.design-modal .modal-header {
  background: #369b6f;
}

.design-modal .modal-body {
  max-height: 72.5vh;
  max-height: calc(var(--vh) * 72.5);
  overflow-y: auto;
}

.design-modal-inner {
  width: 80vw;
  max-width: 480px;
}

.design-option-btn {
  width: 8.75rem;
  padding: 0.75rem;
  margin: 4px;
  text-align: center;
  vertical-align: top;
  background-color: transparent;
}

.design-option-btn:hover,
.design-option-btn.focus {
  background: rgba(58, 129, 158, 0.8);
  color: #fff;
}

.design-option-btn:focus {
  color: #fff;
}

.design-option-btn.active {
  background: #369b6f;
  color: #fff;
}

.design-option-btn.recommended {
  background: #25e2ec;
  color: #fff;
}

.design-option-btn.disabled:focus,
.design-option-btn:disabled:focus {
  outline: 0;
}

.design-option-btn.disabled:hover,
.design-option-btn:disabled:hover {
  background: transparent;
}

.design-option-btn.disabled.active {
  opacity: 0.9;
}

.design-option-btn.disabled.active:hover {
  background: #369b6f;
}

.design-option-print {
  display: inline-block;
  max-width: 2.6cm;
  vertical-align: top;
  margin-left: 0.05cm;
  margin-right: 0.05cm;
  margin-bottom: 0.1cm;
}

.design-option-print.print-small {
  max-width: none;
}

.design-option-print-small {
  display: flex;
}

.print-treatment-info-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px 15px;
}

.print-treatment-info-small-2 {
  display: grid;
  grid-gap: 10px 15px;
  grid-template-columns: repeat(2, 1fr);
}

.design-option-print + .design-option-print {
  margin-left: 0.1cm;
}

.design-option-print-featured-image-box {
  display: block;
}

.vx-widget-print {
  padding-bottom: 2px;
  margin-bottom: 5px;
  border-bottom: 1px solid #999;
}

.vx-widget-print-title,
.vx-widget-print-item {
  display: inline-block;
  margin: 0;
  font-size: 12px;
}

.textOverflow {
  width: 100%;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.vx-widget-print-title {
  font-weight: bold;
}

.page-overview .vx-widget-print {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.page-overview .vx-widget-print-title,
.page-overview .vx-widget-print-item {
  font-size: 1rem;
}

.page-overview .design-option-print {
  padding: 0;
  margin: 0;
  max-width: 100%;
  display: block;
  text-align: left !important;
}

.page-overview .design-option-print-wrapper {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  margin-bottom: 0 !important;
}

.page-overview .design-option-print-title {
  display: block;
  float: left;
  margin-top: 0;
  width: 50%;
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: bold !important;
  text-align: left;
}

.page-overview .design-option-print-item {
  display: inline-block;
  width: 50%;
  font-size: 1rem;
  text-align: left;
  padding-right: 15px;
  font-weight: normal;
}

.page-overview .design-option-print-icon {
  display: none;
}

.design-option-print-icon-small {
  max-width: 1cm !important;
  /* margin-top: auto !important;
  margin-bottom: auto !important; */
}

.page-overview .design-option-print-featured-image-title {
  margin: 0;
  font-size: 1rem;
}

.page-overview .design-option-print-featured-image {
  display: block;
  max-width: 195px;
}

@media screen and (min-width: 768px) {
  .design-modal {
    text-align: center;
  }

  .design-modal .modal-dialog {
    width: auto;
    display: inline-block;
    text-align: left;
    max-width: 88.5vw;
  }

  .design-option-btn {
    width: 9.85rem;
  }
}

@media screen and (min-width: 1280px) {
  .design-modal .modal-dialog {
    max-width: 96.357rem;
  }
}

/* -------------------- Editor ----------------------------------*/
.editor {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  z-index: 1;
  box-shadow: 0 3px 12px -6px rgba(24, 24, 24, 0.25);
}

.editor.editor-sm {
  width: 26.5rem;
  margin-left: -13.25rem;
}

.editor.editor-left {
  margin-left: -26.5rem;
  top: 96px;
}

.editor.editor-right {
  margin-left: 0;
  top: 96px;
}

.editor.editor-single-view.editor-left {
  left: 56px;
  margin-left: 0;
}

.editor.editor-single-view.editor-right {
  left: auto;
  right: 56px;
}

.has-views.editor.editor-single-view.editor-left {
  left: calc(30% + 46px);
  margin-left: 0;
}

.has-views.editor.editor-single-view.editor-right {
  left: auto;
  margin-right: 0;
  right: calc(30% + 46px);
}

@media screen and (min-width: 1440px) {
  .has-views.editor.editor-single-view.editor-left {
    left: 476px;
  }

  .has-views.editor.editor-single-view.editor-right {
    right: 476px;
  }
}

.editor-header {
  position: relative;
  background-color: #389c70;
  padding: 0.75rem 15px;
  /* border-bottom: 1px solid #eee; */
}

.editor-header.editor-header-highlight {
  background-color: #ec7c86;
}

.editor-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: normal;
  color: #fff;
}

.editor-body {
  background-color: #fafafa;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  max-height: calc(100vh - 19rem);
  max-height: calc((var(--vh) * 100) - 19rem);
  /* 16rem is a magic number equals ~= navbar height + editor position + editor header, body and footer inner margins and paddings */
  overflow-y: auto;
}

.editor-body .rl-btn-group fieldset {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 0.2rem;
}

.editor-body .rl-btn-group fieldset > legend {
  width: auto;
  padding: 0 1rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  border: 0;
  color: #746767;
  font-weight: bold;
}

.editor-footer {
  background-color: #fff;
  border-top: 1px solid #eee;
  padding: 0.5rem 15px;
  text-align: right;
}

.editor-footer .btn-success {
  background-color: #389c70;
}

.rm.no-scroll {
  overflow: initial;
}

.rm .scroll-block {
  display: block;
  height: 318px;
  overflow-y: auto;
  overflow-x: auto;
}

.row.rl-breadcrum-group {
  margin-left: 1px;
  margin-right: 1px;
}

.editor-btn,
.editor-btn:hover,
.editor-btn:focus,
.editor-btn.focus {
  padding: 4px;
  background-color: #b5b5b5;
  border-color: #a3a3a3;
  color: #fff;
}

.editor-btn.active {
  background-color: #369b6f;
  border-color: #348461;
}

.editor-compact {
  width: 210px;
  margin-left: -105px;
  font-size: 11px;
  top: 96px;
}

.editor-compact.editor-left {
  margin-left: -210px;
}

.editor-compact.editor-right {
  margin-left: 0;
}

@media screen and (min-width: 1440px) {
  .editor-compact.editor-left {
    margin-left: 48px;
  }

  .editor-compact.editor-right {
    margin-left: -258px;
  }
}

.editor-compact .editor-header {
  padding: 8px;
}

.editor-header .rm-userlist > select {
  position: absolute;
  top: 3px;
  left: 300px;
  width: 200px;
}

.editor-compact .editor-title {
  font-size: 14px;
}

.editor-compact .drag-handler {
  padding: 6px;
}

.editor-compact .editor-body {
  padding: 6px 10px;
}

.editor-compact .editor-footer {
  padding: 3px;
}

.editor-compact hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

.editor-compact .editor-section {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 6px 10px;
  margin-left: -10px;
  margin-right: -10px;
}

.editor-compact .form-group,
.form-compact .form-group {
  margin-bottom: 6px;
}

.editor-compact .control-label,
.form-compact .control-label {
  font-size: 11px;
  margin-bottom: 0;
}

.editor-compact .form-control,
.form-compact .form-control,
.form-control.form-control-compact {
  height: 24px;
  font-size: 11px !important;
  padding: 3px !important;
  line-height: 16px !important;
  border-radius: 2px !important;
}

.editor-compact select.form-control,
.form-compact select.form-control,
select.form-control.form-control-compact {
  border-radius: 9999rem !important;
  text-align-last: right;
  padding-right: 18px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-triangle' version='1.1' width='18' height='24' viewbox='0 0 18 24' fill='%23eee'%3E%3Cpolygon points='6,10 9,14 12,10'/%3E%3C/svg%3E");
}

.editor-compact .radio,
.form-compact .radio,
.editor-compact .checkbox,
.form-compact .checkbox {
  margin-top: 6px;
  margin-bottom: 6px;
}

.editor-compact .radio label,
.editor-compact .radio-inline label,
.editor-compact .checkbox label,
.editor-compact .checkbox-inline label,
.form-compact .radio label,
.form-compact .radio-inline label,
.form-compact .checkbox label,
.form-compact .checkbox-inline label {
  padding-left: 16px;
}

.editor-compact input[type='checkbox'],
.editor-compact .checkbox input[type='checkbox'],
.editor-compact .checkbox-inline input[type='checkbox'],
.form-compact input[type='checkbox'],
.form-compact .checkbox input[type='checkbox'],
.form-compact .checkbox-inline input[type='checkbox'] {
  margin-bottom: -2px;
  margin-right: 3px;
  width: 12px;
}

.editor-compact input[type='checkbox']:after,
.editor-compact .checkbox input[type='checkbox']:after,
.editor-compact .checkbox-inline input[type='checkbox']:after,
.form-compact input[type='checkbox']:after,
.form-compact.checkbox input[type='checkbox']:after,
.form-compact .checkbox-inline input[type='checkbox']:after {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.editor-compact input[type='checkbox']:checked:before,
.editor-compact .checkbox input[type='checkbox']:checked:before,
.editor-compact .checkbox-inline input[type='checkbox']:checked:before,
.form-compact input[type='checkbox']:checked:before,
.form-compact .checkbox input[type='checkbox']:checked:before,
.form-compact .checkbox-inline input[type='checkbox']:checked:before {
  left: 4px;
  width: 4px;
  height: 8px;
}

.editor-compact .checkbox-inline + .checkbox-inline,
.editor-compact .radio-inline + .radio-inline,
.form-compact .checkbox-inline + .checkbox-inline,
.form-compact .radio-inline + .radio-inline {
  margin-left: 0;
  display: block;
}

.editor-compact .btn-sm,
.form-compact .btn-sm {
  font-size: 10px;
  line-height: 1.25;
}

.editor-body .btn.btn-block.btn-resource-library {
  min-height: 52px;
  width: 12%;
  margin: 5px 0px 0px;
  display: inline-block;
}

.rl-btn-group .col-rl {
  padding-left: 0px;
  padding-right: 2px;
}

.rl-btn-group .row {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 2px;
}

/* ----------------------- MyPanel ---------------------------- */
.mypanel {
  margin-top: 1.5rem;
}

.mypanel-item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 30px;
  opacity: 1;
  cursor: pointer;
}

.mypanel-item.is-highlighted {
  background-color: #00b4bb !important;
}

.mypanel-item:hover {
  opacity: 0.8;
}

.mypanel-title {
  font-size: 1rem;
  margin-top: 0.75rem;
}

.mypanel-img {
  max-height: 5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .mypanel {
    margin-top: 3rem;
  }

  .mypanel-title {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
  }

  .mypanel-img {
    margin-top: 1.5rem;
  }
}

.mypanel-horizontal .mypanel-item {
  padding: 1.5rem;
  margin-bottom: 10px;
  opacity: 1;
  cursor: pointer;
}

.mypanel-horizontal .mypanel-img {
  max-height: 4rem;
  margin-right: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.mypanel-horizontal .mypanel-title {
  font-size: 14px;
  margin-top: 0;
}

@media (min-width: 768px) {
  .mypanel-horizontal .mypanel-item {
    padding: 2.25rem 1.5rem;
    margin-bottom: 30px;
  }

  .mypanel-horizontal .mypanel-title {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* ----------------------- Login ----------------------------- */
.page-login {
  background-color: #3e3e3e;
}

.login {
  position: absolute;
  top: 1.5rem;
  width: 100%;
}

/* .login-form {} */

.login-logo {
  max-width: 270px;
}

.login-icon {
  height: 2.39285714286rem;
}

.login-button {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .login {
    top: 15%;
  }

  .login-button {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .page-login {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85)),
      url('/images/login-screen-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.page-recovery {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover, auto, cover;
  background-position: center;
  background-repeat: no-repeat, repeat, no-repeat;
  background-color: #ffffff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.05' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(var(--color-primary), #000);
  .recovery-container {
    max-width: 475px;
    width: 100%;
    margin: 0 15px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    margin: auto;
    border-radius: 10px;
    button {
      border-radius: 5px;
      &[type='submit'] {
        width: 100%;
        background-color: var(--color-primary);
        border: none;
        padding: 10px;
        font-weight: 600;
        &:hover {
          opacity: 0.8;
        }
      }
    }
    input {
      background-color: #fff;
      color: #333;
      border-radius: 5px;
    }
  }
}
/*-------------------  Overview ---------------------- */

.overview-display {
  margin-bottom: 9rem;
}

@media screen and (min-width: 768px) {
  .overview-display {
    margin-bottom: 4.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .overview-sidebar {
    height: calc(100vh - 120px);
    height: calc((var(--vh) * 100) - 120px);
    overflow-y: auto;
    background-color: #fff;
  }

  .overview-display {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }
}

/*-------------------  Milling Machine ---------------------- */
.mc_axis {
  line-height: 2.642642rem;
  font-size: 1.5rem;
  background: #111;
  color: #fff;
}

/*----------------- Buttons -------------*/
.mc_button,
.mc_button:hover,
.mc_button:focus {
  color: #fff;
  padding: 47px 1px 12px 1px;
  font-size: 13px;
  background-size: 32px;
  background-color: #222;
  background-repeat: no-repeat;
  background-position: center 12px;
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
}

.mc_button:active,
.mc_button.active {
  color: #fff;
}

.mc_button.error {
  cursor: pointer;
  border: 1px solid #f00;
}

.mc_button.disabled,
.mc_button.inactive {
  background: #999;
  color: #ccc;
  cursor: not-allowed;
}

.mc_button.emptybutton {
  opacity: 0;
  cursor: none;
  pointer-events: none;
}

.mc_button.more,
.mc_button.less {
  background-color: #09c;
  background-position: center;
  height: 70px;
}

.mc_button.more {
  background-image: url('/images/webplugins/milling_machine_controller/buton_more.png');
}

.mc_button.less {
  background-image: url('/images/webplugins/milling_machine_controller/buton_less.png');
}

.mc_button.stop {
  background-color: #ff0000;
  background-image: url('/images/webplugins/milling_machine_controller/stop-emergency.png');
}

.mc_button.sendIso {
  background-color: darkgreen;
  background-image: url('/images/webplugins/milling_machine_controller/sendiso.png');
}

.mc_button.home {
  background-color: #cc411a;
  background-image: url('/images/webplugins/milling_machine_controller/home.png');
}

.mc_button.gotoZero {
  background-color: #e0623f;
  background-image: url('/images/webplugins/milling_machine_controller/gotozero.png');
}

.mc_button.setZero {
  background-color: #d121ae;
  background-image: url('/images/webplugins/milling_machine_controller/setzero.png');
}

.mc_button.probe {
  background-color: #21b9d1;
  background-image: url('/images/webplugins/milling_machine_controller/probe.png');
}

.mc_button.disconnect {
  background-color: #4f777d;
  background-image: url('/images/webplugins/milling_machine_controller/disconnect.png');
}

.mc_button.connect {
  background-color: #333;
  background-image: url('/images/webplugins/milling_machine_controller/connect.png');
}

.mc_button.vacuum {
  background-color: #4d4d4d;
  background-image: url('/images/webplugins/milling_machine_controller/vacuum.png');
}

.mc_button.vacuum-clicked {
  background-color: #00af32;
  background-image: url('/images/webplugins/milling_machine_controller/vacuum.png');
}

.mc_button.spindle {
  background-color: #4d4d4d;
  background-image: url('/images/webplugins/milling_machine_controller/spindle.png');
}

.mc_button.spindle-clicked {
  background-color: #00af32;
  background-image: url('/images/webplugins/milling_machine_controller/spindle.png');
}

.mc_button.extraction {
  background-color: #4d4d4d;
  background-image: url('/images/webplugins/milling_machine_controller/extraction.png');
}

.mc_button.extraction-clicked {
  background-color: #00af32;
  background-image: url('/images/webplugins/milling_machine_controller/extraction.png');
}

.mc_button.settings {
  background-color: #63c;
  background-image: url('/images/webplugins/milling_machine_controller/settings.png');
}

.mc_button.gcode {
  background-color: #333;
  background-image: url('/images/webplugins/milling_machine_controller/gcode.png');
}

.mc_button.showgcode {
  background-color: #333;
  background-image: url('/images/webplugins/milling_machine_controller/gcode.png');
}

.mc_button.lubrication {
  background-color: #993;
  background-image: url('/images/webplugins/milling_machine_controller/lubrication.png');
}

.mc_button.preheating {
  background-color: #f60;
  background-image: url('/images/webplugins/milling_machine_controller/preheating.png');
}

.mc_button.brush {
  background-color: #609;
  background-image: url('/images/webplugins/milling_machine_controller/brush.png');
}

.mc_button.measure-tool {
  background-color: darkolivegreen;
  background-image: url('/images/webplugins/milling_machine_controller/measure-tool.png');
}

.mc_button.lubricate-tool {
  background-color: #4d4d4d;
  background-image: url('/images/webplugins/milling_machine_controller/lubricate-tool.png');
}

.mc_button.webcam-tool {
  background-color: #00af32;
  background-image: url('/images/webplugins/webcam_controller/webcam-tool.png');
}

/* -------------------------- Anamnesis ------------------------------ */

.anamnesis-pill {
  background-color: #bbb !important;
  border-color: #aaa !important;
  margin-top: 10px !important;
}

.anamnesis-pill.active {
  background-color: #00af32 !important;
  border-color: #00af32 !important;
}

/* ----------------------- Step Indicator ---------------------------- */
.vx-steps {
  width: 100%;
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #edeff0;
  border-radius: 0.25em;
}

.vx-steps:after {
  content: '';
  display: table;
  clear: both;
}

.vx-steps li {
  float: left;
  margin: 0.5em 0;
  list-style-position: inside;
}

.vx-steps li.current {
  font-weight: bold;
}

.vx-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 0.6em;
  color: #959fa5;
}

.vx-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.vx-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 1rem;
  color: #333;
}

.vx-steps li.current > * {
  /* selected step */
  color: #00af32;
}

@media only screen and (min-width: 768px) {
  .vx-steps {
    /* reset style */
    background-color: transparent;
    padding: 0;
    text-align: center;
  }

  .vx-steps li {
    position: relative;
    display: inline-block;
    float: none;
    margin: 0.4em 40px 0.4em 0;
  }

  .vx-steps li:last-of-type {
    margin-right: 0;
  }

  .vx-steps li::after {
    /* this is the line connecting 2 adjacent items */
    position: absolute;
    content: '';
    height: 4px;
    background: #959fa5;
    /* reset style */
    margin: 0;
  }

  .vx-steps li.visited::after {
    background-color: #00af32;
  }

  .vx-steps li a.red-text {
    color: #db0b15 !important;
  }

  .vx-steps li a.green-text {
    color: #38b06b !important;
  }

  .vx-steps li a.yellow-text {
    color: #fae03d !important;
  }

  .vx-steps li > *,
  .vx-steps li.current > * {
    position: relative;
    display: block;
    font-size: 11px;
    color: #333;
    word-break: break-word;
  }

  .vx-steps.text-top li,
  .vx-steps.text-bottom li {
    width: 67px;
    text-align: center;
  }

  .vx-steps.text-top li::after,
  .vx-steps.text-bottom li::after {
    /* this is the line connecting 2 adjacent items */
    position: absolute;
    left: 50%;
    /* 40px is the <li> right margin value */
    width: calc(100% + 40px);
  }

  .vx-steps.text-top li > *::before,
  .vx-steps.text-bottom li > *::before {
    /* this is the spot indicator */
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #959fa5;
  }

  .vx-steps.text-top li.visited > *::before,
  .vx-steps.text-top li.current > *::before,
  .vx-steps.text-bottom li.visited > *::before,
  .vx-steps.text-bottom li.current > *::before {
    background-color: #00af32;
  }

  .vx-steps.text-top li.current > *::before,
  .vx-steps.text-bottom li.current > *::before {
    border: 1px solid black;
  }

  .vx-steps.text-top a:hover,
  .vx-steps.text-bottom a:hover {
    color: #00af32;
    text-decoration: none;
  }

  .vx-steps.text-top a:hover::before,
  .vx-steps.text-bottom a:hover::before {
    box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
  }

  .vx-steps.text-top li::after {
    /* this is the line connecting 2 adjacent items */
    bottom: 4px;
  }

  .vx-steps.text-top li > * {
    padding-bottom: 20px;
  }

  .vx-steps.text-top li > *::before {
    /* this is the spot indicator */
    bottom: 0;
  }

  .vx-steps.text-bottom li::after {
    /* this is the line connecting 2 adjacent items */
    top: 3px;
  }

  .vx-steps.text-bottom li > * {
    padding-top: 20px;
  }

  .vx-steps.text-bottom li > *::before {
    /* this is the spot indicator */
    top: 0;
  }
}

@media only screen and (min-width: 992px) {
  .vx-steps li > *,
  .vx-steps li.current > * {
    font-size: 12px;
  }

  .vx-steps.text-top li,
  .vx-steps.text-bottom li {
    width: 90px;
  }
}

@media only screen and (min-width: 1440px) {
  .vx-steps li > *,
  .vx-steps li.current > * {
    font-size: 14px;
  }

  .vx-steps.text-top li,
  .vx-steps.text-bottom li {
    width: 110px;
  }
}

/* card */
.vx-card {
  font-size: 0.8rem;
  border: 2px solid gray;
  border-radius: 0.3rem;
  padding: 0.8rem;
  width: 15rem;
  height: 10rem;
}

/* address box */
.vx-address-box-clickable {
  cursor: pointer;
  color: rgb(17, 31, 224);
  font-weight: bold;
}

.vx-addressbox {
  cursor: pointer;
}

/* widget */
.vxwidget-table {
  border: solid 2px;
  border-color: black;
}

.vxwidget-th {
  background-color: #00af32;
  color: white;
  border: solid 1px;
  border-color: white;
  text-transform: uppercase;
}

.vxwidget-table-body {
  background-color: #000000;
  color: #aaaaaaaa;
  border: solid 1px;
  border-color: #aaaaaaaa;
  resize: none;
}

/* ----------------------- Wizard ---------------------------- */
.wizard {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  margin-left: 5%;
  padding: 15px 0;
  background: white;
  color: #333;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.wizard-container {
  background-color: rgba(0, 0, 0, 0.4);
}

.wizard-msg {
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px;
  text-align: center;
  color: #fff;
}

/*-------------------- APD Plugin ------------------------------*/

.btn[class*='nvc_'] {
  padding: 2.5rem 0 0.5rem;
  width: 6rem;
  margin: 1px;
  font-size: 0.666666666rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: normal;
  background-position: center 0.25rem;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: 2rem;
  background-repeat: no-repeat;
  color: #fff !important;
}

.btn[class*='nvc_'].active {
  background-color: #38bec9;
}

@media (min-width: 768px) {
  .btn[class*='nvc_'] {
    padding: 2.25rem 0.75em 0.75rem;
    width: 7rem;
  }
}

.nvc_stop {
  background-image: url('/images/cad/stop.png') !important;
}

.nvc_play {
  background-image: url('/images/cad/play.png') !important;
}

.nvc_loop {
  background-image: url('/images/cad/loop.png') !important;
}

.nvc_pause {
  background-image: url('/images/cad/pause.png') !important;
}

.nvc_step {
  background-image: url('/images/cad/step.png') !important;
}

.nvc_upload {
  background-image: url('/images/cad/upload.png') !important;
}

.nvc_mirror {
  background-image: url('/images/cad/mirror.png') !important;
}

.nvc_positivenegative {
  background-image: url('/images/cad/positiveNegative.png') !important;
}

.nvc_swap {
  background-image: url('/images/cad/swap.png') !important;
}

.nvc_copylr {
  background-image: url('/images/cad/copylr100.png') !important;
}

.nvc_copyrl {
  background-image: url('/images/cad/copyrl100.png') !important;
}

.nvc_delete {
  background-image: url('/images/erase.png') !important;
}

.nvc_download {
  background-image: url('/images/cad/arrow-down.png') !important;
}

/*----------------------  preload -----------*/
.preload {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.preload-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.preload-counter {
  position: relative;
  z-index: 1;
  font-size: 64px;
  text-align: center;
  color: #ededed;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.preload-item {
  position: relative;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  opacity: 0.2;
  -webkit-transform-origin: 3em 2em;
  transform-origin: 3em 2em;
  -webkit-animation: rota 2s linear infinite, opa 4s ease-in-out infinite alternate;
  animation: rota 2s linear infinite, opa 4s ease-in-out infinite alternate;
}

.preload-item:nth-child(1) {
  left: -3em;
  top: 0;
  background: #00c176;
}

.preload-item:nth-child(2) {
  right: 4em;
  background: #ff003c;
  -webkit-animation-delay: -100s;
  animation-delay: -100ms;
}

.preload-item:nth-child(3) {
  left: -3em;
  bottom: 2em;
  background: #fabe28;
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms;
}

.preload-item:nth-child(4) {
  top: -2em;
  left: -2em;
  background: #88c100;
  -webkit-animation-delay: -300ms;
  animation-delay: -300ms;
}

@-webkit-keyframes rota {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rota {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes opa {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 0.8;
  }
}

@keyframes opa {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 0.8;
  }
}

.vc_nodisplay {
  display: none;
}

/*----------------------- CAD ----------------------------------*/
.cad {
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 0;
  min-width: 768px;
}

.cad-btn {
  padding: 7px;
}

.cad-btn.mandatoryNotFilled,
.cad-btn.mandatoryNotFilledPlaceholder {
  padding: 6px;
}

.cad-icon {
  width: 32px;
  height: auto;
}

.overview-icon {
  width: 64px;
  height: auto;
}

.cad-icon-sm {
  width: 24px;
  height: auto;
}

/*----------- Cad Top Toolbar ----------*/
.cad-toolbar {
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
  white-space: nowrap;
  height: 0;
  margin: 0 auto;
}

.cad-toolbar .btn:hover:not(.btn-success) {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.cad-toolbar .btn.active {
  background-color: #09c !important;
}

/* --------------------------------- Cad Dropdown ---------------------------------------*/
.vx-cad-dropdown {
  display: inline-block;
  position: relative;
}

.vx-cad-dropdown.active {
  z-index: 2;
}

.vx-cad-dropdown-menu {
  display: none;
  position: absolute;
  margin: 0 -0.75rem;
}

.vx-cad-dropdown-opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh) * 100);
  z-index: 1;
}

.vx-cad-dropdown-item {
  margin-top: 3px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/*----------- Cad Shortcuts ----------*/
.cad-shortcuts {
  opacity: 0.5;
  z-index: 1;
  left: 60px;
  top: 0;
}

.cad-shortcuts-right {
  left: auto;
  right: 64px;
  text-align: right;
}

@media (max-width: 1240px) {
  .cad-shortcuts {
    top: 62px;
  }
}

.cad-shortcuts-btn {
  background: transparent;
  padding: 4px 2px;
}

.cad-shortcuts-btn:focus {
  outline: 0;
}

.cad-shortcuts-label,
.cad-shortcuts-key {
  font-size: 10px;
  line-height: 1;
}

.cad-shortcuts-label {
  display: block;
  margin-bottom: 6px;
  margin-left: 2px;
}

.cad-shortcuts-key {
  display: inline-block;
  padding: 4px 6px;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  border: 1px solid;
  border-radius: 4px;
  margin: 0 2px;
}

/*----------- Cad View Tools ----------*/
.cad-view {
  position: absolute;
  margin-top: 4px;
  margin-left: 4px;
  margin-right: 4px;
  white-space: nowrap;
  z-index: 1;
}

.cad-view-left {
  right: 50%;
}

.cad-view-right {
  left: 50%;
}

.cad-view .cad-icon {
  width: 24px;
  height: auto;
}

.cad-select-foot {
  margin: 7px 0;
}

/* -------- Cad Module ---------*/
.cad-module {
  position: absolute;
  top: 0;
  z-index: 3;
}

.cad-module-left {
  left: 7px;
}

.cad-module-right {
  right: 7px;
}

.module-wrapper {
  position: absolute;
  opacity: 0;
  width: max-content;
  overflow: hidden;
  font-size: 0;
  -webkit-transition: margin 500ms 300ms, opacity 500ms;
  transition: margin 500ms 300ms, opacity 500ms;
  z-index: 2;
  top: 0;
}

.module-wrapper.left {
  max-width: calc(50dvw - 48px);
  margin-left: calc((50dvw - 8px) * -1);
  left: 0;
}

.module-wrapper.right {
  max-width: calc(50dvw - 55px);
  margin-right: calc((50dvw - 8px) * -1);
  text-align: right;
  right: 0;
}

.module-wrapper.last {
  bottom: 0;
}

.module-wrapper.open {
  overflow: visible;
}

.module-wrapper.left.open {
  opacity: 1;
  margin-left: 49px;
}

.module-wrapper.right.open {
  opacity: 1;
  margin-right: 56px;
}

.module-head {
  background: rgba(25, 25, 25, 0.8);
  margin-bottom: 7px;
}

.module-head-red {
  background: rgba(216, 12, 14, 0.8);
  margin-bottom: 7px;
}

.module-head-yellow {
  background: rgba(249, 211, 4, 0.8);
  margin-bottom: 7px;
}

.module-head-green {
  background: rgba(3, 152, 63, 0.8);
  margin-bottom: 7px;
}

.module-btn {
  background: #999;
  margin-left: 7px;
  margin-bottom: 7px;
  &:focus {
    outline: none !important;
    outline-offset: 0 !important;
    display: inline-block !important;
  }
}

.module-separator {
  margin-left: 7px;
  border: 1px solid;
  background-color: #00cc0087;
  border-radius: 2px;
  margin-bottom: 7px;
  cursor: default;
}

.module-btn.active {
  background: #0c0;
}

.module-btn.red {
  background: #d80c0e !important;
}

.module-btn.yellow {
  background: #f8d401 !important;
}

.module-btn.green {
  background: #019939 !important;
}

.cad-legend {
  background-color: white;
  position: fixed;
  top: 100px;
  left: 100px;
  z-index: 100;
}

.cad-legend-img {
  width: 200px;
}

/*
.cad-module-lg>div:first-of-type .module-btn .icon-lg {
  width: 6rem;
  height: 6rem;
}

@media (min-width: 801px) {
  .cad-module {
    bottom: auto;
    top: 20%;
  }
}
*/

/*----------- cad tools ----------*/
.cad-tools {
  position: absolute;
  top: 95px;
  /* 120px ~ 140px */
  height: calc(100% - 95px);
  overflow-y: auto;
  z-index: 1;
}

.cad-tools-left {
  right: 50%;
  margin-right: 4px;
}

.cad-tools-right {
  left: 50%;
  margin-left: 4px;
}

.cad-tools-left.right {
  right: 0;
}

.cad-tools-right.left {
  left: 0;
}

.has-views.cad-tools-left.right {
  right: calc(30% + 2px);
  margin-right: 0;
}

.has-views.cad-tools-right.left {
  left: calc(30% + 2px);
  margin-left: 0;
}

@media screen and (min-width: 1440px) {
  .has-views.cad-tools-left.right {
    right: 432px;
  }

  .has-views.cad-tools-right.left {
    left: 432px;
  }
}

.cad-tools-wrapper {
  margin-bottom: 3px;
}

.cad-tools .btn.active {
  background: #09c;
  -webkit-filter: contrast(1.4);
  filter: contrast(1.4);
}

.cad-tools .cad-icon {
  width: 24px;
  height: auto;
}

/* ---------------------- Cad Operations -------------------- */
.cad-op {
  margin-bottom: 5px;
  z-index: 1;
}

.cad-op.left {
  left: 40px !important;
}

.cad-op.right {
  right: 40px !important;
}

.cad-op-btn {
  transition: transform 0.3s ease-in-out, opacity 0.2s ease;
  margin-left: 3px;
  padding: 3px;
  background-color: #696969;
  background-color: rgba(80, 80, 80, 0.7);
}

.cad-op-btn.active {
  background: #09c;
}

@media (min-width: 1024px) {
  .cad-op.left {
    left: 5.5rem !important;
  }

  .cad-op.right {
    right: 5.5rem !important;
  }
}

/* Fixes the tooltip stacking issue where tooltips overlap each other */
.cad-op-btn:hover::after {
  animation: showTooltip 1s forwards;
}

.cad-op-btn:not(:hover)::after {
  animation: hideTooltip 0.5s forwards;
}

@keyframes showTooltip {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes hideTooltip {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

/* ---------------------- Cad Canvas    --------------------- */
.cad-canvas-container {
  height: 100%;
  height: calc(100vh - 70px);
  /* navbar height */
  height: calc((var(--vh) * 100) - 70px);
  /* navbar height */
  position: relative;
  z-index: -10;
}

.cad-canvas {
  width: 50%;
  height: 100%;
}

.cad-canvas.size-100 {
  width: 100%;
}

.cad-canvas canvas + canvas {
  z-index: 1;
}

@media (min-width: 801px) {
  .cad-canvas {
    width: 50%;
  }
}

.cad-canvas-main,
.cad-canvas-views {
  height: 100%;
}

.cad-canvas-main {
  width: 100%;
}

.cad-canvas-views {
  display: none;
}

.has-views .bordered {
  border: 1px solid #ccc;
}

.has-views .cad-canvas-main {
  width: 70%;
  min-width: 512px;
}

.has-views .cad-canvas-views {
  display: block;
  width: 30%;
  min-width: 256px;
}

@media screen and (min-width: 1440px) {
  .has-views .cad-canvas-main {
    min-width: calc(100% - 430px);
  }

  .has-views .cad-canvas-views {
    width: 430px;
  }
}

/* No cad */
.no-cad {
  background: #a5a5b0 url(/images/cad/nocad.png) center no-repeat;
}

.no-cad-dialog {
  width: 100%;
  max-width: 600px;
  margin-top: -70px;
  /* navbar height */
  color: #fff;
  background-color: #222;
  background-color: rgba(25, 25, 25, 0.7);
}

.cad-predesing-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* .cad-predesing-actions {} */

/* ----------------------- CAM ----------------------------*/
.cam .modal-dialog {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh) * 100);
  margin: 0;
}

.cam .modal-content {
  min-height: 100%;
}

.cam .modal-body {
  padding: 0;
}

.cam .navbar-theme {
  box-shadow: none;
}

.cam-subnav,
.cam .panel.panel-default,
.cam .panel.panel-default > .panel-heading {
  background-color: #444;
  border-color: #333;
}

.cam .panel.panel-default > .panel-heading {
  color: #ddd;
}

.cam-main {
  padding-top: 70px;
  height: 100vh;
  height: calc(var(--vh) * 100);
  background-color: #808080;
  overflow-y: auto;
}

.cam-sidebar {
  width: 365px;
  height: calc(100vh - 70px);
  height: calc((var(--vh) * 100) - 70px);
  border-right: 1px solid #333;
  background-color: #444;
  float: left;
  overflow-y: auto;
  overflow-x: hidden;
}

.cam-content {
  width: calc(100% - 365px);
  float: right;
}

.cam-content .canvas-wrapper {
  padding-top: calc(100vh - 121px);
  padding-top: calc((var(--vh) * 100) - 121px);
}

.cam-orders-container {
  background-color: #555;
  height: calc((var(--vh) * 70) - 121px);
  overflow: auto;
  /* color: #333 !important; */
}

.cam hr {
  border-color: #333;
}

.cam .list-group-item {
  color: #fff;
  background-color: #777;
  border-color: #444;
  border-radius: 0 !important;
}

.cam .text-muted {
  color: #ddd;
}

.cam .label {
  font-size: 82.5%;
}

/* ----------------------- Resource Manager ----------------------------*/
.rm {
  min-height: 160px;
  max-height: 320px;
  overflow: auto;
  position: relative;
}

.rm-icon {
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
  padding: 4px;
  margin: 4px 2px;
  border-radius: 50%;
}

.rm-folder {
  background-color: white;
  background-color: rgba(255, 255, 255, 0);
}

.rm-item {
  background-color: #f2f2f2;
  background-color: rgba(255, 255, 225, 0);
}

.rm-item.active,
.rm-folder.active {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  display: inline-block;
  min-width: 100%;
}

.rm-item.selected-secondary,
.rm-folder.selected-secondary {
  background-color: rgba(15, 153, 233, 0.4);
  color: white;
}

.rm-item.active .rm-icon,
.rm-folder.active .rm-icon {
  position: relative;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 1);
  z-index: 2;
}

.rm-list-item {
  display: block;
  padding-left: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.rm-item-label {
  vertical-align: middle;
  font-size: 1.1rem;
}

.rm-theme-dark {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
}

.rm-theme-dark .rm-list-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.rm-theme-dark .rm-item.active .rm-icon,
.rm-theme-dark .rm-folder.active .rm-icon {
  background-color: transparent;
}

.rm .canvas-wrapper {
  position: sticky;
  top: 0;
  padding-top: 318px;
  background-color: transparent;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ----------------------- treatMentForm ---------------------------- */
.tf-panel {
  border-color: #00af32;
}

.tf-panel > .tf-panel-heading {
  background-color: #00af32;
}

.tf-panel-title {
  color: #fff;
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.tf-panel-unfold-icon svg {
  fill: rgba(0, 0, 0, 0.36) !important;
}

.tf-form-group {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0 15px;
}

.tf-separator {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 2rem;
  background-color: #bec9cf;
}

.tf-form-group-bordered {
  border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
  .tf-item-icn,
  .tf-item-ctrl {
    float: left;
  }

  .tf-item-icn {
    width: 3.75rem;
    min-height: 1px;
  }

  .tf-item-ctrl {
    width: calc(100% - 3.75rem);
  }
}

@media (min-width: 992px) {
  .tf-left-col {
    border-right: 1px solid #ddd;
  }

  .tf-right-col {
    border-left: 1px solid #ddd;
  }
}

table > tbody > tr.table-row.danger > td {
  border-bottom: 1px solid #dabdbd;
  background-color: #f2dede;
}

table > tbody > tr.table-row.danger {
  border: 1px solid #dabdbd;
  background-color: #f2dede;
}

/* ------------------- footer legend -------------------------------- */
.footer-legend {
  display: inline-block;
  vertical-align: middle;
}

.footer-legend:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

.footer-legend-cancelled:before {
  border: 1px solid #dabdbd;
  background-color: darkorange;
}

.footer-legend-bad:before {
  border: 1px solid #dabdbd;
  background-color: #f2dede;
}

.footer-legend-outsourced::before {
  border: 1px solid #dabdbd;
  background-color: lightblue;
}

/* ------------------- Legal -------------------------------- */
.legal h2,
.legal h3,
.legal h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.legal h2 {
  font-size: 1.25rem;
}

.legal h3 {
  font-size: 1.125rem;
}

.legal h4 {
  font-size: 1.0625rem;
  border-bottom: 0;
}

.legal p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.legal table {
  table-layout: auto;
  width: 100%;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.legal table td {
  padding: 0.375rem;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.legal-content {
  max-width: 75rem;
}

.legal-modal .modal-content {
  color: #333;
  background-color: #fff;
}

.legal-modal .modal-body {
  max-height: 50vh;
  max-height: calc(var(--vh) * 50);
  overflow-y: auto;
}

.legal-pre {
  text-align: left;
  overflow-x: hidden;
}

/* ---------------------------------------------------------- */
/*                        Theme                               */
/* ---------------------------------------------------------- */

.theme-primary,
.theme-primary a,
.theme-primary a:hover {
  background: #00af32 !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.green,
.green a,
.green a:hover {
  background: #00af32 !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.green.active {
  background-color: #303030 !important;
}

.green.disabled {
  opacity: 0.55;
}

.inactive {
  background-color: #fa7b1d !important;
}

.transparent {
  background-color: #fdfdfc00 !important;
}

.injected {
  background-color: #41b796 !important;
}

.injected.active {
  background-color: #09c !important;
}

.dark-orange {
  background: #f87e0c !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.blue {
  background: #38bec9 !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.pink,
.pink a,
.pink a:hover {
  background: #ca06ee !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.red,
.red a,
.red a:hover {
  background: #b50b0b !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.brown-light,
.brown-light a,
.brown-light a:hover {
  background: #b99c6b !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.orange,
.orange a,
.orange a:hover {
  background: orange !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.yellow,
.yellow a,
.yellow a:hover {
  background: #fae03d !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.vx-highlight {
  color: #00ace9;
  font-weight: bold !important;
  font-size: 1.2rem;
}

.btn-resource-library.vx-highlight {
  background-color: #00ace9;
  color: white;
}

/* Text */
.text-white {
  color: #fff !important;
}

.text-primary {
  color: #00af32 !important;
}

.modal-body p.text-red {
  color: #ff0000;
  font-weight: bolder;
  font-size: 1.2rem;
}

/* Backgrounds */
.bg-white {
  background-color: #ffffff;
}

.bg-dark {
  background-color: #3e3e3e;
}

.bg-light {
  background-color: #f9f9f9;
}

.bg-gray {
  background-color: #d9d9d9;
}

.bg-red {
  background-color: #d80c0e;
}

.bg-green {
  background-color: #019939;
}

.bg-yellow {
  background-color: #f8d401;
}

.bg-gray-dark {
  background-color: #7f7f7f;
}

.bg-facebook {
  background-color: #3c5a99;
}

.bg-google {
  background-color: #f53f33;
}

.bg-linkedin {
  background-color: #0077b5;
}

.bg-youtube {
  background-color: #ff0000;
}

.bg-shop {
  background-color: #00b000;
}

.bg-twitter {
  background-color: #1da1f2;
}

/* ---------------------------------------------------------- */
/*                       Helpers                              */
/* ---------------------------------------------------------- */

/*   Text Helpers   */
/* Extend BS class. Los textos en mayúscula, necesitan un espaciado mayor entre letras */
.text-spaced {
  letter-spacing: 0.095em;
}

.text-bold {
  font-weight: 600;
}

/* Position Helpers */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative.left,
.absolute.left,
.fixed.left {
  left: 0;
}

.relative.top,
.absolute.top,
.fixed.top {
  top: 0;
}

.relative.right,
.absolute.right,
.fixed.right {
  right: 0;
}

.relative.bottom,
.absolute.bottom,
.fixed.bottom {
  bottom: 0;
}

.center-v {
  top: 50% !important;
  bottom: auto !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.center-h {
  left: 50% !important;
  right: auto !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.center-center {
  top: 50% !important;
  bottom: auto !important;
  left: 50% !important;
  right: auto !important;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* z-index helpers */
.stayTop {
  z-index: 2;
}

.stayMiddle {
  z-index: 1;
}

.stayBottom {
  z-index: auto;
}

/*  Display Helpers  */
.block {
  display: block;
}

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

.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.full-screen-milling {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 50;
  right: 0;
  z-index: 1000;
}

.full-height {
  height: 100%;
}

/*  Animation Helpers */
.transitioned {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.transitioned-fast {
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
}

.transitioned-slow {
  -webkit-transition-duration: 450ms;
  transition-duration: 450ms;
}

/* Other Helpers */
/* mirror img */
.mirrored {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: 'FlipH';
}

.inverted {
  background-color: #ccc !important;
}

/* truncate string with ellipsis */
/* Att the container needs a width */
/* extend with another class or add an inline style with the width */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* remove white space */
.rws {
  line-height: 0;
}

/* clickable */
.is-clickable {
  cursor: pointer;
}

.no-wrap,
.nowrap {
  white-space: nowrap;
}

.pre-wrap,
.prewrap {
  white-space: nowrap;
}

.wrap {
  white-space: normal !important;
}

.break-word {
  word-wrap: break-word !important;
}

.bordered {
  border: 1px solid #ddd;
}

.bordered.active {
  border-color: #ff2a00;
}

table.no-border th,
table.no-border td,
.no-border {
  border: 0 !important;
}

.no-shadow {
  box-shadow: none !important;
}

.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.drag-handler {
  padding: 0.6rem 5px;
}

.is-draggable {
  cursor: move;
}

.invert {
  filter: sepia(100%);
}

/*
  Spacing Scale - based on the base line-height -> 1.5rem

  An eight step powers of two scale ranging from 0 to 12rem.
  Namespaces are composable and thus highly grockable - check the legend below

  Legend:
  p = padding
  m = margin
  a = all
   = horizontal
  v = vertical
  t = top
  r = right
  b = bottom
  l = left
  0 = none
  1 = 1st step in spacing scale
  2 = 2nd step in spacing scale
  3 = 3rd step in spacing scale
  4 = 4th step in spacing scale
  5 = 5th step in spacing scale
  6 = 6th step in spacing scale
  7 = 7th step in spacing scale
*/
.pa0 {
  padding: 0;
}

.pa1 {
  padding: 0.75rem;
}

.pa2 {
  padding: 1.5rem;
}

.pa3 {
  padding: 3rem;
}

.pa4 {
  padding: 4.5rem;
}

.pa5 {
  padding: 6rem;
}

.pa6 {
  padding: 9rem;
}

.pa7 {
  padding: 12rem;
}

.pl15px {
  padding-left: 15px;
}

.pl0 {
  padding-left: 0;
}

.pl1 {
  padding-left: 0.75rem;
}

.pl2 {
  padding-left: 1.5rem;
}

.pl3 {
  padding-left: 3rem;
}

.pl4 {
  padding-left: 4.5rem;
}

.pl5 {
  padding-left: 6rem;
}

.pl6 {
  padding-left: 9rem;
}

.pl7 {
  padding-left: 12rem;
}

.pr0 {
  padding-right: 0;
}

.pr1 {
  padding-right: 0.75rem;
}

.pr2 {
  padding-right: 1.5rem;
}

.pr3 {
  padding-right: 3rem;
}

.pr4 {
  padding-right: 4.5rem;
}

.pr5 {
  padding-right: 6rem;
}

.pr6 {
  padding-right: 9rem;
}

.pr7 {
  padding-right: 12rem;
}

.pb0 {
  padding-bottom: 0;
}

.pb1 {
  padding-bottom: 0.75rem;
}

.pb2 {
  padding-bottom: 1.5rem;
}

.pb3 {
  padding-bottom: 3rem;
}

.pb4 {
  padding-bottom: 4.5rem;
}

.pb5 {
  padding-bottom: 6rem;
}

.pb6 {
  padding-bottom: 9rem;
}

.pb7 {
  padding-bottom: 12rem;
}

.pt0 {
  padding-top: 0;
}

.pt1 {
  padding-top: 0.75rem;
}

.pt2 {
  padding-top: 1.5rem;
}

.pt3 {
  padding-top: 3rem;
}

.pt4 {
  padding-top: 4.5rem;
}

.pt5 {
  padding-top: 6rem;
}

.pt6 {
  padding-top: 9rem;
}

.pt7 {
  padding-top: 12rem;
}

.pv0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pv1 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pv2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pv3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pv4 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.pv5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pv6 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.pv7 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.ph0 {
  padding-left: 0;
  padding-right: 0;
}

.ph1 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.ph2 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ph3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.ph4 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.ph5 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.ph6 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.ph7 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.ma0 {
  margin: 0;
}

.ma1 {
  margin: 0.75rem;
}

.ma2 {
  margin: 1.5rem;
}

.ma3 {
  margin: 3rem;
}

.ma4 {
  margin: 4.5rem;
}

.ma5 {
  margin: 6rem;
}

.ma6 {
  margin: 9rem;
}

.ma7 {
  margin: 12rem;
}

.mlauto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml0 {
  margin-left: 0;
}

.ml0-2 {
  margin-left: 0.2;
}

.ml1 {
  margin-left: 0.75rem;
}

.p0XL {
  padding: 0 !important;
}

.pt25 {
  padding-top: 20px;
}

.mb--20 {
  margin-bottom: -35px;
}

.ml1-11 {
  margin-left: 1.1rem;
}

.ml1-1 {
  margin-left: 1.1rem;
}

.ml2 {
  margin-left: 1.5rem;
}

.ml2-3 {
  margin-left: 2.3rem;
}

.ml2-1 {
  margin-left: 2.1rem;
}

.ml3 {
  margin-left: 3rem;
}

.ml4 {
  margin-left: 4.5rem;
}

.fs-ml-15 {
  margin-left: 15px;
}

.fs-px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.backgroundGrey {
  background: linear-gradient(90deg, rgba(221, 221, 221, 1) 0%, rgb(249, 249, 249) 100%);
}

.text-shrink {
  font-size: 13px;
  font-weight: 400;
}

.input-shrink {
  margin-top: 3px !important;
}

@media (min-width: 900px) {
  .ml3 {
    margin-left: 3rem;
  }

  .mlLaboratory {
    margin-left: 13px;
  }

  .expandMargin {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .expandMarginGeneral {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .expandPaddingGeneral {
    padding-top: 2.5rem !important;
    padding-bottom: 2rem !important;
  }

  .marginInputGroup {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .ml-widget-diabetic {
    margin-left: -20px;
  }

  .ml-widget-leftRight {
    margin-left: -30px;
  }

  .mt-label {
    margin-top: 4px !important;
  }

  .margin-inline {
    margin-inline: 28px !important;
  }

  .ml-textinputStyle {
    margin-left: 8px;
  }

  .mt-mandatoryLine {
    margin-top: -15px;
  }

  .mt-mandatoryLabel {
    margin-top: 10px;
  }

  .ml-widget {
    margin-left: -5px;
  }

  .ml--4 {
    margin-left: -4px;
  }

  .mt-widgetTextLine {
    margin-top: -8px;
  }

  .mt-widgetComboLine {
    margin-top: -15px;
  }

  .ml--10px {
    margin-left: -10px;
  }

  .ml-mobile {
    margin-left: 1px;
  }

  .mb-5 {
    margin-bottom: 0.75rem;
  }

  .borderGroupLeft {
    border-left: 1px solid #dddd;
    border-bottom: 1px solid #dddd;
    border-top: 1px solid #dddd;
  }

  .borderGroupRight {
    border-right: 1px solid #dddd;
    border-bottom: 1px solid #dddd;
    border-top: 1px solid #dddd;
  }

  .borderGroup {
    border: 1px solid #dddd;
  }

  .borderGroupTop {
    border-top: 1px solid #dddd;
  }

  .p0 {
    padding: 0 !important;
  }

  .m0 {
    margin: 0 !important;
  }

  .py20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 899px) {
  .ml3 {
    margin-left: 0rem;
  }

  .ml1-1 {
    margin-left: 0rem;
  }

  .ml-mobile {
    margin-left: -17px !important;
  }

  .ml-widget-diabetic {
    margin-left: -20px;
  }

  .ml-widget-leftRight {
    margin-left: 0px;
  }

  .ml-label {
    margin-left: 0px;
  }

  .ml-group {
    margin-left: 0px;
  }

  .ml-group {
    margin-left: 0px;
  }

  .mt-mandatory {
    margin-top: 0px;
  }

  .mt-mandatoryLine {
    margin-top: 0px;
  }

  .mt-mandatoryLabel {
    margin-top: 0px;
  }

  .ml-widget {
    margin-left: 0px;
  }

  .ml3-anamnesis {
    margin-left: 0px;
  }

  .p0Mobile {
    padding: 0 !important;
  }
}

.ml5 {
  margin-left: 6rem;
}

.ml5-5 {
  margin-left: 24%;
}

.ml6 {
  margin-left: 9rem;
}

.ml7 {
  margin-left: 12rem;
}

@media (min-width: 1200px) {
  .ml7-7 {
    margin-left: 6rem;
  }
}

.mb--10 {
  margin-top: -15px;
}

.mb-8 {
  margin-bottom: 7px;
}

.mrauto {
  margin-right: auto;
}

.m0 {
  margin: 0;
}

.mr0 {
  margin-right: 0;
}

.mr1 {
  margin-right: 0.75rem;
}

.mr2 {
  margin-right: 1.5rem;
}

.mr3 {
  margin-right: 3rem;
}

.mr4 {
  margin-right: 4.5rem;
}

.mr5 {
  margin-right: 6rem;
}

.mr6 {
  margin-right: 9rem;
}

.mr7 {
  margin-right: 12rem;
}

.mbauto {
  margin-bottom: auto;
}

.mb0 {
  margin-bottom: 0;
}

.mb1 {
  margin-bottom: 0.75rem;
}

.mb2 {
  margin-bottom: 1.5rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb4 {
  margin-bottom: 4.5rem;
}

.mb5 {
  margin-bottom: 6rem;
}

.mb6 {
  margin-bottom: 9rem;
}

.mb7 {
  margin-bottom: 12rem;
}

.mtauto {
  margin-top: auto;
}

.mt0 {
  margin-top: 0;
}

.mt1 {
  margin-top: 0.75rem;
}

.mt2 {
  margin-top: 1.5rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4.5rem;
}

.mt5 {
  margin-top: 6rem;
}

.mt6 {
  margin-top: 9rem;
}

.mt7 {
  margin-top: 12rem;
}

.mv0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mv1 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mv2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mv3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mv4 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.mv5 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mv6 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.mv7 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.mh0 {
  margin-left: 0;
  margin-right: 0;
}

.mh1 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mh2 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mh3 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mh4 {
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

.mh5 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mh6 {
  margin-left: 9rem;
  margin-right: 9rem;
}

.mh7 {
  margin-left: 12rem;
  margin-right: 12rem;
}

/* -------- Vertical Align Utilities ---------------- */

.valign-middle {
  vertical-align: middle;
}

.valign-top {
  vertical-align: top;
}

.valign-bottom {
  vertical-align: bottom;
}

.valign-baseline {
  vertical-align: baseline;
}

/* ------------ Flex Utilities --------------------- */
.d-xs-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-xs-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.flex-xs-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.flex-xs-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.flex-xs-unordered {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.flex-xs-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-xs-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-xs-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-xs-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-xs-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-xs-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-xs-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-xs-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-xs-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-xs-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-xs-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-xs-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-xs-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-xs-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-xs-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-xs-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-xs-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-xs-start {
  -webkit-align-content: flex-start !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-xs-end {
  -webkit-align-content: flex-end !important;
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-xs-center {
  -webkit-align-content: center !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-xs-between {
  -webkit-align-content: space-between !important;
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-xs-around {
  -webkit-align-content: space-around !important;
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-xs-stretch {
  -webkit-align-content: stretch !important;
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-xs-auto {
  -webkit-align-self: auto !important;
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}

.align-self-xs-start {
  -webkit-align-self: flex-start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-xs-end {
  -webkit-align-self: flex-end !important;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-xs-center {
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important;
}

.align-self-xs-baseline {
  -webkit-align-self: baseline !important;
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-xs-stretch {
  -webkit-align-self: stretch !important;
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 767px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .flex-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-sm-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-sm-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .flex-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-md-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-md-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .flex-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-lg-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-lg-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

/* --------------------------------- Trumps --------------------------------------- */
@media screen and (max-width: 1280px) {
  .btn[class*='vc_'] {
    margin-bottom: 3px;
  }
}

.btn[class*='vc_'],
.btn[class*='vc_']:hover,
.btn[class*='vc_']:active,
.btn[class*='vc_']:focus,
.btn[class*='vc_'].active {
  color: white;
}

.btn[class*='vc_']:not(.btn-theme),
.btn[class*='vc_']:hover:not(.btn-theme),
.btn[class*='vc_']:focus:not(.btn-theme),
.btn[class*='vc_']:active:not(.btn-theme),
.btn[class*='vc_'].active:not(.btn-theme) {
  background-image: none;
}

.vc_cancel,
.vc_cancel:active,
.vc_cancel.active {
  background-color: #b50b0b;
  background-image: url('/images/cancel.png');
}

.vc_support,
.vc_support:active,
.vc_support.active {
  background-color: #00af32;
  background-image: url('/images/mypanel/support.png');
}

.vc_share,
.vc_share:active,
.vc_share.active {
  background-color: #00af32;
  background-image: url('/images/duplicateToGroup.png');
}

.vc_shoppingcart,
.vc_shoppingcart:active,
.vc_shoppingcart.active {
  background-color: #00b4bb;
  background-image: url('/images/mypanel/shoppingcart.png');
}

.vc_appointment,
.vc_appointment:active,
.vc_appointment.active {
  background-color: #00af32;
  background-image: url('/images/help-request-appointment.png');
}

.modal .btn-theme {
  width: 6.70541667rem;
  height: 6.5rem;
}

.vc_close,
.vc_close:active,
.vc_close.active {
  background-color: #38bec9;
  background-image: url('/images/cancel.png');
}

.vc_ok,
.vc_ok:active,
.vc_ok.active {
  background-color: #38bec9;
  background-image: url('/images/ok.png');
}

.vc_okWarning,
.vc_okWarning:active,
.vc_okWarning.active {
  background-color: #ffbb00;
  background-image: url('/images/ok.png');
}

.vc_change,
.vc_change:active,
.vc_change.active {
  background-color: #38bec9;
  background-image: url('/images/previous.png');
}

.vc_ignore,
.vc_ignore:active,
.vc_ignore.active {
  background-color: #b50b0b;
  background-image: url('/images/ok.png');
}

.vc_apply,
.vc_apply:active,
.vc_apply.active {
  background-color: #ca06ee;
  background-image: url('/images/completed.png');
}

.vc_save,
.vc_save:active,
.vc_save.active {
  background-color: #00af32;
  background-image: url('/images/save.png');
}

.vc_archive,
.vc_archive:active,
.vc_archive.active {
  background-color: #4d6668;
  background-image: url('/images/archive-white.png');
}

.vc_unarchive,
.vc_unarchive:active,
.vc_unarchive.active {
  background-color: #4d6668;
  background-image: url('/images/unarchive-white.png');
}

.vc_bad,
.vc_bad:active,
.vc_bad.active {
  background-color: #b50b0b;
  background-image: url('/images/badinsole.png');
}

.vc_search,
.vc_search:active,
.vc_search.active {
  background-color: #4d6668;
  background-image: url('/images/search.png');
}

.vc_good,
.vc_good:active,
.vc_good.active {
  background-color: #00af32;
  background-image: url('/images/completed.png');
}

.vc_pass,
.vc_pass:active,
.vc_pass.active {
  background-color: #38bec9;
  background-image: url('/images/login2.png');
}

.vc_startmanufacturing,
.vc_startmanufacturing:active,
.vc_startmanufacturing.active {
  background-color: #38bec9;
  background-image: url('/images/startmanufacturing.png');
}

.vc_stopmanufacturing,
.vc_stopmanufacturing:active,
.vc_stopmanufacturing.active {
  background-color: #b50b0b;
  background-image: url('/images/stopmanufacturing.png');
}

.vc_canceloutsourcing,
.vc_canceloutsourcing:active,
.vc_canceloutsourcing.active {
  background-color: #b50b0b;
  background-image: url('/images/cancel-outsource.png');
}

.vc_expedition,
.vc_expedition:active,
.vc_expedition.active {
  background-color: #00af32;
  background-image: url('/images/expedition.png');
}

.vc_generatelabels,
.vc_generatelabels:active,
.vc_generatelabels.active {
  background-color: #ca06ee;
  background-image: url('/images/generatelabels.png');
}

.vc_generatedymolabels,
.vc_generatedymolabels:active,
.vc_generatedymolabels.active {
  background-color: #5297d1;
  background-image: url('/images/generateLabelsDymo.png');
}

.vc_generatereport,
.vc_generatereport:active,
.vc_generatereport.active {
  background-color: #399;
  background-image: url('/images/orderlist.png');
}

.vc_overviewbtn,
.vc_overviewbtn:active,
.vc_overviewbtn.active {
  background-color: #399;
}

.vc_filepicture,
.vc_filepicture:active,
.vc_filepicture.active {
  background-color: #ca06ee;
  background-image: url('/images/picture.png');
}

.vc_adduser,
.vc_adduser:active,
.vc_adduser.active {
  background-color: #a1c00f;
  background-image: url('/images/adduser.png');
}

.vc_next,
.vc_next:active,
.vc_next.active {
  background-color: #00af32;
  background-image: url('/images/next.png');
}

.vc_newinsole,
.vc_newinsole:active,
.vc_newinsole.active {
  background-color: #a1c00f;
  background-image: url('/images/newinsole.png');
  /*background-size: 26%;*/
}

.vc_orderlist,
.vc_orderlist:active,
.vc_orderlist.active {
  background-color: #38bec9;
  background-image: url('/images/orderlist.png');
  /*background-size: 24%;*/
}

.vc_outsource:active,
.vc_outsource.active {
  background-color: #399;
  background-image: url('/images/outsource.png');
}

.vc_outsource {
  position: relative;
  background-color: #399;
  padding: 38px 20px 10px;
  color: #fff;
  border: none;
  font-size: clamp(6px, 2vw, 11px);
  text-align: center;
  white-space: normal;
  overflow: hidden;
}

.vc_outsource::before {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url('/images/outsource.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.vc_outsource span {
  padding-top: 30px;
}

@media (max-width: 1920px) {
  .vc_outsource {
    font-size: 11px;
  }
}

@media (max-width: 1400px) {
  .vc_outsource {
    font-size: 8px;
  }
}

.vc_pay,
.vc_pay:active,
.vc_pay.active {
  background-color: #00af32;
  background-image: url('/images/pay.png');
}

.vc_newaddress,
.vc_newaddress:active,
.vc_newaddress.active {
  background-color: #a1c00f;
  background-image: url('/images/newaddres.png');
}

.vc_filtersremove,
.vc_filtersremove:active,
.vc_filtersremove.active {
  background-color: #ca06ee;
  background-image: url('/images/filtersremove.png');
}

.vc_anamnesisclear,
.vc_anamnesisclear:active,
.vc_anamnesisclear.active {
  background-color: #ca06ee;
  background-image: url('/images/erase.png');
}

.vc_delegateDesign,
.vc_delegateDesign:active,
.vc_delegateDesign.active {
  background-color: #00af32;
  background-image: url('/images/services/fullDesign.png');
}

.vc_milling,
.vc_milling:active,
.vc_milling.active {
  background-color: #00af32;
  background-image: url('/images/manufacture.png');
}

.vc_milling2 {
  background-color: #00af32;
  background-image: url('/images/milling.png');
}

.vc_millingmachinecontroller,
.vc_millingmachinecontroller:active,
.vc_millingmachinecontroller.active {
  background-color: #099;
  background-image: url('/images/millingmachinecontroller.png');
}

.vc_webCAM {
  background-color: #00af32;
  background-image: url('/images/webcam-tool.png');
}

.vc_webCAMController,
.vc_webCAMController:active,
.vc_webCAMController.active {
  background-color: #00af32;
  background-image: url('/images/webcam-tool.png');
}

.vc_settings,
.vc_settings:active,
.vc_settings.active {
  background-color: #f90;
  /*background-image:  url('/images/settings.png'); */
}

.vc_infobrandsole,
.vc_infobrandsole:active,
.vc_infobrandsole.active {
  background-color: #990;
  /* background-image: url('/images/infobrandsole.png');*/
}

.vc_defaultplugin,
.vc_defaultplugin:active,
.vc_defaultplugin.active {
  background-color: #ca06ee;
  background-image: url('/images/defaultplugin.png');
}

.vc_deleteplugin,
.vc_deleteplugin:active,
.vc_deleteplugin.active {
  background-color: #b50b0b;
  background-image: url('/images/deleteplugin.png');
}

.vc_delete,
.vc_delete:active,
.vc_delete.active {
  background-color: #b50b0b;
  background-image: url('/images/erase.png');
}

.vc_addplugin,
.vc_addplugin:active,
.vc_addplugin.active {
  background-color: #a1c00f;
  background-image: url('/images/addplugin.png');
}

.vc_newtoken,
.vc_newtoken:active,
.vc_newtoken.active {
  background-color: #00af32;
  background-image: url('/images/token-icon.png');
}

.vc_deleteCad2,
.vc_deleteCad2:active,
.vc_deleteCad2.active {
  width: 90px;
  height: 80px;
  color: #fff;
  padding-top: 60px !important;
  margin: 1%;
  cursor: pointer;
  margin-top: 15px;
  background: #b50b0b url('/images/erase.png') no-repeat center 8px;
  background-size: 50%;
  float: left;
}

.vc_nextCad2,
.vc_nextCad2:active,
.vc_nextCad2.active {
  width: 90px;
  height: 80px;
  color: #fff;
  padding-top: 60px !important;
  cursor: pointer;
  margin: 1%;
  margin-right: 4%;
  margin-top: 15px;
  background: #00af32 url('/images/next.png') no-repeat center 8px;
  background-size: 55%;
  float: left;
}

.vc_changeState,
.vc_changeState:active,
.vc_changeState.active {
  background-color: #ca06ee;
  background-image: url('/images/changestate.png');
}

.vc_changeUser,
.vc_changeUser:active,
.vc_changeUser.active {
  background-color: #ca06ee;
  background-image: url('/images/changeuser.png');
}

.vc_launch,
.vc_launch:active,
.vc_launch.active {
  background-color: #ca06ee;
  background-image: url('/images/launch.png');
}

.vc_downloadStl,
.vc_downloadStl:active,
.vc_downloadStl.active {
  background-color: #ffd91a;
  background-image: url('/images/download_mini_icon.png');
}

.vc_previous,
.vc_previous:active,
.vc_previous.active {
  background-color: #38bec9;
  background-image: url('/images/previous.png');
}

.response {
  border: 1px solid #000;
  position: absolute;
  z-index: 1;
  left: -500px;
  top: -500px;
  height: 1px;
  width: 1px;
}

.mandatoryNotFilled {
  border: 2px solid red;
  border-radius: 10px;
}

.mandatoryNotFilledPlaceholder {
  border: 2px solid transparent;
}

.vx-rounded-square {
  border: solid 2px;
  background-color: #fff;
  border-radius: 2rem;
  padding: 3rem 1.5rem;
}

.label-btn {
  font-size: 0.6rem;
}

/* LOCATIONS section */

.locations-table {
  border: solid 1px #ccc;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
}

option:disabled {
  color: -internal-light-dark(graytext, #111) !important;
  background-color: #111 !important;
}

select:invalid {
  color: #aaa;
}

.image-map {
  position: relative;
}

.map-circle {
  background: #b99c6b;
}

.image-map-btn {
  transition: 0.3s;
  opacity: 1;
}

.image-map-btn:hover {
  cursor: pointer;
  opacity: 0.5;
}

.image-map-btn.readOnly:hover {
  cursor: not-allowed;
}

.image-map-btn-unselect:hover {
  opacity: 0.25;
}

.image-map-btn-unselect {
  fill: #000;
  opacity: 0;
}

span.readonly {
  cursor: not-allowed;
}

.bg-mandatory {
  background: #ff000055;
}

/*Printers status grid*/
.printers-status-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 1em;
  grid-template-areas:
    'status status status order order order'
    'temperature temperature temperature elapsed-time elapsed-time elapsed-time'
    'remaining-time remaining-time remaining-time percent percent percent'
    'actions actions actions actions actions actions';
}

@media (min-width: 720px) {
  .printers-status-container {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
      'status status order order temperature temperature'
      'elapsed-time elapsed-time remaining-time remaining-time percent percent'
      'actions actions actions actions actions actions';
  }
}
@media (min-width: 992px) {
  .printers-status-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 'status order temperature elapsed-time remaining-time percent actions';
    align-items: center;
  }
}

.printers-order {
  grid-area: order;
}
.printers-temperature {
  grid-area: temperature;
}
.printers-elapsed-time {
  grid-area: elapsed-time;
}
.printers-remaining-time {
  grid-area: remaining-time;
}
.printers-percent {
  grid-area: percent;
}
.printers-actions {
  grid-area: actions;
}

/*Printers status colors*/
.printers-status {
  grid-area: status;
  --status-effect-gradient: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 90%);
  border: 1px solid #00000020;
  padding: 1rem;
  border-radius: 1rem !important;
  position: relative;
  overflow: hidden;
}

.printers-status::after {
  content: '';
  background-color: #eaeaea;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: multiply;
}

.printers-status.status-green::after {
  background-color: hsl(123, 40%, 70%);
}
.printers-status.status-blue::after {
  background-color: hsl(180, 50%, 70%);
}
.printers-status.status-yellow::after {
  background-color: hsl(39, 100%, 70%);
}
.printers-status.status-orange::after {
  background-color: hsl(25, 100%, 70%);
}
.printers-status.status-red::after {
  background-color: hsl(0, 80%, 70%);
}

.printers-status.dynamic {
  background: var(--status-effect-gradient);
  animation: horizontal-movement 1.5s ease-out 0s infinite;
  background-size: 300px;
}

.printers-status.marquee {
  background: var(--status-effect-gradient);
  animation: horizontal-movement 3s linear 0s infinite;
  background-size: 100px;
}

@keyframes horizontal-movement {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 300px 0;
  }
}

.printers-status.pulse {
  animation: lights-on 1s linear 0s infinite;
  animation-direction: alternate;
}

@keyframes lights-on {
  from {
    background-color: rgba(0, 0, 0, 0.2);
  }
  to {
    background-color: rgba(0, 0, 0, 0);
  }
}

.printers-status-item {
  margin: 10px;
}

.printers-status .status-text {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.12em;
}
/*Printing Progress Bar*/
.printer-progressbar {
  display: flex;
  width: 100%;
  border-radius: 5px;
  position: relative;
  min-height: 20px;
  overflow: hidden;
  background: hsl(180, 50%, 90%);
}
.printer-progressbar.status-green {
  background-color: hsl(123, 40%, 90%);
}
.printer-progressbar.status-blue {
  background-color: hsl(180, 50%, 90%);
}
.printer-progressbar.status-yellow {
  background-color: hsl(39, 100%, 90%);
}
.printer-progressbar.status-orange {
  background-color: hsl(25, 100%, 90%);
}
.printer-progressbar.status-red {
  background-color: hsl(0, 80%, 90%);
}

.printer-progressbar .printer-percent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}
.printer-progressbar .printer-progress {
  transition: all 0.3s ease;
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  animation: progress-bar-stripes 2s linear infinite;
}

.printer-progressbar .printer-progress.status-green {
  background-color: hsl(123, 40%, 70%);
}
.printer-progressbar .printer-progress.status-blue {
  background-color: hsl(180, 50%, 70%);
}
.printer-progressbar .printer-progress.status-yellow {
  background-color: hsl(39, 100%, 70%);
}
.printer-progressbar .printer-progress.status-orange {
  background-color: hsl(25, 100%, 70%);
}
.printer-progressbar .printer-progress.status-red {
  background-color: hsl(0, 80%, 70%);
}

@keyframes progress-bar-stripes {
  from {
    background-position: -40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.printers-status-item-actions {
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.printer-btn {
  padding: 4px;
}

@keyframes blink-orange {
  0% {
    background-color: hsl(25, 100%, 80%);
  }

  100% {
    background-color: hsl(25, 100%, 70%);
    box-shadow: 0px 0px 25px 0px rgb(123, 101, 170, 0.6);
  }
}

.printer-btn.blink-orange {
  animation: 0.75s ease blink-orange infinite alternate both;
}

.printers-actions-container {
  display: grid;
  grid-gap: 5px 10px;
  width: 100%;
}

.printers-actions-container .printer-btn:first-child {
  width: 100%;
}

.pt-3-forced {
  padding-top: 3rem !important;
}

.border-bottom-light {
  border-bottom: 1px solid #c9c9c9;
}

.mb0-20 {
  margin-bottom: 0.2rem;
}

.pl-center-fs {
  padding-left: 30%;
}

@media (max-width: 899px) {
  .pl-center-fs {
    padding-left: 25%;
  }
}

@media (min-width: 993px) {
  .ml-sol-anamnesis {
    margin-left: -349px;
  }
}

.orderdesign-frame {
  width: 100vw;
  height: calc(100vh - 78px);
}

.configurator-product-name {
  position: absolute;
  top: 0;
  margin-bottom: 3px;
  margin-top: 12px;
  margin-left: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.header-info-remarks {
  max-width: 83.33333333%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.report-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.a3 {
  max-height: 1400px;
}

.a4 {
  max-height: 900px;
}

.report-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.report-column > img {
  box-sizing: border-box;
  width: auto;
  max-height: 100%;
  display: block;
}

.img-placeholder {
  margin: 0 auto;
  max-width: 200px;
  min-height: 70px;
  background-color: #eee;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -204px 0;
  }

  100% {
    background-position: 202px 0;
  }
}

.img-placeholder-background {
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: darkgray;
  background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
  background-size: 404px 74px;
  height: 70px;
  position: relative;
}

.report_apd {
  color: black;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.report_apd_left {
  text-align: left;
  display: inline-block;
  width: 49%;
}
.report_apd_top {
  margin-top: 5px;
}

.a4 .container_report_bottom {
  padding-top: 30px;
}

.a3 .container_report_bottom {
  padding-top: 30px;
}

.report_apd_bottom_left {
  margin-left: 0px;
  display: inline-block;
  width: 49%;
}

.report_apd_right {
  text-align: right;
  display: inline-block;
  width: 49%;
}
.report_apd_bottom_right {
  margin-right: 0px;
  display: inline-block;
  width: 49%;
}

.report_one_foot_left {
  max-width: 49%;
}

.report_one_foot_right {
  max-width: 49%;
  margin-left: auto;
}

.report_booth_foot {
  max-width: 98%;
  margin-left: auto;
}

.report_format_a4_width {
  min-width: 700px;
}
.report_format_a3_width {
  min-width: 1000px;
}

.report_apd_font_a3_legal {
  font-size: 1.2rem;
}

/*Floating Cookie Button*/
.vxc-button-cookies,
.vxc-button-cookies:focus {
  position: fixed;
  left: 1rem;
  bottom: 0.5rem;
  background-color: #444;
  margin-bottom: 12px;
  border-radius: 50%;
  z-index: 99;
  padding: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: 0.3s ease all;
  text-decoration: none;
}

.vxc-button-cookies .cookie-icon {
  width: 40px;
  height: 40px;
  fill: white;
}

.vxc-button-cookies .cookie-text {
  display: none;
  margin-left: 1rem;
  font-size: 15px;
}

.vxc-button-cookies:hover {
  text-decoration: none;
  background-color: white;
  color: #444;
}

.vxc-button-cookies:hover .cookie-icon {
  fill: #444;
}
@media (min-width: 780px) {
  .vxc-button-cookies,
  .vxc-button-cookies:focus {
    padding: 5px 20px;
    border-radius: 999em;
  }

  .vxc-button-cookies .cookie-icon {
    width: 16px;
    height: 16px;
  }
  .vxc-button-cookies .cookie-text {
    display: inline-block;
  }
}

/* Crop Tool for 3D plugin */
.container-crop-tool {
  margin-top: 6px;
}

.warning-no-data {
  padding-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #ffd700;
  margin-bottom: 10px !important;
}

.container-crop-tool-active {
  border: 1px solid #f2f2f2;
  border-radius: 5px;
}

.container-crop-tool-btn {
  padding: 0 !important;
}

.crop-title {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.crop-title label {
  padding-left: 5px;
  margin-top: 6px;
  margin-bottom: 7px;
  font-weight: 500 !important;
}

.crop-title svg {
  margin-top: 6px;
  padding-top: 1px;
}

.crop-button-container {
  padding: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: white;
  border: none;
}

.crop-button-container button {
  padding: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: white;
  border: none;
}

.control-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.control-actions button {
  padding-bottom: 5px !important;
}

.undo-button.active,
.crop-button {
  opacity: 0.85 !important;
  padding-bottom: 5px !important;
  cursor: pointer;
}
.undo-button.active:hover,
.crop-button:hover {
  opacity: 1 !important;
}

.crop-button {
  margin-top: 5px;
  background-color: #ac3131;
  opacity: 0.75;
}

.undo-button {
  margin-top: 5px;
  background-color: #3383cc;
  opacity: 0.25;
}

.crop-button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
/* Fin Crop Tool for 3D plugin */

.cad-version {
  position: fixed;
  bottom: 5px;
  right: 15px;
  border-radius: 5px;
  background-color: #f9f9f980;
  padding: 5px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.g_code_viewer_container {
  height: 65vh;
}

.g_code_viewer_container .g_code_viewer {
  width: 100%;
  height: 100%;
}

.g_code_viewer > textarea {
  padding: 5px;
  width: 100%;
  height: 100%;
  overflow: auto;
  color: #333;
  background-color: #fefefe;
}

@media (min-width: 1280px) {
  .modal-body .design-options-wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .modal-body .design-options-wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .modal-body .design-options-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .modal-body .design-options-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 599px) {
  .modal-body .design-options-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .modal-body .design-options-wrapper > div {
    display: flex;
    flex: 1 1 0;
  }

  .modal-body .design-options-wrapper > div > button {
    flex: 1 1 0;
    min-width: auto !important;
  }
}

.panel-widget {
  float: none;
}

.panel-widget:nth-child(4n) {
  background-color: #eee;
}
.panel-widget:nth-child(4n-1) {
  background-color: #eee;
}

.forced-br {
  width: calc(50dvw - 55px);
  height: 0;
  display: inline-block;
}

.flex-xs-gap-1 {
  gap: 1rem;
}

.btn-distort {
  background-color: #eaeaea;
  padding: 4px;
  border: none;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  cursor: default;
  border-radius: 0 !important;
  &.active {
    background-color: #ffbb00;
  }
}

.btn-bottom-container-plugin {
  display: flex;
  justify-content: space-around;
  padding: 5px;
  max-height: 90px;
  height: auto;
}

.btn-plugin {
  margin: 0 0 3px 3px;
  max-width: 85px;
  max-width: 85px;
  width: 100%;
  background-color: #4d4d4d;
}

.btn-plugin:hover {
  background-color: #1a1a1a;
}

.responsive-img {
  max-width: 85px;
  padding: 3px;
  max-height: 85px;
  width: 100%;
  height: auto;
}

/* Height tool plugin 3D Data */
.container-height-tool {
  margin-top: 6px;
}

.container-height-tool-active {
  border: 1px solid #f2f2f2;
  border-radius: 5px;
}

.container-height-tool-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.height-title {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.height-title label {
  margin-bottom: 2px !important;
}

.feet-container {
  display: flex;
  justify-content: center;
}

.foot-section {
  flex: 1;
  border: 1px solid #888;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 2px;
  text-align: left;
  background-color: #333;
  color: #fff;
}

.foot-section h4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.point-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  border-bottom: 1px solid #444;
  margin-left: 3px;
}

.point-item span {
  font-size: 12px;
  color: #fff;
  flex: 1;
  text-align: left;
}

.buttons-container {
  display: flex;
  gap: 5px;
}

.point-item button {
  font-size: 10px;
  padding: 2px 5px;
  color: #fff;
  background-color: #777;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 2px;
}

.point-item button:hover {
  background-color: #999;
}

@media (max-width: 768px) {
  .feet-container {
    flex-direction: column;
  }

  .foot-section {
    margin-bottom: 10px;
  }
}

.edit-container {
  position: relative;
}

.input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.edit-input-with-btn {
  width: 100%;
  padding-right: 30px;
  font-size: 12px;
  padding: 1px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #333;
  box-sizing: border-box;
}

.confirm-btn-inside {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-color: #4caf50 !important;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
}

.confirm-btn-inside:hover {
  background-color: #45a049 !important;
}
