@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Open+Sans);
* {
  font-family: 'Open Sans', sans-serif; }

.index {
  display: flex;
  font-size: 1.5em;
  justify-content: space-evenly;
  flex-wrap: wrap;
  flex-direction: row; }
  .index__card {
    background-color: #1E2546;
    color: #ffffff;
    margin: 10px 0;
    border-radius: 10px;
    flex: .5 .4 50%;
    padding: 10px;
    text-decoration: none;
    text-align: center; }
    .index__card:first-child {
      margin-top: 20px; }
  .index__card:hover {
    background-color: #facc0b; }

/* Modifica código par el navbar */
.navbar {
  background-color: white;
  border-bottom: 1px solid #1E2546;
  margin-bottom: 2rem; }
  .navbar a navbar-item {
    color: #1b1b1b; }

.navbar-burger {
  height: auto;
  width: 4rem; }

.navbar-item img {
  max-height: 3.5em; }

a.navbar-item:hover {
  background-color: #1E2546;
  color: white; }

/* Personaliza colores */
.is-green {
  background-color: #249139;
  color: white; }

.is-blue {
  background-color: #1E2546;
  color: white; }

.is-blue:hover {
  background-color: #facc0b; }

.is-yellow {
  background-color: #facc0b;
  color: white; }

.is-dark-grey {
  color: #adadad; }

.is-darker-grey {
  color: #474747; }

.is-red {
  background-color: #a02727;
  color: white; }

/* Personaliza tamaños */
.is-wide {
  width: 100%; }

.with-padding {
  padding: 2rem 0; }

.with-small-padding {
  padding: 1rem 0; }

.with-padding-bottom {
  padding: 0 0 1rem; }

.with-padding-top {
  padding: 1rem 0 0; }

/* Modifica secciones de Bulma */
.section {
  max-width: 600px;
  margin: 0 auto 0;
  padding: 0rem 1rem; }

.field {
  max-width: 600px; }

.container {
  max-width: 600px; }

/* Personaliza espaciado de botones */
.space-buttons {
  justify-content: space-between; }

.end-buttons {
  justify-content: flex-end; }

.center {
  text-align: center; }

/* Personaliza columnas */
.column-aligned {
  display: flex;
  align-items: center; }

.align-end {
  justify-content: flex-end; }

.half-size {
  width: 50%; }

/* Personalizar acordión */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s; }

.active, .accordion:hover {
  background-color: #ccc; }

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden; }

.dropdown {
  width: 100%; }
  .dropdown .dropdown-trigger {
    width: 100%; }
  .dropdown .button {
    display: flex;
    width: 100%;
    justify-content: space-between; }
  .dropdown .dropdown-menu {
    width: 100%; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

.replacement {
  min-width: 200px; }

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1; }

/* Style the buttons inside the tab */
.tab button {
  padding-top: 10px;
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px; }

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd; }

.tab button {
  width: 100%; }

/* Create an active/current tablink class */
.tab button.active {
  color: white;
  background-color: #1E2546; }

/* Style the tab content */
.tabcontent, .tabcontentV2 {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  overflow-x: auto; }

.c-battery-index {
  overflow-y: auto;
  position: relative; }
  .c-battery-index__title {
    padding: 12px 16px;
    align-self: center;
    font-size: 1.5em;
    margin: 0; }
  .c-battery-index__message {
    padding: 5px; }

.battery-index-form {
  display: flex;
  flex-direction: column;
  color: #252525; }
  .battery-index-form input, .battery-index-form select {
    width: 60%; }
  .battery-index-form__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px; }
    .battery-index-form__row--vertical {
      flex-direction: column; }
    .battery-index-form__row__div {
      text-align: end;
      display: flex;
      width: 60%; }
  .battery-index-form__sub-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0; }
    .battery-index-form__sub-row input {
      width: 35%; }
  .battery-index-form__label {
    font-weight: bold; }
  .battery-index-form a {
    align-self: center;
    margin: 10px 0; }

.c-battery-new {
  overflow-y: auto; }
  .c-battery-new__title {
    padding: 16px;
    align-self: center;
    font-size: 1.5em; }

.battery-new-form {
  display: flex;
  flex-direction: column;
  color: #252525; }
  .battery-new-form input, .battery-new-form select {
    width: 50%; }
  .battery-new-form__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 16px;
    align-items: center; }
    .battery-new-form__row--vertical {
      flex-direction: column; }
    .battery-new-form__row__div {
      text-align: end;
      display: flex;
      width: 50%; }
  .battery-new-form__sub-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0; }
    .battery-new-form__sub-row input {
      width: 30%; }
  .battery-new-form__label {
    font-weight: bold; }
  .battery-new-form a {
    align-self: center; }

.c-records {
  display: block;
  flex-direction: column;
  overflow-y: auto; }
  .c-records__table-container {
    display: block;
    overflow-y: auto; }
  .c-records__table {
    display: block;
    overflow-x: scroll;
    border-collapse: collapse; }
  .c-records__table::-webkit-scrollbar {
    -webkit-appearance: none; }
  .c-records__table::-webkit-scrollbar:vertical {
    width: 5px; }
  .c-records__table::-webkit-scrollbar:horizontal {
    height: 11px; }
  .c-records__table::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, 0.5); }
  .c-records textarea {
    resize: none;
    border-radius: 4px; }
  .c-records select {
    min-width: 154px; }
  .c-records td {
    text-align: center; }
  .c-records tbody tr:nth-child(odd) {
    background: #f0f0f0; }
  .c-records th,
.c-records tr,
.c-records td {
    border: 2px solid #ffffff;
    padding: 0 10px;
    min-width: 100px; }

.c-records-form {
  display: flex;
  flex-direction: column; }
  .c-records-form__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px; }
    .c-records-form__row--vertical {
      flex-direction: column; }
      .c-records-form__row--vertical__columns {
        display: inline; }
    .c-records-form__row--upload input {
      padding: 10px 0;
      border-style: none; }
  .c-records-form__operations {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row; }
    .c-records-form__operations input {
      width: 20px; }
  .c-records-form__operation {
    padding: 10px 0;
    flex: 50%;
    overflow-wrap: break-word; }
  .c-records-form__label {
    margin: 15px 16px;
    align-self: flex-start; }
  .c-records-form__small-label {
    font-weight: bold; }

.battery-search-upper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1em;
  height: 90px; }
  .battery-search-upper__label {
    padding: 0 5px; }
  .battery-search-upper__page-dropdown {
    padding: 0 5px;
    margin-right: 5px; }
  .battery-search-upper__field {
    display: flex; }
    .battery-search-upper__field--page-selector {
      padding-right: 15px; }
  .battery-search-upper__title {
    flex: 1;
    font-size: 1.5em;
    padding-left: 16px; }

.battery-search {
  display: flex;
  flex-direction: column;
  overflow-y: auto; }
  .battery-search__search-row {
    display: flex;
    align-items: center;
    padding: 16px; }
  .battery-search__battery-info {
    display: flex;
    word-break: break-word;
    flex: 3; }

@media screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .battery-search-upper {
    height: 70px;
    font-size: .8em; }
  .battery-search {
    height: calc(100vh - 230px); } }

@media screen and (min-device-width: 200px) and (max-device-width: 319px) {
  .battery-search-upper {
    height: 60px;
    font-size: .5em; }
    .battery-search-upper__field {
      padding: 0; }
    .battery-search-upper__title {
      font-size: 2em; }
    .battery-search-upper__label {
      font-size: 1.5em; }
  .battery-search {
    height: calc(100vh - 220px); } }

.c-battery-show {
  display: flex;
  flex-direction: column;
  overflow-y: auto; }
  .c-battery-show__img {
    object-fit: contain;
    max-height: 300px;
    padding: 10px; }
  .c-battery-show__label {
    padding: 2px 16px; }
    .c-battery-show__label--normal {
      font-weight: bold; }
    .c-battery-show__label--empty {
      color: #4d4d4d; }
    .c-battery-show__label--short {
      color: #707070;
      line-height: 15px;
      margin-left: 10px; }
  .c-battery-show__row {
    padding: 0 16px;
    font-size: 15px; }
  .c-battery-show__table-container td {
    text-align: center; }
  .c-battery-show__table-container tbody tr:nth-child(odd) {
    background: #f0f0f0; }
  .c-battery-show__table-container th,
.c-battery-show__table-container tr,
.c-battery-show__table-container td {
    border: 2px solid #ffffff;
    padding: 0 10px;
    min-width: 100px; }
  .c-battery-show__table {
    display: block;
    overflow-x: scroll;
    border-collapse: collapse; }
  .c-battery-show__table::-webkit-scrollbar {
    -webkit-appearance: none; }
  .c-battery-show__table::-webkit-scrollbar:vertical {
    width: 5px; }
  .c-battery-show__table::-webkit-scrollbar:horizontal {
    height: 11px; }
  .c-battery-show__table::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, 0.5); }
  .c-battery-show__table-column {
    padding: 0 5px; }

.photo img {
  width: 100%; }

.operation-index {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  overflow-y: auto; }
  .operation-index__title {
    padding: 5px 0; }
  .operation-index__row {
    font-size: 17px;
    margin: 5px 2px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    align-items: center; }
  .operation-index__op-name {
    max-width: 60vw;
    margin: 5px 0;
    word-wrap: break-word; }
  .operation-index__action {
    margin-left: auto; }
    .operation-index__action a {
      background-color: #d3ca4a;
      color: #ffffff;
      border-radius: 10px;
      padding: 5px 10px;
      text-decoration: none;
      cursor: pointer; }
      .operation-index__action a.show {
        background-color: #1E2546; }

.c-operation-form {
  height: 100%; }

.operations-form {
  display: flex;
  flex-direction: column;
  padding: 0 16px; }
  .operations-form__title {
    padding: 16px 0;
    font-size: 1.5em;
    margin: 0; }
  .operations-form__small-label {
    font-weight: bold; }
  .operations-form__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px 0; }
    .operations-form__row--vertical {
      flex-direction: column; }

.c-user {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #1E2546;
  height: 100%;
  width: 100%;
  min-height: 100vh; }

.c-user-subcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  height: 100%;
  max-width: 400px;
  border-radius: 10px;
  background-color: #ffffff; }

.user-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }
  .user-form__title {
    margin-top: 30px;
    padding: 0 16px;
    font-size: 1.7em;
    text-align: center;
    font-weight: 600; }
  .user-form__row {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 0px;
    width: 70%; }
    .user-form__row:nth-child(2) {
      padding-bottom: 0px; }
    .user-form__row:nth-child(3) {
      padding-top: 0px; }
    .user-form__row:last-child {
      padding-bottom: 20px; }
    .user-form__row--buttons {
      justify-content: center;
      flex-direction: row;
      padding: 10px;
      max-width: 400px; }
  .user-form__box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px; }
  .user-form p {
    font-weight: bold; }
  .user-form input {
    border-radius: 4px;
    border-style: ridge;
    width: 100%;
    max-width: 400px; }

.flex {
  display: flex; }

.alert {
  align-self: center;
  text-align: center;
  margin: 10px auto;
  width: 90%;
  color: #ffffff;
  background-color: #e96e6e;
  border-radius: 6px; }
  .alert--success {
    background-color: #80d998;
    padding: 10px; }
  .alert ul, .alert li {
    background-color: #e96e6e;
    border-radius: 6px; }

.align-start {
  text-align: start; }

.errorlist {
  padding: 5px; }

/*# sourceMappingURL=main.css.map */