/*
<div class="spinner">
  <div class="double-bounce1"></div>
  <div class="double-bounce2"></div>
</div>

<div class="spinner"><div class="double-bounce1"></div><div class="double-bounce2"></div></div>
*/

.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0.0)
  }

  50% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }

  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/*
<div class="loading"></div>
<div class="loading-pulse"></div>
<div class="loading loading--double"></div>
*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse {
  50% {
    background: white;
  }
}

@keyframes pulse {
  50% {
    background: white;
  }
}

.loading {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}

.loading--double {
  border-style: double;
  border-width: .5rem;
}

.loading-pulse {
  position: relative;
  width: 6px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-animation: pulse 750ms infinite;
  animation: pulse 750ms infinite;
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}

.loading-pulse:before,
.loading-pulse:after {
  content: '';
  position: absolute;
  display: block;
  height: 16px;
  width: 6px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: pulse 750ms infinite;
  animation: pulse 750ms infinite;
}

.loading-pulse:before {
  left: -12px;
}

.loading-pulse:after {
  left: 12px;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}

/*
<div class="sk-fading-circle">
  <div class="sk-circle1 sk-circle"></div>
  <div class="sk-circle2 sk-circle"></div>
  <div class="sk-circle3 sk-circle"></div>
  <div class="sk-circle4 sk-circle"></div>
  <div class="sk-circle5 sk-circle"></div>
  <div class="sk-circle6 sk-circle"></div>
  <div class="sk-circle7 sk-circle"></div>
  <div class="sk-circle8 sk-circle"></div>
  <div class="sk-circle9 sk-circle"></div>
  <div class="sk-circle10 sk-circle"></div>
  <div class="sk-circle11 sk-circle"></div>
  <div class="sk-circle12 sk-circle"></div>
</div>
*/
.sk-fading-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {

  0%,
  39%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

@keyframes sk-circleFadeDelay {

  0%,
  39%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}




.lang-item-menu a {
  padding: 0px !important;
}

.lang-item {
  padding: 5px;
}

.img-lang-flag {
  /*
	width: 100% !important;
	max-width: 20px !important;
	height: auto !important;
*/
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -2px;

}

body.login-page .navbar,
body.login-page .content-header {
  display: none;
}

body.login-page .main-header,
body.login-page .main-sidebar,
body.page-500 .main-sidebar,
body.page-500 .navbar-custom-menu,
body.page-500 .breadcrumb {
  display: none !important;
}

body.login-page .content-wrapper,
body.login-page .right-side,
body.login-page .main-footer,
body.page-500 .content-wrapper,
body.page-500 .right-side,
body.page-500 .main-footer {
  margin-left: 0px;
}

.dataTable_container {
  width: 100%;
  background: #F4F4F4;
}

.dataTable_hover {
  background: #F0DCB6;
}

label {
  font-weight: normal;
}

label.key:before,
label.required:before {
  content: '*';
  color: #e74c3c;
}

input.key,
input.required {
  border-color: #95a5a6;
}

.bootstrap-timepicker-widget .form-control {
  padding: 0px !important;
}

.bootstrap-timepicker-widget table td input {
  width: 42px !important;
}

.bootstrap-timepicker-widget table td a {
  padding: 0px !important;

}

.datafieldpicker .input-group-addon {
  cursor: pointer;
}

.webix_view.webix_window {
  z-index: 9999 !important;
}

.select2-container--default .select2-selection--single {
  display: block !important;
  width: 100% !important;
  height: 34px !important;
  padding: 6px 12px !important;
  font-size: 14px !important;
  line-height: 1.42857143 !important;
  color: #555 !important;
  background-color: #fff !important;
  background-image: none !important;
  border: 1px solid #C2C2C2 !important;
  border-radius: 0px !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) !important;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s !important;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !important;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !important;
  outline: 0 !important;
  cursor: pointer !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  border-radius: 0 !important;
  border-left: 1px solid #C2C2C2 !important;
  background-color: #fff !important;
  width: 36px !important;
  height: 32px !important;

}

span.select2-selection__arrow:before {
  content: "\f002";
  font: normal normal normal 14px/1 'FontAwesome';
  position: absolute;
  left: 12px;
  top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #222;
}

.select2-container {
  width: 100% !important;
}

body>.ui-tooltip.ui-widget.ui-corner-all.ui-widget-content {
  display: none !important;
}

/* Optional styling to the right */
.select2-results .fa {
  float: left;
  position: relative;
  line-height: 20px;
  margin-right: 10px;
}

.ocultar {
  display: none !important;
}

.table_add_new_row {
  border: 1px dotted #C2C2C2 !important;
}

.dt_image {
  width: 150px;
  height: auto;
}

.text-big,
.text-h1 {
  font-size: 36px;
}

.text-h2 {
  font-size: 30px;
}

.text-h3 {
  font-size: 24px;
}

.text-h4 {
  font-size: 18px;
}

.text-h5 {
  font-size: 14px;
}

.text-h6 {
  font-size: 12px;
}

table.table {
  border-collapse: separate;
}

table.table thead>tr {
  background: #2550A4;
  color: white;
}

table.table thead>tr {
  border: 1px solid #b6babf;
  background: #0E4289;
  color: #F2F2F2;
  border-bottom: 1px solid #b0cee3;

  padding: 10px;
}

table.table th,
table.table td {
  border: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #ffffff;
}

table.table thead>tr>th {
  border: 1px solid #15599D;
  vertical-align: middle;
}

table.table thead>tr>th {
  border-bottom: 1px solid #b0cee3;
}

table.table tfoot>tr:first-child>td {
  border-top-width: 4px;
  border-top-color: #666666;
  border-top-style: double;
}

table.table-striped>tbody>tr:hover {
  background: #e5f3ff;
  cursor: pointer;
}

.product-row {
  cursor: pointer;
}

.row_selected {
  background: #27ae60 !important;
  color: white;
}

table.table-striped>tbody>tr.row_selected {
  background: #27ae60;
  cursor: pointer;
  color: white;
  border: 1px solid #4CAF50;
}

table.table-striped>tbody>tr.row_selected td {
  color: white;
  border: 1px solid #4CAF50;
}


.pdf_viewer {
  width: 100%;
  height: 500px;
}

.sub-total td {
  border-top-width: 4px !important;
  border-top-color: #666666 !important;
  border-top-style: double !important;
  border-bottom-width: 2px !important;
  border-bottom-color: #666666 !important;
  font-weight: bold;
}

.format-money:before {
  content: '$ ';
}

hr.hr-style-one {
  border: 0;
  height: 1px;
  background: #0557a0;
  background-image: linear-gradient(to right, #ccc, #0557a0, #ccc);
}

hr.hr-style-two {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

hr.hr-style-eight {
  padding: 0;
  border: none;
  border-top: medium double #0557a0;
  color: #0557a0;
  text-align: center;
}

hr.hr-style-eight:after {
  content: "§";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}

.type-price {}

.type-price::before {
  content: "$";
  font-weight: bold;
}

.type-percent::before {
  content: "%";
  font-weight: bold;
}

.tool-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
}





.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  padding: 4px 0;
  margin: 0 0 10px 25px;
  list-style: none;
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  z-index: 9999999999999;
}

.ui-menu-item>a.ui-corner-all {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #555555;
  white-space: nowrap;
  text-decoration: none;
}

.ui-menu-item:hover,
.ui-state-hover,
.ui-state-active {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: #0088cc;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  background-image: none;
}

.ui-state-focus {
  border: 1px solid #448dae;
  background-color: #dddddd;
  font-weight: normal;
  color: #444444;
}

.wrapper {
  background-color: white !important;
}


/* Breadcrups CSS */
.arrow-steps {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.arrow-steps .step {
  font-family: sans-serif;
  font-size: 12px;
  text-align: center;
  color: #666;
  cursor: default;
  margin: 0 2px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  width: 100%;
  position: relative;
  background-color: #e8ebee;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 17px solid #e8ebee;
  z-index: 2;
  transition: border-color 0.2s ease;
}

.arrow-steps .step:before {
  right: auto;
  left: 0;
  border-left: 17px solid #fff;
  z-index: 0;
}

.arrow-steps .step:first-child:before {
  border: none;
}

.arrow-steps .step:first-child {
  /* border-top-left-radius: 4px;
              border-bottom-left-radius: 4px; */
  margin: 0;
}

.arrow-steps .step span {
  position: relative;
}

.arrow-steps .step span:before {
  opacity: 0;
  content: "✔";
  position: absolute;
  top: -2px;
  left: -20px;
}

.arrow-steps .step.done span:before {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.5s;
  -moz-transition: opacity 0.3s ease 0.5s;
  -ms-transition: opacity 0.3s ease 0.5s;
  transition: opacity 0.3s ease 0.5s;
}

.arrow-steps .step.current {
  color: #fff;
  background-color: #23468c;
}

.arrow-steps .step.current:after {
  border-left: 17px solid #23468c;
}

.arrow-steps .step.complete {
  background-color: #00a5af;
  color: #ffffff;
}

.arrow-steps .step.complete:after {
  border-left: 17px solid #00a5af;
}

/* ./Breadcrups CSS */