* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.2px;
  font-size: 16px; }

body,
html {
  background-color: #EBECF0; }
  body p.links,
  html p.links {
    text-align: center; }
    body p.links a,
    html p.links a {
      text-decoration: none; }

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #000;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(5%, white), color-stop(60%, black));
  background-image: -webkit-linear-gradient(left, white 5%, black 60%);
  background-image: -o-linear-gradient(left, white 5%, black 60%);
  background-image: linear-gradient(to right, white 5%, black 60%);
  color: red;
  height: 30px;
  width: 100%; }
  header a {
    text-decoration: none; }
    header a img {
      height: 30px; }
  header section {
    position: absolute;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 30px;
    line-height: 30px; }
    header section span {
      cursor: pointer;
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s;
      padding: 0 15px; }
      header section span:nth-child(2) {
        line-height: 37px;
        border-left: thin solid white; }
        header section span:nth-child(2):hover {
          opacity: .5;
          -webkit-transform: scale(1.5);
          -ms-transform: scale(1.5);
          transform: scale(1.5); }

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  max-width: 100%;
  text-align: center;
  margin: auto;
  position: fixed;
  padding-top: 25%;
  background: rgba(0, 0, 0, 0.5);
  display: none; }
  #loading .bar {
    width: 10px;
    height: 5px;
    background: #BABECC;
    display: inline-block;
    margin-left: 3px;
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation: loader 2s ease infinite;
    animation: loader 2s ease infinite; }
    #loading .bar:nth-child(1) {
      -webkit-animation-delay: 0.1s;
      animation-delay: 0.1s; }
    #loading .bar:nth-child(2) {
      -webkit-animation-delay: 0.2s;
      animation-delay: 0.2s; }
    #loading .bar:nth-child(3) {
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s; }
    #loading .bar:nth-child(4) {
      -webkit-animation-delay: 0.4s;
      animation-delay: 0.4s; }
    #loading .bar:nth-child(5) {
      -webkit-animation-delay: 0.5s;
      animation-delay: 0.5s; }
    #loading .bar:nth-child(6) {
      -webkit-animation-delay: 0.6s;
      animation-delay: 0.6s; }
    #loading .bar:nth-child(7) {
      -webkit-animation-delay: 0.7s;
      animation-delay: 0.7s; }
    #loading .bar:nth-child(8) {
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s; }

@-webkit-keyframes loader {
  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background: red; }
  90% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: transparent; } }

@keyframes loader {
  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background: red; }
  90% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: transparent; } }

.divbtns {
  text-align: center;
  margin-top: 15px; }

form {
  padding: 16px;
  width: 320px;
  max-width: 90%;
  margin: 0 auto; }

.title {
  padding: 20px auto;
  text-align: center;
  font-size: 20px; }

button,
input,
textarea,
select {
  border: 0;
  outline: none;
  font-size: 16px;
  border-radius: 11px;
  padding: 10px 20px;
  background-color: #EBECF0; }

label {
  display: block;
  padding-left: 20px;
  width: 100%; }

input,
textarea,
select {
  -webkit-box-shadow: 1px 1px 3px #BABECC;
  box-shadow: 1px 1px 3px #BABECC;
  border: thin solid #BABECC;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  input:focus,
  textarea:focus,
  select:focus {
    -webkit-box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
    box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF; }

input[type=date],
select {
  -webkit-box-shadow: 6px 6px 5px #BABECC, -1px -1px 10px #FFF;
  box-shadow: 6px 6px 5px #BABECC, -1px -1px 10px #FFF;
  cursor: pointer; }

.inputs {
  margin: 10px 0;
  position: relative; }
  .inputs span.icon {
    position: absolute;
    right: 5px;
    padding: 5px;
    font-size: 1.5em;
    color: #61677C; }

.inputs-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .inputs-flex .inputs,
  .inputs-flex button {
    width: 100%;
    margin-left: 15px; }
  .inputs-flex button:nth-child(1) {
    margin-left: 0; }

.inputs-search {
  position: relative; }
  .inputs-search input {
    padding-left: 30px; }
  .inputs-search label,
  .inputs-search .icon-mixer {
    position: absolute;
    width: 100%;
    padding-left: 7px;
    margin-top: -27px; }
  .inputs-search .icon-mixer {
    cursor: pointer;
    margin-top: 0px;
    line-height: 45px;
    margin-left: -40px; }

form {
  position: relative; }
  form #filter {
    display: none;
    position: absolute;
    right: 15px;
    background: #EBECF0;
    -webkit-transition: 2s all ease;
    -o-transition: 2s all ease;
    transition: 2s all ease;
    z-index: 1;
    -webkit-box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
    box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
    border: thin solid white; }
    form #filter label {
      padding: 3px 10px;
      display: block; }
      form #filter label input {
        display: none; }
      form #filter label:hover {
        background: #BABECC; }

button {
  color: #61677C;
  font-weight: bold;
  -webkit-box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
  box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer; }
  button:hover {
    -webkit-box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
    box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC; }
  button:active {
    -webkit-box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
    box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF; }
  button.btn {
    border-radius: 8px;
    line-height: 0;
    height: 48px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto 8px;
    font-size: 19.2px; }
    button.btn .icon {
      margin-right: 0; }
  button.red {
    display: block;
    width: 100%;
    color: red;
    margin: 10px 0; }
  button .inputs-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    button .inputs-group label {
      margin: 0;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }

label.checkbox {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 30px;
  padding-left: 0;
  margin: 5px;
  cursor: pointer; }
  label.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0; }
  label.checkbox :checked ~ .icon-box {
    -webkit-box-shadow: inset -2px -2px 5px #FFF, inset 3px 3px 5px #BABECC;
    box-shadow: inset -2px -2px 5px #FFF, inset 3px 3px 5px #BABECC; }
  label.checkbox .icon-box {
    width: 30px;
    height: 30px;
    line-height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 6px;
    -webkit-box-shadow: -5px -5px 10px #FFF, 5px 5px 10px #BABECC;
    box-shadow: -5px -5px 10px #FFF, 5px 5px 10px #BABECC; }
    label.checkbox .icon-box .icon {
      font-size: 1.3em;
      color: #61677C; }

.radio {
  margin: 5px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 32px;
  color: #61677C; }
  .radio .dot {
    border: 2px solid #EBECF0;
    border-radius: 16px;
    -webkit-box-shadow: 1px 1px 1px 1px #BABECC, -1px -1px 1px 1px #FFF;
    box-shadow: 1px 1px 1px 1px #BABECC, -1px -1px 1px 1px #FFF;
    cursor: pointer;
    height: 32px;
    width: 32px;
    text-align: center;
    padding: 0; }
  .radio span {
    margin-left: 5px;
    text-transform: capitalize;
    cursor: pointer; }
  .radio .rbtn {
    display: none; }
    .radio .rbtn:checked + .dot {
      -webkit-box-shadow: 2px 2px 1px 0px #FFF, -2px -2px 1px 0px #BABECC;
      box-shadow: 2px 2px 1px 0px #FFF, -2px -2px 1px 0px #BABECC; }

.active {
  -webkit-box-shadow: inset 2px 2px 2px #BABECC, inset -3px -3px 3px #FFF;
  box-shadow: inset 2px 2px 2px #BABECC, inset -3px -3px 3px #FFF; }

table {
  width: 90%;
  margin: auto;
  overflow-x: scroll; }
  table th,
  table td {
    text-align: center;
    padding: 10px 5px;
    text-align: left; }
    table th:hover,
    table td:hover {
      color: red; }
  table td.max:hover {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: scale(1, 1.7);
    -ms-transform: scale(1, 1.7);
    transform: scale(1, 1.7); }
  table td.icon-right {
    text-align: right;
    padding-right: 20px;
    width: 40px; }
    table td.icon-right:hover {
      padding-right: 1px;
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s; }
  table td:first-child {
    text-align: left; }
  table tr:nth-child(even) {
    background-color: #FFF; }

#div_info_san {
  width: 100%;
  max-width: 350px;
  height: 80px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  margin: 15px auto; }
  #div_info_san .box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }
    #div_info_san .box-inner .box-front,
    #div_info_san .box-inner .box-back {
      position: absolute;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      width: 90%;
      height: auto;
      padding: 10px 5px;
      border: 1px solid #BABECC;
      border-radius: 10px;
      color: #61677C; }
      #div_info_san .box-inner .box-front h2,
      #div_info_san .box-inner .box-front p,
      #div_info_san .box-inner .box-back h2,
      #div_info_san .box-inner .box-back p {
        margin: 0; }
    #div_info_san .box-inner .box-front {
      -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
      transform: translateX(10px); }
    #div_info_san .box-inner .box-back {
      color: red;
      -webkit-transform: translateX(10px) rotateY(180deg);
      transform: translateX(10px) rotateY(180deg); }
  #div_info_san:hover .box-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); }

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 60px;
  /* Modal Content/Box */ }
  .modal .modal-content {
    position: relative;
    margin: 5% auto 15% auto;
    width: 80%;
    /* The Close Button (x) */ }
    .modal .modal-content .close {
      position: absolute;
      right: 0px;
      top: 0px;
      font-size: 35px; }
      .modal .modal-content .close:hover, .modal .modal-content .close:focus {
        color: red;
        cursor: pointer; }
    .modal .modal-content .container {
      padding: 20px;
      background: white;
      text-align: center; }
      .modal .modal-content .container .box {
        display: inline-block;
        margin: 0 5px 5px 0;
        padding: 5px;
        border-radius: 15px;
        min-width: 100px;
        border: thin solid white;
        -webkit-box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
        box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC; }
        .modal .modal-content .container .box:hover {
          -webkit-box-shadow: inset -1px -1px 5px #FFF, inset 1px 1px 5px #BABECC;
          box-shadow: inset -1px -1px 5px #FFF, inset 1px 1px 5px #BABECC; }
        .modal .modal-content .container .box .face {
          -webkit-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
          border-radius: 15px;
          cursor: pointer; }
          .modal .modal-content .container .box .face span {
            display: block; }
          .modal .modal-content .container .box .face .icon {
            font-size: 36px;
            display: inline; }
          .modal .modal-content .container .box .face .number {
            color: #61677C;
            font-weight: bold;
            font-size: 31px;
            display: inline; }
          .modal .modal-content .container .box .face .date {
            color: #61677C; }
        .modal .modal-content .container .box .face1 {
          position: relative;
          display: -ms-grid;
          display: grid;
          background: white;
          position: absolute;
          display: none; }
          .modal .modal-content .container .box .face1 span.icon-down {
            position: absolute;
            background: red;
            right: 0;
            z-index: 5;
            cursor: pointer;
            padding: 5px; }
          .modal .modal-content .container .box .face1 span {
            display: block;
            color: #61677C; }
        .modal .modal-content .container .box .face2 span {
          display: block; }
        .modal .modal-content .container .box .face2 .icon {
          font-size: 36px;
          display: inline; }
        .modal .modal-content .container .box .face2 .number {
          color: #61677C;
          font-weight: bold;
          font-size: 31px;
          display: inline; }
        .modal .modal-content .container .box .face2 .date {
          color: #61677C; }
        .modal .modal-content .container .box .face2 .icon {
          font-size: 36px; }
        .modal .modal-content .container .box .face2 .number {
          color: #61677C;
          font-weight: bold;
          font-size: 31px; }
        .modal .modal-content .container .box .face2 .date {
          display: block; }

@media screen and (max-width: 500px) {
  .modal .modal-content {
    width: 95%; }
    .modal .modal-content .container {
      padding: 0; } }

#divMostrar_sanes {
  width: 98%;
  margin: auto;
  text-align: center; }

.column {
  display: none;
  position: relative;
  margin: 10px 5px;
  text-align: left; }
  .column .caras {
    width: 150px;
    height: 175px;
    position: relative; }
    .column .caras .cara1,
    .column .caras .cara2 {
      position: absolute;
      width: 150px;
      height: inherit;
      display: -ms-grid;
      display: grid;
      -webkit-box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
      box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC; }
      .column .caras .cara1:nth-child(2),
      .column .caras .cara2:nth-child(2) {
        font-size: 1px;
        background: #BABECC;
        -webkit-box-shadow: none;
        box-shadow: none;
        display: none;
        z-index: 1;
        padding: 15px 10px;
        top: 20px; }
        .column .caras .cara1:nth-child(2) .icon-del,
        .column .caras .cara2:nth-child(2) .icon-del {
          position: inherit;
          right: 0;
          top: 0;
          padding: 5px; }
          .column .caras .cara1:nth-child(2) .icon-del:hover,
          .column .caras .cara2:nth-child(2) .icon-del:hover {
            color: red; }
      .column .caras .cara1 span.idsan,
      .column .caras .cara2 span.idsan {
        display: block;
        background: #BABECC;
        text-align: center;
        height: 20px;
        line-height: 25px; }
      .column .caras .cara1 img,
      .column .caras .cara2 img {
        margin: auto; }
      .column .caras .cara1 p,
      .column .caras .cara2 p {
        padding: 0 10px; }
      .column .caras .cara1 .btns,
      .column .caras .cara2 .btns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%; }
        .column .caras .cara1 .btns button,
        .column .caras .cara2 .btns button {
          width: inherit;
          padding: 5px 0;
          border-radius: 0;
          border: thin solid #FFF;
          -webkit-box-shadow: none;
          box-shadow: none; }

/* The "show" class is added to the filtered elements */
.show {
  display: inline-block; }
