@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://use.fontawesome.com/releases/v5.3.1/css/all.css");
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dialog-loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
}

body {
  font: 15px "Roboto", Helvetica, Arial, Sans-serif;
  background-color: #eee;
  line-height: 1;
}

#header {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #3f51b5;
  height: 300px;
}
#header a {
  text-transform: uppercase;
  display: inline-block;
  line-height: 100px;
  padding: 0 20px;
  color: white;
}
#header #logo {
  background: transparent url("../img/logo.png") no-repeat left center;
  background-size: 80px;
  display: inline-block;
  text-indent: 100px;
  height: 130px;
  width: 80px;
  float: left;
  padding: 0;
  display: flex;
  align-items: center;
}
#header.guest .wrapper {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
#header.guest h2.title {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1070px) {
  #header:not(.guest) {
    height: 346px;
    text-align: center;
  }
  #header:not(.guest) #logo {
    float: none;
    margin: 0 auto;
  }
  #header:not(.guest) .floatR {
    float: right;
    width: 100%;
    text-align: center;
  }
  #header:not(.guest) a {
    line-height: normal;
    margin-bottom: 10px;
  }
}
@media (max-width: 1070px) {
  #header:not(.guest) {
    height: 366px;
  }
}
@media (max-width: 454px) {
  #header:not(.guest) {
    height: 400px;
  }
}
#header .sandwich-toggler {
  display: none;
}
#header .sandwich-toggler a {
  color: #fff;
  padding: 16px;
  background-color: #6573c1;
  border-radius: 100%;
  width: 16px;
  height: 16px;
}
#header .sandwich-toggler a.opened i:before {
  content: "\f00d";
}
@media (max-width: 720px) {
  #header .sandwich-toggler {
    display: block;
  }
}
#header ul.menu {
  list-style-type: none;
  display: flex;
}
#header ul.menu > li {
  position: relative;
}
#header ul.menu > li a {
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
}
#header ul.menu > li:hover > a {
  background-color: #475bc9;
}
#header ul.menu > li:hover ul.submenu {
  transform: scaleY(1);
}
#header ul.menu > li ul.submenu {
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.1s ease-in-out;
  position: absolute;
  z-index: 3;
  list-style-type: none;
  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.23);
  width: 250px;
}
#header ul.menu > li ul.submenu > li a {
  margin-bottom: 0;
  background: #5262bb;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: normal;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.1s ease-in-out;
}
#header ul.menu > li ul.submenu > li a:hover {
  background-color: #3f51b5;
}
@media (max-width: 720px) {
  #header ul.menu {
    display: none;
    margin-bottom: 20px;
  }
  #header ul.menu.show {
    display: block;
  }
  #header ul.menu > li {
    position: relative;
  }
  #header ul.menu > li a {
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #636ea9;
  }
  #header ul.menu > li a.submenu-toggler {
    position: relative;
  }
  #header ul.menu > li a.submenu-toggler:after {
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    color: #fff;
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
  }
  #header ul.menu > li a.submenu-toggler.opened:after {
    content: "\f077";
  }
  #header ul.menu > li:last-child a {
    border-bottom: 0;
  }
  #header ul.menu > li ul.submenu {
    position: static;
    display: block;
    box-shadow: none;
    width: 100%;
    transform: scaleY(0);
    display: none;
  }
  #header ul.menu > li ul.submenu.opened {
    display: block;
    transform: scaleY(1);
  }
  #header ul.menu > li ul.submenu > li a {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  #header {
    height: auto !important;
  }
}

#main {
  margin-top: -170px;
}
@media (max-width: 720px) {
  #main {
    margin-top: 20px;
  }
}

a {
  text-decoration: none;
  color: #3f51b5;
  font-weight: 500;
  cursor: pointer;
}

b {
  font-weight: 500;
}

p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}
p.info {
  color: #424242;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

.md-ico {
  font-family: "Material Icons";
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1;
  vertical-align: middle;
  font-style: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  display: inline-block;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.clearfix:after {
  display: table;
  content: "";
  clear: both;
}

.capitalize {
  text-transform: capitalize;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 150px;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-justify {
  text-align: justify;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.txt-center button {
  margin-right: 10px;
}
.txt-center button:last-child {
  margin: 0;
}

.cols {
  display: flex;
}
.cols .col {
  margin-right: 30px;
  flex: 1;
}
.cols .col:last-child {
  margin-right: 0;
}

.box {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
}
.box header {
  border-bottom: 1px solid #eee;
  font-weight: 500;
  font-size: 18px;
  padding: 18px;
  color: #555;
}
.box main {
  padding: 30px;
}
.box.dropdown header {
  cursor: pointer;
  position: relative;
}
.box.dropdown header .action {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}
.box.dropdown main {
  transform: scaleY(0);
  display: none;
}
.box.dropdown.opened main {
  transform: scaleY(1);
  display: block;
}

mask {
  transition: background-color 300ms ease-out, transform 1ms;
  background-color: transparent;
  transform: translateX(-100%);
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9;
  left: 0;
  top: 0;
}
mask[open] {
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateX(0);
}
mask[close] {
  background-color: transparent;
  transform: translateX(0);
}

dialog {
  transition: transform 300ms ease-out, top 300ms ease-out, background-color 100ms;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -120%);
  will-change: transform, top;
  background-color: white;
  border-radius: 3px;
  min-width: 330px;
  max-width: 80%;
  position: fixed;
  display: block;
  width: 330px;
  left: 50%;
  top: 0;
}
dialog.error {
  background-color: #F44336;
}
dialog.error * {
  color: white !important;
}
dialog.success {
  background-color: #4CAF50;
}
dialog.success * {
  color: white !important;
}
dialog[open] {
  transform: translate(-50%, -50%) !important;
  left: 50%;
  top: 50%;
}
dialog.text main {
  padding: 15px;
}
dialog.loading header {
  display: none;
}
dialog.loading main {
  overflow: hidden;
  min-height: 200px;
}
dialog.loading main:before {
  background-color: white;
  position: absolute;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  content: "";
  z-index: 3;
  bottom: 0;
  left: 0;
}
dialog.loading main:after {
  animation: dialog-loading 800ms linear infinite;
  transform: translate(-50%, -50%);
  border: 2px solid #3f51b5;
  border-top-color: transparent;
  border-radius: 100%;
  position: absolute;
  height: 64px;
  width: 64px;
  content: "";
  z-index: 3;
  left: 50%;
  top: 50%;
}
dialog.loading footer {
  display: none;
}
dialog header {
  width: calc(100% - 55px);
  text-overflow: ellipsis;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 24px;
  overflow: hidden;
  font-size: 20px;
  padding: 15px;
}
dialog header:before {
  display: table;
  content: "";
  clear: both;
}
dialog main {
  color: #626262;
  padding: 0 15px;
  line-height: 1.2;
  position: relative;
}
dialog footer {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  position: relative;
  min-height: 15px;
  z-index: 1;
}
dialog footer > div {
  text-align: right;
}
dialog footer > div button {
  transform: translate(0) !important;
  transition: transform 200ms;
  text-transform: uppercase;
  background: transparent;
  color: #3f51b5;
  line-height: 36px;
  box-shadow: none;
  font-weight: 500;
  min-width: 64px;
  padding: 0 10px;
  margin: 8px 0;
  margin-right: 8px;
  width: auto;
}
dialog footer > div button:hover {
  box-shadow: inset 0 0 0 200px rgba(0, 0, 0, 0.1);
}
dialog footer > div button.loading {
  min-width: 0;
  font-size: 0;
  width: 50px;
}
dialog footer > div button.loading:after {
  border-color: #222;
  border-left-color: transparent;
}
dialog .close {
  position: absolute;
  cursor: pointer;
  padding: 15px;
  right: 0;
  top: 0;
}

.column {
  float: left;
  width: 50%;
}

.wrapper {
  margin: 0 auto;
  width: 90%;
}
.wrapper:after {
  display: table;
  content: "";
  clear: both;
}
.wrapper.with-margins {
  margin: 20px auto;
}

.box.hidden-overflow {
  overflow: hidden;
}
.box header {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}
.box header.text-center {
  text-align: center;
}
.box header.font-bold {
  font-weight: 700;
}

#restartpassword {
  display: inline-block;
  margin: 5px 0;
}

table {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-collapse: collapse;
  border-radius: 4px;
  text-align: center;
  margin: 30px auto;
  min-width: 100%;
}
table:first-child {
  margin-top: 0;
}
table thead {
  background-color: #3f51b5;
  color: white;
}
table thead th:first-child {
  border-top-left-radius: 4px;
}
table thead th:last-child {
  border-top-right-radius: 4px;
}
table.grey thead th {
  background-color: #333;
}
table tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}
table tr td {
  background-color: white;
}
table tr:hover td {
  background-color: #e8f5ff;
}
table tr.editing td {
  background-color: #eee;
}
table tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
table tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
table td, table th {
  white-space: nowrap;
  padding: 15px 10px;
}
table td span button,
table td > button {
  margin-top: 0 !important;
  line-height: 24px;
  width: 26px;
  padding: 0;
}
table td span button i,
table td > button i {
  font-size: 14px;
  color: white;
}
table input, table select {
  background-color: white;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 3px 6px;
  width: 100%;
  margin: 0;
}

.searchline {
  display: flex;
}
.searchline .input_wrapper {
  margin-right: 10px;
  flex: 1;
}
.searchline .input_wrapper:last-child {
  margin-right: 0;
}

.inline-icon {
  align-items: center;
  display: flex;
}
.inline-icon img {
  margin-right: 10px;
  width: 54px;
}
.inline-icon p {
  flex: 1;
}

.inline-field {
  display: flex;
  margin: 15px 0;
}
.inline-field:first-child {
  margin-top: 0;
}
.inline-field:last-child {
  margin-bottom: 0;
}
.inline-field > * {
  flex: 1;
  margin: 0 !important;
  margin-right: 10px !important;
}
.inline-field > *:last-child {
  margin-right: 0 !important;
}

.paginator {
  margin: 30px 0;
}
.paginator button {
  background-color: white;
  margin: 0 !important;
  color: #3f51b5;
  line-height: 40px;
  padding: 0 20px;
}
.paginator button:not(:last-child) {
  margin-right: 10px !important;
}
.paginator p {
  line-height: 40px;
  color: #626262;
}

span.empty {
  background-color: whiteSmoke;
  text-transform: uppercase;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 13px;
  color: #727272;
}

.search-resp {
  background-color: whiteSmoke;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 3px;
  padding: 10px;
  display: none;
}
.search-resp:not(:empty) {
  display: block;
}
.search-resp:not(:empty):before {
  content: "Selecciona el federado";
  font-weight: 500;
  display: block;
  color: #333;
}
.search-resp label {
  display: block;
  margin: 10px 0;
}
.search-resp label:last-child {
  margin-bottom: 0;
}
.search-resp label input {
  vertical-align: middle;
  margin-right: 8px;
}
.search-resp label input:checked + span {
  font-weight: 500;
}
.search-resp label span {
  vertical-align: middle;
}

.s-items {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  display: grid;
  padding: 20px;
}
.s-items .s-item {
  box-shadow: 0 2px 10px rgba(50, 50, 93, 0.11), 0 0 3px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ddd;
  background-color: white;
  font-weight: normal;
  border-radius: 3px;
  position: relative;
  color: inherit;
  display: block;
  padding: 15px;
  height: 90px;
}
.s-items .s-item h3 {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.s-items .s-item p {
  position: relative;
  line-height: 1.4;
  color: #424242;
  z-index: 1;
  width: 70%;
}
.s-items .s-item i {
  transform: translateY(-50%);
  position: absolute;
  font-size: 80px;
  color: #dddddd;
  right: 14px;
  top: 50%;
}
.s-items .s-item i.fa-dumbbell {
  transform: rotate(45deg) translate(-20px, -28px);
  font-size: 70px;
}
.s-items .s-item i.fa-address-card {
  font-size: 65px;
}
.s-items .s-item.red {
  border-left-color: #f44336;
}
.s-items .s-item.red h3, .s-items .s-item.red i {
  color: #f44336;
}
.s-items .s-item.green {
  border-left-color: #009688;
}
.s-items .s-item.green h3, .s-items .s-item.green i {
  color: #009688;
}
.s-items .s-item.blue {
  border-left-color: #03a9f4;
}
.s-items .s-item.blue h3, .s-items .s-item.blue i {
  color: #03a9f4;
}
.s-items .s-item.purple {
  border-left-color: #9c27b0;
}
.s-items .s-item.purple h3, .s-items .s-item.purple i {
  color: #9c27b0;
}
.s-items .s-item.orange {
  border-left-color: #ff5722;
}
.s-items .s-item.orange h3, .s-items .s-item.orange i {
  color: #ff5722;
}
.s-items .s-item.brown {
  border-left-color: #795548;
}
.s-items .s-item.brown h3, .s-items .s-item.brown i {
  color: #795548;
}

td .fa-list-alt {
  vertical-align: -2px;
  font-size: 20px;
}

#adminTop {
  background-color: black;
  text-align: center;
  line-height: 32px;
}
#adminTop a {
  text-transform: uppercase;
  color: white;
}

.no-show {
  display: none;
}

.list-description {
  padding: 18px;
}
.list-description li {
  font-size: 18px;
  list-style-type: none;
  margin-bottom: 30px;
  line-height: 1.2em;
}
.list-description li i {
  margin-right: 10px;
  color: #3f51b5;
}
.list-description li:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .list-description {
    padding: 65px 120px;
  }
}

.box-video {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}

.video-wrapper {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.blue-background {
  background-color: #3f51b5;
  color: #fff;
}

.row.without-padding {
  margin: 0;
}
.row.without-padding [class*=col-] {
  padding: 0;
}
.row.flex {
  display: flex;
  flex-wrap: wrap;
}
.row.flex .col-md-6 {
  flex-basis: 50%;
}
@media (max-width: 1024px) {
  .row.flex .col-md-6 {
    flex-basis: 100%;
  }
  .row.flex .col-md-6:nth-child(1) {
    order: 2;
  }
}

.bottom-text-container {
  text-align: center;
  padding: 18px;
  font-size: 18px;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 1460px) {
  .bottom-text-container {
    padding: 110px;
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .bottom-text-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.card-landing .card-fighter-data {
  background: #fff;
  padding: 20px;
}
.card-landing .card-fighter-data .data-row {
  margin-bottom: 10px;
}
.card-landing .card-fighter-data .data-row strong {
  display: block;
  vertical-align: middle;
  font-weight: bold;
}
.card-landing .card-fighter-data .data-row .value {
  display: block;
  vertical-align: middle;
  font-size: 16px;
  margin-top: 5px;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 5px;
}
.card-landing .card-fighter-data .data-row:last-of-type {
  margin-bottom: 0;
}
.card-landing .card-fighter-data .row {
  display: flex;
  flex-wrap: wrap;
}
.card-landing .card-fighter-data .row:after {
  display: none;
}
.card-landing .card-fighter-data .row .data-row {
  padding: 0px 15px;
  box-sizing: border-box;
  flex-basis: 100%;
}
@media (min-width: 320px) {
  .card-landing .card-fighter-data .row .data-row {
    flex-basis: 50%;
  }
}
@media (min-width: 500px) {
  .card-landing .card-fighter-data .row .data-row {
    flex-basis: 33.33%;
  }
}
@media (min-width: 700px) {
  .card-landing .card-fighter-data .row .data-row {
    flex-basis: 25%;
  }
}
@media (min-width: 1024px) {
  .card-landing .card-fighter-data .row .data-row {
    flex-basis: 16.66%;
  }
}
@media (min-width: 1400px) {
  .card-landing .card-fighter-data .row .data-row {
    flex-basis: 14.28%;
  }
}
.card-landing p.info {
  font-size: 20px;
  padding: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.card-landing p.info a {
  white-space: nowrap;
}

.actionsBox button {
  margin-top: 0;
}
.actionsBox button:last-child {
  margin-top: 0;
}

.flash-message {
  margin-top: 20px;
  padding: 20px;
  border: 1px dashed #3f51b5;
  background: #ffffff;
  border-radius: 4px;
}
.flash-message h2 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #555;
  font-weight: 500;
}
.flash-message .error {
  color: #f00;
}
.flash-message p {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
.flash-message ul {
  margin-bottom: 15px;
}
.flash-message ul li {
  list-style-position: inside;
}

.dataTables_paginate {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.dataTables_paginate .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dataTables_paginate .pagination li {
  margin: 0 0.25rem;
}
.dataTables_paginate .pagination li.disabled a {
  color: #ccc;
  cursor: not-allowed;
}
.dataTables_paginate .pagination li.active a {
  background-color: #3f51b5;
  color: #fff;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-weight: bold;
}
.dataTables_paginate .pagination li a {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dataTables_paginate .pagination li a:hover {
  background-color: #3f51b5;
  color: #fff;
}
.dataTables_paginate .pagination li i {
  font-size: 1rem;
  vertical-align: middle;
}

.compensation-amount.positive, .compensation-amount.a_favor_wamai {
  color: #009688;
}
.compensation-amount.negative, .compensation-amount.a_favor_gimnasio {
  color: #f44336;
}

.mb-30px {
  margin-bottom: 30px !important;
}

#compensationsTable {
  max-width: 100% !important;
}
#compensationsTable td.concept {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

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