/*=============================================================
Aspectos Generales
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

a {
  text-decoration: none; }

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth; }

body {
  font-size: 10px;
  height: 100%;
  margin: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 204, 204, 0.2)), to(rgba(56, 181, 199, 0.2)));
  background-image: -webkit-linear-gradient(rgba(51, 204, 204, 0.2), rgba(56, 181, 199, 0.2));
  background-image: -o-linear-gradient(rgba(51, 204, 204, 0.2), rgba(56, 181, 199, 0.2));
  background-image: linear-gradient(rgba(51, 204, 204, 0.2), rgba(56, 181, 199, 0.2)); }

.titulo {
  font-family: "Limelight", serif;
  font-weight: 400;
  font-style: normal;
  color: #38b5c7;
  font-size: 3.5rem; }
  @media only screen and (min-width: 481px) {
    .titulo {
      font-size: 4.2rem; } }

.subtitulo {
  font-family: "Oxygen", serif;
  font-weight: 700;
  color: #38b5c7;
  font-size: 4.6rem;
  margin-bottom: 1rem; }

.texto-blanco {
  color: #fff; }

.texto-turquesa {
  color: #1f656f; }

.texto-negro {
  color: #000; }

p {
  font-family: "Oxygen", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.9rem;
  color: #666; }
  p:not(:last-child) {
    margin-bottom: 1.2rem; }

.bold {
  font-family: "Oxygen", serif;
  font-weight: 700;
  font-style: normal; }

.centrado {
  text-align: center; }

div img {
  width: 100%;
  display: block; }

.wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto; }

.cta-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4rem; }
  @media only screen and (min-width: 769px) {
    .cta-cont {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }
  .cta-cont a {
    background-color: #2d919f;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: block;
    color: #fff;
    font-size: 1.8rem;
    opacity: 1;
    font-weight: 700; }
    .cta-cont a:hover {
      background-color: #226d77; }

.container {
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  pointer-events: none; }

.container ul {
  z-index: 1000;
  position: relative;
  width: 100%;
  height: 100vh; }

.container li {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: inset 0 15px 25px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(221, 221, 221, 0.1);
  box-shadow: inset 0 15px 25px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(221, 221, 221, 0.1);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  bottom: -100px;
  left: 20%;
  list-style: none;
  -webkit-animation: up 10s infinite linear;
  animation: up 10s infinite linear; }

.container li:nth-child(2) {
  background: rgba(255, 255, 255, 0.25);
  width: 30px;
  height: 30px;
  left: 40%;
  -webkit-box-shadow: inset 0 15px 15px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(221, 221, 221, 0.1);
  box-shadow: inset 0 15px 15px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(221, 221, 221, 0.1);
  -webkit-animation-delay: 15s;
  animation-delay: 15s; }

.container li:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 60%;
  background: rgba(255, 255, 255, 0.25);
  -webkit-animation-delay: 27s;
  animation-delay: 27s; }

.container li:nth-child(4) {
  background: rgba(255, 255, 255, 0.25);
  width: 25px;
  height: 25px;
  left: 40%;
  -webkit-animation-delay: 30s;
  animation-delay: 30s; }

.container li:nth-child(5) {
  background: rgba(255, 255, 255, 0.25);
  width: 50px;
  height: 50px;
  left: 5%;
  -webkit-box-shadow: inset 0 10px 15px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(221, 221, 221, 0.1);
  box-shadow: inset 0 10px 15px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(221, 221, 221, 0.1);
  -webkit-animation-delay: 6s;
  animation-delay: 6s; }

.container li:nth-child(6) {
  background: rgba(255, 255, 255, 0.25);
  width: 70px;
  height: 70px;
  left: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

@-webkit-keyframes up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-700px) rotate(600deg);
    transform: translateY(-700px) rotate(600deg); } }

@keyframes up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-700px) rotate(600deg);
    transform: translateY(-700px) rotate(600deg); } }

/* Fin de Aspectos Generales  ================================*/
/*=============================================================
Header
==============================================================*/
header {
  width: 100%;
  background-color: #38b5c7; }
  header .menu-user {
    position: relative;
    height: 100vh; }
    @media only screen and (min-width: 769px) {
      header .menu-user {
        height: 70vh; } }
    header .menu-user .user-cont {
      position: fixed;
      z-index: 1002;
      right: 5%;
      top: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; }
      header .menu-user .user-cont .user {
        width: 44px;
        overflow: hidden;
        border-radius: 50%;
        cursor: pointer; }
        @media only screen and (min-width: 769px) {
          header .menu-user .user-cont .user {
            width: 46px; } }
      header .menu-user .user-cont .user-data {
        background-color: rgba(255, 255, 255, 0.8);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        padding: 3rem 3rem 2rem 2rem;
        border-radius: 16px 0 16px 16px;
        margin-right: 22px;
        margin-top: 0.5rem;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        display: none; }
        @media only screen and (min-width: 769px) {
          header .menu-user .user-cont .user-data {
            margin-right: 23px; } }
        header .menu-user .user-cont .user-data i {
          position: absolute;
          right: 1rem;
          top: 1rem;
          font-size: 2rem;
          opacity: 0.3;
          cursor: pointer; }
        header .menu-user .user-cont .user-data p, header .menu-user .user-cont .user-data a {
          font-family: "Oxygen", serif;
          font-weight: 400;
          font-style: normal;
          font-size: 1.9rem; }
        header .menu-user .user-cont .user-data a {
          color: #38b5c7; }
  header .menu {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media only screen and (min-width: 769px) {
      header .menu {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    header .menu a {
      color: #fff;
      font-size: 1.8rem;
      font-weight: 700;
      display: block;
      margin: 20px 0;
      text-decoration: none;
      position: relative;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      header .menu a:last-child {
        background-color: #2d919f;
        padding: 1rem 2rem;
        border-radius: 8px; }
        header .menu a:last-child:hover {
          opacity: 1;
          background-color: #226d77; }
      header .menu a:not(:last-child) {
        margin-right: 1.33333rem; }
      header .menu a:hover {
        opacity: 0.7; }
      @media only screen and (min-width: 481px) {
        header .menu a {
          font-size: 2rem; }
          header .menu a:not(:last-child) {
            margin-right: 8rem; } }
  header .logotipo {
    width: 220px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media only screen and (min-width: 481px) {
      header .logotipo {
        width: 270px; } }
    @media only screen and (min-width: 769px) {
      header .logotipo {
        left: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%); } }
    header .logotipo .titulo {
      margin-top: 1rem;
      color: #fff; }
  header .gorro {
    position: absolute;
    bottom: 0;
    font-family: "Limelight", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 2.6rem;
    margin: 2rem 0;
    width: 100%; }
    @media only screen and (min-width: 769px) {
      header .gorro {
        bottom: 5rem; } }

.blur {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px); }

.menu2 {
  position: fixed;
  left: 0;
  padding: 0 5%;
  background-color: rgba(56, 181, 199, 0.8);
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: dropheader 0.5s linear;
  animation: dropheader 0.5s linear;
  z-index: 1001; }

.body-app {
  min-height: calc(100% - 124px); }
  @media only screen and (min-width: 481px) {
    .body-app {
      min-height: calc(100% - 102px); } }

.body-app2 {
  height: auto;
  min-height: 0; }
  .body-app2 .menu-user {
    height: auto; }

@-webkit-keyframes dropheader {
  from {
    top: -86px; }
  to {
    top: 0; } }

@keyframes dropheader {
  from {
    top: -86px; }
  to {
    top: 0; } }

/* Fin de Header  ============================================*/
/*==============================================
Main                                           =
===============================================*/
.main {
  position: relative;
  z-index: 10; }
  .main .nosotros .wrapper {
    overflow: visible;
    position: relative; }
  .main .nosotros .foto {
    width: 100%;
    position: relative;
    top: 4rem;
    z-index: 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35); }
    @media only screen and (min-width: 769px) {
      .main .nosotros .foto {
        width: 70%;
        margin-top: 0;
        top: -50px;
        left: 0; } }
  .main .nosotros .article-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .main .nosotros article {
    background: #fff;
    padding: 2rem;
    width: 90%;
    position: relative;
    margin: 2rem auto 0;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35); }
    @media only screen and (min-width: 769px) {
      .main .nosotros article {
        width: 70%;
        margin: 0;
        right: 0;
        top: -100px;
        padding: 3rem;
        position: relative;
        margin-bottom: -100px; } }
    .main .nosotros article iframe {
      width: 100%;
      height: 250px; }
      @media only screen and (min-width: 481px) {
        .main .nosotros article iframe {
          height: 350px; } }
      @media only screen and (min-width: 769px) {
        .main .nosotros article iframe {
          height: 450px; } }
  .main .contacto {
    padding: 4rem 0; }
    .main .contacto .contacto-cont .formulario {
      padding: 2rem; }
      @media only screen and (min-width: 769px) {
        .main .contacto .contacto-cont .formulario {
          padding: 2rem 10rem; } }
      @media only screen and (min-width: 769px) {
        .main .contacto .contacto-cont .formulario form {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
    @media only screen and (min-width: 769px) {
      .main .contacto .contacto-cont .inputs {
        width: calc(50% - 2rem); } }
    .main .contacto .contacto-cont input, .main .contacto .contacto-cont textarea {
      width: 100%;
      border: none;
      font-size: 1.6rem;
      padding: 1rem;
      margin-bottom: 2rem;
      border-radius: 6px; }
    .main .contacto .contacto-cont textarea {
      display: block;
      height: 9.6rem;
      resize: none; }
      @media only screen and (min-width: 769px) {
        .main .contacto .contacto-cont textarea {
          height: 160px; } }
    @media only screen and (min-width: 481px) {
      .main .contacto .contacto-cont .boton {
        width: 100%;
        text-align: center; } }
    .main .contacto .contacto-cont .boton input {
      cursor: pointer;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      background-color: #38b5c7;
      padding: 1.66667rem;
      border-radius: 8px;
      display: block; }
      @media only screen and (min-width: 481px) {
        .main .contacto .contacto-cont .boton input {
          display: inline-block; } }
      @media only screen and (min-width: 769px) {
        .main .contacto .contacto-cont .boton input {
          padding: 1rem; } }
      .main .contacto .contacto-cont .boton input:hover {
        background-color: #226d77; }
      @media only screen and (min-width: 481px) {
        .main .contacto .contacto-cont .boton input {
          width: 50%; } }
      @media only screen and (min-width: 769px) {
        .main .contacto .contacto-cont .boton input {
          width: 25%;
          display: inline-block;
          padding-left: 6rem;
          padding-right: 6rem;
          border-radius: 5px; } }
    .main .contacto .contacto-cont .rrss-icon {
      font-size: 2.6rem;
      color: #fff;
      background-color: #38b5c7;
      display: inline-block;
      width: 4rem;
      height: 4rem;
      text-align: center;
      line-height: 4rem;
      border-radius: 50%; }
      .main .contacto .contacto-cont .rrss-icon:hover {
        background-color: #226d77; }
    .main .contacto .contacto-cont .datos-contacto {
      text-align: center; }
      .main .contacto .contacto-cont .datos-contacto a:not(:last-child) {
        margin-right: 2rem; }

.limpiaya-main {
  position: absolute;
  width: 100%;
  top: 84px;
  height: calc(100% - 84px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (min-width: 481px) {
    .limpiaya-main {
      top: 86px;
      height: calc(100% - 191px); } }
  .limpiaya-main .wrapper-limpiaya {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 0; }
    @media only screen and (min-width: 481px) {
      .limpiaya-main .wrapper-limpiaya {
        padding: 4rem 3rem; } }
    @media only screen and (min-width: 769px) {
      .limpiaya-main .wrapper-limpiaya {
        padding: 4rem 8rem; } }
  .limpiaya-main .service-icons {
    position: relative;
    width: 100%;
    list-style: none;
    text-align: center;
    height: 100%;
    padding: 0;
    margin: 0; }
    .limpiaya-main .service-icons li {
      width: 140px;
      margin: 0 auto; }
      @media only screen and (min-width: 481px) {
        .limpiaya-main .service-icons li {
          width: 165px; } }
      .limpiaya-main .service-icons li:last-child {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) scale(1.2);
        -ms-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2); }
    .limpiaya-main .service-icons .service-item {
      position: absolute; }
    .limpiaya-main .service-icons .suministros {
      top: 0;
      left: 0; }
    .limpiaya-main .service-icons .lavanderia {
      top: 0;
      right: 0; }
    .limpiaya-main .service-icons .compras {
      bottom: 0;
      left: 0; }
    .limpiaya-main .service-icons .cocina {
      bottom: 0;
      right: 0; }
    .limpiaya-main .service-icons h2 {
      font-family: "Oxygen", serif;
      font-weight: 700;
      line-height: 1;
      font-size: 1.4rem;
      text-align: center;
      width: 100%;
      pointer-events: none;
      color: #333;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      @media only screen and (min-width: 481px) {
        .limpiaya-main .service-icons h2 {
          font-size: 1.7rem; } }
      @media only screen and (min-width: 769px) {
        .limpiaya-main .service-icons h2 {
          position: relative;
          margin: 0 auto;
          top: -80px;
          opacity: 0; } }
    .limpiaya-main .service-icons .revelado {
      top: 0;
      opacity: 1; }
    .limpiaya-main .service-icons .service-icon {
      display: block;
      margin-bottom: 0.66667rem;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .limpiaya-main .service-icons .service-icon:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1); }
      @media only screen and (min-width: 769px) {
        .limpiaya-main .service-icons .service-icon {
          margin-bottom: 1.33333rem; } }

.suministros-main {
  background-color: #38b5c7;
  padding-bottom: 6rem; }

.categorias-voucher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (min-width: 769px) {
    .categorias-voucher {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  .categorias-voucher .voucher-cont {
    width: 100%;
    max-width: 400px; }
  .categorias-voucher .voucher {
    margin-top: 4rem;
    background-color: #fff;
    padding: 4rem 2rem;
    position: relative;
    width: 100%; }
    @media only screen and (min-width: 769px) {
      .categorias-voucher .voucher {
        margin-top: 2rem; } }
    .categorias-voucher .voucher::before {
      content: '';
      width: 100%;
      height: 8px;
      background-image: url(../img/triangulo-arriba.png);
      background-repeat: repeat-x;
      position: absolute;
      top: -8px;
      left: 0; }
    .categorias-voucher .voucher::after {
      content: '';
      width: 100%;
      height: 8px;
      background-image: url(../img/triangulo-abajo.png);
      background-repeat: repeat-x;
      position: absolute;
      bottom: -8px;
      left: 0; }
    .categorias-voucher .voucher hr {
      color: #000;
      opacity: 1; }
    .categorias-voucher .voucher p, .categorias-voucher .voucher li {
      font-family: "Azeret Mono", monospace;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
      font-size: 1.6rem;
      line-height: 1.3;
      color: #000;
      margin-bottom: 0; }
    .categorias-voucher .voucher ul {
      padding: 0;
      margin: 0; }

input[type=text], input[type=date], input[type=time] {
  width: calc(100% - 1.7rem);
  border: none;
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 6px;
  border: 2px solid #ccc; }

input[type=checkbox], label {
  font-size: 1.7rem;
  line-height: 1.7; }

input[type=checkbox]:checked {
  background-color: #2d919f;
  border-color: #2d919f; }

.categorias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%; }
  @media only screen and (min-width: 769px) {
    .categorias {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: calc(100% - (2rem*2 + 400px)); }
      .categorias .categoria1, .categorias .dos-cats {
        width: calc(50% - 2rem/2); } }
  .categorias .categoria1 p, .categorias .categoria p {
    font-size: 2rem;
    margin-bottom: 0.4rem; }
  .categorias .categoria1 .checks, .categorias .categoria .checks {
    padding-left: 2.7rem; }
  .categorias .categoria1 .dos-cats .categoria, .categorias .categoria .dos-cats .categoria {
    width: 100% !important; }
  .categorias .cliente-map, .categorias .personal-cont {
    width: 100%; }
    .categorias .cliente-map .cliente, .categorias .cliente-map .personal, .categorias .cliente-map .fecha-hora, .categorias .personal-cont .cliente, .categorias .personal-cont .personal, .categorias .personal-cont .fecha-hora {
      background-color: #fff;
      padding: 2rem; }
      .categorias .cliente-map .cliente i, .categorias .cliente-map .personal i, .categorias .cliente-map .fecha-hora i, .categorias .personal-cont .cliente i, .categorias .personal-cont .personal i, .categorias .personal-cont .fecha-hora i {
        color: #38b5c7;
        width: 24px; }
    .categorias .cliente-map .cliente, .categorias .personal-cont .cliente {
      border-radius: 16px 16px 0 0; }
    .categorias .cliente-map .personal, .categorias .personal-cont .personal {
      border-radius: 16px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .categorias .cliente-map .personal .bandera, .categorias .personal-cont .personal .bandera {
        width: 24px;
        display: inline;
        margin-right: 5px;
        margin-top: -3px; }
      .categorias .cliente-map .personal .ranking, .categorias .personal-cont .personal .ranking {
        margin-top: 5px; }
        .categorias .cliente-map .personal .ranking .star, .categorias .personal-cont .personal .ranking .star {
          width: 20px;
          display: inline-block; }
      .categorias .cliente-map .personal a, .categorias .personal-cont .personal a {
        color: #38b5c7; }
      .categorias .cliente-map .personal .pic, .categorias .personal-cont .personal .pic {
        width: 80px;
        overflow: hidden;
        border-radius: 50%; }
    .categorias .cliente-map iframe, .categorias .personal-cont iframe {
      width: 100%;
      height: 170px;
      display: block; }
      @media only screen and (min-width: 481px) {
        .categorias .cliente-map iframe, .categorias .personal-cont iframe {
          height: 250px; } }
    .categorias .cliente-map .fecha-hora, .categorias .personal-cont .fecha-hora {
      border-radius: 0 0 16px 16px; }
      .categorias .cliente-map .fecha-hora .campo, .categorias .personal-cont .fecha-hora .campo {
        width: 100%; }
  .categorias .personal-cont {
    margin-top: 2rem; }
    .categorias .personal-cont .form-check {
      padding-left: 2.7rem; }

.datos-medio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 769px) {
    .datos-medio {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media only screen and (min-width: 769px) {
    .datos-medio .datos, .datos-medio .medio {
      width: calc(50% - 2rem); } }
  .datos-medio .caja {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px; }
    .datos-medio .caja h2 {
      font-size: 2.5rem;
      color: #38b5c7;
      margin-bottom: 1rem; }
    .datos-medio .caja .tag {
      font-weight: 700;
      width: 100px;
      display: inline-block; }
    .datos-medio .caja .importe {
      font-size: 2.5rem; }
    .datos-medio .caja p:not(:last-child) {
      border-bottom: 2px solid rgba(0, 0, 0, 0.15);
      padding-bottom: 1.2rem; }
    .datos-medio .caja .cabecera {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      border-bottom: 2px solid rgba(0, 0, 0, 0.15);
      margin-bottom: 1.2rem;
      padding-bottom: 1.2rem; }
  .datos-medio .logos {
    margin: 2rem 0 4rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media only screen and (min-width: 481px) {
      .datos-medio .logos {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }

.form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.fecha-hora {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.form, .fecha-hora {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .form .numero, .fecha-hora .numero {
    max-width: 300px; }
    .form .numero .icon-input, .fecha-hora .numero .icon-input {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .form .numero .icon-input i, .fecha-hora .numero .icon-input i {
        font-size: 2rem;
        color: #999; }
      .form .numero .icon-input input, .fecha-hora .numero .icon-input input {
        margin-left: 8px; }
  .form .cta-cont, .fecha-hora .cta-cont {
    margin-top: 2rem; }

/* Fin de Main  ============================================*/
/*==============================================
Footer                                         =
===============================================*/
footer {
  padding: 8rem 0 3rem 0;
  background-color: #000; }
  footer .columnas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media only screen and (min-width: 769px) {
      footer .columnas {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    footer .columnas .columna {
      text-align: center; }
      @media only screen and (min-width: 769px) {
        footer .columnas .columna {
          width: calc(33.3333333% - 2rem); } }
      footer .columnas .columna:not(:last-child) {
        margin-bottom: 8rem; }
        @media only screen and (min-width: 769px) {
          footer .columnas .columna:not(:last-child) {
            margin-bottom: 0; } }
      footer .columnas .columna .store-play {
        max-width: 362px;
        margin: 4rem auto; }
      footer .columnas .columna .rs-icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        footer .columnas .columna .rs-icons i {
          color: #999;
          font-size: 2.4rem;
          cursor: pointer; }
      footer .columnas .columna .big {
        font-size: 2.4rem;
        margin-bottom: 2rem !important; }
      footer .columnas .columna a {
        display: block;
        margin-bottom: 3rem; }
    @media only screen and (min-width: 769px) {
      footer .columnas .presentus {
        border-right: 1px solid #555;
        padding-right: 6rem; } }
  footer p, footer a {
    color: #fff;
    text-align: center;
    font-size: 1.6rem; }
    footer p .barra, footer a .barra {
      margin: 0 6px; }
  footer .logotipo {
    width: 160px;
    margin: 0 auto 3rem; }
    footer .logotipo .titulo {
      font-size: 2.5rem; }
  footer a:hover {
    color: #38b5c7; }
  footer .firma {
    border-top: 1px solid #555;
    margin-top: 4rem;
    padding-top: 4rem; }

/*=============  Fin de Footer  ==============*/
