* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Verdana;
  text-decoration: none;
}

.version {
  color: white;
}

.material-icons {
  vertical-align: middle;
}

.material-icons:hover {
  cursor: pointer;
}

.tiny {
  font-size: 1rem;
}

.small {
  font-size: 2rem;
}

.medium {
  font-size: 4rem;
}

.large {
  font-size: 6rem;
}

body {
  background-size: 120px;
  background-position: center;
  background-attachment: fixed;
}

header {
  display: block;
  background-color: black;
  padding: 10px;
}

.header-img {
  width: auto;
  height: 100px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 8px;
}

.header-caption {
  color: white;
  padding: 10px;
  display: inline-block;
  vertical-align: middle;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

header #log_out_button {
  position: absolute;
  right: 20px;
  top: 15px;
  color: white;
  border-radius: 5px;
  background-color: white;
  border: none;
  margin: 0px;
  transition: all 0.2s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

#log_out_button:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.5);
}

#log_out_button #user {
  vertical-align: middle;
  display: inline-block;
  color: black;
  font-weight: bold;
  margin: 5px;
}

#log_out_button #log_out_img {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}

.main-section {
  display: block;
}

#login_window {
  display: block;
  width: 400px;
  height: auto;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  border-radius: 5px;
  background-color: #f3f3f3;
}

.window-top {
  text-align: center;
  display: block;
  /*background-color: #1D82C8;*/
  background-color: black;
  border-radius: 5px 5px 0px 0px;
  padding: 10px;
  /*border-radius: 10px 10px 0px 0px;*/
  color: white;
  font-weight: bold;
  font-size: 16pt;
}

.window-area {
  padding: 20px;

  /*border-radius: 0px 0px 10px 10px;*/
}

.block-label {
  display: block;
  /*color: #1D82C8;*/
  color: black;
  font-size: 16pt;
}

.block-input {
  display: block;
  border-radius: 5px;
  width: 100%;
  border: 1px solid gray;
  font-size: 16pt;
  padding: 1px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.block-input:focus {
  box-shadow: #1d82c8 0px 0px 5px;
}

.block-input::placeholder {
  color: lightgray;
}

.button-box {
  display: block;
  text-align: center;
  padding: 20px;
}

.plane-style {
  border: none;
  background-color: transparent;
  color: black;
}

.default-button {
  background-color: lightgray;
  border: 0px;
  border-bottom: 5px solid gray;
  color: black;
  padding: 10px;
  font-size: 12pt;
  transition: all 0.5s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
}

.default-button:hover {
  background-color: #e2e2e2;
  cursor: pointer;
}

.default-button:active {
  margin-top: 5px;
  background-color: lightgray;
  border-bottom: 0px;
}

/** TAB, TAB-CONTENT INTERFACE **/

.tabs {
  display: block;
  background-color: #eaeaea;
  height: 50px;
  padding-left: 20px;
}

.tab-selected {
  display: inline-block;
  background-color: gray;
  height: 35px;
  vertical-align: top;
  padding: 5px;
  margin-top: 5px;
  background-color: white;
  border-radius: 5px 5px 0px 0px;
  user-select: none;
  -webkit-user-select: none;
  -mox-user-select: none;
  -o-user-select: none;
  font-size: 16pt;
}

.tab-selected:hover {
  cursor: pointer;
}

.tab {
  display: inline-block;
  background-color: transparent;
  height: 20px;
  margin-top: 20px;
  vertical-align: top;
  transition: all 0.2s;
  padding: 5px;
  border-radius: 5px 5px 0px 0px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  font-size: 16pt;
}

.tab:hover {
  height: 35px;
  margin-top: 5px;
  background-color: white;
  cursor: pointer;
}

@keyframes indicator-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.tab-indicator {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #349ee9;
  top: 2px;
  left: 2px;
  border-radius: 100%;
  transform: scale(1);
  animation: indicator-animation 2s infinite;
}

.tab:hover .tab-indicator {
  background-color: #40b0ff;
}

/********************STEP MAP**************************/

.step-map {
  display: block;
  border-bottom: 2px solid #c7c7c7;
  font-weight: lighter;
  font-size: 16pt;
}

.step-map a {
  color: #c7c7c7;
  display: inline-block;
  vertical-align: middle;
}

.step-map div {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  background-image: url("/img/arrow-right-gray.png");
  background-origin: content-box;
  background-size: 30px 30px;
  background-repeat: no-repeat;
}

.step-map div.blue-arrow {
  background-image: url("/img/arrow-right-blue.png");
}

.step-map a.step-blue-link {
  color: #1d82c8;
}

/*-----------------------------------------------------*/

#form_upload_type input {
  display: inline-block;
  color: black;
  border: 1px solid black;
  margin: 2px;
  vertical-align: middle;
}

#form_upload_type label {
  display: inline-block;
  margin: 2px;
  vertical-align: middle;
  font-weight: bold;
}

#form_submit {
  text-align: center;
}

.step-button {
  background-color: #0784d9;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 150px;
  height: 50px !important;
  margin: 10px;
  display: inline-block;
  font-size: 12pt;
  vertical-align: middle;
  transition: all 0.3s;
}

.step-button:hover {
  cursor: pointer;
}

.step-button img {
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}

.step-link {
  background-color: #0784d9;
  color: white;
  padding: 7px;
  border: none;
  border-radius: 5px;
  width: 150px;
  margin: 10px;
  display: inline-block;
  font-size: 12pt;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
}

.step-link:link {
  color: white;
}

.step-link:visited {
  color: white;
}

.step-link img {
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}

.red {
  background-color: #e23939 !important;
}

/********************************************************/

.tab-content .tab-step {
  background-color: #eaeaea;
  display: block;
  width: 500px;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 15px;
  color: black;
  padding: 10px;
  position: relative;
  font-size: 14pt;
}

.tab-step h2 {
  color: #1d82c8;
}

.tab-step p:first-child {
  font-weight: bold;
}

.tab-step strong a {
  color: #007233;
  text-decoration: underline;
}

.title-tab {
  font-size: 16pt;
  font-weight: bold;
  color: #1d82c8;
  display: block;
  padding: 10px;
}

.tab-menu {
  display: block;
  background-color: white;
}

.tab-menu-option {
  display: inline-block;
  margin: 10px;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.4);
  border: 2px solid white;
  background-color: white;
  user-select: none;
  color: #1d82c8;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  transition: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

.tab-menu-option img {
  display: block;
  width: 50px;
  margin: 0 auto;
}

.tab-menu-option:hover {
  transform: scale(1.05);
  box-shadow: 0px 3px 6px rgba(0%, 0%, 0%, 0.4);
  cursor: pointer;
}

.tab-menu-option:active {
  transform: scale(1);
  box-shadow: 0px 1px 3px rgba(0%, 0%, 0%, 0.4);
  border: 2px solid #229bef;
}

.tab-menu-option-selected {
  display: inline-block;
  margin: 10px;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.4);
  border: 2px solid white;
  user-select: none;
  color: #1d82c8;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  transition: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

.tab-menu-option-selected img {
  display: block;
  width: 50px;
  margin: 0 auto;
}

.tab-menu-option-selected {
  transform: scale(1);
  box-shadow: 0px 1px 3px rgba(0%, 0%, 0%, 0.4);
  border: 2px solid #229bef;
}

/*----------BUTTON--------*/

.button-shadow {
  box-shadow: 0px 1px 4px rgba(0%, 0%, 0%, 0.3);
  background-color: whitesmoke;
  background-color: white;
  border: none;
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s;
}

.button-shadow:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.4);
}

.button-shadow:active {
  transform: scale(1);
  box-shadow: 0px 1px 0px rgba(0%, 0%, 0%, 0);
  background-color: #e1e1e1;
}

.button-shadow img {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

/*------------------------*/

/*-------------------------------------*/

.notification-icon {
  width: 20px;
  height: 20px;
}

#form_submit {
  display: block;
}

#drop_area {
  display: block;
  width: 800px;
  height: auto;
  border-radius: 10px;
  padding: 10px;
  margin: 0 auto;
  margin-top: 15px;
  text-align: center;
  box-shadow: 0px 1px 4px rgba(0%, 0%, 0%, 0.4);
}

#browse {
  display: block;
  width: 100%;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#fileInput {
  display: none;
}

#dropZone {
  border: 5px dashed #1d82c8;
  padding: 1em;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#dropZone:hover {
  cursor: pointer;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

#dropZone img {
  width: 50px;
  margin: 5px;
  display: inline-block;
  vertical-align: middle;
}

.label-text-background {
  background-color: rgb(235, 235, 235);
}

.header-marker {
  border: 1px solid #054f81 !important;
  background-color: #1d82c8 !important;
}

.table-data-style {
  text-align: center;
  width: 100%;
  border-bottom: 1px solid gray;
}

.table-data-style thead th {
  text-align: center;
  background-color: #31a952;
  border: 1px solid #1e873a;
  color: white;
}

.table-data-style tbody td {
  text-align: center;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}

.table-data-style tbody tr:nth-child(even) td {
  background-color: #f3f3f3;
}

.table-data-style tbody tr:hover td {
  background-color: #e2e2e2;
}

.table-data-style1 {
  text-align: center;
  width: 100%;
  border-bottom: 1px solid gray;
}

.table-data-style1 thead th {
  text-align: center;
  background-color: #eb4132;
  border: 1px solid #eb4132;
  color: white;
}

.table-data-style1 tbody td {
  text-align: center;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}

.table-data-style1 tbody tr:nth-child(even) td {
  background-color: lightgray;
}

.file-btn {
  color: white;
  background-color: #1d82c8;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
}

.file-btn:hover {
  cursor: pointer;
}

#load_detail {
  margin-left: 5px;
  padding: 5px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 1px 4px rgba(0%, 0%, 0%, 0.4);
  margin: 0 auto;
}

.load-detail-title {
  margin: 2px;
  padding: 2px;
  color: #2ebc67;
  display: block;
  border-bottom: 2px solid #333333;
}

#load_detail div {
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
  font-size: 12pt;
}

#load_detail div span {
  color: #1d82c8;
  padding-left: 5px;
}

#progress {
  margin-top: 10px;
  text-align: center;
}

/*-------TABLE RECEIPT-------*/

#table-receipt {
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.3);
  margin: 0 auto;
  text-align: center;
  width: 98%;
  border-spacing: 0px;
  border-collapse: separate;
  border-radius: 5px;
}

#table-receipt .table-receipt-title {
  padding: 5px;
  background-color: #1d82c8;
  font-size: 18pt;
  font-weight: lighter;
  color: white;
  border-radius: 5px 5px 0px 0px;
}

#table-receipt thead tr:nth-child(2) td {
  padding: 5px;
  background-color: white;
  color: #1d82c8;
  font-size: 12pt;
  transition: all 0.3s;
  cursor: pointer;
}

#table-receipt tbody tr:last-child td:first-child {
  border-radius: 0px 0px 0px 5px;
}

#table-receipt tbody tr:last-child td:last-child {
  border-radius: 0px 0px 5px 0px;
}

#table-receipt tbody tr:nth-child(even) {
  background-color: whitesmoke;
}

#table-receipt tbody tr td {
  border-bottom: 2px solid white;
  transition: all 0.3s;
}

/*MESSAGE BOX*/

#message_box {
  display: none;
  width: 400px;
  /*position: fixed;*/
  top: 100px;
  border-radius: 5px;
  padding: 10px;
  background-color: #2ebc67;
  color: white;
  opacity: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 2000px;
}

#question_box {
  display: none;
  width: 500px;
  /*position: fixed;*/
  top: 35%;
  border-radius: 5px;
  padding: 10px;
  background-color: #ffb845;
  color: white;
  opacity: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 5px 5px rgba(0%, 0%, 0%, 0.5);
  z-index: 1;
}

#question_box #question_box_title {
  display: block;
  text-align: center;
  font-size: 16pt;
}

#question_box #question_box_buttons {
  display: block;
  text-align: center;
}

.question_button {
  width: 110px;
  height: 40px;
  margin: 10px;
  background-color: #e7e7e7;
  border: none;
  border-radius: 5px;
  color: gray;
  font-size: 20pt;
}

.question_button:active {
  background-color: #c7c7c7;
}

@keyframes show_message {
  0% {
    opacity: 0;
    display: none;
  }

  10% {
    opacity: 1;
    display: block;
  }

  20% {
    opacity: 1;
    display: block;
  }

  20% {
    opacity: 1;
    display: block;
  }

  30% {
    opacity: 1;
    display: block;
  }

  40% {
    opacity: 1;
    display: block;
  }

  50% {
    opacity: 1;
    display: block;
  }

  60% {
    opacity: 1;
    display: block;
  }

  70% {
    opacity: 1;
    display: block;
  }

  80% {
    opacity: 1;
    display: block;
  }

  90% {
    opacity: 1;
    display: block;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

/*PANTALLA CARGA*/

.html-carga {
  background-color: #eaeaea;
}

#loading-box {
  width: 400px;
  height: auto;
  background-color: white;
  margin: 0 auto;
  margin-top: 10%;
  margin-bottom: 10%;
  text-align: center;
  padding: 25px;
  box-shadow: 2px 3px 5px rgba(0%, 0%, 0%, 0.4);
}

.loading-box-title-1 {
  display: inline-block;
  text-align: center;
  color: black;
}

.loading-box-title-2 {
  display: block;
  text-align: center;
  color: black;
  font-weight: lighter;
}

.loading-box-image {
  width: 100px;
  height: 100px;
}

.loading-box-animation {
  width: 100px;
  height: 100px;
  transform: rotate(0deg);
  animation: loading-animation 1s infinite;
}

a.link-back {
  font-size: 14pt;
  font-weight: bold;
  color: gray;
  top: 38%;
  left: 10%;
  position: absolute;
  padding: 10px;
}

a.link-back .bottom-line {
  height: 2px;
  width: 0px;
  position: absolute;
  background-color: gray;
  transition: all 0.3s;
  border-radius: 5px;
}

a.link-back:hover .bottom-line {
  width: 125px;
}

@keyframes loading-animation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*PANTALLA WORKEND*/

.box-animation {
  animation: scale-animation 1s forwards;
  transform: scale(0);
}

@keyframes scale-animation {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/*DASHBOARD*/

#notification-area {
  margin-top: 25px;
  display: block;
  position: absolute;
  width: 100%;
  height: 80%;
  /*background-color: gray;*/
  overflow: auto;
}

.notification-tab {
  margin-left: 50px;
  margin-right: 50px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #eaeaea;
}

.notification-header {
  font-size: 14pt;
  font-weight: bold;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 0px 0px;
}

.notification-header-blue {
  background-color: #1d82c8;
  border: 1px solid #1d82c8;
}

.notification-header-red {
  background-color: #ff4e4e;
  border: 1px solid #ff4e4e;
}

.notification-header-orange {
  background-color: orange;
  border: 1px solid orange;
}

.notification-header-green {
  background-color: #2ebc67;
  border: 1px solid #2ebc67;
}

.notification-icon-info {
  width: 30px;
  height: 30px;
  background-image: url("/img/information.png");
  background-size: 30px 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.notification-icon-check {
  width: 30px;
  height: 30px;
  background-image: url("/img/check-mark-button.png");
  background-size: 30px 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.notification-icon-caution {
  width: 30px;
  height: 30px;
  background-image: url("/img/caution-sign.png");
  background-size: 30px 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.notification-icon-delete {
  width: 30px;
  height: 30px;
  background-image: url("/img/delete-button.png");
  background-size: 30px 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.notification-content {
  padding: 10px;
}

#gen_file {
  color: #007233;
  display: inline-block;
  margin: 5px;
}

#gen_file a {
  color: #007233;
}

#receipt-area {
  display: block;
  padding: 10px;
}

.receipt {
  box-shadow: 1px 1px 5px rgba(0%, 0%, 0%, 0.5);
  position: relative;
  margin: 10px;
  display: flex;
  font-size: 12pt;
}

.receipt-type {
  display: inline-block;
  vertical-align: top;
  padding: 10px;
}

.receipt-type img {
  width: 100px;
  height: 100px;
}

.receipt-body {
  padding: 10px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.receipt-body hr {
  border: 1px solid #d5d5d5;
}

.receipt-title {
  display: block;
}

.receipt-title img {
  width: 30px;
  height: 30px;
  margin: 2px;
}

.receipt-content img {
  width: 30px;
  height: 30px;
  margin: 2px;
}

.receipt-title .title-item {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
}

.receipt-content .content-item {
  display: inline-block;
  margin-right: 5px;
}

.receipt-options {
  margin-top: 20px;
}

.receipt .receipt-button {
  margin: 10px;
  padding: 5px;
  background-color: white;
  /*box-shadow: 1px 1px 5px rgba(0%, 0%, 0%, 0.5);*/
  border: none;
  color: white;
  /*border-radius: 5px;*/
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  transition: all 0.2s;
}

.receipt .receipt-button:active {
  transform: scale(0.9);
}

.button-blue {
  background-color: #4285f4 !important;
  color: white !important;
}

.button-blue1 {
  background-color: #1d82c8;
  color: white;
  padding: 5px;
  transition: all 0.3s;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -webkit-user-select: none;
}

.button-blue1:hover {
  transform: scale(1.05);
}

.button-green {
  background-color: #34a853 !important;
  color: white !important;
}

.button-red {
  background-color: #ea4335 !important;
  color: white !important;
}

/*TITULOS EN EL RESULTADO DE MATCH*/

#title-encontrados {
  background-color: #1d82c8;
  border-radius: 5px;
  color: white;
  margin-top: 10px;
  text-align: center;
  display: none;
}

#title-no-encontrados {
  background-color: #ff4e4e;
  border-radius: 5px;
  color: white;
  margin-top: 10px;
  text-align: center;
  display: none;
}

#button-cancel-step {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #ff4e4e;
  border-radius: 5px;
  color: white;
  padding: 5px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
}

#button-cancel-step:hover {
  cursor: pointer;
}

#button-cancel-step:active {
  border-bottom: none;
  top: 5px;
}

.button-white {
  border-radius: 5px;
  border-bottom: 5px solid lightgray;
  padding: 5px;
  display: block;
  background-color: white;
  color: black;
  width: auto;
  margin-top: 10px;
  font-weight: bold;
}

/****************************FLOAT STATUS***********************/

.float-status {
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: #2ebc67;
  color: white;
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.4);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
}

.float-status:hover {
  cursor: pointer;
}

.float-center {
  display: block;
  width: 20px;
  margin: 0 auto;
  text-align: center;
  margin-top: 2px;
  font-size: 18pt;
}

.float-status-red {
  background-color: #ff4e4e;
}

/*******************************MANTENIMIENTOS******************************/

.flex-panels {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
}

.block-panels {
  display: block;
}

.form-block {
  display: block;
  padding: 5px;
  text-align: center;
  border-top: 1px solid lightgray;
  margin-top: 20px;
}

.form-block button {
  display: inline-block;
  vertical-align: middle;
}

.form-brick {
  padding: 5px;
  display: inline-block;
}

.form-brick label {
  display: inline-block;
  vertical-align: middle;
  margin: 2px;
}

.form-brick input {
  display: inline-block;
  vertical-align: middle;
  margin: 2px;
}

.form-brick select {
  display: inline-block;
  vertical-align: middle;
  margin: 2px;
}

#div-form {
  display: block;
  padding: 10px;
}

#div-form h3 {
  color: white;
  background-color: #1d82c8;
  padding: 10px;
  border-radius: 5px;
  position: relative;
}

.alone-h3 {
  color: white;
  background-color: #1d82c8;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  position: relative;
}

/*********BUTTON OF H3 *********/

.deploy-button {
  display: inline-block;
  border-radius: 5px;
  padding: 5px;
  background-color: white;
  color: #1d82c8;
  position: absolute;
  right: 8px;
  top: 9px;
  font-size: 12pt;
  border: none;
}

/*******************************/

td.td-help {
  text-align: center;
  padding: 5px 10px 5px 5px;
}

#div-form table {
  display: block;
}

.div-table {
  padding: 10px;
  display: block;
  overflow: auto;
}

.form-default {
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.4);
}

.default-table {
  width: 100%;
  box-shadow: 0px 2px 5px rgba(0%, 0%, 0%, 0.4);
  border-radius: 5px;
}

.default-table thead tr:first-child {
  background-color: #349ee9;
  color: white;
}

.default-table tr:not(first-child):hover td {
  background-color: #e7e7e7;
  transition: all 0.3s;
  cursor: pointer;
}

.default-table tr:first-child th:first-child {
  border-radius: 5px 0px 0px 0px;
}

.default-table tr:first-child th:last-child {
  border-radius: 0px 5px 0px 0px;
}

.default-table tr:last-child td:first-child {
  border-radius: 0px 0px 0px 5px;
}

.default-table tr:last-child td:last-child {
  border-radius: 0px 0px 5px 0px;
}

.default-table tr:not(:first-child):nth-child(even) {
  background-color: #f2f2f2;
}

.default-table th:not(:last-child) {
  padding: 2px;
  border-right: 1px solid #1d82c8;
  text-align: center;
}

.default-table th:last-child {
  padding: 2px;
  text-align: center;
}

.default-table td {
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
  padding: 2px;
  text-align: center;
}

.state-green {
  display: inline-block;
  background-color: #34a853;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.state-orange {
  display: inline-block;
  background-color: #fb9905;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

#work_indicator_area {
  display: block;
  height: auto;
  padding: 10px;
  border-bottom: 1px solid lightgray;
}

.work-indicator {
  display: block;
  width: 400px;
  background-color: #1d82c8;
  padding: 10px;
  animation: show_indicator_animation 1s forwards;
  opacity: 0;
}

.work-indicator-container {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  position: relative;
}

.work-indicator-flash {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 100%;
  z-index: 1;
  transform: scale(1);
  animation: flash_animation 1s infinite;
}

@keyframes flash_animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes show_indicator_animation {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    transform: scale(0.99);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.work-indicator-fixed {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 100%;
  z-index: 2;
}

.work-indicator-container img {
  width: 30px;
  height: 30px;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  position: absolute;
  z-index: 3;
}

.work-indicator-text {
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  padding-left: 20px;
  color: white;
  font-size: 12pt;
}

.hover-link:hover {
  cursor: pointer;
}

.hover-link {
  user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

/*----------------------------PP STYLES------------------------------*/

.pp-flex {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -moz-flex;
}

.pp-flex-child {
  padding: 10px;
  width: 50%;
}

.full-message-container {
  display: block;
  padding: 1em;
}

.message-box {
  width: 500px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10%;
  position: relative;
}

.full-message-image {
  width: 100%;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  animation: move 5s infinite;
  -webkit-animation: move 5s infinite;
  transition: all 5s;
  -webkit-transition: all 5s;
  -moz-transition: all 5s;
  -ms-transition: all 5s;
  -o-transition: all 5s;
}

.full-message-back {
  width: 100%;
  height: auto;
  opacity: 0;
}

@keyframes move {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  50% {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

/* TABLE STYLE */

.table-info-style {
  margin-bottom: 10px;
}

.table-info-style th {
  text-align: center;
}

.table-info-style .table-info-style-title {
  color: white;
  background-color: black;
}

.table-info-style .table-info-style-header {
  color: white;
  background-color: #217ec6;
  border: 1px solid rgb(9, 80, 134);
}

.table-info-style tr td {
  border: 1px solid gray;
  font-weight: 500;
  transition: background-color 0.3s;
}

.table-info-style tr td:hover {
  background-color: rgb(228, 228, 228);
}

.company-checkbox-label:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------------------------------------*/
/*CSS agregado para la seccion loading de la vista cargas de comprobantes*/

/* ▼ LOADING ▼ */

.loader {
  border: 5px solid #ffffff;
  border-radius: 50%;
  border-top: 5px solid #3E6DD8;
  width: 30px;
  height: 30px;
}

.loader-slow {
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

.loader-medium {
  -webkit-animation: spin 1s linear infinite;
  /* Safari */
  animation: spin 1s linear infinite;
}

.loader-fast {
  -webkit-animation: spin 0.5s linear infinite;
  /* Safari */
  animation: spin 0.5s linear infinite;
}

.loader-hyper {
  -webkit-animation: spin 0.2s linear infinite;
  /* Safari */
  animation: spin 0.2s linear infinite;
}

/***************************************************************************/
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
  animation: .75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@media (prefers-reduced-motion: reduce) {

  .spinner-border {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}

/***************************************************************************/
/*--------------------------------------------------------------------------------------------*/
/*CSS agregado para el manejo de tamaños de los iconos de google */

/* ▼ Size ▼ */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/************************************************/

pre {
  background-color: #f4f4f4; /* Color de fondo */
  border: 1px solid #ddd; /* Borde */
  border-left: 3px solid #f36d33; /* Borde izquierdo para destacar */
  color: #666; /* Color del texto */
  page-break-inside: avoid;
  font-family: monospace; /* Fuente monoespaciada para código */
  font-size: 15px; /* Tamaño de fuente */
  line-height: 1.6; /* Espaciado de línea */
  margin-bottom: 1.6em; /* Margen inferior */
  max-width: 100%; /* Ancho máximo */
  overflow: auto; /* Desbordamiento auto para barras de desplazamiento */
  display: block; /* Display block para aplicar estilos correctamente */
  padding: 1em 1.5em; /* Relleno */
  word-wrap: break-word; /* Ajuste de palabra */
  height: 100%;
}

code {
  color: #d14; /* Color del texto del código */
}