*,
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gotham-Book", Arial;
}

#main-wrapper {
  width: 100%;
  overflow: hidden;
}

/* HEADER */
.topbar {
  background: #1bb7ce;
  background: linear-gradient(
    300deg,
    rgba(27, 183, 206, 1) 0%,
    rgba(2, 80, 158, 1) 33%,
    rgba(21, 60, 102, 1) 100%
  );
  position: relative;
  z-index: 50;
}

.topbar .top-navbar {
  min-height: 50px;
  height: 250px;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-image {
  display: flex;
  height: 250px;
}

.ekkoair {
  height: 25px;
  margin: 40px 30px 0 10px;
}

/* PAGE */

.container-fluid {
  padding: 2rem 3rem 0;
}

/* CUSTOM */

.font-light {
  font-family: "Gotham-Light", Arial;
}

.font-book {
  font-family: "Gotham-Book", Arial;
}

.font-medium {
  font-family: "Gotham-Medium", Arial;
}

.font-bold {
  font-family: "Gotham-Bold", Arial;
}

.font-blue {
  color: #153c66 !important;
}

.font-blue-2 {
  color: #02509e !important;
}

.font-blue-3 {
  color: #1bb7ce !important;
}

.bg-blue {
  background: #153c66 !important;
}

.bg-blue-2 {
  background: #02509e !important;
}

.bg-blue-3 {
  background: #1bb7ce !important;
}

.bg-grey {
  background: #f6f6f6 !important;
}

.btn-blue-2 {
  color: white !important;
  background: #02509e !important;
}

.btn-blue-2:hover {
  color: white !important;
  background-color: #153c66 !important;
}

.btn-blue-2:active {
  color: white !important;
  background-color: #153c66 !important;
}

.btn-blue-3 {
  color: white !important;
  background: #1bb7ce !important;
}

.btn-blue-3:hover {
  color: white !important;
  background-color: #1aa4b9 !important;
}

.btn-blue-3:active {
  color: white !important;
  background-color: #1aa4b9 !important;
}

.font-xs {
  font-size: 0.9rem;
}

.font-sm {
  font-size: 1rem;
}

.font-md {
  font-size: 1.5rem;
}

.font-lg {
  font-size: 2rem;
}

.font-xl {
  font-size: 5rem;
}

.top-left-radius {
  border-top-left-radius: 30px;
}

.top-right-radius {
  border-top-right-radius: 10px;
}

.bottom-right-radius {
  border-bottom-right-radius: 10px;
}

.bottom-left-radius {
  border-bottom-left-radius: 30px;
}

.step {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-sm {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 5px;
  min-width: 25px;
}

.full-width {
  margin-left: -3rem;
  margin-right: -3rem;
  padding: 1rem 3rem;
}

.full-width-2 {
  margin-left: -3rem;
  margin-right: -3rem;
  padding: 0;
}

.footer {
  height: 35px;
  background: linear-gradient(
    300deg,
    rgba(27, 183, 206, 1) 0%,
    rgba(2, 80, 158, 1) 70%,
    rgba(21, 60, 102, 1) 100%
  );
}

/* TABLAS */
table {
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
  background: linear-gradient(
    250deg,
    rgba(21, 60, 102, 1) 0%,
    rgba(2, 80, 158, 1) 90%,
    rgba(27, 183, 206, 1) 100%
  );
}

thead th {
  color: white !important;
  padding: 12px;
  font-weight: bold;
  text-align: center;
  background: transparent !important;
  border: none;
  vertical-align: middle;
}

thead th:first-child {
  text-align: left;
  font-size: 1.3em;
  padding-left: 16px;
  border-top-left-radius: 12px;
}

thead th:last-child {
  border-top-right-radius: 12px;
}

tbody td {
  padding: 10px;
  background: transparent !important;
  border: none;
  vertical-align: middle;
}

tbody tr td:last-child {
  padding-right: 0px;
}

tbody td:first-child {
  color: white;
  font-weight: bold;
  padding-left: 16px;
  width: 140px;
}

tbody td:not(:first-child) {
  background: white !important;
}

input {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  font-size: 0.95em;
}

td:not(.editable) {
  cursor: default !important;
  background-color: #f5f5f5;
  pointer-events: none;
}

td.editable input{
  cursor: pointer;
  background-color: white;
  border: 1px solid #dee2e6;
}

td button {
  pointer-events: auto;
}

input:focus, input:focus-visible {
  outline: #00509d auto 5px !important;
  outline-offset: 0px;
  border: none;
}

input.error {
  outline: thin auto red !important;
}

/* PRINT */
.print-footer {
  background: linear-gradient(
    300deg,
    rgba(27, 183, 206, 1) 0%,
    rgba(2, 80, 158, 1) 70%,
    rgba(21, 60, 102, 1) 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: end;
}